@charset "UTF-8";
/* =====================================
  Modern Reset
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
  margin: 0;
  font-weight: inherit;
}

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

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

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

button,
input,
textarea,
select {
  font: inherit;
  margin: 0;
  padding: 0;
}

/* =====================================
  Fade Animation
===================================== */
.js-fade {
  opacity: 0;
  transition: opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  filter: blur(8px);
}

.js-fade.is-inview {
  opacity: 1;
  filter: blur(0);
}

.js-fade--fast {
  transition: opacity 400ms ease, filter 500ms ease;
}

.js-fade--mid {
  transition: opacity 600ms ease, filter 700ms ease;
}

.js-fade--slow {
  transition: opacity 900ms ease, filter 1100ms ease;
}

/* =====================================
  Variables
===================================== */
/* =====================================
  Font
===================================== */
.amiri-bold {
  font-family: "Amiri", serif;
  font-weight: 700;
}

.amiri-regular {
  font-family: "Amiri", serif;
  font-weight: 400;
}

.shippori-mincho-b1-medium {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
}

.shippori-mincho-b1-bold {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
}

/* =====================================
  Base
===================================== */
html {
  font-size: 16px;
}

body {
  background-color: #E9E8E9;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  color: #000;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.3s ease;
}
a:hover {
  opacity: 0.7;
}
a img {
  transition: 0.3s ease;
}

/* =====================================
  Utility
===================================== */
.sp-only {
  display: none;
}

@media (max-width: 767px) {
  .sp-only {
    display: inline;
  }
  .pc-only {
    display: none;
  }
}
.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* =====================================
  Layout Container
===================================== */
.section-mv__inner,
.section-curriculum__inner,
.section-outline__inner,
.section-company__inner,
.section-entry__inner {
  max-width: 1308px;
  padding: 0 54px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/*
.bg-gray {
  background-color: #F4F4F4;
  background-image: url(../img/bg-noise-01.png);
  background-position: bottom center;
  background-attachment: fixed;
  background-repeat: repeat-x;
  background-size: 1440px auto;
  padding-bottom: 300px;
}*/
.bg-gray {
  position: relative;
  background-color: #E9E8E9;
  padding-bottom: 300px;
}

.bg-gray::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url(../img/bg-noise-01.png);
  background-position: bottom center;
  background-repeat: repeat-x;
  background-size: 1440px auto;
  background-attachment: scroll;
  opacity: 0;
  transition: opacity 3s ease;
  pointer-events: none;
}

.bg-gray.is-visible::after {
  opacity: 1;
}

.bg-black {
  background-attachment: fixed;
  background-color: #434243;
  background-image: url(../img/bg-noise-02.png);
  background-position: bottom center;
  background-repeat: repeat-x;
  background-size: 1440px auto;
  padding-top: 200px;
  z-index: 0;
  position: relative;
}

/* =====================================
  Header
===================================== */
.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
}
.site-header.is-scrolled {
  background-color: #fff;
}
.site-header.is-scrolled .site-header__hamburger span {
  background-color: #212121;
}
.site-header__inner {
  margin: 0 auto;
  padding: 32px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header__logo {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.is-scrolled .site-header__logo {
  opacity: 1;
  visibility: visible;
}
.site-header__logo img {
  display: block;
  width: 112px;
  height: auto;
}
.site-header__button {
  border: 1px solid #fff;
  background-color: transparent;
  padding: 10px 40px;
  font-size: 14px;
  letter-spacing: 0.08em;
  border-radius: 50px;
  color: #fff;
  transition: 0.3s ease;
}
.site-header__button:hover {
  background-color: #fff;
  color: #212121;
  opacity: 1;
}
.is-scrolled .site-header__button {
  border-color: #212121;
  color: #212121;
}
.is-scrolled .site-header__button:hover {
  background-color: #212121;
  color: #fff;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 400;
}
.global-nav__list {
  display: flex;
  gap: 32px;
}
.global-nav__link {
  color: #fff;
}
.is-scrolled .global-nav__link {
  color: #212121;
}
.global-nav__sns-list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.global-nav__sns-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #fff;
}
.is-scrolled .global-nav__sns-link {
  color: #212121;
}
.global-nav__sns-link::before {
  content: "";
  display: block;
  background-color: currentColor;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.global-nav__sns-link--instagram::before {
  width: 20px;
  height: 20px;
  -webkit-mask-image: url("../img/icon-instagram.svg");
  mask-image: url("../img/icon-instagram.svg");
}
.global-nav__sns-link--note::before {
  width: 16px;
  height: 16px;
  -webkit-mask-image: url("../img/icon-note.svg");
  mask-image: url("../img/icon-note.svg");
}

/* =====================================
  Hamburger Menu
===================================== */
.site-header__hamburger {
  display: none;
}

@media (max-width: 1023px) {
  .service-menu--sp {
    display: block;
    margin: 0 auto;
    position: relative;
  }
  .service-menu--sp .service-menu {
    display: flex;
    justify-content: space-around;
    gap: 1px;
    padding: 0;
  }
  .service-menu--sp .service-menu__item {
    width: 50%;
    position: relative;
  }
  .service-menu--sp .service-menu__item:first-child::after {
    content: "";
    width: 1px;
    height: calc(100% - 24px);
    background: #E3E3E3;
    display: block;
    right: 0;
    top: 12px;
    position: absolute;
  }
  .service-menu--sp .service-menu__link {
    line-height: 1;
    font-weight: 600;
    background: none;
    color: #212121;
    width: auto;
    height: auto;
    padding: 15px 0;
    margin: 0 15px;
    font-size: 0.75rem;
    position: relative;
  }
  .service-menu--sp .service-menu__link::before {
    right: 0;
  }
  .service-menu--sp .service-menu__link::after {
    background-color: #212121;
    right: 0;
  }
  .site-header__logo {
    z-index: 1;
  }
  .site-header__logo svg {
    width: 33vw;
    min-width: 0;
  }
  .site-header {
    /* menu overlay */
  }
  .site-header__menu {
    position: fixed;
    inset: 0;
    background: rgba(33, 33, 33, 0.95);
    flex-direction: column;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    height: 100vh;
  }
  .site-header__menu--upper {
    display: none;
  }
  .site-header__menu--lower {
    justify-content: flex-start;
  }
  .site-header__hamburger {
    display: inline;
    position: relative;
    width: 8vw;
    height: 3.8vw;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 1100;
    max-width: 70px;
    max-height: 20px;
  }
  .site-header__hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .site-header__hamburger span:nth-child(1) {
    top: 0;
  }
  .site-header__hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .site-header__hamburger span:nth-child(3) {
    bottom: 0;
  }
  .global-nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .is-menu-open .service-menu--sp {
    z-index: -1;
    pointer-events: none;
  }
  .is-menu-open .site-header {
    height: 100%;
  }
  .is-menu-open .site-header__logo svg {
    color: #fff;
  }
  .is-menu-open .site-header__menu {
    opacity: 1;
    pointer-events: auto;
    justify-content: center;
    z-index: 1000;
  }
  .is-menu-open .site-header__button {
    border-color: #fff !important;
    color: #fff !important;
  }
  .is-menu-open .site-header__hamburger span {
    background-color: #fff !important;
  }
  .is-menu-open .site-header__hamburger span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(19deg);
  }
  .is-menu-open .site-header__hamburger span:nth-child(2) {
    opacity: 0;
  }
  .is-menu-open .site-header__hamburger span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-19deg);
  }
  .is-menu-open .global-nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .is-menu-open .global-nav__link {
    color: #fff !important;
    white-space: nowrap;
  }
  .is-menu-open .global-nav__sns-link::before {
    background-color: #fff !important;
  }
  .site-header__menu--lower {
    padding: 100px 20%;
  }
  .global-nav__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .global-nav__link {
    font-size: 1.25rem;
    color: #fff;
    text-decoration: none;
    line-height: 1;
    font-weight: 500;
  }
  .global-nav__lang-switch {
    margin-top: 32px;
    font-size: 0.875rem;
    color: #fff;
  }
  .global-nav__lang-switch a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
  }
  .global-nav__lang-switch a[aria-current=page] {
    background: #fff;
    color: #212121;
  }
}
/* =====================================
  Section Spacing
===================================== */
.section-philosophy {
  padding: 130px 0 150px;
}

.section-logomark {
  padding: 176px 0;
}

.section-visual-slider {
  padding: 200px 0 0;
}

.section-curriculum {
  padding: 150px 0 0;
}

.section-mentors {
  padding: 120px 0 0;
}

.section-outline {
  padding: 150px 0 0;
}

.section-company {
  padding: 150px 0 0;
}

.section-faq {
  padding: 150px 0 0;
}

.section-entry {
  padding: 0 0 200px;
}

/* =====================================
  MV
===================================== */
.mv-unit {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.section-mv {
  z-index: -1;
  flex: 1;
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  top: 0;
  left: 0;
  overflow: hidden;
}
.section-mv__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1304px;
  padding: 0 52px;
  height: 100%;
}
.section-mv__content {
  position: absolute;
  bottom: calc(15vh + 80px);
}
.section-mv__badge {
  width: 144px;
  height: 144px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 60px;
}
.section-mv__badge-text-label {
  font-size: 0.875rem;
  line-height: 1;
}
.section-mv__badge-text-date {
  font-size: 1.5rem;
  margin: 4px 0;
  line-height: 1.2;
}
.section-mv__title {
  text-align: left;
}
.section-mv__logo {
  margin-bottom: 50px;
}
.section-mv__logo img {
  display: block;
  width: 284px;
  height: auto;
  filter: brightness(0) invert(1);
}
.section-mv__sub {
  font-size: 2.25rem;
  margin-bottom: 5px;
  letter-spacing: 0.1em;
  color: #fff;
}
.section-mv__tagline {
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  color: #fff;
}
.section-mv__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  border-radius: 0;
  transition: border-radius 0.3s ease;
  will-change: transform, border-radius;
}
.section-mv__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-mv__bg video p {
  opacity: 0;
}
.section-mv__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #675E5E;
  opacity: 0.8;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
}
.section-mv__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/mv-bg-texture.png");
  background-repeat: repeat-x;
  background-size: auto 50%;
  background-position: bottom;
  opacity: 0.1;
  mix-blend-mode: color-burn;
  z-index: 3;
  pointer-events: none;
}

/* News */
.mv-news {
  position: absolute;
  top: calc(100vh - 80px);
  flex-shrink: 0;
  background-color: #fff;
  width: 100%;
  z-index: 10;
}
.mv-news__inner {
  max-width: 1304px;
  height: 80px;
  margin: 0 auto;
  padding: 0 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mv-news__note {
  flex: 1;
  overflow: hidden;
  margin-right: 40px;
}
.mv-news__note a {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: #212121;
  transition: opacity 0.3s ease;
}
.mv-news__note a:hover {
  opacity: 0.6;
}
.mv-news__date {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.mv-news__article-title {
  font-size: 0.875rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-decoration: underline;
}
.mv-news__more {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #212121;
  text-decoration: none;
  position: relative;
  padding-right: 20px;
  line-height: 1;
}
.mv-news__more::after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 0;
  width: 10px;
  height: 10px;
  border: 1px solid #212121;
  border-top: none;
  border-left: none;
  transform: rotate(-45deg);
  transition: ease 0.3s;
}
.mv-news__more:hover::after {
  right: -3px;
}

/* =====================================
  Philosophy
===================================== */
.section-philosophy__inner {
  text-align: center;
}
.section-philosophy h2 {
  font-size: 2rem;
  line-height: 2;
  margin-bottom: 60px;
}
.section-philosophy p {
  font-size: 1.125rem;
  line-height: 3;
}

/* =====================================
  Logomark
===================================== */
.section-logomark {
  background: #F0EFF0;
  text-align: center;
}
.section-logomark img {
  width: 378px;
  margin: 0 auto;
}

/* =====================================
  Curriculum
===================================== */
.section-curriculum__inner {
  max-width: 1248px;
  padding: 0 24px;
  text-align: center;
}
.section-curriculum__header {
  text-align: center;
  margin: 0 auto 60px;
}
.section-curriculum__eyeblow {
  margin-bottom: 10px;
}
.section-curriculum__title {
  margin-bottom: 10px;
  font-size: 3rem;
}
.section-curriculum__lead {
  font-size: 1.125rem;
}

.curriculum-phase {
  position: relative;
  color: #fff;
}
.curriculum-phase-01 {
  background-color: #B2B2B2;
}
.curriculum-phase-02 {
  background-color: #9F9D9D;
}
.curriculum-phase-03 {
  background-color: #848282;
}
.curriculum-phase-04 {
  background-color: #726B6B;
}
.curriculum-phase-05 {
  background-color: #665E5E;
}
.curriculum-phase::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/mv-bg-texture.png");
  background-repeat: repeat-x;
  background-size: auto 200px;
  background-position: bottom;
  opacity: 0.1;
  mix-blend-mode: color-burn;
  z-index: 3;
  pointer-events: none;
}
.curriculum-phase__header {
  text-align: left;
  padding: 60px 6%;
}
.curriculum-phase__label {
  font-size: 0.875rem;
  margin-bottom: 5px;
}
.curriculum-phase__title {
  font-size: 1.875rem;
  margin-bottom: 10px;
}

.curriculum-table {
  margin-left: 6%;
  width: 94%;
}

.curriculum-row__header {
  display: grid;
  grid-template-columns: 78px 1fr 40px;
  align-items: center;
  padding: 24px 37px 24px 8%;
  cursor: pointer;
  position: relative;
}
.curriculum-row__header-01 {
  background-color: #C2C2C2;
}
.curriculum-row__header-02 {
  background-color: #BCBCBC;
}
.curriculum-row__header-03 {
  background-color: #B7B7B7;
}
.curriculum-row__header-04 {
  background-color: #B4B3B3;
}
.curriculum-row__header-05 {
  background-color: #ACABAB;
}
.curriculum-row__header-06 {
  background-color: #A6A4A4;
}
.curriculum-row__header-07 {
  background-color: #A2A1A1;
}
.curriculum-row__header-08 {
  background-color: #999595;
}
.curriculum-row__header-09 {
  background-color: #847E7E;
}
.curriculum-row__header-10 {
  background-color: #7F7A7A;
}
.curriculum-row__header-11 {
  background-color: #736D6D;
}
.curriculum-row__cell.-main {
  display: flex;
  align-items: baseline;
  gap: 17px;
  flex-wrap: wrap;
  row-gap: 7px;
}
.curriculum-row__cell.-icon {
  border: 1px solid #fff;
  display: block;
  width: 12px;
  height: 12px;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  position: absolute;
  top: calc(50% - 12px);
  right: 34px;
}
.curriculum-row__cell.-number {
  border: 1px solid #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  line-height: 1;
  padding: 8px 5px 5px;
  max-width: 64px;
}
.curriculum-row__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
  overflow: hidden;
}
.curriculum-row.is-open .curriculum-row__body {
  grid-template-rows: 1fr;
}
.curriculum-row.is-open .curriculum-row__cell.-icon {
  transform: rotate(135deg);
  top: calc(50% - 6px);
}
.curriculum-row__inner {
  min-height: 0;
  background: #fff;
  color: #212121;
  text-align: left;
}
.curriculum-row__content {
  padding: 80px 8%;
}
.curriculum-row__message {
  font-size: 0.875rem;
  line-height: 2;
}
.curriculum-row__name {
  font-size: 1.125rem;
}
.curriculum-row__summary {
  font-size: 0.875rem;
}

.curriculum-info__group {
  border-top: 1px solid #212121;
  padding-top: 54px;
  margin-top: 54px;
}
.curriculum-info__label {
  font-size: 1.125rem;
  margin-bottom: 20px;
}
.curriculum-info__list {
  font-size: 0.875rem;
  line-height: 2;
}
.curriculum-info__list dd:not(:last-of-type) {
  margin-bottom: 20px;
}
.curriculum-info__list ul {
  list-style: disc outside;
  margin-left: 2rem;
}

.section-curriculum__content {
  display: flex;
  gap: 3%;
}

.curriculum-day {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  position: relative;
}
.curriculum-day::after {
  content: "";
  background-color: #212121;
  height: calc(100% - 80px);
  width: 1px;
  display: block;
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 50%;
}

.curriculum-phase__wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* =====================================
  Visual slider
===================================== */
.section-visual-slider {
  width: 100%;
}
.section-visual-slider .visual-slider__inner {
  width: 100%;
  height: 485px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.section-visual-slider .visual-slider__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.5s ease-in-out, visibility 1.5s;
}
.section-visual-slider .visual-slider__item.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.section-visual-slider .visual-slider__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
}

/* =====================================
  Creative Mentors
===================================== */
.section-mentors__inner {
  max-width: 982px;
  padding-left: 54px;
  padding-right: 54px;
  margin: 0 auto;
}
.section-mentors__header {
  text-align: center;
  margin: 0 auto 100px;
}
.section-mentors__title {
  margin-bottom: 40px;
  font-size: 2.5rem;
}
.section-mentors__title span {
  font-size: 0.75rem;
  display: block;
}
.section-mentors__lead {
  font-size: 1.5rem;
  line-height: 1.8;
}
.section-mentors__item {
  display: flex;
  gap: 64px;
  margin-bottom: 120px;
  border-bottom: 1px solid #D0CDD0;
  padding-bottom: 120px;
}
.section-mentors__left {
  flex-shrink: 0;
}
.section-mentors__icon-wp {
  width: 209px;
  height: 209px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0;
}
.section-mentors__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-mentors__right {
  flex-grow: 1;
}
.section-mentors__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
  line-height: 1;
}
.section-mentors__name {
  font-size: 2rem;
}
.section-mentors__job {
  font-size: 0.875rem;
  line-height: 1.5;
}
.section-mentors__content {
  margin-bottom: 60px;
}
.section-mentors__catch {
  margin-bottom: 20px;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.section-mentors__subcatch {
  margin-bottom: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.section-mentors__text {
  font-size: 0.875rem;
  line-height: 2;
}
.section-mentors__profile {
  margin-bottom: 40px;
}
.section-mentors__profile-text, .section-mentors__award {
  font-size: 0.75rem;
  line-height: 2;
  margin-bottom: 15px;
}
.section-mentors__link {
  font-size: 0.875rem;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s;
}
.section-mentors__link::after {
  content: "";
  background-image: url(../img/icon-blank.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 12px;
  height: 12px;
  margin-left: 5px;
}

.section-tutor__item {
  text-align: center;
  margin-bottom: 120px;
  border-bottom: 1px solid #D0CDD0;
  padding-bottom: 120px;
}

/* =====================================
  Outline
===================================== */
.section-outline__header {
  text-align: center;
  margin: 0 auto 60px;
}
.section-outline__title {
  margin-bottom: 40px;
  font-size: 2.5rem;
}
.section-outline__title span {
  font-size: 0.75rem;
  display: block;
}
.section-outline__lead {
  font-size: 1.5rem;
  line-height: 1.8;
}
.section-outline__card {
  margin: 0 auto;
  max-width: 874px;
  padding: 80px 120px 120px;
  background-color: #fff;
  background-image: url(../img/bg-noise-03.png);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 703px auto;
}
.section-outline__list {
  display: grid;
  grid-template-columns: 100px 1fr;
  row-gap: 30px;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.section-outline__desc {
  line-height: 1.8;
}
.section-outline__desc a {
  text-decoration: underline;
}
.section-outline__desc a:hover {
  text-decoration: none;
}
.section-outline__desc dl dd:not(:last-child) ul {
  margin-bottom: 20px;
}
.section-outline__desc dl dd ul li {
  padding-left: 1.25rem;
  position: relative;
}
.section-outline__desc dl dd ul li:before {
  font-size: 0.875rem;
  content: "●";
  color: #D0CDD0;
  position: absolute;
  left: 0;
  top: 3px;
}

.text-line-through {
  text-decoration: line-through;
}

.text-red {
  color: #C30000;
}

/* =====================================
  Company
===================================== */
.section-company__header {
  text-align: center;
  margin: 0 auto 60px;
}
.section-company__title {
  margin-bottom: 40px;
  font-size: 2.5rem;
}
.section-company__title span {
  font-size: 0.75rem;
  display: block;
}
.section-company__info {
  max-width: 874px;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 52px;
  align-items: center;
  margin: 0 auto 150px;
}
.section-company__content h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.section-company__list {
  display: grid;
  grid-template-columns: 120px 1fr;
  row-gap: 12px;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.section-company__message {
  max-width: 874px;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 60px;
  align-items: flex-start;
  margin: 0 auto;
}
.section-company__profile {
  margin-top: 20px;
}
.section-company__profile dt {
  font-size: 0.75rem;
}
.section-company__profile dd {
  font-size: 1.125rem;
}
.section-company__eyeblow {
  font-size: 0.75rem;
  margin-bottom: 30px;
}
.section-company__heading {
  font-size: 2rem;
  margin-bottom: 30px;
}
.section-company__text {
  line-height: 2;
  font-size: 0.9375rem;
}

/* =====================================
  FAQ
===================================== */
.section-faq__header {
  text-align: center;
  margin: 0 auto 60px;
}
.section-faq__title {
  margin-bottom: 40px;
  font-size: 2.5rem;
}
.section-faq__title span {
  font-size: 0.75rem;
  display: block;
}
.section-faq__inner {
  max-width: 982px;
  padding-left: 54px;
  padding-right: 54px;
  margin: 0 auto;
}
.section-faq__list {
  border-top: 1px solid #ccc;
}
.section-faq__list:last-of-type .section-faq__item {
  border-bottom: 1px solid #ccc;
}
.section-faq__item.is-open .section-faq__body {
  grid-template-rows: 1fr;
  padding-bottom: 40px;
}
.section-faq__item.is-open .section-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.section-faq__head {
  display: flex;
  align-items: center;
  padding: 40px 0;
  cursor: pointer;
  position: relative;
}
.section-faq__q {
  font-size: 2.5rem;
  margin-right: 30px;
  line-height: 1;
}
.section-faq__question {
  font-size: 1rem;
  flex-grow: 1;
  padding-right: 40px;
  margin: 0;
}
.section-faq__icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-right: 40px;
}
.section-faq__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #212121;
  transform: translateY(-50%);
}
.section-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 100%;
  background-color: #212121;
  transform: translate(-50%, -50%);
  transition: transform 0.3s, opacity 0.3s;
}
.section-faq__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease, padding 0.4s ease;
  overflow: hidden;
  padding: 0;
}
.section-faq__body-inner {
  min-height: 0;
}
.section-faq__text {
  font-size: 0.875rem;
  line-height: 2;
  margin: 0;
}

/* =====================================
  Entry
===================================== */
.section-entry {
  text-align: center;
  color: #fff;
}
.section-entry__header {
  text-align: center;
  margin: 0 auto 90px;
}
.section-entry__title {
  margin-bottom: 40px;
  font-size: 2.4rem;
}
.section-entry__title.amiri-regular {
  font-size: 3.75rem;
}
.section-entry__title span {
  font-size: 0.75rem;
  display: block;
}
.section-entry__content {
  text-align: center;
}
.section-entry__limit {
  font-size: 1.125rem;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
.section-entry__cta {
  max-width: 663px;
  display: block;
  background-color: #212121;
  border-radius: 5px;
  padding: 50px 120px;
  margin: 100px auto 50px;
  text-decoration: none;
  color: #fff;
  position: relative;
  font-size: 1.125rem;
  line-height: 2;
}
.section-entry__cta:hover {
  color: #212121;
  background: #fff;
  opacity: 1;
}
.section-entry__cta:hover::after {
  right: 35px;
  border-color: #212121;
}
.section-entry__cta::after {
  content: "";
  position: absolute;
  right: 40px;
  top: calc(50% - 7px);
  transition: ease 0.3s;
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(-45deg);
  letter-spacing: 0.05em;
}
.section-entry__sub-lead {
  margin-bottom: 40px;
  line-height: 2;
}
.section-entry__sub-lead a {
  color: #fff;
  text-decoration: underline;
}
.section-entry__sub-lead a:hover {
  text-decoration: none;
}

/* =====================================
  Form
===================================== */
.lp-form-item {
  width: 663px;
  margin: 0 auto;
  text-align: left;
}
.lp-form-item label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.875rem;
}
.lp-form-item label span {
  color: #C30000;
}
.lp-form-item input,
.lp-form-item textarea {
  width: 100%;
  padding: 20px 30px;
  background: #fff;
  margin-bottom: 30px;
  border-radius: 6px;
  border: none;
}

.lp-form-submit {
  margin-top: 30px;
  margin-bottom: 50px;
}
.lp-form-submit button {
  background: #212121;
  color: #fff;
  cursor: pointer;
  font-size: 0.875rem;
  padding: 20px 170px;
  border-radius: 6px;
  border: none;
  transition: 0.3s ease;
}
.lp-form-submit button:hover {
  color: #212121;
  background: #fff;
}

.form-thanks p {
  line-height: 2;
}

.lp-form__caution {
  font-size: 0.75rem;
  color: #fff;
  line-height: 1.8;
}

/* =====================================
  Footer
===================================== */
.site-footer {
  padding: 40px 0;
  color: #fff;
}
.site-footer__inner {
  width: 90%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-footer__link a {
  color: #fff;
  font-size: 0.75rem;
  text-decoration: underline;
}
.site-footer__link a:hover {
  text-decoration: none;
}
.site-footer__copy {
  font-size: 0.75rem;
}

/* =====================================
  Modal
===================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0.35s;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.is-open .modal__overlay {
  opacity: 1;
}
.modal__container {
  position: relative;
  max-width: 800px;
  margin: 10vh auto;
  background: #fff;
  padding: 60px;
  max-height: 80vh;
  overflow: auto;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.35s ease;
}
.is-open .modal__container {
  transform: translateY(0);
  opacity: 1;
}
.modal__close {
  border: 1px solid #000;
  background: none;
  padding: 10px 40px;
  cursor: pointer;
  text-align: center;
}

/* =====================================
  Policy
===================================== */
.policy__title {
  font-size: 1.5rem;
  margin-bottom: 40px;
  text-align: center;
}
.policy__lead {
  font-size: 0.875rem;
  margin-bottom: 30px;
}
.policy__item {
  margin-bottom: 24px;
}
.policy__subtitle {
  font-weight: 600;
  margin-bottom: 6px;
}
.policy__button {
  text-align: center;
  margin: 40px auto 0;
}

.policy-copy {
  font-size: 14px;
  line-height: 1.8;
}

.policy__list {
  padding-left: 20px;
  list-style: disc;
}

/* =====================================
  SP
===================================== */
@media (max-width: 767px) {
  body {
    font-size: 0.875rem;
  }
  /* =============================
  container
  ============================= */
  .section-mv__inner,
  .section-outline__inner,
  .section-company__inner,
  .section-entry__inner,
  .section-mentors__inner,
  .section-faq__inner {
    padding: 0 20px;
  }
  /* =============================
  background
  ============================= */
  .bg-gray {
    padding: 60px 0 80px;
  }
  .bg-gray::after {
    position: absolute;
    bottom: 0;
    background-size: 800px auto;
  }
  .bg-black {
    padding-top: 60px;
    background-size: 800px auto;
  }
  /* =============================
  Header
  ============================= */
  .site-header {
    top: 0;
  }
  .site-header__inner {
    padding: 18px 24px;
  }
  .site-header__logo img {
    width: auto;
    height: 24px;
  }
  /* =============================
  Section spacing
  ============================= */
  .section-mv {
    padding: 0;
  }
  .section-philosophy {
    padding: 0 20px 60px;
  }
  .section-curriculum {
    padding: 80px 0 0;
  }
  .section-mentors {
    padding: 80px 0 0;
  }
  .section-outline {
    padding: 80px 0 0;
  }
  .section-company {
    padding: 80px 0 0;
  }
  .section-entry {
    padding: 0 0 120px;
  }
  /* =============================
  MV
  ============================= */
  .mv-unit {
    height: 100vh;
    height: 100svh;
  }
  .section-mv__inner {
    max-width: 100%;
    padding: 0 24px;
  }
  .section-mv__content {
    position: absolute;
    bottom: 15vh;
  }
  .section-mv__badge {
    width: 109px;
    height: 109px;
    margin-bottom: 30px;
  }
  .section-mv__badge-text-label {
    font-size: 0.75rem;
  }
  .section-mv__badge-text-date {
    font-size: 1.125rem;
  }
  .section-mv__logo {
    margin-bottom: 20px;
  }
  .section-mv__logo img {
    width: 172px;
  }
  .section-mv__sub {
    font-size: 0.875rem;
  }
  .section-mv__tagline {
    font-size: 1rem;
    letter-spacing: 0;
  }
  .mv-news {
    top: auto;
    bottom: 0;
    background: #fff;
  }
  .mv-news__inner {
    height: 60px;
    padding: 0 24px;
  }
  .mv-news__note {
    margin-right: 0;
  }
  .mv-news__note a {
    gap: 12px;
  }
  .mv-news__date {
    font-size: 0.75rem;
  }
  .mv-news__article-title {
    font-size: 0.75rem;
  }
  .mv-news__more {
    display: none;
  }
  /* =====================================
    Philosophy
  ===================================== */
  .section-philosophy__inner {
    text-align: left;
  }
  .section-philosophy h2 {
    font-size: 1.125rem;
    line-height: 2;
    margin-bottom: 20px;
  }
  .section-philosophy p {
    font-size: 0.875rem;
    line-height: 2;
  }
  /* =====================================
    Logomark
  ===================================== */
  .section-logomark {
    padding: 60px 20px;
  }
  .section-logomark img {
    width: 60%;
  }
  /* =============================
  Curriculum
  ============================= */
  .section-curriculum__inner {
    padding-left: 0;
    padding-right: 0;
  }
  .section-curriculum__header {
    margin-bottom: 30px;
  }
  .section-curriculum__title {
    font-size: 1.5rem;
  }
  .section-curriculum__lead {
    font-size: 0.875rem;
  }
  .curriculum-phase__header {
    text-align: left;
    padding: 30px 5%;
  }
  .curriculum-phase__label {
    font-size: 0.75rem;
    margin-bottom: 5px;
  }
  .curriculum-phase__title {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }
  .curriculum-phase__desc {
    font-size: 0.8125rem;
  }
  .curriculum-table {
    margin-left: 2%;
    width: 98%;
  }
  .curriculum-row__header {
    grid-template-columns: 78px 1fr 12%;
    padding: 24px 5%;
  }
  .curriculum-row__message br {
    display: none;
  }
  .curriculum-row__cell.-main {
    display: block;
    text-align: left;
  }
  .curriculum-row__cell.-icon {
    right: 8%;
  }
  .curriculum-row__cell.-number {
    font-size: 0.75rem;
    padding: 8px 10px 5px;
    max-width: auto;
  }
  .curriculum-row__content {
    padding: 40px 8%;
  }
  .curriculum-row__name {
    font-size: 1rem;
    display: block;
    margin-bottom: 5px;
  }
  .curriculum-row__summary {
    font-size: 0.8125rem;
    display: block;
  }
  .curriculum-info__group {
    padding-top: 30px;
    margin-top: 30px;
  }
  .curriculum-info__label {
    font-size: 1rem;
  }
  .curriculum-info__list {
    line-height: 1.8;
  }
  .curriculum-info__list dd {
    font-size: 0.8125rem;
  }
  .curriculum-info__list dd:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .curriculum-info__list ul {
    margin-left: 1.4rem;
  }
  .section-curriculum__content {
    display: block;
  }
  .curriculum-day {
    display: none;
  }
  /* =====================================
    Visual slider
  ===================================== */
  .section-visual-slider {
    padding: 120px 0 0;
  }
  .section-visual-slider .visual-slider__inner {
    height: 250px;
  }
  /* =====================================
    Creative Mentors
  ===================================== */
  .section-mentors__inner {
    max-width: 100%;
  }
  .section-mentors__header {
    margin-bottom: 60px;
  }
  .section-mentors__title {
    font-size: 1.75rem;
  }
  .section-mentors__title span {
    font-size: 0.75rem;
  }
  .section-mentors__lead {
    font-size: 1rem;
    line-height: 1.6;
  }
  .section-mentors__item {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
  .section-mentors__icon-wp {
    width: 150px;
    height: 150px;
  }
  .section-mentors__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .section-mentors__right {
    flex-grow: 1;
  }
  .section-mentors__meta {
    flex-direction: column;
    gap: 20px;
    border-bottom: none;
  }
  .section-mentors__name {
    font-size: 1.5rem;
  }
  .section-mentors__job {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .section-mentors__content {
    margin-bottom: 40px;
  }
  .section-mentors__text {
    line-height: 1.8;
  }
  .section-mentors__text br {
    display: none;
  }
  .section-mentors__profile {
    margin-bottom: 40px;
  }
  .section-mentors__profile br {
    display: none;
  }
  .section-mentors__profile-text, .section-mentors__award {
    line-height: 1.8;
  }
  .section-mentors__subcatch {
    margin-bottom: 5px;
  }
  .section-tutor__item {
    margin-bottom: 60px;
    padding-bottom: 60px;
  }
  /* =============================
  Outline
  ============================= */
  .section-outline__header {
    margin-bottom: 40px;
  }
  .section-outline__title {
    font-size: 1.75rem;
  }
  .section-outline__title span {
    font-size: 0.75rem;
  }
  .section-outline__lead {
    font-size: 1rem;
    line-height: 1.6;
  }
  .section-outline__card {
    padding: 40px 24px;
    background-size: 400px auto;
  }
  .section-outline__list {
    grid-template-columns: 1fr;
    row-gap: 10px;
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .section-outline__term {
    font-size: 0.875rem;
  }
  .section-outline__desc {
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 1rem;
  }
  .section-outline__desc dt {
    margin-bottom: 5px;
  }
  .section-outline__desc dl dd ul li {
    font-size: 0.75rem;
    padding-left: 1rem;
    line-height: 1.5;
    margin-bottom: 5px;
  }
  .section-outline__desc dl dd ul li:before {
    font-size: 0.625rem;
    top: 2px;
  }
  /* =============================
  Company
  ============================= */
  .section-company__title {
    font-size: 1.75rem;
  }
  .section-company__info {
    gap: 30px;
    text-align: center;
    margin-bottom: 80px;
    grid-template-columns: 1fr;
  }
  .section-company__logo img {
    margin: 0 auto;
  }
  .section-company__content h3 {
    font-size: 1rem;
    text-align: left;
  }
  .section-company__list {
    grid-template-columns: 1fr;
    row-gap: 5px;
    text-align: left;
  }
  .section-company__desc {
    margin-bottom: 10px;
    padding-left: 1rem;
  }
  .section-company__message {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .section-company__photo {
    order: 2;
    width: 75%;
    margin: 0 auto;
  }
  .section-company__photo img {
    margin: 0 auto;
  }
  .section-company__body {
    order: 1;
  }
  .section-company__profile {
    margin-top: 10px;
  }
  .section-company__profile dd {
    font-size: 1rem;
  }
  .section-company__eyeblow {
    margin-bottom: 10px;
  }
  .section-company__heading {
    font-size: 1.25rem;
    line-height: 1.6;
  }
  .section-company__text {
    font-size: 0.875rem;
    line-height: 1.8;
  }
  /* =====================================
    FAQ
  ===================================== */
  .section-faq {
    padding-top: 80px;
  }
  .section-faq__title {
    font-size: 1.75rem;
  }
  .section-faq__inner {
    max-width: 100%;
  }
  .section-faq__head {
    display: flex;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    position: relative;
  }
  .section-faq__q {
    font-size: 2rem;
    margin-right: 20px;
  }
  .section-faq__question {
    font-size: 0.875rem;
    flex-grow: 1;
    padding-right: 20px;
  }
  .section-faq__icon {
    margin-right: 20px;
    width: 16px;
    height: 16px;
  }
  .section-faq__body {
    padding-left: 0;
  }
  .section-faq__body-inner {
    min-height: 0;
  }
  .section-faq__text {
    font-size: 0.875rem;
    line-height: 2;
    margin: 0;
  }
  /* =============================
  Entry
  ============================= */
  .section-entry__header {
    margin-bottom: 0;
  }
  .section-entry__title {
    font-size: 1.5rem;
  }
  .section-entry__title span {
    font-size: 0.75rem;
  }
  .section-entry__content {
    text-align: center;
  }
  .section-entry__limit {
    font-size: 1rem;
  }
  .section-entry__cta {
    max-width: 100%;
    border-radius: 5px;
    padding: 30px 20px;
    margin: 60px auto;
    font-size: 0.875rem;
    line-height: 1.8;
  }
  .section-entry__sub-lead {
    margin-bottom: 40px;
  }
  /* =============================
  Form
  ============================= */
  .lp-form-item {
    width: 100%;
  }
  .lp-form-item label {
    font-size: 0.75rem;
  }
  .lp-form-item input,
  .lp-form-item textarea {
    padding: 16px 18px;
    font-size: 0.875rem;
  }
  .lp-form-submit {
    margin-bottom: 40px;
  }
  .lp-form-submit button {
    width: 100%;
    padding: 18px;
    font-size: 0.875rem;
  }
  .lp-form__caution {
    font-size: 0.75rem;
  }
  .form-thanks p {
    font-size: 0.875rem;
    line-height: 1.8;
  }
  /* =============================
  Footer
  ============================= */
  .site-footer__inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  /* =============================
  Modal
  ============================= */
  .modal__container {
    margin: 6vh 20px;
    padding: 30px 20px;
  }
  .modal__close {
    color: #000;
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
  }
  /* =====================================
  Policy
  ===================================== */
  .policy__title {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  #lottie-logo {
    max-width: 80%;
    height: auto;
  }
}/*# sourceMappingURL=style.css.map */