@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes infinityScrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes scrollAllow {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  25% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  75% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(80px);
  }
}
main {
  padding: 80px 0 50px 0;
}
@media (max-width: 1120px) {
  main {
    padding: 60px 0 50px 0;
  }
}

.is-pc {
  display: inline-block !important;
}
@media (max-width: 768px) {
  .is-pc {
    display: none !important;
  }
}

.is-sp {
  display: none !important;
}
@media (max-width: 768px) {
  .is-sp {
    display: inline-block !important;
  }
}

.c-button {
  z-index: 100;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #1b68b2;
  font: bold 1.4rem/1 "Noto Sans JP";
  letter-spacing: 0.05em;
  border: 0.1rem solid #1b68b2;
  border-radius: 5.5rem;
  padding: 2rem 4.7rem;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.c-button::after {
  content: "";
  position: absolute;
  right: 1.8rem;
  width: 0.9rem;
  height: 0.9rem;
  background-color: #1b68b2;
  border-radius: 50%;
  transition: background-color 0.2s ease-in-out;
}
.c-button:hover {
  background-color: #1b68b2;
  color: #fff;
}
.c-button:hover::after {
  background-color: #fff;
  animation: fadeInLeft 0.2s 0.05s ease-in-out forwards;
}
.c-button--white {
  color: #fff;
  border-color: #fff;
}
.c-button--white::after {
  background-color: #fff;
}
.c-button--white:hover {
  border-color: #80c1ff;
  background-color: #80c1ff;
  color: #1b68b2;
}
.c-button--white:hover::after {
  background-color: #1b68b2;
  animation: fadeInLeft 0.2s 0.05s ease-in-out forwards;
}

.a-fadeInUp {
  opacity: 0;
  transition: opacity 1s ease-out, transform 1s ease-out;
  transform: translate(0, 4rem);
}
.a-fadeInUp.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.a-fadeIn {
  opacity: 0;
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.a-fadeIn.is-visible {
  opacity: 1;
}

.modalRecruit {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 45, 107, 0.9);
  z-index: 10001;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
  padding: 4px;
  visibility: hidden;
  overflow-y: auto;
  padding: 0 24px;
}
.modalRecruit.is-active {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.modalRecruit * {
  line-height: 1;
}
.modalRecruit__inner {
  align-items: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 700px;
  position: relative;
  margin: 0 auto;
}
.modalRecruit__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 29px;
  width: 100%;
  background: #fff url(../img/common/bg_modal-recruit.webp) no-repeat left center/auto 100%;
  border-radius: 10px;
  padding: 88px 84px 127px 88px;
}
@media (max-width: 768px) {
  .modalRecruit__list {
    grid-template-columns: 1fr;
    gap: 43px;
    padding: 50px 52px 43px 60px;
    background-size: 58px 100%;
  }
}
.modalRecruit__list__item {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (max-width: 768px) {
  .modalRecruit__list__item {
    gap: 13px;
  }
}
.modalRecruit__list__item .title {
  color: #1b68b2;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding-left: 16px;
}
@media (max-width: 768px) {
  .modalRecruit__list__item .title {
    font-size: 18px;
    padding-left: 11px;
  }
}
.modalRecruit__list__item .button {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  background: linear-gradient(100deg, #80c1ff 4.07%, #1488f6 103.25%);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  border-radius: 10px;
  text-decoration: none;
  padding: 25px 13px 25px 33px;
  transition: color 0.2s ease-in-out;
  overflow: hidden;
}
@media (max-width: 768px) {
  .modalRecruit__list__item .button {
    font-size: 18px;
    background: linear-gradient(105deg, #fff185 3.7%, #ffe100 68.36%, #fb0 101.45%);
    color: #1b68b2;
  }
}
@media (max-width: 375px) {
  .modalRecruit__list__item .button {
    padding: 25px 12px 25px 20px;
  }
}
.modalRecruit__list__item .button span {
  position: relative;
  z-index: 1;
}
.modalRecruit__list__item .button::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(105deg, #fff185 3.7%, #ffe100 68.36%, #fb0 101.45%);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.modalRecruit__list__item .button::after {
  content: "";
  width: 26.703px;
  height: 26.703px;
  flex-shrink: 0;
  background-color: #fff;
  mask: url(../img/common/icon_arrow_circle_white.svg) no-repeat center center/contain;
  transition: background-color 0.2s ease-in-out;
}
@media (max-width: 768px) {
  .modalRecruit__list__item .button::after {
    background-color: #1b68b2;
  }
}
.modalRecruit__list__item .button:hover {
  color: #1b68b2;
}
.modalRecruit__list__item .button:hover::before {
  opacity: 1;
}
.modalRecruit__list__item .button:hover::after {
  background-color: #1b68b2;
}
.modalRecruit__close {
  cursor: pointer;
  position: absolute;
  flex-shrink: 0;
  top: -55px;
  right: -61px;
  width: 55px;
  height: 55px;
  background-color: #fff;
  border-radius: 50%;
  font-size: 30px;
  color: #1b68b2;
  display: grid;
  place-items: center;
}
@media (max-width: 768px) {
  .modalRecruit__close {
    width: 45px;
    height: 45px;
    right: 0;
    top: -58px;
  }
}
.modalRecruit__close img {
  width: 24px;
  height: 24px;
  transition: opacity 0.2s ease-in-out;
}
.modalRecruit__close:hover img {
  opacity: 0.5;
}

.modalBusiness {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 45, 107, 0.9);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
  visibility: hidden;
  padding: 24px 80px;
  overflow-y: auto;
}
@media (max-width: 1280px) {
  .modalBusiness {
    padding: 2.4rem 8rem;
  }
}
@media (max-width: 768px) {
  .modalBusiness {
    padding: 24px;
  }
}
.modalBusiness.is-active {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.modalBusiness * {
  line-height: 1;
}
.modalBusiness__inner {
  position: relative;
  max-width: 1059px;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 1280px) {
  .modalBusiness__inner {
    max-width: 105.9rem;
  }
}
@media (max-width: 768px) {
  .modalBusiness__inner {
    width: 100%;
    height: auto;
    max-width: 360px;
  }
}
.modalBusiness__list li {
  display: flex;
  background: #fff;
  border-radius: 0 10px 10px 0;
  overflow: hidden;
  border-left: 10px solid #53abff;
}
@media (max-width: 1280px) {
  .modalBusiness__list li {
    border-radius: 0 1rem 1rem 0;
    border-left: 1rem solid #53abff;
  }
}
@media (max-width: 768px) {
  .modalBusiness__list li {
    border-radius: 5px 5px 0 0;
    flex-direction: column;
    border-left: none;
    border-bottom: 10px solid #53abff;
  }
}
.modalBusiness__list li .boxText {
  padding: 80px 24px 0 24px;
}
@media (max-width: 1280px) {
  .modalBusiness__list li .boxText {
    padding: 8rem 2.4rem 0 2.4rem;
  }
}
@media (max-width: 768px) {
  .modalBusiness__list li .boxText {
    order: 2;
    padding: 20px 12px;
  }
}
.modalBusiness__list li .boxText .title {
  color: #1b68b2;
  font: bold 34px/1.5 "Noto Sans JP";
  letter-spacing: 0.05em;
}
@media (max-width: 1280px) {
  .modalBusiness__list li .boxText .title {
    font-size: 3.4rem;
  }
}
@media (max-width: 768px) {
  .modalBusiness__list li .boxText .title {
    font-size: 26px;
    letter-spacing: normal;
  }
}
.modalBusiness__list li .boxText .title-sub {
  margin-top: 39px;
  color: #000;
  font: bold 20px/1.5 "Noto Sans JP";
  letter-spacing: 0.05em;
}
@media (max-width: 1280px) {
  .modalBusiness__list li .boxText .title-sub {
    margin-top: 3.9rem;
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .modalBusiness__list li .boxText .title-sub {
    font-size: 16px;
    margin-top: 8px;
    letter-spacing: normal;
  }
}
.modalBusiness__list li .boxText .text {
  margin-top: 11px;
  color: #000;
  font: normal 16px/1.5 "Noto Sans JP";
  letter-spacing: 0.05em;
}
@media (max-width: 1280px) {
  .modalBusiness__list li .boxText .text {
    margin-top: 1.1rem;
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .modalBusiness__list li .boxText .text {
    font-size: 14px;
    margin-top: 8px;
  }
}
.modalBusiness__list li .boxText .list {
  margin-top: 61px;
  display: flex;
  flex-wrap: wrap;
  padding: 0 16px;
  background-color: #e1f0ff;
}
@media (max-width: 1280px) {
  .modalBusiness__list li .boxText .list {
    margin-top: 6.1rem;
    padding: 0 1.6rem;
  }
}
@media (max-width: 768px) {
  .modalBusiness__list li .boxText .list {
    margin-top: 16px;
  }
}
.modalBusiness__list li .boxText .list dt {
  width: 105px;
  color: #000;
  font: bold 16px/1 "Noto Sans JP";
  padding: 12px 0;
  border-bottom: 1px solid #fff;
  font: bold 14px/1 "Noto Sans JP";
}
@media (max-width: 1280px) {
  .modalBusiness__list li .boxText .list dt {
    width: 10.5rem;
    padding: 1.2rem 0;
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .modalBusiness__list li .boxText .list dt {
    padding: 8px 0;
  }
}
.modalBusiness__list li .boxText .list dd {
  width: calc(100% - 105px);
  padding: 12px 0;
  border-bottom: 1px solid #fff;
  font: normal 14px/1 "Noto Sans JP";
}
@media (max-width: 1280px) {
  .modalBusiness__list li .boxText .list dd {
    width: calc(100% - 10.5rem);
    padding: 1.2rem 0;
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .modalBusiness__list li .boxText .list dd {
    padding: 8px 0;
  }
}
.modalBusiness__list li .boxPhoto {
  flex-shrink: 0;
  width: 538px;
  height: 607px;
}
@media (max-width: 1280px) {
  .modalBusiness__list li .boxPhoto {
    width: 53.8rem;
    height: 60.7rem;
  }
}
@media (max-width: 768px) {
  .modalBusiness__list li .boxPhoto {
    order: 1;
    width: 100%;
    height: 265px;
  }
}
.modalBusiness__list li .boxPhoto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modalBusiness__close {
  z-index: 1;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 42px;
  height: 42px;
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid #53abff;
}
@media (max-width: 1280px) {
  .modalBusiness__close {
    top: 1.5rem;
    right: 1.5rem;
    width: 4.2rem;
    height: 4.2rem;
    border: 0.1rem solid #53abff;
  }
}
.modalBusiness__close img {
  width: 12px;
  height: 12px;
}
@media (max-width: 1280px) {
  .modalBusiness__close img {
    width: 1.2rem;
    height: 1.2rem;
  }
}
.modalBusiness .swiper--business .swiper-button-next,
.modalBusiness .swiper--business .swiper-button-prev {
  color: #fff;
}
@media (max-width: 1280px) {
  .modalBusiness .swiper--business .swiper-button-next::after,
  .modalBusiness .swiper--business .swiper-button-prev::after {
    font-size: 5rem !important;
  }
}
@media (max-width: 768px) {
  .modalBusiness .swiper--business .swiper-button-next::after,
  .modalBusiness .swiper--business .swiper-button-prev::after {
    font-size: 16px !important;
  }
}
.modalBusiness .swiper--business .swiper-button-next {
  right: -60px;
}
@media (max-width: 1280px) {
  .modalBusiness .swiper--business .swiper-button-next {
    right: -6rem;
  }
}
@media (max-width: 768px) {
  .modalBusiness .swiper--business .swiper-button-next {
    right: -24px;
  }
}
.modalBusiness .swiper--business .swiper-button-prev {
  left: -60px;
}
@media (max-width: 1280px) {
  .modalBusiness .swiper--business .swiper-button-prev {
    left: -6rem;
  }
}
@media (max-width: 768px) {
  .modalBusiness .swiper--business .swiper-button-prev {
    left: -24px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px !important;
  background-color: #fff;
  padding: 0 !important;
  overflow: visible;
  transition: background-color 0.2s ease-in-out;
  min-width: 280px;
  z-index: 10000 !important;
}
@media (max-width: 1120px) {
  header {
    height: 60px !important;
  }
}
header * {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
}
header a {
  text-decoration: none;
}
header figure {
  margin: 0;
}
header::before {
  pointer-events: none;
  z-index: -10;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(27, 104, 178, 0.9);
  backdrop-filter: blur(30px);
  transition: opacity 0.2s ease-in-out;
  opacity: 0;
}
.is-open header::before {
  opacity: 1;
}
header .header__logo {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  padding: 0 40px;
  transition: opacity 0.2s ease-in-out, color 0.2s ease-in-out;
}
@media (max-width: 1120px) {
  header .header__logo {
    padding: 0 24px;
    gap: 3px;
  }
}
header .header__logo__image {
  width: 165.768px;
  height: auto;
  flex-shrink: 0;
}
@media (max-width: 1120px) {
  header .header__logo__image {
    width: 103px;
  }
}
.is-open header .header__logo__image {
  background-color: #fff;
  mask: url(../img/common/logo.svg) no-repeat center center/contain;
}
.is-open header .header__logo__image img {
  opacity: 0;
}
header .header__logo__title {
  position: relative;
  bottom: -2px;
  color: #000;
  font-size: 18.26px;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.is-open header .header__logo__title {
  color: #fff;
}
@media (max-width: 1120px) {
  header .header__logo__title {
    bottom: auto;
    font-size: 13.14px;
  }
}
header .header__menu {
  margin: 0 0 0 auto;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.2s ease-in-out;
}
header .header__menu__list {
  display: flex;
  gap: 21px;
  align-items: center;
}
@media (max-width: 1120px) {
  header .header__menu__list li:not(:last-child) {
    display: none;
  }
}
header .header__menu__list li a {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.is-open header .header__menu__list li a {
  display: none;
}
header .header__menu__list li a span {
  position: relative;
}
header .header__menu__list li a span::before {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 0;
  height: 1px;
  background-color: #000;
  transition: width 0.2s ease-in-out;
}
header .header__menu__list li a.download {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 32.5px;
  background: linear-gradient(100deg, #53abff 4.07%, #3f81c1 86.92%, #326799 103.25%);
  width: 165px;
  height: 45px;
  transition: box-shadow 0.2s ease-in-out;
}
.is-open header .header__menu__list li a.download {
  display: none;
}
@media (max-width: 1120px) {
  header .header__menu__list li a.download {
    display: none;
  }
}
header .header__menu__list li a.download:hover {
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}
header .header__menu__list li a.seminar {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1b68b2;
  border-radius: 32.5px;
  background: linear-gradient(105deg, #fff185 3.7%, #ffe100 68.36%, #fb0 101.45%);
  width: 165px;
  height: 45px;
  transition: box-shadow 0.2s ease-in-out;
}
.is-open header .header__menu__list li a.seminar {
  display: none;
}
@media (max-width: 1120px) {
  header .header__menu__list li a.seminar {
    display: none;
  }
}
header .header__menu__list li a.seminar:hover {
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}
header .header__menu__list li a.instagram {
  display: block;
  transition: box-shadow 0.2s ease-in-out;
  border-radius: 50%;
}
.is-open header .header__menu__list li a.instagram {
  display: none;
}
@media (max-width: 1120px) {
  header .header__menu__list li a.instagram {
    width: 27px;
    height: 27px;
    display: block !important;
  }
  .is-open header .header__menu__list li a.instagram {
    display: none !important;
  }
}
header .header__menu__list li a.instagram:hover {
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}
header .header__menu__list li a:hover span::before {
  width: 100%;
}
header .header__button {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 103.681px;
  height: 80px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  flex-shrink: 0;
}
@media (max-width: 1120px) {
  header .header__button {
    width: 60px;
    height: 60px;
  }
}
header .header__button span {
  position: absolute;
  display: block;
  width: 39.744px;
  height: 1.5px;
  background: #1b68b2;
  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
}
@media (max-width: 1120px) {
  header .header__button span {
    width: 33.91px;
  }
}
.is-open header .header__button span {
  background: #fff;
  width: 35.36px;
  height: 1px;
}
@media (max-width: 1120px) {
  .is-open header .header__button span {
    width: 26.52px;
  }
}
header .header__button span:nth-child(1) {
  margin-bottom: 20px;
}
.is-open header .header__button span:nth-child(1) {
  margin: 0;
  transform: rotate(135deg);
}
.is-open header .header__button span:nth-child(2) {
  width: 0;
}
header .header__button span:nth-child(3) {
  margin-top: 20px;
}
.is-open header .header__button span:nth-child(3) {
  margin: 0;
  transform: rotate(-135deg);
}
header .header__nav {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100dvh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  transition: opacity 0.2s ease-in-out;
  pointer-events: none;
  opacity: 0;
  overflow-y: auto;
}
@media (max-width: 1120px) {
  header .header__nav {
    top: 60px;
    height: calc(100dvh - 60px);
    padding: 0 24px;
    align-items: flex-start;
  }
}
.is-open header .header__nav {
  opacity: 1;
  pointer-events: all;
}
header .header__nav__inner {
  display: flex;
  gap: 58px;
  width: 100%;
  max-width: 970px;
  margin-top: -80px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1120px) {
  header .header__nav__inner {
    flex-direction: column;
    gap: 14px;
    margin-top: 0;
    padding: 0 0 24px 0;
  }
}
header .header__nav__left {
  max-width: 568px;
  flex: 1;
}
@media (max-width: 1120px) {
  header .header__nav__left {
    max-width: inherit;
  }
}
header .header__nav__right {
  width: 329px;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
@media (max-width: 1120px) {
  header .header__nav__right {
    width: auto;
    gap: 10px;
  }
}
header .header__nav__list {
  column-count: 2;
  column-gap: 58px;
  width: 100%;
}
@media (max-width: 1120px) {
  header .header__nav__list {
    column-count: 1;
    column-gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
}
header .header__nav__list li {
  position: relative;
  display: inline-flex;
  width: 100%;
  height: 100px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  gap: 0;
}
@media (max-width: 1120px) {
  header .header__nav__list li {
    height: auto;
  }
}
@media (min-width: 1241px) {
  header .header__nav__list li:first-child, header .header__nav__list li:nth-child(5) {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
}
header .header__nav__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  z-index: 1;
  width: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}
@media (max-width: 1120px) {
  header .header__nav__list a {
    padding: 12.5px 0;
  }
}
header .header__nav__list a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  flex-shrink: 0;
  background: #fff;
  border-radius: 50%;
  right: 13.5px;
  z-index: -1;
  transition: width 0.2s ease-in-out, height 0.2s ease-in-out, right 0.2s ease-in-out;
}
header .header__nav__list a::after {
  content: "";
  width: 27px;
  height: 27px;
  flex-shrink: 0;
  background: url(../img/common/icon_arrow_white.svg) no-repeat center center/6px auto;
  border: 1px solid #fff;
  border-radius: 50%;
}
header .header__nav__list a span {
  position: relative;
}
header .header__nav__list a span::before {
  position: absolute;
  bottom: -8px;
  content: "";
  height: 1px;
  width: 0px;
  background-color: #fff;
  transition: width 0.2s ease-in-out;
}
header .header__nav__list a:hover::before {
  width: 26.703px;
  height: 26.703px;
  right: 0;
}
header .header__nav__list a:hover::after {
  background-image: url(../img/common/icon_arrow_blue.svg);
  border: 0;
}
header .header__nav__list a:hover span::before {
  width: 100%;
}
header .header__nav__button {
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: 100%;
}
@media (max-width: 1120px) {
  header .header__nav__button {
    order: 2;
    gap: 6px;
  }
}
header .header__nav__button li a {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1b68b2;
  font-size: 19.099px;
  font-weight: bold;
  letter-spacing: 0.05em;
  border-radius: 6.821px;
  gap: 10.99px;
  overflow: hidden;
  background: #fff;
  border: 0.5px solid #fff;
  margin: 0 auto 0 0;
}
@media (max-width: 1120px) {
  header .header__nav__button li a {
    height: 72px;
    gap: 7px;
    font-size: 16px;
  }
}
header .header__nav__button li a > span {
  min-width: 8.4em;
  margin: 0 auto 0 0;
}
header .header__nav__button li a > span > span {
  position: relative;
}
header .header__nav__button li a > span > span::before {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 0;
  height: 1px;
  background-color: #1b68b2;
  transition: width 0.2s ease-in-out;
}
header .header__nav__button li a::before {
  content: "";
  width: 30.013px;
  height: 30.013px;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  margin: 0 0 0 auto;
}
header .header__nav__button li a.seminar {
  background: linear-gradient(105deg, #fff185 3.7%, #ffe100 68.36%, #fb0 101.45%);
}
header .header__nav__button li a.seminar::before {
  background-image: url(../img/common/icon_seminar.svg);
}
header .header__nav__button li a.download span {
  padding-left: 0em;
}
@media (max-width: 768px) {
  header .header__nav__button li a.download span {
    padding-left: 0.25em;
  }
}
header .header__nav__button li a.download::before {
  background-image: url(../img/common/icon_download_blue.webp);
}
header .header__nav__button li a:hover > span > span::before {
  width: 100%;
}
header .header__nav__link {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (max-width: 1120px) {
  header .header__nav__link {
    order: 1;
  }
}
header .header__nav__link li a {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  height: 24px;
}
header .header__nav__link li a.instagram::after {
  content: "";
  width: 22px;
  height: 22px;
  background: url(../img/common/icon_instagram.webp) no-repeat center center/contain;
}
header .header__nav__link li a.youtube::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/common/icon_youtube.svg) no-repeat center center/contain;
}
header .header__nav__link li a.website::after {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #fff;
  mask: url(../img/common/icon_blank.svg) no-repeat center center/contain;
}

footer {
  position: relative;
  background: #e1f0ff;
  padding: 0 24px;
  min-width: 280px;
}
footer * {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
}
footer figure {
  margin: 0;
}
footer .footer__inner {
  padding: 46px 0 46px;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 1120px) {
  footer .footer__inner {
    flex-direction: column;
    padding: 64px 0 38px;
  }
}
footer .footer__boxleft {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1120px) {
  footer .footer__boxleft {
    gap: 20px;
  }
}
footer .footer__logo img {
  width: 190.63px;
  height: aauto;
}
footer .footer__company {
  display: flex;
  flex-wrap: wrap;
}
footer .footer__company * {
  line-height: 1.5;
  font-size: 12px;
  color: #000;
  text-decoration: none;
}
footer .footer__company dt {
  font-weight: bold;
  margin-right: 1em;
}
footer .footer__company dd {
  width: 100%;
  margin-bottom: 13px;
}
footer .footer__company dd:last-child {
  margin-bottom: 0;
}
footer .footer__company dd.line1 {
  width: calc(100% - 3em);
}
footer .footer__sitemap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  gap: 19px 115px;
  padding-top: 21px;
  margin-right: 96px;
}
@media (max-width: 1120px) {
  footer .footer__sitemap {
    gap: 19px 0;
    padding-top: 12px;
    margin-right: 0;
  }
}
@media (max-width: 375px) {
  footer .footer__sitemap {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 376px) {
  footer .footer__sitemap li:nth-child(1) {
    order: 1;
  }
  footer .footer__sitemap li:nth-child(2) {
    order: 3;
  }
  footer .footer__sitemap li:nth-child(3) {
    order: 5;
  }
  footer .footer__sitemap li:nth-child(4) {
    order: 7;
  }
  footer .footer__sitemap li:nth-child(5) {
    order: 9;
  }
  footer .footer__sitemap li:nth-child(6) {
    order: 2;
  }
  footer .footer__sitemap li:nth-child(7) {
    order: 4;
  }
  footer .footer__sitemap li:nth-child(8) {
    order: 6;
  }
  footer .footer__sitemap li:nth-child(9) {
    order: 8;
  }
}
footer .footer__sitemap li a {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  color: #1b68b2;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-decoration: none;
  max-height: 1em;
}
@media (max-width: 1120px) {
  footer .footer__sitemap li a {
    font-size: 14px;
  }
}
footer .footer__sitemap li a.website::after {
  content: "";
  flex-shrink: 0;
  width: 12.49px;
  height: 12.49px;
  background-color: #1b68b2;
  mask: url(../img/common/icon_blank.svg) no-repeat center center/contain;
}
footer .footer__sitemap li a.instagram::after {
  content: "";
  flex-shrink: 0;
  width: 23px;
  height: 23px;
  background: url(../img/common/icon_instagram.webp) no-repeat center center/contain;
}
footer .footer__copyright {
  background: linear-gradient(90deg, #1b68b2 0%, #53abff 100%);
  color: #fff;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 12px 0;
  margin: 0 -24px;
}
@media (max-width: 1120px) {
  footer .footer__copyright {
    font-size: 10px;
    padding: 12.5px 0;
  }
}