/* Font Face Definitions */
@font-face {
  font-family: "EBGaramond";
  src: url("./fonts/EBGaramond-Medium.woff") format("woff");
  font-weight: 500;
}

@font-face {
  font-family: "ZenOldMincho";
  src: url("./fonts/ZenOldMincho-Medium.woff") format("woff");
  font-weight: 500;
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("./fonts/NotoSansJP-Medium.woff") format("woff");
  font-weight: 500;
}

/* Tailwind Breakpoints */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.l-container {
  max-width: 1148px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.sp-none {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp-none {
    display: block;
  }
}

.pc-none {
  display: block;
}

@media screen and (min-width: 768px) {
  .pc-none {
    display: none;
  }
}

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

.header__container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (min-width: 1024px) {
  .header__container {
    height: 93px;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  margin: 0;
}

.header__logo a {
  display: block;
  line-height: 1;
}

.header__logo img {
  height: 40px;
  margin-bottom: 0;
  width: auto;
}

@media screen and (min-width: 1024px) {
  .header__logo img {
    margin-bottom: 8px;
  }
}

.header__nav {
  display: none;
}

@media screen and (min-width: 1024px) {
  .header__nav {
    display: block;
    margin-left: auto;
    margin-right: 15px;
  }
}

.header__list {
  display: flex;
  align-items: center;
  gap: 0px;
}

@media screen and (min-width: 1280px) {
  .header__list {
    gap: 15px;
  }
}

.header__item {
  font-weight: 500;
  white-space: nowrap;
}

.header__item a {
  padding: 10px 10px;
}

@media screen and (min-width: 1280px) {
  .header__item a {
    padding: 10px 15px;
  }
}

.header__action {
  display: none;
}

@media screen and (min-width: 1024px) {
  .header__action {
    display: block;
  }
}

.header__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #013692;
  color: #fff;
  border: 1px solid #013692;
  padding: 15px 20px;
  border-radius: 99px;
  font-weight: bold;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s;
}

@media screen and (min-width: 1280px) {
  .header__contact {
    padding: 15px 32px;
  }
}

.header__contact::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
  transition: filter 0.3s;
  margin-top: 1px;
}

@media screen and (min-width: 1280px) {
  .header__contact::before {
    margin-right: 15px;
  }
}

.header__contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.header__contact:hover {
  color: #013692;
  opacity: 1;
}

.header__contact:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23013692'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.header__contact:hover::after {
  transform: scale(1, 1);
}

.header__hamburger {
  display: block;
  width: 60px;
  height: 60px;
  background-color: #013692;
  border: none;
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  padding: 0;
  z-index: 2000;
}

@media screen and (min-width: 1024px) {
  .header__hamburger {
    display: none;
  }
}

.header__hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
}

.header__hamburger span:nth-child(1) {
  top: 19px;
}

.header__hamburger span:nth-child(2) {
  top: 29px;
}

.header__hamburger span:nth-child(3) {
  top: 39px;
}

.header__hamburger.is-active span:nth-child(1) {
  top: 29px;
  transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active span:nth-child(3) {
  top: 29px;
  transform: translateX(-50%) rotate(-45deg);
}

.header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 220ms ease;
  z-index: 1200;
  /* Below menu (1500), below hamburger (2000) */
  pointer-events: none;
}

.header__overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.header__mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  width: 90%;
  height: 100vh;
  background-color: #e8f0f5;
  padding: 120px 0 40px;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 420px;
}

.header__mobile-menu.is-active {
  transform: translateX(0);
}

@media screen and (min-width: 1024px) {
  .header__mobile-menu {
    display: none;
  }
}

.header__mobile-nav {
  width: 100%;
}

.header__mobile-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  width: 100%;
}

.header__mobile-item {
  border: none;
  width: 100%;
  text-align: center;
}

.header__mobile-link {
  display: block;
  padding: 5px 0;
  font-weight: 500;
  text-align: center;
  color: #333;
  font-size: 16px;
}

.header__mobile-link--contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #013692;
  color: #fff;
  border: 1px solid #013692;
  padding: 20px 80px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s;
  box-shadow: 0 4px 10px rgba(1, 54, 146, 0.2);
}

.header__mobile-link--contact::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 15px;
  transition: filter 0.3s;
}

.header__mobile-link--contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.header__mobile-link--contact:hover {
  color: #013692;
  opacity: 1;
}

.header__mobile-link--contact:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23013692'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.header__mobile-link--contact:hover::after {
  transform: scale(1, 1);
}

main {
  width: 100%;
  overflow: hidden;
}

.fv {
  position: relative;
  width: 100%;
  margin-top: 60px;
  height: calc(95vh - 60px);
  padding-bottom: 50px;
}

@media screen and (min-width: 640px) {
  .fv {
    height: calc(100vh - 60px);
  }
}

@media screen and (min-width: 1024px) {
  .fv {
    padding-bottom: 0;
    height: calc(100vh - 93px);
    margin-top: 93px;
  }
}

.fv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.fv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
}

.fv__shape {
  position: absolute;
  top: auto;
  bottom: 0;
  right: -100%;
  width: 70%;
  height: 75%;
  z-index: -1;
  background: linear-gradient(135deg, #013897 0%, #001231 100%);
  transform: skewX(-50deg);
  transform-origin: top right;
  pointer-events: none;
}

@media screen and (min-width: 1024px) {
  .fv__shape {
    width: 50%;
    right: -50%;
    height: 100%;
    transform: skewX(-50deg);
    bottom: auto;
    top: 0;
  }
}

.fv__container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
}

.fv__content {
  display: flex;
  flex-direction: column;
  padding-top: 80px;
}

@media screen and (min-width: 1024px) {
  .fv__content {
    flex-direction: row;
    height: 100%;
    align-items: center;
    padding-top: 0;
  }
}

.fv__content-left {
  width: 100%;
  z-index: 1;
}

@media screen and (min-width: 1024px) {
  .fv__content-left {
    width: 50%;
  }
}

.fv__title {
  margin-bottom: 30px;
  text-align: center;
}

.fv__title img {
  width: 100%;
  max-width: 640px;
  filter: drop-shadow(1px 1px 2px rgba(255, 255, 255, 0.8));
}

.fv__banner {
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .fv__banner {
    text-align: left;
  }
}

.fv__banner img {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(1px 1px 2px rgba(255, 255, 255, 0.8));
}

@media screen and (min-width: 1024px) {
  .fv__banner img {
    max-width: 480px;
  }
}

.fv__content-right {
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
}

@media screen and (min-width: 1024px) {
  .fv__content-right {
    width: 50%;
    height: 100%;
    position: static;
    margin-top: 0;
    align-items: flex-end;
  }
}

.fv__person {
  width: 80%;
  max-width: 520px;
}

.fv__person img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (min-width: 1024px) {
  .fv__person {
    width: 50%;
    max-height: 100%;
    max-width: none;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}

@media screen and (min-width: 1536px) {
  .fv__person {
    right: 0;
  }
}

.p-threat {
  position: relative;
  width: 100%;
  padding: 60px 0 80px;
  background: radial-gradient(circle at center, #1b3a8a 0%, #0d1b44 100%);
  color: #fff;
  overflow: hidden;
  margin-top: -1px;
}

@media screen and (min-width: 640px) {
  .p-threat {
    padding: 60px 0 120px;
  }
}

@media screen and (min-width: 1024px) {
  .p-threat {
    padding: 100px 0 120px;
  }
}

.p-threat__title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 3;
}

.p-threat__title img {
  width: 100%;
  height: 150px;
}

.p-threat__content {
  margin-bottom: 60px;
}

.p-threat__image {
  position: absolute;
  top: 0;
  z-index: 1;
}

.p-threat__image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-threat__image--left {
  display: none;
}

@media screen and (min-width: 1024px) {
  .p-threat__image--left {
    display: block;
    left: 0;
    width: 17%;
    top: 20%;
  }
}

.p-threat__image--right {
  display: none;
}

@media screen and (min-width: 1024px) {
  .p-threat__image--right {
    display: block;
    right: 0;
    width: 20%;
    top: 10%;
    opacity: 0.8;
  }
}

.p-threat__image--sp {
  position: relative;
  display: block;
  margin: 0 auto 40px;
  width: 100%;
  max-width: 500px;
  opacity: 1;
}

@media screen and (min-width: 1024px) {
  .p-threat__image--sp {
    display: none;
  }
}

.p-threat__text-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

@media screen and (min-width: 1024px) {
  .p-threat__text-wrapper {
    width: 60%;
  }
}

@media screen and (min-width: 1280px) {
  .p-threat__text-wrapper {
    width: 68%;
  }
}
@media screen and (min-width: 1536px) {
  .p-threat__text-wrapper {
    width: 70%;
  }
}

.p-threat__text {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 30px;
  letter-spacing: 0.04em;
  text-align: left;
}

@media screen and (min-width: 1024px) {
  .p-threat__text {
    font-size: 18px;
    line-height: 2.2;
    margin-bottom: 40px;
  }
}

.p-threat__video {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.p-threat__video::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.p-threat__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 1024px) {
  .p-threat__video {
    width: 60%;
  }
}

@media screen and (min-width: 1280px) {
  .p-threat__video {
    width: 70%;
  }
}

.c-section-title,
.p-steps__title-area,
.p-program__title-area,
.p-case__title-area {
  text-align: center;
  margin-bottom: 60px;
}

.c-section-title__en,
.p-steps__title-en,
.p-program__title-en,
.p-case__title-en {
  color: #013692;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin: 0 0 10px;
  font-family: "EBGaramond", serif;
  font-size: 20px;
}

.c-section-title__jp,
.p-steps__title-jp,
.p-program__title-jp,
.p-case__title-jp {
  font-size: 28px;
  margin: 0;
  font-family: "ZenOldMincho", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media screen and (min-width: 768px) {

  .c-section-title__jp,
  .p-steps__title-jp,
  .p-program__title-jp,
  .p-case__title-jp {
    font-size: 32px;
  }
}

@media screen and (min-width: 1024px) {

  .c-section-title__jp,
  .p-steps__title-jp,
  .p-program__title-jp,
  .p-case__title-jp {
    font-size: 48px;
  }
}

.p-case {
  padding: 60px 0;
  background-color: #fff;
}

@media screen and (min-width: 1024px) {
  .p-case {
    padding: 100px 0;
  }
}

.p-case__list {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.p-case__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width: 1024px) {
  .p-case__item {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }
}

.p-case__img {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .p-case__img {
    width: 55%;
  }
}

.p-case__img img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 5px;
}

@media screen and (min-width: 768px) {
  .p-case__img img {
    margin-bottom: 15px;
  }
}

.p-case__caption {
  font-size: 12px;
  margin: 0;
  text-align: left;
}

.p-case__info {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .p-case__info {
    width: 45%;
  }
}

.p-case__number,
.p-steps__label {
  color: #013692;
  font-weight: bold;
  font-size: 16px;
  margin: 0 0 5px;
  letter-spacing: 0.05em;
  font-family: "EBGaramond", "ZenOldMincho", serif;
}

@media screen and (min-width: 768px) {

  .p-case__number,
  .p-steps__label {
    font-size: 18px;
  }
}

.p-case__heading,
.p-steps__heading {
  font-size: 22px;
  margin: 0 0 20px;
  font-weight: 500;
  font-family: "EBGaramond", "ZenOldMincho", serif;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {

  .p-case__heading,
  .p-steps__heading {
    font-size: 24px;
    margin-bottom: 35px;
  }
}

.p-case__text,
.p-steps__desc {
  line-height: 2;
  text-align: justify;
  margin: 0;
}

.p-points {
  padding: 60px 0;
  background: #013692;
  color: #fff;
  overflow: hidden;
}

@media screen and (min-width: 1024px) {
  .p-points {
    padding: 100px 0;
  }
}

.p-points__title-area {
  text-align: center;
  margin-bottom: 0;
}

.p-points__title-en {
  color: #fff;
  letter-spacing: 0.1em;
  font-family: "EBGaramond", serif;
  margin-bottom: 10px;
  font-size: 20px;
}

.p-points__title-jp {
  font-size: 28px;
  line-height: 1.3;
  font-family: "ZenOldMincho", serif;
  font-weight: 500;
  margin-bottom: 30px;
  display: inline-block;
  position: relative;
  padding-bottom: 32px;
}

@media screen and (min-width: 768px) {
  .p-points__title-jp {
    font-size: 36px;
  }
}

.p-points__title-jp::after {
  content: "";
  display: block;
  width: 100%;
  height: 20px;
  background: url(../img/point-arrow.svg) no-repeat center bottom/contain;
  position: absolute;
  bottom: 0;
  left: 0;
}

.p-points__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media screen and (min-width: 1024px) {
  .p-points__list {
    flex-direction: row;
    gap: 70px;
    align-items: flex-start;
  }
}

.p-points__item {
  flex: 1;
  text-align: center;
}

.p-points__label {
  font-size: 13px;
  letter-spacing: 0.15em;
  font-family: "EBGaramond", serif;
  margin-bottom: 30px;
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .p-points__label {
    margin-bottom: 20px;
  }
}

.p-points__heading-wrap {
  position: relative;
  height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.p-points__number {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "EBGaramond", serif;
  font-size: 120px;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  z-index: 1;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .p-points__number {
    bottom: -8px;
  }
}

.p-points__title {
  position: relative;
  z-index: 2;
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
  height: 56px;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .p-points__title {
    font-size: 22px;
    height: 62px;
  }
}

.p-points__text {
  line-height: 1.8;
  text-align: left;
  display: inline-block;
}

.p-cta-inter {
  padding: 80px 0;
  text-align: center;
  border-top: 5px solid #013692;
  border-bottom: 5px solid #013692;
  background-color: #fff;
  color: #333;
}

.p-cta-inter__text {
  font-family: "ZenOldMincho", serif;
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 40px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 1024px) {
  .p-cta-inter__text {
    font-size: 24px;
    line-height: 2;
  }
}

.p-cta-inter__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #013692;
  color: #fff;
  border: 1px solid #013692;
  padding: 20px 60px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s;
  box-shadow: 0 4px 10px rgba(1, 54, 146, 0.2);
  width: 100%;
}

@media screen and (min-width: 640px) {
  .p-cta-inter__btn {
    width: 80%;
    font-size: 20px;
  }
}

.p-cta-inter__btn::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
  transition: filter 0.3s;
  background-position: center;
  margin-top: 2px;
}

.p-cta-inter__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.p-cta-inter__btn:hover {
  color: #013692;
  opacity: 1;
}

.p-cta-inter__btn:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23013692'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.p-cta-inter__btn:hover::after {
  transform: scale(1, 1);
}

.p-program {
  padding: 60px 0;
  background-color: #e8f0f5;
}

@media screen and (min-width: 1024px) {
  .p-program {
    padding: 100px 0;
  }
}

.p-program__box {
  background-color: #fff;
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: 40px 24px;
}

@media screen and (min-width: 1024px) {
  .p-program__box {
    padding: 55px 110px;
    margin-bottom: 60px;
  }
}

.p-program__item {
  margin-bottom: 60px;
}

.p-program__item:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 1024px) {
  .p-program__item {
    margin-bottom: 100px;
  }
}

.p-program__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 25px;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .p-program__head {
    flex-direction: row;
    align-items: center;
  }
}

.p-program__number {
  font-family: "EBGaramond", serif;
  font-size: 40px;
  color: #013692;
  margin-bottom: 10px;
  line-height: 1;
}

@media screen and (min-width: 1024px) {
  .p-program__number {
    font-size: 36px;
    margin-bottom: 0;
    margin-right: 20px;
  }
}

.p-program__heading {
  font-family: "ZenOldMincho", serif;
  font-size: 24px;
  font-weight: 500;
  margin: 0;
}

@media screen and (min-width: 1024px) {
  .p-program__heading {
    font-size: 34px;
  }
}

.p-program__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (min-width: 1024px) {
  .p-program__body {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
}

.p-program__img {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .p-program__img {
    width: 50%;
  }
}

.p-program__img img {
  width: 100%;
  height: auto;
  position: relative;
  display: block;
}

.p-program__desc {
  width: 100%;
  line-height: 2;
  margin: 0;
}

@media screen and (min-width: 1024px) {
  .p-program__desc {
    width: 50%;
  }
}

.p-steps {
  padding: 60px 0;
  color: #333;
  background-color: #fff;
}

@media screen and (min-width: 1024px) {
  .p-steps {
    padding: 100px 0;
  }
}

.p-steps__container {
  max-width: 911px;
  margin: 0 auto;
  padding: 0 24px;
}

.p-steps__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.p-steps__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-steps__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .p-steps__content {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }
}

.p-steps__img {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .p-steps__img {
    width: 35%;
  }
}

.p-steps__img img {
  width: 100%;
  height: auto;
  display: block;
}

.p-steps__body {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .p-steps__body {
    width: 65%;
  }
}

.p-steps__label {
  display: block;
  margin-bottom: 10px;
}

.p-steps__heading {
  margin: 0 0 20px;
}

.p-steps__desc {
  text-align: justify;
}

.p-steps__arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 15px 0 15px;
  border-color: #013692 transparent transparent transparent;
  margin: 40px auto;
}

.p-contact {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.p-contact__bg {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 0;
}

.p-contact__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.p-contact__bg-item {
  background-size: cover;
  background-position: center;
}

.p-contact__bg-item--pc {
  display: none;
  width: 25%;
  aspect-ratio: 9/16;
  min-height: 400px;
}

@media screen and (min-width: 768px) {
  .p-contact__bg-item--pc {
    display: block;
    height: 500px;
    min-height: auto;
    aspect-ratio: auto;
    background-position: 50% 10%;
  }
}

.p-contact__bg-item--sp {
  display: block;
  width: 100%;
  aspect-ratio: 5/3;
}

@media screen and (min-width: 768px) {
  .p-contact__bg-item--sp {
    display: none;
  }
}

.p-contact__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-contact__wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 25px;
  color: #fff;
  margin-bottom: 25px;
}

@media screen and (min-width: 768px) {
  .p-contact__wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 0;
  }
}

.p-contact__text-area {
  text-align: left;
}

@media screen and (min-width: 768px) {
  .p-contact__text-area {
    text-align: left;
  }
}

.p-contact__title {
  font-family: "EBGaramond", serif;
  font-size: 40px;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .p-contact__title {
    font-size: 76px;
    margin-top: 0;
  }
}

.p-contact__text {
  font-family: "ZenOldMincho", serif;
  line-height: 1.8;
  font-weight: 500;
  font-size: 16px;
}

.p-contact__btn {
  width: 110px;
  height: 110px;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  gap: 5px;
  transition: border-color 0.6s cubic-bezier(0, 0, 0.5, 1);
  background-color: rgba(255, 255, 255, 0.05);
  position: absolute;
  right: 20px;
  bottom: 20px;
  border: 1px solid;
  overflow: hidden;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .p-contact__btn {
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    width: 238px;
    height: 238px;
    gap: 15px;
    position: relative;
    right: auto;
    bottom: auto;
    align-self: flex-end;
  }

  .p-contact__btn .c-shine {
    display: none;
  }
}

.p-contact__btn:hover {
  opacity: 1;
}

.p-contact__btn-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: none;
}

.p-contact__btn-circle svg {
  width: 100%;
  height: 100%;
  display: block;
  animation: rotate-circle 40s linear infinite;
}

.p-contact__btn-circle circle {
  transition: stroke-dashoffset 0.6s cubic-bezier(0, 0, 0.5, 1);
  stroke-dasharray: 307.8;
  stroke-dashoffset: 0;
  stroke-dasharray: 2 2;
  stroke-width: 0.5px;
}

@media screen and (min-width: 768px) {
  .p-contact__btn-circle {
    display: block;
  }

  .p-contact__btn-circle svg {
    animation: none;
  }

  .p-contact__btn-circle circle {
    stroke-dasharray: 307.8;
    stroke-dashoffset: 307.8;
    stroke-width: 1px;
  }
}

@media (hover: hover) {
  .p-contact__btn:hover .p-contact__btn-circle circle {
    stroke-dashoffset: 0;
  }
}

.p-contact__btn-text {
  font-family: "ZenOldMincho", serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .p-contact__btn-text {
    font-size: 20px;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__btn-text {
    display: block;
  }
}

.p-contact__btn-arrow {
  position: relative;
  z-index: 2;
}

.p-contact__btn-arrow svg {
  width: 20px;
  height: 20px;
}

.footer {
  background-color: #013692;
  color: #fff;
  padding: 60px 0;
}

@media screen and (min-width: 1024px) {
  .footer {
    padding: 80px 0;
  }
}

.footer__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

@media screen and (min-width: 1024px) {
  .footer__top {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 80px;
    align-items: center;
  }
}

.footer__logo {
  width: 200px;
}

.footer__logo img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer__nav {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .footer__nav {
    width: auto;
  }
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

@media screen and (min-width: 1024px) {
  .footer__list {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
}

.footer__link {
  color: #fff;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

@media screen and (min-width: 768px) {
  .footer__bottom {
    gap: 20px;
    padding-top: 40px;
  }
}

@media screen and (min-width: 1024px) {
  .footer__bottom {
    flex-direction: column;
    align-items: flex-end;
    border-top: none;
    padding-top: 0;
    gap: 10px;
  }
}

.footer__privacy {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  opacity: 0.8;
  font-family: "ZenOldMincho", serif;
}

.footer__privacy:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer__copyright {
  margin: 0;
  font-size: 12px;
  opacity: 0.8;
  font-family: "EBGaramond", serif;
}

.pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #fff;
  opacity: 1;
  transition: opacity 0.3s;
}

.pagetop:hover {
  opacity: 0.8;
}

.pagetop__text {
  font-family: "EBGaramond", serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #013692;
}

.pagetop__circle {
  width: 28px;
  height: 37px;
  background-color: #fff;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #013692;
}

.pagetop__circle svg {
  width: 14px;
  height: 14px;
}

@keyframes rotate-circle {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes shine {
  20% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

.c-shine {
  animation: 2s 0s shine linear infinite;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 75%);
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transform: skewX(-15deg);
  width: 100%;
  pointer-events: none;
  z-index: 10;
}