@charset "UTF-8";
html {
  font-size: 10px;
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
  html {
    font-size: 0.909vw;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 2.667vw;
  }
}
body {
  color: #333;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
}

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

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

img {
  width: 100%;
  height: auto;
}

.page-head {
  position: relative;
  height: 42.6rem;
  margin-top: 7.1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .page-head {
    height: 28rem;
    margin-top: 16vw;
  }
}

.page-head__title {
  position: relative;
  z-index: 3;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: 4.055rem;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 767px) {
  .page-head__title {
    font-size: 2.8rem;
  }
}

.breadcrumb {
  padding: 1.2rem 0;
  background: #fff;
}

@media (max-width: 767px) {
  .events .breadcrumb .inner, .media-list .breadcrumb .inner, .news-archive .breadcrumb .inner, .results .breadcrumb .inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  min-width: 0;
  overflow: hidden;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem 1.1rem;
}
@media (max-width: 767px) {
  .breadcrumb__list {
    gap: 0.5rem 0.8rem;
  }
}

.breadcrumb__item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #333;
  flex-shrink: 0;
  max-width: 100%;
  line-height: 1.6;
}
.breadcrumb__item a {
  color: #333;
}
.breadcrumb__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #555;
  border-right: 1px solid #555;
  transform: rotate(45deg);
  margin-left: 1.1rem;
  margin-right: 0.1rem;
  vertical-align: middle;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .breadcrumb__item:not(:last-child)::after {
    margin-left: 0.8rem;
    margin-right: 0;
  }
}

.breadcrumb__link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #333;
  transition: opacity 0.3s;
  overflow-wrap: break-word;
  word-break: break-all;
}
.breadcrumb__link:hover {
  opacity: 0.7;
}

.breadcrumb__separator {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #555;
  border-right: 1px solid #555;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.breadcrumb__current {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #333;
  overflow-wrap: break-word;
  word-break: break-all;
}

.wrap {
  overflow: hidden;
}

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
}

.header__inner {
  padding-left: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  transition: opacity 0.3s ease;
  width: 11rem;
  display: inline-block;
}
.header__logo:hover {
  opacity: 0.7;
}

.header__nav-list {
  display: flex;
  gap: 4.8rem;
  align-items: center;
}

.header__nav-link {
  color: #333;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  width: 100%;
  height: 100%;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: #333;
  transition: width 0.3s ease;
}
.header__nav-link:hover::after {
  width: 100%;
}

.header__nav-item--contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15.7rem;
  height: 7.1rem;
  color: #FFF;
  font-family: "Zen Old Mincho";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.07rem;
  border: 2px solid #091359;
  background: #FFF;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.13);
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}
.header__nav-item--contact a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(58deg, #091359 36.56%, #46599F 90.47%);
  z-index: -1;
  transition: opacity 0.3s ease;
}
.header__nav-item--contact a:hover {
  color: #091359;
}
.header__nav-item--contact a:hover::before {
  opacity: 0;
}

.sp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #FFF;
}

.sp-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5.3vw;
  height: 16vw;
}

.sp-header__logo {
  width: 24vw;
}
.sp-header__logo img {
  width: 100%;
  height: auto;
}

.sp-header__hamburger {
  width: 8vw;
  height: 8vw;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.sp-header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  position: absolute;
  left: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.sp-header__hamburger span:nth-child(1) {
  top: 15%;
}
.sp-header__hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.sp-header__hamburger span:nth-child(3) {
  bottom: 15%;
}
.sp-header__hamburger.is-open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.sp-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.sp-header__hamburger.is-open span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.sp-header__nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #FFF;
  padding-top: 20vw;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 999;
}
.sp-header__nav.is-open {
  transform: translateX(0);
}

.sp-header__nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8vw;
}

.sp-header__nav-item {
  width: 100%;
  text-align: center;
}

.sp-header__nav-link {
  color: #333;
  font-size: 4vw;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.sp-header__nav-item--contact {
  margin-top: 4vw;
}
.sp-header__nav-item--contact .sp-header__nav-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60vw;
  height: 14vw;
  color: #FFF;
  font-family: "Zen Old Mincho";
  font-size: 4vw;
  font-weight: 600;
  letter-spacing: 0.07rem;
  border: 2px solid #091359;
  background: linear-gradient(58deg, #091359 36.56%, #46599F 90.47%);
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.13);
}

.fv {
  height: 100vh;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 767px) {
  .fv {
    margin-top: 0;
  }
}

.fv__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.fv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  background: url(../img/fv_bg.webp) no-repeat center center/cover;
  z-index: 0;
  will-change: transform;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
}

.fv__catch {
  font-family: "Zen Old Mincho";
  font-size: 2.9317rem;
  font-weight: 700;
  line-height: 4.664rem; /* 159.091% */
  letter-spacing: 0.4104rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .fv__catch {
    font-size: 2rem;
    line-height: 1.6;
  }
}

.fv__main-title {
  color: #A08656;
}

.fv__main-title-char {
  display: inline-block;
  position: relative;
}
.fv__main-title-char::after {
  content: "";
  position: absolute;
  width: 0.4014rem;
  height: 0.4014rem;
  aspect-ratio: 1/1;
  background-color: #A08656;
  border-radius: 50%;
  top: -0.1rem;
  left: 50%;
  transform: translateX(-50%);
}

.fv__main-title-char02 {
  font-size: 2.6647rem;
}
@media (max-width: 767px) {
  .fv__main-title-char02 {
    font-size: 1.6rem;
  }
}

.fv__img-title {
  width: 45.7rem;
  margin-left: auto;
  position: relative;
  z-index: 3;
  margin-right: auto;
}
@media (max-width: 767px) {
  .fv__img-title {
    width: 33.7rem;
  }
}

.fv__cta {
  margin-top: 4.2rem;
  width: 24rem;
  margin-left: auto;
  margin-right: auto;
}

.fv__cta-link .btn:hover {
  opacity: 0.7;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 4.8rem;
  border: 2px solid #B68C4B;
  background: linear-gradient(58deg, #091359 15.21%, #091359 43.92%, #46599F 96.37%);
  box-shadow: 4px 4px 9px 0 rgba(0, 0, 0, 0.25);
  color: #EBD195;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 100%;
  text-align: center;
  text-shadow: 0 0 4.5px #070F45;
  transition: background 0.5s ease, color 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease, text-shadow 0.5s ease;
  transition: opacity 0.5s ease;
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.5rem 0 0.5rem 0.6rem;
  border-color: transparent transparent transparent #DDBF7B;
  transform: translateY(-50%);
  transition: border-color 0.5s ease;
}
.btn:hover {
  opacity: 0.7;
}

.about {
  padding-top: 10rem;
  padding-bottom: 10rem;
  position: relative;
}
@media (max-width: 767px) {
  .about {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.about::after {
  content: "";
  position: absolute;
  background: url(../img/about_bg.webp) no-repeat center center/cover;
  width: 100%;
  height: 87.5rem;
  bottom: 0;
}

.inner {
  max-width: 114rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.lead {
  color: rgba(2, 32, 99, 0.06);
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Cormorant Garamond";
  font-size: 12.4rem;
  font-weight: 400;
  line-height: 10.4rem; /* 83.871% */
  text-align: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .lead {
    font-size: 6rem;
  }
}

.title {
  color: var(--333, #333);
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Zen Old Mincho";
  font-size: 4.2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 5.04rem */
  letter-spacing: 0.252rem;
  text-align: center;
  position: relative;
  top: -1rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .title {
    font-size: 2rem;
    top: -3.4rem;
  }
}

.about__subtext {
  color: #333;
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Noto Sans JP";
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 180%; /* 3.78rem */
  letter-spacing: 0.084rem;
  position: relative;
  z-index: 2;
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  .about__subtext {
    font-size: 1.4rem;
    margin-top: 0;
  }
}

.about__desc {
  color: #333;
  font-feature-settings: "liga" off, "clig" off;
  font-size: 1.6762rem;
  font-weight: 500;
  line-height: 180%; /* 3.0171rem */
  letter-spacing: 0.067rem;
  margin-top: 5.48rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .about__desc {
    font-size: 1.4rem;
  }
}

.about__lists {
  border: 2px solid #091359;
  background: #FFF;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
  margin-top: 0.76rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .about__lists {
    position: relative;
  }
}

.about__lists-content {
  display: flex;
  justify-content: space-between;
  padding: 4.2rem 8.6rem;
}
@media (max-width: 767px) {
  .about__lists-content {
    padding: 1rem 3rem;
    flex-direction: column;
    max-height: 12rem;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }
}
@media (max-width: 767px) {
  .about__lists-content.is-open {
    max-height: 200rem;
  }
}

.about__lists-toggle {
  display: none;
}
@media (max-width: 767px) {
  .about__lists-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1.2rem 0;
    background: none;
    border: none;
    border-top: 1px solid #ddd;
    cursor: pointer;
  }
}

.about__lists-toggle-text {
  color: #091359;
  font-size: 1.3rem;
  font-weight: 500;
  position: relative;
  padding-right: 1.6rem;
}
.about__lists-toggle-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.5rem 0.4rem 0 0.4rem;
  border-color: #091359 transparent transparent transparent;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.is-open + .about__lists-toggle .about__lists-toggle-text::after {
  transform: translateY(-50%) rotate(180deg);
}

.about__list-item {
  color: #333;
  font-feature-settings: "liga" off, "clig" off;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 180%; /* 2.52rem */
  letter-spacing: 0.056rem;
  position: relative;
}
@media (max-width: 767px) {
  .about__list-item {
    font-size: 1.3rem;
  }
}
.about__list-item::after {
  content: "";
  position: absolute;
  background: url(../img/check.webp) no-repeat center center/cover;
  top: 50%;
  transform: translateY(-50%);
  left: -1.8rem;
  width: 1rem;
  height: 1rem;
}

.strength {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media (max-width: 767px) {
  .strength {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (max-width: 767px) {
  .strength__lead {
    font-size: 5.8rem;
  }
}

.strength__items {
  margin-top: 5.3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.3rem;
}
@media (max-width: 767px) {
  .strength__items {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3rem;
    gap: 1.5rem;
  }
}

.strength__item {
  border: 0.1rem solid #EBD195;
  height: 14.7rem;
  background: url(../img/bg.webp) no-repeat center center/cover;
  position: relative;
}
@media (max-width: 767px) {
  .strength__item {
    height: 11rem;
  }
}
.strength__item::after {
  content: "";
  position: absolute;
  width: 1.7rem;
  height: 1.7rem;
  /* 直角二等辺三角形: 左下が直角 */
  clip-path: polygon(0 100%, 0 0, 100% 100%);
  background: #EBD195;
  top: 0.3rem;
  left: 0.3rem;
  transform: rotate(90deg);
}
@media (max-width: 767px) {
  .strength__item::after {
    width: 1rem;
    height: 1rem;
  }
}
.strength__item::before {
  content: "";
  position: absolute;
  width: 1.7rem;
  height: 1.7rem;
  /* 直角二等辺三角形: 左下が直角 */
  clip-path: polygon(0 100%, 0 0, 100% 100%);
  background: #EBD195;
  bottom: 0.3rem;
  left: 0.3rem;
  transform: rotate(0deg);
}
@media (max-width: 767px) {
  .strength__item::before {
    width: 1rem;
    height: 1rem;
  }
}

.strength__item-content {
  position: relative;
}
.strength__item-content::after {
  content: "";
  position: absolute;
  width: 1.7rem;
  height: 1.7rem;
  /* 直角二等辺三角形: 左下が直角 */
  clip-path: polygon(0 100%, 0 0, 100% 100%);
  background: #EBD195;
  top: 0.3rem;
  right: 0.3rem;
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .strength__item-content::after {
    width: 1rem;
    height: 1rem;
  }
}
.strength__item-content::before {
  content: "";
  position: absolute;
  width: 1.7rem;
  height: 1.7rem;
  /* 直角二等辺三角形: 左下が直角 */
  clip-path: polygon(0 100%, 0 0, 100% 100%);
  background: #EBD195;
  bottom: 2.3rem;
  right: 0.3rem;
  transform: rotate(-90deg);
}
@media (max-width: 767px) {
  .strength__item-content::before {
    bottom: -0.2rem;
    width: 1rem;
    height: 1rem;
  }
}

.strength__item-title {
  color: #FFF;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Zen Old Mincho";
  font-size: 1.9547rem;
  font-weight: 700;
  line-height: 180%; /* 3.5185rem */
  letter-spacing: 0.0782rem;
  padding-top: 2rem;
  text-align: center;
}
@media (max-width: 767px) {
  .strength__item-title {
    font-size: 1.2rem;
  }
}

.strength__item-value {
  display: block;
  font-family: "Zen Old Mincho";
  font-size: 3.9rem;
  color: #EBD195;
  position: relative;
  top: -1.8rem;
}
@media (max-width: 767px) {
  .strength__item-value {
    font-size: 2rem;
    top: -0.7rem;
  }
}
.strength__item-value span {
  display: inline-block;
  font-size: 6.1264rem;
  font-weight: 400;
  line-height: 180%; /* 11.0275rem */
  letter-spacing: 0.2451rem;
}
@media (max-width: 767px) {
  .strength__item-value span {
    font-size: 3.4rem;
  }
}

.strength__cta {
  margin-top: 8.77rem;
}
@media (max-width: 767px) {
  .strength__cta {
    margin-top: 4rem;
  }
}
.strength__cta a {
  width: 32.2rem;
  margin-left: auto;
  margin-right: auto;
}

.strength__item--btob .strength__item-title {
  padding-top: 2.6rem;
}
.strength__item--btob .strength__item-value {
  top: 1.5rem;
  font-size: 3.5rem;
}
@media (max-width: 767px) {
  .strength__item--btob .strength__item-value {
    font-size: 1.6rem;
  }
}
.strength__item--btob .strength__item-content::before {
  bottom: -3.5rem;
}

.event {
  position: relative;
  overflow: hidden;
  padding: 10rem 0;
}
@media (max-width: 767px) {
  .event {
    padding: 6rem 0;
  }
}

.event__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(57deg, #091359 45%, #304590 100%);
  z-index: 0;
}

.event__inner {
  position: relative;
  z-index: 1;
  padding-left: 2rem;
  padding-right: 2rem;
}

.event__header {
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .event__header {
    margin-bottom: 0;
  }
}

.event__title--serif {
  font-family: "Noto Serif JP";
  font-weight: 400;
  font-size: 4rem;
  letter-spacing: 0.2rem;
}
@media (max-width: 767px) {
  .event__title--serif {
    font-size: 2rem;
    position: relative;
    top: -3.4rem;
  }
}

.lead--white {
  color: rgba(255, 255, 255, 0.1);
}

.title--white {
  color: #fff;
}

.event__subtext {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 160%;
  text-align: center;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4.2rem;
}
@media (max-width: 767px) {
  .event__subtext {
    font-size: 1.4rem;
    margin-top: 0rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.event__block {
  margin-top: 8rem;
  border: 2px solid;
  border-image: linear-gradient(183deg, #B68C4B 0%, #D1AF64 18%, #EBD195 60%) 1;
  border-radius: 0;
  position: relative;
  max-width: 136rem;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
}
@media (max-width: 767px) {
  .event__block {
    margin-top: 3rem;
    max-width: 100%;
  }
}

.event__block-inner {
  margin: 1.3rem;
  padding: 5rem 3.2rem;
  background: #fff;
}
@media (max-width: 767px) {
  .event__block-inner {
    padding: 2rem 1.5rem;
    margin: 0.8rem;
  }
}

.event__block-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.event__block-heading-line {
  display: block;
  width: 2.7rem;
  height: 1px;
  background: #323232;
}
@media (max-width: 767px) {
  .event__block-heading-line {
    width: 1.7rem;
  }
}

.event__block-heading-text {
  font-family: "Zen Old Mincho";
  font-size: 3.2rem;
  font-weight: 500;
  color: #091359;
  background: linear-gradient(90deg, #091359 0%, #304590 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .event__block-heading-text {
    font-size: 1.8rem;
  }
}

.event__block-desc {
  font-family: "Noto Sans JP";
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 150%;
  color: #333;
  text-align: center;
  margin-top: 4.4rem;
}
@media (max-width: 767px) {
  .event__block-desc {
    font-size: 1.4rem;
    margin-top: 2rem;
  }
}

.event__block-cards {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .event__block-cards {
    flex-direction: column;
    gap: 4rem;
  }
}

.event__block-card {
  display: block;
  flex: 1;
  min-width: 0;
  background: #fff;
  overflow: hidden;
  border-radius: 0.4rem;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  padding: 3.7rem 2.6rem;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.13);
}
@media (max-width: 767px) {
  .event__block-card {
    flex: none;
    width: 100%;
    padding: 0px;
  }
}
.event__block-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px 0 rgba(0, 0, 0, 0.18);
}

.event__block-card-img {
  width: 100%;
  aspect-ratio: 370/208;
  overflow: hidden;
}
.event__block-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event__block-card-details {
  padding-top: 1.8rem;
}
@media (max-width: 767px) {
  .event__block-card-details {
    padding-top: 1rem;
    padding: 2rem;
  }
}

.event__block-card-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}

.event__block-card-category {
  color: #0C1E5E;
  font-family: "Noto Sans JP";
  font-size: 1.7344rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 1.7344rem */
  letter-spacing: 0.1388rem;
}
@media (max-width: 767px) {
  .event__block-card-category {
    font-size: 1.4rem;
  }
}

.event__block-card-divider {
  display: inline-block;
  width: 1px;
  height: 1.2em;
  background: #091359;
  flex-shrink: 0;
}

.event__block-card-date {
  color: var(--333, #333);
  font-family: "Noto Sans JP";
  font-size: 1.5031rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 1.5031rem */
  letter-spacing: 0.1203rem;
}
@media (max-width: 767px) {
  .event__block-card-date {
    font-size: 1.1rem;
  }
}

.event__block-card-text {
  color: var(--333, #333);
  font-family: "Noto Sans JP";
  font-size: 1.85rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.148rem;
  margin-top: 1.85rem;
}
@media (max-width: 767px) {
  .event__block-card-text {
    font-size: 1.3rem;
    margin-top: 0.8rem;
  }
}

.event__block-btn {
  margin-top: 6rem;
  text-align: center;
}
@media (max-width: 767px) {
  .event__block-btn {
    margin-top: 5rem;
  }
}
.event__block-btn .btn {
  width: 33rem;
  max-width: 100%;
  margin: 0 auto;
}

.btn--outline {
  background: transparent;
  border: 2px solid #091359;
  color: #091359;
  text-shadow: none;
}
.btn--outline::after {
  border-color: transparent transparent transparent #091359;
}
.btn--outline:hover {
  background: #091359;
  color: #EBD195;
  text-shadow: 0 0 4.5px #070F45;
}
.btn--outline:hover::after {
  border-color: transparent transparent transparent #EBD195;
}

.event__slider {
  margin-top: 7.5rem;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
@media (max-width: 767px) {
  .event__slider {
    margin-top: 4rem;
  }
}

.event__slider-track {
  display: flex;
  gap: 3.2rem;
  animation: scroll-left 30s linear infinite;
}

.event__slider--reverse .event__slider-track {
  animation: scroll-right 30s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.event__slider-item {
  flex-shrink: 0;
  width: 46.4rem;
  height: 32rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .event__slider-item {
    width: 28rem;
    height: 19rem;
  }
}
.event__slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event__cta {
  margin-top: 5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .event__cta {
    margin-top: 3rem;
  }
}
.event__cta .btn {
  width: 32.2rem;
  max-width: 100%;
  margin: 0 auto;
}

.news {
  padding: 10rem 0;
  background: #fff;
}
@media (max-width: 767px) {
  .news {
    padding: 6rem 0;
  }
}

.news__list {
  max-width: 100rem;
  margin: 4.4rem auto 0;
  border-top: 1px solid #ddd;
}
@media (max-width: 767px) {
  .news__list {
    margin-top: 1.5rem;
  }
}

.news__item {
  border-bottom: 1px solid #ddd;
}

.news__item-link {
  display: flex;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-right: 2.4rem;
  transition: opacity 0.3s;
  padding-left: 2.4rem;
}
@media (max-width: 767px) {
  .news__item-link {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}
.news__item-link:hover {
  opacity: 0.7;
}

.news__item-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
  width: 29.6rem;
}
@media (max-width: 767px) {
  .news__item-meta {
    width: 100%;
  }
}

.news__item-date {
  font-family: "Noto Sans JP";
  font-size: 1.6rem;
  font-weight: 400;
  color: #777;
  letter-spacing: 0.064rem;
}
@media (max-width: 767px) {
  .news__item-date {
    font-size: 1.2rem;
  }
}

.news__item-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP";
  font-size: 1.4rem;
  font-weight: 400;
  color: #034495;
  border: 1px solid #034495;
  border-radius: 1.6rem;
  padding: 0 1.2rem;
  height: 2.8rem;
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .news__item-category {
    font-size: 1.2rem;
    height: 2.4rem;
  }
}

.news__item-title {
  font-family: "Noto Sans JP";
  font-size: 1.6rem;
  font-weight: 400;
  color: #323232;
  line-height: 180%;
  flex: 1;
}
@media (max-width: 767px) {
  .news__item-title {
    font-size: 1.3rem;
  }
}

.news__item-arrow {
  flex-shrink: 0;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1.5px solid #034495;
  border-right: 1.5px solid #034495;
  transform: rotate(45deg);
  margin-left: 2rem;
}
@media (max-width: 767px) {
  .news__item-arrow {
    display: none;
  }
}

.news__cta {
  margin-top: 6.8rem;
  text-align: center;
}
@media (max-width: 767px) {
  .news__cta {
    margin-top: 4rem;
  }
}
.news__cta .btn {
  width: 28.6rem;
  margin: 0 auto;
  border: none;
}

.btn--white {
  background: #fff;
  box-shadow: inset 0 0 0 2px #091359, 4px 4px 10px 0px rgba(0, 0, 0, 0.13), 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  color: #091359;
  text-shadow: none;
}
.btn--white::after {
  border-color: transparent transparent transparent #091359;
}
.btn--white:hover {
  background: #091359;
  color: #EBD195;
  border-color: #B68C4B;
  text-shadow: 0 0 4.5px #070F45;
}
.btn--white:hover::after {
  border-color: transparent transparent transparent #EBD195;
}

.media {
  padding: 10rem 0;
  background: url(../img/media_bg.webp) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .media {
    padding: 6rem 0;
  }
}

.media__section {
  margin-top: 8.7rem;
}
@media (max-width: 767px) {
  .media__section {
    margin-top: 3rem;
  }
}

@media (max-width: 767px) {
  .media__section--media {
    margin-top: 7rem;
  }
}

.media__section-label {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  height: 5.2rem;
  background: linear-gradient(59deg, #091359 7%, #46599F 94%);
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .media__section-label {
    margin-bottom: 3rem;
  }
}
.media__section-label span {
  font-family: "Zen Old Mincho";
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.096rem;
}
@media (max-width: 767px) {
  .media__section-label span {
    font-size: 1.8rem;
  }
}

.media__book {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5.4rem;
}

.media__book-img {
  width: 32.8rem;
  box-shadow: 11px 12px 24px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
  .media__book-img {
    width: 22rem;
  }
}
.media__book-img img {
  width: 100%;
  height: auto;
  display: block;
}

.media__book-cta .btn {
  width: 30rem;
}

.media__posts {
  position: relative;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 767px) {
  .media__posts {
    padding: 0;
  }
}

.media__swiper {
  overflow: hidden;
  padding-bottom: 1rem;
}
.media__swiper .swiper-wrapper {
  align-items: stretch;
}
.media__swiper .swiper-slide {
  height: auto;
}

.media__post {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 0.73rem;
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
@media (max-width: 767px) {
  .media__post {
    padding: 2rem;
  }
}
.media__post:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px 0 rgba(0, 0, 0, 0.18);
}

.media__post-img {
  width: 100%;
  height: 16.47rem;
  flex-shrink: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .media__post-img {
    height: 12rem;
  }
}
.media__post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media__post-body {
  flex: 1;
  padding-top: 3rem;
}
@media (max-width: 767px) {
  .media__post-body {
    padding: 1.2rem 1.5rem 1.5rem;
  }
}

.media__post-meta {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.46rem;
}

.media__post-category {
  font-family: "Noto Sans JP";
  font-size: 1.37rem;
  font-weight: 400;
  color: #042062;
  letter-spacing: 0.11rem;
}

.media__post-divider {
  display: inline-block;
  width: 1px;
  height: 1.28rem;
  background: #042062;
  flex-shrink: 0;
}

.media__post-date {
  font-family: "Noto Sans JP";
  font-size: 1.19rem;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.095rem;
}

.media__post-title {
  font-family: "Noto Sans JP";
  font-size: 1.46rem;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
  letter-spacing: 0.12rem;
}

.media__swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: #0C1E5E;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}
@media (max-width: 767px) {
  .media__swiper-btn {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.media__swiper-btn span {
  display: block;
  width: 0.85rem;
  height: 0.85rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.media__swiper-btn--prev {
  left: -3.2rem;
}
@media (max-width: 767px) {
  .media__swiper-btn--prev {
    left: -1.2rem;
  }
}
.media__swiper-btn--prev span {
  transform: rotate(-135deg);
  margin-left: 0.3rem;
}
.media__swiper-btn--next {
  right: -3.2rem;
}
@media (max-width: 767px) {
  .media__swiper-btn--next {
    right: 0.5rem;
  }
}
.media__swiper-btn--next span {
  transform: rotate(45deg);
  margin-right: 0.3rem;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .media__swiper-btn--prev {
    left: -1.2rem;
  }
  .media__swiper-btn--next {
    right: -1.2rem;
  }
}
.media__cta {
  margin-top: 4rem;
  text-align: center;
}
.media__cta .btn {
  width: 30rem;
  margin: 0 auto;
}

.cta {
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}
@media (max-width: 767px) {
  .cta {
    padding: 5rem 0;
  }
}

.cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #091359 url(../img/cta_bg.webp) no-repeat center center/cover;
  z-index: 0;
}

.cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta__title {
  font-family: "Zen Old Mincho";
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.384rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .cta__title {
    font-size: 2.5rem;
    letter-spacing: 0.1rem;
  }
}

.cta__desc {
  font-family: "Noto Sans JP";
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  line-height: 200%;
  letter-spacing: 0.064rem;
  margin-top: 4.3rem;
}
@media (max-width: 767px) {
  .cta__desc {
    font-size: 1.3rem;
  }
}

.cta__buttons {
  display: flex;
  justify-content: center;
  gap: 3.9rem;
  margin-top: 3.1rem;
}
@media (max-width: 767px) {
  .cta__buttons {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}

.cta__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 29.4rem;
  padding: 1.6rem;
  font-family: "Noto Sans JP";
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08rem;
  background: linear-gradient(90deg, rgb(1, 28, 85) 0%, rgb(28, 58, 111) 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: opacity 0.3s;
}
.cta__btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(40deg, rgb(160, 134, 86) 0%, rgb(234, 219, 169) 86%);
  z-index: -1;
}
.cta__btn:hover {
  opacity: 0.8;
}

.cta__btn--primary {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}

.cta__btn-arrow {
  display: block;
  width: 0;
  height: 0;
  border-top: 0.8rem solid transparent;
  border-bottom: 0.8rem solid transparent;
  border-left: 0.88rem solid #fff;
  flex-shrink: 0;
}

.footer {
  background: #fff;
  padding: 5rem 0 3rem;
}
@media (max-width: 767px) {
  .footer {
    padding: 5rem 0 2rem;
  }
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .footer__top {
    flex-direction: column;
    gap: 5rem;
    padding-bottom: 2rem;
  }
}

.footer__logo {
  width: 11rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .footer__logo {
    width: 18rem;
  }
}
.footer__logo img {
  width: 100%;
  height: auto;
}

.footer__nav-list {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .footer__nav-list {
    gap: 1.2rem;
    justify-content: center;
  }
}

.footer__nav-item a {
  font-family: "Noto Sans JP";
  font-size: 1.4rem;
  font-weight: 400;
  color: #323232;
  transition: opacity 0.3s;
}
.footer__nav-item a:hover {
  opacity: 0.7;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .footer__bottom {
    flex-direction: column;
    gap: 4rem;
  }
}

.footer__legal {
  display: flex;
  gap: 2rem;
}
@media (max-width: 767px) {
  .footer__legal {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer__legal a {
  font-family: "Noto Sans JP";
  font-size: 1.3rem;
  font-weight: 400;
  color: #323232;
  transition: opacity 0.3s;
}
.footer__legal a:hover {
  opacity: 0.7;
}

.footer__copyright {
  font-family: "Noto Sans JP";
  font-size: 1.3rem;
  font-weight: 400;
  color: #323232;
}
@media (max-width: 767px) {
  .footer__copyright {
    font-size: 1.1rem;
  }
}

.matching {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background: #FAFAFA;
}
@media (max-width: 767px) {
  .matching {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.matching__swiper {
  margin-top: 5.4rem;
  position: relative;
  padding-bottom: 3rem;
}
@media (max-width: 767px) {
  .matching__swiper {
    margin-top: 3rem;
  }
}

.matching__swiper .swiper-slide {
  background: transparent;
}

.matching__slide {
  display: flex;
  gap: 3.9rem;
  align-items: center;
  position: relative;
  background: #FAFAFA;
}
@media (max-width: 767px) {
  .matching__slide {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .matching__slide .swiper-backface-hidden .swiper-slide {
    height: 100%;
  }
}

.matching__slide-image-wrapper {
  width: 44.3rem;
  flex-shrink: 0;
  overflow: hidden;
  background: #FAFAFA;
  border: none;
  outline: none;
  position: relative;
}
@media (max-width: 767px) {
  .matching__slide-image-wrapper {
    width: 100%;
  }
}
.matching__slide-image-wrapper img {
  display: block;
  width: 100%;
  height: 25rem;
  object-fit: cover;
  vertical-align: top;
  background: #FAFAFA;
  transition: opacity 0.4s ease;
}
@media (max-width: 767px) {
  .matching__slide-image-wrapper img {
    height: 18rem;
  }
}
.matching__slide-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6rem;
  height: 6rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  pointer-events: none;
  transition: background 0.4s ease;
}
.matching__slide-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 1rem 0 1rem 1.8rem;
  border-color: transparent transparent transparent #fff;
}
@media (max-width: 767px) {
  .matching__slide-play {
    width: 5rem;
    height: 5rem;
  }
  .matching__slide-play::after {
    border-width: 0.8rem 0 0.8rem 1.4rem;
  }
}
.matching__slide:hover .matching__slide-image-wrapper img {
  opacity: 0.7;
}
.matching__slide:hover .matching__slide-image-wrapper .matching__slide-play {
  background: rgba(0, 0, 0, 0.7);
}

@media (max-width: 767px) {
  .matching__slide-content {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}

.matching__slide-title {
  color: #333;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Zen Old Mincho";
  font-size: 2.38rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 3.57rem */
  letter-spacing: 0.0952rem;
}
@media (max-width: 767px) {
  .matching__slide-title {
    font-size: 1.8rem;
  }
}

.matching__slide-text {
  color: #333;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Noto Sans JP";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 2.88rem */
  letter-spacing: 0.064rem;
  margin-top: 1.8rem;
}
@media (max-width: 767px) {
  .matching__slide-text {
    font-size: 1.4rem;
  }
}

.matching__body {
  position: relative;
}
@media (max-width: 1263px) {
  .matching__body, .matching__results-voice-swiper-wrap {
    max-width: 95rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.matching__button-prev,
.matching__button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
}
.matching__button-prev img,
.matching__button-next img {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
}
@media (max-width: 767px) {
  .matching__button-prev img,
  .matching__button-next img {
    width: 3rem;
    height: 3rem;
  }
}

.matching__button-prev {
  left: -6.1rem;
}
@media (max-width: 767px) {
  .matching__button-prev {
    left: -1rem;
  }
}
.matching__button-next {
  right: -6.1rem;
}
.matching__button-next img {
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .matching__button-next {
    right: -1rem;
  }
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 0px;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0.8rem;
}

.swiper-pagination-bullet-active {
  background: #0C1E5E;
}

.matching__achievement-block {
  margin-top: 10rem;
}
@media (max-width: 767px) {
  .matching__achievement-block {
    margin-top: 7rem;
  }
}

.matching__achievement {
  color: var(--333, #333);
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Zen Old Mincho";
  font-size: 4.2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 5.88rem */
  letter-spacing: 0.252rem;
  position: relative;
}
@media (max-width: 767px) {
  .matching__achievement {
    font-size: 3rem;
  }
}
.matching__achievement::after {
  content: "";
  position: absolute;
  background: url(../img/title_bg.webp) no-repeat center center/cover;
  width: 40.96rem;
  height: 2rem;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
@media (max-width: 767px) {
  .matching__achievement::after {
    width: 26.6rem;
    height: 1.3rem;
  }
}

.matching__results {
  margin-top: 6.5rem;
}
@media (max-width: 767px) {
  .matching__results {
    margin-top: 3rem;
    padding-bottom: 4rem;
    overflow: hidden;
  }
}

@media (min-width: 768px) {
  .matching__results-swiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.49rem 3.4rem;
    transform: none !important;
    width: 100%;
    align-items: stretch;
  }
  .matching__results-swiper .swiper-slide {
    width: auto !important;
    height: auto;
    display: flex;
  }
  .matching__results-swiper .matching__result-card {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .matching__results-swiper .matching__result-card-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .matching__results-swiper .matching__result-card-imgs {
    flex: 1;
    min-height: 16rem;
    display: flex;
  }
  .matching__results-swiper .matching__result-card-imgs img {
    width: 100%;
    object-fit: cover;
    object-position: top;
  }
}
@media (max-width: 767px) {
  .matching__results-swiper .swiper-slide {
    height: auto;
    min-height: 42rem;
    display: flex;
  }
  .matching__results-swiper .matching__result-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .matching__results-swiper .matching__result-card-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .matching__results-swiper .matching__result-card-imgs {
    flex: 1;
    min-height: 12rem;
    display: flex;
  }
  .matching__results-swiper .matching__result-card-imgs img {
    width: 100%;
    object-fit: cover;
    object-position: top;
  }
}
.matching__results-pagination {
  margin-top: 2rem;
}

.matching__result-card {
  padding: 2.29rem;
  border: 1.5px solid #0C1E5E;
  height: 100%;
}
@media (max-width: 767px) {
  .matching__result-card {
    padding: 1.5rem;
  }
}

.matching__result-card-person {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
@media (max-width: 767px) {
  .matching__result-card-person {
    flex-direction: column;
  }
}

.matching__result-card-avatar {
  width: 10.2rem;
}
@media (max-width: 767px) {
  .matching__result-card-avatar {
    width: 9rem;
  }
}

.matching__result-card-name {
  color: #333;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Zen Old Mincho";
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 1.96rem */
}
.matching__result-card-name span {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .matching__result-card-name span {
    font-size: 1.3rem;
  }
}

.matching__result-card-job {
  color: #091359;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Zen Old Mincho";
  font-size: 2.1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 2.94rem */
  margin-top: 0.32rem;
}
@media (max-width: 767px) {
  .matching__result-card-job {
    font-size: 1.6rem;
  }
}

.matching__result-card-title {
  color: #333;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Zen Old Mincho";
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 3.08rem */
  text-align: center;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .matching__result-card-title {
    font-size: 1.8rem;
  }
}
.matching__result-card-title span {
  font-size: 3.4rem;
  color: #0C1E5E;
}
@media (max-width: 767px) {
  .matching__result-card-title span {
    font-size: 2.2rem;
  }
}

.matching__result-card-imgs {
  margin-top: 1.1rem;
  cursor: pointer;
}

.matching__img-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.matching__img-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.matching__img-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.matching__img-lightbox-inner {
  position: relative;
  max-width: 98vw;
  max-height: 96vh;
  z-index: 1;
}

.matching__img-lightbox-img {
  display: block;
  max-width: 98vw;
  max-height: 96vh;
  min-width: 60vw;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  pointer-events: none;
}

.matching__img-lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.2s;
}
.matching__img-lightbox-close:hover {
  opacity: 0.8;
}

.matching__results-note {
  color: #333;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Zen Old Mincho";
  font-size: 1.6135rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 2.5815rem */
  margin-top: 1.5rem;
  text-align: left;
}

.matching__results-voice-section {
  margin-top: 11.7rem;
  text-align: center;
}
@media (max-width: 767px) {
  .matching__results-voice-section {
    margin-top: 7rem;
  }
}

.matching__results-voice-swiper-wrap {
  position: relative;
  padding-bottom: 3rem;
  margin-top: 6.4rem;
}

.matching__results-swiper-sp {
  position: relative;
}

.matching__results-voice-button-prev,
.matching__results-voice-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
}
.matching__results-voice-button-prev img,
.matching__results-voice-button-next img {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
}
@media (max-width: 767px) {
  .matching__results-voice-button-prev img,
  .matching__results-voice-button-next img {
    width: 3rem;
    height: 3rem;
  }
}

.matching__results-voice-button-prev {
  left: -6.1rem;
}
@media (max-width: 767px) {
  .matching__results-voice-button-prev {
    left: -1rem;
  }
}

.matching__results-voice-button-next {
  right: -6.1rem;
}
.matching__results-voice-button-next img {
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .matching__results-voice-button-next {
    right: -1rem;
  }
}

.matching__results-voice-pagination {
  bottom: 0;
}

.matching__results-voice-cta {
  width: 32.2rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5.2rem;
}

.matching__results-voice-title {
  color: var(--333, #333);
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 3.4rem; /* 106.25% */
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .matching__results-voice-title {
    font-size: 2.6rem;
    line-height: 1.4;
  }
}
.matching__results-voice-title::after {
  content: "";
  position: absolute;
  background: url(../img/line02.webp) no-repeat center center/cover;
}

.matching__results-voice-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: relative;
}
.matching__results-voice-title-wrap::after {
  content: "";
  position: absolute;
  background: url(../img/line02.webp) no-repeat center center/cover;
  width: 51.1965rem;
  height: 2.4982rem;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1.8rem;
}
@media (max-width: 767px) {
  .matching__results-voice-title-wrap::after {
    width: 28.6rem;
    height: 1.3965rem;
    bottom: -0.3rem;
  }
}

.matching__results-voice-title-line {
  display: block;
  width: 2.7rem;
  height: 1px;
  background: #333;
  flex-shrink: 0;
}

.matching__results-voice-card {
  overflow: hidden;
}

.matching__results-voice-text {
  height: 7.261rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 1.5rem;
  color: #FFF;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Zen Old Mincho";
  font-size: 1.6135rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  background: #0C1E5E;
}
.matching__results-voice-text span {
  color: #FFF81F;
  display: block;
}

.matching__results-voice-img-wrap {
  width: 100%;
  aspect-ratio: 318/240;
  overflow: hidden;
  background: #333;
  cursor: pointer;
}
.matching__results-voice-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.media__section-label--media {
  margin-bottom: 3rem;
}

.page-head {
  height: 41.9rem;
}
@media (max-width: 767px) {
  .page-head {
    height: 25rem;
  }
}

.page-head__bg--company {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/head-company.webp) no-repeat center center/cover;
  z-index: 0;
}

@media (max-width: 767px) {
  .page-head--company {
    background: url(/img/head-company.webp) no-repeat center center/cover;
  }
}

.message {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .message {
    padding: 6rem 0;
  }
}

.message__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.message__inner {
  position: relative;
  z-index: 1;
}

.message__lead {
  color: rgba(255, 255, 255, 0.17);
}

.message__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.16rem;
  color: #fff;
  text-align: center;
  position: relative;
  top: -1.4rem;
}
@media (max-width: 767px) {
  .message__title {
    font-size: 2.8rem;
    top: -3.4rem;
  }
}

.message__content {
  display: flex;
  align-items: center;
  gap: 9.4rem;
  margin-top: 9.2rem;
}
@media (max-width: 767px) {
  .message__content {
    flex-direction: column;
    gap: 3rem;
    margin-top: 0;
  }
}

.message__img {
  width: 43.6rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .message__img {
    width: 80%;
  }
}
.message__img img {
  width: 100%;
  height: auto;
}

.message__text {
  flex: 1;
}

.message__name {
  font-family: "Zen Old Mincho", serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.112rem;
  color: #fff;
}
@media (max-width: 767px) {
  .message__name {
    font-size: 2rem;
    text-align: center;
  }
}

.message__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.072rem;
  color: #fff;
  margin-top: 2.9rem;
}
@media (max-width: 767px) {
  .message__desc {
    font-size: 1.4rem;
  }
}

.company-page .breadcrumb {
  background-color: #FAFAFA;
}

.philosophy {
  position: relative;
  padding: 10rem 0;
  background: #FAFAFA;
  overflow: hidden;
}
@media (max-width: 767px) {
  .philosophy {
    padding: 6rem 0;
  }
}

.philosophy__cloth {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.41;
  z-index: 0;
}

.philosophy__inner {
  position: relative;
  z-index: 1;
}

.philosophy__header {
  text-align: center;
}

.philosophy__lead {
  color: rgba(2, 32, 99, 0.06);
}

.philosophy__heading {
  font-family: "Zen Old Mincho", serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.16rem;
  color: #091359;
  text-align: center;
  position: relative;
  top: -1.4rem;
}
@media (max-width: 767px) {
  .philosophy__heading {
    font-size: 2.8rem;
    top: -3.4rem;
  }
}

.philosophy__card {
  width: 66.1rem;
  height: 15.6rem;
  margin: 3rem auto 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(9, 19, 89, 0.44);
  border: 2px solid;
  border-image: linear-gradient(4deg, rgb(182, 140, 75) 6%, rgb(209, 175, 100) 30%, rgb(235, 209, 149) 79%) 1;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
@media (max-width: 767px) {
  .philosophy__card {
    width: 100%;
    height: 12rem;
    margin-top: 0;
  }
}
.philosophy__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -0.7rem;
  width: 107%;
  height: 103%;
  background: url(../img/philosophy_bg.svg) no-repeat center center/cover;
  z-index: 0;
}
@media (max-width: 767px) {
  .philosophy__card::before {
    height: 109%;
  }
}

.philosophy__card-corner {
  position: absolute;
  z-index: 2;
}
.philosophy__card-corner--tl {
  top: 0.1rem;
  left: 0.2rem;
  width: 2.17rem;
  height: 2.22rem;
  background: url(../img/philosophy_corner_tl.svg) no-repeat center center/contain;
}
.philosophy__card-corner--br {
  bottom: 0.2rem;
  right: 0.2rem;
  width: 2.22rem;
  height: 2.28rem;
  background: url(../img/philosophy_corner_br.svg) no-repeat center center/contain;
}

.philosophy__card-text {
  position: relative;
  z-index: 1;
  font-family: "Zen Old Mincho", serif;
  font-size: 5.928rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.237rem;
  background: linear-gradient(7deg, rgb(182, 140, 75) 0%, rgb(209, 175, 100) 0%, rgb(235, 209, 149) 86%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .philosophy__card-text {
    font-size: 3.2rem;
  }
}

.philosophy__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.09rem;
  color: #21222A;
  text-align: center;
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .philosophy__desc {
    font-size: 1.4rem;
    margin-top: 3rem;
    text-align: left;
  }
}

.company {
  padding: 10rem 0;
  background: #fff;
}
@media (max-width: 767px) {
  .company {
    padding: 6rem 0;
  }
}

.company__header {
  text-align: center;
}

.company__lead {
  color: rgba(2, 32, 99, 0.06);
}

.company__heading {
  color: #091359;
}

.company__table {
  max-width: 96.8rem;
  margin: 6.2rem auto 0;
  background: #F5F5F5;
  border-radius: 1.6rem;
  padding: 8rem;
  box-shadow: 0 0 20px 0 rgba(61, 94, 72, 0.1);
}
@media (max-width: 767px) {
  .company__table {
    padding: 3rem 2rem;
    margin-top: 2rem;
    border-radius: 1rem;
  }
}

.company__row {
  display: flex;
  align-items: center;
  gap: 11rem;
  padding: 2.4rem 0;
  border-bottom: none;
  position: relative;
}
.company__row::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #034495 25%, #ddd 25%);
}
@media (max-width: 767px) {
  .company__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1.8rem 0;
  }
  .company__row::after {
    background: #034495;
  }
}
.company__row:last-child::after {
  display: none;
}

.company__label {
  width: 18rem;
  flex-shrink: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.032rem;
  color: #333;
}
@media (max-width: 767px) {
  .company__label {
    width: 100%;
    font-size: 1.4rem;
  }
}

.company__value {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.032rem;
  color: #333;
}
@media (max-width: 767px) {
  .company__value {
    width: 100%;
    font-size: 1.4rem;
  }
}

.page-id-11 .breadcrumb {
  background-color: #FAFAFA;
}

.page-head__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 19, 89, 0.85);
  z-index: 1;
}

.page-head__deco {
  position: absolute;
  top: -47.2rem;
  left: -5.2rem;
  width: 154.4rem;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 767px) {
  .page-head__deco {
    top: -20rem;
    left: -3rem;
    width: 100rem;
  }
}

.page-head--contact {
  background: url(../img/contact-head.webp) no-repeat center center/cover;
}

.contact {
  padding: 6rem 0 10rem;
  background: #fff;
}
@media (max-width: 767px) {
  .contact {
    padding: 4rem 0 6rem;
  }
}

.contact__inner {
  max-width: 92rem;
}

.contact__lead {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #333;
  text-align: center;
}
@media (max-width: 767px) {
  .contact__lead {
    font-size: 1.4rem;
  }
}

.contact__form-wrap {
  margin-top: 3.1rem;
  background: #FAFAFA;
  border: 2px solid #333;
  padding: 8rem 12rem;
}
@media (max-width: 767px) {
  .contact__form-wrap {
    padding: 3rem 2rem;
    margin-top: 3rem;
  }
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact__field-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.contact__field-required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 1.6rem;
  background: #034495;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  flex-shrink: 0;
}

.contact__field-name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
}

.contact__field-input input,
.contact__field-input textarea {
  width: 100%;
  border: 1px solid #ddd;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  padding: 1.2rem 1.6rem;
  outline: none;
  transition: border-color 0.3s;
}
.contact__field-input input:focus,
.contact__field-input textarea:focus {
  border-color: #091359;
}
.contact__field-input input {
  height: 4.6rem;
}
.contact__field-input textarea {
  height: 24rem;
  resize: vertical;
}

.contact__field-radio {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact__radio {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  cursor: pointer;
}
.contact__radio input {
  display: none;
}

.contact__radio-circle {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.3s;
}
input:checked + .contact__radio-circle {
  border-color: #091359;
}
input:checked + .contact__radio-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: #091359;
}

.contact__radio-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  line-height: 1.2;
}

.contact__agreement {
  display: flex;
}

.contact__checkbox {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  cursor: pointer;
}
.contact__checkbox input {
  display: none;
}

.contact__checkbox-box {
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid #ddd;
  background: #fff;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.3s;
}
input:checked + .contact__checkbox-box {
  border-color: #091359;
  background: #091359;
}
input:checked + .contact__checkbox-box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(45deg);
  width: 0.4rem;
  height: 0.8rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.contact__checkbox-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
  line-height: 1.45;
}
@media (max-width: 767px) {
  .contact__checkbox-text {
    font-size: 1.3rem;
  }
}

.contact__submit {
  display: flex;
  justify-content: center;
  margin-top: 10rem;
}
@media (max-width: 767px) {
  .contact__submit {
    margin-top: 4rem;
  }
}

.contact__submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem 3.2rem;
  background: linear-gradient(46deg, rgb(9, 19, 89) 0%, rgb(46, 61, 131) 99%);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  border: none;
  border-radius: 3.6rem;
  cursor: pointer;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.25);
  transition: opacity 0.3s;
  min-width: 24rem;
}
.contact__submit-btn:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .contact__submit-btn {
    width: 100%;
    max-width: 28rem;
  }
}

.contact__form-wrap .wpcf7-form > p {
  margin: 0;
}
.contact__form-wrap .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.contact__form-wrap .contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.contact__form-wrap .contact__field-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.contact__form-wrap .contact__field-required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 1.6rem;
  background: #034495;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  flex-shrink: 0;
}
.contact__form-wrap .contact__field-name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
}
.contact__form-wrap .contact__field-input {
  width: 100%;
}
.contact__form-wrap .contact__field-input input,
.contact__form-wrap .contact__field-input textarea {
  width: 100%;
  border: 1px solid #ddd;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  padding: 1.2rem 1.6rem;
  outline: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
}
.contact__form-wrap .contact__field-input input:focus,
.contact__form-wrap .contact__field-input textarea:focus {
  border-color: #091359;
}
.contact__form-wrap .contact__field-input input {
  height: 4.6rem;
}
.contact__form-wrap .contact__field-input textarea {
  height: 24rem;
  resize: vertical;
}
.contact__form-wrap .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.contact__form-wrap .contact__field-radio {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact__form-wrap .contact__field-radio .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  cursor: pointer;
  margin: 0;
}
.contact__form-wrap .contact__field-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  line-height: 1.2;
}
.contact__form-wrap .contact__field-radio .wpcf7-list-item input[type=radio] {
  appearance: none;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  margin: 0;
  cursor: pointer;
  transition: border-color 0.3s;
}
.contact__form-wrap .contact__field-radio .wpcf7-list-item input[type=radio]:checked {
  border-color: #091359;
  background: #fff;
  box-shadow: inset 0 0 0 0.6rem #091359;
}
.contact__form-wrap .contact__agreement {
  display: flex;
  align-items: flex-start;
}
.contact__form-wrap .contact__agreement .wpcf7-acceptance {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  cursor: pointer;
}
.contact__form-wrap .contact__agreement .wpcf7-acceptance .wpcf7-list-item-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
  line-height: 1.45;
  cursor: pointer;
}
@media (max-width: 767px) {
  .contact__form-wrap .contact__agreement .wpcf7-acceptance .wpcf7-list-item-label {
    font-size: 1.3rem;
  }
}
.contact__form-wrap .contact__agreement .wpcf7-acceptance input[type=checkbox] {
  appearance: none;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid #ddd;
  background: #fff;
  flex-shrink: 0;
  margin: 0;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  position: relative;
}
.contact__form-wrap .contact__agreement .wpcf7-acceptance input[type=checkbox]:checked {
  border-color: #091359;
  background: #091359;
}
.contact__form-wrap .contact__agreement .wpcf7-acceptance input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(45deg);
  width: 0.4rem;
  height: 0.8rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.contact__form-wrap .contact__submit {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.contact__form-wrap .contact__submit .wpcf7-form-control-wrap,
.contact__form-wrap .contact__submit p {
  margin: 0;
}
.contact__form-wrap .contact__submit .contact__submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem 3.2rem;
  background: linear-gradient(46deg, rgb(9, 19, 89) 0%, rgb(46, 61, 131) 99%);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  border: none;
  border-radius: 3.6rem;
  cursor: pointer;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.25);
  transition: opacity 0.3s;
  min-width: 24rem;
}
.contact__form-wrap .contact__submit .contact__submit-btn:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .contact__form-wrap .contact__submit .contact__submit-btn {
    width: 100%;
    max-width: 28rem;
  }
}
.contact__form-wrap .wpcf7-response-output {
  margin: 2rem 0 0;
  padding: 1rem 1.6rem;
  border: 1px solid #ddd;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
}
.contact__form-wrap .wpcf7-not-valid-tip {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  color: #c00;
  margin-top: 0.4rem;
}

.wpcf7-list-item:nth-of-type(n+2) {
  margin-top: 0.8rem !important;
  display: inline-block;
}

.wpcf7-list-item-label {
  font-size: 1.4rem;
}

.wpcf7-list-item {
  margin-left: 0;
}

.wpcf7-acceptance .wpcf7-list-item-label {
  margin-left: 1.6rem;
}
@media (max-width: 767px) {
  .wpcf7-acceptance .wpcf7-list-item-label {
    font-size: 1.4rem;
  }
}

.wpcf7-spinner {
  display: none;
}

@media (max-width: 767px) {
  .contact__form-wrap .contact__agreement .wpcf7-acceptance .wpcf7-list-item-label {
    font-size: 1.2rem;
  }
}

.page-head__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/head__event.webp) no-repeat center center/cover;
  z-index: 0;
}

.page-head--about {
  background: url(../img/head_about.webp) no-repeat center center/cover;
}

.target {
  padding: 6rem 0 10rem;
}
@media (max-width: 767px) {
  .target {
    padding: 4rem 0 6rem;
    margin-left: 2rem;
    margin-right: 2rem;
  }
}

.target__panel {
  max-width: 80.7rem;
  margin: 0 auto;
  padding-bottom: 6.2rem;
  border: 2px solid #091359;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.13);
  background: url(../img/target_bg.webp) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .target__panel {
    padding-bottom: 5rem;
  }
}

.target__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 83.8%;
  height: 7.9rem;
  margin: 5.2rem auto 0;
  background: linear-gradient(57deg, rgb(9, 19, 89) 21%, rgb(70, 89, 159) 51%, rgb(9, 19, 89) 74%) padding-box, linear-gradient(57deg, rgb(9, 19, 89) 32%, rgb(70, 89, 159) 94%) border-box;
  border: 1px solid transparent;
}
@media (max-width: 767px) {
  .target__heading {
    width: 90%;
    height: auto;
    padding: 1.6rem 2rem;
    margin-top: 3rem;
  }
}

.target__heading-text {
  font-family: "Zen Old Mincho", serif;
  font-size: 3.2rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .target__heading-text {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}

.target__list {
  padding: 4.4rem 5rem 0 15rem;
}
@media (max-width: 767px) {
  .target__list {
    padding: 3rem 2.4rem 0;
  }
}

.target__list-item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #333;
  line-height: 2.5;
  padding-left: 3.2rem;
  position: relative;
}
@media (max-width: 767px) {
  .target__list-item {
    font-size: 1.4rem;
    padding-left: 2.5rem;
    line-height: 1.6;
  }
  .target__list-item:nth-of-type(n+2) {
    margin-top: 2rem;
  }
}
.target__list-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2.3rem;
  height: 2.3rem;
  background: url(../img/check_figma.webp) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .target__list-item::before {
    width: 1.8rem;
    height: 1.8rem;
  }
}

.service {
  padding: 10rem 0;
  background: #fafafa;
}
@media (max-width: 767px) {
  .service {
    padding: 6rem 0;
  }
}

.service__header {
  text-align: center;
}

.service__title-text {
  font-family: "Zen Old Mincho";
  font-size: 4rem;
  font-weight: 400;
  color: #091359;
  margin-top: -1rem;
}
@media (max-width: 767px) {
  .service__title-text {
    font-size: 2.4rem;
    margin-top: -3rem;
  }
}

.service__items {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  max-width: 144rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.service__items::after {
  content: "";
  position: absolute;
  background: var(--3, linear-gradient(58deg, #091359 36.56%, #46599F 90.47%));
  width: 119.5rem;
  height: 116rem;
  right: 0;
  top: 23.4rem;
}
@media (max-width: 767px) {
  .service__items::after {
    display: none;
  }
}
.service__items::before {
  content: "";
  position: absolute;
  background: var(--3, linear-gradient(58deg, #091359 36.56%, #46599F 90.47%));
  width: 119.5rem;
  height: 116rem;
  left: 0;
  top: 184.3rem;
  z-index: 1;
}
@media (max-width: 767px) {
  .service__items::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .service__items {
    margin-top: 3rem;
  }
}

.service__item {
  position: relative;
  display: flex;
  min-height: 49.1rem;
  overflow: hidden;
  align-items: flex-start;
  z-index: 2;
}
.service__item:nth-of-type(n+2) {
  margin-top: 8.8rem;
}
@media (max-width: 767px) {
  .service__item:nth-of-type(n+2) {
    margin-top: 4rem;
  }
}
.service__item:nth-of-type(2) {
  align-items: center;
}
.service__item:nth-of-type(3) {
  align-items: center;
}
.service__item:nth-of-type(4) {
  align-items: center;
}
.service__item:nth-of-type(6) {
  align-items: center;
}
@media (max-width: 767px) {
  .service__item {
    flex-direction: column;
    min-height: auto;
  }
}

.service__item--reverse .service__item-img {
  left: 0;
  right: auto;
}
.service__item--reverse .service__item-body {
  margin-left: auto;
  margin-right: 12rem;
}

.service__item-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 61.5%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .service__item-img {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
}
.service__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service__item-body {
  position: relative;
  z-index: 1;
  width: 72rem;
  margin-left: 12rem;
  padding: 8rem;
  background: rgba(255, 255, 255, 0.83);
  box-shadow: 0 0 20px 0 rgba(60, 86, 52, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service__item-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #091359 50%, transparent 50%);
}
@media (max-width: 767px) {
  .service__item-body {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 3rem 2rem;
    background: #fff;
    box-shadow: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1440px) {
  .service__item-body {
    margin-left: 0;
  }
  .service__item--reverse .service__item-body {
    margin-right: 0;
  }
}
.service__item-num {
  font-family: "Noto Sans JP";
  font-size: 1.4rem;
  font-weight: 700;
  color: #042062;
  display: block;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .service__item-num {
    margin-bottom: 1rem;
  }
}

.service__item-title {
  font-family: "Zen Old Mincho";
  font-size: 2.8rem;
  font-weight: 700;
  color: #042062;
  line-height: 150%;
}
@media (max-width: 767px) {
  .service__item-title {
    font-size: 2rem;
  }
}

.service__item-desc {
  font-family: "Noto Sans JP";
  font-size: 1.6rem;
  font-weight: 500;
  color: #20222a;
  line-height: 160%;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .service__item-desc {
    font-size: 1.4rem;
    line-height: 180%;
  }
}

.merit {
  padding: 10rem 0;
  background: #fff;
}
.merit .title {
  color: #091359;
  font-size: 4rem;
}
@media (max-width: 767px) {
  .merit .title {
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  .merit {
    padding: 6rem 0;
  }
}

.merit__items {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3.6rem;
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .merit__items {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3.5rem;
  }
}

.merit__item {
  background: #fafafa;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.13);
  border: 2px solid;
  border-image: linear-gradient(4deg, rgb(182, 140, 75) 6%, rgb(209, 175, 100) 30%, rgb(235, 209, 149) 79%) 1;
}
.merit__item:nth-child(1) {
  grid-column: 1/3;
}
.merit__item:nth-child(2) {
  grid-column: 3/5;
}
.merit__item:nth-child(3) {
  grid-column: 5/7;
}
.merit__item:nth-child(4) {
  grid-column: 2/4;
}
.merit__item:nth-child(5) {
  grid-column: 4/6;
}
@media (max-width: 767px) {
  .merit__item:nth-child(n) {
    grid-column: auto;
  }
}

.merit__item-head {
  background: url(../img/merit-box_bg.webp) no-repeat center center/cover;
  height: 12.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding-left: 7rem;
}
@media (max-width: 767px) {
  .merit__item-head {
    min-height: 0;
    height: auto;
    padding: 1.2rem 1.4rem 1.6rem;
  }
}

.merit__item-num {
  width: 4.7rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../img/merit_bg.webp) no-repeat center center/cover;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.13);
  position: absolute;
  top: -0.7rem;
  left: 1.5rem;
}
@media (max-width: 767px) {
  .merit__item-num {
    margin-bottom: 0.8rem;
    padding: 0.5rem 1rem;
  }
}

.merit__item-num-arrow {
  display: block;
  width: 0;
  height: 0;
}

.merit__item-num-text {
  font-family: "Noto Serif JP";
  font-size: 3.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
@media (max-width: 767px) {
  .merit__item-num-text {
    font-size: 2.2rem;
  }
}

.merit__item-title {
  font-family: "Zen Old Mincho";
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .merit__item-title {
    font-size: 1.7rem;
    line-height: 1.6;
    padding-top: 3.2rem;
  }
}

.merit__item-img {
  padding: 2.6rem 2.5rem 2rem;
  background-color: #fff;
}
.merit__item-img img {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .merit__item-img {
    padding: 1.5rem 1.2rem 1.2rem;
  }
}

.merit__item-desc {
  font-family: "Noto Sans JP";
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.04em;
  padding: 0rem 2.5rem 2.5rem;
  background: #fff;
}
@media (max-width: 767px) {
  .merit__item-desc {
    font-size: 1.4rem;
    line-height: 1.7;
    padding: 1.2rem;
  }
}

.faq {
  position: relative;
  overflow: hidden;
  padding: 15rem 0 12rem;
}
@media (max-width: 767px) {
  .faq {
    padding: 6rem 0 8rem;
  }
}

.faq__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/faq-bg.webp") center/cover no-repeat, linear-gradient(37deg, rgb(11, 16, 55) 0%, rgb(30, 41, 115) 60%);
  z-index: 0;
}

.faq__inner {
  position: relative;
  z-index: 1;
}

.faq__header {
  text-align: center;
  line-height: 1;
  margin-bottom: 10.7rem;
}
@media (max-width: 767px) {
  .faq__header {
    margin-bottom: 0rem;
  }
}

.faq__lead {
  line-height: 0.84em;
  color: rgba(255, 255, 255, 0.34);
}

.faq__title {
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
}
@media (max-width: 767px) {
  .faq__title {
    margin-top: 2.5rem;
  }
}

.faq__items {
  max-width: 100.7rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5.8rem;
}
@media (max-width: 767px) {
  .faq__items {
    gap: 3rem;
  }
}

.faq__item {
  position: relative;
  overflow: hidden;
  border: 2px solid #EBD195;
  padding: 3.4rem 4.5rem 3.4rem 4.2rem;
  background: url("../img/faq-item-bg.webp") center/cover no-repeat;
}
@media (max-width: 767px) {
  .faq__item {
    padding: 2.5rem 2rem;
  }
}

.faq__item-q {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
}

.faq__item-q-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid #333;
  font-family: "Zen Old Mincho";
  font-size: 2.2rem;
  font-weight: 500;
  color: #333;
  flex-shrink: 0;
  line-height: 1;
}
@media (max-width: 767px) {
  .faq__item-q-icon {
    font-size: 1.6rem;
    width: 2.2rem;
    height: 2.2rem;
  }
}

.faq__item-q-text {
  font-family: "Zen Old Mincho";
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  line-height: 170%;
}
@media (max-width: 767px) {
  .faq__item-q-text {
    font-size: 1.6rem;
  }
}

.faq__item-a {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.faq__item-a p {
  font-family: "Noto Sans JP";
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  line-height: 160%;
}
@media (max-width: 767px) {
  .faq__item-a p {
    font-size: 1.3rem;
  }
}

.price {
  padding: 10rem 0 8rem;
  background: #fff;
}
@media (max-width: 767px) {
  .price {
    padding: 5rem 0 6rem;
  }
}

.price__header {
  position: relative;
  text-align: center;
  line-height: 1;
}

.price__lead {
  line-height: 0.84em;
}

.price__title {
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #091359;
  margin-top: -0.2rem;
}
@media (max-width: 767px) {
  .price__title {
    margin-top: 2.6rem;
  }
}

.price__card {
  max-width: 92.2rem;
  margin: 7.2rem auto 0;
  border: 2px solid transparent;
  border-image: linear-gradient(57deg, rgb(9, 19, 89) 32%, rgb(70, 89, 159) 94%) 1;
  overflow: hidden;
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.13);
  background: url("../img/price-bg.webp") center/cover no-repeat;
}
@media (max-width: 767px) {
  .price__card {
    margin-top: 0rem;
  }
}

.price__card-head {
  background: linear-gradient(57deg, rgb(9, 19, 89) 32%, rgb(70, 89, 159) 94%);
  padding: 3.5rem 3rem;
  text-align: center;
}
@media (max-width: 767px) {
  .price__card-head {
    padding: 2.5rem 2rem;
  }
}

.price__card-name {
  font-family: "Zen Old Mincho";
  font-size: 3.2rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .price__card-name {
    font-size: 2rem;
  }
}

.price__card-body {
  padding: 4rem 8.7rem 8.7rem;
  background: transparent;
  background: url(../img/price-bg.webp) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .price__card-body {
    padding: 3rem 2rem 4rem;
  }
}

.price__amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 5.5rem;
}
@media (max-width: 767px) {
  .price__amount {
    margin-bottom: 2rem;
  }
}

.price__amount-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(57deg, rgb(9, 19, 89) 32%, rgb(70, 89, 159) 94%);
  color: #fff;
  font-family: "Zen Old Mincho";
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  padding: 0.3rem 0.9rem;
  line-height: 1;
  align-self: center;
  margin-right: 1.5rem;
  position: relative;
  top: 2.2rem;
}
@media (max-width: 767px) {
  .price__amount-label {
    font-size: 1.3rem;
  }
}

.price__amount-num {
  font-family: "Zen Old Mincho";
  font-size: 8.7rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.07em;
  background: linear-gradient(57deg, rgb(9, 19, 89) 32%, rgb(70, 89, 159) 94%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .price__amount-num {
    font-size: 6rem;
  }
}

.price__amount-unit {
  font-family: "Zen Old Mincho";
  font-size: 4.2rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  background: linear-gradient(57deg, rgb(9, 19, 89) 32%, rgb(70, 89, 159) 94%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .price__amount-unit {
    font-size: 2.8rem;
  }
}

.price__fee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  background: linear-gradient(57deg, rgb(9, 19, 89) 32%, rgb(70, 89, 159) 94%);
  height: 6.2rem;
  margin-bottom: 3rem;
  border: 2px solid transparent;
  border-image: linear-gradient(4deg, rgb(182, 140, 75) 6%, rgb(209, 175, 100) 30%, rgb(235, 209, 149) 79%) 1;
}
@media (max-width: 767px) {
  .price__fee {
    padding: 1.2rem 2rem;
    gap: 1rem;
    margin-bottom: 2rem;
  }
}

.price__fee-num-unit {
  font-size: 2.8rem;
}

.price__fee-label {
  font-family: "Zen Old Mincho";
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .price__fee-label {
    font-size: 1.3rem;
  }
}

.price__fee-num {
  font-family: "Zen Old Mincho";
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: linear-gradient(4deg, rgb(182, 140, 75) 6%, rgb(209, 175, 100) 30%, rgb(235, 209, 149) 79%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .price__fee-num {
    font-size: 3rem;
  }
}

.price__card-grid {
  display: flex;
  gap: 0 2.8rem;
}
@media (max-width: 767px) {
  .price__card-grid {
    grid-template-columns: 1fr;
    gap: 0;
    flex-direction: column;
  }
}

.price__card-list-item {
  font-family: "Noto Sans JP";
  font-size: 2rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  padding: 0.8rem 0 0.8rem 2.4rem;
  position: relative;
}
@media (max-width: 767px) {
  .price__card-list-item {
    font-size: 1.4rem;
    padding-left: 2rem;
  }
}
.price__card-list-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #091359;
  font-weight: 700;
}

.price__card--scale {
  margin-top: 7.3rem;
  background: #fff;
  border-image: linear-gradient(4deg, rgb(182, 140, 75) 6%, rgb(209, 175, 100) 30%, rgb(235, 209, 149) 79%) 1;
}

.price__card-head--scale {
  background: url("../img/price-scale-head.webp") center/cover no-repeat;
  background-color: #f5f0e8;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(4deg, rgb(182, 140, 75) 6%, rgb(209, 175, 100) 30%, rgb(235, 209, 149) 79%) 1;
}

.price__card-name--scale {
  color: #21222A;
}

.price__amount-label--scale {
  background: linear-gradient(9deg, rgb(182, 140, 75) 0%, rgb(209, 175, 100) 25%, rgb(235, 209, 149) 77%);
}

.price__amount-num--scale {
  background: linear-gradient(14deg, rgb(182, 140, 75) 18%, rgb(209, 175, 100) 33%, rgb(235, 209, 149) 65%);
  -webkit-background-clip: text;
  background-clip: text;
}

.price__amount-unit--scale {
  background: linear-gradient(19deg, rgb(182, 140, 75) 35%, rgb(209, 175, 100) 54%, rgb(235, 209, 149) 92%);
  -webkit-background-clip: text;
  background-clip: text;
}

.price__card-include {
  text-align: center;
  padding: 1rem 0 2rem;
}

.price__card-include-text {
  font-family: "Noto Sans JP";
  font-size: 2rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  display: inline-block;
  padding-left: 2.4rem;
  position: relative;
}
.price__card-include-text::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #091359;
  font-weight: 700;
}
@media (max-width: 767px) {
  .price__card-include-text {
    font-size: 1.4rem;
    padding-left: 2rem;
  }
}

.price__note {
  font-family: "Noto Sans JP";
  font-size: 1.6rem;
  font-weight: 400;
  color: #666;
  text-align: right;
  margin-top: 2.5rem;
  max-width: 90.2rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .price__note {
    font-size: 1.2rem;
  }
}

.flow {
  position: relative;
  overflow: hidden;
  padding: 10rem 0;
}
@media (max-width: 767px) {
  .flow {
    padding: 6rem 0;
  }
}

.flow__inner {
  max-width: 130rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.flow__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/flow_bg.webp) no-repeat center center/cover;
  z-index: 0;
}

.flow__inner {
  position: relative;
  z-index: 1;
}

.flow__steps {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 5rem;
  background: #fff;
  padding: 5rem 4rem;
}
@media (max-width: 767px) {
  .flow__steps {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 3rem 2rem;
    margin-top: 3rem;
  }
}

.flow__step {
  text-align: center;
  flex: 1;
  max-width: 25.8rem;
  position: relative;
  padding-top: 3rem;
}

.flow__step-num {
  position: absolute;
  top: 0;
  left: 1.1rem;
  font-family: "Open Sans", sans-serif;
  font-size: 4.95rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(58deg, #091359 36.56%, #46599F 90.47%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 1;
}
@media (max-width: 767px) {
  .flow__step-num {
    font-size: 3.2rem;
  }
}

.flow__step-img {
  width: 18.3rem;
  height: 18.3rem;
  border-radius: 50%;
  overflow: hidden;
  margin: -2.3rem auto 0;
  border: 3px solid #ffffff;
  background: #d9d9d9;
}
@media (max-width: 767px) {
  .flow__step-img {
    width: 14rem;
    height: 14rem;
  }
}
.flow__step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flow__step-text {
  font-family: "Noto Sans JP";
  font-size: 1.8rem;
  font-weight: 700;
  color: #20222a;
  line-height: 160%;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .flow__step-text {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .flow__step-text {
    font-size: 1.7rem;
  }
}
.merit__inner {
  max-width: 118.1rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.voice {
  background: #fafafa;
  padding: 8rem 0 10rem;
}
@media (max-width: 767px) {
  .voice {
    padding: 5rem 0 7rem;
  }
}

.voice__inner {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.voice__header {
  text-align: center;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .voice__header {
    margin-bottom: 3rem;
  }
}

.voice__lead {
  color: rgba(2, 32, 99, 0.06);
  font-family: "Cormorant Garamond", serif;
  font-size: 12.4rem;
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .voice__lead {
    font-size: 6rem;
  }
}

.voice__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #091359;
  position: relative;
  top: -1.2rem;
}
@media (max-width: 767px) {
  .voice__title {
    font-size: 2.4rem;
    top: -0.6rem;
  }
}

.voice__swiper-wrap {
  position: relative;
  padding: 0 5rem;
}
@media (max-width: 767px) {
  .voice__swiper-wrap {
    padding: 0;
  }
}

.voice__swiper {
  overflow: hidden;
}

.voice__card {
  display: flex;
  align-items: center;
  gap: 3.9rem;
  max-width: 96.4rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .voice__card {
    flex-direction: column;
    gap: 2rem;
  }
}

.voice__card-img-wrap {
  position: relative;
  flex: 0 0 44.3rem;
  width: 44.3rem;
}
.voice__card-img-wrap img {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
  object-fit: cover;
  height: 25rem;
}
@media (max-width: 767px) {
  .voice__card-img-wrap img {
    height: 18rem;
  }
}
@media (max-width: 767px) {
  .voice__card-img-wrap {
    flex: none;
    width: 100%;
  }
  .voice__card-img-wrap::before {
    width: calc(100% - 1rem);
    height: 55%;
    left: 0.8rem;
    top: 1.5rem;
  }
}

.voice__card-body {
  flex: 1;
  min-width: 0;
}
@media (max-width: 767px) {
  .voice__card-body {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.voice__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #333;
  margin-bottom: 0.6rem;
}
@media (max-width: 767px) {
  .voice__card-title {
    font-size: 1.8rem;
  }
}

.voice__card-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #333;
  margin-bottom: 1.2rem;
}
@media (max-width: 767px) {
  .voice__card-subtitle {
    font-size: 1.5rem;
  }
}

.voice__card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #333;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .voice__card-text {
    font-size: 1.4rem;
  }
}

.voice__pagination {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 3rem;
}
.voice__pagination.swiper-pagination-bullets {
  bottom: auto;
  position: relative;
  margin-top: 3rem;
}
.voice__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #c4c4c4;
  opacity: 1;
  margin: 0 !important;
}
.voice__pagination .swiper-pagination-bullet-active {
  background: #091359;
}

.voice__button-prev,
.voice__button-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
}
@media (max-width: 767px) {
  .voice__button-prev,
  .voice__button-next {
    top: 50%;
  }
}
.voice__button-prev img,
.voice__button-next img {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
}
@media (max-width: 767px) {
  .voice__button-prev img,
  .voice__button-next img {
    width: 3rem;
    height: 3rem;
  }
}

.voice__button-prev {
  left: 3.9rem;
}
@media (max-width: 767px) {
  .voice__button-prev {
    left: -1rem;
  }
}

.voice__button-next {
  right: 3.9rem;
}
.voice__button-next img {
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .voice__button-next {
    right: -1rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .voice__button-prev {
    left: -0.6rem;
  }
  .voice__button-next {
    right: -0.6rem;
  }
}
.results-head {
  position: relative;
  height: 42.6rem;
  margin-top: 7.1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/head_result.webp) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .results-head {
    height: 28rem;
    margin-top: 16vw;
  }
}

.results-head__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(59deg, rgb(9, 19, 89) 7%, rgb(70, 89, 159) 94%);
  z-index: 0;
}
.results-head__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/results_head_bg.webp) no-repeat center center/cover;
  opacity: 0.1;
}

.results-head__deco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 107.2rem;
  height: auto;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 767px) {
  .results-head__deco {
    width: 80rem;
  }
}

.results-head__title {
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: 4.056rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
}
@media (max-width: 767px) {
  .results-head__title {
    font-size: 2.8rem;
  }
}

.results {
  padding: 0 0 10rem;
  background: url(../img/result_bg.webp) no-repeat center top/cover;
  min-height: 100rem;
}
@media (max-width: 767px) {
  .results {
    padding: 0 0 6rem;
    min-height: auto;
  }
}

.results__inner {
  max-width: 114rem;
  padding-top: 0;
}

.results__breadcrumb {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.5rem 0;
}
@media (max-width: 767px) {
  .results__breadcrumb {
    margin-left: 0;
    padding: 1.2rem 0;
  }
}

.results__breadcrumb-link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #333;
  transition: opacity 0.3s;
}
.results__breadcrumb-link:hover {
  opacity: 0.7;
}

.results__breadcrumb-sep {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #555;
  border-right: 1px solid #555;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.results__breadcrumb-current {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #333;
}

.results__tabs {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 5.3rem;
}
@media (max-width: 767px) {
  .results__tabs {
    margin-top: 2rem;
    flex-direction: column;
    gap: 1rem;
  }
}

.results__tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29.9rem;
  height: 5.4rem;
  background: #FDFDFD;
  border: 1px solid #042062;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .results__tab {
    width: 100%;
    height: 5rem;
  }
}
.results__tab::after {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  right: 0.2rem;
  bottom: 0.2rem;
  border: 0.5px solid transparent;
  border-image: linear-gradient(57deg, rgb(9, 19, 89) 32%, rgb(70, 89, 159) 94%) 1;
  pointer-events: none;
}
.results__tab.is-active {
  background: linear-gradient(57deg, rgb(9, 19, 89) 32%, rgb(70, 89, 159) 94%);
  border-color: transparent;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.13);
}
.results__tab.is-active::after {
  border-image: linear-gradient(40deg, rgb(160, 134, 86) 0%, rgb(234, 219, 169) 86%) 1;
}
.results__tab.is-active .results__tab-text {
  color: #fff;
}
.results__tab.is-active .results__tab-deco::before {
  background: linear-gradient(73deg, rgb(182, 140, 75) 0%, rgb(209, 175, 100) 43%, rgb(235, 209, 149) 99%);
}
.results__tab:hover:not(.is-active) {
  opacity: 0.8;
}

.results__tab-deco {
  position: absolute;
  width: 0.89rem;
  height: 0.91rem;
  z-index: 2;
}
.results__tab-deco::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 100%, 0 0, 100% 100%);
  background: linear-gradient(57deg, rgb(9, 19, 89) 32%, rgb(70, 89, 159) 94%);
}
.results__tab-deco--tl {
  top: 0.4rem;
  left: 0.4rem;
  transform: rotate(90deg);
}
.results__tab-deco--br {
  bottom: 0.4rem;
  right: 0.4rem;
  transform: rotate(-90deg);
}

.results__tab-text {
  font-family: "Zen Old Mincho", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #091359;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .results__tab-text {
    font-size: 1.8rem;
  }
}

.results__section[hidden] {
  display: none;
}

.results__posts {
  display: flex;
  flex-wrap: wrap;
  gap: 2.196rem;
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .results__posts {
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
  }
}

.results__post {
  width: calc((100% - 4.392rem) / 3);
  background: #fff;
  border-radius: 0.732rem;
  overflow: hidden;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.1);
  padding: 2.928rem;
  display: flex;
  flex-direction: column;
  gap: 2.928rem;
  transition: opacity 0.3s, box-shadow 0.3s;
}
@media (max-width: 767px) {
  .results__post {
    width: 100%;
    padding: 2rem;
    gap: 2rem;
  }
}
.results__post:hover {
  opacity: 0.85;
  box-shadow: 4px 4px 14px 0 rgba(0, 0, 0, 0.15);
}

.results__post-img {
  width: 100%;
  aspect-ratio: 292.8/164.7;
  overflow: hidden;
  border-radius: 0.4rem;
  background: #e8e8e8;
}
.results__post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.results__post-body {
  display: flex;
  flex-direction: column;
  gap: 1.464rem;
}

.results__post-meta {
  display: flex;
  align-items: center;
  gap: 1.098rem;
}

.results__post-category {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.37rem;
  font-weight: 400;
  color: #042062;
  letter-spacing: 0.08em;
  line-height: 1;
}

.results__post-divider {
  display: block;
  width: 0.1rem;
  height: 1.28rem;
  background: #042062;
}

.results__post-date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.19rem;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.08em;
  line-height: 1;
}

.results__post-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .results__post-title {
    font-size: 1.4rem;
  }
}

.results__pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .results__pager {
    margin-top: 4rem;
    gap: 2rem;
  }
}

.results__pager-numbers {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.results__pager-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 0.4rem;
  background: #E8F2FF;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  line-height: 1;
  transition: background 0.3s, color 0.3s;
}
@media (max-width: 767px) {
  .results__pager-num {
    width: 3.6rem;
    height: 3.6rem;
    font-size: 1.4rem;
  }
}
.results__pager-num.is-active {
  background: linear-gradient(90deg, rgb(9, 19, 89) 0%, rgb(46, 61, 131) 100%);
  color: #fff;
  font-weight: 700;
}
.results__pager-num:hover:not(.is-active) {
  background: #d0e3fa;
}

.results__pager-dots {
  font-family: "Helvetica", sans-serif;
  font-size: 1.2rem;
  color: #333;
  line-height: 1;
  display: flex;
  align-items: center;
}

.results__pager-next {
  display: block;
  width: 0.5rem;
  height: 1rem;
  border-top: 1.5px solid #333;
  border-right: 1.5px solid #333;
  transform: rotate(45deg);
  transition: opacity 0.3s;
}
.results__pager-next:hover {
  opacity: 0.6;
}

.page-head--results {
  background: linear-gradient(59deg, rgb(9, 19, 89) 7%, rgb(70, 89, 159) 94%);
}

.results-detail-head {
  position: relative;
  height: 42.6rem;
  margin-top: 7.1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/head_result-detail.webp) no-repeat center center/cover;
}
.results-detail-head::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}
@media (max-width: 767px) {
  .results-detail-head {
    height: 28rem;
    margin-top: 16vw;
  }
}

.results-detail-head__title {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: 4.055rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
}
@media (max-width: 767px) {
  .results-detail-head__title {
    font-size: 2.8rem;
  }
}

.page-head__deco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 107%;
  z-index: 0;
  pointer-events: none;
}
.page-head__deco img {
  width: 100%;
  height: auto;
}

.rd-article {
  padding: 6rem 0 10rem;
}
@media (max-width: 767px) {
  .rd-article {
    padding: 4rem 0 6rem;
  }
}

.rd-article__inner {
  max-width: 114rem;
}

.rd-article__header {
  margin-bottom: 2.4rem;
}

.rd-article__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rd-article__tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  background: #0C1E5E;
  padding: 0.4rem 0.8rem;
}
@media (max-width: 767px) {
  .rd-article__tag {
    font-size: 1.2rem;
  }
}

.rd-article__date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #777;
}
@media (max-width: 767px) {
  .rd-article__date {
    font-size: 1.2rem;
  }
}

.rd-article__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  margin-top: 2.4rem;
}
@media (max-width: 767px) {
  .rd-article__title {
    font-size: 2rem;
  }
}

.rd-article__eyecatch {
  width: 100%;
  aspect-ratio: 1100/592;
  overflow: hidden;
  margin-bottom: 2.4rem;
}
.rd-article__eyecatch .rd-article__video-wrap {
  height: 100%;
}
.rd-article__eyecatch iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  vertical-align: top;
}
.rd-article__eyecatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rd-article__eyecatch--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}
.rd-article__eyecatch--logo .rd-article__eyecatch-img--logo {
  width: auto;
  max-width: 60%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.rd-article__lead-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  margin-bottom: 8.5rem;
}
@media (max-width: 767px) {
  .rd-article__lead-text {
    font-size: 1.4rem;
    margin-bottom: 5rem;
  }
}

.rd-article__body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  color: #333;
}
@media (max-width: 767px) {
  .rd-article__body {
    font-size: 1.4rem;
  }
}
.rd-article__body > * + * {
  margin-top: 1.6em;
}
.rd-article__body p {
  margin: 0;
}
.rd-article__body p + p {
  margin-top: 1em;
}
.rd-article__body h2 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  margin-top: 6.4rem;
  margin-bottom: 2.4rem;
  padding-bottom: 1.6rem;
  border-bottom: 2px solid #999;
}
.rd-article__body h2:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .rd-article__body h2 {
    font-size: 2rem;
  }
}
.rd-article__body h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  margin-top: 4.4rem;
  margin-bottom: 1.6rem;
  padding-left: 2rem;
  border-left: 4px solid #999;
}
.rd-article__body h3:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .rd-article__body h3 {
    font-size: 1.7rem;
  }
}
.rd-article__body h4 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  margin-top: 1.6em;
  margin-bottom: 0.4em;
}
@media (max-width: 767px) {
  .rd-article__body h4 {
    font-size: 1.5rem;
  }
}
.rd-article__body ul,
.rd-article__body ol {
  margin: 2rem 0;
  padding: 0;
}
.rd-article__body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.rd-article__body ul li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fafafa;
  border-left: 3px solid #0C1E5E;
  padding: 1.2rem 1.6rem;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
}
.rd-article__body ul li::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  margin-top: 0.1em;
  background: #0C1E5E;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}
@media (max-width: 767px) {
  .rd-article__body ul li {
    font-size: 1.4rem;
    padding: 1rem 1.2rem;
  }
}
.rd-article__body ol {
  list-style: none;
  counter-reset: ol-counter;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.rd-article__body ol li {
  counter-increment: ol-counter;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem 1.6rem;
  background: #fafafa;
  border-left: 3px solid #0C1E5E;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
}
.rd-article__body ol li::before {
  content: counter(ol-counter);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  margin-top: 0.1em;
  background: #0C1E5E;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .rd-article__body ol li {
    font-size: 1.4rem;
    padding: 1rem 1.2rem;
  }
}
.rd-article__body a {
  color: #091359;
  text-decoration: underline;
  transition: opacity 0.3s;
}
.rd-article__body a:hover {
  opacity: 0.8;
}
.rd-article__body img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
.rd-article__body blockquote {
  margin: 1.6em 0;
  padding: 1.2em 1.6em;
  border-left: 4px solid #091359;
  background: #f5f5f5;
  color: #333;
}
.rd-article__body strong {
  font-weight: 700;
}

.toc-wrap {
  margin-bottom: 5.6rem;
}
@media (max-width: 767px) {
  .toc-wrap {
    margin-bottom: 4rem;
  }
}

.toc {
  background: #fafafa;
  border: 2px solid #0C1E5E;
  padding: 3rem 3.6rem;
}
@media (max-width: 767px) {
  .toc {
    padding: 2.4rem 2.4rem;
  }
}

.toc__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.toc__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0C1E5E;
  padding-left: 1.2rem;
  border-left: 3px solid #0C1E5E;
}

.toc__toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 1px solid #0C1E5E;
  border-radius: 2px;
  padding: 0.4rem 1rem;
  cursor: pointer;
  color: #0C1E5E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.toc__toggle:hover {
  background: #0C1E5E;
  color: #fff;
}
.toc__toggle:hover .toc__toggle-icon::before,
.toc__toggle:hover .toc__toggle-icon::after {
  background: #fff;
}

.toc__toggle-icon {
  position: relative;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.toc__toggle-icon::before, .toc__toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  margin-top: -1px;
  background: #0C1E5E;
  transition: transform 0.2s, background 0.2s;
}
.toc__toggle-icon::before {
  transform: rotate(45deg);
}
.toc__toggle-icon::after {
  transform: rotate(-45deg);
}

.toc__toggle.is-closed .toc__toggle-icon::before, .toc__toggle.is-closed .toc__toggle-icon::after {
  transform: rotate(0deg);
}

.toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  counter-reset: toc-h2;
}

.toc.is-closed .toc__list {
  display: none;
}

.toc__item a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.7;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
  display: block;
}
.toc__item a:hover {
  color: #0C1E5E;
  text-decoration: underline;
}
.toc__item--h2 {
  counter-increment: toc-h2;
  counter-reset: toc-h3;
}
.toc__item--h2 a::before {
  content: counter(toc-h2) ". ";
  color: #0C1E5E;
  font-weight: 700;
}
.toc__item--h3 {
  padding-left: 2.4rem;
  margin-top: 0.2rem;
  counter-increment: toc-h3;
}
.toc__item--h3 a {
  font-size: 1.4rem;
  line-height: 1.65;
  color: #555;
}
.toc__item--h3 a::before {
  content: counter(toc-h2) "-" counter(toc-h3) ". ";
  color: #777;
}

.rd-post-nav {
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 1px solid #ddd;
}
@media (max-width: 767px) {
  .rd-post-nav {
    margin-top: 4rem;
    padding-top: 3rem;
  }
}

.rd-post-nav__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
}
@media (max-width: 767px) {
  .rd-post-nav__inner {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}

.rd-post-nav__prev {
  text-align: left;
}

.rd-post-nav__next {
  text-align: right;
}
@media (max-width: 767px) {
  .rd-post-nav__next {
    text-align: left;
  }
}

.rd-post-nav__link {
  display: inline-flex;
  flex-direction: column;
  gap: 0.6rem;
  text-decoration: none;
  transition: opacity 0.3s;
}
.rd-post-nav__link:hover {
  opacity: 0.7;
}

.rd-post-nav__label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #777;
}

.rd-post-nav__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .rd-post-nav__title {
    font-size: 1.4rem;
  }
}

.rd-section {
  margin-bottom: 7.6rem;
}
@media (max-width: 767px) {
  .rd-section {
    margin-bottom: 6rem;
  }
}
.rd-section:last-child {
  margin-bottom: 0;
}

.rd-section__heading {
  position: relative;
  height: 8.2rem;
  display: flex;
  align-items: center;
  margin-bottom: 4.4rem;
}
@media (max-width: 767px) {
  .rd-section__heading {
    height: auto;
    padding: 2rem 2.4rem;
    margin-bottom: 2.5rem;
  }
}

.rd-section__heading-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(57deg, rgb(9, 19, 89) 32%, rgb(70, 89, 159) 94%);
  z-index: 0;
}

.rd-section__heading-text {
  position: relative;
  z-index: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  padding-left: 3.4rem;
}
@media (max-width: 767px) {
  .rd-section__heading-text {
    font-size: 1.8rem;
    padding-left: 0;
  }
}

.rd-section__body {
  display: flex;
  flex-direction: column;
  gap: 4.4rem;
}
@media (max-width: 767px) {
  .rd-section__body {
    gap: 3rem;
  }
}

.rd-section__qa {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
}

.rd-section__question {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  color: #091359;
}
@media (max-width: 767px) {
  .rd-section__question {
    font-size: 1.4rem;
  }
}

.rd-section__answer {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: #21222A;
}
@media (max-width: 767px) {
  .rd-section__answer {
    font-size: 1.4rem;
  }
}

.media-head {
  position: relative;
  height: 42.6rem;
  margin-top: 7.1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/head-media.webp) no-repeat center center/cover;
}
.media-head::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}
@media (max-width: 767px) {
  .media-head {
    height: 28rem;
    margin-top: 16vw;
  }
}

.media-head__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(59deg, rgb(9, 19, 89) 7%, rgb(70, 89, 159) 94%);
  z-index: 0;
}

.media-head__deco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 107.2rem;
  height: auto;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 767px) {
  .media-head__deco {
    width: 80rem;
  }
}

.media-head__title {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: 4.056rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
}
@media (max-width: 767px) {
  .media-head__title {
    font-size: 2.8rem;
  }
}

.media-list {
  padding: 0 0 10rem;
  min-height: 100rem;
  background: url(../img/media__bg.webp) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .media-list {
    padding: 0 0 6rem;
    min-height: auto;
  }
}

.media-list__inner {
  max-width: 114rem;
  padding-top: 0;
}

.media-list__breadcrumb {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.5rem 0;
}
@media (max-width: 767px) {
  .media-list__breadcrumb {
    padding: 1.2rem 0;
  }
}

.media-list__breadcrumb-link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #333;
  transition: opacity 0.3s;
}
.media-list__breadcrumb-link:hover {
  opacity: 0.7;
}

.media-list__breadcrumb-sep {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #555;
  border-right: 1px solid #555;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.media-list__breadcrumb-current {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #333;
}

.media-list__heading {
  position: relative;
  text-align: center;
  margin-top: 9rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .media-list__heading {
    margin-bottom: 3rem;
  }
}

.media-list__heading-en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 12.4rem;
  font-weight: 400;
  color: rgba(2, 32, 99, 0.06);
  line-height: 0.84;
  text-align: center;
  user-select: none;
  pointer-events: none;
}
@media (max-width: 767px) {
  .media-list__heading-en {
    font-size: 7.5rem;
  }
}

.media-list__heading-ja {
  font-family: "Zen Old Mincho", serif;
  font-size: 4rem;
  font-weight: 400;
  color: #091359;
  line-height: 1;
  text-align: center;
  margin-top: -0.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .media-list__heading-ja {
    font-size: 2.8rem;
  }
}

.media-list__posts {
  display: flex;
  flex-wrap: wrap;
  gap: 2.196rem;
  margin-top: 7rem;
}
@media (max-width: 767px) {
  .media-list__posts {
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
  }
}

.media-list__post {
  width: calc((100% - 4.392rem) / 3);
  background: #fff;
  border-radius: 0.732rem;
  overflow: hidden;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.1);
  padding: 2.928rem;
  display: flex;
  flex-direction: column;
  gap: 2.928rem;
  transition: opacity 0.3s, box-shadow 0.3s;
}
@media (max-width: 767px) {
  .media-list__post {
    width: 100%;
    padding: 2rem;
    gap: 2rem;
  }
}
.media-list__post:hover {
  opacity: 0.85;
  box-shadow: 4px 4px 14px 0 rgba(0, 0, 0, 0.15);
}

.media-list__post-img {
  width: 100%;
  aspect-ratio: 292.8/164.7;
  overflow: hidden;
  border-radius: 0.4rem;
  background: #e8e8e8;
}
.media-list__post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.media-list__post:hover .media-list__post-img img {
  transform: scale(1.04);
}

.media-list__post-body {
  display: flex;
  flex-direction: column;
  gap: 1.464rem;
}

.media-list__post-meta {
  display: flex;
  align-items: center;
  gap: 1.098rem;
}

.media-list__post-category {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.37rem;
  font-weight: 400;
  color: #042062;
  letter-spacing: 0.08em;
  line-height: 1;
}

.media-list__post-divider {
  display: block;
  width: 0.1rem;
  height: 1.28rem;
  background: #042062;
}

.media-list__post-date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.19rem;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.08em;
  line-height: 1;
}

.media-list__post-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #21222A;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .media-list__post-title {
    font-size: 1.4rem;
  }
}

.media-list__pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .media-list__pager {
    margin-top: 4rem;
    gap: 2rem;
  }
}

.media-list__pager-numbers {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.media-list__pager-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 0.4rem;
  background: #E8F2FF;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  line-height: 1;
  transition: background 0.3s, color 0.3s;
}
@media (max-width: 767px) {
  .media-list__pager-num {
    width: 3.6rem;
    height: 3.6rem;
    font-size: 1.4rem;
  }
}
.media-list__pager-num.is-active {
  background: #034495;
  color: #fff;
  font-weight: 700;
}
.media-list__pager-num:hover:not(.is-active) {
  background: #d0e3fa;
}

.media-list__pager-dots {
  font-family: "Helvetica", sans-serif;
  font-size: 1.2rem;
  color: #333;
  line-height: 1;
  display: flex;
  align-items: center;
}

.media-list__pager-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  transition: opacity 0.3s;
}
.media-list__pager-next::before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .media-list__pager-next {
    width: 3.6rem;
    height: 3.6rem;
  }
  .media-list__pager-next::before {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.media-list__pager-next:hover {
  opacity: 0.6;
}

.media-detail {
  padding: 6rem 0 10rem;
}
@media (max-width: 767px) {
  .media-detail {
    padding: 4rem 0 6rem;
  }
}

.media-detail__inner {
  max-width: 114rem;
}

.media-detail__header {
  margin-bottom: 2.4rem;
}

.media-detail__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.media-detail__category {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  background: #042062;
  padding: 0.4rem 0.8rem;
}
@media (max-width: 767px) {
  .media-detail__category {
    font-size: 1.2rem;
  }
}

.media-detail__divider {
  display: block;
  width: 0.1rem;
  height: 1.4rem;
  background: #ccc;
}

.media-detail__date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #777;
}
@media (max-width: 767px) {
  .media-detail__date {
    font-size: 1.2rem;
  }
}

.media-detail__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  margin-top: 2.4rem;
}
@media (max-width: 767px) {
  .media-detail__title {
    font-size: 2rem;
  }
}

.media-detail__eyecatch {
  width: 100%;
  aspect-ratio: 1100/592;
  overflow: hidden;
  margin-bottom: 2.4rem;
}
.media-detail__eyecatch .rd-article__video-wrap {
  height: 100%;
}
.media-detail__eyecatch iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  vertical-align: top;
}
.media-detail__eyecatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-detail__eyecatch--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}
.media-detail__eyecatch--logo .media-detail__eyecatch-img--logo {
  width: auto;
  max-width: 60%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.media-detail__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  margin-bottom: 5.6rem;
}
@media (max-width: 767px) {
  .media-detail__lead {
    font-size: 1.4rem;
    margin-bottom: 4rem;
  }
}

.media-detail__body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  color: #333;
}
@media (max-width: 767px) {
  .media-detail__body {
    font-size: 1.4rem;
  }
}
.media-detail__body > * + * {
  margin-top: 1.6em;
}
.media-detail__body p {
  margin: 0;
}
.media-detail__body p + p {
  margin-top: 1em;
}
.media-detail__body h2 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  margin-top: 6.4rem;
  margin-bottom: 2.4rem;
  padding-bottom: 1.6rem;
  border-bottom: 2px solid #999;
}
.media-detail__body h2:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .media-detail__body h2 {
    font-size: 2rem;
  }
}
.media-detail__body h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  margin-top: 4.4rem;
  margin-bottom: 1.6rem;
  padding-left: 2rem;
  border-left: 4px solid #999;
}
.media-detail__body h3:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .media-detail__body h3 {
    font-size: 1.7rem;
  }
}
.media-detail__body h4 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  margin-top: 1.6em;
  margin-bottom: 0.4em;
}
@media (max-width: 767px) {
  .media-detail__body h4 {
    font-size: 1.5rem;
  }
}
.media-detail__body ul,
.media-detail__body ol {
  margin: 2rem 0;
  padding: 0;
}
.media-detail__body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.media-detail__body ul li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fafafa;
  border-left: 3px solid #042062;
  padding: 1.2rem 1.6rem;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
}
.media-detail__body ul li::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  margin-top: 0.1em;
  background: #042062;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}
@media (max-width: 767px) {
  .media-detail__body ul li {
    font-size: 1.4rem;
    padding: 1rem 1.2rem;
  }
}
.media-detail__body ol {
  list-style: none;
  counter-reset: ol-counter;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.media-detail__body ol li {
  counter-increment: ol-counter;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem 1.6rem;
  background: #fafafa;
  border-left: 3px solid #042062;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
}
.media-detail__body ol li::before {
  content: counter(ol-counter);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  margin-top: 0.1em;
  background: #042062;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .media-detail__body ol li {
    font-size: 1.4rem;
    padding: 1rem 1.2rem;
  }
}
.media-detail__body a {
  color: #042062;
  text-decoration: underline;
  transition: opacity 0.3s;
}
.media-detail__body a:hover {
  opacity: 0.8;
}
.media-detail__body img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
.media-detail__body blockquote {
  margin: 1.6em 0;
  padding: 1.2em 1.6em;
  border-left: 4px solid #042062;
  background: #f5f5f5;
  color: #333;
}
.media-detail__body strong {
  font-weight: 700;
}

.events {
  padding-top: 0rem;
  padding-bottom: 12rem;
  min-height: 100rem;
}
@media (max-width: 767px) {
  .events {
    padding: 0 0 6rem;
    min-height: auto;
  }
}

.events__inner {
  max-width: 114rem;
  padding-top: 0;
}

#events-gasshuku, #events-other {
  margin-top: 10rem;
}

.events__tax-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #ddd;
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .events__tax-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 3rem;
  }
}

.events__tax-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #333;
}
@media (max-width: 767px) {
  .events__tax-title {
    font-size: 2rem;
  }
}

.events__tax-back {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #777;
  text-decoration: none;
  transition: color 0.3s;
}
.events__tax-back:hover {
  color: #0C1E5E;
}

.events__empty {
  padding: 4rem 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #777;
  text-align: center;
  width: 100%;
}

.events__pagination {
  margin-top: 6rem;
  display: flex;
  justify-content: center;
}

.events__breadcrumb {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.5rem 0;
}
@media (max-width: 767px) {
  .events__breadcrumb {
    padding: 1.2rem 0;
  }
}

.events__breadcrumb-link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #333;
  transition: opacity 0.3s;
}
.events__breadcrumb-link:hover {
  opacity: 0.6;
}

.events__breadcrumb-sep {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #555;
  border-right: 1px solid #555;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.events__breadcrumb-current {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #333;
}

#events-matching {
  margin-top: 8rem;
}

.events__nav {
  display: flex;
  gap: 4rem;
  margin-top: 4rem;
  justify-content: center;
}
@media (max-width: 767px) {
  .events__nav {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
  }
}

.events__nav-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29.9rem;
  height: 5.4rem;
  background: linear-gradient(57deg, rgb(9, 19, 89) 32%, rgb(70, 89, 159) 94%);
  border-color: transparent;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.13);
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .events__nav-link {
    width: 100%;
    height: 5rem;
  }
}
.events__nav-link::after {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  right: 0.2rem;
  bottom: 0.2rem;
  border: 0.5px solid transparent;
  border-image: linear-gradient(40deg, rgb(160, 134, 86) 0%, rgb(234, 219, 169) 86%) 1;
  pointer-events: none;
}
.events__nav-link .events__nav-link-text {
  color: #fff;
}
.events__nav-link .events__nav-link-deco::before {
  background: linear-gradient(73deg, rgb(182, 140, 75) 0%, rgb(209, 175, 100) 43%, rgb(235, 209, 149) 99%);
}
.events__nav-link:hover {
  opacity: 0.6;
}

.events__nav-link-deco {
  position: absolute;
  width: 0.89rem;
  height: 0.91rem;
  z-index: 2;
}
.events__nav-link-deco::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 100%, 0 0, 100% 100%);
  background: linear-gradient(73deg, rgb(182, 140, 75) 0%, rgb(209, 175, 100) 43%, rgb(235, 209, 149) 99%);
}
.events__nav-link-deco--tl {
  top: 0.4rem;
  left: 0.4rem;
  transform: rotate(90deg);
}
.events__nav-link-deco--br {
  bottom: 0.4rem;
  right: 0.4rem;
  transform: rotate(-90deg);
}

.events__nav-link-text {
  font-family: "Zen Old Mincho", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #091359;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .events__nav-link-text {
    font-size: 1.6rem;
  }
}

.events__filter-posts[hidden] {
  display: none;
}

.events__section {
  margin-top: 5rem;
}
.events__section[hidden] {
  display: none;
}
@media (max-width: 767px) {
  .events__section {
    margin-top: 3rem;
  }
}

.events__section-heading {
  font-family: "Zen Old Mincho", serif;
  font-size: 3rem;
  font-weight: 700;
  color: #042062;
  line-height: 1.45;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 767px) {
  .events__section-heading {
    font-size: 2.4rem;
  }
}

.events__filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .events__filters {
    gap: 1rem;
    margin-top: 2rem;
  }
}

.events__filter {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24.4rem;
  height: 4.3rem;
  padding: 0 1.6rem;
  background: #fff;
  border: 1px solid #042062;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #042062;
  cursor: pointer;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .events__filter {
    min-width: 0;
    width: calc(50% - 0.5rem);
    height: 4rem;
    font-size: 1.3rem;
  }
}
.events__filter.is-active {
  background: linear-gradient(57deg, rgb(9, 19, 89) 32%, rgb(70, 89, 159) 94%);
  border-color: transparent;
  color: #fff;
}
.events__filter:hover:not(.is-active) {
  opacity: 0.6;
}

.events__posts {
  display: flex;
  flex-wrap: wrap;
  gap: 2.196rem;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .events__posts {
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
  }
}

.events__post {
  width: calc((100% - 4.392rem) / 3);
  background: #fff;
  border-radius: 0.732rem;
  overflow: hidden;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.1);
  padding: 2.928rem;
  display: flex;
  flex-direction: column;
  gap: 2.928rem;
  transition: opacity 0.3s, box-shadow 0.3s;
}
@media (max-width: 767px) {
  .events__post {
    width: 100%;
    padding: 2rem;
    gap: 2rem;
  }
}
.events__post:hover {
  opacity: 0.85;
  box-shadow: 4px 4px 14px 0 rgba(0, 0, 0, 0.15);
}

.events__post-img {
  width: 100%;
  aspect-ratio: 292.8/164.7;
  overflow: hidden;
  border-radius: 0.4rem;
  background: #e8e8e8;
}
.events__post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.events__post:hover .events__post-img img {
  transform: scale(1.04);
}

.events__post-body {
  display: flex;
  flex-direction: column;
  gap: 1.464rem;
}

.events__post-meta {
  display: flex;
  align-items: center;
  gap: 1.098rem;
}

.events__post-category {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.37rem;
  font-weight: 400;
  color: #042062;
  letter-spacing: 0.08em;
  line-height: 1;
}

.events__post-divider {
  display: block;
  width: 0.1rem;
  height: 1.28rem;
  background: #042062;
}

.events__post-date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.19rem;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.08em;
  line-height: 1;
}

.events__post-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #21222A;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .events__post-title {
    font-size: 1.4rem;
  }
}

.events__more {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .events__more {
    margin-top: 3rem;
  }
}

.events__more-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  width: 31.3rem;
  height: 6.94rem;
  background: linear-gradient(59deg, rgb(9, 19, 89) 7%, rgb(70, 89, 159) 94%) padding-box, linear-gradient(4deg, rgb(182, 140, 75) 6%, rgb(209, 175, 100) 30%, rgb(235, 209, 149) 79%) border-box;
  border: 2px solid transparent;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.25);
  transition: opacity 0.3s;
}
.events__more-btn:hover {
  opacity: 0.6;
}
@media (max-width: 767px) {
  .events__more-btn {
    width: 100%;
    height: 6rem;
  }
}

.events__more-btn-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  background: linear-gradient(5deg, rgb(182, 140, 75) 0%, rgb(209, 175, 100) 0%, rgb(235, 209, 149) 65%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
@media (max-width: 767px) {
  .events__more-btn-text {
    font-size: 1.4rem;
  }
}

.events__more-btn-arrow {
  width: 0;
  height: 0;
  border-top: 0.88rem solid transparent;
  border-bottom: 0.88rem solid transparent;
  border-left: 0.88rem solid #fff;
  flex-shrink: 0;
}

.ed-article {
  padding: 0 0 10rem;
}
@media (max-width: 767px) {
  .ed-article {
    padding: 0 0 6rem;
  }
}

.ed-article__inner {
  max-width: 110rem;
  padding: 4rem 3.2rem 0;
}
@media (max-width: 767px) {
  .ed-article__inner {
    padding: 3rem 1.6rem 0;
  }
}

.ed-article__header {
  margin-bottom: 2.4rem;
}

.ed-article__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ed-article__tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  background: #0C1E5E;
  padding: 0.4rem 0.8rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .ed-article__tag {
    font-size: 1.2rem;
  }
}

.ed-article__date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #777;
}
@media (max-width: 767px) {
  .ed-article__date {
    font-size: 1.2rem;
  }
}

.ed-article__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  margin-top: 2.4rem;
}
@media (max-width: 767px) {
  .ed-article__title {
    font-size: 2rem;
  }
}

.ed-article__eyecatch {
  width: 100%;
  aspect-ratio: 1100/592;
  overflow: hidden;
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
}
.ed-article__eyecatch .rd-article__video-wrap {
  height: 100%;
}
.ed-article__eyecatch iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  vertical-align: top;
}
.ed-article__eyecatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ed-article__eyecatch--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}
.ed-article__eyecatch--logo .ed-article__eyecatch-img--logo {
  width: auto;
  max-width: 60%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}
@media (max-width: 767px) {
  .ed-article__eyecatch {
    margin-bottom: 2.4rem;
  }
}
.ed-article__eyecatch-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.ed-article__eyecatch-link img {
  transition: opacity 0.4s ease;
}
.ed-article__eyecatch-link:hover img {
  opacity: 0.7;
}
.ed-article__eyecatch-link:hover .ed-article__eyecatch-play {
  background: rgba(0, 0, 0, 0.7);
}
.ed-article__eyecatch-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8rem;
  height: 8rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  pointer-events: none;
  transition: background 0.4s ease;
}
.ed-article__eyecatch-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 1.3rem 0 1.3rem 2.2rem;
  border-color: transparent transparent transparent #fff;
}
@media (max-width: 767px) {
  .ed-article__eyecatch-play {
    width: 6rem;
    height: 6rem;
  }
  .ed-article__eyecatch-play::after {
    border-width: 1rem 0 1rem 1.8rem;
  }
}

.ed-section {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-top: 4.4rem;
}
@media (max-width: 767px) {
  .ed-section {
    margin-top: 3rem;
    gap: 2rem;
  }
}

.ed-item {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 2.4rem;
}
@media (max-width: 767px) {
  .ed-item {
    gap: 1.2rem;
    margin-top: 0.2rem;
  }
}

.ed-h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  padding-bottom: 1.2rem;
  border-bottom: 2px solid #999;
}
@media (max-width: 767px) {
  .ed-h2 {
    font-size: 2rem;
  }
}

.ed-h3-wrap {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.ed-h3__line {
  display: block;
  width: 0;
  height: 2.8rem;
  border-left: 4px solid #999;
  flex-shrink: 0;
}

.ed-h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
}
@media (max-width: 767px) {
  .ed-h3 {
    font-size: 1.8rem;
  }
}

.ed-h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
}
@media (max-width: 767px) {
  .ed-h4 {
    font-size: 1.6rem;
  }
}

.ed-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
}
@media (max-width: 767px) {
  .ed-text {
    font-size: 1.4rem;
  }
}

.ed-article__lead-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  margin-bottom: 5.6rem;
}
@media (max-width: 767px) {
  .ed-article__lead-text {
    font-size: 1.4rem;
    margin-bottom: 4rem;
  }
}

.ed-article__body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  color: #333;
}
@media (max-width: 767px) {
  .ed-article__body {
    font-size: 1.4rem;
  }
}
.ed-article__body > * + * {
  margin-top: 1.6em;
}
.ed-article__body p {
  margin: 0;
}
.ed-article__body p + p {
  margin-top: 1em;
}
.ed-article__body h2 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  margin-top: 6.4rem;
  margin-bottom: 2.4rem;
  padding-bottom: 1.6rem;
  border-bottom: 2px solid #999;
}
.ed-article__body h2:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .ed-article__body h2 {
    font-size: 2rem;
  }
}
.ed-article__body h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  margin-top: 4.4rem;
  margin-bottom: 1.6rem;
  padding-left: 2rem;
  border-left: 4px solid #999;
}
.ed-article__body h3:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .ed-article__body h3 {
    font-size: 1.7rem;
  }
}
.ed-article__body h4 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  margin-top: 1.6em;
  margin-bottom: 0.4em;
}
@media (max-width: 767px) {
  .ed-article__body h4 {
    font-size: 1.5rem;
  }
}
.ed-article__body ul,
.ed-article__body ol {
  margin: 2rem 0;
  padding: 0;
}
.ed-article__body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ed-article__body ul li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fafafa;
  border-left: 3px solid #0C1E5E;
  padding: 1.2rem 1.6rem;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
}
.ed-article__body ul li::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  margin-top: 0.1em;
  background: #0C1E5E;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}
@media (max-width: 767px) {
  .ed-article__body ul li {
    font-size: 1.4rem;
    padding: 1rem 1.2rem;
  }
}
.ed-article__body ol {
  list-style: none;
  counter-reset: ol-counter;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ed-article__body ol li {
  counter-increment: ol-counter;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem 1.6rem;
  background: #fafafa;
  border-left: 3px solid #0C1E5E;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
}
.ed-article__body ol li::before {
  content: counter(ol-counter);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  margin-top: 0.1em;
  background: #0C1E5E;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .ed-article__body ol li {
    font-size: 1.4rem;
    padding: 1rem 1.2rem;
  }
}
.ed-article__body a {
  color: #091359;
  text-decoration: underline;
  transition: opacity 0.3s;
}
.ed-article__body a:hover {
  opacity: 0.8;
}
.ed-article__body img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
.ed-article__body blockquote {
  margin: 1.6em 0;
  padding: 1.2em 1.6em;
  border-left: 4px solid #091359;
  background: #f5f5f5;
  color: #333;
}
.ed-article__body strong {
  font-weight: 700;
}

.page-head--news {
  background: linear-gradient(59deg, rgb(9, 19, 89) 7%, rgb(70, 89, 159) 94%);
}

.news-archive {
  padding: 0 0 10rem;
}
@media (max-width: 767px) {
  .news-archive {
    padding: 0 0 6rem;
  }
}

.news-archive__inner {
  max-width: 114rem;
  padding-top: 0;
}

.news-archive__heading {
  position: relative;
  text-align: center;
  margin-top: 9rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .news-archive__heading {
    margin-top: 5rem;
    margin-bottom: 3rem;
  }
}

.news-archive__heading-en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 12.4rem;
  font-weight: 400;
  color: rgba(2, 32, 99, 0.06);
  line-height: 0.84;
  text-align: center;
  user-select: none;
  pointer-events: none;
}
@media (max-width: 767px) {
  .news-archive__heading-en {
    font-size: 7.5rem;
  }
}

.news-archive__heading-ja {
  font-family: "Zen Old Mincho", serif;
  font-size: 4rem;
  font-weight: 400;
  color: #091359;
  line-height: 1;
  text-align: center;
  margin-top: -0.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .news-archive__heading-ja {
    font-size: 2.8rem;
  }
}

.news-archive__list {
  list-style: none;
  border-top: 1px solid #E0E0E0;
}

.news-archive__item {
  border-bottom: 1px solid #E0E0E0;
}

.news-archive__link {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.4rem 1.6rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
  position: relative;
}
.news-archive__link:hover {
  background: #f7f7f7;
}
@media (max-width: 767px) {
  .news-archive__link {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem 1.2rem;
  }
}

.news-archive__meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .news-archive__meta {
    gap: 1rem;
  }
}

.news-archive__date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  color: #888;
  white-space: nowrap;
}

.news-archive__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #0C1E5E;
  border: 1px solid #0C1E5E;
  padding: 0.2rem 1rem;
  white-space: nowrap;
  line-height: 1.6;
}

.news-archive__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  flex: 1;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .news-archive__title {
    font-size: 1.4rem;
    width: 100%;
  }
}

.news-archive__arrow {
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1.5px solid #A08656;
  border-right: 1.5px solid #A08656;
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-right: 0.4rem;
}

.news-archive__pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 5rem;
  flex-wrap: wrap;
}

.news-archive__pager-numbers {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.news-archive__pager-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: #0C1E5E;
  text-decoration: none;
  border: 1px solid transparent;
  transition: border-color 0.2s;
}
.news-archive__pager-num:hover, .news-archive__pager-num.is-active {
  border-color: #0C1E5E;
}
.news-archive__pager-num.is-active {
  font-weight: 700;
  pointer-events: none;
}

.news-archive__pager-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid #0C1E5E;
  position: relative;
  text-decoration: none;
}
.news-archive__pager-next::after {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1.5px solid #0C1E5E;
  border-right: 1.5px solid #0C1E5E;
  transform: rotate(45deg);
}
.news-archive__pager-next:hover {
  background: #0C1E5E;
}
.news-archive__pager-next:hover::after {
  border-color: #fff;
}

.news-article__header {
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 2.4rem;
  margin-bottom: 3.2rem;
}

.news-article__meta {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.news-article__date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  color: #888;
}

.page-head--404 {
  background: linear-gradient(135deg, #091359 0%, #46599F 100%);
}

.error404 {
  padding: 10rem 0 12rem;
}
@media (max-width: 767px) {
  .error404 {
    padding: 6rem 0 8rem;
  }
}

.error404__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.error404__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #091359;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .error404__title {
    font-size: 2rem;
  }
}

.error404__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #555;
  line-height: 1.8;
  margin-bottom: 4.8rem;
}
@media (max-width: 767px) {
  .error404__text {
    font-size: 1.4rem;
    margin-bottom: 4rem;
  }
}

.error404__btn {
  width: 28rem;
}
@media (max-width: 767px) {
  .error404__btn {
    width: 22rem;
  }
}/*# sourceMappingURL=style.css.map */