@charset "UTF-8";
/* ---------------------------------------
  基本情報
-----------------------------------------*/
html {
  overflow-y: scroll;
  font-size: 62.5%;
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 400;
  text-align: left;
  color: #003060;
  word-break: break-word;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  color: #003060;
  font-weight: 400;
}

textarea {
  resize: vertical;
}

select::-ms-expand {
  display: none;
}

a {
  text-decoration: none;
  color: inherit;
  outline: none;
}

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

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

/* responsive
--------------------------------*/
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* base
--------------------------------*/
p, dt, dd, li, th, td,
input, button, textarea, select {
  font-size: 1.6rem;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .tel-link {
    pointer-events: none;
  }
}

@media screen and (max-width: 767px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
  img {
    width: 100%;
  }
}
/* ---------------------------------------------
  レイアウト
-----------------------------------------------*/
.l-wrap {
  max-width: 118rem;
  width: calc(100% - 4rem);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .l-wrap {
    width: calc(100% - 5rem);
  }
}
.l-wrap.-l {
  max-width: 128rem;
}

.l-container {
  overflow: hidden;
}

/* ---------------------------------------------
  装飾
-----------------------------------------------*/
.u-bold {
  font-weight: 700;
}

.u-underline {
  text-decoration: underline;
}

/* ---------------------------------------------
  パーツ
-----------------------------------------------*/
/* ボタン
--------------------------------*/
/* タイトル
--------------------------------*/
/* ---------------------------------------------
  header
-----------------------------------------------*/
.l-header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  top: 0;
  left: 0;
  padding: 3rem;
}
@media screen and (max-width: 767px) {
  .l-header {
    padding: 2rem 1.5rem;
  }
}
.l-header_inner {
  max-width: 136rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1.5rem;
  padding: 2rem 4rem;
  position: relative;
  z-index: 10002;
}
@media screen and (max-width: 767px) {
  .l-header_inner {
    padding: 0.8rem 1rem;
    border-radius: 0.5rem;
  }
}
.l-header_left .logo a {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 1.1rem;
  position: relative;
}
.l-header_left .logo a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0.3rem;
  height: 3.3rem;
  background-color: #6ee16b;
  border-radius: 0.1rem;
}
.l-header_left .logo_en {
  font-family: "Aktiv Grotesk Ex", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #003060;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .l-header_left .logo_en {
    font-size: 0.9rem;
    margin-top: -0.5rem;
  }
}
.l-header_left .logo_jp {
  font-size: 2.4rem;
  font-weight: 500;
  color: #003060;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .l-header_left .logo_jp {
    font-size: 1.9rem;
  }
}
.l-header_right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .l-header .menu {
    position: fixed;
    top: 8.6rem;
    right: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 1.5rem;
    padding: 2rem 2rem;
    box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.12);
    transform: translateY(-1rem);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 10001;
  }
}
.l-header .menu .list {
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .l-header .menu .list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
  }
}
.l-header .menu .list_item a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #003060;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .l-header .menu .list_item a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-header .menu .list_item a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-header .menu .list_item a {
    font-size: 1.6rem;
    padding: 0.6rem 0;
  }
}
.l-header .menu-triger {
  display: none;
  width: 3rem;
  height: 2rem;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .l-header .menu-triger {
    display: flex;
  }
}
.l-header .menu-triger span {
  display: block;
  width: 100%;
  height: 0.2rem;
  background: #003060;
  border-radius: 0.1rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.l-header_overlay {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header_overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 10000;
  }
}

@media screen and (max-width: 767px) {
  body.is-menuOpen {
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  body.is-menuOpen .l-header .menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}
@media screen and (max-width: 767px) {
  body.is-menuOpen .l-header .l-header_overlay {
    opacity: 1;
    pointer-events: auto;
  }
}
body.is-menuOpen .l-header .menu-triger span:nth-child(1) {
  transform: translateY(0.9rem) rotate(45deg);
}
body.is-menuOpen .l-header .menu-triger span:nth-child(2) {
  opacity: 0;
}
body.is-menuOpen .l-header .menu-triger span:nth-child(3) {
  transform: translateY(-0.9rem) rotate(-45deg);
}

/* ---------------------------------------------
  footer
-----------------------------------------------*/
.l-footer {
  background: #515459;
  padding: 6rem 0 4rem;
  border-radius: 2rem 2rem 0 0;
  margin-top: -2rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 23rem 0 1.6rem;
  }
}
.l-footer .l-wrap {
  max-width: 136rem;
  position: relative;
}
.l-footer_content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .l-footer_content {
    flex-direction: column;
    gap: 3rem;
  }
}
.l-footer_txt-box {
  flex: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer_txt-box {
    padding-left: 1rem;
  }
}
.l-footer_txt {
  font-size: 1.8rem;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 1.6rem;
}
@media screen and (max-width: 767px) {
  .l-footer_txt {
    font-size: 1.6rem;
  }
}
.l-footer_txt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.3rem;
  height: 6.7rem;
  background: #6ee16b;
  border-radius: 0.1rem;
}
@media screen and (max-width: 767px) {
  .l-footer_txt::before {
    height: 9.6rem;
  }
}
.l-footer_txt-small {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .l-footer_txt-small {
    font-size: 1.6rem;
    margin-bottom: 4rem;
  }
}
.l-footer_txt-medium {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .l-footer_txt-medium {
    font-size: 1.8rem;
  }
}
.l-footer_img {
  position: absolute;
  top: -13rem;
  right: 0;
  width: 38rem;
}
@media screen and (max-width: 767px) {
  .l-footer_img {
    top: -27rem;
    width: 24.5rem;
    right: -1rem;
  }
}
.l-footer_img.--second {
  top: 7.2rem;
  right: 27.3rem;
  width: 25.8rem;
}
@media screen and (max-width: 767px) {
  .l-footer_img.--second {
    width: 17rem;
    right: auto;
    left: 0;
    top: -14rem;
  }
}
.l-footer_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
.l-footer_copyright {
  font-family: "Aktiv Grotesk Ex", sans-serif;
  font-size: 1rem;
  color: #ffffff;
  text-align: right;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .l-footer_copyright {
    text-align: center;
    font-size: 0.9rem;
  }
}

/* ---------------------------------------------
  main
-----------------------------------------------*/
.fade-box {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.9s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.delay-time02 {
  animation-delay: 0.2s;
}

.delay-time04 {
  animation-delay: 0.4s;
}

.delay-time06 {
  animation-delay: 0.6s;
}

.delay-time08 {
  animation-delay: 0.8s;
}

.delay-time10 {
  animation-delay: 1s;
}