@charset "UTF-8";
/* :root
------------------------------------------- */
:root {
  --fnt-notosans: "Noto Sans JP", sans-serif;
  --fnt-aboreto: "Aboreto", system-ui;
  --fnt-weight-reg: 400;
  --fnt-weight-mid: 500;
  --fnt-weight-bld: 700;
  --line-height-lg: 2;
  --line-height-md: 1.7;
  --line-height-sm: 1.5;
  --line-height-xs: 1.2;
  --clr-primary: #0050b4;
  --clr-primary-p70: #4c7baa;
  --clr-primary-p20: #ccdcf0;
  --clr-primary-p10: #e5edf7;
  --clr-text: #000000;
  --clr-white: #ffffff;
  --clr-black: #000000;
  --clr-black-20: #cccccc;
  --clr-black-30: #b2b2b2;
  --clr-black-15: #e6e6e6;
  --clr-sub-seminar: #00aa00;
  --clr-sub-seminar-p20: #cceecc;
  --clr-sub-basic: #4db6e8;
  --clr-sub-basic-p20: #dbf0fa;
  --clr-sub-capstone: #4955a3;
  --clr-sub-capstone-p20: #dbdded;
  --header-height: 10rem;
  --nav-lower: 8rem;
  --col-width-xl: min(90%, 192rem);
  --col-width-lg: min(90%, 150rem);
  --col-width-md: min(90%, 120rem);
  --col-width-sm: min(90%, 90rem);
  --sp-xs: .5rem;
  --sp-sm: 1rem;
  --sp-md: 2.5rem;
  --sp-lg: 5rem;
  --sp-xl: 7.5rem;
  --sp-2xl: 10rem;
}
@media screen and (max-width: 767px) {
  :root {
    --header-height: 6rem;
    --sp-xs: .5rem;
    --sp-sm: 1rem;
    --sp-md: 2rem;
    --sp-lg: 4rem;
    --sp-xl: 5rem;
    --sp-2xl: 7rem;
  }
}

/* -------------------------------------------
  Base Setting
------------------------------------------- */
html {
  scroll-behavior: smooth;
  font-size: min(62.5%, 0.8333333333vw);
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.4vw;
  }
}

body {
  position: relative;
  padding-top: var(--header-height);
  line-height: var(--line-height-md);
  background-color: var(--clr-white);
  font-family: var(--fnt-notosans);
  font-size: 1.6rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  color: var(--clr-text);
}
body:not(.p-top) {
  opacity: 0;
}
body:not(.p-top).is-view {
  animation: body 1s ease forwards;
}

ul, li {
  list-style-type: none;
}

table {
  border-collapse: collapse;
}

a {
  text-decoration: none;
  color: currentColor;
}
a[href="javascript:;"] {
  pointer-events: none;
}

img, video {
  max-width: 100%;
  vertical-align: bottom;
}

@keyframes body {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
*[id*=anc-] {
  scroll-margin-top: var(--header-height);
}

@media screen and (min-width: 768px) {
  .forsp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .forpc {
    display: none !important;
  }
}
/* -------------------------------------------
  Common Style
------------------------------------------- */
/* Column
------------------------------------------- */
.col-xl {
  width: var(--col-width-xl);
  margin-right: auto;
  margin-left: auto;
}

.col-lg {
  width: var(--col-width-lg);
  margin-right: auto;
  margin-left: auto;
}

.col-md {
  width: var(--col-width-md);
  margin-right: auto;
  margin-left: auto;
}

.col-sm {
  width: var(--col-width-sm);
  margin-right: auto;
  margin-left: auto;
}

/* Section
------------------------------------------- */
.section {
  padding-top: 9rem;
}
@media screen and (max-width: 767px) {
  .section {
    padding-top: 7rem;
  }
}

/* Heading
------------------------------------------- */
.sec-heading-lg {
  margin-bottom: 3rem;
  line-height: var(--line-height-sm);
  text-align: center;
  font-family: var(--fnt-aboreto);
  font-size: 3rem;
  color: var(--clr-primary);
}
@media screen and (max-width: 767px) {
  .sec-heading-lg {
    font-size: 2.6rem;
    letter-spacing: 0;
  }
}
.sec-heading-lg:not(:first-child) {
  margin-top: 4rem;
}
.sec-heading-md {
  margin-bottom: 4rem;
  display: flex;
  align-items: baseline;
  gap: 2rem;
  line-height: var(--line-height-sm);
}
@media screen and (max-width: 767px) {
  .sec-heading-md {
    flex-direction: column;
    gap: 1rem;
    letter-spacing: 0;
  }
}
.sec-heading-md .en {
  font-family: var(--fnt-aboreto);
  font-size: 3rem;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--clr-primary);
}
@media screen and (max-width: 767px) {
  .sec-heading-md .en {
    font-size: 2.6rem;
  }
}
.sec-heading-md .ja {
  font-size: 1.4rem;
  white-space: nowrap;
}
.sec-heading-md:not(:first-child) {
  margin-top: 4rem;
}
.sec-heading-sm {
  margin-bottom: 3rem;
  font-size: 2rem;
  font-weight: var(--fnt-weight-bld);
  color: var(--clr-primary);
}
.sec-heading-sm:not(:first-child) {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .sec-heading-sm {
    letter-spacing: 0;
  }
}

.heading--has-btn {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .heading--has-btn {
    margin-bottom: 2rem;
    flex-direction: column;
    gap: 1rem;
  }
  .heading--has-btn .sec-heading-md {
    margin-bottom: 3rem;
  }
}

/* Paragraph
------------------------------------------- */
.paras-md p {
  line-height: var(--line-height-md);
}
.paras-md p:not(:first-child) {
  margin-top: 2rem;
}

/* List
------------------------------------------- */
.kome-list li {
  position: relative;
  padding-left: 1.5rem;
}
.kome-list li::before {
  content: "※";
  position: absolute;
  left: 0;
}
.kome-list.fnt-red {
  color: #f00;
}

/* Button
------------------------------------------- */
.button-more {
  padding: 0.8rem 2rem 0.8rem 2rem;
  border: solid 1px currentColor;
  background-color: var(--clr-white);
  display: flex;
  align-items: center;
  font-family: var(--fnt-aboreto);
  font-size: 2rem;
  font-weight: var(--fnt-weight-bld);
  color: var(--clr-primary);
}
@media screen and (max-width: 767px) {
  .button-more {
    width: min(100%, 24rem);
    margin: 0 auto;
    font-size: 1.6rem;
  }
}
.button-more::after {
  content: "";
  width: 1rem;
  aspect-ratio: 1/1;
  transform: rotate(45deg);
  border: solid currentColor;
  border-width: 1px 1px 0 0;
}
.button-more span {
  flex: 1;
  text-align: center;
}
@media (hover: hover) {
  .button-more {
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .button-more:hover {
    background-color: var(--clr-primary);
    color: var(--clr-white);
  }
}
.button-more[href="#"] {
  pointer-events: none;
  opacity: 0.4;
}

.button-form {
  padding: 1rem 2rem;
  background-color: var(--clr-black-20);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-weight: var(--fnt-weight-bld);
}
.button-form::after {
  content: "";
  width: 1rem;
  aspect-ratio: 1/1;
  transform: rotate(45deg);
  border: solid currentColor;
  border-width: 1px 1px 0 0;
}
.button-form span {
  flex: 1;
  text-align: center;
}
@media (hover: hover) {
  .button-form {
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .button-form:hover {
    background-color: var(--clr-primary);
    color: var(--clr-white);
  }
}

.button-entry {
  padding: 0.8rem 2rem;
  border: solid 1px var(--clr-primary);
  border-radius: 5rem;
  background-color: var(--clr-primary);
  display: inline-flex;
  align-items: center;
  font-weight: var(--fnt-weight-bld);
  font-size: 1.5rem;
  color: var(--clr-white);
}
.button-entry::after {
  content: "";
  width: 1rem;
  aspect-ratio: 1/1;
  transform: rotate(45deg);
  border: solid currentColor;
  border-width: 1px 1px 0 0;
}
.button-entry > span {
  padding: 0 2rem;
}
.button-entry > span span {
  display: inline-block;
}
@media (hover: hover) {
  .button-entry {
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .button-entry:hover {
    background-color: var(--clr-white);
    color: var(--clr-primary);
  }
}

.button-detail {
  padding: 0.8rem 2rem;
  border: solid 2px var(--clr-primary);
  border-radius: 5rem;
  background-color: var(--clr-white);
  display: inline-flex;
  align-items: center;
  font-weight: var(--fnt-weight-bld);
  font-size: 1.5rem;
  color: var(--clr-primary);
}
.button-detail::after {
  content: "";
  width: 2rem;
  aspect-ratio: 20/14;
  background-color: currentColor;
  -webkit-mask: url(../images/common/button-detail.svg) center center/contain no-repeat;
          mask: url(../images/common/button-detail.svg) center center/contain no-repeat;
}
.button-detail span {
  padding: 0 2rem;
}
@media (hover: hover) {
  .button-detail {
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .button-detail:hover {
    background-color: var(--clr-primary);
    color: var(--clr-white);
  }
}

/* -------------------------------------------
  Style Components
------------------------------------------- */
/* Text
------------------------------------------- */
.line-h-lg {
  line-height: var(--line-height-lg);
}

.line-h-md {
  line-height: var(--line-height-md);
}

.line-h-sm {
  line-height: var(--line-height-sm);
}

.line-h-xs {
  line-height: var(--line-height-xs);
}

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

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

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

/* Font
------------------------------------------- */
.fsz-larger {
  font-size: 150%;
}

.fsz-smaller {
  font-size: 80%;
}

.fsz12 {
  font-size: 1.2rem;
}

.fsz13 {
  font-size: 1.3rem;
}

.fsz14 {
  font-size: 1.4rem;
}

.fsz15 {
  font-size: 1.5rem;
}

.fsz16 {
  font-size: 1.6rem;
}

.fsz18 {
  font-size: 1.8rem;
}

.fsz20 {
  font-size: 2rem;
}

/* Space
------------------------------------------- */
.sp-mt-xs {
  margin-top: var(--sp-xs);
}

.sp-mt-sm {
  margin-top: var(--sp-sm);
}

.sp-mt-md {
  margin-top: var(--sp-md);
}

.sp-mt-lg {
  margin-top: var(--sp-lg);
}

.sp-mt-xl {
  margin-top: var(--sp-xl);
}

.sp-mt-2xl {
  margin-top: var(--sp-2xl);
}

/* -------------------------------------------
  Layout
------------------------------------------- */
/* Header
------------------------------------------- */
@media screen and (min-width: 768px) {
  .header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-backdrop-filter: blur(0.5rem);
            backdrop-filter: blur(0.5rem);
    background-color: rgba(255, 255, 255, 0.9);
  }
  .header__container {
    display: flex;
    align-items: center;
  }
  .header__logo {
    margin-left: 2rem;
  }
  .header__logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .header__logo a img:first-child {
    width: auto;
    height: 6rem;
  }
  .header__logo a img:last-child {
    width: auto;
    height: 3.8rem;
  }
}
@media screen and (max-width: 767px) {
  .header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--clr-white);
  }
  .header__container {
    padding: 0 0 0 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header__logo a {
    height: var(--header-height);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .header__logo a img:first-child {
    width: auto;
    height: 3rem;
  }
  .header__logo a img:last-child {
    width: auto;
    height: 3rem;
  }
}

/* Global Nav
------------------------------------------- */
@media screen and (min-width: 768px) {
  .g-nav__base {
    margin-left: auto;
  }
  .g-nav__button {
    display: none;
  }
  .g-nav__list {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
  }
  .g-nav__list > li > *:not(div) {
    position: relative;
    height: var(--header-height);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: var(--fnt-weight-bld);
    color: var(--clr-primary);
    cursor: pointer;
  }
  .g-nav__list > li > *:not(div)::before {
    content: "";
    position: absolute;
    top: calc(50% + 1.5rem);
    left: 0;
    width: 100%;
    height: 0;
    border-bottom: solid 0.3rem var(--clr-primary);
    opacity: 0;
  }
  .g-nav__list > li > *:not(div)::after {
    content: "";
    width: 1.2rem;
    aspect-ratio: 12/8;
    background-color: var(--clr-primary);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    opacity: 0;
  }
}
@media screen and (min-width: 768px) and (hover: hover) {
  .g-nav__list > li > *:not(div)::before, .g-nav__list > li > *:not(div)::after {
    transition: opacity 0.3s ease;
  }
  .g-nav__list > li > *:not(div):hover::before, .g-nav__list > li > *:not(div):hover::after {
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .g-nav__list > li > *:not(div).is-current::before, .g-nav__list > li > *:not(div).is-current::after {
    opacity: 1;
  }
  .g-nav__list > li.is-active > div, .g-nav__list > li:hover > div {
    top: var(--header-height);
    opacity: 1;
    transition: opacity 0.5s ease;
  }
  .g-nav__list > li a[href*="/interview/"] {
    pointer-events: none;
    opacity: 0.4;
  }
  .g-nav__list > li.course_mov a {
    position: relative;
    padding: 0 3rem;
    background: linear-gradient(to right bottom, #001e78, #0050b4);
    color: var(--clr-white);
  }
  .g-nav__list > li.course_mov a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-bottom: none;
    background: linear-gradient(to left top, #001e78, #0050b4);
    opacity: 1;
  }
  .g-nav__list > li.course_mov a::after {
    content: none;
  }
  .g-nav__list > li.course_mov a span {
    position: relative;
  }
}
@media screen and (min-width: 768px) and (hover: hover) {
  .g-nav__list > li.course_mov a::before {
    transition: opacity 0.3s ease;
  }
  .g-nav__list > li.course_mov a:hover::before {
    opacity: 0;
  }
}
@media screen and (min-width: 768px) {
  .g-nav__lower {
    position: fixed;
    top: calc(var(--nav-lower) * -1);
    left: 0;
    width: 100%;
    opacity: 0;
    transition-property: top, opacity;
    transition-duration: 0s, 0.2s;
    transition-delay: 0.2s, 0s;
  }
  .g-nav__lower-inner {
    background-color: var(--clr-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    color: var(--clr-white);
  }
  .g-nav__lower p {
    font-family: var(--fnt-aboreto);
    font-size: 2.4rem;
  }
  .g-nav__lower ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }
  .g-nav__lower ul li a {
    height: var(--nav-lower);
    display: flex;
    align-items: center;
    gap: 0.9rem;
  }
  .g-nav__lower ul li a::before {
    content: "";
    width: 2.5rem;
    aspect-ratio: 1/1;
    background-color: currentColor;
    -webkit-mask: url(../images/common/g-nav-lower-icon.svg) center center/contain no-repeat;
            mask: url(../images/common/g-nav-lower-icon.svg) center center/contain no-repeat;
  }
}
@media screen and (min-width: 768px) and (hover: hover) {
  .g-nav__lower ul li a {
    transition: 0.2s ease;
  }
  .g-nav__lower ul li a:hover {
    color: #d1aa0b;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .g-nav__list {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .g-nav__base {
    position: fixed;
    top: var(--header-height);
    left: 100vw;
    width: 100%;
    height: calc(100vh - var(--header-height));
    overflow-y: auto;
    background-color: var(--clr-primary);
    opacity: 0;
    transition-property: left, opacity;
    transition-duration: 0s, 0.3s;
    transition-delay: 0.3s, 0s;
  }
  .g-nav__base.opened {
    left: 0;
    opacity: 1;
    transition: left, opacity;
    transition-duration: 0s, 0.3s;
    transition-delay: 0s, 0s;
  }
  .g-nav__button {
    width: var(--header-height);
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .g-nav__button span {
    position: relative;
    width: calc(var(--header-height) / 3);
    height: 0.2rem;
    background-color: var(--clr-primary);
  }
  .g-nav__button span::before, .g-nav__button span::after {
    content: "";
    position: absolute;
    width: calc(var(--header-height) / 3);
    height: 0.2rem;
    background-color: var(--clr-primary);
    transition: 0.3s ease;
  }
  .g-nav__button span::before {
    top: -0.7rem;
  }
  .g-nav__button span::after {
    bottom: -0.7rem;
  }
  .g-nav__button.opened span {
    background-color: transparent;
  }
  .g-nav__button.opened span::before {
    top: 0;
    transform: rotate(45deg);
  }
  .g-nav__button.opened span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .g-nav__list {
    padding: 3% 10% 20%;
    font-size: 1.5rem;
    color: var(--clr-white);
  }
  .g-nav__list > li {
    border-bottom: solid 1px var(--clr-white);
  }
  .g-nav__list > li > *:not(div) {
    display: flex;
    align-items: center;
    padding: 1.3rem 1rem;
  }
  .g-nav__list a::after {
    content: "";
    width: 1rem;
    height: 1rem;
    transform: rotate(45deg);
    margin-left: auto;
    border: solid currentColor;
    border-width: 1px 1px 0 0;
  }
  .g-nav__list a.course_mov {
    margin-top: 2rem;
    background-color: var(--clr-white);
    font-weight: 700;
    color: var(--clr-primary);
  }
  .g-nav__lower p {
    display: none;
  }
  .g-nav__lower ul {
    padding-left: 2rem;
  }
  .g-nav__lower ul li {
    padding: 1.5rem 1rem;
    border-top: solid 1px var(--clr-primary-p70);
  }
  .g-nav__lower ul li a {
    display: flex;
    align-items: center;
  }
}

/* Footer
------------------------------------------- */
.footer {
  background-color: var(--clr-primary);
}
.footer__links {
  padding: 10rem 0;
  background-color: var(--clr-primary-p20);
}
.footer__links ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .footer__links ul {
    flex-direction: column;
    align-items: center;
  }
}
.footer__links ul li a {
  display: block;
  padding: 2rem;
  background-color: var(--clr-white);
}
.footer__container {
  padding: 10rem 0;
}
.footer .f-nav {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  color: var(--clr-white);
}
@media screen and (max-width: 767px) {
  .footer .f-nav {
    width: 80%;
    margin: 0 auto;
    flex-direction: column;
    align-items: stretch;
  }
}
.footer .f-nav > li {
  flex: 0 0 18rem;
}
.footer .f-nav > li:last-child {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .footer .f-nav > li {
    flex: 1;
  }
}
.footer .f-nav > li > a {
  position: relative;
  display: block;
  padding-bottom: 0.5rem;
  border-bottom: solid 1px currentColor;
  font-size: 1.5rem;
  font-weight: var(--fnt-weight-bld);
}
.footer .f-nav > li > a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 3rem;
  height: 0;
  border-bottom: solid 1px var(--clr-primary-p70);
}
.footer .f-nav > li > a[href*="/interview/"] {
  pointer-events: none;
  opacity: 0.4;
}
@media (hover: hover) {
  .footer .f-nav > li > a::after {
    transition: width 0.3s ease;
  }
  .footer .f-nav > li:hover > a::after {
    width: 100%;
  }
}
.footer .f-nav__lower {
  margin-top: 1.5rem;
  font-size: 1.2rem;
}
@media (hover: hover) {
  .footer .f-nav__lower li a:hover {
    text-decoration: underline;
  }
}
.footer .f-nav__lower li:not(:last-child) {
  margin-bottom: 1rem;
}
.footer__address {
  padding: 2.5rem 0;
  background-color: var(--clr-black);
  color: var(--clr-white);
}
.footer__address-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .footer__address-inner {
    flex-direction: column;
  }
}
.footer__logo {
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 26%;
    margin-left: auto;
  }
}
.footer__logo img {
  width: auto;
  height: 3rem;
}
.footer__copyright small {
  font-size: 1rem;
}
.footer .f-snav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 1.2rem;
}
@media (hover: hover) {
  .footer .f-snav a:hover {
    text-decoration: underline;
  }
}

.pagetop {
  position: fixed;
  bottom: 5%;
  right: 5%;
  transition: bottom 0.5s ease;
}
.pagetop a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 1rem;
  font-weight: var(--fnt-weight-bld);
  letter-spacing: 0.05em;
  color: var(--clr-primary);
  transition: color 0.3s ease;
}
.pagetop img {
  width: 4.6rem;
  aspect-ratio: 1/1;
  border: solid 1px var(--clr-white);
  border-radius: 50%;
  margin-bottom: 0.5rem;
}
.pagetop.white {
  bottom: 12%;
}
.pagetop.white a {
  color: var(--clr-white);
}

/* Page Header
------------------------------------------- */
.page-header {
  position: relative;
  width: 100%;
  aspect-ratio: 1200/400;
  max-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--clr-white);
}
@media screen and (max-width: 767px) {
  .page-header {
    aspect-ratio: 100/45;
    max-height: initial;
  }
}
.page-header figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-header figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-header figure::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clr-primary);
  mix-blend-mode: multiply;
  opacity: 0.4;
}
.page-header h1 {
  position: relative;
  font-size: 3.2rem;
  font-weight: var(--fnt-weight-mid);
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .page-header h1 {
    font-size: 2.4rem;
  }
}

/* Page Contact
------------------------------------------- */
.page-contact {
  padding: 10rem 0;
  background-color: var(--clr-white);
  text-align: center;
}
.page-contact.has-bg {
  background-color: var(--clr-primary-p10);
}
.page-contact > p {
  margin-top: 2rem;
}
.page-contact .box {
  width: min(100%, 600px);
  margin: var(--sp-lg) auto 0;
  padding: var(--sp-md);
  border: solid 2px var(--clr-white);
  background-color: var(--clr-primary-p10);
}
.page-contact .box strong {
  font-size: 2rem;
  font-weight: var(--fnt-weight-reg);
}
.page-contact .box span {
  font-size: 1.3rem;
}

/* Page Link
------------------------------------------- */
.page-link {
  padding-bottom: 10rem;
}

.link-button-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .link-button-list {
    gap: 1rem;
  }
}
.link-button-list li a {
  min-width: 30rem;
  padding: 1rem 2rem;
  border: solid 0.2rem var(--clr-primary);
  border-radius: 5rem;
  background-color: var(--clr-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.05em;
  color: var(--clr-white);
}
@media (hover: hover) {
  .link-button-list li a {
    transition: background-color 0.3s ease;
  }
  .link-button-list li a:hover {
    background-color: var(--clr-white);
    color: var(--clr-primary);
  }
}

.link-button-more {
  margin-top: 7rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .link-button-more {
    margin-top: 3rem;
  }
}
.link-button-more .button-more {
  padding: 0.8rem 2rem;
  display: inline-flex;
  gap: 1rem;
  font-family: var(--fnt-notosans);
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .link-button-more .button-more {
    display: flex;
    width: 100%;
  }
}

/* Contents
------------------------------------------- */
.contents {
  padding: 8rem 0 10rem;
  background-color: var(--clr-white);
}
@media screen and (max-width: 767px) {
  .contents {
    padding: 0;
  }
}
.contents.has-bg {
  background: linear-gradient(to right, var(--clr-white) 35%, var(--clr-primary-p20) 35%);
}
.contents.has-bg2 {
  background-color: var(--clr-primary-p10);
}

/* -------------------------------------------
  About
------------------------------------------- */
.about-custom01 {
  margin-top: 7rem;
  display: flex;
}
@media screen and (max-width: 767px) {
  .about-custom01 {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .about-custom01 .block01 {
    border-right: none;
  }
}
.about-custom01 .block02 {
  flex: 0 0 36.6666666667%;
}
.about-custom01 .block-title {
  height: 7rem;
  border: solid var(--clr-primary);
  border-width: 2px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--clr-primary);
}
@media screen and (max-width: 767px) {
  .about-custom01 .block-title {
    height: auto;
    margin-top: -2px;
    padding: 2rem 1rem;
  }
}
.about-custom01 .block-dl {
  display: grid;
  grid-template-columns: 2fr 5fr;
  grid-template-rows: repeat(2, 1fr);
  line-height: var(--line-height-sm);
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .about-custom01 .block-dl {
    grid-template-columns: 4fr 5fr;
  }
}
.about-custom01 .block-dl dt {
  position: relative;
  padding: 3rem 1rem;
  border-color: var(--clr-primary);
  border-style: none dashed solid none;
  border-width: 0 1px 2px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.about-custom01 .block-dl dt:first-of-type {
  background-color: var(--clr-sub-seminar-p20);
}
.about-custom01 .block-dl dt:nth-of-type(2) {
  background-color: var(--clr-sub-basic-p20);
}
.about-custom01 .block-dl dt:last-of-type {
  background-color: var(--clr-sub-capstone-p20);
}
.about-custom01 .block-dl dd {
  position: relative;
  padding: 3rem 2rem;
  border-bottom: solid 2px var(--clr-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}
.about-custom01 .block-dl dd:not(:last-of-type)::after {
  content: "";
  position: absolute;
  z-index: 10;
  bottom: -2.7rem;
  left: 0;
  width: 100%;
  height: 4.1rem;
  background-position: 30% bottom;
  background-size: auto 100%;
  background-repeat: no-repeat;
}
.about-custom01 .block-dl dd:first-of-type {
  background-color: var(--clr-sub-seminar-p20);
}
.about-custom01 .block-dl dd:first-of-type::after {
  background-image: url(../images/about/arrow-seminar.svg);
}
.about-custom01 .block-dl dd:nth-of-type(2) {
  background-color: var(--clr-sub-basic-p20);
}
.about-custom01 .block-dl dd:nth-of-type(2)::after {
  background-image: url(../images/about/arrow-basic.svg);
}
.about-custom01 .block-dl dd:last-of-type {
  background-color: var(--clr-sub-capstone-p20);
}
.about-custom01 .block-dl h5 {
  font-size: 2rem;
  color: var(--clr-primary);
}
@media screen and (max-width: 767px) {
  .about-custom01 .block-dl h5 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .about-custom01 .block-dl p {
    font-size: 1.4rem;
  }
}
.about-custom01 .block-dl ol {
  font-weight: var(--fnt-weight-bld);
  color: var(--clr-primary);
}
@media screen and (max-width: 767px) {
  .about-custom01 .block-dl ol {
    font-size: 1.4rem;
  }
}
.about-custom01 .block-ul {
  height: calc(100% - 7rem);
  border-bottom: solid 2px var(--clr-primary);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .about-custom01 .block-ul {
    height: auto;
    padding: 2rem 0;
  }
}
.about-custom01 .block-ul ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .about-custom01 .block-ul ul {
    gap: 2rem;
  }
}
.about-custom01 .block-ul ul li {
  font-weight: var(--fnt-weight-bld);
}
.about-custom01 .block-ul ul li span {
  font-size: 1.5rem;
  font-weight: var(--fnt-weight-reg);
}
.about-custom01 .block-ul ul li strong {
  color: var(--clr-primary);
}
.about-custom01 .block-ul ul li.arrow {
  position: relative;
}
@media screen and (max-width: 767px) {
  .about-custom01 .block-ul ul li.arrow {
    margin-bottom: 1rem;
  }
}
.about-custom01 .block-ul ul li.arrow::after {
  content: "↓";
  position: absolute;
  bottom: -3.8rem;
  left: 7rem;
  font-size: 2.8rem;
  font-weight: var(--fnt-weight-bld);
  color: #c00;
}
.about-custom02 {
  margin-top: 2rem;
  text-align: center;
  font-weight: var(--fnt-weight-bld);
}
.about-custom02 dt {
  position: relative;
  margin-bottom: 4rem;
  line-height: var(--line-height-sm);
  font-size: 2.3rem;
  color: var(--clr-primary);
}
@media screen and (max-width: 767px) {
  .about-custom02 dt {
    font-size: 2rem;
  }
}
.about-custom02 dt::after {
  content: "";
  position: absolute;
  bottom: -2.6rem;
  left: calc(50% - 4rem);
  width: 8rem;
  aspect-ratio: 80/16;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: var(--clr-primary);
}
.about-custom02 dd {
  padding: 1rem;
  background-color: var(--clr-primary);
  text-align: center;
  font-size: 2rem;
  color: var(--clr-white);
}
@media screen and (max-width: 767px) {
  .about-custom02 dd {
    text-align: left;
    font-size: 1.6rem;
  }
}
.about-custom03 {
  display: grid;
  grid-template-columns: 73.3333333333% 19.6666666667%;
  grid-template-rows: auto auto auto;
  gap: 0 7.0833333333%;
}
@media screen and (max-width: 767px) {
  .about-custom03 {
    display: flow-root;
  }
}
.about-custom03 h3 {
  grid-column: 1/3;
}
@media screen and (max-width: 767px) {
  .about-custom03 figure {
    float: left;
    width: min(40%, 23.6rem);
    margin: 3rem 2rem 0 0;
  }
}
.about-custom03 > p:last-child {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .about-custom03 > p:last-child {
    margin-top: 5rem;
    line-height: 1.4;
    text-align: left;
  }
}
.about-img {
  width: 100%;
}

/* -------------------------------------------
  Program
------------------------------------------- */
.program-outline {
  margin-top: 5rem;
}
.program-outline dt {
  margin-top: 2rem;
  font-size: 2rem;
  font-weight: var(--fnt-weight-bld);
  color: var(--clr-primary);
}

.program-date {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 2rem;
  font-weight: var(--fnt-weight-bld);
  letter-spacing: 0;
}
.program-date dd {
  font-size: 1.3rem;
}

.program-table {
  margin-top: 1rem;
  border: solid var(--clr-primary);
  border-width: 2px 0;
  display: flex;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .program-table {
    flex-direction: column;
  }
}
.program-table:not(:last-child) {
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .program-table:not(:last-child) {
    margin-bottom: 3rem;
  }
}
.program-table__header {
  flex: 0 0 16.5%;
  margin: 1rem 0;
  background-color: var(--clr-primary-p20);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .program-table__header {
    margin: 2rem 0;
  }
}
.program-table__header h3 {
  padding: 1rem 0;
  line-height: var(--line-height-xs);
  text-align: center;
  font-size: 1.6rem;
  color: var(--clr-primary);
}
.program-table__header h3 span {
  display: block;
  margin-top: var(--sp-sm);
}
.program-table__body {
  flex: 1;
  padding-left: 2rem;
}
@media screen and (max-width: 767px) {
  .program-table__body {
    padding-left: 0;
  }
}
.program-table__body dl {
  display: grid;
  grid-template-columns: 2fr 3fr 15fr 3fr;
}
@media screen and (max-width: 767px) {
  .program-table__body dl {
    display: flex;
    flex-wrap: wrap;
  }
}
.program-table__body dl dt {
  padding: 1.2rem 0;
  border-bottom: solid 2px var(--clr-primary);
}
@media screen and (max-width: 767px) {
  .program-table__body dl dt {
    width: 7rem;
    padding: 0;
    border-bottom: none;
  }
}
.program-table__body dl dd {
  padding: 1.2rem 0;
  border-bottom: solid 2px var(--clr-primary);
}
.program-table__body dl dd:nth-child(4n) {
  padding: 1rem 0;
  display: flex;
  align-items: center;
}
.program-table__body dl dd:nth-child(4n) > span {
  width: 100%;
  height: 100%;
  background-color: var(--clr-primary-p20);
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: var(--line-height-xs);
  text-align: center;
  font-weight: var(--fnt-weight-bld);
  color: var(--clr-primary);
}
.program-table__body dl dd:nth-child(4n) > span span {
  font-weight: var(--fnt-weight-reg);
  color: var(--clr-black);
}
@media screen and (max-width: 767px) {
  .program-table__body dl dd {
    width: 100%;
    padding: 0;
    border: none;
  }
  .program-table__body dl dd:nth-child(4n+2) {
    width: calc(100% - 7rem);
    border-bottom: none;
  }
  .program-table__body dl dd:nth-child(4n+3) {
    padding-top: 0.5rem;
    line-height: var(--line-height-sm);
  }
  .program-table__body dl dd:nth-child(4n) {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: solid 1px var(--clr-primary);
  }
  .program-table__body dl dd:nth-child(4n) span {
    width: 10rem;
    padding: 0.5rem;
    font-size: 1.2rem;
  }
  .program-table__body dl dd:last-child {
    margin-bottom: 0;
  }
}
.program-table__body dl dt:last-of-type {
  border-bottom: none;
}
.program-table__body dl dt:last-of-type ~ dd {
  border-bottom: none;
}
.program-table__body .colspan2 {
  height: 100%;
  display: grid;
  grid-template-columns: 20fr 3fr;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .program-table__body .colspan2 {
    grid-template-columns: 1fr;
  }
}
.program-table__body .colspan2 .text {
  padding: 1.2rem 0;
}
@media screen and (max-width: 767px) {
  .program-table__body .colspan2 .text {
    padding: 0 0 2rem;
  }
}
.program-table__body .colspan2 .text:not(:last-of-type) {
  border-bottom: solid 2px var(--clr-primary);
}
.program-table__body .colspan2 .type {
  height: 100%;
  padding: 1rem 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .program-table__body .colspan2 .type {
    padding: 0 0 2rem;
  }
}
.program-table__body .colspan2 .type:not(:last-of-type) {
  border-bottom: solid 2px var(--clr-primary);
}
.program-table__body .colspan2 .type > span {
  width: 100%;
  height: 100%;
  padding: 0.5rem 0;
  background-color: var(--clr-primary-p20);
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: var(--line-height-xs);
  text-align: center;
  font-weight: var(--fnt-weight-bld);
  color: var(--clr-primary);
}
@media screen and (max-width: 767px) {
  .program-table__body .colspan2 .type > span {
    width: 10rem;
    padding: 0.5rem;
    font-size: 1.2rem;
  }
}
.program-table__body .colspan2 .type > span span {
  font-weight: var(--fnt-weight-reg);
  color: var(--clr-black);
}
.program-table__body .colspan2.has-btn {
  padding: 1rem 0;
  grid-template-columns: 1fr 30rem;
}
@media screen and (max-width: 767px) {
  .program-table__body .colspan2.has-btn {
    padding: 0 0 2rem;
    grid-template-columns: 1fr;
  }
}
.program-table__body .colspan2.has-btn .button {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .program-table__body .colspan2.has-btn .button {
    text-align: left;
  }
}
.program-table__notes {
  color: #e61e14;
}

/* -------------------------------------------
  Seminar | Program
------------------------------------------- */
.seminar-block li {
  min-height: 8rem;
  margin-top: 3.5rem;
  border: solid 0.3rem var(--clr-primary);
  display: grid;
  grid-template-columns: 8.3333333333% 27% 27.6666666667% 20.8333333333% 1fr;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .seminar-block li {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
  }
}
.seminar-block li > * {
  padding: 1rem 0;
  line-height: 1.4;
  font-weight: var(--fnt-weight-bld);
}
@media screen and (max-width: 767px) {
  .seminar-block li > * {
    padding: 1rem 5%;
  }
}
.seminar-block li .num {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--clr-primary);
  color: var(--clr-white);
}
.seminar-block li .title {
  padding-left: 5%;
}
@media screen and (max-width: 767px) {
  .seminar-block li .title {
    padding-top: 5%;
  }
}
.seminar-block li .title p {
  font-size: 1.4rem;
  color: var(--clr-primary);
}
.seminar-block li .title h3 {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .seminar-block li .date {
    padding: 0 5%;
  }
}
.seminar-block li .date-day {
  font-size: 2rem;
}
.seminar-block li .date-time {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .seminar-block li .place {
    padding-top: 0.5rem;
  }
}
.seminar-block li .button {
  padding-right: 2rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .seminar-block li .button {
    padding: 1rem 5% 5%;
    text-align: center;
  }
}
.seminar-block li .border {
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .seminar-block li .border {
    height: auto;
  }
}
.seminar-block li .border::before {
  content: "";
  width: 0;
  height: 100%;
  margin-right: 5%;
  border-left: solid 0.3rem var(--clr-primary);
}
@media screen and (max-width: 767px) {
  .seminar-block li .border::before {
    content: none;
  }
}
.seminar-block li.comingsoon {
  grid-template-columns: 8.3333333333% 1fr;
}
@media screen and (max-width: 767px) {
  .seminar-block li.comingsoon {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
}
.seminar-block li.comingsoon .soon {
  text-align: center;
  font-size: 2rem;
  color: var(--clr-primary);
}
.seminar-block li.close {
  position: relative;
}
.seminar-block li.close::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.seminar-block li.close::after {
  content: "こちらのセミナーは終了しました";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 2rem;
  font-weight: var(--fnt-weight-bld);
  color: var(--clr-white);
}
.seminar-block li.close .button {
  position: relative;
  z-index: 1;
}
.seminar-block li.close .button .button-entry {
  background-color: var(--clr-white);
  color: var(--clr-primary);
}
@media (hover: hover) {
  .seminar-block li.close .button .button-entry {
    transition: background-color 0.3s ease;
  }
  .seminar-block li.close .button .button-entry:hover {
    background-color: var(--clr-primary-p20);
  }
}

/* -------------------------------------------
  Basic | Program
------------------------------------------- */
.basic-block {
  padding: 2rem 0;
  border-top: solid 1px var(--clr-black);
  display: grid;
  grid-template-columns: 7rem 25rem 20rem 1fr;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .basic-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 2rem 1.5rem;
  }
}
.basic-block:last-child {
  border-bottom: solid 1px var(--clr-black);
}
.basic-block figure {
  width: 7rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .basic-block figure {
    order: 1;
    width: 6rem;
  }
}
.basic-block figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .basic-block__title {
    order: 2;
  }
}
.basic-block__title h3 {
  line-height: var(--line-height-sm);
  font-size: 2rem;
  color: var(--clr-primary);
}
.basic-block__title .type {
  width: 15rem;
  margin-top: 1rem;
  border: solid var(--clr-black);
  border-width: 0 1px;
  line-height: var(--line-height-sm);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .basic-block__title .type {
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .basic-block__button {
    order: 4;
  }
}
@media screen and (max-width: 767px) {
  .basic-block__text {
    order: 3;
  }
}

/* -------------------------------------------
  Capstone | Program
------------------------------------------- */
.capstone-flow {
  min-height: 20rem;
  background: url(/assets/images/program/capstone/capstone-flow.png) left top/100% 100% no-repeat;
  display: grid;
  grid-template-columns: 29.1666666667% 33.3333333333% 3fr;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .capstone-flow {
    min-height: initial;
    background: none;
    grid-template-columns: 1fr;
    border: solid 2px var(--clr-primary);
  }
}
.capstone-flow li {
  padding-right: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--clr-primary);
}
@media screen and (max-width: 767px) {
  .capstone-flow li {
    padding: 5%;
  }
  .capstone-flow li:not(:last-child) {
    border-bottom: solid 2px var(--clr-primary);
  }
}
.capstone-flow li div span {
  display: block;
  line-height: 1;
  text-align: center;
  font-family: var(--fnt-aboreto);
  font-size: 3rem;
}
.capstone-flow li div .title {
  margin-top: 1rem;
  font-size: 1.8rem;
  font-weight: var(--fnt-weight-bld);
}
.capstone-flow li div .text {
  min-height: 4.76rem;
  margin-top: 0.5rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .capstone-flow li div .text {
    min-height: initial;
  }
}

.capstone-notes {
  margin-top: 2rem;
  color: var(--clr-primary);
}

.capstone-block {
  position: relative;
  margin: 7rem 0 5rem;
  padding: 4rem;
  background-color: var(--clr-primary-p10);
}
@media screen and (max-width: 767px) {
  .capstone-block {
    padding: 2rem;
  }
}
.capstone-block h4 {
  --height: 3.2rem;
  position: absolute;
  top: calc(var(--height) * -1);
  left: 0;
  min-width: 25rem;
  height: var(--height);
  padding: 0 3rem 0 2rem;
  background-color: var(--clr-primary);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--clr-white);
  clip-path: polygon(0 0, calc(100% - 2rem) 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 767px) {
  .capstone-block h4 {
    min-width: 15rem;
  }
}
.capstone-block__pict {
  position: absolute;
  top: -5rem;
  right: -2rem;
  width: 14rem;
}
@media screen and (max-width: 767px) {
  .capstone-block__pict {
    top: -3rem;
    right: 1rem;
    width: 7rem;
  }
}
.capstone-block__inner01 {
  display: grid;
  grid-template-columns: 29.9090909091% 1fr;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .capstone-block__inner01 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.capstone-block__inner01 > div:first-child figure {
  margin-bottom: 2rem;
}
.capstone-block__inner01 > div:last-child {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .capstone-block__inner01 > div:last-child {
    gap: 2rem;
  }
}
.capstone-block__inner01 p {
  line-height: 1.6;
  text-align: justify;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
.capstone-block__inner01 p:first-of-type {
  text-align: left;
  font-size: 1.6rem;
  font-weight: var(--fnt-weight-bld);
  letter-spacing: 0.1em;
}
.capstone-block__inner01 h5 {
  line-height: 1.3636363636;
  font-size: 2.3rem;
  font-weight: var(--fnt-weight-mid);
  color: var(--clr-primary);
}
@media screen and (max-width: 767px) {
  .capstone-block__inner01 h5 {
    font-size: 2rem;
  }
}
.capstone-block__inner02 {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .capstone-block__inner02 {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 1rem;
  }
}
.capstone-block__label {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .capstone-block__label {
    gap: 1rem;
  }
}
.capstone-block__label span {
  min-width: 14rem;
  padding: 0 1rem;
  border: solid 1px var(--clr-primary);
  background-color: var(--clr-white);
  text-align: center;
  font-size: 1.4rem;
  font-weight: var(--fnt-weight-mid);
  color: var(--clr-primary);
}
@media screen and (max-width: 767px) {
  .capstone-block__label span {
    min-width: 10rem;
    font-size: 1.4rem;
  }
}
.capstone-block__info {
  display: flex;
  align-items: baseline;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .capstone-block__info {
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
  }
}
.capstone-block__info p {
  min-width: 15em;
  font-size: 1.7rem;
  font-weight: var(--fnt-weight-mid);
}
@media screen and (max-width: 767px) {
  .capstone-block__info p {
    min-width: initial;
  }
}
.capstone-block__info div {
  border-bottom: solid 1px var(--clr-primary);
}
.capstone-block__info div span {
  margin-right: 1rem;
  font-size: 1.6rem;
  font-weight: var(--fnt-weight-mid);
}
.capstone-block__info div strong {
  font-size: 1.9rem;
  font-weight: var(--fnt-weight-mid);
  color: var(--clr-primary);
}
.capstone-block__info div strong em {
  display: inline-block;
  text-align: center;
  min-width: 2em;
  font-family: var(--fnt-aboreto);
  font-size: 2.8rem;
  font-style: normal;
  font-weight: var(--fnt-weight-bld);
}

/* -------------------------------------------
  Interview
------------------------------------------- */
.interview-wrap {
  margin-top: 12rem;
  padding-bottom: 5rem;
  display: flex;
  flex-direction: column;
  gap: 15rem;
}
@media screen and (max-width: 767px) {
  .interview-wrap {
    margin-top: 5rem;
    padding-bottom: 10rem;
    gap: 10rem;
  }
}

.interview-block {
  display: flex;
  gap: 5%;
}
@media screen and (max-width: 767px) {
  .interview-block {
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 768px) {
  .interview-block:nth-child(odd) {
    flex-direction: row-reverse;
  }
}
.interview-block__text {
  flex: 1;
}
.interview-block figure {
  width: 58%;
}
@media screen and (max-width: 767px) {
  .interview-block figure {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.interview-block .position {
  line-height: var(--line-height-sm);
  font-size: 1.5rem;
}
.interview-block .name {
  margin: 0.5rem 0 2rem;
  font-size: 2.2rem;
}
.interview-block .name small {
  font-size: 0.7em;
}
.interview-block .name .en {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--fnt-aboreto);
  font-size: 1.6rem;
  font-weight: var(--fnt-weight-bld);
  color: var(--clr-primary);
}

/* -------------------------------------------
  Top
------------------------------------------- */
/* Opening
------------------------------------------- */
.opening {
  will-change: opacity, transform;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--clr-black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--clr-white);
}
.opening p {
  position: relative;
  line-height: 1.2;
  font-family: var(--fnt-aboreto);
  font-size: 10vw;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .opening p {
    font-size: 16vw;
  }
}
.opening p span {
  display: block;
  width: 100%;
}
.opening p.copy01 span {
  margin: 0 100% 0 -100%;
}
.opening p.copy02 span {
  margin: 0 -100% 0 100%;
  transform: skew(20deg);
}
.opening.start {
  animation: opening 4s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.opening.start p.copy01 span {
  animation: copy01 4s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.opening.start p.copy02 span {
  animation: copy02 4s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.opening.end {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.001s linear;
}

@keyframes opening {
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes copy01 {
  0% {
    margin: 0 100% 0 -100%;
  }
  20% {
    transform: skew(-20deg);
  }
  45% {
    margin: 0 0% 0 0%;
    transform: skew(0deg);
  }
  55% {
    margin: 0 0% 0 0%;
    transform: skew(0deg);
    opacity: 1;
  }
  70% {
    transform: skew(-20deg);
  }
  100% {
    margin: 0 -100% 0 100%;
    transform: skew(0deg);
    opacity: 0;
  }
}
@keyframes copy02 {
  0% {
    margin: 0 -100% 0 100%;
  }
  20% {
    transform: skew(20deg);
  }
  45% {
    margin: 0 0% 0 0%;
    transform: skew(0deg);
  }
  55% {
    margin: 0 0% 0 0%;
    transform: skew(0deg);
    opacity: 1;
  }
  70% {
    transform: skew(20deg);
  }
  100% {
    margin: 0 100% 0 -100%;
    transform: skew(0deg);
    opacity: 0;
  }
}
/* Mainvisual
------------------------------------------- */
.mainvisual {
  position: relative;
  width: 100%;
  aspect-ratio: 1920/770;
  background: url(../images/top/mainvisual01.jpg) center center/cover no-repeat;
}
.mainvisual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/top/mainvisual02.jpg) center center/cover no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease;
  will-change: opacity, transform;
}
.mainvisual h1 {
  position: absolute;
  top: 13.5064935065%;
  left: 47.0833333333%;
  line-height: 1.07;
  font-family: var(--fnt-aboreto);
  font-size: 4.0625vw;
  font-weight: var(--fnt-weight-reg);
  color: var(--clr-white);
  transition: color 1.5s ease;
}
.mainvisual.change::before {
  opacity: 1;
}
.mainvisual.change h1 {
  color: #88793c;
}
.mainvisual.no-transition::before {
  transition: none !important;
}

/* Information
------------------------------------------- */
.info__categories {
  margin-top: 5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 1.3rem;
  font-weight: var(--fnt-weight-bld);
}
@media screen and (max-width: 767px) {
  .info__categories {
    gap: 1rem;
    font-size: 1.2rem;
  }
}
.info__categories li > * {
  display: flex;
  padding: 0.1rem 1.5rem;
  border: solid 1px var(--clr-primary);
  border-radius: 5rem;
  color: var(--clr-primary);
  cursor: pointer;
}
.info__categories li > *.is-active {
  background-color: var(--clr-primary);
  color: var(--clr-white);
}
@media (hover: hover) {
  .info__categories li > * {
    transition: background-color 0.3s ease;
  }
  .info__categories li > *:hover {
    background-color: var(--clr-primary-p20);
  }
}
.info__posts {
  margin-top: 3.3rem;
  border-bottom: solid 1px var(--clr-black-30);
  display: flex;
  flex-direction: column;
}
.info__posts li {
  border-top: solid 1px var(--clr-black-30);
}
.info__posts li a {
  position: relative;
  padding: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.5rem;
}
.info__posts li a::after {
  content: "";
  position: absolute;
  top: calc(50% - 1.25rem);
  right: 0;
  width: 2.5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: url(../images/information/info-arrow.svg) center center/contain no-repeat var(--clr-primary);
}
@media (hover: hover) {
  .info__posts li a {
    transition: background-color 0.3s ease;
  }
  .info__posts li a:hover {
    background-color: var(--clr-primary-p10);
  }
}
.info__posts li time {
  font-size: 1.4rem;
  letter-spacing: 0;
}
.info__posts li span {
  display: flex;
  padding: 0 1rem;
  border: solid 1px var(--clr-primary);
  border-radius: 5rem;
  font-size: 1rem;
  color: var(--clr-primary);
}
.info__posts li p {
  width: calc(100% - 5rem);
  font-size: 1.4rem;
  font-weight: var(--fnt-weight-bld);
  color: var(--clr-primary);
}
.info__more {
  margin-top: 3rem;
}
.info__more a {
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  font-size: 1.4rem;
  font-weight: var(--fnt-weight-bld);
  text-decoration: underline;
  text-underline-offset: 1rem;
  color: var(--clr-primary);
}
.info__more a::before {
  content: "";
  width: 7rem;
  aspect-ratio: 7/1;
  margin-top: 0.2rem;
  background: url(../images/information/info-more.svg) center right/contain no-repeat;
}
@media (hover: hover) {
  .info__more a {
    transition: gap 0.3s ease;
  }
  .info__more a:hover {
    gap: 1rem;
    text-decoration: none;
  }
}
.info__post-block {
  padding: var(--sp-lg);
  background-color: var(--clr-white);
}
@media screen and (max-width: 767px) {
  .info__post-block {
    padding: var(--sp-lg) var(--sp-md);
  }
}

.post-outline {
  display: flex;
  align-items: center;
  gap: 0 1.5rem;
}
.post-outline time {
  font-size: 1.4rem;
  letter-spacing: 0;
}
.post-outline span {
  display: flex;
  padding: 0 1rem;
  border: solid 1px var(--clr-primary);
  border-radius: 5rem;
  font-size: 1rem;
  color: var(--clr-primary);
}
.post-title {
  margin-top: 1rem;
  padding-bottom: 5rem;
  border-bottom: solid 1px var(--clr-primary);
}
.post-title h2 {
  font-size: 2.4rem;
  color: var(--clr-primary);
}
.post-body {
  padding: 5rem 0;
  border-bottom: solid 1px var(--clr-primary);
}
.post-body > *:not(:last-child) {
  margin-bottom: 2rem;
}
.post-body p {
  line-height: 1.8;
}
.post-body a:not([class]) {
  color: var(--clr-primary);
}
@media (hover: hover) {
  .post-body a:not([class]):hover {
    text-decoration: underline;
  }
}
.post-body table th, .post-body table td {
  padding: 1em;
  vertical-align: top;
  border: solid var(--clr-black-20);
  border-width: 1px 0;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .post-body table th, .post-body table td {
    display: block;
    padding: 1em 0;
    border: none;
  }
}
.post-body table th {
  background-color: var(--clr-primary-p10);
  white-space: nowrap;
  color: var(--clr-primary);
}
@media screen and (max-width: 767px) {
  .post-body table th {
    width: 100%;
    padding: 0.5em;
  }
}
@media screen and (max-width: 767px) {
  .post-body table tr:not(:last-child) td {
    padding-bottom: 2em;
  }
}
.post-pager {
  margin-top: 5rem;
  display: flex;
  justify-content: space-between;
  font-weight: var(--fnt-weight-bld);
  color: var(--clr-primary);
}
@media screen and (max-width: 767px) {
  .post-pager {
    font-size: 1.4rem;
  }
}
.post-pager li {
  display: flex;
  align-items: center;
}
@media (hover: hover) {
  .post-pager li a:hover {
    text-decoration: underline;
  }
}
.post-pager li a[href="#"] {
  pointer-events: none;
  opacity: 0.5;
}
.post-pager-prev::before {
  content: "";
  width: 3rem;
  aspect-ratio: 1/1;
  margin-right: 1.5rem;
  background-color: var(--clr-primary);
  -webkit-mask: url(/assets/images/common/g-nav-lower-icon.svg) center center/contain no-repeat;
          mask: url(/assets/images/common/g-nav-lower-icon.svg) center center/contain no-repeat;
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .post-pager-prev::before {
    width: 1.5rem;
    margin-right: 0.5rem;
  }
}
.post-pager-next::after {
  content: "";
  width: 3rem;
  aspect-ratio: 1/1;
  margin-left: 1.5rem;
  background-color: var(--clr-primary);
  -webkit-mask: url(/assets/images/common/g-nav-lower-icon.svg) center center/contain no-repeat;
          mask: url(/assets/images/common/g-nav-lower-icon.svg) center center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .post-pager-next::after {
    width: 1.5rem;
    margin-left: 0.5rem;
  }
}

/* Top Content
------------------------------------------- */
.top-content-block {
  padding: 7.5rem 0;
  background-color: var(--clr-black-15);
  display: flex;
  align-items: center;
  gap: 7%;
}
@media screen and (max-width: 767px) {
  .top-content-block {
    padding: 5rem 5%;
    flex-direction: column;
  }
}
.top-content-block:not(:first-child) {
  margin-top: 3rem;
}
.top-content-block > figure {
  width: 47%;
}
@media screen and (max-width: 767px) {
  .top-content-block > figure {
    width: 100%;
    margin-top: 3rem;
  }
}
.top-content-block > div {
  flex: 1;
  max-width: 51rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .top-content-block > div {
    gap: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .top-content-block:nth-child(odd) > div {
    margin-right: auto;
    margin-left: max((100% - 120rem) / 2, 5%);
  }
  .top-content-block:nth-child(even) {
    flex-direction: row-reverse;
  }
  .top-content-block:nth-child(even) > div {
    margin-right: max((100% - 120rem) / 2, 5%);
    margin-left: auto;
  }
}
.top-content-block h3 {
  font-size: 2.8rem;
  color: var(--clr-primary);
}
@media screen and (max-width: 767px) {
  .top-content-block h3 {
    font-size: 2.2rem;
  }
}
.top-content-block dl {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .top-content-block dl {
    gap: 1rem;
  }
}
.top-content-block dl dt {
  font-size: 2rem;
  font-weight: var(--fnt-weight-bld);
}
@media screen and (max-width: 767px) {
  .top-content-block dl dt {
    font-size: 1.8rem;
  }
}

/* Program
------------------------------------------- */
.top-program-list {
  display: flex;
  gap: 2px;
}
@media screen and (max-width: 767px) {
  .top-program-list {
    flex-direction: column;
  }
}
.top-program-list li {
  flex: 1;
}
.top-program-list li a {
  position: relative;
  display: block;
  overflow: hidden;
}
.top-program-list li a figure img {
  width: 100%;
  aspect-ratio: 640/400;
}
.top-program-list li a figure figcaption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  text-align: center;
  color: var(--clr-white);
}
.top-program-list li a figure figcaption::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clr-primary);
  mix-blend-mode: multiply;
  opacity: 0.5;
}
.top-program-list li a figure figcaption > * {
  position: relative;
}
.top-program-list li a figure figcaption > * span {
  display: inline-block;
}
.top-program-list li a figure h3 {
  font-size: 2.4rem;
  letter-spacing: 0.2em;
}
@media (hover: hover) {
  .top-program-list li a figure img {
    transition: transform 0.3s ease;
  }
  .top-program-list li a:hover figure img {
    transform: scale(1.1);
  }
}

/* Interview
------------------------------------------- */
.top-interview-block {
  background-color: var(--clr-primary);
  display: flex;
}
@media screen and (max-width: 767px) {
  .top-interview-block {
    flex-direction: column;
  }
}
.top-interview-block figure {
  width: 52.9411764706%;
  display: flex;
}
@media screen and (max-width: 767px) {
  .top-interview-block figure {
    width: 100%;
  }
}
.top-interview-block figure span {
  width: 33.3333333333%;
  aspect-ratio: 300/450;
}
.top-interview-block figure span img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-interview-block__text {
  flex: 1;
}
.top-interview-block__text-inner {
  width: min(80%, 51rem);
  height: 100%;
  margin: 0 auto;
  padding: 10% 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
  color: var(--clr-white);
}
@media screen and (max-width: 767px) {
  .top-interview-block__text-inner {
    width: 90%;
  }
}
.top-interview-block h3 {
  font-size: 3rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .top-interview-block h3 {
    font-size: 2.2rem;
  }
}
.top-interview-block dl {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .top-interview-block dl {
    gap: 1rem;
  }
}
.top-interview-block dl dt {
  font-size: 2.2rem;
  font-weight: var(--fnt-weight-bld);
}
@media screen and (max-width: 767px) {
  .top-interview-block dl dt {
    font-size: 1.8rem;
  }
}

/* -------------------------------------------
  Links
------------------------------------------- */
.link-list {
  display: flow-root;
  border-bottom: solid 0.2rem var(--clr-primary);
  color: var(--clr-primary);
}
@media screen and (max-width: 767px) {
  .link-list {
    font-size: 1.4rem;
  }
}
.link-list dt {
  float: left;
  padding: 1rem 0;
}
@media screen and (max-width: 767px) {
  .link-list dt {
    float: none;
    border-top: solid 0.2rem var(--clr-primary);
    font-weight: var(--fnt-weight-bld);
  }
}
.link-list dd {
  padding-left: 25rem;
  border-top: solid 0.2rem var(--clr-primary);
}
@media screen and (max-width: 767px) {
  .link-list dd {
    padding-left: 2rem;
    border-top: none;
  }
}
@media screen and (max-width: 767px) {
  .link-list dd ul {
    border-top: solid 1px var(--clr-primary);
  }
}
.link-list dd ul li {
  padding: 1rem 0;
}
.link-list dd ul li:not(:last-child) {
  border-bottom: solid 0.2rem var(--clr-primary);
}
@media screen and (max-width: 767px) {
  .link-list dd ul li:not(:last-child) {
    border-bottom-width: 1px;
  }
}
.link-list dd ul li a {
  display: flex;
  align-items: center;
  gap: 0 1rem;
}
.link-list dd ul li a[target]::after {
  content: "";
  width: 2rem;
  aspect-ratio: 1/1;
  background-color: var(--clr-black-30);
  -webkit-mask: url(/assets/images/common/icon-exlink.svg) center center/contain no-repeat;
          mask: url(/assets/images/common/icon-exlink.svg) center center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .link-list dd ul li a[target]::after {
    width: 1.6rem;
  }
}
@media (hover: hover) {
  .link-list dd ul li a:hover {
    text-decoration: underline;
  }
  .link-list dd ul li a:hover::after {
    background-color: var(--clr-primary);
  }
}/*# sourceMappingURL=style.css.map */