@charset "utf-8";

/* stylelint-disable */

:root {
  --color-primary: #E60012;
  --color-primary-hover: #ee5e5a;
  --header-height: 84px;
  --header-height-negative: -84px;
  --base-text-color: #333;
  --font-roboto: Roboto, sans-serif;
}

@media (max-width: 768px) {
  :root {
    --header-height: 68px;
    --header-height-negative: -68px;
  }
}

body {
  color: var(--base-text-color);
}

.container {
  max-width: 1048px;
  margin: 0 auto;
  padding: 0 24px;
}

.font-roboto {
  font-family: var(--font-roboto);
}

.font-bold {
  font-weight: bold;
}

.font-medium {
  font-weight: 500;
}

.text-center {
  text-align: center;
}

.center-block {
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}

.c-btn.-s_500 {
  width: 500px;
}

.c-btn.-s_560 {
  width: 560px;
}

.c-btn.-block {
  display: block;
}

.c-section-title-large {
  font-weight: bold;
  font-size: 28px;
  line-height: 1.393;
  margin-bottom: 53px;
  text-align: center;
}

@media (max-width: 768px) {
  .c-section-title-large {
    font-size: 20px;
    margin-bottom: 32px;
  }
}

.c-section-title-medium {
  font-weight: bold;
  font-size: 22px;
  line-height: 1.773;
  margin-bottom: 36px;
  text-align: center;
}

@media (max-width: 768px) {
  .c-section-title-medium {
    font-size: 18px;
    margin-bottom: 24px;
  }
}

.c-text-block {
  font-size: 16px;
  line-height: 1.5;
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 768px) {
  .c-text-block {
    font-size: 15px;
  }
}

.c-accordion {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #C4C4C4;
}

.c-accordion + .c-accordion {
  margin-top: 16px;
}

.c-accordion-header {
  position: relative;
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
  text-align: left;
  cursor: pointer;
  padding: 13px 56px 15px 24px;
  background-color: #fff;
}

@media (max-width: 768px) {
  .c-accordion-header {
    font-size: 15px;
    padding: 13px 50px 15px 24px;
  }
}

.c-accordion-header::before {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background-color: #555555;
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 1;
  transform: translate(0, -50%);
}

.c-accordion-header::after {
  content: "";
  display: block;
  width: 2px;
  height: 16px;
  background-color: #555555;
  position: absolute;
  top: 50%;
  right: 27px;
  z-index: 1;
  transform: translate(0, -50%);
}

.c-accordion.is-open .c-accordion-header::after {
  opacity: 0;
}

.c-accordion-header--bg {
  background-color: #F5F5F5;
}

.c-accordion-header:hover {
  background-color: #fef3f3;
}

.c-accordion-body {
  border-top: 1px solid #C4C4C4;
}

.c-accordion-body-content {
  background-color: #fff;
  padding: 32px 40px;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .c-accordion-body-content {
    padding: 24px 24px 32px;
    font-size: 15px;
  }
}

.c-accordion-body-content img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.c-faq-mark {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
  width: 32px;
}

@media (max-width: 768px) {
  .c-faq-mark {
    font-size: 18px;
    width: 30px;
  }
}

@media (max-width: 768px) {
  .c-description-cards-wrapper {
    margin: 0 -24px;
    padding-bottom: 36px;
  }
}

.c-description-cards {
  display: flex;
  gap: 32px;
}

@media (max-width: 768px) {
  .c-description-cards {
    gap: 0;
  }
}

.c-description-card-container {
  width: 31.2%;
  height: auto;
}

@media (max-width: 768px) {
  .c-description-card-container {
    padding: 0 12px;
  }
}

.c-description-card {
  border: 1px solid #C4C4C4;
  background-color: #fff;
  height: 100%;
}

.c-description-card-visual {
  background-color: #FBFD96;
  text-align: center;
  height: 210px;
  padding-top: 24px;
  position: relative;
}

.c-description-card-visual img {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 0);
}

.c-description-card-visual-title {
  font-size: 16px;
  line-height: 2.5;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

.c-description-card-visual-title em {
  font-size: 30px;
  line-height: 1.33333;
  padding-left: 8px;
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
}

.c-description-card-visual-title em.font-roboto {
  margin-top: -5px;
}

.c-description-card-text {
  padding: 24px 32px;
  font-size: 16px;
  line-height: 1.5;
}

.c-description-card-text small {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
  margin-top: 6px;
  padding-left: 1.3em;
  position: relative;
}

.c-description-card-text small::before {
  content: "※";
  position: absolute;
  top: auto;
  left: 0;
  z-index: 1;
}

.c-description-cards-button {
  width: 40px;
  height: 40px;
  background-color: #fff;
  position: absolute;
  top: 128px;
  z-index: 2;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #C4C4C4;
  transition: all 0.2s ease;
}

.c-description-cards-button::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-width: 2px 2px 0 0;
  border-style: solid;
  border-color: var(--base-text-color);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.c-description-cards-button--prev {
  left: 10px;
}

.c-description-cards-button--prev::after {
  transform: rotate(-135deg);
  margin-left: 16px;
}

.c-description-cards-button--next {
  right: 10px;
}

.c-description-cards-button--next::after {
  transform: rotate(45deg);
  margin-right: 16px;
}

.c-description-cards-button.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

.c-description-cards-pagination {
  position: absolute;
  bottom: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-description-cards-pagination .swiper-pagination-bullet {
  margin: 0 8px !important;
  width: 12px !important;
  height: 12px !important;
  background-color: #fff;
  border: 1px solid #C4C4C4;
  opacity: 1;
}

.c-description-cards-pagination .swiper-pagination-bullet-active {
  background-color: #C4C4C4;
}

.wrapper {
  background: url(/eiken/lifelong-learner/assets/images/bg-wrapper.png) repeat 50% 0;
  background-size: auto;
}

@media (max-width: 768px) {
  .wrapper {
    background-image: url(/eiken/lifelong-learner/assets/images/bg-wrapper-sp.png);
  }
}

.header {
  height: var(--header-height);
  padding: 0 40px 0 24px;
  background-color: rgba(255 255 255 / 0.95);
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9;
}

@media (max-width: 1280px) {
  .header {
    padding-right: 20px;
  }
}

@media (max-width: 768px) {
  .header {
    padding-left: 16px;
    padding-right: 20px;
  }
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

@media (max-width: 1100px) {
  .header__container {
    justify-content: flex-start;
  }
}

.header__logo {
  position: relative;
  z-index: 11;
}

.header__logo img {
  width: 57px;
}

@media (max-width: 768px) {
  .header__logo img {
    width: 45px;
  }
}

.header__title {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.1;
  margin-left: 24px;
  white-space: nowrap;
  position: relative;
  z-index: 11;
}

@media (max-width: 1280px) and (min-width: 1101px) {
  .header__title {
    font-size: 16px;
    margin-left: 18px;
  }
}

@media (max-width: 768px) {
  .header__title {
    font-size: 14px;
    margin-left: 16px;
  }
}

.header__burger {
  margin-left: auto;
  width: 28px;
  height: 28px;
  position: relative;
  cursor: pointer;
  z-index: 11;
}

@media (min-width: 1101px) {
  .header__burger {
    display: none;
  }
}

.header__burger span {
  display: block;
  width: 19px;
  height: 2px;
  background-color: #555;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  transition: all 0.2s ease;
}

.header__burger span:nth-child(1) {
  top: 7px;
}

.header__burger span:nth-child(2) {
  top: 13px;
}

.header__burger span:nth-child(3) {
  bottom: 7px;
}

.header__burger.is-active span:nth-child(1) {
  transform: rotate(45deg);
  top: 13px;
}

.header__burger.is-active span:nth-child(2) {
  transform: translate(-5px, 0);
  opacity: 0;
}

.header__burger.is-active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 13px;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-left: auto
}

@media (max-width: 1280px) {
  .header__nav {
    gap: 12px;
  }
}

@media (max-width: 1100px) {
  .header__nav {
    display: block;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: all 0.3s ease;
    overflow-y: auto;
    padding: 0 32px;
    padding-top: var(--header-height);
    padding-bottom: var(--header-height);
  }
}

@media (max-width: 1100px) {
  .header__nav.is-active {
    opacity: 1;
    pointer-events: all;
  }
}

.header__nav__list {
  display: flex;
  align-items: center;
  height: var(--header-height);
  position: relative;
}

@media (max-width: 1100px) {
  .header__nav__list {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
    padding-top: 24px;
  }
}

@media (max-width: 1100px) {
  .header__nav__list::before {
    content: "";
    display: block;
    width: 100%;
    height: var(--header-height);
    background-color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 8;
    box-shadow: 0 8px 20px rgb(0 0 0 / 0.05);
  }
}

.header__nav__item {
  display: flex;
  align-items: center;
  height: 100%;
  width: 140px;
}

@media (max-width: 1280px) {
  .header__nav__item {
    width: 120px;
  }
}

@media (max-width: 1100px) {
  .header__nav__item {
    width: 100%;
    border-bottom: 1px solid #C4C4C4;
  }
}

.header__nav__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.375;
  position: relative;
}

@media (max-width: 1280px) {
  .header__nav__item a {
    font-size: 14px;
  }
}

@media (max-width: 1100px) {
  .header__nav__item a {
    justify-content: flex-start;
    font-size: 16px;
    padding: 16px 0;
    background: url(/eiken/lifelong-learner/assets/images/icon-arrow.svg) no-repeat 100% 50%;
  }
}

.header__nav__item a::before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: #555555;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity ease 0.3s;
}

@media (max-width: 1100px) {
  .header__nav__item a::before {
    display: none;
  }
}

.header__nav__item a::after {
  content: "";
  display: block;
  width: 1px;
  height: 44px;
  background-color: #C4C4C4;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 1;
  transform: translate(0, -50%);
}

@media (max-width: 1100px) {
  .header__nav__item a::after {
    display: none;
  }
}

@media (max-width: 1100px) {
  .header__nav__item a:hover {
    opacity: 0.5;
  }
}

.header__nav__item a:hover::before {
  opacity: 1;
}

.header__nav__item:last-child a::after {
  display: none;
}

.header__buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1100px) {
  .header__buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .header__buttons {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .header__button {
    width: 100%;
  }
}

.header__button a:not(.c-btn) {
  display: flex;
  width: 160px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid #555555;
  border-radius: 44px;
  font-size: 14px;
  line-height: 1.286;
  color: #555;
}

.header__button a:not(.c-btn):hover {
  background-color: #f5f5f5;
}

.header__button--primary a:not(.c-btn) {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.header__button--primary a:not(.c-btn):hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

.banners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  width: 100%;
  height: var(--header-height);
  background-color: rgb(255 255 255 / 0.9);
  position: fixed;
  bottom: 0;
  z-index: 8;
  padding: 0 16px;
}

.banners__item {
  width: 50%;
}

.banners__item .c-btn {
  width: 100%;
  height: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banners__item .c-btn span {
  font-size: 13px;
}

.jumbotron {
  height: 54.03vw;
  padding-top: 11.57vw;
  text-align: center;
  position: relative;
  background: url(/eiken/lifelong-learner/assets/images/bg-hero-pc.png) no-repeat 50% 50%;
  background-size: cover;
}

@media (min-width: 2151px) {
  .jumbotron {
    margin-top: -0.73vw;
  }
}

@media (max-width: 1100px) {
  .jumbotron {
    padding-top: 15vw;
  }
}

@media (max-width: 768px) {
  .jumbotron {
    height: 181.3333vw;
    padding-top: 46.1333vw;
    background-image: url(/eiken/lifelong-learner/assets/images/bg-hero-sp.png);
    margin-top: var(--header-height);
  }
}

.jumbotron__text {
  text-align: center;
  font-weight: bold;
  margin-bottom: 3.3vw;
}

@media (max-width: 768px) {
  .jumbotron__text {
    margin-bottom: 6.93333vw;
  }
}

.jumbotron__text__description {
  font-size: 1.61vw;
  line-height: 1.546;
  margin-bottom: 2.2vw;
}

@media (max-width: 1100px) {
  .jumbotron__text__description {
    margin-bottom: 1.8vw;
  }
}

@media (max-width: 768px) {
  .jumbotron__text__description {
    font-size: 4vw;
    line-height: 1.6;
    margin-bottom: 5.3333vw;
  }
}

.jumbotron__text__main {
  font-size: 3.95vw;
  letter-spacing: 0.15vw;
}

@media (max-width: 768px) {
  .jumbotron__text__main {
    font-size: 8vw;
    line-height: 1.2;
  }
}

.jumbotron__features {
  display: flex;
  justify-content: center;
  gap: 1.17vw;
  width: 49.18vw;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 5.56vw;
}

@media (max-width: 1100px) {
  .jumbotron__features {
    margin-bottom: 2.3vw;
  }
}

@media (max-width: 768px) {
  .jumbotron__features {
    width: 100%;
    padding: 0 2.4vw;
    gap: 1.867vw;
    margin-bottom: 8.53vw;
  }
}

.jumbotron__feature {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 31.7647%;
  border: 1px solid #EFEFEF;
  background-color: #FDFFAA;
  border-radius: 0.73vw;
  text-align: center;
  padding: 2.05vw 0 2.2vw;
}

@media (max-width: 768px) {
  .jumbotron__feature {
    width: 29.1vw;
    border-radius: 2.1333vw;
    padding: 3.467vw 0 4.267vw;
    justify-content: flex-start;
  }
}

.jumbotron__feature__icon {
  display: flex;
  align-items: center;
  width: 100%;
  height: 3.66vw;
  position: relative;
  margin-bottom: 1.32vw;
}

@media (max-width: 768px) {
  .jumbotron__feature__icon {
    height: 11.42vw;
    margin-bottom: 2.667vw;
  }
}

.jumbotron__feature__icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.jumbotron__feature:nth-child(1) .jumbotron__feature__icon img {
  width: 3.81vw;
}

@media (max-width: 768px) {
  .jumbotron__feature:nth-child(1) .jumbotron__feature__icon img {
    width: 12.6vw;
  }
}

.jumbotron__feature:nth-child(2) .jumbotron__feature__icon img {
  width: 6.44vw;
}

@media (max-width: 768px) {
  .jumbotron__feature:nth-child(2) .jumbotron__feature__icon img {
    width: 19.95vw;
  }
}

.jumbotron__feature:nth-child(3) .jumbotron__feature__icon img {
  width: 3.66vw;
}

@media (max-width: 768px) {
  .jumbotron__feature:nth-child(3) .jumbotron__feature__icon img {
    width: 11.04vw;
  }
}

.jumbotron__feature__text {
  font-weight: bold;
  font-size: 1.32vw;
  line-height: 1.3333;
}

@media (max-width: 768px) {
  .jumbotron__feature__text {
    font-size: 3.2vw;
    line-height: 1.25;
  }
}

.jumbotron__scroll {
  font-size: 1.02vw;
  line-height: 1.5;
  font-weight: bold;
  padding-bottom: 1.24vw;
  background: url(/eiken/lifelong-learner/assets/images/icon-arrow-scroll.svg) no-repeat 50% 100%;
  background-size: 0.66vw auto;
}

@media (max-width: 768px) {
  .jumbotron__scroll {
    font-size: 2.667vw;
    padding-bottom: 4.5333vw;
    background-size: 1.41vw auto;
  }
}

.information {
  position: relative;
  z-index: 1;
  top: -2vw;
  left: 0;
  right: 0;
  pointer-events: none;
  width: 73.21vw;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .information {
    width: auto;
    margin: 0 48px;
  }
}

@media (max-width: 768px) {
  .information {
    top: -9.6vw;
    margin: 0 24px;
  }
}

.information__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  background-color: #fff;
  box-shadow: 0 0 20px rgb(0 0 0 / 0.1);
  border-radius: 8px;
  padding: 0 24px;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .information__container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    position: relative;
  }
}

.information__title {
  font-weight: bold;
  font-size: 16px;
  line-height: 2;
  flex: 0 0 auto;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .information__title {
    font-size: 14px;
    line-height: 1.5;
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
  }
}

.information__swiper {
  flex: 1 1 auto;
  min-width: 0;
}

@media (max-width: 768px) {
  .information__swiper {
    width: 78%;
    margin-right: 0;
    margin-left: 0;
  }
}

.information__item {
  display: flex;
  align-items: center;
  gap: 29px;
}

@media (max-width: 768px) {
  .information__item {
    gap: 14px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.information__date {
  flex: 0 0 auto;
  white-space: nowrap;
  color: #767676;
  font-size: 15px;
  font-weight: bold;
  padding-top: 2.5px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .information__date {
    font-size: 14px;
    padding-top: 1.5px;
    padding-left: 79px;
  }
}

.information__text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}

@media (max-width: 768px) {
  .information__text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: initial;
    font-size: 14px;
    line-height: 1.571;
  }
}

.information__text a {
  color: #2774b7;
  text-decoration: underline;
}

.information__text a:hover {
  text-decoration: none;
}

.information__number {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-left: auto;
  height: 72px;
  font-size: 16px;
  width: auto;
  left: auto;
}

@media (max-width: 768px) {
  .information__number {
    height: auto;
    position: absolute;
    bottom: 28px;
    right: 16px;
    font-size: 14px;
  }
}

.information__number .swiper-pagination-current,
.information__number .swiper-pagination-total {
  padding: 0 4px;
}

.about {
  padding: 100px 0 80px;
}

@media (max-width: 768px) {
  .about {
    padding-top: 60px;
    padding-bottom: 56px;
  }
}

.about__content {
  margin: 56px 0;
}

@media (max-width: 768px) {
  .about__content {
    margin: 48px 0;
  }
}

.about__content:last-of-type {
  margin-bottom: 0;
}

.about__content.test .test__column {
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .about__content.test .test__column {
    gap: 15px;
  }
}

.about__content.test .test__column__item {
  display: flex;
  justify-content: center;
  width: 320px;
  background-color: #fff;
  border: 1px solid #C4C4C4;
  padding: 48px 0;
}

@media (max-width: 768px) {
  .about__content.test .test__column__item {
    padding: 28px 15px;
  }
}

.about__content.test .test__column__item img {
  height: 80px;
}

@media (max-width: 768px) {
  .about__content.test .test__column__item img {
    height: 45px;
  }
}

.about__content.service .service__card {
  display: flex;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 3px 16px rgba(0 0 0 / 12%);
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}

@media (max-width: 768px) {
  .about__content.service .service__card {
    flex-direction: column;
  }
}

.about__content.service .service__mock {
  flex: 0 0 auto;
  background-color: #f5f5f5;
}

@media (max-width: 1100px) and (min-width: 769px) {
  .about__content.service .service__mock {
    display: flex;
    align-items: center;
    width: 290px;
  }
}

.about__content.service .service__mock img {
  width: 100%;
  height: auto;
}

.about__content.service .service__text {
  flex: 1;
  padding: 0 84px 0 48px;
  display: flex;
  align-items: center;
}

@media (max-width: 1100px) and (min-width: 769px) {
  .about__content.service .service__text {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .about__content.service .service__text {
    padding: 32px 24px;
    display: block;
  }
}

.about__content.service .service__text__title {
  margin-bottom: 14px;
  font-size: 20px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .about__content.service .service__text__title {
    margin-bottom: 16px;
    font-size: 16px;
    text-align: center;
  }
}

.about__content.service .service__text__description {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 26px;
}

@media (max-width: 768px) {
  .about__content.service .service__text__description {
    margin-bottom: 24px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .about__content.service .service__text .c-btn {
    width: 100%;
  }
}

.about__content.auth-accounts .auth-accounts__cards {
  margin-top: 38px;
  margin-bottom: 56px;
}

@media (max-width: 768px) {
  .about__content.auth-accounts .auth-accounts__cards {
    margin-top: 24px;
    margin-bottom: 48px;
  }
}

.about__content.auth-accounts .auth-accounts__accordion-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: -1px 0;
}

@media (max-width: 768px) {
  .about__content.auth-accounts .auth-accounts__accordion-header {
    gap: 8px;
  }
}

.about__content.auth-accounts .auth-accounts__family-faq-content {
  padding-bottom: 30px
}

@media (max-width: 768px) {
  .about__content.auth-accounts .auth-accounts__family-faq-content {
    padding-bottom: 24px
  }
}

.about__content.auth-accounts .auth-accounts__family-faq-content__image {
  margin-top: 24px;
  text-align: center;
}

@media (max-width: 768px) {
  .about__content.auth-accounts .auth-accounts__family-faq-content__image {
    margin-top: 16px;
    margin-left: 0 !important;
  }
}

.about__content.auth-accounts .auth-accounts__family-faq-content + .auth-accounts__family-faq-content {
  border-top: 1px solid #C4C4C4;
  padding-top: 30px;
}

@media (max-width: 768px) {
  .about__content.auth-accounts .auth-accounts__family-faq-content + .auth-accounts__family-faq-content {
    padding-top: 24px;
  }
}

.about__content.auth-accounts .auth-accounts__faq-content__link {
  margin-bottom: 24px;
}

.about__content.auth-accounts .auth-accounts__question {
  font-size: 16px;
  line-height: 1.5;
  display: grid;
  grid-template-columns: auto 1fr;
}

@media (max-width: 768px) {
  .about__content.auth-accounts .auth-accounts__question {
    font-size: 15px;
  }
}

.about__content.auth-accounts .auth-accounts__question + .auth-accounts__question {
  margin-top: 18px;
}

@media (max-width: 768px) {
  .about__content.auth-accounts .auth-accounts__question + .auth-accounts__question {
    margin-top: 16px;
  }
}

.about__content.auth-accounts .auth-accounts__question * {
  line-height: inherit;
}

.about__content.auth-accounts .auth-accounts__question > div:last-of-type {
  padding-top: 3px;
}

.future-plan {
  padding: 80px 0;
  background:
    url(/eiken/lifelong-learner/assets/images/future-plan-deco-01.png) no-repeat 0 0,
    url(/eiken/lifelong-learner/assets/images/future-plan-deco-02.png) no-repeat 100% 100%;
  background-color: #FFFFEB;
}

@media (max-width: 768px) {
  .future-plan {
    padding: 56px 0;
    background-size: 150px auto;
  }
}

.future-plan__about {
  border: 1px solid #C4C4C4;
  padding: 40px;
  background-color: #fff;
}

@media (max-width: 768px) {
  .future-plan__about {
    padding: 32px 24px;
  }
}

.future-plan__about__column {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 768px) {
  .future-plan__about__column {
    flex-direction: column;
    gap: 16px;
  }
}

.future-plan__about__text {
  width: 48.7%;
}

@media (max-width: 768px) {
  .future-plan__about__text {
    width: 100%;
    order: 2;
  }
}

.future-plan__about__image {
  width: 47%;
  text-align: center;
}

@media (max-width: 768px) {
  .future-plan__about__image {
    width: 100%;
    order: 1;
  }
}

.future-plan__about__image img {
  max-width: 100%;
  height: auto;
}

.future-plan__notice {
  padding: 55px 0;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.459;
  text-align: center;
}

@media (max-width: 768px) {
  .future-plan__notice {
    padding: 32px 0;
    font-size: 18px;
    line-height: 1.5;
  }
}

.future-plan__notice-column {
  display: flex;
  gap: 40px;
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 768px) {
  .future-plan__notice-column {
    flex-direction: column;
    gap: 16px;
  }
}

.future-plan__notice-column__item {
  border: 1px solid #C4C4C4;
  padding: 40px 32px;
  background-color: #fff;
  width: 50%;
}

@media (max-width: 768px) {
  .future-plan__notice-column__item {
    width: 100%;
    padding: 34px 24px 24px;
  }
}

.future-plan__notice-column__image {
  position: relative;
  height: 222px;
  margin-bottom: 26px;
}

@media (max-width: 768px) {
  .future-plan__notice-column__image {
    height: auto;
    margin-bottom: 24px;
    text-align: center;
  }
}

.future-plan__notice-column__image img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  margin: auto;
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .future-plan__notice-column__image img {
    position: static;
  }
}

.future-plan__notice-column__text {
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .future-plan__notice-column__text {
    font-size: 15px;
  }
}

.register {
  padding: 80px 0;
  background-color: #fff;
}

@media (max-width: 768px) {
  .register {
    padding: 56px 0;
  }
}

.register__column {
  display: flex;
  gap: 40px;
}

@media (max-width: 768px) {
  .register__column {
    flex-direction: column;
    gap: 16px;
  }
}

.register__item {
  width: 50%;
  padding: 40px;
  border: 1px solid #C4C4C4;
}

@media (max-width: 768px) {
  .register__item {
    width: 100%;
    padding: 32px 24px;
  }
}

.register__item__title {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .register__item__title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.register__item__text {
  line-height: 1.5;
  font-size: 16px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .register__item__text {
    font-size: 15px;
    margin-bottom: 20px;
  }
}

.register__item small {
  display: block;
  line-height: 1.5;
  font-size: 14px;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .register__item small {
    font-size: 12px;
    margin-top: 12px;
  }
}

.register__item small a {
  text-decoration: underline;
  color: inherit;
}

.register__item small a:hover {
  text-decoration: none;
}

.register__item .c-btn {
  width: 100%;
}

.register__item .c-btn + small {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .register__item .c-btn + small {
    margin-top: 16px;
  }
}

.how-to-register {
  background-color: #F5F5F5;
  padding: 80px 0;
}

@media (max-width: 768px) {
  .how-to-register {
    padding: 56px 0;
  }
}

.how-to-register__notice {
  padding: 56px 0 32px;
}

@media (max-width: 768px) {
  .how-to-register__notice {
    padding: 32px 0 24px;
    text-align: left;
  }
}

.faq {
  background-color: #fff;
  padding: 80px 0;
}

@media (max-width: 768px) {
  .faq {
    padding: 56px 0;
  }
}

.faq__title {
  display: grid;
  grid-template-columns: auto 1fr;
  line-height: 1.5;
}

.faq__title * {
  line-height: inherit;
}

.faq__title > div:last-of-type {
  padding-top: 3px;
}

.faq__notice {
  padding: 56px 0 32px;
}

@media (max-width: 768px) {
  .faq__notice {
    padding: 32px 0 24px;
    text-align: left;
  }
}

.footer {
  background-color: #fff;
}

@media (max-width: 768px) {
  .footer {
    padding-bottom: var(--header-height);
  }
}

.footer__register {
  padding: 80px 0;
  background-color: #F5F5F5;
}

@media (max-width: 768px) {
  .footer__register {
    padding: 56px 0;
  }
}

.footer__register__buttons {
  display: flex;
  gap: 40px;
  max-width: 880px;
  margin-top: 40px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 768px) {
  .footer__register__buttons {
    margin-top: 24px;
    flex-direction: column;
    gap: 24px;
  }
}

.footer__register__buttons .c-btn {
  width: 50%;
}

@media (max-width: 768px) {
  .footer__register__buttons .c-btn {
    width: 100%;
  }
}

.footer__menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
}

@media (max-width: 1100px) {
  .footer__menu {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .footer__menu {
    padding: 32px 24px;
    gap: 32px;
  }
}

.footer__nav__list {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .footer__nav__list {
    flex-direction: column;
    gap: 16px;
  }
}

.footer__nav__item {
  padding: 0 20px;
  border-right: 1px solid var(--base-text-color);
}

@media (max-width: 768px) {
  .footer__nav__item {
    padding: 0;
    border: 0;
  }
}

.footer__nav__item:first-child {
  padding-left: 0;
}

.footer__nav__item:last-child {
  padding-right: 0;
  border: 0;
}

.footer__nav__item a {
  color: inherit;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.5;
}

.footer__nav__item a:hover {
  opacity: 0.5;
}

.footer__copyright small {
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer__copyright small {
    font-size: 12px;
  }
}
