@charset "UTF-8";
/* CSS INFORMATION -====================================================
File name : base.css
Description : 共通
===================================================================== */
/* =====================================================================
    共通（大枠）
======================================================================*/
html {
  min-height: 100vh;
  font-size: calc(10 / 750 * 100vw);
  overflow-x: hidden;
  overflow-y: scroll;
}
@media screen and (min-width: 768px) {
  html {
    font-size: calc(10 / 1920 * 100vw);
  }
}
@media screen and (min-width: 1920px) {
  html {
    font-size: 10px;
  }
}

body {
  position: relative;
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #000000;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 2rem;
    font-size: max(2rem, 14px);
  }
}
body img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
body a,
body button {
  display: block;
  color: currentColor;
  word-wrap: break-word;
  line-break: anywhere;
}
@media screen and (min-width: 768px) {
  body a,
  body button {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
  body a:hover,
  body button:hover {
    opacity: 0.7;
  }
}

section,
main,
header,
footer {
  position: relative;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

@supports (aspect-ratio: 1) {
  .main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.main > * {
  overflow: hidden;
}

.inner {
  position: relative;
  margin: 0 auto;
  width: calc(640 / 750 * 100%);
  z-index: 2;
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
}
@media screen and (min-width: 768px) {
  .inner {
    padding: 0 calc(224 / 1920 * 100%);
    width: calc(1728 / 1920 * 100%);
    max-width: 1728px;
  }
}
@media screen and (min-width: 1920px) {
  .inner {
    padding: 0 224px;
  }
}

.main p,
.main dd {
  line-height: 1.5;
}
.main p a,
.main dd a {
  display: inline;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
/* =====================================================================
    共通
======================================================================*/
.ff-en {
  font-family: "Poppins", sans-serif;
}

.movie-embed {
  position: relative;
  padding-top: 56.25%;
}
.movie-embed iframe,
.movie-embed video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sec-ttl {
  margin-bottom: 8rem;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .sec-ttl {
    margin-bottom: 6.4rem;
  }
}
.sec-ttl .ja {
  display: block;
  margin-bottom: 0.2em;
  letter-spacing: 0.2em;
}
.sec-ttl .en {
  margin-left: -0.05em;
  font-family: "Poppins", sans-serif;
  font-size: 480%;
  font-weight: 700;
  color: #002cf1;
  letter-spacing: 0.05em;
}

.btn01 {
  text-align: center;
}
.btn01 a {
  position: relative;
  display: inline-block;
  padding: 0.75em 1.8em;
  width: auto;
  font-size: 125%;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  background-color: #ff4070;
  border-radius: 3em;
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .btn01 a {
    font-size: 150%;
    -webkit-transition-property: color;
    transition-property: color;
  }
  .btn01 a::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    right: 0.9em;
    margin: auto 0;
    width: 0.35em;
    height: 0.35em;
    background-color: #e50012;
    border-radius: 50%;
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
    z-index: -1;
  }
  .btn01 a:hover {
    opacity: 1;
    color: #ffffff;
  }
  .btn01 a:hover::before {
    -webkit-transform: scale(200);
            transform: scale(200);
  }
}
.btn01 a::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  right: 0.9em;
  margin: auto 0;
  width: 0.35em;
  height: 0.35em;
  background-color: currentColor;
  border-radius: 50%;
}

/* =====================================================================
*    header
* =================================================================== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding: 3.5rem 0;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .header {
    padding: 2.2rem 0;
    background-color: #ffffff;
  }
}
.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  width: calc(680 / 750 * 100%);
}
@media screen and (min-width: 768px) {
  .header-inner {
    width: calc(1840 / 1920 * 100%);
  }
}
.header h1 {
  position: relative;
  width: 25.8823529412%;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .header h1 {
    width: 8.6956521739%;
  }
}
.header-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
}
.header-btn a {
  margin-left: 0.8em;
  padding-left: 0.8em;
  padding-right: 1.5em;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  line-height: 1;
}
.header-btn-recruit a {
  padding-top: 0.9em;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #ffffff;
  background-color: #002cf1;
}
.header.is-active h1 {
  -webkit-filter: grayscale(1) brightness(6);
          filter: grayscale(1) brightness(6);
}
.header.is-active .btn-menu span {
  right: 0.8em;
}
.header.is-active .btn-menu span:nth-of-type(1) {
  top: 0.2em;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header.is-active .btn-menu span:nth-of-type(2) {
  right: 100%;
  opacity: 0;
}
.header.is-active .btn-menu span:nth-of-type(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.btn-menu {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  width: 9.6em;
  height: 9.6em;
  font-size: 1rem;
  background-color: #ff4070;
  border-radius: 50%;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .btn-menu {
    display: none;
  }
}
.btn-menu-inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 3.4em;
  height: 2.8em;
}
.btn-menu span {
  display: inline-block;
  position: absolute;
  right: 0;
  width: 100%;
  height: 0.4em;
  background-color: #ffffff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.btn-menu span:nth-of-type(1) {
  top: 0;
  -webkit-transform-origin: top right;
          transform-origin: top right;
}
.btn-menu span:nth-of-type(2) {
  top: calc(50% - 0.2em);
}
.btn-menu span:nth-of-type(3) {
  bottom: 0;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
}

.nav {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 16rem 0 120px;
  background-color: #002cf1;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .nav {
    position: relative;
    display: block !important;
    margin-left: auto;
    padding: 0;
    width: auto;
    height: 100%;
    background-color: transparent;
    overflow: visible;
  }
}
.nav-menu {
  margin: 16rem 0;
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
}
@media screen and (min-width: 768px) {
  .nav-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
  }
}
.nav-menu > li {
  font-size: 4rem;
}
@media screen and (min-width: 768px) {
  .nav-menu > li {
    margin-right: 8rem;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .nav-menu > li:not(:last-child) {
    margin-bottom: 2em;
  }
}
.nav-menu > li > a {
  position: relative;
  text-align: center;
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  letter-spacing: 0.1em;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .nav-menu > li > a {
    padding: 0.8em 0;
    height: 100%;
    color: #000000;
  }
  .nav-menu > li > a::after {
    content: "";
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    width: 0;
    border-bottom: 0.3rem solid #e50012;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
  }
  .nav-menu > li > a:hover {
    opacity: 1;
  }
  .nav-menu > li > a:hover::after {
    width: 100%;
  }
}
.nav-menu > li.nolink a {
  pointer-events: none;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  opacity: 0.6;
}
.nav-btn li {
  font-size: 4rem;
}
.nav-btn li:not(:last-child) {
  margin-bottom: 1em;
}
.nav-btn li a {
  font-size: 100%;
  min-width: calc(520 / 750 * 100%);
}
.nav-btn-recruit a {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #002cf1;
  background-color: #ffffff;
}

/* =====================================================================
    animation
======================================================================*/
.anime-loop {
  --duration: 80s;
  position: relative;
  margin: 0 calc(50% - 50vw);
  padding: 2.4rem 0;
  overflow: hidden;
}
.anime-loop::before, .anime-loop::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(718 / 750 * 100%);
  border-top: 0.3rem solid #ebedf2;
}
@media screen and (min-width: 768px) {
  .anime-loop::before, .anime-loop::after {
    width: calc(1888 / 1920 * 100%);
  }
}
.anime-loop::after {
  top: auto;
  bottom: 0;
}
.anime-loop-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: calc(49 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .anime-loop-item {
    height: calc(49 / 1920 * 100vw);
  }
}
.anime-loop-item > * {
  width: auto;
  height: 100%;
  -webkit-animation: loopRight var(--duration) linear infinite;
          animation: loopRight var(--duration) linear infinite;
}
.anime-loop-item > :nth-child(1) {
  -webkit-animation-name: loopLeft;
          animation-name: loopLeft;
  -webkit-animation-delay: calc(var(--duration) / -2);
          animation-delay: calc(var(--duration) / -2);
}
.anime-loop.reverse .anime-loop-item > * {
  animation-direction: reverse;
}

@-webkit-keyframes loopLeft {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes loopLeft {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes loopRight {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@keyframes loopRight {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
/* =====================================================================
*    footer
* =================================================================== */
.footer {
  padding-bottom: 2rem;
}
.footer .anime-loop::after {
  display: none;
}
.footer-sns li {
  margin-bottom: 0.25em;
}
.footer-sns li a {
  display: grid;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1em;
  height: 1em;
  background-color: #000000;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .footer-sns li a {
    -webkit-transition-property: background-color;
    transition-property: background-color;
  }
  .footer-sns li a:hover {
    opacity: 1;
    background-color: #e50012;
  }
}
.footer-sns li a svg {
  width: 40%;
  height: 40%;
  fill: #ffffff;
}
.footer > .inner {
  padding: 8rem calc(64 / 750 * 100%);
  width: calc(718 / 750 * 100%);
  color: #ffffff;
  background-color: #002cf1;
  border-radius: 3.2rem;
}
@media screen and (min-width: 768px) {
  .footer > .inner {
    display: grid;
    grid-template-columns: 25% 75%;
    grid-template-rows: 1fr auto;
    gap: 0px 0px;
    grid-template-areas: "footer-top footer-sitemap" "copyright copyright";
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-line-pack: justify;
        align-content: space-between;
    padding: 12rem calc(80 / 1920 * 100%);
    width: calc(1888 / 1920 * 100%);
    max-width: 1888px;
  }
}
@media screen and (min-width: 768px) {
  .footer-top {
    grid-area: footer-top;
  }
}
.footer-logo {
  width: 67.7966101695%;
}
@media screen and (min-width: 768px) {
  .footer-logo {
    width: 24rem;
  }
}
.footer-contact {
  text-align: left;
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  .footer-contact {
    margin-top: 3.5rem;
  }
}
.footer-contact a {
  font-size: 78%;
  letter-spacing: 0.1em;
}
.footer-sitemap {
  margin-top: 6.4rem;
  font-size: 68%;
}
@media screen and (min-width: 768px) {
  .footer-sitemap {
    grid-area: footer-sitemap;
    margin-top: 0;
    font-size: 90%;
  }
}
.footer-sitemap-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5rem 6.7796610169%;
}
@media screen and (min-width: 768px) {
  .footer-sitemap-list {
    font-size: 2rem;
  }
}
.footer-sitemap-list > li {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .footer-sitemap-list > li.w100 {
    width: 100%;
  }
}
.footer-sitemap-ttl:not(:first-child) {
  margin-top: 5rem;
}
.footer-sitemap-ttl a {
  display: inline-block;
  padding-left: 2.3rem;
  font-size: 227%;
  border-left: 0.4rem solid #ff4070;
}
.footer-sitemap-ttl a small {
  display: block;
  margin-bottom: 0.3em;
  font-size: 36%;
  letter-spacing: 0.1em;
}
.footer-sitemap-ttl a em {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.footer-sitemap-sub {
  margin-top: 1.8em;
}
.footer-sitemap-sub > li:not(:last-child) {
  margin-bottom: 1em;
}
.footer-sitemap-sub > li a {
  position: relative;
  display: inline-block;
  padding-left: 1.5em;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.footer-sitemap-sub > li a::before {
  content: "";
  position: absolute;
  display: block;
  top: 0.57em;
  left: 0.3em;
  width: 0.25em;
  height: 0.25em;
  background-color: #ff4070;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .footer-sitemap-sub > li a:hover {
    opacity: 1;
  }
  .footer-sitemap-sub > li a:hover::before {
    -webkit-transform: scale(4);
            transform: scale(4);
  }
}

.follow-content {
  display: none;
  position: fixed;
  bottom: 0;
  right: 1.6rem;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .follow-content {
    right: 2.4rem;
  }
}
.follow-content > * {
  width: 1em;
  font-size: 9.6rem;
}
.follow-content > *:not(:last-child) {
  margin-bottom: 0.25em;
}
@media screen and (min-width: 768px) {
  .follow-content > * {
    font-size: 6.4rem;
  }
}

.btn-home {
  margin-left: -0.046em;
  width: 1.093em;
}

.copyright {
  margin-top: 8rem;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .copyright {
    text-align: left;
    grid-area: copyright;
    font-size: 1.6rem;
  }
}

/* =====================================================================
*    popup
* =================================================================== */
.popup {
  position: fixed !important;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 50;
}
.popup-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 120px 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
}
.popup-area::-webkit-scrollbar {
  width: 0;
}
.popup-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
}
@media screen and (min-width: 768px) {
  .popup-bg {
    cursor: pointer;
  }
}
.popup-inner {
  position: relative;
  margin: auto;
  -ms-flex-item-align: start;
  align-self: flex-start;
  width: calc(640 / 750 * 100%);
}
@media screen and (min-width: 768px) {
  .popup-inner {
    width: 90%;
    max-width: 1280px;
  }
}
@media screen and (max-width: 767px) {
  .popup-movie .popup-inner {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .popup-movie .popup-inner {
    max-width: 120vh;
  }
}
.popup-close {
  position: absolute;
  top: -4em;
  right: 0;
  width: 3em;
  height: 3em;
  z-index: 3;
}
.popup-close::before, .popup-close::after {
  content: "";
  display: block;
  width: 1px;
  margin: 0 auto;
  padding-top: 90%;
  border-left: 2px solid #000000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.popup-close::after {
  position: absolute;
  top: 51%;
  left: 0;
  right: 0;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
  -webkit-transform-origin: top left;
          transform-origin: top left;
}
.popup-list {
  position: relative;
  width: 100%;
  height: 100%;
  color: #002cf1;
  background: #000000;
}
.popup-list > li {
  position: relative;
  display: none;
  margin: 0 auto;
  padding: 12rem calc(40 / 640 * 100%);
  line-height: 1.5;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .popup-list > li {
    padding: 8rem calc(65 / 1280 * 100%);
  }
}

/* =====================================================================
    print
======================================================================*//*# sourceMappingURL=base.css.map */