@charset "UTF-8";
/* ページ全般の設定 */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 4.8rem;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  html {
    font-size: 1vw;
  }
}
main {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  main {
    margin-top: 4.8rem;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #000000;
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

li {
  list-style: none;
}

a {
  color: #000000;
  text-decoration: none;
}

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

em {
  font-style: normal;
}

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.flex {
  display: flex;
}
@media (max-width: 767px) {
  .flex {
    flex-direction: column;
  }
}

.grid {
  display: grid;
}
@media (max-width: 767px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.grid-2 {
  display: grid;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.grid-3 {
  display: grid;
}
@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.grid-4 {
  display: grid;
}
@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.content-width {
  max-width: 120rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .content-width {
    width: 100%;
  }
}

.more-btn {
  padding: 0 4rem;
  height: 6rem;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3rem;
  gap: 3rem;
  background: #fff;
  border: solid 2px #09329d;
  color: #09329d;
  font-weight: 700;
  box-shadow: 5px 0 7px rgba(3, 75, 120, 0.3);
}
@media (min-width: 768px) {
  .more-btn {
    transition: all 0.2s;
  }
}
@media (max-width: 767px) {
  .more-btn {
    height: 4.8rem;
    font-size: 1.6rem;
    border-radius: 2.4rem;
    padding: 0;
    max-width: 30rem;
    width: 100%;
  }
}
.more-btn .arrow {
  width: 5.2rem;
}
@media (min-width: 768px) {
  .more-btn .arrow {
    transition: all 0.2s;
  }
}
@media (min-width: 768px) {
  .more-btn:hover .arrow {
    transform: translate(10px, 0px);
  }
}

.fusen-btn {
  background: #fff;
  padding: 0 4rem 0 6rem;
  height: 4rem;
  box-shadow: 3px 0 7px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 31rem;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
}
@media (max-width: 767px) {
  .fusen-btn {
    font-size: 1.6rem;
    max-width: 30.3rem;
  }
}
.fusen-btn::before {
  position: absolute;
  content: "";
  background: #00BEFA;
  background: linear-gradient(90deg, rgb(0, 190, 250) 0%, rgb(0, 96, 234) 100%);
  width: 2rem;
  height: 100%;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .fusen-btn::before {
    width: 2rem;
  }
}

.name-btn {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  font-size: 1.8rem;
  font-weight: 500;
  max-width: 23.5rem;
  width: 100%;
  height: 4.1rem;
  box-shadow: 3px 0 7px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 1;
  transition: all 0.2s;
}
@media (max-width: 767px) {
  .name-btn {
    max-width: 29.2rem;
    font-size: 1.6rem;
    margin: 0 auto;
  }
}
.name-btn .arrow {
  transition: all 0.2s;
}
.name-btn:hover .arrow {
  transform: translate(10px, 0px);
}

.footer {
  background: #1a212f;
  color: #fff;
  text-align: center;
  padding: 3rem 2rem;
  font-size: 1.8rem;
  font-weight: 200;
}
@media (max-width: 767px) {
  .footer {
    padding: 2rem 2rem;
    font-size: 1.1rem;
  }
}

.bg-grade {
  background: linear-gradient(90deg, rgb(0, 190, 250) 0%, rgb(0, 96, 234) 100%);
  padding: 7.8rem 2rem;
}
@media (max-width: 767px) {
  .bg-grade {
    padding: 3.2rem 2rem 4rem;
  }
}
.bg-grade .flex {
  align-items: center;
  gap: 5rem;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .bg-grade .flex {
    gap: 2.8rem;
  }
}
.bg-grade .section-title {
  position: relative;
  line-height: 1;
}
@media (min-width: 768px) {
  .bg-grade .section-title {
    margin-bottom: 4.3rem;
  }
}
@media (max-width: 767px) {
  .bg-grade .section-title {
    text-align: center;
  }
}
.bg-grade .section-title .en {
  color: rgba(51, 197, 250, 0.5);
}
@media (min-width: 768px) {
  .bg-grade .section-title .en {
    position: absolute;
    top: -5.3rem;
  }
}
.bg-grade .section-title .ja {
  color: #fff;
  text-shadow: 8px 1px 9px rgba(64, 63, 63, 0.16);
  position: absolute;
}
@media (min-width: 768px) {
  .bg-grade .section-title .ja {
    top: 0;
    left: 0;
  }
}
@media (max-width: 767px) {
  .bg-grade .section-title .ja {
    width: 100%;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    bottom: 0.5rem;
  }
}
.bg-grade .section-text {
  color: #fff;
  text-shadow: 8px 1px 9px rgba(64, 63, 63, 0.16);
}

.bg-gray {
  background: #f1f1f2;
  padding: 8rem 2rem;
}
@media (max-width: 767px) {
  .bg-gray {
    padding: 4rem 2rem;
  }
}
.bg-gray .flex {
  align-items: center;
  gap: 5rem;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .bg-gray .flex {
    gap: 2rem;
  }
}
.bg-gray .section-title {
  position: relative;
  line-height: 1;
}
@media (max-width: 767px) {
  .bg-gray .section-title {
    text-align: center;
  }
}
.bg-gray .section-title .en {
  color: rgba(226, 221, 221, 0.5);
}
@media (min-width: 768px) {
  .bg-gray .section-title .ja {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
@media (max-width: 767px) {
  .bg-gray .section-title .ja {
    bottom: 0.7rem;
    position: absolute;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
}
.bg-gray .section-title--center {
  text-align: center;
}
.bg-gray .section-title--center .ja {
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.bg-white {
  background: #fff;
  padding: 2.7rem 2rem 8rem;
}
@media (max-width: 767px) {
  .bg-white {
    padding: 2.1rem 2rem 4rem;
  }
}
.bg-white .flex {
  align-items: center;
  gap: 5rem;
  justify-content: space-between;
}
.bg-white .section-title {
  text-align: center;
  position: relative;
}
.bg-white .section-title .en {
  color: rgba(0, 96, 234, 0.2);
  background: -webkit-linear-gradient(0deg, rgba(0, 190, 250, 0.2) 0%, rgba(0, 96, 234, 0.2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bg-white .section-title .ja {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media (max-width: 767px) {
  .bg-white .section-title .ja {
    bottom: 0.5rem;
  }
}

.section-title {
  margin-bottom: 5.5rem;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 3rem;
  }
}
.section-title .en {
  font-size: 10rem;
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 767px) {
  .section-title .en {
    font-size: 6rem;
  }
}
.section-title .ja {
  display: block;
  font-size: 3.2rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .section-title .ja {
    font-size: 2.2rem;
    font-weight: 500;
  }
}

.section-text {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .section-text {
    font-size: 1.4rem;
    line-height: 1.5714285714;
    padding: 0 1.5rem;
  }
}

.head-link {
  padding: 1.5rem 3rem;
  margin-top: 3.4rem;
}
@media (max-width: 767px) {
  .head-link {
    display: none;
  }
}
.head-link .link-list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  max-width: 114rem;
  margin: 0 auto;
}
.head-link .link-list li a {
  font-weight: 500;
  line-height: 1.5;
  transition: 0.3s;
}
.head-link .link-list li a:hover {
  opacity: 0.7;
}

.header {
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  padding: 0 0 0 6.25vw;
  height: 8rem;
}
@media (min-width:1440px) {
  .header {
    padding: 0 0 0 9rem;
  }
}
@media (max-width: 1024px) {
  .header {
    height: 4.8rem;
  }
}
@media (max-width: 767px) {
  .header {
    position: fixed;
    padding: 0 1.6rem;
    height: 4.8rem;
  }
}
.header .header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  height: 8rem;
}
@media (max-width: 1024px) {
  .header .header__inner {
    height: 4.8rem;
  }
}
@media (max-width: 767px) {
  .header .header__inner {
    height: 4.8rem;
    width: 100%;
    align-items: center;
  }
}
.header .header__logo {
  line-height: 1;
  display: flex;
  max-width: 13.5416666667vw;
  width: 100%;
}
@media (min-width:1440px) {
  .header .header__logo {
    max-width: 19.5rem;
  }
}
@media (max-width: 767px) {
  .header .header__logo {
    max-width: 12.6rem;
  }
}
.header .header__inner__right {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .header .header__inner__right {
    display: none;
  }
}
.header .header__inner__right a {
  transition: 0.3s;
}
.header .header__inner__right a:hover {
  opacity: 0.7;
}
.header .header__menu {
  display: flex;
  align-items: center;
  gap: 3.4722222222vw;
  margin-right: 3.4722222222vw;
}
@media (min-width:1440px) {
  .header .header__menu {
    gap: 5rem;
    margin-right: 5rem;
  }
}
.header .header__contact {
  width: 16.3888888889vw;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 1.6rem;
  font-weight: 500;
  background: #09329d;
  color: #fff;
}
@media (min-width:1440px) {
  .header .header__contact {
    width: 23.6rem;
  }
}

/*=================================================
    SP ハンバーガーメニュー
===================================================*/
/* ハンバーガーメニューボタン */
.hamburger-btn {
  position: fixed;
  top: 0;
  right: 0;
  width: 4.8rem;
  height: 4.8rem;
  z-index: 100;
  cursor: pointer;
}
.hamburger-btn .hamburger-btn__line {
  width: 2.1rem;
  height: 1.7rem;
  position: relative;
  transform: translateY(-50%) translateX(-50%);
  top: 55%;
  bottom: 50%;
  left: 50%;
  right: 50%;
}
.hamburger-btn .hamburger-btn__line .line {
  position: absolute;
  content: "";
  background: #000000;
  height: 2px;
  left: 0;
  transition: 0.3s;
  width: 2.1rem;
}
.hamburger-btn .hamburger-btn__line .line:nth-child(1) {
  top: 0;
}
.hamburger-btn .hamburger-btn__line .line:nth-child(2) {
  bottom: 48%;
}
.hamburger-btn .hamburger-btn__line .line:nth-child(3) {
  bottom: 0;
}

/* ×　オープン */
.hamburger-btn.active {
  border: solid 1px #000000;
  border-radius: 4px;
  width: 2.4rem;
  height: 2.4rem;
  top: 3rem;
  right: 2rem;
}
.hamburger-btn.active .hamburger-btn__line {
  width: 1.4rem;
  height: 1.1rem;
}
.hamburger-btn.active .line:nth-child(1), .hamburger-btn.active .line:nth-child(2), .hamburger-btn.active .line:nth-child(3) {
  width: 1.4rem;
  top: 33%;
  left: 0;
  height: 1px;
}
.hamburger-btn.active .line:nth-child(1) {
  transform: rotate(-45deg);
}
.hamburger-btn.active .line:nth-child(2) {
  transform: rotate(45deg);
}
.hamburger-btn.active .line:nth-child(3) {
  transform: rotate(45deg);
}

/* メニューの中身 */
#hamburger-menu {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  visibility: hidden;
  padding: 3rem 2rem 6.4rem;
}
#hamburger-menu .header__logo {
  max-width: 12.6rem;
}
#hamburger-menu .hamburger-menu__list {
  margin-top: 4rem;
}
#hamburger-menu .hamburger-menu__list .hamburger-menu__list__item {
  margin-bottom: 1.5rem;
}
#hamburger-menu .hamburger-menu__list .hamburger-menu__list__item:last-child {
  margin-bottom: 0;
}
#hamburger-menu .hamburger-menu__list .hamburger-menu__list__item a .ja,
#hamburger-menu .hamburger-menu__list .hamburger-menu__list__item a .en {
  display: block;
  text-shadow: 8px 1px 9px rgba(64, 63, 63, 0.16);
}
#hamburger-menu .hamburger-menu__list .hamburger-menu__list__item a .ja {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
#hamburger-menu .hamburger-menu__list .hamburger-menu__list__item a .en {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  color: #279ef0;
  margin-top: 1rem;
}
#hamburger-menu .hamburger-menu__contact {
  margin-top: 3rem;
}
#hamburger-menu .hamburger-menu__contact .more-btn {
  margin: 0 auto;
}

/* ハンバーガーメニュー開いた時 */
#hamburger-menu.active {
  overflow: scroll;
  visibility: visible;
  transition: all 0.5s;
  left: 0;
  -webkit-overflow-scrolling: touch;
}

body.active {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .hamburger-btn,
  .hamburger-menu {
    display: none;
  }
}
@media (max-width: 1024px) {
  .hamburger-btn,
  .hamburger-menu {
    display: block;
  }
}

.home-news {
  padding: 7.8rem 2rem 3.6rem;
}
@media (max-width: 767px) {
  .home-news {
    padding: 1.7rem 2rem 2.6rem;
  }
}
.home-news a {
  transition: 0.3s;
}
.home-news a:hover {
  opacity: 0.7;
}
.home-news .section-title {
  margin-right: 2.5rem;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .home-news .section-title {
    margin-right: 0;
  }
}
.home-news .section-title .en {
  color: #279ef0;
  font-size: 3.2rem;
  font-weight: 400;
}
@media (max-width: 767px) {
  .home-news .section-title .en {
    font-size: 2.2rem;
    text-align: center;
  }
}
.home-news .news-btn {
  margin: 3.5rem auto 0;
  font-size: 1.4rem;
  font-weight: 400;
  text-decoration: underline;
  display: block;
  text-align: center;
  text-underline-offset: 6px;
}
@media (max-width: 767px) {
  .home-news .news-btn {
    font-size: 1.1rem;
    margin-top: 2rem;
  }
}

/*tabの形状*/
.tab {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 767px) {
  .tab {
    gap: 0.8rem;
    margin-top: 2rem;
    justify-content: center;
  }
}
.tab li a {
  display: block;
  padding: 1rem 1.5rem;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  border-radius: 1.8rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .tab li a {
    font-size: 1.2rem;
    padding: 0.5rem 1.2rem;
    letter-spacing: 0;
  }
}
.tab li:nth-child(1) a {
  background: #07bdff;
}
.tab li:nth-child(2) a {
  background: #f5a623;
}
.tab li:nth-child(3) a {
  background: #707170;
}
.tab li:nth-child(4) a {
  background: #0096f4;
}

.area {
  display: none;
  opacity: 0;
  background: #fff;
  max-width: 67.2rem;
  margin: 5.9rem auto 0;
}
@media (max-width: 767px) {
  .area {
    padding: 0 1.5rem;
    margin-top: 1.7rem;
  }
}

.news__list li a {
  display: flex;
  align-items: center;
  gap: 6.7rem;
  padding: 2.8rem 1rem 0.5rem;
  border-bottom: solid 1px #000000;
}
@media (max-width: 767px) {
  .news__list li a {
    gap: 3rem;
    padding: 0.9rem 0 0.3rem 0;
  }
}
.news__list li a .date {
  font-size: 1.4rem;
  font-weight: 400;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .news__list li a .date {
    font-size: 1.1rem;
  }
}
.news__list li a .list-title {
  font-size: 1.8rem;
  font-weight: 400;
}
@media (max-width: 767px) {
  .news__list li a .list-title {
    font-size: 1.4rem;
  }
}
.news__list li:first-child a {
  padding-top: 0;
}

.area.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.news {
  padding: 11.5rem 2rem 20rem;
}
@media (max-width: 767px) {
  .news {
    padding: 5rem 3.5rem 14rem;
  }
}
.news a {
  transition: 0.3s;
}
.news a:hover {
  opacity: 0.7;
}
.news .section-title {
  margin-right: 0;
  margin-bottom: 10rem;
  text-align: center;
}
@media (max-width: 767px) {
  .news .section-title {
    margin-bottom: 2rem;
  }
}
.news .section-title .en {
  color: #279ef0;
  font-size: 3.2rem;
  font-weight: 400;
}
@media (max-width: 767px) {
  .news .section-title .en {
    font-size: 2.2rem;
  }
}
.news .news__head {
  background: #000000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 3rem 2rem 1.5rem;
  max-width: 67.3rem;
  margin: 8.5rem auto 0;
}
@media (max-width: 767px) {
  .news .news__head {
    margin-top: 4rem;
    padding: 1rem;
  }
}
.news .news__head .ja {
  font-size: 2.29rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .news .news__head .ja {
    font-size: 1.4rem;
  }
}
.news .news__head .arrow {
  width: 2.1rem;
}
@media (max-width: 767px) {
  .news .news__head .arrow {
    width: 1.64rem;
  }
}
.news .news__tab {
  max-width: 96rem;
  margin: 0 auto;
}
.news .news__list {
  max-width: 67.3rem;
  margin: 3rem auto 0;
}
@media (max-width: 767px) {
  .news .news__list {
    margin-top: 2rem;
  }
}

.news__inner {
  max-width: 67.3rem;
  margin: 0 auto 0;
}
.news__inner .article__head {
  margin-bottom: 1.5rem;
}
.news__inner .article-title {
  color: #279ef0;
  font-size: 3.2rem;
  font-weight: 400;
  border-bottom: solid 1px #000000;
  padding-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .news__inner .article-title {
    font-size: 2.2rem;
  }
}
.news__inner .category {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  border-radius: 1.8rem;
  line-height: 1;
  background: #07bdff;
}
@media (max-width: 767px) {
  .news__inner .category {
    font-size: 1.2rem;
    padding: 0.5rem 1.2rem;
    letter-spacing: 0;
  }
}
.news__inner .category--site {
  background: #07bdff;
}
.news__inner .category--info {
  background: #f5a623;
}
.news__inner .category--itjunior {
  background: #707170;
}
.news__inner .category--chaser {
  background: #0096f4;
}
.news__inner .date {
  font-size: 1.6rem;
  font-weight: 400;
  font-feature-settings: "palt";
  margin-right: 1rem;
}
@media (max-width: 767px) {
  .news__inner .date {
    font-size: 1.4rem;
  }
}
.news__inner .article-content {
  padding: 4rem 0;
}
.news__inner .article-content h1,
.news__inner .article-content h2,
.news__inner .article-content h3,
.news__inner .article-content h4,
.news__inner .article-content h5,
.news__inner .article-content h6 {
  margin-bottom: 1.5rem;
}
.news__inner .article-content p {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.news__inner .more-btn {
  margin: 5rem auto 0;
}

.news__head {
  cursor: pointer;
}

.news__head .arrow {
  transition: transform 0.5s ease;
}

.news__head.active .arrow {
  transform: rotate(180deg);
}

.cover {
  background-position: right;
  background-size: contain;
  height: 36rem;
  padding: 0 2rem;
}
@media (min-width: 768px) {
  .cover {
    margin-top: 12.1rem;
  }
}
@media (min-width:768px) and (max-width: 1024px) {
  .cover {
    height: 25vw;
  }
}
@media (max-width: 767px) {
  .cover {
    height: 67rem;
    background-size: cover;
    background-position: top right;
  }
}
.cover .cover__title {
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 36rem;
}
@media (min-width: 768px) {
  .cover .cover__title {
    padding-top: 6rem;
  }
}
@media (min-width:768px) and (max-width: 1024px) {
  .cover .cover__title {
    height: 25vw;
  }
}
@media (max-width: 767px) {
  .cover .cover__title {
    height: 67rem;
    padding-top: 3.2rem;
  }
}
.cover .cover__title .ja {
  display: block;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .cover .cover__title .ja {
    font-size: 2.2rem;
    line-height: 1.8181818182;
    margin-bottom: 0;
  }
}
.cover .cover__title .en {
  color: #279ef0;
  display: block;
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .cover .cover__title .en {
    line-height: 1.6666666667;
  }
}

.page-about .cover {
  background-image: url(../images/bg-about.jpg);
}
@media (max-width: 767px) {
  .page-about .cover {
    background-image: url(../images/sp_bg-about.jpg);
  }
}

.page-chaser .cover {
  background-image: url(../images/bg-chaser.jpg);
}
@media (max-width: 767px) {
  .page-chaser .cover {
    background-image: url(../images/sp_bg-chaser.jpg);
  }
}

.page-compe .cover {
  background-image: url(../images/bg-compe.jpg);
}
@media (max-width: 767px) {
  .page-compe .cover {
    background-image: url(../images/sp_bg-compe.jpg);
  }
}

.page-projects .cover {
  background-image: url(../images/bg-projects.jpg);
}
@media (max-width: 767px) {
  .page-projects .cover {
    background-image: url(../images/sp_bg-projects.jpg);
  }
}

.home-about .flex {
  align-items: flex-start;
  gap: 5rem;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .home-about .flex {
    gap: 2.4rem;
  }
}
.home-about .about__text {
  max-width: 57.8rem;
}
.home-about .about__img {
  max-width: 58rem;
  width: 100%;
}
.home-about .more-btn {
  max-width: 27.6rem;
  width: 100%;
  margin: 5.9rem auto 0 0;
}
@media (max-width: 767px) {
  .home-about .more-btn {
    max-width: 30rem;
    margin: 2.5rem auto 0;
  }
}

.about .flex {
  align-items: flex-start;
  gap: 5rem;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .about .flex {
    gap: 2rem;
  }
}
@media (min-width: 768px) {
  .about .section-title {
    margin-bottom: 8.3rem;
  }
}
.about .about__text {
  max-width: 49.5rem;
}
@media (max-width: 767px) {
  .about .about__text {
    max-width: 100%;
  }
}
.about .about__img {
  max-width: 58rem;
  width: 100%;
}
@media (max-width: 767px) {
  .about .about__img {
    max-width: 100%;
  }
}

.mission .flex {
  align-items: flex-start;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .mission .section-title {
    margin-bottom: 8.8rem;
  }
}
@media (min-width: 768px) {
  .mission .section-title .en {
    position: absolute;
    top: -5.7rem;
  }
}
.mission .section-title .ja {
  font-weight: 500;
}
@media (min-width: 768px) {
  .mission .section-title .ja {
    top: 0;
    bottom: inherit;
  }
}
.mission .mission__text {
  max-width: 49.5rem;
}
@media (max-width: 767px) {
  .mission .mission__text {
    max-width: 100%;
  }
}
.mission .mission__img {
  max-width: 58rem;
  width: 100%;
}
@media (max-width: 767px) {
  .mission .mission__img {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .achieve {
    padding-top: 3.2rem;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .achieve {
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
  }
}
.achieve .section-title .ja {
  font-weight: 500;
}
@media (min-width: 768px) {
  .achieve .section-title .en {
    font-size: 8rem;
  }
}
@media (max-width: 767px) {
  .achieve .section-title .en {
    left: -1.4rem;
    position: relative;
  }
}
.achieve .achieve__list {
  row-gap: 3.4rem;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}
@media (max-width: 767px) {
  .achieve .achieve__list {
    padding: 0 2rem;
  }
}
.achieve .achieve__list .date {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.achieve .achieve__list .list-text {
  font-size: 1.8rem;
  margin-top: 3.2rem;
  line-height: 1.65;
}
@media (max-width: 767px) {
  .achieve .achieve__list .list-text {
    font-size: 1.4rem;
    line-height: 1.5714285714;
    padding: 0 1.5rem;
    margin-top: 2rem;
  }
}
.achieve .more-btn {
  margin: 2rem auto 0;
}
.achieve .achieve__slider {
  position: relative;
  padding-bottom: 13.5rem;
  /* 前へ次への矢印カスタマイズ */
  /* 前へ次への矢印カスタマイズ */
  /* 前への矢印カスタマイズ */
  /* 次への矢印カスタマイズ */
}
@media (max-width: 767px) {
  .achieve .achieve__slider {
    padding-bottom: 0.6rem;
  }
}
.achieve .achieve__slider .swiper-pagination-bullet {
  background: none;
  opacity: 1;
}
@media (max-width: 767px) {
  .achieve .achieve__slider .swiper-pagination-bullet {
    display: none;
  }
}
.achieve .achieve__slider .swiper-horizontal > .swiper-pagination-bullets,
.achieve .achieve__slider .swiper-pagination-bullets.swiper-pagination-horizontal,
.achieve .achieve__slider .swiper-pagination-custom,
.achieve .achieve__slider .swiper-pagination-fraction {
  bottom: 7.8rem;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  width: -moz-max-content;
  width: max-content;
}
.achieve .achieve__slider .swiper-button-prev,
.achieve .achieve__slider .swiper-button-next {
  width: 5px;
  height: 6px;
  top: auto;
  bottom: 8.6rem;
  z-index: 10;
}
@media (max-width: 767px) {
  .achieve .achieve__slider .swiper-button-prev,
  .achieve .achieve__slider .swiper-button-next {
    display: none;
  }
}
.achieve .achieve__slider .swiper-button-prev {
  left: 46.7%;
}
.achieve .achieve__slider .swiper-button-next {
  right: 46.7%;
}
.achieve .achieve__slider .swiper-button-prev:after,
.achieve .achieve__slider .swiper-button-next:after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  margin: auto;
  width: 5px;
  height: 6px;
}
.achieve .achieve__slider .swiper-button-prev:after {
  background-image: url(../images/slider-arrow-prev.png);
}
.achieve .achieve__slider .swiper-button-next:after {
  background-image: url(../images/slider-arrow-next.png);
}

@media (min-width: 768px) {
  .voice {
    padding-top: 1.8rem;
  }
}
.voice .section-title {
  text-align: center;
}
@media (min-width: 768px) {
  .voice .section-title {
    margin-bottom: 6.9rem;
  }
}
.voice .section-title .ja {
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media (min-width: 768px) {
  .voice .section-title .ja {
    bottom: 1.5rem;
  }
}
.voice .voice__list {
  gap: 6rem;
}
@media (max-width: 767px) {
  .voice .voice__list {
    gap: 4rem;
  }
}
.voice .voice__list .name {
  margin-top: 3.5rem;
  font-size: 1.8rem;
  line-height: 1.3333333333;
}
@media (max-width: 767px) {
  .voice .voice__list .name {
    margin-top: 1.1rem;
    font-size: 1.4rem;
    line-height: 1.5714285714;
    padding: 0 1.5rem;
  }
}
.voice .voice__list .list-text {
  margin-top: 1.7rem;
  font-size: 1.8rem;
  line-height: 1.3333333333;
}
@media (max-width: 767px) {
  .voice .voice__list .list-text {
    font-size: 1.4rem;
    line-height: 1.5714285714;
    padding: 0 1.5rem;
    margin-top: 0.6rem;
  }
}

.home-info {
  background-image: url(../images/bg-info.jpg);
  background-size: cover;
  padding: 2.2rem 2rem 6rem;
}
@media (max-width: 767px) {
  .home-info {
    padding: 3.2rem 2rem 4rem;
    background-image: url(../images/sp_bg-info.jpg);
  }
}
.home-info .section-title {
  text-align: center;
  position: relative;
  line-height: 1;
}
.home-info .section-title .en {
  color: #e2dddd;
}
.home-info .section-title .ja {
  position: absolute;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media (min-width: 768px) {
  .home-info .section-title .ja {
    bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .home-info .section-title .ja {
    bottom: 0.7rem;
  }
}
.home-info .section-text {
  max-width: 57.5rem;
  margin: 0 auto;
}
.home-info .info__img {
  max-width: 102.4rem;
  margin: 6rem auto 0;
}
@media (max-width: 767px) {
  .home-info .info__img {
    margin-top: 2rem;
  }
}
.home-info .info__link {
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .home-info .info__link {
    gap: 2rem;
    margin-top: 3rem;
  }
}

.home-contact {
  background-image: url(../images/bg-contact.jpg);
  background-size: cover;
  padding: 7.9rem 2rem 8rem;
}
@media (max-width: 767px) {
  .home-contact {
    padding: 3.5rem 2rem 8rem;
    background-image: url(../images/sp_bg-contact.jpg);
  }
}
.home-contact .section-title {
  font-size: 3.2rem;
  text-align: center;
  color: #fff;
  text-shadow: 3px 1px 9px rgb(64, 63, 63);
}
@media (max-width: 767px) {
  .home-contact .section-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
}
.home-contact .more-btn {
  margin: 7.5rem auto 0;
}
@media (min-width: 768px) {
  .home-contact .more-btn {
    max-width: 27.6rem;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .home-contact .more-btn {
    margin-top: 1.2rem;
  }
}

.home-chaser .section-title {
  position: relative;
  line-height: 1;
}
@media (min-width: 768px) {
  .home-chaser .section-title {
    margin-bottom: 8rem;
  }
}
.home-chaser .section-title .en {
  color: #33c5fa;
}
.home-chaser .section-text {
  color: #fff;
  text-shadow: 8px 1px 9px rgba(64, 63, 63, 0.16);
}
@media (max-width: 767px) {
  .home-chaser .section-text {
    letter-spacing: 0.11em;
  }
}
.home-chaser .flex {
  align-items: flex-start;
  gap: 5rem;
  justify-content: space-between;
}
.home-chaser .chaser__text {
  max-width: 57.8rem;
}
.home-chaser .chaser__img {
  max-width: 58rem;
  width: 100%;
}
@media (max-width: 767px) {
  .home-chaser .chaser__img {
    margin-top: 3rem;
    max-width: 100%;
  }
}
.home-chaser .chaser__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.7rem;
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .home-chaser .chaser__button {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 2rem auto 0;
    gap: 2rem;
    max-width: 27.5rem;
    align-items: flex-start;
    justify-content: center;
  }
}
.home-chaser .chaser__button li img {
  max-width: 15rem;
  width: 100%;
}
@media (max-width: 767px) {
  .home-chaser .chaser__button li img {
    max-width: 100%;
  }
}
.home-chaser .chaser__button li a {
  transition: 0.3s;
}
.home-chaser .chaser__button li a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .home-chaser .chaser__button li:nth-child(1) a img {
    width: 10.4rem;
  }
}
@media (max-width: 767px) {
  .home-chaser .chaser__button li:nth-child(2) a img {
    width: 11rem;
  }
}
@media (max-width: 767px) {
  .home-chaser .chaser__button li:nth-child(3) a img {
    width: 11rem;
  }
}
@media (max-width: 767px) {
  .home-chaser .chaser__button li:nth-child(4) a img {
    width: 11rem;
  }
}

@media (min-width: 768px) {
  .chaser-about .flex {
    align-items: flex-start;
  }
}
@media (min-width: 768px) {
  .chaser-about .section-title {
    margin-bottom: 8.4rem;
  }
}
@media (min-width: 768px) {
  .chaser-about .section-title .en {
    position: absolute;
    top: -5.9rem;
  }
}
@media (min-width: 768px) {
  .chaser-about .section-title .ja {
    top: 0;
    left: 0;
    position: absolute;
  }
}
.chaser-about .chaser-about__text {
  max-width: 50rem;
}
.chaser-about .chaser-about__text .more-btn {
  margin-top: 6rem;
}
@media (min-width: 768px) {
  .chaser-about .chaser-about__text .more-btn {
    max-width: 34.7rem;
    width: 100%;
    padding: 0 3rem;
  }
}
.chaser-about .chaser-about__img {
  max-width: 31.1rem;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .chaser-about .chaser-about__img {
    max-width: 25rem;
  }
}
@media (max-width: 767px) {
  .chaser-about .more-btn {
    margin: 2.4rem auto 0;
    font-size: 1.4rem;
    gap: 2rem;
  }
}

@media (min-width: 768px) {
  .learn {
    padding: 1.8rem 2rem 8rem;
  }
}
@media (max-width: 767px) {
  .learn {
    padding: 3rem 2rem 4rem;
  }
}
@media (min-width: 768px) {
  .learn .flex {
    align-items: flex-end;
  }
}
.learn .learn__text {
  max-width: 50rem;
}
@media (min-width: 768px) {
  .learn .learn__text {
    padding-bottom: 4rem;
  }
}
@media (min-width: 768px) {
  .learn .section-title {
    margin-bottom: 4.6rem;
  }
}
.learn .section-title .ja {
  font-weight: 500;
}
@media (min-width: 768px) {
  .learn .section-title .ja {
    bottom: 0.9rem;
  }
}

@media (min-width: 768px) {
  .chaser-about__right,
  .learn__right,
  .setup__right,
  .program__right {
    width: 50%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .chaser-about__right,
  .learn__right,
  .setup__right,
  .program__right {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .program {
    padding: 1.8rem 2rem 8rem;
  }
}
@media (max-width: 767px) {
  .program {
    padding: 3.2rem 2rem 4rem;
  }
}
@media (min-width: 768px) {
  .program .flex {
    align-items: flex-end;
  }
}
.program .program__text {
  max-width: 50rem;
}
@media (min-width: 768px) {
  .program .section-title {
    margin-bottom: 4rem;
  }
}
.program .section-title .ja {
  font-weight: 500;
}
@media (min-width: 768px) {
  .program .section-title .ja {
    bottom: 0.9rem;
  }
}

.setup .setup__text {
  max-width: 50rem;
}
@media (min-width: 768px) {
  .setup .setup__text {
    padding-bottom: 1.7rem;
  }
}
@media (max-width: 767px) {
  .setup .setup__text {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .setup .flex {
    align-items: flex-end;
  }
}
@media (min-width: 768px) {
  .setup .section-title {
    text-align: left;
    margin-bottom: 3.2rem;
  }
}
.setup .section-title .ja {
  font-weight: 500;
}
@media (min-width: 768px) {
  .setup .section-title .en {
    font-size: 8rem;
  }
}

.learn__link,
.setup__link {
  max-width: 31rem;
  width: 100%;
}
@media (min-width: 768px) {
  .learn__link,
  .setup__link {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .learn__link,
  .setup__link {
    max-width: 100%;
  }
}
.learn__link li,
.setup__link li {
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .learn__link li,
  .setup__link li {
    margin-bottom: 1.9rem;
  }
}
.learn__link li:last-child,
.setup__link li:last-child {
  margin-bottom: 0;
}
.learn__link li .icon,
.setup__link li .icon {
  width: 2rem;
}
.learn__link li .arrow,
.setup__link li .arrow {
  width: 0.8rem;
}

.learn__link li .fusen-btn {
  transition: all 0.2s;
}
@media (max-width: 767px) {
  .learn__link li .fusen-btn {
    margin: 0 auto;
  }
}
.learn__link li .fusen-btn .icon {
  transition: all 0.2s;
}
.learn__link li .fusen-btn:hover .icon {
  transform: translate(0px, 3px);
}

.setup__link li .fusen-btn {
  transition: all 0.2s;
}
@media (max-width: 767px) {
  .setup__link li .fusen-btn {
    margin: 0 auto;
  }
}
.setup__link li .fusen-btn .arrow {
  transition: all 0.2s;
}
.setup__link li .fusen-btn:hover .arrow {
  transform: translate(8px, 0px);
}

.home-categories .section-title {
  text-align: center;
  position: relative;
}
@media (min-width: 768px) {
  .home-categories .section-title {
    margin-bottom: 4rem;
  }
}
@media (max-width: 767px) {
  .home-categories .section-title {
    margin-bottom: 2.4rem;
  }
}
.home-categories .section-title .en {
  color: rgba(0, 96, 234, 0.2);
  background: -webkit-linear-gradient(0deg, rgba(0, 190, 250, 0.2) 0%, rgba(0, 96, 234, 0.2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 768px) {
  .home-categories .section-title .en {
    font-size: 8rem;
  }
}
.home-categories .section-title .ja {
  position: absolute;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media (max-width: 767px) {
  .home-categories .section-title .ja {
    bottom: 1rem;
  }
}
.home-categories .categories__list li {
  box-shadow: 8px 6px 43px rgba(64, 63, 63, 0.16);
  margin-bottom: 7.5rem;
}
@media (max-width: 767px) {
  .home-categories .categories__list li {
    margin-bottom: 2.4rem;
  }
}
.home-categories .categories__list li .list-title {
  color: #fff;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1.25;
  text-align: center;
  padding: 2rem 0;
}
@media (max-width: 767px) {
  .home-categories .categories__list li .list-title {
    font-size: 1.6rem;
    line-height: 2.5;
    padding: 1.5rem 0;
    line-height: 1;
  }
}
.home-categories .categories__list li .list-img {
  max-width: 25rem;
  width: 100%;
}
.home-categories .categories__list li:nth-child(1) .list-title {
  background: #07bdff;
}
.home-categories .categories__list li:nth-child(2) .list-title {
  background: #0096f4;
}
.home-categories .categories__list li:last-child {
  margin-bottom: 0;
}
.home-categories .categories__list li .categories__list__block {
  background: #fff;
  padding: 4.4rem 6rem 5rem;
}
@media (max-width: 767px) {
  .home-categories .categories__list li .categories__list__block {
    padding: 2.3rem 1.5rem 2.5rem;
  }
}
.home-categories .categories__list li .categories__list__block .flex {
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .home-categories .categories__list li .categories__list__block .flex {
    flex-direction: column-reverse;
    align-items: center;
    gap: 2rem;
  }
}
.home-categories .categories__list li .categories__list__block p {
  max-width: 70rem;
  font-size: 1.8rem;
  line-height: 1.3333333333;
  font-feature-settings: "palt";
  letter-spacing: 0.065em;
}
@media (max-width: 767px) {
  .home-categories .categories__list li .categories__list__block p {
    font-size: 1.4rem;
    line-height: 1.5714285714;
    letter-spacing: 0.07em;
    word-break: break-all;
  }
}
@media (max-width: 767px) {
  .home-categories .categories__list li .categories__list__block p .underline {
    border-bottom: solid 2px #07bdff;
  }
}
.home-categories .categories__list li .more-btn {
  margin: 6rem auto 0;
}
@media (min-width: 768px) {
  .home-categories .categories__list li .more-btn {
    max-width: 27.6rem;
    width: 100%;
    padding: 0 2.2rem;
  }
}
@media (max-width: 767px) {
  .home-categories .categories__list li .more-btn {
    margin-top: 2rem;
  }
}

.compe-about__text,
.project-about__text {
  max-width: 57.5rem;
}

.compe-about__img,
.project-about__img {
  max-width: 58rem;
  width: 100%;
}

@media (min-width: 768px) {
  .compe-about,
  .project-about {
    padding: 7.8rem 2rem 8.4rem;
  }
}
@media (min-width: 768px) {
  .compe-about .flex,
  .project-about .flex {
    align-items: flex-start;
  }
}
@media (min-width: 768px) {
  .compe-about .section-title,
  .project-about .section-title {
    margin-bottom: 8.4rem;
  }
}
@media (min-width: 768px) {
  .compe-about .section-title .en,
  .project-about .section-title .en {
    position: absolute;
    top: -5.9rem;
  }
}
@media (min-width: 768px) {
  .compe-about .section-title .ja,
  .project-about .section-title .ja {
    top: 0;
    left: 0;
    position: absolute;
  }
}

@media (min-width: 768px) {
  .regions {
    padding-top: 1.8rem;
  }
}
@media (min-width: 768px) {
  .regions .section-title {
    margin-bottom: 6.1rem;
  }
}
.regions .section-title .ja {
  font-weight: 500;
}
@media (min-width: 768px) {
  .regions .section-title .ja {
    bottom: 0.9rem;
  }
}

.regions__link {
  -moz-column-gap: 4.8611111111vw;
       column-gap: 4.8611111111vw;
  row-gap: 1.875vw;
}
@media (min-width:1440px) {
  .regions__link {
    -moz-column-gap: 7rem;
         column-gap: 7rem;
    row-gap: 2.7rem;
  }
}
@media (min-width: 768px) {
  .regions__link {
    max-width: 116rem;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .regions__link {
    gap: 2.4rem;
  }
}

.regions__link .name-btn-wrap {
  position: relative;
  max-width: 23.5rem;
  width: 100%;
  height: 4.1rem;
}
@media (max-width: 767px) {
  .regions__link .name-btn-wrap {
    max-width: 29.2rem;
    margin: 0 auto;
  }
}
.regions__link .name-btn-wrap::before {
  position: absolute;
  content: "";
  background: #00BEFA;
  background: linear-gradient(90deg, rgb(0, 190, 250) 0%, rgb(0, 96, 234) 100%);
  width: 100%;
  height: 100%;
  top: -1rem;
  left: -1rem;
}/*# sourceMappingURL=style.css.map */