@charset "UTF-8";
/* ========== 色 ========== */
/* ========== フォントサイズ ========== */
/* ========== フォント ========== */
/* Box sizing rules */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.4s ease;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* A elements that don't have a class get default styles */
/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ====================================================
  BASE CSS – Reusable Utility & Foundation Styles
  Author: ChatGPT
==================================================== */
/* -----------------------------
  Font sizing & root setup
----------------------------- */
html {
  font-size: clamp(10px, 1.2vw, 16px);
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* -----------------------------
  Base styles
----------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.048rem;
  color: #002c50;
  font-size: 10px;
  position: relative;
  overflow-x: hidden;
  font-weight: 500;
}

/* Reset for common elements */
a {
  text-decoration: none;
  color: #002c50;
}

li {
  list-style: none;
}

/* -----------------------------
  Image styling
----------------------------- */
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

/* -----------------------------
  Animation classes
----------------------------- */
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation: fade-in 1s ease forwards;
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation: fade-out 0.5s ease forwards;
}

/* -----------------------------
  Layout container
----------------------------- */
.container {
  width: calc(100vw - 40px); /* 左右に20pxずつ余白 */
  max-width: 1000px;
  margin: 0 auto;
  background-color: aqua;
}

/* -----------------------------
  Prevent tel link on desktop
----------------------------- */
@media print, screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none !important;
    text-decoration: none;
    color: inherit;
  }
}
/* ========== animation ========== */
@keyframes underline {
  100% {
    background-position: 0% 100%;
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.9s cubic-bezier(0.36, 0.14, 0, 1);
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.9s cubic-bezier(0.36, 0.14, 0, 1);
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* ========== レスポンシブcss ========== */
.sp-only {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: block !important;
  }
}

.pc-only {
  display: none !important;
}
@media screen and (min-width: 769px) {
  .pc-only {
    display: block !important;
  }
}

.header {
  width: 100%;
  z-index: 1000;
  position: absolute;
}
.header-inner {
  height: 5rem;
  position: relative;
}
.header-logo {
  width: 15rem;
  position: fixed;
  top: 1.3rem;
  left: 1.3rem;
}
.header-logo__white {
  display: none;
}
.header-nav {
  position: absolute;
  right: 21rem;
  top: 1rem;
}
.header-list {
  display: flex;
  justify-content: space-between;
  gap: 2.125rem;
  list-style: none;
}
.header-link {
  display: block;
  font-size: 1rem;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #002c50;
  transition: all 0.3s ease;
  line-height: 4rem;
  position: relative;
}
.header-link::before {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff102;
  transform: scale(0);
  transform-origin: center;
}
.header-link:hover::before {
  transform: scale(1);
}
.header-btn__inquiry {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: fixed;
  right: 6.875rem;
  top: 1.25rem;
  width: 11.25rem;
  height: 3.75rem;
  font-size: 0.83rem;
  letter-spacing: 0.02em;
  background: #fff102;
  color: #002c50;
  border-radius: 4.8rem;
  transition: 0.3s;
  text-wrap: nowrap;
  padding-bottom: 0.25rem;
}
.header-btn__inquiry:hover {
  background: #cfd7df;
}
.header-btn__inquiry span {
  width: 2.25rem;
  margin-left: 1.625rem;
  padding-top: 0.25rem;
}
.header-btn__humburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
  width: 3.75rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: fixed;
  right: 1.875rem;
  top: 1.25rem;
  background: #002c50;
}
.header-btn__humburger span {
  display: block;
  width: 1.875rem;
  height: 2px;
  background: #ffffff;
}
.header-btn__humburger:hover {
  background: #cfd7df;
}
.header-btn__humburger:hover span {
  background: #000000;
}
.header-btn__humburger.is-open {
  background: #cfd7df;
}
.header-btn__humburger.is-open span {
  background: #002c50;
}
.header-btn__humburger.is-open span:nth-child(1) {
  transform: translateY(calc((0.375rem + 2px) / 2)) rotate(15deg);
}
.header-btn__humburger.is-open span:nth-child(2) {
  transform: translateY(calc(-1 * (0.375rem + 2px) / 2)) rotate(-15deg);
}
.header.is-open .header-logo__navy {
  display: none;
}
.header.is-open .header-logo__white {
  display: block;
}

@media screen and (max-width: 768px) {
  .header {
    width: 100%;
    z-index: 1000;
    position: absolute;
  }
  .header-inner {
    width: 90vw;
    margin: 0 auto;
    height: 7.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  .header-logo {
    width: 21.2rem;
    top: 2rem;
    left: 2rem;
    position: fixed;
  }
  .header-nav {
    display: none;
  }
  .header-btn {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-top: 0.7rem;
    position: fixed;
    right: 1.5vw;
  }
  .header-btn__inquiry {
    display: none;
  }
  .header-btn__humburger {
    display: flex;
    width: 5.3rem;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    right: 2.2rem;
    top: 1.9rem;
    background: #002c50;
  }
  .header-btn__humburger span {
    display: block;
    width: 2.5rem;
    height: 2px;
    background: #ffffff;
  }
  .header-btn__humburger:hover {
    background: #cfd7df;
  }
  .header-btn__humburger:hover span {
    background: #000000;
  }
  .header-btn__humburger.is-open {
    background: #cfd7df;
  }
  .header-btn__humburger.is-open span {
    background: #002c50;
  }
  .header-btn__humburger.is-open span:nth-child(1) {
    transform: translateY(calc((0.8rem + 2px) / 2)) rotate(15deg);
  }
  .header-btn__humburger.is-open span:nth-child(2) {
    transform: translateY(calc(-1 * (0.8rem + 2px) / 2)) rotate(-15deg);
  }
}
.footer {
  background: #002c50;
  padding: 5rem 0 0;
  color: #ffffff;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  width: 96vw;
  max-width: 1920px;
  margin: 0 auto;
}
.footer__logo {
  width: 13.75rem;
  height: auto;
}
.footer__text {
  font-size: 0.75rem;
  line-height: 2.1;
  letter-spacing: 0.08em;
  font-weight: 400;
  margin-top: 1.25rem;
}
.footer__text--top {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__text--bottom {
  width: 100%;
  position: relative;
  margin-top: 2.8rem;
  margin-bottom: 1.7rem;
}
.footer__nav {
  width: 100%;
  margin-top: 3.75rem;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  padding: 0 2.5rem;
}
.footer__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4.4rem;
}
.footer__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: #ffffff;
}
.footer__link:hover {
  color: #fff102;
}
.footer__link--english {
  font-size: 1.625rem;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  padding-top: 1.6rem;
}
.footer__link--japannese {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-wrap: nowrap;
  padding-bottom: 1.8rem;
}
.footer__copyright {
  font-size: 0.75rem;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.083em;
  font-weight: 400;
  color: #ffffff;
}
.footer__privacy {
  position: absolute;
  right: 0;
  bottom: 0rem;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .footer {
    background: #002c50;
    padding: 6.5rem 0 0;
    color: #ffffff;
  }
  .footer__inner {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    width: 90vw;
    max-width: 1920px;
    margin: 0 auto;
  }
  .footer__logo {
    width: 23.5rem;
    height: auto;
  }
  .footer__text {
    font-size: 1.2rem;
    line-height: 1.8;
    letter-spacing: 0.08em;
    font-weight: 400;
    margin-top: 1.8rem;
  }
  .footer__text--top {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__text--bottom {
    width: 100%;
    position: relative;
    margin-top: 1.8rem;
    margin-bottom: 2rem;
  }
  .footer__nav {
    width: 100%;
    margin-top: 4.4rem;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    padding: 0;
  }
  .footer__toggle-btn {
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    padding: 1.4rem 0;
    border-bottom: 1px solid #ffffff;
    cursor: pointer;
    position: relative;
  }
  .footer__toggle-btn::after {
    content: "";
    position: absolute;
    display: block;
    right: -0.2rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    width: 2.5rem;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: #ffffff;
    background-image: url(./../img/svg/ico-arrow-right.svg);
    background-size: 1.25rem;
    background-repeat: no-repeat;
    background-position: center;
  }
  .footer__toggle-btn.is-active::after {
    transform: translateY(-50%) rotate(270deg);
  }
  .footer__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4.4rem;
    display: none;
  }
  .footer__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: #ffffff;
  }
  .footer__link:hover {
    color: #fff102;
  }
  .footer__link--english {
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    padding-top: 1.6rem;
  }
  .footer__link--japannese {
    font-size: 1.3rem;
    letter-spacing: 0.04em;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-wrap: nowrap;
    padding-bottom: 1.8rem;
  }
  .footer__copyright {
    font-size: 1.2rem;
    margin-top: 2rem;
    font-family: "Lato", sans-serif;
    letter-spacing: 0.083em;
    font-weight: 400;
    color: #ffffff;
  }
  .footer__privacy {
    position: relative;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: #ffffff;
    text-decoration: underline;
  }
}
#loading {
  height: 100vh;
  width: 100%;
  background: #ffffff;
  position: fixed;
  z-index: 10001;
  transition: all 2s ease;
}
#loading.is-loaded {
  background: none;
  z-index: -1;
}

.background {
  position: fixed;
  offset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  filter: blur(100);
  opacity: 0;
}
.background.is-loaded {
  filter: blur(0);
  opacity: 1;
}
.background-blue {
  background: #4896d9;
  background-size: cover;
  aspect-ratio: 1/1;
  position: absolute;
  border-radius: 50%;
  animation: blueMove 6s ease-in-out infinite alternate;
}
@keyframes blueMove {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(70px);
  }
}
.background-blue--1 {
  width: 1.1rem;
  top: 25vh;
  left: 3vw;
}
.background-blue--2 {
  width: 1.2rem;
  top: 82vh;
  left: 50vw;
  animation-delay: 10s;
}
.background-blue--3 {
  width: 1.2rem;
  top: 63vh;
  left: 50vw;
  animation-delay: 6s;
}
.background-blue--4 {
  width: 0.7rem;
  top: 39vh;
  left: 54vw;
  animation-delay: 1.8s;
}
.background-blue--5 {
  width: 0.7rem;
  top: 38vh;
  left: 58vw;
}
.background-blue--6 {
  width: 0.5rem;
  top: 47vh;
  left: 89vw;
  animation-delay: 0.5s;
}
.background-yellow {
  background-image: url(.././img/svg/bg-yellow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 1/1;
  position: absolute;
  animation: yellowMove 8s ease-in-out infinite alternate;
}
@keyframes yellowMove {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(50px);
  }
}
.background-yellow--1 {
  width: 1rem;
  left: 2vw;
  top: 24.5vh;
  animation-delay: 1s;
}
.background-yellow--2 {
  width: 0.5rem;
  left: 40vw;
  top: 2vh;
}
.background-yellow--3 {
  width: 1rem;
  left: 51vw;
  top: 14vh;
  animation-delay: 7s;
}
.background-yellow--4 {
  width: 0.5rem;
  left: 61.5vw;
  top: 8vh;
}
.background-yellow--5 {
  width: 0.5rem;
  left: 69.5vw;
  top: 18vh;
  animation-delay: 4s;
}
.background-yellow--6 {
  width: 1rem;
  left: 54vw;
  top: 71vh;
}
.background-yellow--7 {
  width: 0.7rem;
  left: 65vw;
  top: 49.5vh;
}
.background-yellow--8 {
  width: 1.25rem;
  left: 93.5vw;
  top: 46.5vh;
  animation-delay: 1s;
}
.background-green {
  background: #57c29b;
  background-size: cover;
  aspect-ratio: 1/1;
  position: absolute;
  border-radius: 50%;
  animation: greenMove 12s ease-in-out infinite alternate;
}
@keyframes greenMove {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(30px);
  }
}
.background-green--1 {
  width: 0.5rem;
  top: 9vh;
  left: 32vw;
}
.background-green--2 {
  width: 1.1rem;
  top: 38vh;
  left: 53vw;
  animation-delay: 1s;
}
.background-green--3 {
  width: 0.5rem;
  top: 49vh;
  left: 68vw;
}
.background-green--4 {
  width: 0.5rem;
  top: 59vh;
  left: 87.5vw;
}
.background-green--5 {
  width: 0.5rem;
  top: 13vh;
  left: 89.5vw;
  animation-delay: 2s;
}
.background-green--6 {
  width: 1.2rem;
  top: 27vh;
  left: 95.5vw;
}

.fixed {
  background: #002c50;
  position: fixed;
  offset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}
.fixed.is-open {
  opacity: 1;
  visibility: visible;
}
.fixed__bg {
  position: absolute;
  width: 70vw;
  height: 100%;
  left: -12%;
  top: 9%;
  opacity: 0.5;
  z-index: -1;
}
.fixed__inner {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem 0;
}
.fixed__item {
  width: 33%;
  text-align: center;
}
.fixed__link {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.fixed__link:hover * {
  color: #fff102;
}
.fixed__text--english {
  color: #ffffff;
  font-size: 1.8rem;
  letter-spacing: 0.14em;
  font-family: "Lato", sans-serif;
  line-height: 1;
}
.fixed__text--japanese {
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1;
}
.fixed__privacy {
  position: absolute;
  right: 5vw;
  bottom: 3vw;
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .fixed {
    background: #002c50;
    position: fixed;
    offset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    overflow-y: scroll;
  }
  .fixed.is-open {
    opacity: 1;
    visibility: visible;
  }
  .fixed__bg {
    position: absolute;
    width: 70vw;
    height: 100%;
    left: -12%;
    top: 60%;
    opacity: 0.5;
    z-index: -1;
  }
  .fixed__inner {
    width: 38%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem 0;
  }
  .fixed__item {
    width: 100%;
    text-align: center;
  }
  .fixed__link {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .fixed__link:hover * {
    color: #fff102;
  }
  .fixed__text--english {
    color: #ffffff;
    font-size: 1.8rem;
    letter-spacing: 0.14em;
    font-family: "Lato", sans-serif;
    line-height: 1;
  }
  .fixed__text--japanese {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1;
  }
  .fixed__privacy {
    position: absolute;
    right: 5vw;
    bottom: 8vw;
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-decoration: underline;
  }
}
.section-btn {
  display: block;
  width: 12.5rem;
  margin: 0 auto;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  background: #cfd7df;
  position: relative;
  border-radius: 4rem;
  font-weight: 600;
  color: #002c50;
  transition: 0.3s ease;
}
.section-btn::after {
  content: "";
  background-image: url(../img/svg/ico-arrow-right.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 0.8rem;
  width: 11px;
  height: auto;
  aspect-ratio: 1/1;
  transform: translateY(-50%);
}
.section-btn:hover {
  background: #fff102;
}

.pagetop__btn {
  position: fixed;
  display: block;
  z-index: 10000;
  right: 0;
  bottom: 1.725rem;
  width: 4.375rem;
  height: 3.75rem;
  background: #cfd7df;
  font-size: 0.625rem;
  font-weight: 400;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  text-align: center;
  opacity: 0;
  visibility: hidden;
}
.pagetop__btn::after {
  content: "";
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(./../img/svg/arrow-footer.svg);
  background-size: cover;
  z-index: -1;
}
.pagetop__btn.is-active {
  opacity: 1;
  visibility: visible;
}
.pagetop__link {
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 2.4rem;
}

@media screen and (max-width: 768px) {
  .section-btn {
    display: block;
    width: 21rem;
    margin: 0 auto;
    padding: 1.1rem 2rem;
    font-size: 1.3rem;
    line-height: 1.8;
    letter-spacing: 0.12em;
    background: #cfd7df;
    position: relative;
    border-radius: 4rem;
    font-weight: 600;
    color: #002c50;
    transition: 0.3s ease;
  }
  .section-btn::after {
    content: "";
    background-image: url(../img/svg/ico-arrow-right.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 1.35rem;
    width: 12px;
    height: auto;
    aspect-ratio: 1/1;
    transform: translateY(-50%);
  }
  .section-btn:hover {
    background: #fff102;
  }
  .pagetop__btn {
    position: fixed;
    display: block;
    z-index: 10000;
    right: 0;
    bottom: 1.725rem;
    width: 4.375rem;
    height: 3.75rem;
    background: #cfd7df;
    font-size: 0.625rem;
    font-weight: 400;
    padding-top: 2.4rem;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    text-align: center;
    opacity: 0;
    visibility: hidden;
  }
  .pagetop__btn::after {
    content: "";
    content: "";
    position: absolute;
    top: 0.6rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5rem;
    height: auto;
    aspect-ratio: 1/1;
    background-image: url(./../img/svg/arrow-footer.svg);
    background-size: cover;
  }
  .pagetop__btn.is-active {
    opacity: 0;
    visibility: hidden;
  }
}
.section-title {
  font-size: 1.625rem;
  padding-left: 1.25rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  background-image: url(./../img/svg/bg-yellow.svg);
  background-size: cover;
  width: 0.75rem;
  height: auto;
  aspect-ratio: 1/1;
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    padding-left: 2rem;
    letter-spacing: 0.04em;
    line-height: 1.6;
  }
  .section-title::after {
    content: "";
    position: absolute;
    left: 0;
    top: 60%;
    transform: translateY(-50%);
    display: block;
    background-image: url(./../img/svg/bg-yellow.svg);
    background-size: cover;
    width: 1.2rem;
    height: auto;
    aspect-ratio: 1/1;
  }
}
.kv {
  /* ==========  上側のkv TEXT- ========== */
  /* ========== 下側のルーペ ========== */
  /* ========== 右下の円形のTEXT ========== */
}
.kv-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.kv-top {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.kv-text {
  opacity: 0;
  transition: opacity 3s 1s ease;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.kv-text.is-loaded {
  opacity: 1;
}
.kv-text__english {
  font-size: 7.7vw;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  letter-spacing: 0.075em;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 2rem;
}
.kv-text__japanese {
  font-size: 2rem;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.4;
}
.kv-bottom {
  position: relative;
  z-index: 1;
  height: 100vh;
  width: 100%;
  margin-top: 25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.kv-bottom__box {
  position: relative;
  z-index: 2;
  width: 48rem;
  height: 100%;
}
.kv-bottom__text {
  position: absolute;
  top: 13rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.65;
  letter-spacing: 0.08em;
  text-wrap: nowrap;
  font-weight: 600;
}
.kv-bottom__bg {
  position: absolute;
  z-index: 1;
  width: 31.25rem;
  top: 2.2rem;
  left: 50%;
  transform: scale(0.5) translateX(-50%);
  transform-origin: left;
  transition: transform 1s ease;
}
.kv-bottom__bg.is-active {
  transform: scale(1) translateX(-50%);
}
.kv-bottom__grass {
  position: absolute;
  top: 1rem;
  left: -6.3rem;
  transform: translateX(-50%);
  z-index: 2;
  width: 48rem;
  transition: transform 1s ease;
  max-width: none;
}
.kv-bottom__grass.is-active {
  transform: translateX(0);
}
.kv-circleText {
  position: absolute;
  right: 1.875rem;
  bottom: 1.875rem;
}
.kv-circleText__inner {
  position: relative;
}
.kv-circleText__img {
  width: 6.875rem;
  aspect-ratio: 1/1;
  animation: rotation 18s linear infinite;
}
.kv-circleText__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6.875rem;
  aspect-ratio: 1/1;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 768px) {
  .kv {
    /* ==========  上側のkv TEXT- ========== */
    /* ========== 下側のルーペ ========== */
    /* ========== 右下の円形のTEXT ========== */
  }
  .kv-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .kv-top {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .kv-text {
    opacity: 0;
    transition: opacity 3s 1s ease;
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
  }
  .kv-text.is-loaded {
    opacity: 1;
  }
  .kv-text__english {
    font-size: 4.5rem;
    font-family: "Lato", sans-serif;
    font-weight: 900;
    letter-spacing: 0.075em;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 2rem;
  }
  .kv-text__japanese {
    font-size: 2.5rem;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    line-height: 1.4;
  }
  .kv-bottom {
    position: relative;
    z-index: 1;
    height: 150vw;
    width: 100%;
    margin-top: 28rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  .kv-bottom__box {
    position: relative;
    z-index: 2;
    width: 48rem;
    height: 100%;
  }
  .kv-bottom__text {
    position: absolute;
    top: clamp(110px, 30vw, 16rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    text-align: center;
    line-height: 1.65;
    letter-spacing: 0.08em;
    text-wrap: nowrap;
    font-weight: 600;
  }
  .kv-bottom__bg {
    position: absolute;
    z-index: 1;
    width: 100%;
    top: 2.5rem;
    left: 50%;
    transform: scale(0.5) translateX(-50%);
    transform-origin: left;
    transition: transform 1s ease;
    max-width: none;
  }
  .kv-bottom__bg.is-active {
    transform: scale(1) translateX(-50%);
  }
  .kv-bottom__grass {
    position: absolute;
    top: 0rem;
    left: -48%;
    transform: translateX(-50%);
    z-index: 2;
    width: 156%;
    transition: transform 1s ease;
    max-width: none;
  }
  .kv-bottom__grass.is-active {
    transform: translateX(0);
  }
  .kv-circleText {
    position: absolute;
    left: 50%;
    bottom: 3rem;
    transform: translateX(-50%);
    aspect-ratio: 1/1;
    width: 8rem;
  }
  .kv-circleText__inner {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .kv-circleText__img {
    width: 100%;
    aspect-ratio: 1/1;
    animation: rotation 18s linear infinite;
    position: absolute;
  }
  .kv-circleText__arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    aspect-ratio: 1/1;
  }
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
}
.service {
  position: relative;
  z-index: 2;
  background: #ffffff;
  /* ========== serviceのlist ========== */
}
.service.is-navy {
  background: #002c50;
}
.service.is-navy .service__title::before {
  background: #002c50;
}
.service.is-navy .service-item:hover {
  background-color: #ffffff;
}
.service-inner {
  max-width: 1920px;
  width: 84vw;
  margin: 0 auto;
}
.service__title {
  position: relative;
}
.service__title::before {
  content: "SERVICE";
  position: absolute;
  display: block;
  width: 100vw;
  background: white;
  z-index: -1;
  top: -10.3rem;
  left: -7rem;
  font-size: 9.375rem;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.025em;
  font-weight: 200;
  color: rgba(207, 215, 223, 0.5176470588);
  -webkit-text-stroke: 3px rgba(207, 215, 223, 0.5176470588);
}
.service-list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin-bottom: 3.75rem;
  margin-top: 1.9rem;
}
.service-item {
  width: 30.6%;
  border: 1px solid #cfd7df;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  overflow: hidden;
  position: relative;
  background: #ffffff;
}
.service-item:hover {
  background-color: rgba(0, 44, 80, 0.0470588235);
  cursor: url("./../img/png/cursor.png"), pointer;
}
.service-item:hover .service-item__detail {
  background: #002c50;
  color: #ffffff;
}
.service-item__img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.service-item__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-item__img:hover {
  cursor: pointer;
  cursor: url("./../img/png/cursor.png"), pointer;
}
.service-item__text {
  padding: 1.5625rem 1.2rem 3.95rem;
}
.service-item__text:hover {
  cursor: pointer;
  cursor: url("./../img/png/cursor.png"), pointer;
}
.service-item__subtitle {
  display: inline-block;
  background: #fff102;
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  line-height: 1.8;
  padding: 0 0.625rem;
  letter-spacing: 0.04em;
  border-radius: 2rem;
}
.service-item__title {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 1.125rem;
  color: #002c50;
}
.service-item__support {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  color: #002c50;
}
.service-item__support::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 30%;
  height: 1px;
  background: #002c50;
}
.service-item__support::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 30%;
  height: 1px;
  background: #002c50;
}
.service-item__support-list {
  padding: 1.3125rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}
.service-item__support-item {
  font-size: 0.875rem;
  padding-left: 0.8rem;
  letter-spacing: 0.046em;
  line-height: 1.82;
  color: #002c50;
  font-weight: 600;
  position: relative;
}
.service-item__support-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  width: 0.4rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #002c50;
}
.service-item__detail {
  display: block;
  position: absolute;
  bottom: 0;
  width: 25.6428vw;
  padding: 0.65rem 0;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  background: #fff102;
  text-align: center;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: #002c50;
  font-weight: 600;
}
.service-item__detail:hover {
  cursor: pointer;
  cursor: url("./../img/png/cursor.png"), pointer;
}

@media screen and (max-width: 768px) {
  .service {
    margin-top: 5.9rem;
    /* ========== serviceのlist ========== */
  }
  .service.is-navy {
    background: #002c50;
  }
  .service.is-navy .service-item:hover {
    background-color: #ffffff;
  }
  .service-inner {
    width: 89.5vw;
    margin: 0 auto;
  }
  .service__title {
    position: relative;
  }
  .service__title::before {
    content: "SERVICE";
    position: absolute;
    display: block;
    width: 100vw;
    background: white;
    z-index: -1;
    top: -9.3rem;
    left: -3.5rem;
    font-size: 9rem;
    font-family: "Lato", sans-serif;
    letter-spacing: 0.015em;
    font-weight: 200;
    color: rgba(207, 215, 223, 0.5176470588);
  }
  .service-list {
    display: flex;
    flex-direction: column;
    gap: 4.7rem;
    list-style: none;
    margin-bottom: 3.25rem;
    margin-top: 2.3rem;
  }
  .service-item {
    width: 100%;
    border: 1px solid #cfd7df;
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
    overflow: hidden;
    position: relative;
    background: #ffffff;
  }
  .service-item:hover {
    background-color: rgba(0, 44, 80, 0.0470588235);
    cursor: url("./../img/png/cursor.png"), pointer;
  }
  .service-item:hover .service-item__detail {
    background: #002c50;
    color: #ffffff;
  }
  .service-item__img {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .service-item__img img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .service-item__img:hover {
    cursor: pointer;
    cursor: url("./../img/png/cursor.png"), pointer;
  }
  .service-item__text {
    padding: 2.4rem 2.1rem 6.8rem;
  }
  .service-item__text:hover {
    cursor: pointer;
    cursor: url("./../img/png/cursor.png"), pointer;
  }
  .service-item__subtitle {
    display: inline-block;
    background: #fff102;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.6rem;
    line-height: 1.95;
    padding: 0 1rem;
    letter-spacing: 0.12em;
    border-radius: 2rem;
  }
  .service-item__title {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-bottom: 1.9rem;
    color: #002c50;
  }
  .service-item__support {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    position: relative;
    color: #002c50;
  }
  .service-item__support::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 30%;
    height: 1px;
    background: #002c50;
  }
  .service-item__support::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 30%;
    height: 1px;
    background: #002c50;
  }
  .service-item__support-list {
    padding: 2.3rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .service-item__support-item {
    font-size: 1.3rem;
    padding-left: 1.2rem;
    letter-spacing: 0.12em;
    line-height: 1.82;
    color: #002c50;
    font-weight: 600;
    position: relative;
  }
  .service-item__support-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    width: 0.4rem;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: #002c50;
  }
  .service-item__detail {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1.2rem 0;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    background: #fff102;
    text-align: center;
    font-size: 1.3rem;
    letter-spacing: 0.12em;
    color: #002c50;
    font-weight: 600;
  }
  .service-item__detail:hover {
    cursor: pointer;
    cursor: url("./../img/png/cursor.png"), pointer;
  }
}
.about {
  /* ========== 左半分 ========== */
  /* ========== 右半分 ========== */
}
.about.is-navy {
  background: #002c50;
}
.about.is-navy .about__title::before {
  color: #002c50;
  -webkit-text-stroke: 2px rgba(207, 215, 223, 0.5176470588);
  opacity: 1;
}
.about-inner {
  max-width: 1920px;
  width: 83.8vw;
  margin: 0 auto;
  display: flex;
  position: relative;
}
.about__img {
  position: absolute;
  left: 0;
  width: 50%;
  height: 50rem;
}
.about__img--grass {
  position: absolute;
  width: 46.875rem;
  top: 12.4rem;
  right: 5.8rem;
  max-width: none !important;
  opacity: 0.5;
}
.about__img--marks {
  position: absolute;
  width: 18.75rem;
  top: 19.5rem;
  right: 13.4rem;
}
.about__text {
  padding-top: 23rem;
  padding-left: 50%;
}
.about__title {
  position: relative;
  color: #ffffff;
}
.about__title::before {
  content: "ABOUT";
  position: absolute;
  display: block;
  top: -16.7rem;
  left: 2.2rem;
  font-size: 9.375rem;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.025em;
  font-weight: 200;
  color: #002c50;
  opacity: 1;
  -webkit-text-stroke: 3px #002c50;
}
.about__title--sub {
  font-size: 2.625rem;
  margin-top: 3rem;
  letter-spacing: 0.1em;
  color: #ffffff;
}
.about__description {
  font-size: 1rem;
  margin-top: 2.1rem;
  line-height: 2.1;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: #ffffff;
}
.about__link {
  margin-right: 0;
  margin-left: auto;
  margin-top: 2.7rem;
}

@media screen and (max-width: 768px) {
  .about {
    /* ========== 左半分 ========== */
    /* ========== 右半分 ========== */
  }
  .about.is-navy {
    background: #002c50;
  }
  .about.is-navy .about__title::before {
    font-weight: 300;
    color: #ffffff;
    -webkit-text-stroke: 3px #002c50;
    opacity: 0.5;
  }
  .about-inner {
    max-width: 1920px;
    width: 90vw;
    margin: 0 auto;
    display: block;
    position: relative;
  }
  .about__img {
    position: relative;
    height: 50rem;
    width: 100%;
  }
  .about__img--grass {
    position: absolute;
    width: 69rem;
    top: -2.5rem;
    left: -18.5rem;
    max-width: none !important;
    opacity: 0.5;
  }
  .about__img--marks {
    position: absolute;
    width: 30rem;
    top: 9.5rem;
    left: 12rem;
  }
  .about__text {
    padding-top: 12.9rem;
    padding-left: 0;
  }
  .about__title {
    position: relative;
    font-size: 1.9rem;
    padding-left: 2.3rem;
    letter-spacing: 0.1em;
    line-height: 1.5;
    z-index: 1;
  }
  .about__title::before {
    content: "ABOUT";
    position: absolute;
    display: block;
    top: -8rem;
    left: -3rem;
    font-size: 9rem;
    font-family: "Lato", sans-serif;
    letter-spacing: 0em;
    font-weight: 200;
    color: #002c50;
    -webkit-text-stroke: 3px #002c50;
    z-index: -1;
  }
  .about__title--sub {
    font-size: 3.2rem;
    margin-top: 3.1rem;
    letter-spacing: 0.06em;
    line-height: 1.6;
  }
  .about__description {
    font-size: 1.5rem;
    margin-top: 1.9rem;
    line-height: 2;
    letter-spacing: 0.14em;
    font-weight: 600;
  }
  .about__link {
    margin: 0 auto;
    margin-top: 3rem;
  }
}
.features {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding-bottom: 7rem;
}
.features.is-navy {
  background: #002c50;
}
.features.is-navy * {
  color: #ffffff;
}
.features.is-navy .features__title {
  color: #ffffff;
}
.features.is-navy .features__title::before {
  -webkit-text-stroke: 3px #ffffff;
  opacity: 0.8;
}
.features__inner {
  max-width: 1920px;
  width: 84vw;
  margin: 0 auto;
  display: flex;
}
.features__text {
  width: 50%;
  padding-top: 23.17rem;
}
.features__title {
  position: relative;
}
.features__title::before {
  content: "FEATURES";
  position: absolute;
  display: block;
  top: -10.3rem;
  left: -7.25rem;
  font-size: 9.375rem;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.025em;
  font-weight: 100;
  color: rgba(207, 215, 223, 0.5176470588);
  -webkit-text-stroke: 3px rgba(207, 215, 223, 0.5176470588);
  z-index: -1;
  opacity: 0.8;
}
.features__title--sub {
  font-size: 2.625rem;
  margin-top: 2.8rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.features__description {
  font-size: 1rem;
  margin-top: 1.875rem;
  line-height: 2.1;
  letter-spacing: 0.06em;
}
.features__btn {
  margin-left: 0;
  margin-top: 2.5rem;
  color: #002c50 !important;
}
.features__img {
  position: relative;
  width: 50%;
}
.features__img--pc {
  position: absolute;
  width: 18.75rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #e4edf5;
  top: 16.75rem;
  right: -4.75rem;
}
.features__img--pc::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 67%;
  aspect-ratio: 1/1;
  background-image: url(./../img/svg/top-about-ico2.svg);
}
.features__img--presentation {
  position: absolute;
  width: 18.75rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #def2ea;
  top: 31.75rem;
  right: 4.65rem;
}
.features__img--presentation::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 67%;
  aspect-ratio: 1/1;
  background-image: url(./../img/svg/top-about-ico1.svg);
}

@media screen and (max-width: 768px) {
  .features {
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
  }
  .features.is-navy {
    background: #002c50;
  }
  .features__inner {
    max-width: 1920px;
    width: 90vw;
    margin: 0 auto;
    display: block;
  }
  .features__text {
    width: 100%;
    padding-top: 41.4rem;
  }
  .features__title {
    position: relative;
    padding-left: 2.25rem;
  }
  .features__title::before {
    content: "FEATURES";
    position: absolute;
    display: block;
    top: -10rem;
    left: -3rem;
    font-size: 9rem;
    font-family: "Lato", sans-serif;
    letter-spacing: 0;
    font-weight: 100;
    color: rgba(207, 215, 223, 0.5176470588);
    -webkit-text-stroke: 3px rgba(207, 215, 223, 0.5176470588);
  }
  .features__title--sub {
    font-size: 3rem;
    margin-top: 3.05rem;
    letter-spacing: 0.115em;
    line-height: 1.7;
  }
  .features__description {
    font-size: 1.5rem;
    margin-top: 1.9rem;
    line-height: 2;
    letter-spacing: 0.14em;
    font-weight: 600;
  }
  .features__btn {
    margin: 0 auto;
    margin-top: 3rem;
  }
  .features__img {
    position: relative;
    width: 100%;
    height: 25rem;
  }
  .features__img--pc {
    position: absolute;
    width: 16rem;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: #e4edf5;
    top: 2.9rem;
    left: 25.5rem;
  }
  .features__img--pc::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 67%;
    aspect-ratio: 1/1;
    background-image: url(./../img/svg/top-about-ico2.svg);
  }
  .features__img--presentation {
    position: absolute;
    width: 16rem;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: #def2ea;
    top: 7.3rem;
    left: 12.625rem;
  }
  .features__img--presentation::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 67%;
    aspect-ratio: 1/1;
    background-image: url(./../img/svg/top-about-ico1.svg);
  }
}
.media {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding-top: 12.325rem;
}
.media__inner {
  max-width: 1920px;
  width: 83.8vw;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 4%;
  position: relative;
}
.media__inner::after {
  content: "MEDIA";
  position: absolute;
  display: block;
  top: -7.8rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9.375rem;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.02em;
  font-weight: 200;
  color: rgba(207, 215, 223, 0.5176470588);
  -webkit-text-stroke: 3px rgba(207, 215, 223, 0.5176470588);
  opacity: 0.8;
}
.media-blog {
  width: 50%;
}
.media-blog__content {
  border-top: solid 1px #cfd7df;
  border-bottom: solid 1px #cfd7df;
  margin-top: 2rem;
}
.media-blog__content:hover {
  background: rgba(0, 44, 80, 0.0470588235);
}
.media-blog__content:hover .media-blog__content-img {
  border-radius: 1rem;
}
.media-blog__content-link {
  display: flex;
  padding: 1.85rem 1.15rem;
  gap: 1.875rem;
}
.media-blog__content-link:hover {
  cursor: url("./../img/png/cursor.png"), pointer;
}
.media-blog__content-link:hover .media-blog__content-img {
  border-radius: 1.5rem;
}
.media-blog__content-img {
  width: 12.5rem;
  height: auto;
  overflow: hidden;
}
.media-blog__content-text {
  padding: 0.4rem 0;
}
.media-blog__content-title {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.media-blog__content-category {
  margin-top: 1rem;
  font-size: 0.875rem;
}
.media-blog__content-category--title {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  font-weight: 300;
}
.media-blog__content-category--name {
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  font-weight: 400;
}
.media-column {
  width: 50%;
}
.media-column__content {
  border-top: solid 1px #cfd7df;
  border-bottom: solid 1px #cfd7df;
}
.media-column__content:first-child {
  margin-top: 2rem;
}
.media-column__content:hover {
  background: rgba(0, 44, 80, 0.0470588235);
}
.media-column__content:hover .media-blog__content-img {
  border-radius: 1rem;
}
.media-column__content-link {
  display: flex;
  padding: 1.85rem 1.25rem;
}
.media-column__content-link:hover {
  cursor: url("./../img/png/cursor.png"), pointer;
}
.media-column__content-link:hover .media-column__content-img {
  border-radius: 1.5rem;
}
.media-column__content-img {
  width: 12.5rem;
  height: auto;
  overflow: hidden;
}
.media-column__content-text {
  width: calc(100% - 12.5rem);
  padding-left: 1.9rem;
}
.media-column__content-title {
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.media-column__content-category {
  margin-top: 0.75rem;
  font-size: 0.875rem;
}
.media-column__content-category--title {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  font-weight: 300;
}
.media-column__content-category--name {
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  font-weight: 400;
}
.media__btn {
  margin: 3.7rem 0 0 auto;
}

@media screen and (max-width: 768px) {
  .media {
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    padding-top: 15.65rem;
  }
  .media__inner {
    max-width: 1920px;
    width: 89.5vw;
    margin: 0 auto;
    display: block;
    position: relative;
  }
  .media__inner::after {
    content: "MEDIA";
    position: absolute;
    display: block;
    top: -4.8rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    font-family: "Lato", sans-serif;
    letter-spacing: 0.02em;
    font-weight: 200;
    color: rgba(207, 215, 223, 0.5176470588);
    -webkit-text-stroke: 3px rgba(207, 215, 223, 0.5176470588);
    opacity: 0.8;
    z-index: -1;
  }
  .media-blog {
    width: 100%;
  }
  .media-blog__content {
    border-top: solid 1px #cfd7df;
    border-bottom: solid 1px #cfd7df;
    margin-top: 3.1rem;
  }
  .media-blog__content:hover {
    background: rgba(0, 44, 80, 0.0470588235);
  }
  .media-blog__content:hover .media-blog__content-img {
    border-radius: 1rem;
  }
  .media-blog__content-link {
    display: flex;
    padding: 2.1rem 1rem;
    gap: 2.1rem;
  }
  .media-blog__content-link:hover {
    cursor: url("./../img/png/cursor.png"), pointer;
  }
  .media-blog__content-link:hover .media-blog__content-img {
    border-radius: 1.5rem;
  }
  .media-blog__content-img {
    width: 17.1rem;
    height: auto;
    overflow: hidden;
  }
  .media-blog__content-text {
    padding: 0.4rem 0;
  }
  .media-blog__content-title {
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: 0.06em;
    font-weight: 600;
  }
  .media-blog__content-category {
    margin-top: 1.5rem;
    font-size: 0.875rem;
  }
  .media-blog__content-category--title {
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    font-weight: 300;
  }
  .media-blog__content-category--name {
    font-size: 1.3rem;
    letter-spacing: 0.08em;
    font-weight: 400;
  }
  .media-column {
    width: 100%;
    padding-top: 6.25rem;
  }
  .media-column__content {
    border-top: solid 1px #cfd7df;
    border-bottom: solid 1px #cfd7df;
  }
  .media-column__content:first-child {
    margin-top: 3.1rem;
  }
  .media-column__content:hover {
    background: rgba(0, 44, 80, 0.0470588235);
  }
  .media-column__content:hover .media-blog__content-img {
    border-radius: 1rem;
  }
  .media-column__content-link {
    display: flex;
    padding: 2.1rem 0.8rem 2.1rem 0.9rem;
  }
  .media-column__content-link:hover {
    cursor: url("./../img/png/cursor.png"), pointer;
  }
  .media-column__content-link:hover .media-blog__content-img {
    border-radius: 1.5rem;
  }
  .media-column__content-img {
    width: 19.5rem;
    height: auto;
    overflow: hidden;
  }
  .media-column__content-text {
    width: calc(100% - 12.5rem);
    padding-left: 2.1rem;
  }
  .media-column__content-title {
    font-size: 1.5rem;
    line-height: 1.65;
    letter-spacing: 0.14em;
    font-weight: 600;
  }
  .media-column__content-category {
    margin-top: 1rem;
    font-size: 0.875rem;
  }
  .media-column__content-category--title {
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    font-weight: 300;
  }
  .media-column__content-category--name {
    font-size: 1.3rem;
    letter-spacing: 0.08em;
    font-weight: 400;
  }
  .media__btn {
    margin: 2.5rem auto 0;
  }
  .media__btn.column {
    margin-top: 3.1rem;
  }
}
.contact {
  margin-top: 9.375rem;
  padding: 5rem 0;
  background: #fff102;
}
.contact__inner {
  width: 75vw;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact__text {
  font-size: 1rem;
  letter-spacing: 0.065em;
  line-height: 2.1;
  position: relative;
}
.contact__text::after {
  content: "CONTACT";
  position: absolute;
  left: -11.3rem;
  top: -14.8rem;
  font-size: 9.375rem;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.02em;
  font-weight: 200;
  color: #ffffff;
  -webkit-text-stroke: 3px #ffffff;
  opacity: 0.8;
}
.contact-btn {
  display: flex;
  flex-direction: column;
  width: 32.5rem;
  gap: 1.25rem;
}
.contact-btn__link {
  display: flex;
  line-height: 5rem;
  background: rgba(255, 255, 255, 0.5333333333);
  border-radius: 6rem;
  padding: 0 1.25rem;
  gap: 1.25rem;
  position: relative;
}
.contact-btn__link::before {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  aspect-ratio: 1/1;
  border-radius: 3rem;
  background-color: #ffffff;
  background-image: url(./../img/svg/ico-arrow-right.svg);
  background-size: 0.75rem;
  background-repeat: no-repeat;
  background-position: center;
}
.contact-btn__link:hover {
  background: #ffffff;
}
.contact-btn__link:hover::before {
  background-color: #cfd7df;
}
.contact-btn__img {
  width: 3.75rem;
  height: auto;
}
.contact-btn__text {
  font-size: 1rem;
  letter-spacing: 0.065em;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .contact {
    margin-top: 10.7rem;
    padding: 9rem 0 4rem;
    background: #fff102;
  }
  .contact__inner {
    width: 89vw;
    max-width: 1920px;
    margin: 0 auto;
    display: block;
    align-items: center;
    justify-content: space-between;
  }
  .contact__text {
    font-size: 1.6rem;
    letter-spacing: 0.065em;
    line-height: 1.8;
    position: relative;
    text-align: center;
  }
  .contact__text::after {
    content: "CONTACT";
    position: absolute;
    display: block;
    top: -6.8rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    font-family: "Lato", sans-serif;
    letter-spacing: 0.02em;
    font-weight: 200;
    color: #ffffff;
    -webkit-text-stroke: 3px #ffffff;
    opacity: 0.8;
  }
  .contact-btn {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    margin-top: 2.2rem;
  }
  .contact-btn__link {
    display: flex;
    line-height: 6.4rem;
    background: rgba(255, 255, 255, 0.5333333333);
    border-radius: 6rem;
    padding: 0 2rem;
    gap: 2.1rem;
    position: relative;
  }
  .contact-btn__link::before {
    content: "";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3.2rem;
    aspect-ratio: 1/1;
    border-radius: 3rem;
    background-color: #ffffff;
    background-image: url(./../img/svg/ico-arrow-right.svg);
    background-size: 1.25rem;
    background-repeat: no-repeat;
    background-position: center;
  }
  .contact-btn__link:hover {
    background: #ffffff;
  }
  .contact-btn__link:hover::before {
    background-color: #cfd7df;
  }
  .contact-btn__img {
    width: 4.25rem;
    height: auto;
  }
  .contact-btn__text {
    font-size: 1.6rem;
    letter-spacing: 0.065em;
    font-weight: 400;
  }
}
.company {
  padding: 12.5rem 0;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.company__inner {
  text-align: center;
  position: relative;
}
.company__inner::after {
  content: "COMPANY";
  position: absolute;
  left: 50%;
  top: -8.5rem;
  transform: translateX(-50%);
  font-size: 9.375rem;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.025em;
  font-weight: 200;
  color: rgba(207, 215, 223, 0.5176470588);
  -webkit-text-stroke: 3px rgba(207, 215, 223, 0.5176470588);
  opacity: 0.8;
}
.company__title {
  font-size: 2rem;
  padding-left: 0;
  letter-spacing: 0.1em;
}
.company__text {
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.06em;
  margin-top: 3.125rem;
}
.company__btn {
  margin-top: 2.5rem;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .company {
    padding: 10.25rem 0;
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
  }
  .company__inner {
    width: 90vw;
    margin: 0 auto;
    text-align: center;
    position: relative;
  }
  .company__inner::after {
    content: "COMPANY";
    position: absolute;
    display: block;
    top: -3.8rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    font-family: "Lato", sans-serif;
    letter-spacing: 0.02em;
    font-weight: 200;
    color: rgba(207, 215, 223, 0.5176470588);
    -webkit-text-stroke: 3px rgba(207, 215, 223, 0.5176470588);
    opacity: 0.8;
  }
  .company__title {
    font-size: 2.9rem;
    padding-left: 0;
    letter-spacing: 0.2em;
    line-height: 1.75;
  }
  .company__text {
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: 0.06em;
    margin-top: 3.3rem;
    text-align: left;
  }
  .company__btn {
    margin-top: 3.3rem;
    text-align: left;
  }
}/*# sourceMappingURL=main.css.map */