@charset "UTF-8";
/* 下線がないリンクのアニメーション */
/* 下線がついている場合のアニメーション */
@keyframes linkUnderline {
  0% {
    background-position: 0 100%;
    background-size: 0 1px;
  }
  100% {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}
.pagetitle {
  border-bottom: none;
  padding-bottom: 0;
}

/* リードブロック */
.lead .box-white {
  display: grid;
  align-items: center;
}
@media (min-width: 961px) {
  .lead .box-white {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 960px) {
  .lead .box-white {
    gap: 40px;
  }
}
.lead .text h3 {
  margin-bottom: 1em;
  font-weight: 300;
  line-height: 1.65;
}
@media (min-width: 961px) {
  .lead .text h3 {
    font-size: 36rem;
  }
  .lead .text p {
    font-size: 24px;
  }
}
@media (max-width: 960px) {
  .lead .text h3 {
    font-size: 24px;
  }
}
@media (min-width: 961px) {
  .lead .image img {
    width: 300px;
  }
}
@media (max-width: 960px) {
  .lead .image {
    text-align: center;
  }
  .lead .image img {
    width: 160px;
  }
}
.lead .anchor-nav {
  display: grid;
  margin: auto;
}
@media (min-width: 961px) {
  .lead .anchor-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    width: fit-content;
    margin-top: 70px;
  }
}
@media (max-width: 960px) {
  .lead .anchor-nav {
    gap: 20px;
    margin-top: 40px;
  }
}

/* NEEのみどころ */
.highlights {
  border-top: 2px solid var(--color-gray);
  padding-top: 40px;
}
@media (min-width: 961px) {
  .highlights {
    margin-top: 100px;
  }
}
@media (max-width: 960px) {
  .highlights {
    margin-top: 80px;
  }
}
.highlights header {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 960px) {
  .highlights header {
    flex-direction: column;
    gap: 30px;
  }
}
.highlights .anchor-nav {
  display: flex;
  gap: 0.3em 1em;
}
.highlights .anchor-nav li {
  display: flex;
  align-items: center;
  gap: 0.3em;
  line-height: 1.4;
}
.highlights .anchor-nav a {
  background: linear-gradient(currentcolor, currentcolor) no-repeat 100% 100%/100% 1px;
  text-decoration: none;
}
.highlights .anchor-nav a:hover {
  animation: linkUnderline 0.35s cubic-bezier(0.18, 0.06, 0.23, 1) forwards;
}
.highlights .anchor-nav i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  aspect-ratio: 1;
  background-color: var(--color-text-base);
  border-radius: 50%;
  color: #fff;
  font-size: 60%;
}
@media (max-width: 960px) {
  .highlights .anchor-nav {
    flex-direction: column;
  }
}
.highlights-section {
  border-top: 2px solid var(--color-light-gray);
  padding-top: 40px;
}
@media (min-width: 961px) {
  .highlights-section {
    margin-top: 80px;
  }
}
@media (max-width: 960px) {
  .highlights-section {
    margin-top: 40px;
  }
}
.highlights h4 {
  margin-bottom: 1.5em;
  font-weight: 400;
}
@media (min-width: 961px) {
  .highlights h4 {
    font-size: 32rem;
  }
}
@media (max-width: 960px) {
  .highlights h4 {
    font-size: 24px;
  }
}
.highlights .images {
  display: grid;
  gap: 15px;
}
@media (min-width: 961px) {
  .highlights .images {
    margin-top: 40px;
  }
}
@media (min-width: 521px) {
  .highlights .images {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 960px) {
  .highlights .images {
    margin-top: 20px;
  }
}
.highlights .past {
  border-top: 1px solid var(--color-light-gray);
  padding-top: 40px;
  display: grid;
  gap: 40px;
}
@media (min-width: 961px) {
  .highlights .past {
    margin-top: 80px;
  }
}
@media (min-width: 521px) {
  .highlights .past > * {
    width: 360px;
    max-width: 100%;
    margin: auto;
  }
}
@media (max-width: 960px) {
  .highlights .past {
    margin-top: 40px;
  }
}

/* NEEのあゆみ */
.history {
  border-top: 2px solid var(--color-gray);
}
@media (min-width: 961px) {
  .history {
    margin-top: 140px;
    padding-top: 40px;
  }
}
@media (max-width: 960px) {
  .history {
    margin-top: 100px;
    padding-top: 40px;
  }
}
@media (min-width: 961px) {
  .history .h3 {
    margin-bottom: 80px;
  }
}
@media (max-width: 960px) {
  .history .h3 {
    margin-bottom: 40px;
  }
}
.history-detail {
  position: relative;
  display: grid;
  gap: 40px;
}
.history-detail::before {
  position: absolute;
  top: 12px;
  bottom: -12px;
  content: "";
  background-color: var(--color-light-gray);
  width: 2px;
}
.history-detail:last-child {
  padding-bottom: 0;
}
.history-detail:last-child::before {
  display: none;
}
@media (min-width: 961px) {
  .history-detail {
    padding-left: 94px;
    padding-bottom: 80px;
    grid-template-columns: auto 55%;
    grid-template-rows: auto 1fr;
  }
  .history-detail:first-of-type {
    margin-top: 130px;
  }
  .history-detail::before {
    left: 51px;
  }
}
@media (max-width: 960px) {
  .history-detail {
    padding-left: 70px;
    padding-bottom: 60px;
  }
  .history-detail:first-of-type {
    margin-top: 65px;
  }
  .history-detail::before {
    left: 27px;
  }
}
.history .heading {
  display: grid;
  line-height: 1.65;
  position: relative;
}
.history .heading .en {
  font-weight: 500;
  font-size: 24rem;
}
.history .heading .ja {
  font-weight: 400;
}
.history .heading::before {
  position: absolute;
  top: 12px;
  left: -50px;
  width: 16px;
  aspect-ratio: 1;
  content: "";
  background-color: currentColor;
  border-radius: 50%;
}
.history .content {
  border-top: 1px solid currentColor;
  padding-top: 30px;
}
.history .content p {
  font-size: 24rem;
}
.history .content dt {
  margin-top: 40px;
  padding: 15px 0 5px;
  border-top: 1px solid var(--color-light-gray);
  font-weight: 500;
  font-size: 20rem;
}
@media (min-width: 961px) {
  .history .content {
    grid-area: 1/2/3/3;
  }
}
.history .images {
  display: grid;
  gap: 40px;
  height: fit-content;
}
.history .images figcaption {
  margin-top: 1em;
  font-size: 12rem;
  text-align: center;
}
@media (min-width: 521px) {
  .history .images {
    width: 340px;
    max-width: 100%;
  }
}