@charset "UTF-8";
@import url(https://cdn.jsdelivr.net/npm/destyle.css@4.0.1/destyle.min.css);
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:wght@500&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap");
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1200px) {
  html {
    font-size: calc(10px + (var(--vw, 1vw) * 100 - 1200px) / 120);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(10px + (var(--vw, 1vw) * 100 - 765px) / 76.5);
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .is-sp {
    display: block;
  }
}

.is-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}

.is-pc--mid {
  display: block;
}
@media screen and (max-width: 1280px) {
  .is-pc--mid {
    display: none !important;
  }
}

:root {
  --base-font-size: max(1.6rem, 16px);
  --color-white: #fff;
  --color-black: #2c3132;
  --color-gray: #eaecf0;
  --color-pink: #ef8a9c;
  --color-red: #ff1a1c;
  --base-bg: #f5f5f5;
  --primary-color: #2a88e0;
  --secondary-color: #793d1c;
  --font-noto-san: "Noto Sans JP", sans-serif;
  --font-noto-serif: "Noto Serif JP", serif;
  --font-zen-kaku: "Zen Kaku Gothic New", sans-serif;
  --font-poppins: "Poppins", sans-serif;
  --font-antonio: "Antonio", sans-serif;
  --font-AcuminVariableConcept: "Acumin Variable Concept", sans-serif;
  --sec-padding: 6.4rem 0;
}
@media screen and (max-width: 767px) {
  :root {
    --base-font-size: max(1.6rem, 14px);
  }
}

img {
  width: 100%;
  vertical-align: top;
}

body {
  font-family: var(--font-noto-san);
  color: var(--color-black);
  background-color: var(--base-bg);
  font-size: var(--base-font-size);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bg-blue {
  background: #eaedf1;
}

.l-header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
}

.l-main {
  padding-top: 9rem;
  width: 100%;
}
.l-main.is-top {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .l-main {
    padding-top: max(8rem, 52px);
  }
}

.l-footer {
  width: 100%;
}

.l-inner {
  max-width: min(120rem, 100% - 40px);
  margin: 0 auto;
}
.l-inner--small {
  max-width: min(103rem, 100% - 40px);
  margin: 0 auto;
}
.l-inner--xsmall {
  max-width: min(1200px, 100% - 40px);
  margin: 0 auto;
}

.c-button {
  position: relative;
  font-size: 2.2rem;
  font-weight: 700;
  width: fit-content;
  min-width: 24rem;
  height: 7rem;
  margin: 0 auto;
  display: grid;
  place-items: center;
  cursor: pointer;
  background-color: #fefefe;
  border: 2px solid #163852;
  border-radius: 999px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-button {
    font-size: max(2.2rem, 16px);
    height: max(7rem, 50px);
    padding: 0 2em;
  }
}
@media screen and (max-width: 520px) {
  .c-button {
    margin-top: 4rem;
  }
}
.c-button::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1em;
  content: "";
  width: 0.86211rem;
  height: 1.3rem;
  display: inline-block;
  margin-right: 0.25em;
  background: url(/ths/assets/image/top/top-news_arrow.png) no-repeat;
  background-size: contain;
}
.c-button:hover {
  background: #163852;
  color: var(--color-white);
}

.c-button--contact {
  padding: 6.4rem 0;
}
.c-button--contact a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25em;
  margin: 0 auto;
  text-align: center;
  max-width: 41.3rem;
  height: 7rem;
  background-color: var(--primary-color);
  color: var(--color-white);
  font-family: var(--font-zen-kaku);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .c-button--contact a {
    font-size: 4.412rem;
    height: 10rem;
  }
}
.c-button--contact a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1em;
  display: block;
  width: 0.86211rem;
  height: 1.3rem;
  background-color: var(--color-white);
  mask-image: url(/ths/assets/image/top/top-news_arrow.png);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
@media screen and (max-width: 767px) {
  .c-button--contact a::after {
    content: none;
  }
}

.c-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--color-gray-500);
  max-width: min(1400px, 100% - 4rem);
  margin: 0 auto;
  padding: 0.5rem 0;
}
.c-breadcrumb li:nth-last-of-type(1) {
  color: var(--primary-color);
}
.c-breadcrumb li:nth-last-of-type(1)::after {
  content: none;
}
.c-breadcrumb li::after {
  content: "/";
  padding-left: 0.8rem;
}

.c-page__head {
  position: relative;
}
.c-page__head-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 38rem;
  background: #163852;
  color: var(--color-white);
  font-size: 6.4rem;
  font-weight: 700;
}

.c-page__foot {
  padding: 9rem 0;
}
.c-page__foot-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7rem;
}
@media screen and (max-width: 767px) {
  .c-page__foot-btn {
    gap: 5%;
  }
}
.c-page__foot-btn a {
  margin: 0;
}

.c-sec__title {
  text-align: center;
  color: var(--primary-color);
  position: relative;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .c-sec__title {
    font-size: max(4rem, 24px);
  }
}
.c-sec__title::after {
  position: absolute;
  bottom: -2.2rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 27rem;
  height: 1px;
  background: var(--primary-color);
}

.c-sec__lead {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  color: var(--primary-color);
  padding-bottom: 4rem;
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .c-sec__lead {
    font-size: max(2.4rem, 18px);
  }
}

.c-sec__text {
  display: grid;
  gap: 0.5em;
  padding-bottom: 2rem;
}
.c-sec__text strong {
  display: block;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-sec__text strong {
    font-size: max(2.4rem, 18px);
  }
}

.c-sec__contents {
  padding: 2rem 0;
}

.c-sec {
  padding: var(--sec-padding);
}

.js-image img {
  opacity: 0;
  transform: scale(1.1); /* 初期状態を少し大きくしておく */
  transition: transform 0.3s ease;
}

.js-image figure {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.js-image figure::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: #1f5b6c;
}

.js-image.move figure::before {
  animation: barAnime forwards 1.5s 1 cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s normal;
}

.js-image figure img {
  opacity: 0;
  transform: scale(1.1);
}

.js-image.move figure img {
  animation: photoAnime forwards 1.5s 1 cubic-bezier(0.165, 0.84, 0.44, 1) 0.7s normal;
}

@keyframes barAnime {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@keyframes photoAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.js-title .line {
  overflow: hidden;
}

.js-concept-detail {
  opacity: 0; /* 完全に非表示に設定 */
  transform: translateY(20px); /* 下に少しずらして非表示にする */
}

.c-psItem {
  background-color: var(--color-white);
  padding: 1.6rem 2rem 2rem 4.5rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 520px) {
  .c-psItem {
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    padding: 3.7rem 2rem;
  }
}
.c-psItem__title {
  font-family: var(--font-noto-san);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-color);
  padding: 2rem 0 2.4rem;
}
@media screen and (max-width: 520px) {
  .c-psItem__title {
    padding: 0 0 2.4rem;
  }
}
.c-psItem__text {
  font-family: var(--font-noto-san);
  padding-bottom: 2.4rem;
}
.c-psItem__list {
  display: grid;
  grid-template-columns: repeat(2, 16rem);
  gap: 0 3rem;
}
@media screen and (max-width: 520px) {
  .c-psItem__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-psItem__list-item {
  font-family: var(--font-noto-san);
}
.c-psItem__list-item::before {
  content: "●";
  padding-right: 0.2em;
}
.c-psItem__list-head {
  background-color: var(--primary-color);
  color: var(--color-white);
  padding: 0 1.5em;
  width: fit-content;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.c-psItem__image {
  max-width: 36.8rem;
  padding: 1.2rem 2rem;
  background-color: #dcebda;
}
.c-psItem--r {
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-sec-top {
  display: flex;
  justify-content: end;
}
.c-sec-top a {
  display: block;
  width: 5.6rem;
  aspect-ratio: 1;
  background-color: #333333;
  border-radius: 999px;
  display: grid;
  place-items: center;
}
.c-sec-top a i {
  color: #fff;
  font-size: 3rem;
}
@media screen and (max-width: 520px) {
  .c-sec-top.--center {
    justify-content: center;
  }
}

.c-fixedLink {
  position: fixed;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .c-fixedLink {
    width: 100%;
  }
}
.c-fixedLink__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 17.5rem;
  background-color: #ff6200;
  writing-mode: vertical-rl;
  color: var(--color-white);
  letter-spacing: 0.2em;
  font-weight: 600;
  font-size: 1.4rem;
  gap: 1rem;
  opacity: 1;
  transition: 0.3s ease-in-out;
}
.c-fixedLink__contact::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1.6rem;
  background-image: url(../../assets/images/common/icon-contact.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.c-fixedLink__contact:hover {
  opacity: 0.8;
}
.c-fixedLink__top {
  width: 6rem;
  height: 6rem;
  display: grid;
  place-items: center;
  background-color: #000000;
  opacity: 1;
  transition: 0.3s ease-in-out;
}
.c-fixedLink__top img {
  width: 40%;
}
.c-fixedLink__top:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .c-fixedLink .c-fixedLink__contact {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    writing-mode: unset;
    font-size: 14px;
  }
  .c-fixedLink .c-fixedLink__top {
    position: absolute;
    bottom: 10rem;
    width: 36px;
    height: 36px;
    right: 2rem;
  }
}

.c-nav {
  position: relative;
  width: 100%;
  background: #003552;
  padding: 1.8rem 0;
  min-height: 8rem;
}
.c-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-nav__list-item {
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 700;
  padding: 0.25em 1em;
  border-radius: 999px;
  transition: all 0.1s ease;
}
.c-nav__list-item span {
  cursor: pointer;
}
.c-nav__list-item:nth-of-type(1) a::before {
  content: "\f015";
  font-family: "Font Awesome 5 Free";
  margin-right: 0.25em;
  vertical-align: top;
}
.c-nav__list-item:nth-of-type(5) {
  pointer-events: none;
}
.c-nav__list-item:nth-of-type(5) span {
  color: gray;
}
.c-nav__list-item:nth-of-type(6) {
  pointer-events: none;
}
.c-nav__list-item:nth-of-type(6) a {
  color: gray;
}
.c-nav__list-item:hover {
  color: var(--primary-color);
  background-color: var(--color-white);
}
.c-nav__list-item.is-current {
  color: var(--primary-color);
  background-color: var(--color-white);
}
.c-nav.is-top {
  position: sticky;
  top: 9rem;
  z-index: 100;
}

.c-subNav {
  position: absolute;
  top: 8rem;
  left: 0;
  width: 100%;
  height: 0;
  background: #2b576f;
  overflow: hidden;
  transition: all 0.3s ease;
}
.c-subNav__list {
  padding: 2.3rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-subNav__list-item {
  width: fit-content;
}
.c-subNav__list-item a {
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 700;
  padding: 0 1em;
}
.c-subNav__list-item a[href="javascript:void(0);"] {
  pointer-events: none;
  color: gray;
}
.c-subNav.is-open {
  height: 8rem;
}

a[href="javascript:void(0);"] {
  color: gray;
}

.c-slider {
  padding: 4.2rem 0;
}
.c-slider .swiper-wrapper {
  transition-timing-function: linear;
}
.c-slider .swiper-wrapper .swiper-slide {
  pointer-events: none;
}

.js-top-slide {
  transition: all 0.3s ease;
}
.js-top-slide.is-open {
  margin-top: 8rem;
}

.p-header {
  --headerColor: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--headerColor);
  transition: all 0.3s ease;
}
.p-header.is-active {
  --headerColor: #fff;
}
.p-header__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.p-header__contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-header__logo {
  padding: 0 2rem;
}
.p-header__logo img {
  width: 52.82348rem;
}
.p-header__text {
  font-size: 1.6rem;
}
.p-header__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
}
.p-header__menu p {
  font-weight: 700;
}
.p-header__nav {
  padding-bottom: 1em;
}
.p-header__nav-wrap {
  --visibility: hidden;
  --opacity: 0;
  visibility: var(--visibility);
  opacity: var(--opacity);
  transition: all 0.3s ease;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #163852;
  margin: 9rem 0;
  overflow-y: scroll;
}
@media screen and (max-width: 520px) {
  .p-header__nav-wrap {
    margin: max(52px, 8rem) 0;
  }
}
.p-header__nav-wrap.is-active {
  --visibility: visible;
  --opacity: 1;
}
.p-header__nav-list {
  display: grid;
  grid-template-columns: 1fr;
}
.p-header__nav-list-item {
  border-bottom: 1px solid #fff;
}
.p-header__nav-list-item > a {
  position: relative;
  display: block;
  width: 100%;
  line-height: 10.6rem;
  font-size: 3.2rem;
  font-weight: 700;
  background-color: #163852;
  color: var(--color-white);
  padding: 0 3.5rem;
}
.p-header__nav-list-item > a::after {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  right: 3.5rem;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  margin: 0;
  width: 3.2rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transition: all 0.6s ease;
}
.p-header__nav-list-item > a.is-open::after {
  transform: translateY(-50%) rotate(90deg);
}
.p-header__nav-list-item:nth-last-of-type(1) {
  pointer-events: none;
}
.p-header__nav-list-item:nth-last-of-type(1) a {
  color: gray;
}
.p-header__subNav-list {
  background-color: var(--color-gray);
  transition: all 0.6s ease;
  height: 0;
  overflow: hidden;
}
.p-header__subNav-list.is-open {
  height: auto;
}
.p-header__subNav-list-item {
  border-bottom: 1px solid #163852;
  overflow: hidden;
}
.p-header__subNav-list-item:nth-last-of-type(1) {
  border-bottom: 0;
}
.p-header__subNav-list-item a {
  display: flex;
  align-items: center;
  font-size: 3.2rem;
  font-weight: 700;
  height: 10.6rem;
  padding: 0 3.5rem;
  transition: all 0.3s ease;
}
.p-header__subNav-list-item a:hover {
  transform: translateX(0.25em);
}

footer .l-inner {
  max-width: 90%;
}

.p-footer {
  padding-top: 6.4rem;
}
.p-footer__contact {
  padding-bottom: 6.4rem;
}
.p-footer__contact a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25em;
  margin: 0 auto;
  text-align: center;
  max-width: 41.3rem;
  height: 7rem;
  background-color: var(--primary-color);
  color: var(--color-white);
  font-family: var(--font-zen-kaku);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .p-footer__contact a {
    font-size: 4.412rem;
    height: 10rem;
  }
}
.p-footer__contact a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1em;
  display: block;
  width: 0.86211rem;
  height: 1.3rem;
  background-color: var(--color-white);
  mask-image: url(/ths/assets/image/top/top-news_arrow.png);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
@media screen and (max-width: 767px) {
  .p-footer__contact a::after {
    content: none;
  }
}
.p-footer__copyright {
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-family: var(--font-poppins);
  font-weight: 500;
  letter-spacing: 0.5em;
  height: 5rem;
  width: 100%;
  color: var(--color-white);
  background-color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    height: 19.2rem;
    font-size: max(10px, 1.5rem);
  }
}
.p-footer__info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3.2rem 4rem;
  padding-bottom: 3.2rem;
}
.p-footer__info-image {
  mix-blend-mode: multiply;
  max-width: 26.4rem;
}
@media screen and (max-width: 767px) {
  .p-footer__info-image {
    max-width: 38rem;
  }
}
.p-footer__info-detail p {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-footer__info-detail p {
    font-size: 3rem;
    text-align: center;
  }
}
.p-footer__info-detail p:nth-of-type(1) {
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-footer__info-detail p:nth-of-type(1) {
    font-size: 3.6rem;
  }
}
.p-footer__list {
  display: flex;
  justify-content: center;
  padding-bottom: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-footer__list {
    flex-direction: column;
    align-items: center;
    gap: 1em;
  }
}
.p-footer__list-item {
  display: flex;
  align-items: center;
}
.p-footer__list-item::after {
  content: "｜";
  padding: 0 1em;
}
@media screen and (max-width: 767px) {
  .p-footer__list-item::after {
    content: none;
  }
}
.p-footer__list-item:nth-last-child(1)::after {
  content: none;
}
.p-footer__list-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25em;
  font-family: var(--font-zen-kaku);
  font-weight: 500;
  letter-spacing: 0.13em;
}
@media screen and (max-width: 767px) {
  .p-footer__list-item a {
    font-size: max(14px, 2.25rem);
  }
}
.p-footer__list-item a::after {
  content: "";
  display: inline-block;
  width: 1.6875rem;
  height: 1.5rem;
  background: url(/ths/assets/image/common/icon-blank.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-footer__list-item a::after {
    width: max(1.6875rem, 16.65625px);
    height: max(1.5rem, 11.25px);
  }
}

.p-header__hamburger {
  --opacity: 1;
  --rotate: 0;
  --translate: 1.1rem;
  display: grid;
  place-items: center;
  width: 9rem;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    width: max(52px, 8rem);
  }
}
.p-header__hamburger.is-active {
  --opacity: 0;
  --rotate: 45deg;
  --translate: 0;
}
.p-header__hamburger span {
  display: block;
  width: 2.8rem;
  height: 4px;
  border-radius: 999px;
  background-color: var(--color-white);
  grid-area: 1/1/-1/-1;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger span {
    width: max(16px, 3.6rem);
    height: max(2px, 0.2rem);
  }
}
.p-header__hamburger span:nth-child(1) {
  opacity: var(--opacity);
}
.p-header__hamburger span:nth-child(2) {
  translate: 0 calc(var(--translate) * -1);
  rotate: var(--rotate);
}
.p-header__hamburger span:nth-child(3) {
  translate: 0 var(--translate);
  rotate: calc(var(--rotate) * -1);
}

.p-top-mv__container {
  position: relative;
  max-height: 100dvh;
  overflow: hidden;
}
.p-top-mv__layer01 img {
  max-height: 100dvh;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.p-top-mv__layer02 {
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -0.5vw;
  width: 85vw;
}
@media screen and (max-width: 767px) {
  .p-top-mv__layer02 {
    bottom: -1vw;
    width: 90vw;
  }
}
.p-top-mv__layer03 {
  position: absolute;
  z-index: 1;
  top: 38%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 75vw;
}
@media screen and (max-width: 767px) {
  .p-top-mv__layer03 {
    top: 40vw;
    width: 70vw;
  }
}
.p-top-mv__layer04 {
  position: absolute;
  bottom: 0;
  left: 0;
}

.p-top-mv__layer02,
.p-top-mv__layer03 {
  opacity: 0;
  transform: translate(-50%, 30px);
  transition: none;
  will-change: opacity, transform;
}

.p-top-lead {
  background: url(/ths/assets/image/top/top-lead_bg.webp) no-repeat center bottom;
  background-size: cover;
  min-height: 200rem;
  padding: 10rem 0 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-lead {
    padding: 6.4rem 0 0;
    background: url(/ths/assets/image/top/top-lead_bg--sp.webp) no-repeat center bottom;
    background-size: cover;
    min-height: 240rem;
  }
}
.p-top-lead__title {
  font-size: 4.8rem;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0.15em;
  font-feature-settings: "palt";
  padding-bottom: 6rem;
  text-shadow: 0 0 15px #000;
}
.p-top-lead__title span {
  display: block;
}
.p-top-lead__text {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  line-height: 2;
  padding-bottom: 1em;
  text-shadow: 0 0 15px #000;
}
.p-top-lead__text:nth-last-of-type(1) {
  padding-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-top-lead__text {
    text-align: start;
    max-width: 60rem;
    margin: 0 auto;
    font-size: max(2.2rem, 14px);
  }
}
.p-top-lead__logo {
  max-width: 39.7rem;
  margin: 0 auto;
  padding-bottom: 4rem;
}
.p-top-lead__scroll {
  display: block;
  max-width: 8.8rem;
  margin: 0 auto;
}

.p-top-flow {
  background-color: var(--color-gray);
  padding: var(--sec-padding);
}
.p-top-flow h2 {
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  padding-bottom: 4rem;
}
.p-top-flow p {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-flow p {
    font-size: max(1.8rem, 14px);
    text-align: start;
    max-width: 61.1rem;
    margin: 0 auto;
    word-break: normal;
  }
}
.p-top-flow__contents {
  overflow-x: scroll;
}
.p-top-flow__step {
  max-width: 103rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8rem 2rem;
  place-items: center;
  align-items: start;
  padding: 4.6rem 0;
}
@media screen and (max-width: 767px) {
  .p-top-flow__step {
    gap: 6rem 2rem;
    padding: 4.6rem 2rem;
  }
}
@media screen and (max-width: 520px) {
  .p-top-flow__step {
    width: 150rem;
    max-width: unset;
    gap: 12rem 2rem;
    padding: 4.6rem 0;
    margin: 0 13rem;
  }
}
.p-top-flow__step-item {
  position: relative;
}
.p-top-flow__step-item::after {
  content: "";
  display: block;
  width: 2.2rem;
  height: 1.8rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4.9rem;
  background: url(/ths/assets/image/top/top-step-arrow.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-top-flow__step-item::after {
    width: 1.65rem;
    height: 1.35rem;
    bottom: -3.5rem;
  }
}
@media screen and (max-width: 520px) {
  .p-top-flow__step-item::after {
    width: 3.3rem;
    height: 2.7rem;
    bottom: -6.7rem;
  }
}
.p-top-flow__step-item img {
  pointer-events: none;
  background: var(--color-white);
  border-radius: 2rem;
  padding: 1rem;
}
.p-top-flow__step-item .p-in-btn {
  padding-top: 3.2rem;
}
.p-top-flow__step .-step01 {
  grid-area: 1/1/2/4;
  max-width: 66%;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  .p-top-flow__step .-step01 {
    max-width: 45%;
  }
}
.p-top-flow__step .-step01::after {
  content: "";
  display: block;
  width: 107%;
  height: 11rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -11rem;
  background: url(/ths/assets/image/top/top-step-arrow01.png) no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-flow__step .-step01::after {
    height: 6rem;
    bottom: -6rem;
  }
}
@media screen and (max-width: 520px) {
  .p-top-flow__step .-step01::after {
    width: 155%;
    height: 11rem;
    bottom: -11rem;
  }
}
.p-top-flow__step .-step01 img {
  display: block;
  width: 68.38235%;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  .p-top-flow__step .-step01 img {
    width: 100%;
  }
}
.p-top-flow__step .-step01 .js-ac-inner {
  max-width: 48rem;
  margin: 0 auto;
}
.p-top-flow__step .-step02-01 {
  grid-area: 2/1/3/2;
}
.p-top-flow__step .-step02-02 {
  grid-area: 2/2/3/3;
}
.p-top-flow__step .-step02-03 {
  grid-area: 2/3/3/4;
}
.p-top-flow__step .-step03-01 {
  grid-area: 3/1/4/2;
}
.p-top-flow__step .-step03-02 {
  grid-area: 3/2/4/3;
}
.p-top-flow__step .-step03-03 {
  grid-area: 3/3/4/4;
}
.p-top-flow__step .-step04-01 {
  grid-area: 4/1/5/2;
  height: fit-content;
}
.p-top-flow__step .-step04-01::after {
  content: none;
}
.p-top-flow__step .-step04-02 {
  grid-area: 4/2/5/4;
}
.p-top-flow__step .-step04-02::after {
  content: none;
}
@media screen and (max-width: 520px) {
  .p-top-flow__step .-step04-02 {
    grid-area: 4/2/5/3;
  }
}
.p-top-flow__step .-step04-02--sp {
  display: none;
}
.p-top-flow__step .-step04-02--sp::after {
  content: none;
}
@media screen and (max-width: 520px) {
  .p-top-flow__step .-step04-02--sp {
    display: block;
    grid-area: 4/3/5/4;
  }
}
.p-top-flow__step .-step05-01 {
  grid-area: 5/2/6/3;
}
.p-top-flow__step .-step05-01::after {
  bottom: unset;
  top: -4.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-flow__step .-step05-01::after {
    top: -3.5rem;
  }
}
@media screen and (max-width: 520px) {
  .p-top-flow__step .-step05-01::after {
    top: -6.7rem;
  }
}
.p-top-flow__step .-step05-02 {
  grid-area: 5/3/6/4;
}
.p-top-flow__step .-step05-02::after {
  bottom: unset;
  top: -4.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-flow__step .-step05-02::after {
    top: -3.5rem;
  }
}
@media screen and (max-width: 520px) {
  .p-top-flow__step .-step05-02::after {
    top: -6.7rem;
  }
}

.p-top-menu {
  padding: var(--sec-padding);
}
.p-top-menu__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 87.2rem;
  gap: 4.2rem 5.2rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-top-menu__list {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}
.p-top-menu__list-item {
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  max-width: 41rem;
  --outline: 0.85rem;
  outline-offset: calc(var(--outline) * -1);
}
@media screen and (max-width: 767px) {
  .p-top-menu__list-item {
    max-width: 66.6rem;
    margin: 0 auto;
  }
}
.p-top-menu__list-item:nth-of-type(1) {
  outline: var(--outline) solid #0b318b;
}
.p-top-menu__list-item:nth-of-type(1) p {
  color: #0b318b;
}
.p-top-menu__list-item:nth-of-type(2) {
  outline: var(--outline) solid #7e318a;
}
.p-top-menu__list-item:nth-of-type(2) p {
  color: #7e318a;
}
.p-top-menu__list-item:nth-of-type(3) {
  outline: var(--outline) solid #c5b898;
}
.p-top-menu__list-item:nth-of-type(3) p {
  color: #c5b898;
}
.p-top-menu__list-item:nth-of-type(4) {
  outline: var(--outline) solid #f4b22d;
}
.p-top-menu__list-item:nth-of-type(4) p {
  color: #f4b22d;
}
.p-top-menu__list-item a {
  display: block;
}
.p-top-menu__list-item p {
  position: absolute;
  top: 4rem;
  left: 4rem;
  line-height: 1;
  font-size: 4rem;
  font-weight: 700;
  -webkit-text-stroke: 5px #fff;
  text-stroke: 5px #fff;
  paint-order: stroke;
}
.p-top-menu__list-item picture img {
  position: relative;
  transition: all 1.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: -1;
}
.p-top-menu__list-item:hover picture img {
  scale: 1.05;
}

#news {
  background-color: var(--color-gray);
  padding: var(--sec-padding);
}

.p-top-news {
  background-color: var(--color-white);
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 4rem;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top-news {
    background-color: unset;
    padding: 0;
    max-width: 66.6rem;
  }
}
.p-top-news h2 {
  font-size: 2.4rem;
  font-weight: 700;
  border-bottom: 1px solid var(--color-black);
  line-height: 1;
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-top-news h2 {
    font-size: 3.6rem;
  }
}
.p-top-news__list-item {
  font-size: 1.8rem;
  padding: 1.1705rem 1em;
  border-bottom: 1px dashed #cbd1db;
}
@media screen and (max-width: 767px) {
  .p-top-news__list-item {
    font-size: max(14px, 2.7rem);
    padding: 0.5em 1em;
  }
}
.p-top-news__list-item a {
  text-indent: -1em;
  padding-left: 1em;
  display: block;
}
.p-top-news__list-item a::before {
  content: "";
  width: 0.86211rem;
  height: 1.3rem;
  display: inline-block;
  margin-right: 0.25em;
  background: url(/ths/assets/image/top/top-news_arrow.png) no-repeat;
  background-size: contain;
}

.p-about__image {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-about__image {
    grid-template-columns: 1fr;
    max-width: 80%;
    margin: 0 auto;
  }
}

.p-history__table {
  width: 100%;
}
.p-history__table tr:nth-of-type(1) th,
.p-history__table tr:nth-of-type(1) td {
  border-top: 1px solid #cad2dc;
}
@media screen and (max-width: 767px) {
  .p-history__table tr:nth-of-type(1) td {
    border-top: none;
  }
}
.p-history__table th,
.p-history__table td {
  padding: 1rem;
  border-bottom: 1px solid #cad2dc;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-history__table th,
  .p-history__table td {
    display: block;
    padding: 0.5rem 0;
  }
}
.p-history__table th {
  min-width: 23rem;
}
@media screen and (max-width: 767px) {
  .p-history__table th {
    border-bottom: none;
  }
}

@media screen and (max-width: 520px) {
  .p-flow__contents {
    overflow-x: scroll;
  }
}
.p-flow__step {
  display: grid;
  gap: 8rem 2rem;
  grid-template-columns: repeat(3, 1fr);
  max-width: min(103rem, 100% - 4rem);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-flow__step {
    gap: 5.5rem 2rem;
  }
}
@media screen and (max-width: 520px) {
  .p-flow__step {
    width: 150rem;
    gap: 11rem 2rem;
    max-width: none;
    margin: 0 13rem;
  }
}
.p-flow__step-item {
  background: var(--color-white);
  border-radius: 2rem;
  padding: 1rem;
  position: relative;
}
.p-flow__step-item::after {
  content: "";
  display: block;
  width: 2.2rem;
  height: 1.8rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4.9rem;
  background: url(/ths/assets/image/top/top-step-arrow.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-flow__step-item::after {
    width: 1.65rem;
    height: 1.35rem;
    bottom: -3.2rem;
  }
}
@media screen and (max-width: 520px) {
  .p-flow__step-item::after {
    width: 3.3rem;
    height: 2.7rem;
    bottom: -6.7rem;
  }
}
.p-flow__step-item img {
  pointer-events: none;
}
.p-flow__step-item .js-ac-btn {
  cursor: pointer;
  position: relative;
  width: 100%;
  max-width: 20rem;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  .p-flow__step-item .js-ac-btn {
    max-width: 120px;
  }
}
.p-flow__step-item .js-ac-btn .p-in-text {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  display: block;
  padding: 3.2rem 2.4rem;
  opacity: 1;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-flow__step-item .js-ac-btn .p-in-text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 520px) {
  .p-flow__step-item .js-ac-btn .p-in-text {
    font-size: 16px;
  }
}
.p-flow__step-item .js-ac-btn .p-in-icon {
  --w: 1.5rem;
  --h: 0.25rem;
  content: "";
  display: block;
  width: var(--w);
  height: var(--h);
  background: var(--primary-color);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 999px;
  opacity: 1;
}
@media screen and (max-width: 520px) {
  .p-flow__step-item .js-ac-btn .p-in-icon {
    --w: 10px;
    --h: 1.5px;
  }
}
.p-flow__step-item .js-ac-btn .p-in-icon:after {
  content: "";
  width: var(--w);
  height: var(--h);
  background: var(--primary-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  border-radius: 999px;
  transition: all 0.3s ease;
  opacity: 1;
}
.p-flow__step-item .js-ac-btn.is-open .p-in-text {
  opacity: 0;
}
.p-flow__step-item .js-ac-btn.is-open .p-in-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}
.p-flow__step-item .js-ac-inner {
  padding-bottom: 3.2rem;
  max-width: 20rem;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  .p-flow__step-item .js-ac-inner {
    max-width: calc(100% - 40px);
  }
}
.p-flow__step-item .js-ac-content {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
}
.p-flow__step-item .js-ac-content p {
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 520px) {
  .p-flow__step-item .js-ac-content p {
    font-size: 16px;
  }
}
.p-flow__step-item .js-ac-content h4 {
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-flow__step-item .js-ac-content h4 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 520px) {
  .p-flow__step-item .js-ac-content h4 {
    font-size: 16px;
  }
}
.p-flow__step-item .js-ac-content h4::before {
  content: "■";
}
.p-flow__step-item .js-ac-content ul li a {
  position: relative;
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  padding: 0.25em 0;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-flow__step-item .js-ac-content ul li a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 520px) {
  .p-flow__step-item .js-ac-content ul li a {
    font-size: 16px;
  }
}
.p-flow__step-item .js-ac-content ul li a::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  content: "";
  width: 0.86211rem;
  height: 1.3rem;
  display: inline-block;
  margin-right: 0.25em;
  background: url(/ths/assets/image/top/top-news_arrow.png) no-repeat;
  background-size: contain;
  transition: all 0.3s ease;
}
.p-flow__step-item .js-ac-content ul li a[href="javascript:void(0);"] {
  pointer-events: none;
  color: gray;
  text-decoration: none;
}
.p-flow__step-item .js-ac-content ul li a:hover::after {
  right: -0.25em;
}
.p-flow__step .-step01 {
  grid-area: 1/1/2/4;
  max-width: 66%;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  .p-flow__step .-step01 {
    max-width: 45%;
  }
}
.p-flow__step .-step01::after {
  content: "";
  display: block;
  width: 107%;
  height: 25%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -25%;
  background: url(/ths/assets/image/top/top-step-arrow01.png) no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 520px) {
  .p-flow__step .-step01::after {
    width: 155%;
    height: 35%;
    bottom: -35%;
  }
}
.p-flow__step .-step01 img {
  display: block;
  width: 68.38235%;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  .p-flow__step .-step01 img {
    width: 100%;
  }
}
.p-flow__step .-step01 .js-ac-inner {
  max-width: 48rem;
  margin: 0 auto;
}
.p-flow__step .-step02-01 {
  grid-area: 2/1/3/2;
}
.p-flow__step .-step02-02 {
  grid-area: 2/2/3/3;
}
.p-flow__step .-step02-03 {
  grid-area: 2/3/3/4;
}
.p-flow__step .-step03-01 {
  grid-area: 3/1/4/2;
}
.p-flow__step .-step03-02 {
  grid-area: 3/2/4/3;
}
.p-flow__step .-step03-03 {
  grid-area: 3/3/4/4;
}
.p-flow__step .-step04-01 {
  grid-area: 4/1/5/2;
  height: fit-content;
}
.p-flow__step .-step04-01::after {
  content: none;
}
.p-flow__step .-step04-02 {
  grid-area: 4/2/5/4;
}
.p-flow__step .-step04-02::after {
  content: none;
}
@media screen and (max-width: 520px) {
  .p-flow__step .-step04-02 {
    grid-area: 4/2/5/3;
  }
}
.p-flow__step .-step04-02--sp {
  display: none;
}
@media screen and (max-width: 520px) {
  .p-flow__step .-step04-02--sp {
    display: block;
    grid-area: 4/3/5/4;
  }
}
.p-flow__step .-step05-01 {
  grid-area: 5/2/6/3;
}
.p-flow__step .-step05-01::after {
  bottom: unset;
  top: -4.5rem;
}
@media screen and (max-width: 767px) {
  .p-flow__step .-step05-01::after {
    top: -3.2rem;
  }
}
@media screen and (max-width: 520px) {
  .p-flow__step .-step05-01::after {
    top: -6.7rem;
  }
}
.p-flow__step .-step05-02 {
  grid-area: 5/3/6/4;
}
.p-flow__step .-step05-02::after {
  bottom: unset;
  top: -4.5rem;
}
@media screen and (max-width: 767px) {
  .p-flow__step .-step05-02::after {
    top: -3.2rem;
  }
}
@media screen and (max-width: 520px) {
  .p-flow__step .-step05-02::after {
    top: -6.7rem;
  }
}

.p-philosophy__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
}
.p-philosophy__image {
  display: block;
  max-width: 40rem;
  width: 100%;
  aspect-ratio: 320/300.7034;
  height: fit-content;
}
@media screen and (max-width: 767px) {
  .p-philosophy__image {
    max-width: 70%;
  }
}
.p-philosophy__caption {
  max-width: 42rem;
  display: grid;
  gap: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-philosophy__caption {
    max-width: 100%;
  }
}
.p-philosophy__caption h4 {
  font-size: 3.6rem;
  font-weight: 700;
}

.p-edGoal__list {
  border-radius: 1.8rem;
  background: var(--color-white);
  display: grid;
  gap: 2.4rem;
  padding: 4rem;
}
.p-edGoal__listItem dt {
  font-size: max(2.4rem, 18px);
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
}
.p-edGoal__listItem dd {
  font-size: max(1.8rem, 14px);
  font-weight: 500;
  text-align: center;
}

.p-greeting__content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3.2rem 2.7rem;
}
.p-greeting__image {
  max-width: 30rem;
}
@media screen and (max-width: 767px) {
  .p-greeting__image {
    max-width: 80%;
  }
}
.p-greeting__image figcaption strong {
  font-size: max(2.4rem, 18px);
}
@media screen and (max-width: 767px) {
  .p-greeting__image figcaption {
    text-align: center;
  }
}
.p-greeting__detail {
  max-width: 50rem;
}
@media screen and (max-width: 767px) {
  .p-greeting__detail {
    max-width: 100%;
  }
}
.p-greeting__detailTitle {
  color: var(--primary-color);
  font-weight: 700;
  font-size: max(2.4rem, 18px);
  margin-bottom: 3.2rem;
}

#skill .p-policy__fig {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  #skill .p-policy__fig {
    flex-direction: column;
  }
}
#skill .p-policy__fig-image {
  flex-basis: 50%;
}
@media screen and (max-width: 767px) {
  #skill .p-policy__fig-image {
    max-width: 56rem;
  }
}
#skill .p-policy__fig-caption {
  flex-basis: 50%;
  max-width: 50rem;
  display: grid;
  gap: 6.4rem;
}
#skill .p-policy__fig-caption-item h4 {
  font-size: 3.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #skill .p-policy__fig-caption-item h4 {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  #skill .p-policy__fig-caption-item p {
    text-align: center;
  }
}
#skill .p-event__list {
  display: grid;
  gap: 4rem;
}
#skill .p-event__list-item {
  display: flex;
  gap: 0 3.88%;
}
@media screen and (max-width: 767px) {
  #skill .p-event__list-item {
    flex-direction: column;
    gap: 3.2rem;
  }
}
#skill .p-event__list-item-detail {
  width: 100%;
}
#skill .p-event__list-item-detail h4 {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 6.2rem;
}
@media screen and (max-width: 767px) {
  #skill .p-event__list-item-detail h4 {
    text-align: center;
  }
}
#skill .p-event__list-item-image {
  width: 100%;
  max-width: 39rem;
}
@media screen and (max-width: 767px) {
  #skill .p-event__list-item-image {
    max-width: 100%;
  }
}
#skill .p-event__list-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#skill .p-achievements__table {
  width: 100%;
  border-bottom: 2px solid #cad2dc;
}
#skill .p-achievements__table thead {
  background: #003552;
}
#skill .p-achievements__table thead th {
  color: var(--color-white);
  font-size: 2.4rem;
  text-align: center;
  border-right: 1px solid #eaecf0;
}
#skill .p-achievements__table tbody th,
#skill .p-achievements__table tbody td {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid #cad2dc;
  padding: 0 1em;
}
#skill .p-achievements__table tbody tr:nth-last-of-type(1) th,
#skill .p-achievements__table tbody tr:nth-last-of-type(1) td {
  border: none;
}
#skill .p-achievements__table tbody th {
  background: #cbd1db;
  text-align: start;
}
#skill .p-achievements__table tbody td {
  background: var(--color-white);
}
#skill .p-achievements__table tbody td:nth-of-type(2n - 1) {
  background: #f7f7f7;
}

#course .p-curriculum__contents {
  display: grid;
  gap: 2rem 3rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  #course .p-curriculum__contents {
    grid-template-columns: 1fr;
  }
}
#course .p-curriculum__item {
  background: var(--color-white);
  border-radius: 2rem;
  padding: 2rem 4rem;
}
#course .p-curriculum__item:nth-of-type(1) {
  grid-area: 1/1/2/2;
}
@media screen and (max-width: 767px) {
  #course .p-curriculum__item:nth-of-type(1) {
    grid-area: auto;
  }
}
#course .p-curriculum__item:nth-of-type(2) {
  grid-area: 1/2/2/3;
}
@media screen and (max-width: 767px) {
  #course .p-curriculum__item:nth-of-type(2) {
    grid-area: auto;
  }
}
#course .p-curriculum__item:nth-of-type(3) {
  grid-area: 2/1/3/3;
}
@media screen and (max-width: 767px) {
  #course .p-curriculum__item:nth-of-type(3) {
    grid-area: auto;
  }
}
#course .p-curriculum__item:nth-of-type(4) {
  grid-area: 3/1/4/3;
}
@media screen and (max-width: 767px) {
  #course .p-curriculum__item:nth-of-type(4) {
    grid-area: auto;
  }
}
#course .p-curriculum__item h4 {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  color: var(--primary-color);
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  #course .p-curriculum__item h4 {
    font-size: max(4rem, 24px);
    padding-bottom: max(1.6rem, 16px);
  }
}
#course .p-curriculum__item h4 span {
  font-size: 1.8rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #course .p-curriculum__item h4 span {
    font-size: max(1.8rem, 16px);
  }
}
#course .p-curriculum__item p {
  text-align: center;
  padding-bottom: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #course .p-curriculum__item p {
    padding-bottom: max(1.6rem, 16px);
  }
}
#course .p-curriculum__item ul {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  gap: 1em;
}
#course .p-curriculum__item ul li {
  width: fit-content;
  min-width: 12rem;
  font-weight: 500;
  text-indent: -1.5em;
  padding-left: 1em;
}
#course .p-curriculum__item ul li::before {
  content: "●";
  margin-right: 0.5em;
}
#course .p-curriculum__item:nth-of-type(3) ul {
  max-width: 57rem;
  margin: 0 auto;
}
#course .p-curriculum__item:nth-of-type(4) ul {
  width: fit-content;
  margin: 0 auto;
}
#course .p-hito__title {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  padding-bottom: 4rem;
}
#course .p-hito__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  background: var(--color-white);
  border-radius: 2rem;
  padding: 3rem;
}
@media screen and (max-width: 767px) {
  #course .p-hito__list {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
#course .p-hito__list > div dt {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-color);
}
@media screen and (max-width: 767px) {
  #course .p-hito__list > div dt {
    font-size: max(2.4rem, 18px);
  }
}
#course .p-hito__list > div dt::before {
  content: "●";
  margin-right: 0.5em;
}
#course .p-hito__list > div dd {
  font-weight: 500;
  padding-bottom: 1em;
}
#course .p-hito__image {
  padding: 4.4rem 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  #course .p-hito__image {
    grid-template-columns: repeat(2, 1fr);
  }
}
#course .p-mono__contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  #course .p-mono__contents {
    grid-template-columns: 1fr;
  }
}
#course .p-mono__contents-item figure {
  position: relative;
}
#course .p-mono__contents-item figure figcaption {
  position: absolute;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 7.2rem;
  bottom: 0;
  background: rgba(0, 137, 227, 0.7);
  text-align: center;
  color: var(--color-white);
  font-size: 2.2rem;
  font-weight: 700;
}
#course .p-requirements__contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  #course .p-requirements__contents {
    grid-template-columns: 1fr;
  }
}
#course .p-requirements__contents-item {
  background: var(--color-white);
  border-radius: 2rem;
  padding: 3rem;
}
#course .p-requirements__contents-item h4 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-color);
}
@media screen and (max-width: 767px) {
  #course .p-requirements__contents-item h4 {
    font-size: max(2.4rem, 18px);
  }
}
#course .p-requirements__contents-item p {
  font-weight: 500;
}

.u-green {
  color: var(--primary-color);
}

.u-white {
  color: var(--color-white);
}

.u-red {
  color: var(--color-red);
}

.u-pb--0 {
  padding-bottom: 0;
}

.u-border {
  border-bottom: 1px solid var(--primary-color);
}

.u-btn-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 520px) {
  .u-btn-col {
    flex-direction: column;
    gap: 3.2rem;
  }
}