@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

:root {
  --notoSerifJp: "Noto Serif JP", serif;
  --siteColor: #000000;
  --siteBgColor: #040e1c;
  --siteFontColor: #133155;
  --siteGoldColor: linear-gradient( 35deg, rgb(160,109,47) 0%, rgb(220,174,62) 97%);
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--notoSerifJp);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: .1em;
  color: #fff;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s ease;
}
a:hover {
  opacity: .8;
}

h1,h2,h3,h4,h5 {
  /* font-family: var(--notoSerifJp); */
}

p {
  font-size: max(14px, min(3vw,14px) );
  line-height: 1.8;
}

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

.container {
  width: min(100% - 30px, 1200px);
  margin-inline: auto;
}
.inner {
  width: min(100%, 1000px);
  margin-inline: auto;
}

body {
  background: url(../images/main-bg@2x.jpg) no-repeat center / cover;
  background-attachment: fixed;
  height: 100vh;
  margin: 0;
  padding: 96px 0 0 0;
}
@media only screen and (max-width: 768px) {
  body {
    background: url(../images/main-bg-sp@2x.jpg) repeat-y top center / cover;
  }
}
@media(max-width:599px) {
  body {
    padding-top: 75px;
  }
}
@media(max-width:740px) {
  .md-hidden {
    display: none;
  }
}
@media(max-width:499px) {
  .sm-hidden {
    display: none;
  }
}
@media(min-width:500px) {
  .sm-visible {
    display: none;
  }
}

/* ------------------ Header ------------------ */
#header {
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}
.logo-wrapper {
  padding: 20px 25px;
  flex: 1;
}
.logo {
  width: min(100%, 190px);
}
.logo-image {
  display: block;
}
.nav-text {
  font-size: 14px;
  text-shadow: 0 0 30px #fff, 0 0 30px #fff, 0 0 30px #ffffff59;
}
.register-bg {
  background: url(../images/nav-bg-01.jpg) no-repeat center / cover;
}
.contact-bg {
  background: url(../images/nav-bg-02.jpg) no-repeat center / cover;
}
.line-bg {
  background: #212546;
}
.icon-curriculum {
  display: block;
  width: min(100%, 30px);
  height: 25px;
  background: url(../images/nav-icon-01.png) no-repeat center / contain;
}
.icon-portfolio {
  display: block;
  width: min(100%, 30px);
  height: 25px;
  background: url(../images/nav-icon-02.png) no-repeat center / contain;
}
.icon-register {
  display: block;
  width: min(100%, 30px);
  height: 25px;
  background: url(../images/nav-icon-03.png) no-repeat center / contain;
}
.icon-contact {
  display: block;
  width: min(100%, 30px);
  height: 25px;
  background: url(../images/nav-icon-04.png) no-repeat center / contain;
}
.icon-line {
  display: block;
  width: min(100%, 30px);
  height: 25px;
  background: url(../images/nav-icon-05.png) no-repeat center / contain;
}
@media(max-width:999px) {
  .nav-container {
    background: url(../images/main-bg@2x.jpg) no-repeat center / cover;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    transition: right 0.3s ease-in-out;
    overflow-y: scroll;
  }
  .open .nav-container {
    z-index: 2;
    right: 0;
  }
  .nav-list {
    width: 100%;
    margin: 70px 0 0 0;
  }
  .nav-list-item {
    border-top: solid 1px rgb(255 255 255 / 60%);
  }
  .nav-list-item:first-of-type {
    border: 0;
  }
  .register-bg,
  .contact-bg,
  .line-bg {
    border: 0;
  }
  .nav-list-link {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0 15px;
    padding: 40px 20px;
  }
  .nav-text {
    font-size: 18px;
  }
}
@media(max-width:599px) {
  .logo {
    width: min(100%, 120px);
  }
}
@media(min-width:1000px) {
  .header-wrapper {
    display: flex;
    height: 100%;
  }
  .header-nav {
    margin-left: auto;
  }
  .nav-list {
    display: flex;
    height: 100%;
  }
  .nav-list-item {
    border-left: solid 1px rgb(255 255 255 / 60%);
    min-width: 140px;
  }
  .register-bg,
  .contact-bg,
  .line-bg {
    border: 0;
  }
  .nav-list-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 20px;
  }
  .nav-list-link i {
    margin: 0 0 8px 0;
  }
}
@media(max-width:999px) {
  .toggle-btn {
    width: min(100%, 60px);
    height: 56px;
    position: absolute;
    top: 20px;
    right: 0;
    padding: 15px 12px;
    z-index: 3;
  }
  .open .toggle-btn {
    position: fixed;
  }
  .toggle-container {
    position: relative;
    height: 100%;
    display: grid;
    place-items: center;
  }
  .toggle-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.3s ease-in-out;
  }
  body:not(.open) .toggle-btn span:nth-of-type(1) {
    position: absolute;
    left: 0;
    top: 0;
  }
  .toggle-btn span:nth-of-type(2) {
    position: absolute;
    left: 0;
    top: 45%;
  }
  body:not(.open) .toggle-btn span:nth-of-type(3) {
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .open .toggle-btn span:nth-of-type(1) {
    position: absolute;
    transform: rotate(45deg);
  }
  .open .toggle-btn span:nth-of-type(2) {
    display: none;
  }
  .open .toggle-btn span:nth-of-type(3) {
    position: absolute;
    transform: rotate(-45deg);
  }
}
@media(max-width:599px) {
  .toggle-btn {
    top: 7px;
  }
}

/* ------------------ Footer ------------------ */
#footer {
  background: #fff;
}
.footer-container {
  padding: 45px 15px;
}
.copyright {
  font-size: max(12px, min(3vw, 14px));
  color: var(--siteFontColor);
  text-align: center;
}
@media(max-width:599px) {
  .footer-container {
    padding: 25px 15px;
  }
}

/* ------------------ Etc ------------------ */
.pb-0 {
  padding-bottom: 0 !important;
}
.text-left {
  text-align: left !important;
}
@media(max-width:767px) {
  .sp-newline {
    display: block;
  }
  .lg {
    display: none;
  }
}
@media(min-width:768px) {
  .pc-newline {
    display: block;
  }
  .sm {
    display: none;
  }
}

.arrow-right {
  display: block;
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* ------------------ Top MV ------------------ */
#hero {
  position: relative;
  padding: 24px 0 0 0;
  background: url(../images/mv-bg.jpg) no-repeat center / cover;
}
#hero::after {
  content: "";
  width: 100%;
  height: 4px;
  background: #ffffff6e;
  position: absolute;
  left: 0;
  bottom: 0;
  backdrop-filter: blur(12px);
}
.hero-box {
  position: relative;
}
.mv-logo {
  width: min(100%, 440px);
  margin-inline: auto;
  padding: 30px 0;
}
.hero-text {
  font-size: max(16px, min(2.5vw, 24px));
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 1em;
  text-shadow: 0px 0px 32px rgba(10, 22, 39, 0.6);
}
.hero-main-text {
  font-size: max(20px, min(2.5vw, 28px));
  font-weight: 700;
  text-align: center;
  line-height: 1.8;
  text-shadow: 0px 0px 32px rgba(10, 22, 39, 0.6);
}
.hero-text a {
  text-decoration: underline;
}
@media(max-width:840px) {
  #hero {
    padding: 24px 0;
  }
}
@media(max-width:599px) {
  .sm-br {
    display: block;
  }
  .mv-logo {
    width: min(100%, 200px);
  }
  .hero-main-text {
    font-size: 5vw;
  }
  .hero-text {
    font-size: 4vw;
  }
}

.stats-section {
  display: flex;
  gap: 30px 50px;
  padding: 30px 0 0 0;
}
.stats-box {
  flex: 1;
  border: solid 2px rgb(238, 238, 238);
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}
.stats-note {
  font-size: max(16px, min(3vw, 18px));
  font-weight: 700;
  text-align: center;
}
.stats-count-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.stats-label {
  font-size: max(28px, min(3vw, 28px));
  font-weight: 700;
}
.stats-number {
  font-size: max(40px, min(4vw, 60px));
  font-weight: 700;
}
.gold-gradient-text {
  background: linear-gradient(90deg, #f6e27a, #d4af37, #f6e27a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.stats-updated {
  font-size: max(14px, min(3vw, 14px));
  font-weight: 700;
  text-align: center;
}
.event-frequency {
  font-size: max(20px, min(3vw, 24px));
  font-weight: 700;
  text-align: center;
}
.event-location {
  font-size: max(12px, min(3vw, 16px));
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
}
@media(max-width:767px) {
  .stats-section {
    gap: 20px 25px;
  }
}
@media(max-width:740px) {
  .main-info {
    padding-top: 24px;
  }
  .stats-box {
    min-height: 136px;
  }
  .stats-section {
    flex-direction: column;
    padding: 0;
  }
}
@media(max-width:599px) {
  .main-info {
    padding-bottom: 50px;
  }
}

/* ------------------ Main contents ------------------ */
#front-page .main {
  padding-top: 65px;
}
.section-container {
  padding: 90px 0;
}
.section-title {
  font-size: max(20px, min(4vw, 26px));
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  text-shadow: 0 0 40px #9db5de, 0 0 40px #6f8bb5, 0 0 40px #3f5e8a, 0 0 40px #1f3a5e;
  letter-spacing: .1em;
  margin-bottom: 35px;
}
@media(max-width:840px) {
  #front-page .main {
    padding-top: 40px;
  }
  .section-container {
    padding: 50px 0;
  }
  .about-section .section-container {
    padding: 45px 0 0 0;
  }
}

.cta-contact {
  background: url(../images/bnr-01@2x.jpg) no-repeat center / cover;
}
.cta-register {
  background: url(../images/bnr-02@2x.jpg) no-repeat center / cover;
}
.cta-link {
  display: block;
  padding: 40px 0;
  width: min(100% - 40px, 520px);
  margin-inline: auto;
  height: 100%;
}
.cta-text {
  font-size: max(20px, min(2.6vw,26px) );
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .1em;
}
.cta-action {
  font-size: max(16px, min(3vw,18px) );
  width: min(100%, 200px);
  border: solid 2px #fff;
  border-radius: 999px;
  margin: 15px 0;
  padding: 6px 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 30px;
}
.cta-note,
.cta-extra {
  font-size: max(12px, min(3vw,14px) );
}
.cta-note {
  text-indent: -1.1em;
  margin-left: 1em;
}
.cta-note span {
  display: inline-block;
}
.cta-extra {
  margin-top: 1em;
}
@media(max-width:599px) {
  .cta-container {
    margin: 0 calc(50% - 50vw);
  }
}
@media(min-width:600px) {
  .cta-section {
    padding: 40px 0;
  }
}
@media(min-width:841px) {
  .cta-section {
    position: relative;
    background: var(--siteBgColor);
    margin: 0 calc(50% - 50vw);
    padding: 40px calc(50vw - 50%) 40px calc(50vw - 50%);
  }
  .cta-section::before {
    content: "";
    display: block;
    width: 100%;
    height: 40px;
    background: linear-gradient(360deg, var(--siteBgColor), transparent);
    position: absolute;
    left: 0;
    top: -40px;
    z-index: -1;
  }
  .cta-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.question-section.section-container {
  padding-bottom: 0;
}
.question-container {
  padding-bottom: 80px;
}
.answer-list {
  display: flex;
  justify-content: space-between;
  gap: 35px;
}
.answer-item {
  flex: 1;
  aspect-ratio: 1 / 1;
  background: url(../images/circle-bg@2x.png) no-repeat center / contain;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: max(20px, min(3vw, 28px));
  font-weight: 700;
  text-align: center;
  letter-spacing: .1em;
}
@media(max-width:599px) {
  .answer-list {
    flex-direction: column;
    align-items: center;
  }
  .answer-item {
    flex: 1;
    max-width: 207px;
    min-height: 207px;
  }
}

.academy-summary-container {
  position: relative;
}
.academy-summary-section {
  position: relative;
  background: var(--siteBgColor);
  margin: 0 calc(50% - 50vw);
  padding: 50px calc(50vw - 50%) 80px calc(50vw - 50%);
}
.academy-summary-section::before {
  content: "";
  display: block;
  width: 100%;
  height: 50px;
  background: linear-gradient(360deg, var(--siteBgColor), transparent);
  position: absolute;
  left: 0;
  top: -50px;
  z-index: -1;
}
.academy-summary-title {
  font-size: max(20px, min(3vw, 28px));
  background: var(--siteGoldColor);
  border-radius: 4px;
  width: max-content;
  padding: 10px 25px;
  position: absolute;
  top: -30px;
  left: 40px;
  z-index: 1;
}
.academy-details {
  position: relative;
  background: var(--siteGoldColor);
  border-radius: 8px 8px 0 0;
  padding: 70px 0 40px 0;
  display: flex;
}
.academy-details::after {
  content: "";
  display: block;
  width: calc(100% - 16px);
  height: calc(100% - 8px);
  background: var(--siteBgColor);
  position: absolute;
  top: 8px;
  left: 8px;
  border-radius: 8px 8px 0 0;
}
.academy-slogan,
.academy-past-classes {
  position: relative;
  z-index: 1;
  padding: 0 40px;
}
.academy-slogan {
  width: min(100%, 635px);
}
.academy-past-classes {
  flex: 1;
}
.academy-events {
  border-radius: 0 0 8px 8px;
  background: var(--siteGoldColor);
  padding: 18px 40px;
}
.academy-events-info {
  font-size: max(16px, min(3vw, 22px));
  font-weight: 500;
  line-height: 1.4;
}
.academy-slogan-title,
.academy-past-classes-title {
  font-size: max(14px, min(3vw, 18px));
  margin-bottom: 1em;
}
.academy-slogan-text {
  margin-bottom: 1em;
}
.academy-slogan-text,
.academy-fees {
  font-size: max(16px, min(3vw, 22px));
}
.academy-fees-notes {
  font-size: max(14px, min(3vw, 16px));
}
.academy-slogan p {
  margin-top: .5em;
}
.annotation-text {
  font-size: 12px;
}
.academy-benefits {
  font-size: max(18px, min(3vw, 28px));
  line-height: 1.6;
  text-align: center;
}
.academy-past-classes-list li {
  font-size: max(14px, min(3vw, 16px));
  text-indent: -.55em;
  margin-left: 1em;
}
.academy-past-classes-list li::before {
  content: "・";
  display: inline-block;
}
.academy-past-classes-list li:not(:last-of-type) {
  margin-bottom: 1em;
}
@media(max-width:999px) {
  .academy-slogan {
    width: 60%;
  }
  .academy-past-classes {
    width: 40%;
  }
}
@media(max-width:840px) {
  .academy-details {
    flex-direction: column;
    padding: 20px 40px 0 40px;
  }
  .academy-slogan {
    border-bottom: solid 1px #ffe75e;
  }
  .academy-slogan,
  .academy-past-classes {
    width: 100%;
    padding: 40px 0;
  }
}
@media(max-width:599px) {
  .academy-summary-section {
    padding-bottom: 45px;
  }
  .academy-summary-title {
    left: 0;
    right: 0;
    margin-inline: auto;
  }
  .academy-details {
    padding: 20px 20px 0 20px;
  }
  .academy-details::after {
    width: calc(100% - 8px);
    height: calc(100% - 4px);
    top: 4px;
    left: 4px;
  }
  .academy-events {
    padding: 18px 20px;
  }
}
@media(min-width:841px) {
  .academy-slogan {
    border-right: solid 1px #ffe75e;
  }
}

.about-section {
  position: relative;
  background: url(../images/contents-bg.jpg) no-repeat center / cover;
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
}
.about-section::after {
  content: "";
  display: block;
  width: 100%;
  height: 50px;
  background: linear-gradient(360deg, #030102, transparent);
  position: absolute;
  left: 0;
  bottom: 0;
}
.about-title {
  font-size: max(40px, min(6vw, 70px));
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}
.about-title span {
  font-size: max(30px, min(4vw, 50px));
}
.about-intro {
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
  padding: 15px 0;
}
.about-intro p {
  font-size: max(14px, min(3vw, 18px));
  text-align: center;
}
.about-description {
  padding: 50px 0;
  width: min(100%, 945px);
  margin-inline: auto;
}
.about-description p {
  font-size: max(14px, min(3vw, 18px));
  text-align: justify;
}
.about-description p:not(:last-of-type) {
  margin-bottom: 2.5em;
}
@media(max-width:767px) {
  .about-intro p {
    text-align: justify;
  }
}
@media(max-width:599px) {
  .about-section {
    background: url(../images/contents-bg-sp@2x.jpg), var(--siteBgColor);
    background-repeat: no-repeat;
    background-position: top center;
    background-size:100%;
  }
  .about-intro p,
  .about-description p {
    line-height: 2;
  }
  .about-description {
    padding: 40px 0;
  }
}

.profile-section {
  background: #030102;
  margin: 0 calc(50% - 50vw);
  padding: 60px calc(50vw - 50%);
}
.profile-container {
  border-bottom: solid 1px #fff;
  padding-bottom: 20px;
}
.profile-box {
  padding: 20px 0;
}
.profile-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px 25px;
}
.profile-title {
  font-size: max(30px, min(5vw, 60px));
  font-weight: 500;
}
.profile-description {
  font-size: max(14px, min(3vw, 18px));
}
.profile-image {
  width: min(100%, 200px);
}
.profile-name {
  font-size: max(20px, min(3vw, 26px));
  margin-bottom: 1em;
}
.profile-name span {
  font-size: max(14px, min(3vw, 16px));
}
.profile-birthdate {
  font-size: 14px;
  margin-bottom: 1em;
}
.achievement-item {
  font-size: max(14px, min(3vw, 14px));
  margin-bottom: .4em;
}
.profile-history-title {
  font-size: max(18px, min(3vw, 24px));
  border-left: solid 4px #fff;
  padding-left: .6em;
  margin: .8em 0;
}
.profile-history-text {
  margin-bottom: 1em;
}
.profile-history {
  width: min(100%,800px);
  margin-inline: auto;
}
@media(max-width:920px) {
  .profile-container {
    padding-top: 25px;
    border-top: solid 1px #fff;
  }
  .profile-content {
    flex-direction: column;
  }
  .profile-image {
    padding-bottom: 15px;
    margin-inline: auto;
  }
  .profile-name,
  .profile-birthdate {
    text-align: center;
  }
}
@media(max-width:599px) {
  .profile-section {
    padding: 40px calc(50vw - 50%);
  }
}
@media(min-width:921px) {
  .profile-content::before,
  .profile-content::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #fff;
  }
  .profile-box {
    width: min(100%,800px);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
  }
}

.experience-section {
  position: relative;
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
}
.experience-section::before {
  content: "";
  display: block;
  width: 100%;
  height: 50px;
  background: linear-gradient(180deg, #030102, transparent);
  position: absolute;
  left: 0;
  top: 0;
}
.experience-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 0;
}
.experience-image-wrapper {
  width: min(100%, calc(329px/2));
  margin-inline: auto;
}
.experience-image-wrapper img {
  display: block;
}
.experience-text {
  text-align: center;
  font-size: max(14px, min(3vw, 18px));
  line-height: 1.6;
}
@media(max-width:999px) {
  .experience-list {
    width: min(100%, 767px);
    margin-inline: auto;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width:740px) {
  .experience-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px 0;
  }
}

.info-section {
  background: var(--siteBgColor);
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  border-top: solid 1px #fff;
}
.info-container {
  padding: 70px 0;
}
.info-links-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 60px;
}
.info-link-item {
  background: #fff;
  aspect-ratio: 565 / 210;
  box-shadow: 0 0 20px rgb(157 181 222 / 30%), 0 0 20px rgb(157 181 222 / 30%), 0 0 20px rgb(157 181 222 / 30%), 0 0 20px rgb(157 181 222 / 30%);
}
.info-link {
  display: grid;
  align-items: center;
  color: var(--siteBgColor);
  font-size: max(20px, min(3vw, 26px));
  font-weight: 700;
  line-height: 1.4;
  padding: 30px;
  height: 100%;
}
.advisor-link-item .info-link {
  background: url(../images/bnr-bg-01@2x.png) no-repeat center right / contain;
}
.curricula-link-item .info-link {
  background: url(../images/bnr-bg-02@2x.png) no-repeat center right / contain;
}
@media(max-width:1099px) {
  .info-links-wrapper {
    gap: 30px 30px;
  }
  .info-link {
    font-size: 2.5vw;
  }
}
@media(max-width:840px) {
  .info-links-wrapper {
    grid-template-columns: repeat(1, 1fr);
    width: min(100%, 565px);
    margin-inline: auto;
  }
  .info-link {
    font-size: 4vw;
  }
}

.testimonials-section {
  position: relative;
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
}
.testimonials-section::after {
  content: "";
  display: block;
  width: 100%;
  height: 50px;
  background: linear-gradient(360deg, #000, transparent);
  position: absolute;
  left: 0;
  bottom: 0;
}
.testimonials-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.testimonial-item {
  border: solid 1px #fff;
}
.testimonial-image {
  display: block;
}
@media(max-width:840px) {
  .testimonials-list {
    width: min(100%, 565px);
    margin-inline: auto;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media(max-width:599px) {
  .testimonials-section::after {
    height: 25px;
  }
}

.event-section {
  background: #000000;
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
}
.event-section .section-container {
  padding-bottom: 0;
}
.event-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding-bottom: 15px;
}
.event-header::before {
  content: "";
  display: block;
  width: 2px;
  height: 100px;
  background: #fff;
  transform: rotate(-45deg);
}
.event-header::after {
  content: "";
  display: block;
  width: 2px;
  height: 100px;
  background: #fff;
  transform: rotate(45deg);
}
@media(max-width:767px) {
  .event-header {
    gap: 40px;
  }
}
@media(max-width:599px) {
  .event-header {
    gap: 30px;
    padding-bottom: 0;
  }
  .event-header::before,
  .event-header::after {
    height: 50px;
  }
  .event-header .section-title {
    font-size: 4.6vw;
  }
}
.event-container {
  width: min(100%, 870px);
  margin-inline: auto;
}
.event-images-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.member-info {
  background: #fff;
  border-radius: 8px;
  padding: 35px 0;
  margin: 25px 0 0 0;
  color: var(--siteFontColor);
}
.member-container {
  width: min(100% - 40px, 740px);
  margin-inline: auto;
}
.member-title {
  font-size: max(18px, min(4vw, 26px));
  text-align: center;
  margin-bottom: 1em;
}
.member-item {
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.member-item:not(:last-of-type) {
  margin-bottom: 1em;
}
.member-item::before {
  content: "";
  min-width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--siteFontColor);
  display: inline-block;
}
@media(max-width:599px) {
  .member-info {
    padding: 25px 0;
    margin: 15px 0 0 0;
  }
}

.action-section {
  position: relative;
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  background: url(../images/mv-light.jpg) no-repeat center / cover;
}
.action-section::before {
  content: "";
  display: block;
  width: 100%;
  height: 50px;
  background: linear-gradient(180deg, #000, transparent);
  position: absolute;
  left: 0;
  top: 0;
}
.action-container {
  padding: 100px 0 80px 0;
}
.action-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: max(18px, min(4vw, 36px));
  font-weight: 700;
  border: solid 2px #fff;
  padding: 35px;
  box-shadow: 0px 0px 48px 12px rgba(6, 21, 42, 0.4);
  text-shadow: 0 0 40px #9db5de, 0 0 40px #6f8bb5, 0 0 40px #3f5e8a, 0 0 40px #1f3a5e;
}
.circle-icon {
  position: absolute;
  right: 35px;
}
.circle-icon {
	display: grid;
  place-items: center;
	width: 69px;
	height: 69px;
	border: 2px solid #fff;
	border-radius: 999px;
}
.circle-arrow::after {
  content: "";
  display: block;
	width: 18px;
	height: 18px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
  margin-left: -5px;
}
@media(max-width:767px) {
  .action-container {
    padding: 60px 0 40px 0;
  }
  .circle-icon {
    width: 49px;
    height: 49px;
  }
  .circle-arrow::after {
    width: 14px;
    height: 14px;
  }
}
@media(max-width:599px) {
  .action-link {
    padding: 25px 15px;
  }
  .circle-icon {
    width: 36px;
    height: 36px;
    right: 15px;
  }
  .circle-arrow::after {
    width: 10px;
    height: 10px;
    margin-left: -2px;
  }
}

.link-section {
  margin: 0 calc(50% - 50vw);
}
.link-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.link-box {
}
.youtube-link {
  background: #c12629;
}
.line-link {
  background: #36b46a;
}
.fanfull-link {
  background: #ed6948;
}
.link-box a {
  display: block;
  padding: 50px 25px;
}
.link-box p {
  font-size: max(18px, min(3vw, 24px));
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin: 0 0 18px 0;
}
.youtube-icon {
  display: block;
  background: url(../images/icon-youtube@2x.png) no-repeat center / contain;
  max-width: 56px;
  height: 72px;
  margin-inline: auto;
}
.line-icon {
  display: block;
  background: url(../images/icon-line@2x.png) no-repeat center / contain;
  max-width: 56px;
  height: 72px;
  margin-inline: auto;
}
.fanfull-logo {
  width: min(100%, 276px);
  margin-inline: auto;
  display: block;
  background: #fff;
  border-radius: 4px;
  padding: 10px 0;
}
.fanfull-logo img {
  display: block;
  width: 70%;
  margin-inline: auto;
}
@media(max-width:999px) {
  .link-box p {
    font-size: 2.2vw;
  }
}
@media(max-width:740px) {
  .link-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .link-box a {
    padding: 20px 15px;
  }
  .link-box p {
    font-size: 20px;
  }
  .youtube-icon,
  .line-icon {
    max-width: 46px;
    height: 46px;
  }
  .fanfull-logo {
    padding: 10px 25px;
  }
  .fanfull-logo img {
    max-width: 100%;
    height: 26px;
    object-fit: contain;
  }
}

/* ------------------ Page contents ------------------ */
#other-page .action-container {
  padding: 80px 0;
}
@media (max-width: 767px) {
  #other-page .action-container {
    padding: 40px 0;
  }
}
.page-container {
  margin: 0 calc(50% - 50vw);
  padding: 50px calc(50vw - 50%);
}
.other-page-container {
  border-bottom: solid 1px #fff;
}
.page-title {
  font-size: max(26px, min(4vw, 40px));
  text-align: center;
}
.page-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #fff;
  margin-inline: auto;
  margin-top: 15px;
}
.page-contents {
  padding: 40px 0;
}

/* curriculum */
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}
.curriculum-item {
  position: relative;
  border: 1px solid;
  border-image: linear-gradient(to right, #5865b9, #1c91e2, #22dcfd) 1;
}
.curriculum-content {
  padding: 12px 20px;
}
.curriculum-content h2 {
  font-size: max(24px, min(4vw, 26px));
  text-align: center;
  margin: 0 0 20px 0;
}
.curriculum-content li {
  font-size: max(16px, min(3vw, 16px));
  margin-bottom: .6em;
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.curriculum-content li::before {
  content: "";
  display: inline-block;
  min-width: 10px;
  height: 10px;
  background: url(../images/curriculum/list-icon@2x.png) no-repeat center / contain;
}
@media (max-width: 767px) {
  .curriculum-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 599px) {
  .curriculum-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* advisor */
.advisor-container {
  padding: 40px 0 0 0;
}
.ceo-container {
  display: grid;
  grid-template-columns: 7fr 3fr;
  align-items: flex-start;
  gap: 30px 40px;
}
.ceo-image-wrapper {
  background: linear-gradient( 90deg, rgba(90,66,236,.2) 0%, rgba(9,187,254,.2) 100%);
  padding: 20px;
}
.ceo-image {
  display: block;
}
.ceo-title {
  font-size: max(16px, min(3vw, 18px));
  line-height: 1;
}
.ceo-name {
  font-size: max(22px, min(3vw, 30px));
  margin-bottom: 1em;
}
.ceo-message p {
  text-align: justify;
}
.ceo-message p:not(:last-of-type) {
  margin-bottom: 1em;
}
.underline {
  text-decoration: underline;
}
.hr {
  height: 1px;
  background: #fff;
  background: rgb(255 255 255 / 40%);
  margin: 80px 0;
}
@media (max-width: 767px) {
  .advisor-container {
    padding: 20px 0 0 0;
  }
  .ceo-container {
    display: flex;
    grid-template-columns: 1fr;
    flex-direction: column-reverse;
  }
  .ceo-image-wrapper {
    max-width: 200px;
    margin-inline: auto;
    padding: 10px;
  }
  .ceo-content {
    max-width: 600px;
    margin-inline: auto;
  }
}

/* portfolio */
.event-description {
  font-size: max(18px, min(3vw, 24px));
  margin-bottom: 1.5em;
  text-align: center;
}
.event-gallery-wrapper {
  padding-bottom: 100px;
}
.event-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.event-gallery-image {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .event-gallery-wrapper {
    padding-bottom: 50px;
  }
  .event-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 599px) {
  .event-gallery {
    gap: 20px;
  }
}

.person-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.person-image {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.person-name {
  font-size: max(12px, min(3vw, 16px));
  margin: 10px 0 0 0;
  line-height: 1.6;
}
.person-name span {
  display: inline-block;
}
@media (max-width: 840px) {
  .person-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .person-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 599px) {
  .person-gallery {
    gap: 20px;
  }
}

/* ------------------ From ------------------ */
.form-container {
  width: min(100%, 600px);
  margin-inline: auto;
}
.form-label {
  font-size: max(16px, min(3vw, 16px));
}
.form-description {
  display: block;
  font-size: 12px;
  line-height: 1.6;
  margin-top: .5em;
}
.required-label {
  font-size: 12px;
  display: inline-block;
  background: #fff;
  color: var(--siteFontColor);
  font-weight: 700;
  border-radius: 2px;
  padding: 0 .5em;
  margin: 0 0 0 .5em;
}
.form-field {
  padding: .6em 0 2em 0;
}
.zip-code {
  display: flex;
  align-items: center;
  gap: 10px;
}
.input-text-zip {
  max-width: 8em;
  background: #fff;
  border-radius: 2px;
  padding: .5em .5em;
}
.select-prefecture {
  padding: 1em 0;
}
.full-address,
.select-prefecture {
  padding-left: calc(10px + 1em);
}
.input-text,
.select-box,
.input-text-short,
.input-text-zip,
.input-text-full,
.textarea {
  font-size: 16px;
}
.input-text,
.input-text-full,
.textarea {
  width: 100%;
  background: #fff;
  border-radius: 2px;
  padding: .5em .5em;
}
.input-text-short {
  max-width: 3em;
  background: #fff;
  border-radius: 2px;
  padding: .5em .5em;
  margin-right: 5px;
}
.textarea {
  height: 8em;
}
.selectbox-4 {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.selectbox-4::after {
  position: absolute;
  right: 10px;
  width: 10px;
  height: 7px;
  background-color: #535353;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: '';
  pointer-events: none;
}
.selectbox-4 select {
  appearance: none;
  height: 39px;
  padding: .4em calc(.8em + 30px) .4em .8em;
  border: none;
  border-radius: 2px;
  background-color: #fff;
  color: #333333;
  font-size: 1em;
  cursor: pointer;
}
.birthdate-list {
  display: flex;
  gap: 10px;
}
.birthdate-list li {
  display: flex;
  align-items: center;
  gap: 5px;
}
.radio-list {
  display: grid;
  gap: .5em 1em;
}
.radio-list li label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.radio-list li label [type="radio"] {
  margin: .5em 0 0 0;
}
.ec-blockBtn--action {
  display: block;
  font-size: 22px;
  border: solid 2px #fff;
  border-radius: 2px;
  padding: .5em 1em;
  margin: 0 auto;
}
.contact-container {
  width: min(100%, 600px);
  margin-inline: auto;
  padding-bottom: 40px;
}
.submit-container {
  width: min(100%, 600px);
  margin-inline: auto;
}
.submit-container h3 {
  margin-bottom: 1em;
}
.submit-container p {
  margin-bottom: 1em;
}
.history-back {
  display: block;
  margin: 25px auto;
}
form label.error {
  display: block;
  font-size: 12px;
  margin: 4px 0 0 0;
}
.form-notes {
  display: grid;
  place-content: center;
  width: min(100%,600px);
  margin: 0 auto 24px auto;
  line-height: 1.8;
  text-align: center;
}
.form-notes--inner {
  /* padding: 16px; */
}
.form-notes a {
  text-decoration: underline;
}

.form-guide {
  border: solid 1px #fff;
  border-radius: 4px;
  padding: 1.5em 1em;
}
.form-guide__item {
  font-size: 18px;
  margin-bottom: .8em;
  line-height: 1.6;
}
.form-guide__subitem {
  margin-bottom: .5em;
}
.form-guide__list > li:not(:last-of-type) {
  text-indent: -1em;
  margin-left: 1em;
}
.form-guide__list > li::before {
  content: "";
  display: inline-block;
  min-width: 10px;
  height: 10px;
  background: url(../images/curriculum/list-icon@2x.png) no-repeat center / contain;
  margin-right: .5em;
}
.form-guide__sublist {
  margin: .5em 0 0 2.5em;
  line-height: 1.8;
}
.form-guide__sublist > li {
  font-size: 16px;
}
.plans-link {
  text-align: right;
}
.plans-link a {
  text-decoration: underline;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.form-guide-link-container {
  width: max-content;
  margin-inline: auto;
}
.form-guide-link {
  font-size: max(18px, min(3vw, 24px));
  background: #fff;
  color: #212546;
  display: block;
  font-weight: 600;
  border-radius: 4px;
  padding: .5em 1em;
  margin: 24px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.line-mark {
  display: block;
  min-width: 32px;
  height: 32px;
  background: url(../images/icon-line.png) no-repeat center / contain;
}

/* ------------------ add bnr css ------------------ */
.bnr-box {
  padding: 0 0 40px 0;
}
@media (max-width: 599px) {
  .bnr-box {
    padding: 25px 0;
  }
}

/* ------------------ add slider css ------------------ */
.slider-box {
  margin: 0 calc(50% - 50vw);
  padding: 40px calc(50vw - 50%) 50px calc(50vw - 50%);
  background: url(../images/slider-bg.jpg) no-repeat center / cover;
}
.slider-title {
  font-size: max(18px, min(3vw, 26px));
  font-weight: 700;
  opacity: .8;
  text-align: center;
  margin-bottom: 1em;
}
.swiper-slide a {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  color: #fff;
}
.youtube-slider.slider2 {
  margin: 40px 0 0 0;
}
@media (max-width: 767px) {
  .swiper {
    padding-bottom: 36px;
  }
  .slider-box {
    padding: 40px calc(50vw - 50%) 20px calc(50vw - 50%);
  }
  .swiper-pagination-bullet {
    background: #fff;
  }
  .swiper-pagination-bullet-active {
    background: #fff;
  }
  .youtube-slider.slider2 {
    margin: 25px 0 0 0;
  }
}
/* スマホ */
.sp-only {
  display: block;
}
.pc-only {
  display: none;
}
@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
  .pc-only {
    display: block;
  }
}

/* ------------------ add workshop css ------------------ */
.workshop-box {
  padding: 65px 0;
  border-bottom: solid 1px #fff;
}
.workshop-title {
  font-size: max(20px, min(2.6vw, 26px));
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
}
.workshop-title::after {
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  background: #fff;
}
.workshop-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 25px 0 0 0;
}
@media (max-width: 599px) {
  .workshop-box {
    padding: 0 0 25px 0;
    margin-bottom: 25px;
  }
  .workshop-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.workshop-end {
  padding: 25px 0 0 0;
}
.workshop-end-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin: 25px 0 0 0;
}
@media (max-width: 599px) {
  .workshop-end-list {
    grid-template-columns: repeat(2, 1fr);
  }
}*/

/* ------------------ 神祇學アカデミー個別鑑定 css ------------------ */
.consulting-container {
  background: url(../images/personal-consultation/consulting-bg01.png) no-repeat top center / 60%;
}
.personal-section {
  display: flex;
  gap: 25px 60px;
  padding: 50px 0;
}
.personal-title {
  font-size: max(22px, min(4vw, 36px));
  font-weight: 400;
  margin-bottom: .6em;
  display: flex;
  align-items: center;
}
.personal-title::before {
  content: "";
  min-width: 60px;
  height: 60px;
  background: url(../images/personal-consultation/title-icon.png) no-repeat center / contain;
  margin-right: 5px;
}
.personal-text {
  font-size: max(14px, min(3vw, 16px));
  margin-bottom: 1em;
}
.personal-image-wrapper {
  width: min(100%,400px);
  margin-inline: auto;
}
.personal-image {
  display: block;
}
.personal-content {
  flex: 1;
}
@media (max-width: 999px) {
  .consulting-container {
    background: url(../images/personal-consultation/consulting-bg01.png) no-repeat top center / 80%;
  }
  .personal-title::before {
    min-width: 42px;
    height: 42px;
  }
}
@media (max-width: 840px) {
  .personal-section {
    flex-direction: column;
  }
}
@media (max-width: 599px) {
  .consulting-container {
    background: url(../images/personal-consultation/consulting-bg01.png) no-repeat top center / 160%;
  }
  .personal-title::before {
    min-width: 32px;
    height: 32px;
  }
}

.cv-inner {
  padding: 50px 0 0 0;
}
.cv-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 50px;
}
.cv-item {
  display: grid;
  grid-template-columns: 136px 1fr;
  border: solid 1px #fff;
}
.cv-image {
  aspect-ratio: 1/1;
}
.cv-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cv-text {
  font-size: max(16px, min(3vw, 20px));
  padding: 15px 30px;
  display: grid;
  align-items: center;
}
@media (max-width: 840px) {
  .cv-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 599px) {
  .cv-item {
    grid-template-columns: 100px 1fr;
  }
}

.consultation-description {
  background: url(../images/personal-consultation/consulting-bg02.png) no-repeat bottom center / cover;
  margin: 0 calc(50% - 50vw);
  padding: 90px calc(50vw - 50%);
}
.consultation-text {
  font-size: max(16px, min(3vw, 20px));
  margin-bottom: 2em;
  text-align: center;
}
.consultation-block--followup {
  background-color: rgb(15 25 48 / 60%);
}
.consultation-followup {
  width: min(100% - 30px, 800px);
  margin-inline: auto;
}
.consultation-notes {
  font-size: max(14px, min(3vw, 16px));
  padding: 1.5em 0;
}
@media (max-width: 740px) {
  .consultation-text,
  .consultation-notes {
    text-align: left;
  }
}
@media (max-width: 599px) {
  .consultation-description {
    background: url(../images/personal-consultation/consulting-bg02.png) no-repeat bottom right / cover;
    padding: 45px calc(50vw - 50%);
  }
}

.inquiry-reasons {
  margin: 40px 0;
  width: max-content;
  margin-inline: auto;
}
.reason-item {
  font-size: max(18px, min(3vw, 24px));
  padding: 8px 16px;
  border: solid 1px rgb(255 255 255 / 60%);
  display: flex;
  align-items: center;
  gap: 15px;
}
.reason-item:not(:last-of-type) {
  margin-bottom: 15px;
}
.check-icon {
  display: inline-block;
  width: 12px;
  height: 20px;
  border-bottom: 5px solid #fff;
  border-right: 5px solid #fff;
  transform: rotate(45deg);
  margin: 5px;
}
.inquiry-note {
  padding-bottom: 1.5em;
}
.inquiry-text {
  font-size: max(16px, min(3vw, 18px));
  text-align: center;
  margin-bottom: 1em;
}
.inquiry-cta-text {
  font-size: max(20px, min(3vw, 24px));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 1em;
}
.inquiry-cta-text::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 40px;
  background: #fff;
  transform: rotate(-45deg);
}
.inquiry-cta-text::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 40px;
  background: #fff;
  transform: rotate(45deg);
}
.cta-button {
  display: block;
  width: min(100%, 420px);
  margin-inline: auto;
  font-size: max(20px, min(3vw, 24px));
  font-weight: 600;
  color: #a98936;
  background: url(../images/personal-consultation/btn-bg.jpg) no-repeat center / cover;
  padding: 25px 15px;
  text-align: center;
}
@media (max-width: 499px) {
  .inquiry-cta-text {
    align-items: flex-end;
    padding: 1em 0 0 0;
  }
}

/* ------------------ vision ------------------ */
.vision-contents p {
  font-size: max(14px, min(3vw, 20px));
  margin: 0 0 2em 0;
  line-height: 2;
}
.vision-headin {
  font-size: max(22px, min(3vw, 32px));
  margin: 2em 0 1em 0;
  text-align: center;
}
.vision-list__item {
  font-size: max(14px, min(3vw, 20px));
  margin: 0 0 2em 0;
  line-height: 2;
  border: solid 1px #fff;
  padding: 1em;
}
.vision-num {
  display: block;
  width: max-content;
  font-size: max(18px, min(3vw, 28px));
  border-bottom: solid 1px #fff;
  margin-bottom: .5em;
}
.vision-name {
  font-size: max(18px, min(3vw, 24px));
}
@media (min-width: 600px) {
  .vision-contents {
    padding: 24px 0 0 0 ;
  }
}

/* ------------------ anime css ------------------ */

/* アニメーション前の初期状態 */
.js-anime-content {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.js-anime-content.show {
  opacity: 1;
  transform: translateY(0);
}

/* 初期状態：透明で少し下にずらす */
.js-ease {
  opacity: 0;
  transform: translateY(50px); /* 下から始める */
  transition: opacity 1s ease-out, transform 1s ease-out;
}
/* アニメーションを実行するクラス */
.js-ease.show {
  opacity: 1;
  transform: translateY(0); /* 元の位置に */
}

.js-list-anime {
  opacity: 0; /* 初期状態は透明 */
  transform: translateY(50px); /* 下から少し上がるようにする */
  transition: opacity 1s ease-out, transform 1s ease-out;
}
/* 表示される時に適用されるクラス */
.js-list-anime.show {
  opacity: 1;
  transform: translateY(0); /* 元の位置に */
}