*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #1b1b1b;
  background-color: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

.l-wrapper {
  display: flex;
  align-items: flex-start;
  min-height: 100vh;
}

.l-header {
  display: none;
}
@media (max-width: 639px) {
  .l-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 60px;
    background-color: #fffff8;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 150;
  }
}
.l-header__name {
  font-size: 21px;
  color: #016a82;
  line-height: 1;
  text-align: center;
}
.l-header__sub {
  font-size: 9.5px;
  color: #016a82;
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
  text-align: center;
}
.l-header__sub em {
  font-size: 10px;
  font-style: normal;
  color: #fa6909;
}
.l-header__namebox {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.l-header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
}
.l-header__logo:hover {
  opacity: 0.85;
}
.l-header__logo img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  flex-shrink: 0;
}

.l-sidebar {
  width: 300px;
  flex-shrink: 0;
  background-color: #016a82;
  min-height: 100vh;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (max-width: 639px) {
  .l-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    width: 100%;
    padding-top: 60px;
  }
  .l-sidebar.is-open {
    transform: translateX(0);
  }
}

.l-sidebar__toggle {
  display: none;
  width: 44px;
  height: 44px;
  background-color: transparent;
  border-radius: 5px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  background-color: #016a82;
}
@media (max-width: 639px) {
  .l-sidebar__toggle {
    display: flex;
  }
}
.l-sidebar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.l-sidebar__toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.l-sidebar__toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.l-sidebar__toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 639px) {
  .l-sidebar .p-logo {
    display: none;
  }
}

.l-sidebar__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
}
.l-sidebar__overlay.is-active {
  display: block;
}

.l-main {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
@media (max-width: 639px) {
  .l-main {
    width: 100%;
    padding-top: 60px;
  }
}

.l-footer {
  background-color: #fafafa;
  padding: 100px 10%;
}
@media (max-width: 639px) {
  .l-footer {
    padding: 40px 20px;
  }
}

.l-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}
@media (max-width: 639px) {
  .l-footer__inner {
    flex-direction: column;
  }
}

.l-footer__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.l-footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}
@media (max-width: 639px) {
  .l-footer__right {
    align-items: flex-start;
    width: 100%;
  }
}

.l-footer__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.l-footer__addr {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.l-footer__email {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #1b1b1b;
}

.l-footer__email-icon {
  width: 12.5px;
  height: 14px;
  flex-shrink: 0;
}

.l-footer__nav {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 14px;
  color: #1b1b1b;
}

.l-footer__nav-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 639px) {
  .l-footer__nav-list {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 639px) {
  .l-footer__nav-item {
    border-bottom: 1px solid #ddd;
  }
  .l-footer__nav-item:first-child {
    border-top: 1px solid #ddd;
  }
}

.l-footer__nav-link {
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
@media (max-width: 639px) {
  .l-footer__nav-link {
    justify-content: space-between;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    padding: 20px 0;
    transition: all 0.2s;
  }
  .l-footer__nav-link:hover {
    opacity: 0.75;
  }
  .l-footer__nav-link:hover .l-footer__nav-link-arrow {
    transform: translateX(4px);
  }
}
.l-footer__nav-link:hover {
  color: #016a82;
}

.l-footer__nav-link-arrow {
  display: none;
  flex-shrink: 0;
  transition: transform 0.2s;
}
@media (max-width: 639px) {
  .l-footer__nav-link-arrow {
    display: block;
  }
}

.l-footer__cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 240px;
}
@media (max-width: 639px) {
  .l-footer__cta {
    width: 100%;
    display: flex;
  }
}

@media (max-width: 639px) {
  .l-footer__ctasp {
    width: 100%;
  }
  .l-footer__ctasp a + a {
    margin-top: 20px;
  }
}

.l-footer__form {
  width: 100%;
}
.l-footer__form-embed {
  width: 100%;
  height: 3949px;
  border: none;
  display: block;
}

.l-footer__copyright {
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  color: rgba(27, 27, 27, 0.5);
  text-align: right;
  white-space: nowrap;
}
@media (max-width: 639px) {
  .l-footer__copyright {
    text-align: center;
    width: 100%;
    white-space: normal;
  }
}

.c-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-radius: 5px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  transition: all 0.3s;
}
.c-button__arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s;
}
.c-button__arrow::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../img/arrow-white.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.c-button--primary {
  background-color: #fa6909;
  border: 1px solid #fa6909;
  color: #ffffff;
}
.c-button--primary:hover {
  background-color: #ffffff;
  color: #fa6909;
}
.c-button--primary:hover .c-button__arrow {
  margin-right: 10px;
}
.c-button--primary:hover .c-button__arrow::after {
  background-image: url("../img/arrow-orange.svg");
}
.c-button--outline {
  background-color: #ffffff;
  border: 1px solid #fa6909;
  color: #fa6909;
}
.c-button--outline .c-button__arrow::after {
  background-image: url("../img/arrow-orange.svg");
}
.c-button--outline:hover {
  background-color: #fa6909;
  color: #ffffff;
}
.c-button--outline:hover .c-button__arrow {
  margin-right: 10px;
}
.c-button--outline:hover .c-button__arrow::after {
  background-image: url("../img/arrow-white.svg");
}
.c-button--teal {
  background-color: #016a82;
  border: 1px solid #016a82;
  color: #ffffff;
  border-radius: 2px;
  font-weight: 500;
  padding: 15px 20px;
  width: fit-content;
  min-width: 205px;
  transition: all 0.3s;
}
.c-button--teal:hover {
  background-color: #ffffff;
  color: #016a82;
}
.c-button--teal:hover .c-button__arrow {
  margin-right: 10px;
}
.c-button--teal:hover .c-button__arrow::after {
  background-image: url("../img/arrow-teal.svg");
}
@media (max-width: 639px) {
  .c-button--teal {
    width: auto;
  }
}

.c-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 15px 4px;
  border: 1px solid #016a82;
  border-radius: 3px;
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #016a82;
  white-space: nowrap;
  flex-shrink: 0;
}

.c-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 28px;
  color: #1b1b1b;
  line-height: 1;
}
.c-section-title__icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  position: relative;
}
.c-section-title__icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #016a82;
}
.c-section-title__icon::after {
  content: "";
  display: block;
  width: 55%;
  height: 55%;
  border-radius: 50%;
  background-color: #1892ae;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-card {
  background-color: #ffffff;
  border: 2px solid rgba(1, 106, 130, 0.25);
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding-top: 33px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
@media (max-width: 639px) {
  .c-card {
    padding-top: 20px;
  }
}
.c-card:hover {
  border-color: #016a82;
  box-shadow: 0 4px 20px rgba(1, 106, 130, 0.15);
}
.c-card__body {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0 30px;
  width: 100%;
}
@media (max-width: 639px) {
  .c-card__body {
    padding: 0 20px;
    gap: 20px;
  }
}
.c-card__heading {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 168px;
}
.c-card__label {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #016a82;
  line-height: 1;
}
.c-card__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 24px;
  color: #1b1b1b;
  line-height: 1;
}
.c-card__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #1b1b1b;
  /* line-height: 1;
  white-space: nowrap; */
}
.c-card__arrow {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-top: 20px;
}
@media (max-width: 639px) {
  .c-card__arrow {
    margin-top: 0;
  }
}

.c-page-header {
  padding: 50px 0 50px;
}
@media (max-width: 639px) {
  .c-page-header {
    padding: 30px 0 30px;
  }
}
.c-page-header__title {
  padding: 0 10%;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 34px;
  color: #016a82;
  line-height: normal;
}
@media (max-width: 639px) {
  .c-page-header__title {
    padding: 0 20px;
    font-size: 22px;
  }
}

.c-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 5px 10%;
  background-color: rgba(27, 27, 27, 0.05);
}
@media (max-width: 639px) {
  .c-breadcrumb {
    padding: 8px 20px;
  }
}
.c-breadcrumb__link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #1b1b1b;
  transition: color 0.2s;
}
.c-breadcrumb__link:hover {
  color: #016a82;
}
.c-breadcrumb__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(27, 27, 27, 0.3);
  flex-shrink: 0;
}
.c-breadcrumb__current {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: rgba(27, 27, 27, 0.5);
}

.c-content-heading {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 24px;
  color: #1b1b1b;
  line-height: normal;
  padding-bottom: 20px;
  position: relative;
}
.c-content-heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: rgba(27, 27, 27, 0.12);
}
.c-content-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 2px;
  background-color: #016a82;
}
@media (max-width: 639px) {
  .c-content-heading {
    font-size: 20px;
  }
}

.p-logo {
  background-color: #fffff8;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  text-decoration: none;
  cursor: pointer;
}
.p-logo:hover {
  opacity: 0.85;
}
.p-logo__image-wrap {
  width: 260px;
  height: 187px;
  overflow: hidden;
}
.p-logo__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-logo__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}
.p-logo__name {
  font-size: 28px;
  color: #016a82;
  line-height: 1;
}
.p-logo__footername {
  font-size: clamp(18px, 5.5vw, 31px);
  color: #016a82;
  line-height: 1.2;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
}
.p-logo__sub {
  font-size: 12px;
  color: #016a82;
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
}
.p-logo__sub em {
  font-style: normal;
  color: #fa6909;
}
.p-logo__footersub {
  font-size: clamp(10px, 3vw, 12px);
  color: #1b1b1b;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  line-height: 1.4;
}

.p-nav {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 50px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}
.p-nav__list {
  display: flex;
  flex-direction: column;
  /* gap: v.$space-md; */
}
.p-nav__item {
  display: flex;
  flex-direction: column;
  /*  gap: v.$space-md; */
}
.p-nav__item:not(:last-child)::after {
  content: "";
  display: block;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}
.p-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  line-height: 1;
  transition: all 0.3s;
  padding: 20px 0;
}
.p-nav__link-arrow {
  transition: all 0.3s;
}
.p-nav__link:hover {
  opacity: 0.75;
  font-weight: 700;
}
.p-nav__link:hover .p-nav__link-arrow {
  margin-right: 10px;
}
.p-nav__link-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: #ffffff;
}
.p-nav__cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-mv {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.p-mv__watermark {
  position: absolute;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(120px, 22vw, 356px);
  opacity: 0.3;
  color: #ffffff;
  text-shadow: 1px 1px 0 #fa6909, -1px 1px 0 #fa6909, -1px -1px 0 #fa6909, 1px -1px 0 #fa6909;
  line-height: 1;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

@keyframes strip-slide-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes strip-slide-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.p-mv__strip {
  overflow: hidden;
  flex-shrink: 0;
}
.p-mv__strip--right .p-mv__strip-track {
  animation: strip-slide-right 30s linear infinite;
}
.p-mv__strip--left .p-mv__strip-track {
  animation: strip-slide-left 30s linear infinite;
}

.p-mv__strip-track {
  display: flex;
  width: 200%;
  will-change: transform;
}

.p-mv__strip-item {
  width: 10%;
  flex-shrink: 0;
  aspect-ratio: 323/215;
  overflow: hidden;
}
.p-mv__strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-mv__textbox {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 50px 100px;
}
@media (max-width: 639px) {
  .p-mv__textbox {
    padding: 20px;
  }
}

.p-mv__target {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 4px;
}

.p-mv__target-text {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  font-size: 17px;
  color: #1b1b1b;
  line-height: 1;
}

.p-mv__target-tags {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.p-mv__target-tag {
  background-color: #eaf3f5;
  border-radius: 4px;
  padding: 6px 13px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  font-size: 18px;
  color: #016a82;
  line-height: 1;
}

.p-mv__headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.p-mv__title {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  font-size: clamp(40px, 5vw, 80px);
  color: #016a82;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 639px) {
  .p-mv__title {
    white-space: normal;
    font-size: 32px;
  }
}

.p-mv__subtitle {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  font-size: clamp(16px, 2vw, 31px);
  color: #1b1b1b;
  line-height: 1.6;
}
@media (max-width: 639px) {
  .p-mv__subtitle {
    font-size: 16px;
  }
}

.p-news {
  padding: 100px 10%;
  background-color: #ffffff;
}
@media (max-width: 639px) {
  .p-news {
    padding: 40px 20px;
  }
}
.p-news__inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.p-news__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 639px) {
  .p-news__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-news__list {
  display: flex;
  flex-direction: column;
}
.p-news__item {
  /* &:first-child {
    border-top: 3px solid v.$color-primary;
  } */
}
@media (max-width: 639px) {
  .p-news__item {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.p-news__item:hover {
  background-color: rgba(1, 106, 130, 0.05);
}
.p-news__item:hover .p-news__link {
  color: #016a82;
}
.p-news__item:hover .p-news__arrow::after {
  transform: translateX(-10px);
}
.p-news__arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s;
}
.p-news__arrow::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../img/arrow-teal.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s;
}
.p-news__date {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #ababab;
  white-space: nowrap;
  flex-shrink: 0;
}
.p-news__link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 10px;
  position: relative;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  transition: background-color 0.2s;
  position: relative;
}
@media (max-width: 639px) {
  .p-news__link {
    flex-wrap: wrap;
    padding-right: 30px;
  }
}
.p-news__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100px;
  height: 1px;
  background-color: #016a82;
}
.p-news__title {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #1b1b1b;
  /* line-height: 1; */
  transition: color 0.2s;
}
@media (max-width: 639px) {
  .p-news__title {
    width: 100%;
    flex: unset;
  }
}
.p-news__arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: #016a82;
}
@media (max-width: 639px) {
  .p-news__arrow {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}

.p-about {
  background-color: #fffff8;
  padding: 100px 10% 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 639px) {
  .p-about {
    padding: 40px 20px;
  }
}
.p-about__inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.p-about__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 639px) {
  .p-about__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-about__body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #1b1b1b;
  line-height: 1.6;
}
.p-about__body p + p {
  margin-top: 1em;
}
.p-about__photos-slider {
  position: relative;
  width: 100%;
}
.p-about__photos-track-wrapper {
  overflow: hidden;
  width: 100%;
}
.p-about__photos {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}
.p-about__photo {
  flex: 0 0 33.3333333333%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
  padding: 0 5px;
}
@media (max-width: 639px) {
  .p-about__photo {
    flex: 0 0 100%;
    padding: 0;
  }
}
.p-about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-about__slider-btn {
  position: absolute;
  top: calc(50% - 14px);
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(1, 106, 130, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
}
.p-about__slider-btn:hover {
  background-color: #016a82;
}
.p-about__slider-btn:hover svg {
  stroke: #ffffff;
}
.p-about__slider-btn svg {
  width: 18px;
  height: 18px;
  stroke: #016a82;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s;
}
.p-about__slider-btn--prev {
  left: 10px;
}
.p-about__slider-btn--next {
  right: 10px;
}
.p-about__slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.p-about__slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(1, 106, 130, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s;
}
.p-about__slider-dot.is-active, .p-about__slider-dot:hover {
  background-color: #016a82;
}
.p-about__video-section {
  position: relative;
  width: fit-content;
  margin: auto;
}
.p-about__video-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background-color: #016a82;
  border-radius: 10px;
  z-index: 0;
}
.p-about__video-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px 100px 50px;
  width: fit-content;
  max-width: 100%;
}
@media (max-width: 639px) {
  .p-about__video-inner {
    padding: 30px 20px 50px;
  }
}
.p-about__video-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.p-about__video-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #016a82;
  border-radius: 100px;
  padding: 3px 21px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 17px;
  color: #ffffff;
  letter-spacing: 0.1em;
  position: relative;
  margin-bottom: 10px;
}
.p-about__video-label::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #016a82;
}
.p-about__video-label-icon {
  width: 17px;
  height: 17px;
  fill: #ffffff;
}
.p-about__video-heading {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 30px;
  color: #016a82;
  line-height: 1;
  text-align: center;
}
@media (max-width: 639px) {
  .p-about__video-heading {
    font-size: 20px;
  }
}
.p-about__video-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 9/16;
  border-radius: 2px;
  overflow: hidden;
}
.p-about__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-cta-cards {
  padding: 100px 10%;
  background-color: #ffffff;
}
@media (max-width: 639px) {
  .p-cta-cards {
    padding: 40px 20px;
  }
}
.p-cta-cards__list {
  display: flex;
  gap: 50px;
}
@media (max-width: 639px) {
  .p-cta-cards__list {
    flex-direction: column;
    gap: 20px;
  }
}
.p-cta-cards__item {
  flex: 1;
  min-width: 0;
}

.p-about-page {
  padding: 100px 10%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 639px) {
  .p-about-page {
    padding: 40px 20px;
    gap: 50px;
  }
}

.p-about-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.p-purpose-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 639px) {
  .p-purpose-cards {
    grid-template-columns: 1fr;
  }
}

.p-purpose-card {
  border: 1px solid rgba(1, 106, 130, 0.25);
  padding: 30px 10px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-purpose-card__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 20px;
  color: #016a82;
  line-height: normal;
}
.p-purpose-card__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #1b1b1b;
  line-height: 1.5;
}

.p-feature-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 639px) {
  .p-feature-cards {
    grid-template-columns: 1fr;
  }
}

.p-feature-card {
  background-color: #eaf3f5;
  border: 1px solid #016a82;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.p-feature-card__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.p-feature-card__label-row {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.p-feature-card__dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #016a82;
  position: relative;
  flex-shrink: 0;
}
.p-feature-card__dot::after {
  content: "";
  position: absolute;
  inset: 24%;
  border-radius: 50%;
  background-color: #1892ae;
}
.p-feature-card__number {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 16px;
  color: #016a82;
  line-height: normal;
}
.p-feature-card__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 24px;
  color: #1b1b1b;
  line-height: normal;
}
.p-feature-card__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #1b1b1b;
  line-height: 1.5;
  text-align: center;
}

.p-schedule-table-wrap {
  border: 1px solid #adc3c7;
  border-radius: 4px;
  overflow: hidden;
  overflow-x: auto;
}

.p-schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
}
@media (max-width: 639px) {
  .p-schedule-table {
    font-size: 12px;
  }
}
.p-schedule-table th,
.p-schedule-table td {
  border: 1px solid #adc3c7;
  padding: 10px 12px;
  line-height: 1.3;
  vertical-align: middle;
}
.p-schedule-table thead {
  background-color: #eaf3f5;
}
.p-schedule-table thead th {
  font-weight: 500;
  color: #016a82;
  font-size: 16px;
  text-align: center;
}
.p-schedule-table thead th:first-child, .p-schedule-table thead th:nth-child(2) {
  background-color: #eaf3f5;
  border-color: #adc3c7;
  color: transparent;
}
.p-schedule-table__day {
  font-weight: 600;
  color: #016a82;
  text-align: center;
  width: 80px;
  white-space: nowrap;
}
@media (max-width: 639px) {
  .p-schedule-table__day {
    width: 50px;
  }
}
.p-schedule-table__label {
  font-weight: 600;
  color: #016a82;
  text-align: center;
  width: 100px;
  white-space: nowrap;
}
@media (max-width: 639px) {
  .p-schedule-table__label {
    width: 70px;
  }
}
.p-schedule-table__content {
  color: #1b1b1b;
  text-align: center;
  line-height: 1.5;
}
.p-schedule-table__content .p-schedule-table__title {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 2px;
}
.p-schedule-table__content .p-schedule-table__sub {
  font-size: 12px;
  color: rgba(27, 27, 27, 0.5);
}

.p-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
@media (max-width: 639px) {
  .p-photo-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.p-photo-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-photo-item__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.p-photo-item__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 20px;
  color: #016a82;
  line-height: normal;
}
.p-photo-item__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #1b1b1b;
  line-height: 1.5;
}

.p-news-page {
  padding: 100px 10%;
}
@media (max-width: 639px) {
  .p-news-page {
    padding: 40px 20px;
  }
}

.p-news-list {
  display: flex;
  flex-direction: column;
}

.p-news-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 10px;
  text-decoration: none;
  transition: background-color 0.2s;
}
.p-news-item a:hover {
  background-color: #eaf3f5;
}
.p-news-item a:hover .p-news-item__arrow {
  transform: translateX(4px);
}
.p-news-item__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 0;
}
@media (max-width: 639px) {
  .p-news-item__meta {
    flex-wrap: wrap;
    gap: 8px;
  }
}
.p-news-item__date {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #ababab;
  white-space: nowrap;
  flex-shrink: 0;
}
.p-news-item__tag {
  display: inline-block;
  border: 1px solid #016a82;
  border-radius: 3px;
  padding: 3px 15px 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #016a82;
  white-space: nowrap;
  flex-shrink: 0;
}
.p-news-item__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #1b1b1b;
  line-height: 1.5;
}
.p-news-item__arrow {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  position: relative;
  transition: transform 0.2s;
}
.p-news-item__arrow::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../img/arrow-teal.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.p-news-divider {
  height: 2px;
  background-color: rgba(27, 27, 27, 0.12);
  position: relative;
  flex-shrink: 0;
}
.p-news-divider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100%;
  background-color: #016a82;
}

.p-entry-page {
  padding: 100px 10%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 639px) {
  .p-entry-page {
    padding: 40px 20px;
    gap: 50px;
  }
}

.p-entry-startup {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 30px;
  border: 2px solid rgba(1, 106, 130, 0.25);
  border-radius: 5px;
  width: fit-content;
}
@media (max-width: 639px) {
  .p-entry-startup {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}
.p-entry-startup__image {
  width: 146px;
  height: 210px;
  object-fit: cover;
  flex-shrink: 0;
}
.p-entry-startup__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.p-entry-startup__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-entry-startup__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 24px;
  color: #016a82;
  line-height: normal;
}
.p-entry-startup__subtitle {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 17px;
  color: #1b1b1b;
  line-height: normal;
}
.p-entry-startup__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #016a82;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
  transition: background-color 0.2s, color 0.2s;
  width: fit-content;
}
.p-entry-startup__btn:hover {
  background-color: #ffffff;
  color: #016a82;
  outline: 1px solid #016a82;
}
.p-entry-startup__btn svg {
  width: 14px;
  height: 18px;
  flex-shrink: 0;
  fill: currentColor;
}

.p-entry-sections {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.p-entry-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.p-def-table-wrap {
  width: 100%;
  border: 1px solid #adc3c7;
  border-radius: 4px;
  overflow: hidden;
}

.p-def-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}
@media (max-width: 639px) {
  .p-def-table {
    font-size: 14px;
  }
}
.p-def-table th,
.p-def-table td {
  padding: 10px 12px;
  vertical-align: top;
  line-height: 1.5;
  text-align: left;
}
.p-def-table th {
  border-right: 1px solid #adc3c7;
}
.p-def-table tbody tr:not(:last-child) td,
.p-def-table tbody tr:not(:last-child) th {
  border-bottom: 1px solid #adc3c7;
}
.p-def-table th {
  background-color: #eaf3f5;
  color: #016a82;
  font-weight: 400;
  white-space: nowrap;
  width: 128px; /* 
vertical-align: middle; */
}
@media (max-width: 639px) {
  .p-def-table th {
    width: 80px;
  }
}
.p-def-table td {
  color: #1b1b1b;
  font-weight: 400;
}
.p-def-table__list {
  margin-top: 4px;
  padding-left: 1.5em;
  list-style: disc;
}
.p-def-table__list li {
  font-size: 14px;
  line-height: 1.5;
}

.p-entry-list {
  list-style: disc;
  padding-left: 1.5em;
  display: flex;
  flex-direction: column;
}
.p-entry-list li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #1b1b1b;
  line-height: 2;
}

.p-entry-maps {
  display: flex;
  gap: 30px;
  align-items: center;
  width: 100%;
}
@media (max-width: 639px) {
  .p-entry-maps {
    flex-direction: column;
  }
}
.p-entry-maps__item {
  flex: 1;
}
.p-entry-maps__item img {
  width: 100%;
  height: auto;
  display: block;
}

.p-entry-form {
  width: 100%;
}
.p-entry-form__embed {
  width: 100%;
  height: 1499px;
  border: none;
  display: block;
}

.p-entry-section__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #1b1b1b;
  line-height: 1.5;
  width: 100%;
}

.p-faq-page {
  padding: 100px 10%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 639px) {
  .p-faq-page {
    padding: 40px 20px;
    gap: 40px;
  }
}

.p-faq-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

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

.p-qa-item {
  border: 1px solid #016a82;
  overflow: hidden;
  background-color: #ffffff;
}
.p-qa-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 20px;
  width: 100%;
  text-align: left;
  background-color: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s;
}
.p-qa-item__question:hover {
  background-color: rgba(1, 106, 130, 0.04);
}
.p-qa-item__q-inner {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 0;
}
.p-qa-item__q-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  background-color: #016a82;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
.p-qa-item__q-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #1b1b1b;
  line-height: 1.6;
}
@media (max-width: 639px) {
  .p-qa-item__q-text {
    font-size: 16px;
  }
}
.p-qa-item__icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  position: relative;
}
.p-qa-item__icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background-color: #016a82;
  transform: translateY(-50%);
}
.p-qa-item__icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #016a82;
  transform: translateX(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.p-qa-item__answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.p-qa-item__answer-inner {
  overflow: hidden;
}
.p-qa-item__answer {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 20px;
  background-color: #eaf3f5;
}
.p-qa-item__a-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  background-color: #fa6909;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
.p-qa-item__a-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #1b1b1b;
  line-height: 1.6;
  flex: 1;
}
.p-qa-item__a-text p + p {
  margin-top: 0.5em;
}
.p-qa-item__a-text a {
  color: #016a82;
  text-decoration: underline;
  word-break: break-all;
}
.p-qa-item.is-open .p-qa-item__answer-wrap {
  grid-template-rows: 1fr;
}
.p-qa-item.is-open .p-qa-item__icon::before {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.p-contact-page {
  padding: 100px 10%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 639px) {
  .p-contact-page {
    padding: 40px 20px;
  }
}

.p-contact-lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #1b1b1b;
  line-height: 2.0625;
  text-align: center;
  width: 100%;
}

.p-contact-box {
  border: 1px solid #016a82;
  padding: 20px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 639px) {
  .p-contact-box {
    padding: 20px;
  }
}
.p-contact-box__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 24px;
  color: #016a82;
  line-height: normal;
}
.p-contact-box__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-contact-box__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.p-contact-box__item::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #016a82;
  flex-shrink: 0;
  margin-top: 6px;
}
.p-contact-box__label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #016a82;
  white-space: nowrap;
  margin-right: 0.5em;
}
.p-contact-box__value {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #1b1b1b;
}
.p-contact-box__value a {
  color: #016a82;
  text-decoration: underline;
}

.p-contact-form {
  width: 100%;
}
.p-contact-form__embed {
  width: 100%;
  height: 890px;
  border: none;
  display: block;
}
.p-contact-form__placeholder {
  width: 100%;
  height: 890px;
  background-color: #e3e3e3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 29px;
  color: #1b1b1b;
}

.p-news-detail {
  padding: 100px 10%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 639px) {
  .p-news-detail {
    padding: 40px 20px;
    gap: 40px;
  }
}

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

.p-news-detail__meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.p-news-detail__date {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #ababab;
  white-space: nowrap;
}

.p-news-detail__tag {
  display: inline-block;
  border: 1px solid #016a82;
  border-radius: 3px;
  padding: 3px 15px 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #016a82;
  white-space: nowrap;
}

.p-news-detail__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 26px;
  color: #1b1b1b;
  line-height: normal;
}
@media (max-width: 639px) {
  .p-news-detail__title {
    font-size: 28px;
  }
}

.p-news-detail__body {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.p-article-h2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-article-h2__text {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 24px;
  color: #1b1b1b;
  line-height: normal;
}
.p-article-h2__rule {
  height: 2px;
  background-color: rgba(27, 27, 27, 0.12);
  position: relative;
  flex-shrink: 0;
}
.p-article-h2__rule::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100%;
  background-color: #016a82;
}

.p-article-h3 {
  display: flex;
  align-items: center;
  gap: 20px;
}
.p-article-h3::before {
  content: "";
  display: block;
  width: 20px;
  height: 3px;
  background-color: #016a82;
  flex-shrink: 0;
}
.p-article-h3__text {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 20px;
  color: #1b1b1b;
  line-height: normal;
}

.p-article-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #1b1b1b;
  line-height: 1.5;
}
.p-article-text a {
  color: #016a82;
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-all;
}

.p-article-link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #016a82;
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-all;
}

.p-article-ul,
.p-article-ol {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #1b1b1b;
  line-height: normal;
  padding-left: 24px;
}
.p-article-ul li + li,
.p-article-ol li + li {
  margin-top: 4px;
}

.p-article-ul {
  list-style: disc;
}

.p-article-ol {
  list-style: decimal;
}

.p-article-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.p-article-table {
  width: 100%;
  border: 1px solid #adc3c7;
  border-radius: 4px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}
.p-article-table th,
.p-article-table td {
  padding: 10px 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  border-top: 1px solid #adc3c7;
  border-left: 1px solid #adc3c7;
  vertical-align: middle;
  text-align: left;
}
.p-article-table th:first-child,
.p-article-table td:first-child {
  border-left: none;
}
.p-article-table tr:first-child th,
.p-article-table tr:first-child td {
  border-top: none;
}
.p-article-table th {
  background-color: #eaf3f5;
  color: #016a82;
  width: 128px;
  min-width: 128px;
  white-space: nowrap;
}
.p-article-table td {
  color: #1b1b1b;
}

.p-article-back {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 20px;
  background-color: #016a82;
  border-radius: 2px;
  text-decoration: none;
  min-width: 205px;
  transition: opacity 0.2s;
}
.p-article-back:hover {
  opacity: 0.85;
}
.p-article-back__text {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  white-space: nowrap;
}
.p-article-back__arrow {
  width: 16px;
  height: 11px;
  flex-shrink: 0;
  background-image: url("../img/arrow-white.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

.u-text-left {
  text-align: left;
}

.u-mt-sm {
  margin-top: 10px;
}

.u-mt-md {
  margin-top: 20px;
}

.u-mt-lg {
  margin-top: 30px;
}

.u-mt-xl {
  margin-top: 50px;
}

.u-mt-2xl {
  margin-top: 100px;
}

@media (max-width: 639px) {
  .u-hidden-sp {
    display: none !important;
  }
}

.u-hidden-pc {
  display: none !important;
}
@media (max-width: 639px) {
  .u-hidden-pc {
    display: revert !important;
  }
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/*# sourceMappingURL=style.css.map */
