@charset "UTF-8";

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

html {
  font-size: 10px;
  /* overflow-x: hidden; */
}

/* html.fixed {
  overflow: hidden;
  height: 100%;
} */

@media screen and (max-width: 1440px) {
  html {
    font-size: 0.694444vw;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 2.6643vw;
  }
}

:root {
  --bs-body-color: #111;
  --bs-body-bg: #fff;
  --bs-font: "Noto Sans JP", sans-serif;
  --bs-body-font-family: var(--bs-font);
  --bs-body-font-size-pc: 1.6rem;
  --bs-body-font-size-sp: 1.4rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.75;
  --bs-body-letter-spacing: 0; 
  --bs-black: #111;
  --bs-key-color: #00036a;
}

body {
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size-pc);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  letter-spacing: var(--bs-body-letter-spacing);
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

section {
  padding: 8rem 0;
  overflow: hidden;
}

img {
  zoom: normal;
}

a {
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}

/* common */
.section-ttl,
.page_ttl {
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 6rem;
}

.sp-only {
  display: none;
}

.pc-only {
  display: block;
}

.content-width {
  width: 108rem;
  margin: 0 auto;
}

.subpage h2 {
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  font-weight: bold;
  font-size: 2.8rem;
  position: relative;
}

.subpage h2::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0.1rem;
  background: var(--bs-key-color);
  position: absolute;
  bottom: 0;
  left: 0;
}

.subpage p {
  margin-bottom: 1.5em;
}

@media (max-width: 768px) {
  body {
    font-size: var(--bs-body-font-size-sp);
  }

  section {
    padding: 4rem 0;
  }

  .section-ttl,
  .page_ttl {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }

  .sp-only {
    display: block;
  }

  .pc-only {
    display: none;
  }

  .subpage section {
    padding: 4rem 0 6rem;
  }

  .content-width {
    width: 90%;
  }

  .subpage h2 {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    font-size: 2.1rem;
  }

}


/* header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 4rem;
  position: relative;
  z-index: 999;
  background: var(--bs-black);
  color: #fff;
}

.subpage.is-active .header {
  color: #fff;
}

.header h1 {
  font-size: 2rem;
}

.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4rem;
}

.header-item.contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 18rem;
  height: 8rem;
  background: var(--bs-key-color);
  color: #fff;
}

.header-item.contact .header-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.header-link {
  display: block;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
}

.header-link:hover {
  opacity: 0.7;
}

.header-menu {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  z-index: 999;
}

.menu-bar {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.subpage.is-active .menu-bar {
  background-color: #fff;
}

.header-menu:hover .menu-bar:nth-child(2) {
  left: 15px;
}

.menu-bar:nth-child(1) {
  top: 10px;
}

.menu-bar:nth-child(2) {
  top: 20px;
}

.menu-bar:nth-child(3) {
  top: 30px;
}

.header-menu.is-active .menu-bar:nth-child(1) {
  top: 20px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header-menu.is-active .menu-bar:nth-child(2) {
  left: 30px;
  opacity: 0;
}

.header-menu.is-active .menu-bar:nth-child(3) {
  top: 20px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

body.is-active {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .header {
    padding: 1rem 2rem;
  }

  .header h1 {
    font-size: 1.4rem;
  }

  .header-nav {
    width: 100vw;
    height: 100vh;
    background: -o-linear-gradient(45deg, #00036a, #ffe400);
    background: linear-gradient(45deg, #00036a, #ffe400);
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
  }

  .header-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .header-item {
    margin: 20px 10px;
  }

  .header-item.contact {
    width: auto;
    height: auto;
    background: none;
    color: #fff;
  }

  .header-menu {
    display: block;
  }
}


/* mv */
.mv {
  height: 64.5rem;
  color: #fff;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.5) 100%, rgba(17, 17, 17, 0) 100%),
  url(../img/mv.jpeg);
  background-position: 0 0;
  background-size: cover;
}

.mv-all {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.mv-ttl {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.mv-ttl {
  font-size: 4rem;
  font-weight: bold;
  line-height: 160%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .mv {
    height: 48rem;
    background-position: 80% center;
  }
  
  .mv-subcopy {
    margin-bottom: 4rem;
    font-size: 1.8rem;
    line-height: 1.5;
  }

  .mv-subcopy::after {
    width: 8rem;
    height: 0.2rem;
  }

  .mv-ttl {
    font-size: 2.8rem;
  }
}


/* problem */
.problem {
  background: #f4f4f4;
}

.copy-red {
  color: var(--bs-key-color);
}

.problem-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 95rem;
  gap: 4rem;
  margin: 0 auto;
}

.problem-item {
  width: 33.33%;
  padding: 2rem;
  background: #fff;
}

.problem-txt {
  padding-top: 2rem;
}

.problem-bottom {
  margin-top: 6rem;
  font-size: 2.1rem;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .problem-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem;
    width: 90%;
  }

  .problem-item {
    width: 30rem;
    margin: 0 auto;
  }

  .problem-bottom {
    width: 90%;
    font-size: 1.6rem;
    margin: 4rem auto 0;
  }

}


/* feature */
.feature {
  padding: 0;
}

.feature-wrap {
  display: flex;
  align-items: center;
}

.feature .section-ttl {
  width: 40%;
  margin: 0;
}

.feature-list {
  width: 60%;
}

.feature-item {
  width: 100%;
  padding: 6rem 2rem 6rem 6rem;
}

.feature-item:first-child {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 100%, rgba(255, 255, 255, 0) 100%),
  url(../img/features_01.jpeg);
  background-position: center 34%;
  background-repeat: no-repeat;
  background-size: cover;
}

.feature-item:nth-child(2) {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 100%, rgba(255, 255, 255, 0) 100%),
  url(../img/features_02.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;  
}

.feature-item:last-child {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 100%, rgba(255, 255, 255, 0) 100%),
  url(../img/features_03.jpeg);
  background-position: center 30%;
  background-repeat: no-repeat;
  background-size: cover;  
}

.feature-item-ttl {
  font-size: 2.1rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .feature {
    padding: 4rem 0 0;
  }
  .feature .section-ttl {
    width: 100%;
    margin: 2rem 0 3rem;
  }

  .feature-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3rem;
    width: 100%;
  }

  .feature-item {
    width: 100%;
    padding: 4rem 2rem;
  }

  .feature-wrap {
    flex-wrap: wrap;
  }

  .feature-item-ttl {
    font-size: 1.6rem;
  }

}


/* curriculum */
#curriculum {
  padding: 8rem 0 12rem;
  background: #e6e6f0;
}

.curriculum-list {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  width: 108rem;
  margin: 0 auto;
}

.curriculum-item {
  width: calc(50% - 2rem);
  height: 30rem;
}

.curriculum-item:first-child {
  background: linear-gradient(90deg, rgba(17, 21, 5, 0.3) 100%, rgba(255, 255, 255, 0) 100%),
  url(../img/mv.jpeg);
  background-position: center;
  background-size: cover;
}

.curriculum-item:nth-child(2) {
  background: linear-gradient(90deg, rgba(17, 21, 5, 0.3) 100%, rgba(255, 255, 255, 0) 100%),
  url(../img/training_01.jpg);;
  background-position: 55% center;
  background-size: cover;
}

.curriculum-item:nth-child(3) {
  background: linear-gradient(90deg, rgba(17, 21, 5, 0.3) 100%, rgba(255, 255, 255, 0) 100%),
  url(../img/training_02.jpg);
  background-position: center;
  background-size: cover;
}

.curriculum-item:last-child {
  background: linear-gradient(90deg, rgba(17, 21, 5, 0.3) 100%, rgba(255, 255, 255, 0) 100%),
  url(../img/training_03.jpg);
  background-position: 100% center;
  background-size: cover;
}

.curriculum-wrap {
  display: inline-block;
  padding: 1rem;
  border: 1px solid #fff;
}

.curriculum-inner {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 30rem;
  padding: 2rem;
  background: #fff;
}

.curriculum-item-ttl {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--bs-key-color);
  text-align: center;
}

.curriculum-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.curriculum-item a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  #curriculum  {
    padding: 4rem 0 6rem;
  }

  .curriculum-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .curriculum-item {
    width: 100%;
    height: 20rem;
  }

  .curriculum-item-ttl {
    font-size: 1.6rem;
  }
}


/* footer */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid #DDDDDD;
  background: var(--bs-key-color);
}

.footer-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}

.footer-link {
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
  color: #fff;
}

.footer-link:hover {
  opacity: 0.6;
}

.copyright {
  font-size: 1.2rem;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 11.2rem;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .footer-list {
    flex-direction: column;
    gap: 2rem;
  }

  .copyright {
    margin-top: 8rem;
  }
}


/* privacy */
.subpage .privacy {
  padding: 24rem 0 16rem;
}

.subpage .privacy .privacy-intro,
.subpage .privacy .privacy-content {
  margin-bottom: 8rem;
}

.subpage .privacy .privacy-content:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .subpage .privacy {
    padding: 12rem 0 6rem;
  }

  .subpage .privacy .privacy-intro,
  .subpage .privacy .privacy-content {
    margin-bottom: 4rem;
  }
}

/* curriculum subpage */
.curriculum-mv {
  height: 30rem;
  /* margin-top: 8rem; */
  color: #fff;
}

.start-up .curriculum-mv {
  background: linear-gradient(90deg, rgba(17, 21, 5, 0.5) 100%, rgba(255, 255, 255, 0) 100%), url(../img/mv.jpeg);
  background-position: center 35%;
  background-size: cover;
}

.hospitality-communication .curriculum-mv {
  background: linear-gradient(90deg, rgba(17, 21, 5, 0.5) 100%, rgba(255, 255, 255, 0) 100%), url(../img/training_01.jpg);
  background-position: center 30%;
  background-size: cover;
}

.team-practical-skills .curriculum-mv {
  background: linear-gradient(90deg, rgba(17, 21, 5, 0.5) 100%, rgba(255, 255, 255, 0) 100%), url(../img/training_02.jpg);
  background-position: center 50%;
  background-size: cover;
}

.local-brand .curriculum-mv {
  background: linear-gradient(90deg, rgba(17, 21, 5, 0.5) 100%, rgba(255, 255, 255, 0) 100%), url(../img/training_03.jpg);
  background-position: center;
  background-size: cover;
}

.curriculum-mv .mv-all {
  display: flex;
  align-items: center;
  justify-content: center;
}

.curriculum-mv .mv-content {
  position: unset;
  text-align: center;
}

.curriculum-mv .mv-ttl,
.curriculum-mv p {
  margin: 0;
}

.curriculum-img {
  width: 108rem;
  margin: 8rem auto 0;
}

.curriculum-img img {
  width: 100%;
  height: 40rem;
  object-fit: cover;
  object-position: center;
}

.sub-curriculum {
  width: 108rem;
  margin: 8rem auto 0;
  padding: 6rem 4rem;
  background:#fff;
  border-radius:10px;
  box-shadow:0 4px 14px rgba(0,0,0,.06);
}

.sub-curriculum.last {
  margin: 8rem auto 10rem;
}

.sub-curriculum .section-title {
  text-align: center;
}

.sub-curriculum ul {
  padding-left:1.2em;
  margin:0;
}

.sub-curriculum ul li {
  list-style-type: disc;
}

.syllabus {
  display:flex;
  flex-wrap:wrap;
  gap:20px;
}

.module {
  width: 100%;
  background:#fdfdfd;
  border:1px solid #eee;
  border-radius:8px;
  padding:20px;
}

.module h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin:0 0 10px;
  color:var(--bs-key-color)
}

.module ul {
  padding-left:1.2em;
  margin:0;
}

@media screen and (max-width: 768px) {
  .curriculum-mv {
    height: 15rem;
  }

  .curriculum-mv .mv-ttl {
    font-size: 2.1rem;
  }

  .curriculum-img {
    width: 90%;
    margin: 4rem auto 0;
  }

  .curriculum-img img {
    height: 18rem;
  }

  .subpage .sub-curriculum {
    width: 90%;
    margin: 4rem auto 0;
    padding: 2rem;
  }

  .sub-curriculum.last {
    margin: 4rem auto 8rem;
  }

}