@charset "UTF-8";
/* ///////////////////////////////////// */
/* /////////////////共通///////////////// */
/* ///////////////////////////////////// */
*,
html,
h1,
h2,
h3,
h4,
h5,
h6,
* + p,
p {
  margin: 0;
  padding: 0;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
  line-height: 1.7;
}
@media screen and (max-width: 855px) {
  *,
  html,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  * + p,
  p {
    font-size: 16px;
  }
}
* h1,
* h2,
* h3,
* h4,
* h5,
* h6,
* p,
html h1,
html h2,
html h3,
html h4,
html h5,
html h6,
html p,
h1 h1,
h1 h2,
h1 h3,
h1 h4,
h1 h5,
h1 h6,
h1 p,
h2 h1,
h2 h2,
h2 h3,
h2 h4,
h2 h5,
h2 h6,
h2 p,
h3 h1,
h3 h2,
h3 h3,
h3 h4,
h3 h5,
h3 h6,
h3 p,
h4 h1,
h4 h2,
h4 h3,
h4 h4,
h4 h5,
h4 h6,
h4 p,
h5 h1,
h5 h2,
h5 h3,
h5 h4,
h5 h5,
h5 h6,
h5 p,
h6 h1,
h6 h2,
h6 h3,
h6 h4,
h6 h5,
h6 h6,
h6 p,
* + p h1,
* + p h2,
* + p h3,
* + p h4,
* + p h5,
* + p h6,
* + p p,
p h1,
p h2,
p h3,
p h4,
p h5,
p h6,
p p {
  color: #000;
}

a:hover {
  text-decoration: none;
}

body {
  background: #000;
}

/* section間トランジション */
.visiable::before {
  /* 対象のcssが下にあるため!important */
  opacity: 0 !important;
}

/* 文字のパストリミング2 */
.txtstrokes {
  opacity: 0;
}

.is_txtstroke {
  stroke: #fff;
  stroke-width: 1px;
  stroke-dasharray: 1250;
  stroke-dashoffset: 600;
  animation: textStrokeAnime 3s ease forwards;
  animation-delay: 0.5s;
  opacity: 1;
}

@keyframes textStrokeAnime {
  0% {
    stroke-dashoffset: 600;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
/* fade inするアニメーション */
.fade_in {
  opacity: 0;
  margin-top: 3vw;
  transition: 2s cubic-bezier(0.65, 0, 0.35, 1);
}

.fade2_in {
  opacity: 0;
  transition: 1s cubic-bezier(0.65, 0, 0.35, 1);
}

.is_fade_in {
  margin-top: 0;
  opacity: 1;
}

/* ///////////////////////////////////// */
/* //////////////header img///////////// */
/* ///////////////////////////////////// */
header {
  z-index: 100;
  position: sticky;
  background: #000;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
}
header .left {
  display: flex;
}
header .left img {
  width: 72px;
  height: auto;
  margin: 0.75vw 0.75vw 0.75vw 3vw;
}
header .right {
  display: flex;
  align-items: center;
  position: relative;
}
header .right > a {
  display: flex;
  align-items: center;
  height: 24px;
  margin: 0 25px;
}
header .right p {
  font-size: max(1.04vw, 14px);
  color: #fff;
  margin-right: 12px;
}
header .right img {
  width: 16px;
}
header .right a:hover p {
  color: #555;
}
@media screen and (max-width: 855px) {
  header {
    display: block;
  }
  header .left {
    align-items: center;
    margin: 0 auto;
  }
  header .left a {
    margin: 0;
  }
  header .right {
    display: none;
  }
}

#countdown {
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0 2vw;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 480px) {
  #countdown {
    display: inline-block;
    margin: 0 0 0 auto;
  }
}

.timer_text {
  font-size: 14px;
  color: #fff;
  margin: 0;
}

#timer {
  font-size: 16px;
  background-color: #fff;
  margin: 0 0 0 0.5vw;
  color: #000;
}

.dropdown {
  position: relative;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu {
  display: none;
  position: absolute;
  width: 108px;
  top: 24px;
  left: -10px;
  background: #000;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}
.dropdown-menu > a {
  display: flex;
  align-items: center;
  padding: 8px 10px;
}
.dropdown-menu > a:first-child {
  border-bottom: 1px solid #fff;
}
.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.dropdown-text:hover {
  cursor: pointer;
}

/* ///////////////////////////////////// */
/* //////////////main view////////////// */
/* ///////////////////////////////////// */
.mv > img {
  width: 100vw;
  height: auto;
}

.achievements-section {
  color: #fff;
  display: grid;
  justify-content: center;
  padding: 80px 0;
}
@media (max-width: 768px) {
  .achievements-section {
    padding: 50px 0;
  }
}
.achievements-section .achievements-inner {
  max-width: 1200px;
  display: grid;
  justify-items: center;
  gap: 32px;
}
.achievements-section .achievements-inner .achievements-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  justify-content: center;
  padding: 0 10px;
}
@media (max-width: 1280px) {
  .achievements-section .achievements-inner .achievements-list {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .achievements-section .achievements-inner .achievements-list {
    gap: 12px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.achievements-section .achievements-inner .achievements-list .achievement-card {
  display: grid;
  row-gap: 10px;
  padding: 20px 40px;
  border-radius: 40px;
  background: linear-gradient(135deg, #232428 0%, #0f0f0f 100%);
}
@media (max-width: 1280px) {
  .achievements-section .achievements-inner .achievements-list .achievement-card {
    padding: 14px 24px;
  }
}
@media (max-width: 768px) {
  .achievements-section .achievements-inner .achievements-list .achievement-card {
    max-width: 300px;
  }
}
.achievements-section .achievements-inner .achievements-list .achievement-card-label {
  font-size: 18px;
  color: #fff;
}
.achievements-section .achievements-inner .achievements-list .achievement-card-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  color: #fcdead;
}
.achievements-section .achievements-inner .achievements-list .achievement-card-value-num {
  font-size: 95px;
  line-height: 1;
}
@media (max-width: 900px) {
  .achievements-section .achievements-inner .achievements-list .achievement-card-value-num {
    font-size: 60px;
  }
}
.achievements-section .achievements-inner .achievements-list .achievement-card-value-unit {
  font-size: 50px;
  line-height: 1;
}
@media (max-width: 900px) {
  .achievements-section .achievements-inner .achievements-list .achievement-card-value-unit {
    font-size: 28px;
  }
}
.achievements-section .achievements-inner .achievements-list .achievement-card-desc {
  font-size: 13px;
  color: #f0f0f0;
  font-weight: 500;
  line-height: 1.6;
  word-break: auto-phrase;
}
.achievements-section .achievements-inner .achievements-announce {
  font-size: 25px;
  font-weight: 800;
  color: #fcdead;
  text-align: center;
}
@media (max-width: 768px) {
  .achievements-section .achievements-inner .achievements-announce {
    font-size: 20px;
  }
}

/* ///////////////////////////////////// */
/* /////////////main massage//////////// */
/* ///////////////////////////////////// */
.mm {
  z-index: 1;
  position: relative;
  text-align: center;
  background: #dcdcd7;
  padding: 10vw 7.5vw;
}
.mm > h2 {
  font-size: 3.47vw; /* 50px */
  margin-bottom: 34px;
}
@media screen and (max-width: 855px) {
  .mm > h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: left;
  }
}
.mm > h3 {
  font-weight: 300;
  word-break: keep-all;
  text-align: center;
}
@media screen and (max-width: 855px) {
  .mm > h3 {
    width: 100%;
    text-align: left;
    word-break: break-all;
  }
}
.mm > svg {
  z-index: -1;
  width: 100%;
  height: auto;
  position: absolute;
  top: 4vw;
  left: 0vw;
}

.service-section {
  padding: 120px 0 150px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(../img/service/service_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 780px) {
  .service-section {
    padding: 90px 0 110px;
  }
}
.service-section .service-inner {
  display: grid;
  gap: 36px;
}
@media (max-width: 780px) {
  .service-section .service-inner {
    gap: 26px;
  }
}
.service-section .service-inner .service-title {
  font-size: 42px;
  color: #fff;
  text-align: center;
  word-break: auto-phrase;
}
@media (max-width: 780px) {
  .service-section .service-inner .service-title {
    font-size: 20px;
  }
}
.service-section .service-inner .service-image {
  padding: 0 80px;
  display: flex;
  justify-content: center;
}
@media (max-width: 780px) {
  .service-section .service-inner .service-image {
    padding: 0;
  }
}
.service-section .service-inner .service-image img {
  width: 100%;
  max-width: 1240px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 780px) {
  .service-section .service-inner .service-image img {
    max-width: 320px;
  }
}

/* ///////////////////////////////////// */
/* /////////////curriculum////////////// */
/* ///////////////////////////////////// */
.curriculum {
  text-align: center;
  padding: 10vw 7.5vw;
  background: #dcdcd7;
}
.curriculum > h2 {
  font-size: 3.47vw; /* 50px */
  margin-bottom: 1.39vw;
}
.curriculum > h3 {
  font-weight: 300;
  margin-bottom: 5.56vw;
}
@media screen and (max-width: 855px) {
  .curriculum > h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.curriculumsub {
  font-size: 24px;
  font-weight: 300;
}
@media screen and (max-width: 855px) {
  .curriculumsub {
    font-size: 16px;
  }
}

.howtolearn {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.howtolearn p {
  font-size: 24px;
  margin-bottom: 3.47vw;
}
.howtolearn img {
  width: auto;
  height: 27.8vw;
}
@media screen and (max-width: 855px) {
  .howtolearn {
    display: block;
  }
  .howtolearn p {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .howtolearn img {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
  }
}

.growth-method-section {
  padding: 120px 0;
  background: linear-gradient(90deg, #262626 0%, #202020 100%);
  display: grid;
  justify-content: center;
}
@media (max-width: 600px) {
  .growth-method-section {
    padding: 60px 0;
  }
}
.growth-method-section .growth-method-inner {
  display: grid;
  justify-items: center;
  gap: 64px;
}
@media (max-width: 600px) {
  .growth-method-section .growth-method-inner {
    gap: 24px;
  }
}
.growth-method-section .growth-method-inner .growth-method-text {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 0 24px;
}
@media (max-width: 600px) {
  .growth-method-section .growth-method-inner .growth-method-text {
    gap: 6px;
  }
}
.growth-method-section .growth-method-inner .growth-method-text-subtitle {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 768px) {
  .growth-method-section .growth-method-inner .growth-method-text-subtitle {
    font-size: 16px;
  }
}
.growth-method-section .growth-method-inner .growth-method-text-title {
  font-size: 3.47vw; /* 50px */
  color: #fff;
  text-align: center;
  word-break: auto-phrase;
}
@media (max-width: 768px) {
  .growth-method-section .growth-method-inner .growth-method-text-title {
    font-size: 20px;
  }
}
.growth-method-section .growth-method-inner .growth-method-text-paragraph {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 768px) {
  .growth-method-section .growth-method-inner .growth-method-text-paragraph {
    font-size: 12px;
  }
}
.growth-method-section .growth-method-inner .growth-method-img {
  max-width: 1063px;
  height: auto;
  padding: 0 24px;
}
@media (max-width: 855px) {
  .growth-method-section .growth-method-inner .growth-method-img {
    max-width: 360px;
  }
}
@media (max-width: 600px) {
  .growth-method-section .growth-method-inner .growth-method-img {
    padding: 0 6px;
  }
}
.growth-method-section .growth-method-inner .growth-method-img img {
  width: 100%;
  height: auto;
}

.consultation-section {
  text-align: center;
  padding: 10vw 7.5vw;
  background: #dcdcd7;
  display: grid;
  justify-content: center;
}
.consultation-section .consultation-inner {
  max-width: 1200px;
  display: grid;
  justify-items: center;
  gap: 32px;
}
.consultation-section .consultation-inner .consultation-text {
  display: grid;
  justify-items: center;
  gap: 24px;
}
.consultation-section .consultation-inner .consultation-text-subtitle {
  font-size: 24px;
  font-weight: 500;
  color: #000;
}
@media screen and (max-width: 855px) {
  .consultation-section .consultation-inner .consultation-text-subtitle {
    font-size: 16px;
  }
}
.consultation-section .consultation-inner .consultation-text-title {
  font-size: 3.47vw; /* 50px */
  color: #000;
  text-align: center;
  word-break: auto-phrase;
  margin-bottom: 1.39vw;
}
@media screen and (max-width: 855px) {
  .consultation-section .consultation-inner .consultation-text-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.consultation-section .consultation-inner .consultation-text-paragraph {
  font-size: 20px;
  font-weight: 300;
  color: #000;
  text-align: center;
  line-height: 1.7;
  max-width: 900px;
}
@media screen and (max-width: 855px) {
  .consultation-section .consultation-inner .consultation-text-paragraph {
    font-size: 16px;
    text-align: left;
  }
}
.consultation-section .consultation-inner .consultation-text-list {
  text-align: left;
  max-width: 900px;
  margin: 0;
}
@media screen and (max-width: 855px) {
  .consultation-section .consultation-inner .consultation-text-list {
    font-size: 16px;
    text-align: left;
  }
}
.consultation-section .consultation-inner .consultation-text-list li {
  font-size: 20px;
  font-weight: 300;
  color: #000;
  line-height: 1.7;
  list-style: circle;
}
@media screen and (max-width: 855px) {
  .consultation-section .consultation-inner .consultation-text-list li {
    font-size: 15px;
    text-align: left;
  }
}
.consultation-section .consultation-inner .consultation-btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.7vw 4.24vw;
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  background: #000;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media screen and (max-width: 855px) {
  .consultation-section .consultation-inner .consultation-btn {
    padding: 12px 40px;
  }
}
.consultation-section .consultation-inner .consultation-btn:hover {
  background: #dcdcd7;
  border: 1px solid #000;
  transition: 1s cubic-bezier(0.65, 0, 0.35, 1);
}
.consultation-section .consultation-inner .consultation-btn:hover p {
  transition: 1s cubic-bezier(0.65, 0, 0.35, 1);
  color: #000;
}
.consultation-section .consultation-inner .consultation-btn:hover svg path {
  stroke: #000;
  transition: 1s cubic-bezier(0.65, 0, 0.35, 1);
}
.consultation-section .consultation-inner .consultation-btn p {
  font-size: 18px;
  color: #fff;
  margin: 0;
}
@media screen and (max-width: 855px) {
  .consultation-section .consultation-inner .consultation-btn p {
    font-size: 16px;
  }
}
.consultation-section .consultation-inner .consultation-btn svg {
  stroke: #fff;
  width: 10px;
  height: 16px;
  margin-left: 16px;
  transition: all 0.3s ease;
}
.consultation-section .consultation-inner .consultation-btn svg path {
  stroke: #fff;
  stroke-width: 2;
  fill: none;
}
.consultation-section .consultation-inner .consultation-notes {
  display: grid;
  gap: 8px;
  margin-top: 32px;
}
.consultation-section .consultation-inner .consultation-notes p {
  font-size: 16px;
  font-weight: 300;
  color: #666;
  text-align: center;
}
@media screen and (max-width: 855px) {
  .consultation-section .consultation-inner .consultation-notes p {
    font-size: 14px;
    text-align: left;
  }
}
@media screen and (max-width: 855px) {
  .consultation-section {
    padding: 10vw 5vw;
  }
}

/* ///////////////////////////////////// */
/* /////////////instructors///////////// */
/* ///////////////////////////////////// */
.instructors {
  text-align: center;
  padding: 10vw 7.5vw;
  background: #dcdcd7;
}
.instructors > h2 {
  font-size: 3.47vw; /* 50px */
  margin-bottom: 2vw;
}
@media screen and (max-width: 855px) {
  .instructors {
    padding: 10vw 0;
  }
  .instructors > h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.instructorssub {
  font-size: 24px;
  font-weight: 300;
}
@media screen and (max-width: 855px) {
  .instructorssub {
    font-size: 16px;
  }
}

.instructor_cards {
  display: flex;
  width: calc(100% + 36px);
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 855px) {
  .instructor_cards {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .instructor_cards {
    justify-content: space-evenly;
  }
}
.instructor_cards > a {
  margin-top: 42px;
  margin-right: 24px;
}
@media screen and (max-width: 855px) {
  .instructor_cards > a {
    margin-top: 15px;
    margin-right: 6px;
  }
}
@media screen and (max-width: 480px) {
  .instructor_cards > a {
    margin-right: 0px;
  }
}

.instructor_card {
  max-width: 228px;
  min-width: 228px;
  height: 390px;
  padding: 0 0px 10px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  text-align: center;
  transition: all 0.3s ease;
}
.instructor_card:hover {
  opacity: 0.7;
}
@media screen and (max-width: 855px) {
  .instructor_card {
    max-width: 150px;
    min-width: 150px;
    height: 250px;
    border-radius: 10px;
  }
}

.instructor_cardmiura {
  background: url(../img/instructor/miura.png) no-repeat;
  background-position: center;
  background-size: cover;
}
.instructor_cardhosoda {
  background: url(../img/instructor/hosoda.png) no-repeat;
  background-position: center;
  background-size: cover;
}
.instructor_cardishikawa {
  background: url(../img/instructor/ishikawa.png) no-repeat;
  background-position: center;
  background-size: cover;
}
.instructor_cardfukura {
  background: url(../img/instructor/fukura.png) no-repeat;
  background-position: center;
  background-size: cover;
}
.instructor_cardfukusato {
  background: url(../img/instructor/fukusato.png) no-repeat;
  background-position: center;
  background-size: cover;
}
.instructor_cardyogoro {
  background: url(../img/instructor/yogoro.png) no-repeat;
  background-position: center;
  background-size: cover;
}
.instructor_cardkobayashi {
  background: url(../img/instructor/kobayashi.png) no-repeat;
  background-position: center;
  background-size: cover;
}
.instructor_cardmatsuda {
  background: url(../img/instructor/matsuda.png) no-repeat;
  background-position: center;
  background-size: cover;
}
.instructor_cardiwasaki {
  background: url(../img/instructor/iwasaki.png) no-repeat;
  background-position: center;
  background-size: cover;
}
.instructor_cardtakahashi {
  background: url(../img/instructor/takahashi.png) no-repeat;
  background-position: center;
  background-size: cover;
}
.instructor_cardfukatsu {
  background: url(../img/instructor/fukatsu.png) no-repeat;
  background-position: center;
  background-size: cover;
}
.instructor_cardoichiochiai {
  background: url(../img/instructor/oichiochiai.png) no-repeat;
  background-position: center;
  background-size: cover;
}

.instructor_card::before {
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 29.63%, #000 84.23%);
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  border-radius: 0 0 10px 10px;
}

.instructor_txt {
  z-index: 1;
  height: 100px;
}
.instructor_txt > h3 {
  font-size: 30px;
  text-align: center;
  color: #fff;
}
.instructor_txt > p {
  font-size: 10px;
  color: #fff;
}
@media screen and (max-width: 855px) {
  .instructor_txt {
    height: -moz-fit-content;
    height: fit-content;
  }
  .instructor_txt > h3 {
    font-size: 24px;
  }
  .instructor_txt > p {
    display: block;
    font-size: 10px;
    transform: scale(0.7);
    margin: 0 -40px;
  }
}

/* modalのcss */
.instructor_modal {
  width: -moz-fit-content;
  width: fit-content;
  background: #dcdcd7;
  border-radius: 10px;
}
.instructor_modal button,
.instructor_modal svg > line {
  color: #000;
  stroke-width: 2px;
}
.instructor_modal_box {
  display: flex;
  justify-content: center;
  margin-bottom: 7vw;
}
.instructor_modal_box > img {
  width: 230px;
  height: 400px;
  margin-right: 30px;
}
.instructor_modal_txt {
  width: 50vw;
}
.instructor_modal_txt > h2 {
  font-size: 40px;
}
.instructor_modal_txt > h3 {
  font-size: 14px;
  font-weight: 300;
}
.instructor_modal_txt > p {
  font-size: 16px;
  font-weight: 300;
  margin-top: 16px;
}
@media screen and (max-width: 855px) {
  .instructor_modal_box {
    display: block;
  }
  .instructor_modal_box > img {
    width: 260px;
    height: 460px;
    margin-right: 0;
  }
  .instructor_modal_txt {
    width: 100%;
  }
  .instructor_modal_txt > h2 {
    font-size: 36px;
  }
  .instructor_modal_txt > h3 {
    font-size: 12px;
  }
  .instructor_modal_txt > p {
    font-size: 14px;
  }
}

.modal_btn_center {
  text-align: center;
}

/* ///////////////////////////////////// */
/* //////////////schedules////////////// */
/* ///////////////////////////////////// */
.schedules {
  text-align: center;
  padding: 10vw 7.5vw;
  background: #dcdcd7;
}
.schedules > h2 {
  font-size: 3.47vw; /* 50px */
  margin-bottom: 2vw;
}
.schedules > h3 {
  font-size: 16px;
  font-weight: 300;
}
@media screen and (max-width: 855px) {
  .schedules > h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.schedulessub {
  font-size: 24px;
  font-weight: 300;
}
@media screen and (max-width: 855px) {
  .schedulessub {
    font-size: 16px;
  }
}

.scheduledetail > img {
  width: 100%;
  height: auto;
  margin-top: 3vw;
}
@media screen and (max-width: 855px) {
  .scheduledetail > img {
    margin-top: 24px;
  }
}

.schedulememo {
  font-size: 16px;
  font-weight: 300;
  text-align: left;
  margin-top: 25px;
}
@media screen and (max-width: 855px) {
  .schedulememo {
    font-size: 12px;
    margin-top: 10px;
  }
}

/* ///////////////////////////////////// */
/* /////////////assignments///////////// */
/* ///////////////////////////////////// */
.assignments {
  text-align: center;
  padding: 10vw 7.5vw;
  background: #dcdcd7;
}
.assignments > h2 {
  font-size: 3.47vw; /* 50px */
  margin-bottom: 2vw;
}
@media screen and (max-width: 855px) {
  .assignments > h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.assignmentssub {
  font-size: 24px;
  font-weight: 300;
}
@media screen and (max-width: 855px) {
  .assignmentssub {
    font-size: 16px;
  }
}

.assignment_tasks {
  justify-content: space-evenly;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 855px) {
  .assignment_tasks {
    display: block;
  }
}

.assignment_task {
  width: 32.5vw;
  padding: 3.47vw 2.36vw;
  margin: 0 auto;
  background: #fff;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 7;
}
.assignment_task > h3 {
  width: 18.9vw;
  padding: 0.3vw 0;
  margin: 0 auto;
  color: #fff;
  background: #000;
  text-align: center;
  font-weight: 300;
}
.assignment_task > h5 {
  text-align: left;
  font-weight: 300;
  padding-top: 1vw;
}
.assignment_task > h4 {
  padding: 1.5vw 0 0.35vw;
  text-align: center;
  font-weight: 300;
}
.assignment_task > p {
  padding: 0.7vw 3vw;
  margin-top: 0.7vw;
  text-align: left;
  font-weight: 300;
  border: #000 solid;
  border-width: 0.5px 5px;
}
.assignment_task > img {
  width: 100%;
}
@media screen and (max-width: 855px) {
  .assignment_task {
    width: 100%;
    padding: 25px 3px;
    margin-bottom: 24px;
  }
  .assignment_task * {
    font-size: 14px;
  }
  .assignment_task > h3 {
    width: 185px;
    padding: 0.3vw 4px;
    margin: 0 auto 15px;
  }
  .assignment_task > h4 {
    padding: 7vw 0 0.35vw;
  }
}

/* ///////////////////////////////////// */
/* /////////////interviews///////////// */
/* ///////////////////////////////////// */
.interviews {
  padding: 15vw 0;
  background: #dcdcd7;
  text-align: center;
}
.interviews > h2 {
  font-size: 3.47vw; /* 50px */
  margin-bottom: 1.39vw;
}
@media screen and (max-width: 855px) {
  .interviews > h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.interviews > h3 {
  width: 85%;
  font-weight: 300;
  margin: 0 auto 5.56vw;
}

.interviewssub {
  font-size: 24px;
  font-weight: 300;
}
@media screen and (max-width: 855px) {
  .interviewssub {
    font-size: 16px;
  }
}

.interviews_txt {
  padding-left: 5vw;
  position: relative;
  z-index: 1; /* SVGの位置調整副作用 */
}
.interviews_txt > h2 {
  font-size: 3.47vw; /* 50px */
}
@media screen and (max-width: 855px) {
  .interviews_txt > h2 {
    font-size: 24px;
  }
}
.interviews_txt > p {
  font-weight: 300;
  margin-bottom: 60px;
}
@media screen and (max-width: 855px) {
  .interviews_txt > p {
    margin-bottom: 20px;
  }
}
.interviews_txt > svg {
  z-index: -1;
  width: auto;
  height: 10.5vw;
  position: absolute;
  top: -7vw;
  left: 1vw;
}
@media screen and (max-width: 855px) {
  .interviews_txt > svg {
    height: 20vw;
    top: -11vw;
    left: 3vw;
  }
}

.interview_cards {
  display: flex;
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
}
.interview_cards > a {
  margin-top: 36px;
  margin-right: 24px;
}
@media screen and (max-width: 855px) {
  .interview_cards > a {
    margin-top: 0px;
    margin-right: 16px;
  }
}
.interview_cards > a:first-child {
  margin-left: 5vw;
}

.interview_card {
  width: 300px;
  height: 345px;
  padding: 0 15px 24px;
  border-radius: 16px;
  display: flex;
  align-items: flex-end;
  position: relative;
  transition: all 0.3s ease;
}
@media screen and (max-width: 855px) {
  .interview_card {
    width: 200px;
    height: 230px;
    padding: 0 10px 24px;
    border-radius: 10px;
  }
}
.interview_card:hover {
  opacity: 0.7;
}

.interview_card01 {
  background: url(../img/interview01.png) no-repeat;
  background-position: center;
  background-size: cover;
}
.interview_card02 {
  background: url(../img/interview02.png) no-repeat;
  background-position: center;
  background-size: cover;
}
.interview_card03 {
  background: url(../img/interview03.png) no-repeat;
  background-position: center;
  background-size: cover;
}
.interview_card04 {
  background: url(../img/interview04.png) no-repeat;
  background-position: center;
  background-size: cover;
}
.interview_card05 {
  background: url(../img/interview05.png) no-repeat;
  background-position: center;
  background-size: cover;
}
.interview_card06 {
  background: url(../img/interview06.png) no-repeat;
  background-position: center;
  background-size: cover;
}
.interview_card07 {
  background: url(../img/interview07.png) no-repeat;
  background-position: center;
  background-size: cover;
}
.interview_card08 {
  background: url(../img/interview08.png) no-repeat;
  background-position: center;
  background-size: cover;
}

.interview_txt > h3 {
  font-size: 12px;
  padding: 2px;
  background: #fff;
  width: -moz-fit-content;
  width: fit-content;
}
.interview_txt > p {
  font-size: 18px;
  color: #fff;
  text-align: left;
}
@media screen and (max-width: 855px) {
  .interview_txt > p {
    font-size: 12px;
  }
}

/* modalのcss */
.interview_modal {
  width: 1000px;
  padding: 90px 50px 35px;
  background: #dcdcd7;
  border-radius: 10px;
}
@media screen and (max-width: 855px) {
  .interview_modal {
    padding: 40px 15px 35px;
    border-radius: 10px;
  }
}
.interview_modal > h2 {
  font-size: 28px;
  margin-bottom: 45px;
}
@media screen and (max-width: 855px) {
  .interview_modal > h2 {
    font-size: 16px;
    margin: 0 auto 24px;
    width: 80%;
  }
}
.interview_modal button,
.interview_modal svg > line {
  color: #000;
  stroke-width: 2px;
}

.interview_detail {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 855px) {
  .interview_detail {
    display: grid;
  }
}
.interview_detail_l {
  text-align: center;
}
@media screen and (max-width: 855px) {
  .interview_detail_l > p {
    font-size: 11px !important;
    margin-top: 10px;
  }
}
.interview_detail_l > img {
  width: 165px;
  height: auto;
  border-radius: 10px;
}
.interview_detail_r {
  width: 650px;
}
@media screen and (max-width: 855px) {
  .interview_detail_r {
    width: 95%;
    margin-top: 32px;
  }
}
.interview_detail_r > h3 {
  margin-bottom: 10px;
}
@media screen and (max-width: 855px) {
  .interview_detail_r > h3 {
    font-size: 14px;
  }
}
.interview_detail_r > p {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 20px;
}
@media screen and (max-width: 855px) {
  .interview_detail_r > p {
    font-size: 11px;
  }
}

.modal_btn_center {
  text-align: center;
}

/* ///////////////////////////////////// */
/* /////////////communitys///////////// */
/* ///////////////////////////////////// */
.communitys {
  padding: 15vw 0;
  background: #dcdcd7;
}

.communitys_txt {
  display: grid;
  justify-items: center;
  gap: 16px;
}
.communitys_txt_sub {
  font-size: 24px;
  font-weight: 300;
}
@media screen and (max-width: 855px) {
  .communitys_txt_sub {
    font-size: 16px;
  }
}
.communitys_txt > h2 {
  font-size: 3.47vw; /* 50px */
}
@media screen and (max-width: 855px) {
  .communitys_txt > h2 {
    font-size: 24px;
  }
}
.communitys_txt > h3 {
  width: 85%;
  font-weight: 300;
  margin: 0 auto 5.56vw;
  text-align: center;
}
@media screen and (max-width: 855px) {
  .communitys_txt > h3 {
    margin-bottom: 20px;
  }
}

.community_cards {
  display: flex;
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
}
.community_cards > a {
  margin-top: 36px;
  margin-right: 24px;
}
@media screen and (max-width: 855px) {
  .community_cards > a {
    margin-top: 0px;
    margin-right: 16px;
  }
}
.community_cards > a:first-child {
  margin-left: 5vw;
}

.community_card {
  width: 300px;
  height: 200px;
  padding: 18px 25px;
  border-radius: 16px;
  display: flex;
  justify-content: left;
  align-items: flex-end;
  position: relative;
  transition: all 0.3s ease;
}
@media screen and (max-width: 855px) {
  .community_card {
    width: 200px;
    height: 130px;
    border-radius: 10px;
  }
}
.community_card01 {
  background: url(../img/community01.png) no-repeat;
  background-position: center;
  background-size: cover;
}
.community_card02 {
  background: url(../img/community02.png) no-repeat;
  background-position: center;
  background-size: cover;
}
.community_card03 {
  background: url(../img/community03.png) no-repeat;
  background-position: center;
  background-size: cover;
}
.community_card04 {
  background: url(../img/community04.png) no-repeat;
  background-position: center;
  background-size: cover;
}
.community_card05 {
  background: url(../img/community05.png) no-repeat;
  background-position: center;
  background-size: cover;
}
.community_card:hover {
  opacity: 0.7;
}
.community_card::before {
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 125.89%);
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0 0 10px 10px;
}

.community_txt {
  z-index: 1;
}
.community_txt > h3 {
  padding: 2px;
  color: #fff;
}

/* modalのcss */
.community_modal {
  width: 1000px;
  padding: 90px 50px 35px;
  background: #dcdcd7;
  border-radius: 10px;
}
@media screen and (max-width: 321px) {
  .community_modal {
    padding: 90px 20px 35px;
  }
}
.community_modal > h2 {
  font-size: 28px;
  margin-bottom: 32px;
}
@media screen and (max-width: 855px) {
  .community_modal > h2 {
    font-size: 18px;
    margin-bottom: 40px;
  }
}
.community_modal > h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 855px) {
  .community_modal > h3 {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.community_modal > h4 {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 52px;
}
@media screen and (max-width: 855px) {
  .community_modal > h4 {
    font-size: 11px;
    margin-bottom: 28px;
  }
}

.community_modal button,
.community_modal svg > line {
  color: #000;
  stroke-width: 2px;
}

.modal_btn_center {
  text-align: center;
}

.community_members {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 3vw;
}
@media screen and (max-width: 855px) {
  .community_members {
    display: block;
    margin-bottom: 0;
  }
}

.community_member {
  display: flex;
  align-items: flex-start;
  min-width: 300px;
  max-width: 300px;
}
@media screen and (max-width: 855px) {
  .community_member {
    align-items: center;
    margin-bottom: 20px;
    min-width: unset;
    max-width: none;
  }
}
.community_member > img {
  width: 6.8vw;
  height: 6.8vw;
  border-radius: 50%;
}
@media screen and (max-width: 855px) {
  .community_member > img {
    width: 99px;
    height: 99px;
  }
}
.community_member_txt {
  width: 16vw;
  margin: 0.5vw 1.5vw;
}
@media screen and (max-width: 855px) {
  .community_member_txt {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 12px;
  }
}
.community_member_txt > h3 {
  font-size: 16px;
}
.community_member_txt > p {
  font-size: 12px;
  font-weight: 300;
}

/* ///////////////////////////////////// */
/* ///////////////prices//////////////// */
/* ///////////////////////////////////// */
.prices {
  text-align: center;
  padding: 120px 0;
  display: grid;
  gap: 60px;
}
.prices-contents {
  display: grid;
  gap: 48px;
}
.prices-contents .pricessub {
  font-size: 24px;
  font-weight: 300;
  color: #fff;
}
@media screen and (max-width: 855px) {
  .prices-contents .pricessub {
    font-size: 16px;
  }
}
.prices-contents h2 {
  font-size: 3.47vw; /* 50px */
  color: #fff;
}
@media screen and (max-width: 855px) {
  .prices-contents h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.prices-contents h3 {
  font-size: 16px;
  color: #fff;
}
@media screen and (max-width: 855px) {
  .prices-contents h3 {
    font-size: 11px;
  }
}
.prices-contents .price-tabele {
  display: grid;
  justify-content: center;
  gap: 0px;
}
.prices-contents .price-tabele-row {
  width: 770px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0px;
}
@media screen and (max-width: 855px) {
  .prices-contents .price-tabele-row {
    width: 90vw;
  }
}
.prices-contents .price-tabele-row-cell {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 6px;
  color: #fff;
  gap: 32px;
  border: 1px solid #d5d4d4;
  border-collapse: collapse;
}
@media screen and (max-width: 855px) {
  .prices-contents .price-tabele-row-cell {
    flex-direction: column;
  }
}
.prices-contents .price-tabele-row-cell:first-child {
  font-size: 30px;
  background: linear-gradient(90deg, #262626 0%, #202020 100%);
}
@media screen and (max-width: 855px) {
  .prices-contents .price-tabele-row-cell:first-child {
    font-size: 12px;
  }
}
.prices-contents .price-tabele-row-cell:last-child {
  background-color: transparent;
}
.prices-contents .price-tabele-row-cell .plan-type p:first-child {
  font-size: 30px;
  color: #fff;
  font-weight: 600;
}
@media screen and (max-width: 855px) {
  .prices-contents .price-tabele-row-cell .plan-type p:first-child {
    font-size: 16px;
  }
}
.prices-contents .price-tabele-row-cell .plan-type p:first-child .verry-small {
  font-size: 12px;
}
.prices-contents .price-tabele-row-cell .plan-type p:last-child {
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 855px) {
  .prices-contents .price-tabele-row-cell .plan-type p:last-child {
    font-size: 24px;
  }
}
.prices-contents .price-tabele-row-cell .plan-type p:last-child span {
  font-size: 50%;
}
.prices-contents .price-tabele-row-cell .plan-type p:last-child span small {
  font-size: 50%;
}
@media screen and (max-width: 855px) {
  .prices-contents .price-tabele-row-cell .plan-type p:last-child span small {
    font-size: 10px;
  }
}
.prices-contents .price-tabele-row-cell .plan-info p:first-child {
  font-size: 30px;
  color: #fff;
  font-weight: 600;
}
@media screen and (max-width: 855px) {
  .prices-contents .price-tabele-row-cell .plan-info p:first-child {
    font-size: 16px;
  }
}
.prices-contents .price-tabele-row-cell .plan-info p:first-child .verry-small {
  font-size: 12px;
}
.prices-contents .price-tabele-row-cell .plan-info p:last-child {
  font-size: 13px;
  color: #fff;
  font-weight: 600;
}
.prices-contents .price-tabele-row-cell .plan-info a {
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  line-height: normal;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media screen and (max-width: 855px) {
  .prices-contents .price-tabele-row-cell .plan-info a {
    font-size: 10px;
  }
}
.prices-contents .price-tabele-row-cell .plan-list {
  padding: 0;
  margin: 0;
  text-align: left;
  list-style-position: inside;
}
.prices-contents .price-tabele-row-cell .plan-list p {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}
@media screen and (max-width: 855px) {
  .prices-contents .price-tabele-row-cell .plan-list p {
    font-size: 12px;
  }
}
.prices-contents .price-tabele-row-cell .plan-list li {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 855px) {
  .prices-contents .price-tabele-row-cell .plan-list li {
    font-size: 12px;
  }
}
.prices-contents .price-tabele-row-cell .plan-sentence p {
  font-size: 12px;
  color: #fff;
  text-align: left;
  font-weight: 600;
}
.prices_cv_btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.7vw 4.24vw;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #cf6b2d 0%, #c63724 100%);
}
@media screen and (max-width: 855px) {
  .prices_cv_btn {
    padding: 10px 40px;
  }
}
.prices_cv_btn:hover {
  background: #dcdcd7;
  transition: 1s cubic-bezier(0.65, 0, 0.35, 1);
}
.prices_cv_btn:hover p {
  transition: 1s cubic-bezier(0.65, 0, 0.35, 1);
  color: #000;
}
.prices_cv_btn > p {
  font-size: 18px;
  color: #fff;
}
.prices_cv_btn > svg {
  stroke: #fff;
  width: 10px;
  height: 16px;
  margin-left: 16px;
}

/* ///////////////////////////////////// */
/* ////////////////flows//////////////// */
/* ///////////////////////////////////// */
.flows {
  text-align: center;
  padding: 10vw 7.5vw;
}
.flows > h2 {
  font-size: 3.47vw; /* 50px */
  margin-bottom: 2vw;
  color: #fff;
}
@media screen and (max-width: 855px) {
  .flows > h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.flows > h3 {
  font-weight: 300;
  margin: 40px 0 16px;
  color: #fff;
}
@media screen and (max-width: 855px) {
  .flows > h3 {
    font-size: 12px;
    margin: 16px 0;
  }
}

.flowssub {
  font-size: 24px;
  font-weight: 300;
  color: #fff;
}
@media screen and (max-width: 855px) {
  .flowssub {
    font-size: 16px;
  }
}

.flowsdetail > img {
  width: 70%;
  height: auto;
  margin-top: 3vw;
  margin: 0 auto;
}
@media screen and (max-width: 855px) {
  .flowsdetail > img {
    width: 100%;
  }
}

/* ///////////////////////////////////// */
/* /////////////////FAQ///////////////// */
/* ///////////////////////////////////// */
.faq {
  text-align: center;
  padding: 10vw 7.5vw;
}
@media screen and (max-width: 855px) {
  .faq {
    padding: 15vw 5vw;
  }
}
.faq > h2 {
  font-size: 3.47vw; /* 48px */
  color: #fff;
}
@media screen and (max-width: 855px) {
  .faq > h2 {
    font-size: 20px;
  }
}

.faqsub {
  font-size: 24px;
  font-weight: 300;
  color: #fff;
}
@media screen and (max-width: 855px) {
  .faqsub {
    font-size: 20px;
  }
}

.questions {
  width: 48.6vw;
  max-width: 700px;
  text-align: left;
  padding: 66px 7vw;
  margin: 50px auto 0;
  background: #fff;
}
.questions .question:last-child {
  /* 最後だけ線を消す */
  margin-bottom: 0;
  border-bottom: none;
}
@media screen and (max-width: 855px) {
  .questions {
    width: calc(100% - 40px);
    max-width: none;
    padding: 20px;
    margin: 25px auto 0;
  }
}

.question {
  margin-bottom: 0.7vw;
  border-bottom: 0.5px #bfbfbb dotted;
}
.question div {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.7vw;
}
.question div:nth-child(1)::before {
  content: "Q";
  color: #000;
  font-size: 24px;
  font-weight: 800;
  margin-right: 2.1vw;
}
@media screen and (max-width: 855px) {
  .question div:nth-child(1)::before {
    font-size: 16px;
  }
}
.question div:nth-child(2)::before {
  content: "A";
  color: #000;
  font-size: 24px;
  font-weight: 800;
  margin-right: 2.1vw;
  height: 100%;
}
@media screen and (max-width: 855px) {
  .question div:nth-child(2)::before {
    font-size: 16px;
  }
}
.question p {
  font-size: 16px;
  font-weight: 300;
  color: #000;
}
@media screen and (max-width: 855px) {
  .question p {
    font-size: 12px;
  }
}

/* ///////////////////////////////////// */
/* /////////////concept mov///////////// */
/* ///////////////////////////////////// */
.cm {
  height: 200vh;
  position: relative;
}

.concept_txt {
  width: 100vw;
  height: 100vh;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.playback_box {
  text-align: center;
}
.playback_box > h2 {
  font-size: 3.47vw; /* 50px */
  color: #fff;
  margin-bottom: 60px;
}
@media screen and (max-width: 855px) {
  .playback_box > h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 855px) {
  .playback_box svg {
    width: 80px;
  }
}
.playback_box > p {
  font-size: 40px;
  color: #fff;
  margin-top: 20px;
}
@media screen and (max-width: 855px) {
  .playback_box > p {
    font-size: 20px;
    margin-top: 10px;
  }
}

/* mov大きくなって留まる */
.concept_mov {
  display: flex;
  justify-content: center;
  position: sticky;
  top: 0;
  overflow: hidden;
  scale: 0.8;
  filter: brightness(1);
  transition: all 0.3s ease;
}
.concept_mov_adjust {
  scale: 1;
  filter: brightness(0.4);
}

.conv {
  height: 100vh;
  max-width: none;
}
.conv_h {
  height: auto;
  overflow: hidden;
}

.youtube_modal {
  width: 72vw;
  height: -moz-fit-content;
  height: fit-content;
  background: none;
  padding: 0;
}
.youtube_modal iframe {
  width: 72vw;
  height: 40.5vw;
}

/* ///////////////////////////////////// */
/* //////////bottom cv section////////// */
/* ///////////////////////////////////// */
.cv_section {
  display: flex;
  justify-content: center;
  margin: 6.4vw 0;
}
@media screen and (max-width: 855px) {
  .cv_section {
    display: grid;
  }
}
.cv_section a {
  margin: 0 1.3vw;
}
@media screen and (max-width: 855px) {
  .cv_section a {
    margin: 2vw auto;
  }
}
.cv_section div {
  width: 36.8vw; /* 530px */
  padding: 2.5vw 0;
  border-radius: 10px;
  display: grid;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 855px) {
  .cv_section div {
    width: 96vw;
    text-align: center;
  }
}
.cv_section div:hover {
  box-sizing: border-box;
  border-radius: 6px;
  border: 2px solid #fff;
  transition: 0.5s border;
}

.cv_banner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  width: calc(73.6vw + 20px);
  margin: 5vw auto;
}
.cv_banner a {
  width: -moz-fit-content;
  width: fit-content;
}
.cv_banner a:hover img {
  border: 1px solid #fff;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.cv_banner img {
  width: 36.8vw;
  height: auto;
}
.cv_banner_1 {
  grid-column: 1; /* 1行目1列目 */
}
.cv_banner_2 {
  grid-column: 2; /* 1行目1列目 */
}
.cv_banner_3 {
  grid-column: 1/-1; /* 2行目は1カラムに広げる */
  justify-self: center; /* 2行目のアイテムを中央に寄せる */
}
@media screen and (max-width: 855px) {
  .cv_banner {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    width: 90vw;
    margin: 10vw auto;
  }
  .cv_banner img {
    width: 96vw;
    height: auto;
  }
}

.cv_section p {
  font-size: 2.22vw; /* 32px */
  color: #fff;
}
@media screen and (max-width: 855px) {
  .cv_section p {
    font-size: 20px;
  }
}
.cv_section span {
  font-weight: 300;
}
@media screen and (max-width: 855px) {
  .cv_section span {
    font-size: 12px;
  }
}

.oita_cv {
  background: url(../img/oita_cv.png) no-repeat;
}

.entry_cv {
  background: url(../img/entry_cv.png) no-repeat;
}

.bottom_cv_section_wrap {
  width: 100vw;
  padding: 168px 0;
  background-color: #dfdfda;
}
@media screen and (max-width: 855px) {
  .bottom_cv_section_wrap {
    padding: 120px 0;
  }
}

.bottom_cv_section {
  width: 69.4vw; /* 1000px */
  margin: 6.94vw auto 5.56vw; /* 100px auto 80px */
  text-align: center;
  display: grid;
  justify-items: center;
}
@media screen and (max-width: 855px) {
  .bottom_cv_section {
    width: 90vw;
    margin: 64px auto 30px;
  }
}
.bottom_cv_section * {
  color: #000;
}
.bottom_cv_section > h2 {
  font-size: 28px;
  line-height: 2;
  border: solid;
  border-width: 1px 0;
  margin: 50px 0 30px;
  width: 100%;
}
@media screen and (max-width: 855px) {
  .bottom_cv_section > h2 {
    font-size: 20px;
    padding-bottom: 8px;
    margin: 24px 0;
  }
}
.bottom_cv_section > h2 > span {
  font-size: 30px;
  color: #fff;
  background: #000;
  padding: 8px 10px;
  margin-left: 16px;
}
@media screen and (max-width: 855px) {
  .bottom_cv_section > h2 > span {
    font-size: 20px;
    padding: 10px;
    margin-right: 16px;
  }
}
.bottom_cv_section > h2 > small {
  font-size: 71%;
}
.bottom_cv_section > p {
  font-weight: 300;
  text-align: left;
}
@media screen and (max-width: 855px) {
  .bottom_cv_section > a {
    width: 100%;
  }
}
.bottom_cv_section > a > p {
  font-size: 36px;
  color: #fff;
  background: #000;
  padding: 12px 45px;
  transition: 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  -webkit-transition: 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
@media screen and (max-width: 855px) {
  .bottom_cv_section > a > p {
    font-size: 20px;
    text-align: center;
    width: 100%;
    padding: 12px 0;
  }
}
.bottom_cv_section > a > p:hover {
  border: 1px solid;
  color: #000;
  background: #dcdcd7;
  transition: 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  -webkit-transition: 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.freelectures {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}
@media screen and (max-width: 855px) {
  .freelectures {
    display: grid;
  }
}
.freelectures img {
  width: 350px;
  height: auto;
  margin: 0 6px;
}
@media screen and (max-width: 855px) {
  .freelectures img {
    width: 100%;
    margin: 0 0 12px;
  }
}
.freelectures img:hover {
  filter: contrast(0.7);
  transition: 0.5s opacity;
}

.oneday_workshop {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}
.oneday_workshop img {
  height: auto;
  margin: 0 6px;
}
.oneday_workshop img:hover {
  filter: contrast(0.7);
  transition: 0.5s opacity;
}

.line_cv_section {
  width: 78.8vw;
  height: auto;
  margin: 0 auto 5.56vw;
}
@media screen and (max-width: 855px) {
  .line_cv_section {
    width: 96vw;
  }
}
.line_cv_section:hover {
  box-sizing: border-box;
  border-radius: 6px;
  border: 2px solid #fff;
  transition: 0.5s border;
}

/* ///////////////////////////////////// */
/* //////////////sticky cv////////////// */
/* ///////////////////////////////////// */
.cta {
  z-index: 100; /* 最前面 */
  position: sticky;
  bottom: 2vw;
  right: 2vw;
  display: grid;
  justify-content: end;
  row-gap: 12px;
  padding: 0 0.5vw;
  /* 相談窓口リンクのスタイル */
  /* CTAラッパースタイル */
}
@media screen and (max-width: 855px) {
  .cta {
    bottom: 8vw;
    justify-content: center;
  }
}
@media screen and (max-width: 480px) {
  .cta {
    row-gap: 10px;
  }
}
.cta .consultation-link {
  display: flex;
  justify-content: end;
}
.cta .consultation-link a {
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 12px;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.cta .consultation-link a:hover {
  background: rgb(255, 255, 255);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 855px) {
  .cta .consultation-link a {
    font-size: 11px;
    padding: 5px 10px;
  }
}
.cta .consultation-link p {
  font-size: 12px;
  color: #666;
  margin: 0;
  font-weight: 500;
}
.cta .cta-link {
  display: flex;
  -moz-column-gap: 1.5vw;
       column-gap: 1.5vw;
}
.cta .cta-link a div {
  position: relative;
  width: 184px;
}
.cta .cta-link a img {
  width: 100%;
}
.cta .cta-link a p {
  font-size: 16px;
  transition: all 0.3s ease;
  z-index: 20;
}
@media screen and (max-width: 855px) {
  .cta .cta-link a p {
    width: 100%;
    font-size: 14px;
  }
}
.cta .cta-link .entry_btn,
.cta .cta-link .trial_btn {
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 855px) {
  .cta .cta-link .entry_btn p,
  .cta .cta-link .trial_btn p {
    color: #000;
    padding: 12px 0;
  }
}
.cta .cta-link .entry_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.cta .cta-link .entry_btn p {
  color: #000;
  padding: 0 30px 0 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 855px) {
  .cta .cta-link .entry_btn p {
    padding: 10px 0;
  }
}
@media screen and (max-width: 855px) {
  .cta .cta-link .entry_btn:hover {
    background: #000;
    transition: all 0.3s ease;
  }
  .cta .cta-link .entry_btn:hover::before {
    background: linear-gradient(-90deg, #000 65%, transparent 70%);
    transition: all 0.3s ease;
  }
  .cta .cta-link .entry_btn:hover p {
    color: #fff;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 855px) {
  .cta .cta-link .cv_1st {
    width: 90vw;
  }
}
.cta .cta-link .cv_1st p {
  color: #000;
}
.cta .cta-link .cv_1st::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #e7e7e2 43%);
  z-index: 11;
}
@media screen and (max-width: 855px) {
  .cta .cta-link .cv_1st::before {
    background: linear-gradient(90deg, #e7e7e2 0%, #e7e7e2 43%);
  }
}
.cta .cta-link .cv_1st > p {
  margin-left: -50px;
}
@media screen and (max-width: 855px) {
  .cta .cta-link .cv_1st > p {
    margin: 0px;
  }
}
@media screen and (max-width: 855px) {
  .cta .cta-link .cv_2nd {
    width: 190px;
  }
}
.cta .cta-link .cv_2nd p {
  color: #fff;
  padding: 0 80px;
}
@media screen and (max-width: 855px) {
  .cta .cta-link .cv_2nd p {
    padding: 10px 0px;
  }
}
.cta .cta-link .cv_2nd::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #cf6b2d 0%, #c63724 100%);
  z-index: 11;
}

/* 動画全体のコンテナ */
.videos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  text-align: center;
  padding: 2vw 7.5vw;
}

/* 各動画のラッパー：aspect-ratioで16:9を維持 */
.video {
  flex: 1 1 300px;
  max-width: 560px;
  aspect-ratio: 16/9;
  /* 高さは自動計算されるのでpadding-bottomのhackは不要 */
  background: #000; /* iframeが読み込まれる前の背景用 */
  /* PC表示（画面幅768px以上）では2カラムレイアウト */
}
.video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
@media (min-width: 768px) {
  .video {
    /* 親の内側の幅からgapを差し引いた値の半分 */
    flex: 0 0 calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
  }
}

@media screen and (min-width: 856px) {
  .cv_1st:hover,
  .cv_2nd:hover {
    filter: brightness(1.2);
    transition: all 0.3s ease;
  }
}
.trial_btn {
  background: linear-gradient(90deg, #cf6b2d 0%, #c63724 100%);
}
.trial_btn p {
  color: #fff;
  padding: 0 5.55vw; /*80px*/
  transition: all 0.3s ease;
}
@media screen and (min-width: 856px) {
  .trial_btn:hover {
    background: #fff;
    transition: all 0.3s ease;
  }
  .trial_btn:hover p {
    color: #c63724;
    background: -webkit-linear-gradient(90deg, #cf6b2d 0%, #c63724 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
  }
}

/* ///////////////////////////////////// */
/* ///////////////footer/////////////// */
/* ///////////////////////////////////// */
footer {
  background: #dcdcd7;
  margin-top: 1vw;
}
footer a {
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  color: #000;
}
footer a:hover {
  color: #555;
  transition-duration: 0.3s;
  text-decoration: underline;
}
footer ul {
  padding: 30px 0 80px;
  margin: 0px auto;
  word-break: auto-phrase;
  list-style: none;
}
@media screen and (max-width: 855px) {
  footer ul {
    padding: 10px 0 20px;
  }
}
footer li {
  display: inline;
  margin: 10px;
}
@media screen and (max-width: 855px) {
  footer li {
    display: block;
    margin: 16px 0;
  }
}

.foot_p1 {
  font-size: 13px;
  font-weight: 300;
}

.foot_p2 {
  font-size: 11px;
  font-weight: 300;
  padding-top: 30px;
}

.footer_wrap {
  width: 80%;
  margin: 0 auto;
  padding: 50px 0 100px;
  text-align: center;
}
@media screen and (max-width: 855px) {
  .footer_wrap {
    width: 90%;
    padding: 50px 0 100px;
    text-align: left;
  }
}

.foot_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}
@media screen and (max-width: 855px) {
  .foot_box {
    justify-content: space-around;
    gap: 16px;
  }
}

.box1 {
  border: 1px solid #000;
  padding: 30px 90px;
  margin: 20px;
}
@media screen and (max-width: 321px) {
  .box1 {
    padding: 10px 50px;
  }
}
.box1:hover {
  border: 1px solid #000;
  padding: 30px 90px;
  background-color: #000;
  margin: 20px;
}
@media screen and (max-width: 321px) {
  .box1:hover {
    padding: 10px 50px;
  }
}
@media screen and (max-width: 855px) {
  .box1 {
    padding: 10px 60px;
    margin: 0;
  }
  .box1:hover {
    padding: 10px 60px;
    margin: 0;
  }
}

@media screen and (min-width: 856px) {
  .pc {
    display: block;
  }
}
@media screen and (max-width: 855px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 856px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 855px) {
  .sp {
    display: block;
  }
}

@media screen and (min-width: 856px) {
  .trial_btn.pc {
    display: flex;
    align-items: center;
  }
}/*# sourceMappingURL=course.css.map */