@charset "UTF-8";
body {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: #2e2d2d;
  font-family: "Noto Sans JP", sans-serif;
  background: #fafafa;
}

/* spの時は非表示 */
@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}

/* pcの時は非表示 */
@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

.inline-block {
  font-weight: inherit;
  display: inline-block;
}

.inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
}

.title_small {
  font-size: 20px;
  letter-spacing: 0.8px;
}

.heading {
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.heading__en {
  font-size: 38px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 3.8px;
}
@media screen and (min-width: 768px) {
  .heading__en {
    font-size: 50px;
    letter-spacing: 5px;
  }
}

.heading__ja {
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 1.12px;
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  .heading__ja {
    font-size: 16px;
    letter-spacing: 1.28px;
  }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  padding: 22px 15px;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 21px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 768px) {
  .header__logo {
    padding-top: 6px;
  }
}
.header__logo a img {
  width: 100px;
  display: block;
}
@media screen and (min-width: 768px) {
  .header__logo a img {
    width: 135px;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 40px;
  }
}

.header__link {
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 2.5;
  transition: color 0.3s;
}
.header__link:hover {
  color: #f5f5f5;
}

.header__open {
  margin-top: 3px;
}
@media screen and (min-width: 768px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  width: 36px;
  height: 21px;
  position: relative;
  z-index: 51;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 10px;
  transform: rotate(30deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 10px;
  transform: rotate(-30deg);
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 3px;
  border-radius: 6px;
  background: #2e2d2d;
  transition: transform 0.3s linear, top 0.3s linear;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 9px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 18px;
}

.drawer-content {
  width: 320px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: linear-gradient(180deg, #05baff 0%, #0399ed 100%);
  opacity: 0.9;
  z-index: 50;
  padding: 86px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.3s linear;
}
.drawer-content.is-checked {
  transform: translateX(0);
}

.drawer-content__link {
  display: block;
  padding-top: 14px;
  padding-bottom: 14px;
  text-align: right;
  font-weight: 700;
  letter-spacing: 0.48px;
}

.drawer-content__button {
  margin-top: 14px;
  text-align: right;
}

.mv__inner {
  width: 100%;
  height: 350px;
  background-image: url(../img/image.jpg);
  background-size: cover;
  position: relative;
}
.mv__content {
  position: absolute;
  width: 330px;
  top: 110px;
  right: 0;
  background-color: rgba(255, 255, 255, 0.2);
}

.mv__lead1 {
  display: block;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  font-feature-settings: "palt" on;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2.2px;
  border-radius: 3px;
  padding: 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mv__lead1 {
    margin-left: 0;
    margin-right: 0;
    font-size: 38px;
    letter-spacing: 3.8px;
    padding: 12px 16px;
  }
}

.news {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .news {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.news__card {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 9px 30px 0px #f4f4f4;
  padding: 40px 12px;
}
@media screen and (min-width: 768px) {
  .news__card {
    border-radius: 30px;
    padding-top: 40px;
    padding-bottom: 34px;
    padding-left: 9.2105263158%;
    padding-right: 9.2105263158%;
  }
}

.news__title {
  font-family: "Montserrat", sans-serif;
  color: #05baff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .news__title {
    font-size: 38px;
    letter-spacing: 2px;
  }
}

.news__lists {
  margin-top: 28px;
}
.news__lists a {
  transition: color 0.3s;
}
@media screen and (min-width: 768px) {
  .news__lists {
    margin-top: 30px;
  }
}

.news__list:nth-child(n+2) {
  position: relative;
}
.news__list:nth-child(n+2)::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  background: #a0e2f6;
}

.news__link {
  text-align: right;
  margin-top: 22px;
  margin-right: 7px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .news__link {
    margin-top: 20px;
  }
}
.news__link a {
  line-height: 100%;
  display: inline-block;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 8px;
  vertical-align: top;
  transition: color 0.3s;
}
.news__link a:hover {
  color: #05baff;
}

.news-link {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .news-link {
    flex-direction: row;
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 0;
  }
}
.news-link:hover {
  color: #05baff;
}

.news-link__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .news-link__meta {
    width: 247px;
    flex-shrink: 0;
    gap: 14px;
  }
}

.news-link__date {
  color: #333;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .news-link__date {
    width: 119px;
  }
}

.about,
.system,
.safety,
.recruit {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .about,
  .system,
  .safety,
  .recruit {
    padding-top: 50px;
    padding-bottom: 100px;
  }
}

.about__title,
.system__title,
.safety__title,
.recruit__title {
  font-family: "Montserrat", sans-serif;
  color: #05baff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__title,
  .system__title,
  .safety__title,
  .recruit__title {
    font-size: 38px;
    letter-spacing: 2px;
  }
}

.about__content,
.system__content,
.safety__content {
  margin: 50px 0;
  padding: 0 40px;
}
.about__image {
  width: 100%;
  text-align: center;
  margin: 7px 0;
}
.about__image img {
  width: 350px;
  border-radius: 2px;
}
.about__text,
.system__text,
.safety__text,
.recruit__text {
  line-height: 2.3;
}

.system {
  background: linear-gradient(180deg, #05baff 0%, #0399ed 100%);
  border-radius: 20px;
  margin: 0 15px 50px;
}

.system__title,
.system__content,
.recruit__title,
.recruit__content {
  color: #f5f5f5;
}

.safety__text {
  padding: 12px 0;
}

.safety__text_large {
  font-weight: 700;
  font-size: 17px;
  color: #05baff;
}

.safety__lead {
  margin-top: 20px;
  background: #fff;
  padding: 22px;
  line-height: 2;
  font-size: 15px;
  border: #05baff solid 1px;
  border-radius: 7px;
  box-shadow: 7px 7px 7px rgba(7, 165, 228, 0.2);
}

.recruit {
  background: linear-gradient(180deg, #05baff 0%, #0399ed 100%);
  border-radius: 20px;
  margin: 0 15px;
}

.recruit__content {
  margin: 50px 30px 20px;
}

.recruit__text {
  text-align: center;
  padding-bottom: 20px;
}

.recruite__itmes {
  padding: 18px 0;
  border-bottom: #f5f5f5 solid 0.75px;
}
@media screen and (min-width: 768px) {
  .recruite__itmes {
    display: flex;
    margin: 0 80px;
  }
}

.recruite__item1 {
  padding: 0 7px;
}
@media screen and (min-width: 768px) {
  .recruite__item1 {
    width: 30%;
    padding-left: 50px;
  }
}

.recruite__item2 {
  padding: 0 7px 0 20px;
}
@media screen and (min-width: 768px) {
  .recruite__item2 {
    width: 70%;
  }
}

.recruit__image {
  width: 80%;
  margin: 50px auto 26px;
  text-align: center;
}
.recruit__image img {
  border-radius: 3px;
}

.footer {
  padding: 18px 0;
  text-align: center;
}

.footer__copyright {
  color: #0399ed;
  font-size: 12px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.96px;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s, transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-down {
  opacity: 0;
  transform: translateY(-24px);
  transition: opacity 1s, transform 1s;
}
.fade-in-down.is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 1s;
}
.fade-in.is-in-view {
  opacity: 1;
}

.recruit__contact {
  text-align: center;
}

.button {
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 20px;
  padding: 10px 30px;
  display: inline-block;
  border-radius: 20px;
  background: #f5f5f5;
  font-size: 15px;
  line-height: 1.7;
  color: #05baff;
  min-width: 150px;
  text-align: center;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}
.button:hover {
  transform: translateY(-4px);
}
@media screen and (min-width: 768px) {
  .button {
    margin-top: 50px;
  }
}

.recruit__button img {
  width: 30px;
  margin-right: 10px;
}