@charset "UTF-8";
@keyframes loop_slide_right {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/*============================================================================
               header
============================================================================ */
.ly_header {
  position: fixed;
  top: 0;
  z-index: 200;
}
.ly_header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 80px;
  padding: 20px 75px 25px;
}
@media screen and (max-width: 749px) {
  .ly_header_inner {
    display: block;
    padding: 30px 20px 0;
  }
}
@media screen and (max-width: 749px) {
  .ly_header_logo img {
    width: 100px;
    height: auto;
  }
}
.ly_header_hamBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  top: 40px;
  top: 10.6666666667vw;
  right: 20px;
  right: 5.3333333333vw;
  z-index: 1000;
  width: 20px;
  height: 12px;
  transition: 0.2s ease-in-out;
}
@media screen and (min-width: 750px) {
  .ly_header_hamBtn {
    display: none;
  }
}
.ly_header_hamBtn .__hidden {
  font-size: 0;
}
.ly_header_hamBtn .__border {
  display: block;
  width: 20px;
  height: 2px;
  background: #314d54;
  position: relative;
}
.ly_header_hamBtn .__border::before, .ly_header_hamBtn .__border::after {
  display: block;
  content: "";
  width: 20px;
  height: 2px;
  background: #314d54;
  position: absolute;
  transition: 0.2s ease-in-out;
}
.ly_header_hamBtn .__border::before {
  top: -6px;
}
.ly_header_hamBtn .__border::after {
  bottom: -6px;
}
.ly_header_hamBtn.__active .__border {
  height: 0;
}
.ly_header_hamBtn.__active .__border::before, .ly_header_hamBtn.__active .__border::after {
  top: 0;
}
.ly_header_hamBtn.__active .__border::before {
  transform: rotate(45deg);
}
.ly_header_hamBtn.__active .__border::after {
  transform: rotate(-45deg);
}
.ly_header_hamBtn:hover {
  cursor: pointer;
  opacity: 0.7;
}
@media screen and (max-width: 749px) {
  .ly_header_nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
  }
  .ly_header_nav.__active {
    display: block;
  }
}
.ly_header_nav nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 749px) {
  .ly_header_nav nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 30px;
    gap: 8vw;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 15px;
    padding: 4vw;
    padding-top: 40px;
    padding-top: 10.6666666667vw;
    padding-bottom: 40px;
    padding-bottom: 10.6666666667vw;
    background: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
}
.ly_header_nav nav a {
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 500;
}
@media screen and (max-width: 749px) {
  .ly_header_nav nav a:nth-child(1) {
    display: none;
    visibility: hidden;
  }
}

html.js_scroll_prevent {
  width: 100%;
  height: 100%;
  position: fixed;
}

.ly_footer {
  background: #0a1c21;
}
.ly_footer_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px 0;
  padding: 70px 80px 90px;
}
@media screen and (max-width: 749px) {
  .ly_footer_inner {
    display: block;
    width: 100%;
    padding: 40px;
    padding: 10.6666666667vw;
    padding-right: 20px;
    padding-right: 5.3333333333vw;
    padding-left: 20px;
    padding-left: 5.3333333333vw;
  }
}
.ly_footer_logo {
  width: 50%;
  order: 1;
}
@media screen and (max-width: 749px) {
  .ly_footer_logo {
    width: 100%;
    margin-bottom: 80px;
    margin-bottom: 21.3333333333vw;
  }
}
.ly_footer_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  align-items: center;
  gap: 70px;
  width: 50%;
  order: 2;
  line-height: 1.25;
}
@media screen and (max-width: 749px) {
  .ly_footer_nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 28px;
    gap: 7.4666666667vw;
    width: 100%;
    margin-bottom: 28px;
    margin-bottom: 7.4666666667vw;
  }
}
.ly_footer_nav a {
  font-size: 1.6rem;
  letter-spacing: -0.15px;
  color: #fff;
}
@media screen and (max-width: 749px) {
  .ly_footer_nav a {
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}
.ly_footer_navSub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
  width: 50%;
  order: 4;
  opacity: 0.6;
  line-height: 1.25;
}
@media screen and (max-width: 749px) {
  .ly_footer_navSub {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 28px;
    gap: 7.4666666667vw;
    margin-bottom: 75px;
    margin-bottom: 20vw;
    width: 100%;
  }
}
.ly_footer_navSub a {
  font-size: 1.4rem;
  letter-spacing: -0.15px;
  color: #fff;
}
@media screen and (max-width: 749px) {
  .ly_footer_navSub a {
    width: 100%;
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}
.ly_footer_copy {
  width: 50%;
  order: 3;
  color: #fff;
  font-size: 1.2rem;
  opacity: 0.6;
}
@media screen and (max-width: 749px) {
  .ly_footer_copy {
    width: 100%;
    font-size: 12px;
    font-size: 3.2vw;
  }
}

body {
  width: 100%;
}

main {
  position: relative;
  width: 100%;
  padding-top: 80px;
  overflow: clip;
}
.ly_wrapBase {
  width: 100%;
  max-width: 1150px;
  padding: 0 15px;
  margin: 0 auto;
}
@media screen and (max-width: 749px) {
  .ly_wrapBase {
    width: 100%;
    padding: 0;
    padding-right: 20px;
    padding-right: 5.3333333333vw;
    padding-left: 20px;
    padding-left: 5.3333333333vw;
  }
}

.ly_pageHead {
  margin-top: 80px;
  margin-top: 21.3333333333vw;
  margin-bottom: 80px;
  margin-bottom: 21.3333333333vw;
  position: relative;
}
@media screen and (min-width: 750px) {
  .ly_pageHead {
    margin: 186px 0 80px;
  }
}
.ly_pageHead::before {
  display: block;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -5px;
  top: -1.3333333333vw;
  right: 0;
}
@media screen and (min-width: 750px) {
  .ly_pageHead::before {
    top: unset;
    bottom: 0;
    right: unset;
    left: calc(75px + 8.6em);
  }
}
.ly_pageHead > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  gap: 2.6666666667vw;
  position: relative;
}
@media screen and (min-width: 750px) {
  .ly_pageHead > div {
    gap: 10px;
  }
}
.ly_pageHead_en {
  display: inline-block;
  background: linear-gradient(90deg, #0abe82 0%, #0bbb9d 51%, #0db7b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: YakuHanJP, "Heebo", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
  font-size: 4.2666666667vw;
  line-height: 1;
  letter-spacing: 6px;
  letter-spacing: 1.6vw;
}
@media screen and (min-width: 750px) {
  .ly_pageHead_en {
    font-size: 1.6rem;
    letter-spacing: 6px;
  }
}
.ly_pageHead_jp {
  font-size: 32px;
  font-size: 8.5333333333vw;
  font-weight: bold;
  letter-spacing: 3px;
  letter-spacing: 0.8vw;
  line-height: 1.3;
}
.ly_pageHead_jp::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.3) * 0.5em);
  content: "";
}
.ly_pageHead_jp::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.3) * 0.5em);
  content: "";
}
@media screen and (min-width: 750px) {
  .ly_pageHead_jp {
    font-size: 4.2rem;
    letter-spacing: 3px;
  }
}

.ly_pnkz {
  padding-top: 10px;
  padding-top: 2.6666666667vw;
  padding-bottom: 10px;
  padding-bottom: 2.6666666667vw;
}
@media screen and (min-width: 750px) {
  .ly_pnkz {
    padding: 20px 0;
  }
}
.ly_pnkz ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
.ly_pnkz ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #99a1af;
  font-size: 12px;
  font-size: 3.2vw;
  gap: 15px;
}
@media screen and (min-width: 750px) {
  .ly_pnkz ul li {
    font-size: 1.2rem;
  }
}
.ly_pnkz ul li:after {
  display: block;
  content: "";
  width: 5px;
  height: 5px;
  border: 1px solid #99a1af;
  border-top: none;
  border-left: none;
  transform: rotate(-45deg);
}
.ly_pnkz ul li:last-child:after {
  display: none;
}