@keyframes pc_carousel {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -434.4rem 0;
  }
}
@keyframes sp_carousel {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -316.4rem 0;
  }
}
@keyframes pikapika {
  0% {
    background-position: center 0;
  }
  20% {
    background-position: center 20%;
  }
  40% {
    background-position: center 40%;
  }
  60% {
    background-position: center 60%;
  }
  80% {
    background-position: center 80%;
  }
  100% {
    background-position: center 100%;
  }
}
@keyframes upAndDown {
  0% {
    top: 20%;
    opacity: 1;
  }
  80% {
    top: 70%;
    opacity: 1;
  }
  100% {
    top: 75%;
    opacity: 0;
  }
}
html {
  background: #fff;
  font-size: min(0.715vw, 10px);
  font-family: "Noto Sans JP", sans-serif;
  color: #2b2a2a;
  overflow: hidden;
}
@media (max-width: 768px) or (min-height: 90vw) {
  html {
    font-size: min(1.334vw, 8px);
  }
}

body, h1, h2, h3, h4, p, figure, ul, ol, li, dl, dt, dd {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

img, svg {
  max-width: 100%;
  max-height: 100%;
  vertical-align: bottom;
}

*, *::before, *::after {
  box-sizing: border-box;
}

@media (max-width: 768px) or (min-height: 90vw) {
  .pc-only {
    display: none !important;
  }
}

@media (min-width: 769px) and (max-height: 90vw) {
  .sp-only {
    display: none !important;
  }
}

.wrapper {
  clip-path: inset(0 0 0 0 round 3rem);
  width: calc(100svw - 4rem);
  height: calc(100svh - 4rem);
  margin: 2rem;
  contain: paint;
  box-shadow: inset 0 0 0.5rem 0 rgba(0, 0, 0, 0.05);
  scroll-snap-type: y mandatory;
  overflow: scroll;
  scrollbar-width: none;
}
.wrapper::-webkit-scrollbar {
  display: none;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .nav:has(li:nth-of-type(2) a.is-current) + .wrapper, .nav:has(li:nth-of-type(3) a.is-current) + .wrapper, .nav:has(li:nth-of-type(4) a.is-current) + .wrapper {
    clip-path: inset(3.5rem 0 0 0 round 3rem);
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .nav:has(li:nth-of-type(2) a.is-current) + .wrapper, .nav:has(li:nth-of-type(3) a.is-current) + .wrapper, .nav:has(li:nth-of-type(4) a.is-current) + .wrapper {
    height: calc(100svh - 13rem);
    margin-top: 11rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .nav:has(li:nth-of-type(2) a.is-current) + .wrapper .section, .nav:has(li:nth-of-type(3) a.is-current) + .wrapper .section, .nav:has(li:nth-of-type(4) a.is-current) + .wrapper .section {
    min-height: calc(100svh - 13rem);
  }
}

.header {
  display: flex;
  align-items: center;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  color: #2b2a2a;
  z-index: 4;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .header {
    column-gap: 3.3rem;
    padding: 6.5rem 7rem 4.5rem;
    pointer-events: none;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .header {
    column-gap: 2.5rem;
    padding: 4.5rem 6.5rem 2.5rem 5rem;
  }
}
.header_logo {
  display: flex;
  width: 28.2rem;
}
.header_text {
  letter-spacing: 0.025em;
  line-height: 1;
  font-size: 2rem;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .nav:has(li:nth-of-type(2) a.is-current) ~ .header, .nav:has(li:nth-of-type(3) a.is-current) ~ .header, .nav:has(li:nth-of-type(4) a.is-current) ~ .header {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .nav:has(li:nth-of-type(2) a.is-current) ~ .header, .nav:has(li:nth-of-type(3) a.is-current) ~ .header, .nav:has(li:nth-of-type(4) a.is-current) ~ .header {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .nav:has(li:nth-of-type(2) a.is-current) ~ .header .header_logo, .nav:has(li:nth-of-type(3) a.is-current) ~ .header .header_logo, .nav:has(li:nth-of-type(4) a.is-current) ~ .header .header_logo {
    width: 19.4rem;
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .nav:has(li:nth-of-type(2) a.is-current) ~ .header .header_text, .nav:has(li:nth-of-type(3) a.is-current) ~ .header .header_text, .nav:has(li:nth-of-type(4) a.is-current) ~ .header .header_text {
    font-size: 1.3rem;
  }
}

.footer {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .footer {
    padding: 0 7rem 4.5rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .footer {
    padding: 0 5rem 3.5rem;
  }
}
.footer_copylight {
  font-weight: 100;
  font-family: "Outfit", sans-serif;
  text-align: right;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .footer_copylight {
    line-height: 2.5;
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .footer_copylight {
    line-height: 1.875;
    font-size: 1.6rem;
  }
}
.nav:has(a[href="#OurHistory"].is-current) ~ .footer .footer_copylight {
  color: #fff;
}

.nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  margin: auto 0;
  z-index: 3;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .nav {
    justify-content: center;
    align-items: flex-end;
    row-gap: 2.5rem;
    right: 6rem;
    bottom: 20rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .nav {
    align-items: flex-start;
    row-gap: 5rem;
    background: #267fc1;
    width: 100%;
    height: 0;
    color: #fff;
    overflow: hidden;
    transition: height 0.3s ease-out;
  }
  .nav.is-opened {
    height: 100%;
  }
}
.nav_switch {
  display: block;
  position: relative;
  fill: #2b2a2a;
  width: 6.5rem;
  height: 5.5rem;
  margin-left: auto;
  cursor: pointer;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .nav_switch {
    display: none;
  }
}
.nav_switch > * {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.nav_switch .close {
  display: none;
}
.nav_name {
  width: 9.6rem;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .nav_name .white {
    display: none;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .nav_name {
    margin: 21rem 0 0 11rem;
  }
  .nav_name .black {
    display: none;
  }
}
.nav_list {
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .nav_list {
    align-items: flex-end;
    row-gap: 2.5rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .nav_list {
    align-items: flex-start;
    row-gap: 7rem;
    margin: 0 0 0 11rem;
  }
  .nav:not(.is-opened) .nav_list {
    display: none;
  }
}
.nav_link {
  display: block;
  position: relative;
  font-weight: 300;
  text-decoration: none;
  transition: opacity 0.3s ease-out;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .nav_link {
    padding-right: 3.5rem;
    line-height: 1.375;
    font-size: 1.6rem;
    color: #2b2a2a;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .nav_link {
    padding-left: 3.8rem;
    line-height: 1.385;
    font-size: 2.6rem;
    color: #fff;
  }
}
.nav_link::before, .nav_link::after {
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
}
.nav_link:not(.blank)::before, .nav_link:not(.blank)::after {
  content: "";
  border-radius: 50%;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .nav_link:not(.blank)::before, .nav_link:not(.blank)::after {
    right: 1.25rem;
    translate: 50% -50%;
  }
}
.nav_link:not(.blank)::before {
  background: #fff;
  width: 0.8rem;
}
@media (max-width: 768px) or (min-height: 90vw) {
  .nav_link:not(.blank)::before {
    left: 0;
    translate: 0 -50%;
  }
}
.nav_link:not(.blank)::after {
  background: #2b2a2a;
  opacity: 0;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .nav_link:not(.blank)::after {
    width: 0.4rem;
  }
}
.nav_link.blank::before {
  content: "";
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/blank01_w.svg);
}
@media (min-width: 769px) and (max-height: 90vw) {
  .nav_link.blank::before {
    width: 2.5rem;
    height: 2.5rem;
    right: 0;
    translate: 0 -47%;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .nav_link.blank::before {
    width: 5rem;
    height: 5rem;
    left: -2.2rem;
    translate: 0 -42%;
  }
}
.nav_link span {
  display: block;
  position: relative;
  pointer-events: none;
}
.nav_link:hover {
  opacity: 0.5;
}
.nav_link.is-current {
  font-weight: 500;
  pointer-events: none;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .nav_link.is-current::before {
    width: 2.5rem;
    box-shadow: -1rem 1rem 0.5rem rgba(0, 0, 0, 0.05);
  }
  .nav_link.is-current::after {
    opacity: 1;
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .nav:has(.is-black.is-current) .nav_name .white {
    display: block;
  }
  .nav:has(.is-black.is-current) .nav_name .black {
    display: none;
  }
  .nav:has(.is-black.is-current) .nav_link {
    color: #fff;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .nav.is-opened + .header {
    color: #fff;
  }
  .nav.is-opened + .header .nav_switch {
    fill: #fff;
  }
  .nav.is-opened + .header .nav_switch .close {
    display: block;
  }
  .nav.is-opened + .header .nav_switch .open {
    display: none;
  }
  .nav.is-opened + .header .header_logo .white {
    display: block;
  }
  .nav.is-opened + .header .header_logo .black {
    display: none;
  }
  .nav.is-opened + .header .header_breadcrumb {
    display: none;
  }
}

.scroll {
  aspect-ratio: 22/37;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  cursor: pointer;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .scroll {
    width: 2.2rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .scroll {
    width: 2.9rem;
  }
}
.scroll::before {
  content: "";
  position: absolute;
  background: #fff;
  inset: 0;
  pointer-events: none;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .scroll::before {
    border-radius: 22px;
    box-shadow: -1rem 1rem 0.5rem rgba(0, 0, 0, 0.05);
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .scroll::before {
    border-radius: 2.9rem;
    box-shadow: -1.3rem 1.3rem 0.4rem rgba(0, 0, 0, 0.05);
  }
}
.scroll::after {
  content: "";
  aspect-ratio: 1/1;
  position: absolute;
  background: #2b2a2a;
  border-radius: 50%;
  width: 27.273%;
  left: 0;
  right: 0;
  bottom: 18.919%;
  margin: 0 auto;
  pointer-events: none;
  animation: upAndDown 2s cubic-bezier(0.23, 1, 0.32, 1) infinite;
}
.scroll:hover::before {
  box-shadow: -0.5rem 0.5rem 0.5rem rgba(0, 0, 0, 0.05);
}
@media (min-width: 769px) and (max-height: 90vw) {
  .scroll:hover::before {
    translate: 0 0.37rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .scroll:hover::before {
    translate: 0 0.561rem;
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .scroll:hover::after {
    translate: 0 0.37rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .scroll:hover::after {
    translate: 0 0.561rem;
  }
}

.pagetop {
  display: block;
  position: absolute;
  border-radius: 50%;
  background: #fff;
  fill: #2b2a2a;
  transition: opacity 0.3s ease-out;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .pagetop {
    width: 6rem;
    height: 6rem;
    right: 4.8rem;
    bottom: 4.8rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .pagetop {
    width: 7rem;
    height: 7rem;
    right: 2.5rem;
    bottom: 2.5rem;
  }
}
.pagetop:hover {
  opacity: 0.5;
}
.pagetop > * {
  pointer-events: none;
}

.section {
  position: relative;
  background-repeat: no-repeat;
  min-width: calc(100svw - 4rem);
  min-height: calc(100svh - 4rem);
  scroll-snap-align: start;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .section {
    background-position: center center;
    background-size: cover;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .section {
    background-position: center top;
    background-size: 100% auto;
  }
}
.section .breadcrumb {
  line-height: 1;
  font-weight: 300;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .section .breadcrumb {
    position: absolute;
    left: 5rem;
    top: 5.65rem;
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .section .breadcrumb {
    position: relative;
    font-size: 2.4rem;
  }
}
.section .logo {
  position: absolute;
  width: 9.7rem;
  top: 3.6rem;
  right: 4.6rem;
  pointer-events: none;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .section .logo {
    display: none;
  }
}

.carousel {
  position: absolute;
  width: calc(100svw - 4rem);
  height: calc(100svh - 4rem);
  overflow: hidden;
}
.carousel > div {
  position: absolute;
  background-position: 0 0;
  background-repeat: repeat-x;
  background-size: auto 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .carousel > div {
    aspect-ratio: 2172/860;
    background-image: url(../img/sect1_carousel_pc.webp);
    animation: pc_carousel 724s linear infinite;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .carousel > div {
    aspect-ratio: 1582/1056;
    background-image: url(../img/sect1_carousel_sp.webp);
    left: -18.169%;
    animation: sp_carousel 791s linear infinite;
  }
}

.sect1 {
  background-color: #bdd5eb;
  top: 0;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect1 {
    background-image: url(../img/sect1_bg_pc.webp);
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect1 {
    background-image: url(../img/sect1_bg_sp.webp);
  }
}
.sect1::before {
  content: "";
  position: absolute;
  background-position: center 0;
  background-repeat: repeat-y;
  inset: 0;
  pointer-events: none;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect1::before {
    background-image: url(../img/sect1_color_pc.png);
    background-size: cover;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect1::before {
    background-image: url(../img/sect1_color_sp.png);
    background-size: 100% auto;
  }
}
.sect1 .block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s linear;
  z-index: 2;
}
.sect1 .block.is-current {
  opacity: 1;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect1 .blk1 {
    padding: 0 0 8.6rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect1 .blk1 {
    padding: 0 0 6.5rem;
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect1 .blk2 {
    padding: 0 0 2.2rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect1 .blk2 {
    padding: 0 0 6.6rem;
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect1 .blk3 {
    padding: 0 0 6.8rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect1 .blk3 {
    padding: 0 0 1.5rem;
  }
}
.sect1 .title {
  width: 36.7rem;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect1 .title + .copy {
    margin-top: 3.3rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect1 .title + .copy {
    margin-top: 2.7rem;
  }
}
.sect1 .copy {
  letter-spacing: 0.025em;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect1 .copy {
    line-height: 1.345;
    font-size: 2.9rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect1 .copy {
    line-height: 1.556;
    font-size: 3.6rem;
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect1 .copy + .note {
    margin-top: 1.7rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect1 .copy + .note {
    margin-top: 2.1rem;
  }
}
.sect1 .note {
  line-height: 1;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect1 .note {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect1 .note {
    font-size: 2.6rem;
  }
}
.sect1 .lead {
  letter-spacing: 0.05em;
  font-weight: 550;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect1 .lead {
    line-height: 1.629;
    font-size: 3.5rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect1 .lead {
    line-height: 1.667;
    font-size: 3.6rem;
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect1 .lead + .note {
    margin-top: 1.9rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect1 .lead + .note {
    margin-top: 2.4rem;
  }
}
.sect1 .caption {
  letter-spacing: 0.05em;
  font-weight: 550;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect1 .caption {
    line-height: 1.772;
    font-size: 3.5rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect1 .caption {
    line-height: 1.667;
    font-size: 3.6rem;
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect1 .caption + .text {
    margin-top: 2.8rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect1 .caption + .text {
    margin-top: 1.4rem;
  }
}
.sect1 .text {
  font-weight: 300;
  text-align: center;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect1 .text {
    line-height: 2.056;
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect1 .text {
    line-height: 1.77;
    font-size: 2.6rem;
  }
}
.sect1 .scroll {
  z-index: 2;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect1 .scroll {
    top: calc(50svh + 18.2rem);
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect1 .scroll {
    bottom: 20rem;
  }
}

.sect2 {
  background-color: #bdd5eb;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect2 {
    background-image: url(../img/sect1_bg_pc.webp);
  }
}
.sect2::before {
  content: "";
  position: absolute;
  background-position: center 0;
  background-repeat: repeat-y;
  background-size: cover;
  inset: 0;
  pointer-events: none;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect2::before {
    background-image: url(../img/sect1_color_pc.png);
  }
}
.sect2 .inner {
  scrollbar-width: none;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect2 .inner {
    height: calc(100svh - 4rem);
    padding: 0 24rem;
    overflow-y: auto;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect2 .inner {
    position: relative;
  }
}
.sect2 .inner::-webkit-scrollbar {
  display: none;
}
.sect2 .block {
  display: grid;
  min-height: 100%;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect2 .block {
    justify-content: flex-start;
    grid-template-columns: 24rem 1fr;
    gap: 10.5rem 9rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 19rem 0 5rem;
  }
}
@media screen and (min-width: 769px) and (max-height: 90vw) and (max-height: 64vw) {
  .sect2 .block {
    padding-top: 12rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect2 .block {
    justify-content: center;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/sect1_bg_sp.webp);
    padding: 13.3rem 0 12.5rem;
  }
  .sect2 .block::before {
    content: "";
    position: absolute;
    background-image: url(../img/sect1_color_sp.png);
    background-position: center 0;
    background-repeat: repeat-y;
    background-size: 100% auto;
    height: 200%;
    inset: 0;
    pointer-events: none;
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect2 .profile {
    position: absolute;
    width: 24rem;
    left: calc(50vw - 42rem);
    top: 19rem;
  }
}
@media screen and (min-width: 769px) and (max-height: 90vw) and (max-height: 64vw) {
  .sect2 .profile {
    top: 12rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect2 .profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 2.8rem 0 13.9rem;
  }
}
.sect2 .thumbnail {
  overflow: hidden;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect2 .thumbnail {
    border-radius: 12rem;
    box-shadow: -5rem 5rem 0.3rem rgba(0, 0, 0, 0.05);
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect2 .thumbnail {
    border-radius: 13.8rem;
    width: 27.6rem;
    box-shadow: -5.7rem 5.7rem 0.35rem rgba(0, 0, 0, 0.05);
  }
}
.sect2 .note {
  font-weight: 400;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect2 .note {
    margin-top: 3rem;
    line-height: 1.786;
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect2 .note {
    margin-top: 5.7rem;
    line-height: 1.783;
    font-size: 2.3rem;
  }
}
.sect2 .name {
  display: flex;
  flex-direction: column;
  letter-spacing: 0.025em;
  line-height: 1;
  font-weight: 400;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect2 .name {
    row-gap: 0.7rem;
    margin-top: 2rem;
    font-size: 2.9rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect2 .name {
    row-gap: 1.2rem;
    margin-top: 2.9rem;
    font-size: 4.7rem;
  }
}
.sect2 .name strong {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}
.sect2 .name small {
  font-weight: 400;
  font-family: "Outfit", sans-serif;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect2 .name small {
    font-size: 0.449em;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect2 .name small {
    font-size: 0.447em;
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect2 .caption {
    grid-column: 2/3;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect2 .caption {
    grid-row: 1/2;
    justify-self: center;
    position: relative;
    width: 52rem;
  }
}
.sect2 .copy {
  letter-spacing: 0.025em;
  font-weight: 550;
  font-family: "Noto Serif JP", serif;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect2 .copy {
    position: relative;
    padding: 3.2rem 0;
    line-height: 1.552;
    font-size: 2.9rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect2 .copy {
    padding: 3.2rem 0 6.2rem;
    line-height: 1.62;
    font-size: 4.2rem;
  }
}
.sect2 .text {
  font-weight: 400;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect2 .text {
    position: relative;
    letter-spacing: -0.02em;
    line-height: 2.063;
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect2 .text {
    line-height: 2.077;
    font-size: 2.6rem;
  }
}
.sect2 .scroll {
  position: relative;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect2 .scroll {
    grid-column: 1/3;
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect2 .pagetop {
    display: none;
  }
}

.sect3 {
  background-color: #031e40;
  color: #fff;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect3 {
    background-image: url(../img/sect3_bg_pc.webp);
    padding: 0 24rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect3 .inner {
    position: relative;
    height: 100%;
    overflow-y: scroll;
    scrollbar-width: none;
  }
  .sect3 .inner::-webkit-scrollbar {
    display: none;
  }
}
.sect3 .block {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect3 .block {
    row-gap: 3.5rem;
    max-width: 760px;
    padding: 19rem 0 15.5rem;
  }
}
@media screen and (min-width: 769px) and (max-height: 90vw) and (max-height: 64vw) {
  .sect3 .block {
    padding-top: 15rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect3 .block {
    align-items: center;
    position: relative;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/sect3_bg_sp.webp);
    min-height: 100%;
    padding: 13.3rem 0 12.5rem;
  }
}
.sect3 .caption {
  display: flex;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect3 .caption {
    flex-shrink: 0;
    align-items: flex-end;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect3 .caption {
    flex-direction: column;
    width: 52rem;
  }
}
.sect3 .title {
  font-weight: 450;
  font-family: "Noto Serif JP", serif;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect3 .title {
    flex-shrink: 0;
    width: 46rem;
    line-height: 1.608;
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect3 .title {
    padding-top: 3.2rem;
    line-height: 1.62;
    font-size: 4.2rem;
    white-space: nowrap;
  }
}
.sect3 .lead {
  font-weight: 300;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect3 .lead {
    width: 100%;
    line-height: 1.813;
    font-size: 1.6rem;
    white-space: nowrap;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect3 .lead {
    padding-top: 4.2rem;
    line-height: 2.077;
    font-size: 2.6rem;
  }
}
.sect3 .anchors {
  color: #fff;
  overflow: hidden;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect3 .anchors {
    display: flex;
    flex-shrink: 0;
    justify-content: space-between;
    background: #021f40;
    border-radius: 2.8rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect3 .anchors {
    display: grid;
    grid-template-columns: 1fr 1fr 20rem;
    gap: 0.6rem 0.8rem;
    width: 55rem;
    padding-top: 7.4rem;
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect3 .anchors > li {
    height: 6rem;
  }
}
.sect3 .anchor {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  letter-spacing: 0.025em;
  font-weight: 400;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease-out;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect3 .anchor {
    border-radius: 2.8rem;
    padding: 0 2.8rem;
    line-height: 1.286;
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect3 .anchor {
    background: #082d59;
    border-radius: 2rem;
    height: 15.5rem;
    line-height: 1.44;
    font-size: 2.5rem;
  }
}
.sect3 .anchor:hover {
  opacity: 0.5;
}
.sect3 .anchor > * {
  pointer-events: none;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect3 .anchor.is-current {
    background: #ccd7e2;
    color: #2b2a2a;
  }
}
.sect3 .list {
  position: relative;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect3 .list {
    width: calc(100% + 4rem);
    height: calc(100vh - 70rem);
    min-height: 30rem;
    margin-left: -4rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect3 .list {
    width: 52rem;
    margin-top: 11.6rem;
    pointer-events: none;
  }
}
.sect3 .list > div {
  max-height: 100%;
  overflow: hidden;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect3 .list > div {
    padding-left: 4rem;
  }
}
.sect3 .list .swiper-scrollbar {
  background: rgba(255, 255, 255, 0.2);
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect3 .list .swiper-scrollbar {
    width: 9px;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect3 .list .swiper-scrollbar {
    display: none;
  }
}
.sect3 .list .swiper-scrollbar .swiper-scrollbar-drag {
  background: #fff;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect3 .list .swiper-scrollbar .swiper-scrollbar-drag {
    clip-path: inset(2px 2px 2px 2px round 9px);
  }
}
.sect3 .item {
  display: grid;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect3 .item {
    grid-template-columns: 14.3rem 1fr;
    column-gap: 7rem;
    margin-bottom: 11.5rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect3 .item {
    row-gap: 4rem;
    scroll-margin-top: 2rem;
    margin-bottom: 15rem;
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect3 .item:last-of-type {
    margin-bottom: max(30rem - 18.605vh, 100vh - 70rem - 18.605vh);
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect3 .item:last-of-type {
    margin-bottom: 0;
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect3 .item .thumbnail {
    grid-column: 1/2;
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect3 .item .thumbnail img {
    border-radius: 1.2rem;
    box-shadow: -4rem 4rem 0.24rem rgba(0, 0, 0, 0.2);
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect3 .item .thumbnail img {
    border-radius: 2.3rem;
    box-shadow: -5.7rem 5.7rem 0.46rem rgba(0, 0, 0, 0.2);
  }
}
.sect3 .item .thumbnail figcaption {
  font-weight: 300;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect3 .item .thumbnail figcaption {
    padding-top: 2.3rem;
    letter-spacing: -0.01em;
    line-height: 1.25;
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect3 .item .thumbnail figcaption {
    padding-top: 3.5rem;
    line-height: 1;
    font-size: 2.6rem;
  }
}
.sect3 .item .detail {
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect3 .item .detail {
    grid-column: 2/3;
    row-gap: 3rem;
    padding: 0 8rem 0 0;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect3 .item .detail {
    grid-row: 1/2;
    row-gap: 4rem;
  }
}
.sect3 .item .detail dt {
  letter-spacing: 0.05em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect3 .item .detail dt {
    line-height: 1.552;
    font-size: 2.9rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect3 .item .detail dt {
    line-height: 1.62;
    font-size: 4.2rem;
  }
}
.sect3 .item .detail dd {
  font-weight: 300;
  text-align: justify;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect3 .item .detail dd {
    line-height: 2.063;
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect3 .item .detail dd {
    line-height: 2.077;
    font-size: 2.6rem;
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect3 .scroll {
    bottom: 4rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect3 .scroll {
    position: relative;
    margin-top: 14.7rem;
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect3 .pagetop {
    display: none;
  }
}

.sect4 {
  background-color: #e4eaef;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 {
    background-image: url(../img/sect4_bg_pc.webp);
    background-position: left top;
    background-size: 100% auto;
    color: #fff;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 {
    background-image: url(../img/sect4_bg_sp.webp);
  }
}
.sect4 .inner {
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .inner {
    padding: 0 24rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .inner {
    position: relative;
    padding: 20.8rem 0 0;
  }
}
.sect4 .inner::-webkit-scrollbar {
  display: none;
}
.sect4 .bg {
  position: absolute;
  background: #e4eaef;
  width: 100%;
  inset: auto 0 0 0;
  pointer-events: none;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .bg {
    height: 34.03%;
    inset: auto 0 0 0;
  }
}
@media screen and (min-width: 769px) and (max-height: 90vw) and (min-height: 65vw) {
  .sect4 .bg {
    height: 34.03% !important;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .bg {
    display: none;
    height: 100vh;
    inset: 45.9rem 0 auto 0;
  }
}
.sect4 .block {
  display: grid;
  min-height: 100%;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .block {
    align-content: center;
    grid-template-rows: min-content min-content min-content;
    gap: 4.2rem 0;
    max-width: 800px;
    height: 100%;
    margin: 0 auto;
    padding: 23rem 0 10rem;
  }
}
@media screen and (min-width: 769px) and (max-height: 90vw) and (max-height: 64vw) {
  .sect4 .block {
    padding-top: 16rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .block {
    row-gap: 2.5rem;
    position: relative;
    background: linear-gradient(to bottom, rgba(228, 234, 239, 0) 45.9rem, #e4eaef 45.9rem, #e4eaef 100%);
    margin: 0 auto 0 0;
    padding: 0 0 13.3rem;
  }
}
.sect4 .breadcrumb {
  width: 52rem;
  margin: 0 auto;
  color: #fff;
}
.sect4 .anchors {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .anchors {
    padding: 0 2rem 3rem 0;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .anchors {
    width: 52rem;
    margin: 0 auto;
    padding: 0 0 4.9rem;
    color: #fff;
  }
}
.sect4 .anchors::before {
  content: "";
  position: absolute;
  background: #fff;
  inset: auto 0 0 0;
  pointer-events: none;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .anchors::before {
    clip-path: polygon(0 calc(100% - 1px), calc(100% - 1.5rem) calc(100% - 1px), calc(100% - 1.5rem) 0, 100% 100%, 0 100%);
    height: calc(1px + 0.7rem);
    right: 2rem;
    bottom: 4.25rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .anchors::before {
    clip-path: polygon(0 calc(100% - 1px), calc(100% - 2.9rem) calc(100% - 1px), calc(100% - 2.9rem) 0, 100% 100%, 0 100%);
    height: calc(1px + 1.5rem);
    bottom: 6.15rem;
  }
}
.sect4 .anchors > li {
  display: flex;
  align-items: flex-end;
  position: relative;
}
.sect4 .anchors > li:nth-of-type(1) .anchor {
  align-items: flex-start;
}
.sect4 .anchor {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .anchor {
    justify-content: space-between;
    height: 100%;
  }
}
.sect4 .anchor:hover h3, .sect4 .anchor:hover p {
  opacity: 0.5;
}
.sect4 .anchor > * {
  pointer-events: none;
}
.sect4 .anchor h3 {
  letter-spacing: 0.025em;
  font-weight: 200;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  transition: opacity 0.3s ease-out;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .anchor h3 {
    line-height: 1.8;
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .anchor h3 {
    line-height: 1.154;
    font-size: 2.6rem;
  }
}
.sect4 .anchor p {
  line-height: 1;
  transition: opacity 0.3s ease-out;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .anchor p {
    display: flex;
    align-items: baseline;
    padding-bottom: 1.2rem;
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .anchor p {
    margin-top: auto;
    padding-top: 1.1rem;
    font-size: 2.3rem;
  }
}
.sect4 .anchor p em {
  margin-right: 0.15em;
  letter-spacing: 0.025em;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  font-style: normal;
}
.sect4 .anchor p small {
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .anchor p small {
    font-size: 0.786em;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .anchor p small {
    font-size: 0.827em;
  }
}
.sect4 .anchor span {
  display: block;
  position: relative;
  background: #56616d;
  border-radius: 50%;
  fill: #fff;
  width: 2.6rem;
  height: 2.6rem;
  transform: rotate(90deg);
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .anchor span {
    margin-top: auto;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .anchor span {
    margin-top: 1.4rem;
  }
}
.sect4 .anchor span::after {
  content: "";
  position: absolute;
  border: 1px solid;
  border-radius: 50%;
  inset: 0;
}
.sect4 .anchor.is-current h3 {
  font-weight: 700;
}
.sect4 .anchor.is-current p em {
  font-weight: 500;
}
.sect4 .anchor.is-current p small {
  font-weight: 600;
}
.sect4 .anchor.is-current span {
  background: #fff;
  fill: #2b2a2a;
  transform: rotate(180deg);
}
.sect4 .list {
  position: relative;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .list {
    display: grid;
    align-content: flex-end;
    padding-right: 2rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .list {
    background: #e4eaef;
    height: 114rem;
    padding: 6rem 6rem 0;
  }
}
.sect4 .list > div {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .list > div {
    scroll-margin-top: 12.5rem;
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .list .swiper-scrollbar {
    background: #b4b4b5;
    border-radius: 9px;
    height: 9px;
    left: 0;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .list .swiper-scrollbar {
    background: rgba(180, 180, 181, 0.2);
    border-radius: 1.4rem;
    width: 1.4rem;
    height: calc(100% - 6rem);
    right: 6rem;
    top: 6rem;
  }
}
.sect4 .list .swiper-scrollbar .swiper-scrollbar-drag {
  background: #2b2a2a;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .list .swiper-scrollbar .swiper-scrollbar-drag {
    clip-path: inset(2px 2px 2px 2px round 9px);
    height: 100%;
    top: 0;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .list .swiper-scrollbar .swiper-scrollbar-drag {
    clip-path: inset(2px 2px 2px 2px round 1.4rem);
  }
}
.sect4 .next {
  position: absolute;
  background: #fff;
  fill: #2b2a2a;
  border-radius: 50%;
  transition: opacity 0.3s ease-out;
  cursor: pointer;
  z-index: 2;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .next {
    width: 4rem;
    height: 4rem;
    right: 0;
    top: 30rem;
    box-shadow: -0.4rem 0.4rem 0.2rem rgba(0, 0, 0, 0.2);
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .next {
    display: none;
  }
}
.sect4 .next:hover {
  opacity: 0.5;
}
.sect4 .next svg {
  rotate: 90deg;
  pointer-events: none;
}
.sect4 .next.is-disabled {
  opacity: 0;
  pointer-events: none;
}
.sect4 .items {
  display: flex;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .items {
    width: 572rem;
    padding-bottom: 2.5rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .items {
    flex-direction: column;
    height: 732.4rem;
  }
}
.sect4 .items .item:nth-of-type(1) {
  flex-shrink: 0;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .items .item:nth-of-type(1) {
    width: 101.3rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .items .item:nth-of-type(1) {
    height: 136.9rem;
  }
}
.sect4 .items .item:nth-of-type(2) {
  flex-shrink: 0;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .items .item:nth-of-type(2) {
    width: 69.2rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .items .item:nth-of-type(2) {
    height: 110.1rem;
  }
}
.sect4 .items .item:nth-of-type(3) {
  flex-shrink: 0;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .items .item:nth-of-type(3) {
    width: 79.7rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .items .item:nth-of-type(3) {
    height: 110.6rem;
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .items .item:nth-of-type(4) {
    width: 321.8rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .items .item:nth-of-type(4) {
    height: 374.8rem;
  }
}
.sect4 .item {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .item {
    scroll-margin-top: 12.5rem;
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .item.latest .timeline::before {
    right: 0;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .item.latest .timeline::before {
    bottom: 0;
  }
}
.sect4 .summary {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .summary {
    gap: 0.2rem 2rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .summary {
    flex-direction: column;
    padding: 0.7rem 1.8rem 0;
  }
}
.sect4 .summary h3 {
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .summary h3 {
    font-size: 4.2rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .summary h3 {
    font-size: 5.8rem;
  }
}
.sect4 .summary p {
  font-weight: 400;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .summary p {
    line-height: 1.625;
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .summary p {
    order: 5;
    width: 53rem;
    padding-top: 0.8rem;
    letter-spacing: -0.03em;
    line-height: 1.539;
    font-size: 2.6rem;
  }
}
.sect4 .summary h4 {
  display: flex;
  align-items: baseline;
  width: 100%;
  line-height: 1;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .summary h4 {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .summary h4 {
    padding-top: 1.4rem;
    font-size: 2.5rem;
  }
}
.sect4 .summary h4 span {
  margin-right: 0.15em;
  letter-spacing: 0.025em;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
}
.sect4 .summary h4 small {
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .summary h4 small {
    font-size: 0.612em;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .summary h4 small {
    font-size: 0.64em;
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .summary + .timeline {
    margin-top: 4rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .summary + .timeline {
    margin-top: 4.5rem;
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .summary + .index {
    margin-top: 2.3rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .summary + .index {
    margin-top: 4.6rem;
  }
}
.sect4 .index {
  display: flex;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .index {
    align-items: flex-end;
    height: 5.2rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .index {
    padding: 0 1.8rem;
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .index + .timeline {
    margin-top: 3.3rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .index + .timeline {
    margin-top: 3.4rem;
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .index + .timeline::before {
    top: calc(-2.4rem - 1px);
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .index + .timeline .headline::before {
    top: calc(-2.5rem - 1px);
  }
}
.sect4 .timeline {
  display: flex;
  position: relative;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .timeline {
    column-gap: 5.5rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .timeline {
    flex-direction: column;
    row-gap: 5.1rem;
    padding-left: 6.8rem;
  }
}
.sect4 .timeline::before {
  content: "";
  position: absolute;
  pointer-events: none;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .timeline::before {
    background: #fff;
    clip-path: polygon(0 calc(100% - 1px), calc(100% - 1.5rem) calc(100% - 1px), calc(100% - 1.5rem) 0, 100% 100%, 0 100%);
    height: calc(1px + 0.7rem);
    left: 0.4rem;
    right: 1rem;
    top: calc(4.4rem - 1px);
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .timeline::before {
    background: #2b2a2a;
    clip-path: polygon(calc(100% - 1px) 0, 100% 0, 100% 100%, 0 calc(100% - 2rem), calc(100% - 1px) calc(100% - 2rem));
    width: calc(1px + 1rem);
    left: 1.3rem;
    top: 3.6rem;
    bottom: 1.4rem;
  }
}
.sect4 .detail {
  position: relative;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .detail .text {
    width: 26rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .detail .text {
    width: 47rem;
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .detail .text.full {
    width: auto;
  }
}
.sect4 .headlines {
  display: flex;
  align-items: baseline;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .headlines {
    column-gap: 3.5rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .headlines {
    flex-direction: column;
    row-gap: 1.7rem;
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .headlines + .text {
    padding-top: 3.8rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .headlines + .text {
    padding-top: 0.7rem;
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .headlines + .images {
    padding-top: 3.6rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .headlines + .images {
    padding-top: 1.3rem;
  }
}
.sect4 .headline {
  display: flex;
  align-items: baseline;
  position: relative;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .headline {
    column-gap: 1rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .headline {
    column-gap: 2.2rem;
  }
}
.sect4 .headline::before {
  content: "";
  aspect-ratio: 1/1;
  position: absolute;
  border-radius: 50%;
  translate: 0 50%;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .headline::before {
    background: #fff;
    width: 0.8rem;
    left: 0;
    top: calc(4.3rem - 1px);
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .headline::before {
    background: #2b2a2a;
    width: 1.1rem;
    left: -4.95rem;
    top: calc(2.7rem - 1px);
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .headline.w1 {
    width: 28rem;
  }
}
.sect4 .headline h4 {
  display: flex;
  align-items: baseline;
  line-height: 1;
  font-weight: 400;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .headline h4 {
    font-size: 3.4rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .headline h4 {
    font-size: 4.8rem;
  }
}
.sect4 .headline h4 span {
  letter-spacing: 0.05em;
  font-family: "Cinzel", serif;
}
.sect4 .headline h4 small {
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .headline h4 small {
    font-size: 0.589em;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .headline h4 small {
    font-size: 0.584em;
  }
}
.sect4 .headline p {
  line-height: 1;
  font-weight: 400;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .headline p {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .headline p {
    font-size: 2.2rem;
  }
}
.sect4 .text {
  letter-spacing: 0.025em;
  font-weight: 450;
  font-family: "Noto Serif JP", serif;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .text {
    line-height: 1.445;
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .text {
    line-height: 1.4;
    font-size: 3rem;
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .text + .images {
    padding-top: 1.5rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .text + .images {
    padding-top: 2.1rem;
  }
}
.sect4 .images {
  display: flex;
  flex-wrap: wrap;
  color: #2b2a2a;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .images {
    gap: 0.6rem;
    max-width: 30rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .images {
    gap: 0.8rem;
    max-width: 33rem;
    padding-bottom: 2rem;
  }
  .sect4 .images:has(figcaption) {
    padding-bottom: 0;
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .images.wide {
    column-gap: 5.6rem;
    max-width: none;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .images.wide {
    gap: 5rem;
    padding-top: 3rem;
  }
}
.sect4 .images figure {
  position: relative;
  overflow: hidden;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .images figure {
    border-radius: 0.5rem;
    max-width: 25.9rem;
    box-shadow: -2.5rem 2.5rem 0.15rem rgba(0, 0, 0, 0.05);
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .images figure {
    border-radius: 0.6rem;
    max-width: 23.5rem;
    box-shadow: -3.1rem 3.1rem 0.2rem rgba(0, 0, 0, 0.05);
  }
}
.sect4 .images figure:has(figcaption) {
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .images figure:has(figcaption) img {
    border-radius: 0.5rem;
    box-shadow: -2.5rem 2.5rem 0.15rem rgba(0, 0, 0, 0.05);
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .images figure:has(figcaption) img {
    border-radius: 0.6rem;
    box-shadow: -3.1rem 3.1rem 0.2rem rgba(0, 0, 0, 0.05);
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .images figure.h1 {
    height: 6rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .images figure.h1 {
    height: 7.4rem;
    max-width: none;
  }
}
.sect4 .images figure img {
  position: relative;
  z-index: 3;
}
.sect4 .images figure figcaption {
  font-weight: 400;
  white-space: nowrap;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .images figure figcaption {
    padding-top: 1.5rem;
    line-height: 1.625;
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .images figure figcaption {
    padding-top: 1.1rem;
    line-height: 1.539;
    font-size: 2.6rem;
  }
}
.sect4 .last {
  display: grid;
  align-items: flex-end;
  position: relative;
  color: #2b2a2a;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .last {
    grid-template-columns: max-content 9.7rem;
    grid-template-rows: 4.6rem 2.4rem;
    gap: 0.2rem 3rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .last {
    padding-top: 4.7rem;
  }
}
.sect4 .last h3 {
  font-weight: 200;
  font-family: "Noto Serif JP", serif;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .last h3 {
    grid-column: 1/2;
    grid-row: 1/3;
    line-height: 1.556;
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .last h3 {
    line-height: 1.608;
    font-size: 2.8rem;
    text-align: center;
  }
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .last figure {
    grid-column: 2/3;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .last figure {
    justify-self: center;
    width: 14.6rem;
    padding-top: 2.9rem;
  }
}
.sect4 .last p {
  font-weight: 200;
  font-family: "Noto Serif JP", serif;
}
@media (min-width: 769px) and (max-height: 90vw) {
  .sect4 .last p {
    grid-column: 2/3;
    line-height: 1.715;
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) or (min-height: 90vw) {
  .sect4 .last p {
    padding-top: 1.7rem;
    line-height: 1;
    font-size: 2.1rem;
    text-align: center;
  }
}
.sect4 .pagetop {
  z-index: 2;
}