@charset "UTF-8";
/*-----------------------------------------
    color
-----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,700;1,14..32,700&family=Lora&family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@700&display=swap");
/*-----------------------------------------
    メディアクエリ
-----------------------------------------*/
/*-----------------------------------------

リセット

----------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  font-size: 62.5%;
}

@media screen and (min-width: 768px) and (max-width: 1440px) {
  html {
    font-size: 0.625vw;
  }
}
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

/*-----------------------------------------

全体指定

----------------------------------------*/
.inner {
  width: 75%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .inner {
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  font-weight: 400;
  background: #000;
  color: #fff;
}

img {
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

@media (min-width: 767px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
li {
  list-style: none;
}

dt,
dd {
  margin: 0;
}

/*-----------------------------------------
    br
-----------------------------------------*/
.sp-only {
  display: none;
}
@media (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

/*-----------------------------------------
    btn
-----------------------------------------*/
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(13px, 1.2vw, 16px);
  font-family: "Noto Serif JP", serif;
  color: #fff;
  text-align: center;
  text-decoration: none;
  width: clamp(175px, 17vw, 240px);
  padding: 1.2rem 0;
  background: #a83200;
  border-radius: 5px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease 0s;
}
.btn:hover {
  background: #cb5725;
}

.btn__img {
  display: inline-block;
  line-height: 1;
}
.btn__img img {
  margin-left: 1.6rem;
  width: 10px;
}

.matome-btn {
  text-align: center;
  margin-top: 110px;
}

.matome-btn__link {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  padding: 23px 40px;
  min-width: 421px;
  color: #fff;
  background-color: #a83200;
}

@media (max-width: 767px) {
  .matome-btn__link {
    min-width: initial;
    width: 100%;
    padding: 10px;
  }
}

.matome-btn__link span {
  display: block;
  padding-right: 36px;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .matome-btn__link span {
    padding-right: 0;
  }
}

.matome-btn__link span::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  width: 16px;
  height: auto;
  aspect-ratio: 16/19;
  transform: translateY(-50%);
  background-image: url(../img/arrow--matome-btn.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
/*-----------------------------------------
    to-top
-----------------------------------------*/
.to-top {
  position: fixed;
  right: 2rem;
  bottom: 3.8rem;
  z-index: 20;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .to-top {
    right: 1rem;
    bottom: 9.6rem;
  }
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}
.to-top .to-top__icon img {
  width: 5.2em;
  height: 5.2rem;
  transition: all 0.3s ease 0s;
}
.to-top .to-top__icon img:hover {
  opacity: 0.7;
}

/*-----------------------------------------
    header
-----------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  background: rgba(0, 0, 0, 0.9);
}
@media (max-width: 960px) {
  .header {
    height: 60px;
  }
}
@media (max-width: 767px) {
  .header {
    height: auto;
    padding: 0 2rem;
  }
}
.header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  width: 18rem;
}
@media (max-width: 767px) {
  .header__logo img {
    width: 12rem;
  }
}

.header-nav {
  display: flex;
  align-items: center;
}
@media (max-width: 960px) {
  .header-nav {
    display: none;
  }
}
.header-nav li {
  font-size: clamp(14px, 1.3vw, 16px);
  letter-spacing: 0.1rem;
  font-weight: 500;
}
.header-nav a {
  display: block;
  padding: 0 2.5rem;
  position: relative;
}
.header-nav a.is-active::after {
  content: "";
  position: absolute;
  top: -1rem;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translateX(-50%) rotate(-45deg);
  background: #a48a30;
  transition: all 0.3s ease 0s;
  opacity: 1;
}
.header-nav a:not(.is-active)::after {
  content: "";
  position: absolute;
  top: -1rem;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translateX(-50%) rotate(-45deg);
  background: #a48a30;
  opacity: 0;
  transition: all 0.6s ease 0s;
}
.header-nav a:not(.is-active):hover::after {
  opacity: 1;
}

.header__btns {
  display: flex;
  align-items: center;
}

.header__button:last-child {
  margin-left: 2rem;
}
@media (max-width: 960px) {
  .header__button {
    display: none;
  }
}

.header__btn--line {
  background: #a48a30;
}

.header__btn--line:hover {
  background: #e5c44d;
  color: #000;
}

/*-----------------------------------------
    //drawer
-----------------------------------------*/
.drawer__icon {
  position: fixed;
  top: 1.7rem;
  right: 2.1rem;
  z-index: 100;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  display: none;
}
@media (max-width: 960px) {
  .drawer__icon {
    display: block;
  }
}
.drawer__icon.is-active span:nth-child(1) {
  background: #fff;
  transform: rotate(-45deg);
  top: 1.5rem;
}
.drawer__icon.is-active span:nth-child(2) {
  display: none;
}
.drawer__icon.is-active span:nth-child(3) {
  background: #fff;
  transform: rotate(45deg);
  top: 1.5rem;
}

.drawer__bars {
  width: 3rem;
  height: 3rem;
  position: relative;
  cursor: pointer;
}
.drawer__bars span {
  width: 100%;
  height: 0.2rem;
  background: #a48a30;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease 0s;
}
.drawer__bars span:nth-child(1) {
  top: 0.5rem;
}
.drawer__bars span:nth-child(2) {
  top: 1.2rem;
}
.drawer__bars span:nth-child(3) {
  top: 1.9rem;
}

.drawer__content {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: #000;
  padding: 5rem 2rem;
  z-index: 99;
  display: none;
}

.drawer-nav li {
  font-size: clamp(16px, 1.6vw, 20px);
  letter-spacing: 0.2rem;
}
.drawer-nav a {
  display: block;
  padding: 2rem 0;
  border-bottom: 1px solid #fff;
}

.drawer__btns {
  margin-top: 4rem;
}

.drawer__button:last-child {
  margin-top: 2rem;
}

.drawer__btn {
  width: 400px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  border-radius: 2px;
}

.drawer__btn--line {
  background: #a48a30;
  width: 400px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  border-radius: 2px;
}

.drawer__btn--line:hover {
  background: #e5c44d;
  color: #000;
}

/*-----------------------------------------
    footer
-----------------------------------------*/
.footer {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__copy {
  text-align: center;
  font-size: 12px;
}

/*-----------------------------------------
    section__title
-----------------------------------------*/
.section__title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(24px, 3vw, 30px);
  text-align: center;
  color: #a48a30;
}

/*-----------------------------------------
    mv
-----------------------------------------*/
.mv {
  background: url(../img/fv-bg.jpg) no-repeat center center/cover;
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1440/913;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .mv {
    aspect-ratio: 375/643;
    margin-top: 60px;
  }
}
.mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.93);
}

.mv-content {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
}

.mv-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv__ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.mv__ul li {
  border: 1px solid #a48a30;
  width: clamp(150px, 20vw, 220px);
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(13px, 1.6vw, 18px);
  letter-spacing: 0.1rem;
  position: relative;
  margin-left: 5px;
  margin-right: 5px;
}
.mv__ul li::after {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translateX(-50%) rotate(-45deg);
  background: #a48a30;
}
@media (max-width: 767px) {
  .mv__ul li {
    margin-top: 1rem;
  }
}

.mv__title {
  margin-top: 3rem;
  width: 33.3vw;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .mv__title {
    width: 85vw;
  }
}
.mv__lead {
  width: clamp(400px, 30vw, 450px);
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
  padding: 0.2rem 0;
  position: relative;
}
@media (max-width: 767px) {
  .mv__lead {
    width: 100%;
    overflow: hidden;
  }
}
.mv__lead p {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(16px, 2vw, 24px);
  letter-spacing: 0.1rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
.mv__lead::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100rem;
  height: 8rem;
  background: url(../img/fv-leadDeco.png) no-repeat center center/contain;
  z-index: 1;
}
@media (max-width: 767px) {
  .mv__lead::before {
    width: 120%;
  }
}

.mv__text {
  margin-top: 3rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.2rem;
  font-size: clamp(16px, 1.3vw, 18px);
  text-align: center;
}
.mv__text .ac {
  color: #a48a30;
}

/*-----------------------------------------
    cta
-----------------------------------------*/
.cta {
  background: url(../img/cta-bg.jpg) no-repeat center center/cover;
  position: relative;
  padding: 3.6rem 0 7rem;
}
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(78, 78, 78, 0.9);
}
@media (max-width: 767px) {
  .cta {
    padding: 3.6rem 0 3rem;
  }
}

.cta__inner {
  position: relative;
  z-index: 2;
}

.cta__title {
  font-size: clamp(30px, 6vw, 40px);
  font-family: "Noto Serif JP", serif;
  text-align: center;
  letter-spacing: 0.1rem;
}
.cta__title span {
  font-family: "Lora", serif;
  font-size: clamp(40px, 6vw, 50px);
}

.cta__lead {
  margin-top: -1rem;
  width: clamp(280px, 6vw, 330px);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1rem;
  font-size: clamp(16px, 1.3vw, 18px);
  position: relative;
}
.cta__lead::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 60px;
  height: 1px;
  background: #a48a30;
}
.cta__lead::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 60px;
  height: 1px;
  background: #a48a30;
}

.cta__content {
  margin-top: 6rem;
  margin-bottom: 7rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta__content::before {
  content: "";
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 130rem;
  height: 135%;
  background: url(../img/cta-contentBg.png) no-repeat top center/contain;
}
@media (max-width: 767px) {
  .cta__content::before {
    width: 100%;
    background: url(../img/cta-contentBg-sp.png) no-repeat top center/contain;
  }
}

@media screen and (max-width: 480px) {
  .cta__content::before {
    background: url(../img/cta-contentBg-spMini.png) no-repeat top
      center/contain;
    height: 160%;
  }
}
.cta__content2 {
  margin-top: 4rem;
  margin-bottom: 0;
}
.cta__content2::before {
  display: none;
}

.cta__content--title {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: clamp(18px, 1.6vw, 22px);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1rem;
}
.cta__content--title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 80%;
  height: 1px;
  background: #a48a30;
}

.cta__content--title2 {
  position: static;
  transform: translateX(0);
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: 0.1rem;
}
.cta__content--title2::before {
  display: none;
}

.cta__content--text {
  margin-top: 3rem;
  letter-spacing: 0.1rem;
  font-size: clamp(16px, 1.3vw, 18px);
  color: #fff;
  text-align: center;
}
.cta__content--text .bold {
  font-weight: 700;
}
.cta__content--text .big {
  font-size: clamp(18px, 1.3vw, 20px);
  font-weight: 700;
}

.cta__content--ul {
  padding-top: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cta__content--ul {
    display: block;
  }
}
.cta__content--ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(14px, 1.3vw, 16px);
  letter-spacing: 0.1rem;
  font-weight: 700;
  position: relative;
}
@media (max-width: 767px) {
  .cta__content--ul li {
    text-align: center;
  }
}
.cta__content--ul li:not(:first-child) {
  margin-left: 2rem;
}
@media (max-width: 767px) {
  .cta__content--ul li:not(:first-child) {
    margin-left: 0;
    margin-top: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .cta__content--ul {
    padding-top: 2rem;
  }
}
.li__img {
  width: 15px;
  margin-right: 5px;
}

.cta__button {
  margin-top: 3rem;
  text-align: center;
  justify-content: center;
  display: flex;
}
@media (max-width: 767px) {
  .cta__button {
    margin-top: 2rem;
  }
}

.cta__btn {
  width: clamp(400px, 30vw, 500px);
  height: 80px;
  line-height: 80px;
  padding: 0;
  font-size: clamp(18px, 2vw, 24px);
}
@media (max-width: 767px) {
  .cta__btn {
    height: 60px;
    line-height: 60px;
  }
}
.cta__btn img {
  width: 20px;
}
@media (max-width: 767px) {
  .cta__btn img {
    width: 15px;
  }
}

@media screen and (max-width: 480px) {
  .cta__btn {
    width: 90%;
    height: 50px;
    line-height: 50px;
  }
}
/*-----------------------------------------
    about
-----------------------------------------*/
.about {
  padding: 10rem 0 5rem;
  position: relative;
}
@media (max-width: 767px) {
  .about {
    padding: 5rem 0 3rem;
  }
}
.about::before {
  content: "";
  position: absolute;
  top: 8rem;
  left: -4rem;
  transform: rotate(135deg);
  width: 22.7rem;
  height: 1px;
  background: #a48a30;
}
@media (max-width: 767px) {
  .about::before {
    top: 5rem;
    left: -6rem;
    width: 14.3rem;
  }
}

.about__inner {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}
@media (max-width: 767px) {
  .about__inner {
    max-width: 100%;
  }
}

.about__content {
  margin-top: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .about__content {
    margin-top: 4rem;
    display: block;
  }
}

.about__content--left {
  width: 35vw;
}
@media (max-width: 767px) {
  .about__content--left {
    width: 100%;
  }
}

.about__content--right {
  width: 42vw;
  margin-left: 4rem;
}
@media (max-width: 767px) {
  .about__content--right {
    width: 100%;
    margin-top: 2rem;
    margin-left: 0;
  }
}

.about__content--title {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1rem;
  font-size: clamp(20px, 2vw, 24px);
}

.about__content--text {
  margin-top: 3rem;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.8;
}

/*-----------------------------------------
    message
-----------------------------------------*/
.message {
  padding: 5rem 0 10rem;
}
@media (max-width: 767px) {
  .message {
    padding: 3rem 0 5rem;
  }
}

.message__inner {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}
@media (max-width: 767px) {
  .message__inner {
    max-width: 100%;
  }
}

.message__content {
  margin-top: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .message__content {
    margin-top: 4rem;
    display: block;
  }
}

.message__content--left {
  width: 42vw;
}
@media (max-width: 767px) {
  .message__content--left {
    width: 100%;
  }
}

.message__title {
  text-align: left;
}

.message__content--text {
  margin-top: 3rem;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.8;
}

.message__content--right {
  width: 35vw;
  margin-left: 4rem;
}
@media (max-width: 767px) {
  .message__content--right {
    width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }
}

/*-----------------------------------------
    overview
-----------------------------------------*/
.overview {
  padding: 5rem 0 7.5rem;
}
@media (max-width: 767px) {
  .overview {
    padding: 2.5rem 0 3.5rem;
  }
}
.overview__inner {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
  background-color: #1B1B1B;
  padding: 8rem 1.5rem;
}
@media (max-width: 767px) {
  .overview__inner {
    max-width: 100%;
    padding: 5rem 1.5rem;
  }
}

.overview__title {
  color: #ECC21A;
}

.overview__timetable-wrap {
  max-width: 320px;
  width: 100%;
  margin: 3.0rem auto 0;
}

.overview__timetable-items {
  margin-top: 1.5rem;
  padding: 0 2.0rem;
}

.overview__timetable-item {
  display: flex;
  align-items: stretch;
  width: 100%;
  gap:10px;
}

.overview__timetable-item:not(:first-child){
  margin-top: 0.5rem;
}

.timetable-item__time {
  width: 100px;
  background-color: #000;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 1.0rem 2.0rem;
  border-bottom: 1px solid #000;
}

.timetable-item__value {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 1.0rem 2.0rem;
  border-bottom: 1px solid #424242;
  flex-grow: 1;
  box-sizing: border-box;
}

.overview__note-wrap{
  padding: 0 2.0rem;
}

.overview__note {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 2.0rem 0 1.0rem;
  border-bottom: 1px solid #424242;
}

.overview__note span{
  background: linear-gradient(90deg, rgba(255,235,64,1) 0%, rgba(223,154,0,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.overview__networking-event {
  display: flex;
  align-items: stretch;
  margin-top: 2.0rem;
}

.networking-event__time {
  width: 50%;
  background-color: #000;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 1.0rem;
}

.networking-event__value {
  width: 50%;
  background-color: #2E2E2E;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 1.0rem;
}

@media (max-width: 375px) {
  .timetable-item__time {
    font-size: 1.5rem;
    padding: 1.0rem 1.5rem;
  }
  .timetable-item__value {
    font-size: 1.5rem;
    padding: 1.0rem 1.5rem;
  }
  .overview__note {
    font-size: 1.3rem;
  }
  .networking-event__time {
    font-size: 1.5rem;
  }
  .networking-event__value {
    font-size: 1.5rem;
  }
}

/*-----------------------------------------
    schedule
-----------------------------------------*/
.schedule {
  padding: 5rem 0 10rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .schedule {
    padding: 3rem 0 5rem;
  }
}
.schedule::after {
  content: "";
  position: absolute;
  bottom: 8rem;
  right: -4rem;
  transform: rotate(135deg);
  width: 23rem;
  height: 1px;
  background: #a48a30;
}
@media (max-width: 767px) {
  .schedule::after {
    bottom: 4rem;
    right: -2rem;
    transform: rotate(135deg);
    width: 13rem;
  }
}

.schedule__inner {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}
@media (max-width: 767px) {
  .schedule__inner {
    max-width: 100%;
  }
}

.schedule__content {
  background: #1b1b1b;
  padding: 5rem 0 10rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .schedule__content {
    padding: 3rem 0 5rem;
  }
}
.schedule__content::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1199/481;
  background-image: url(../img/schedule__content-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.schedule__content-head {
}

.schedule-content-head__sub-catch {
  font-family: serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  color: #ecc21a;
}
@media (max-width: 767px) {
  .schedule-content-head__sub-catch {
    font-size: min(calc(24 / 320 * 100vw), 32px);
  }
}

.schedule-content-head__catch {
  width: 360px;
  height: auto;
  aspect-ratio: 360/72;
  margin-inline: auto;
  margin-top: 7px;
}

@media (max-width: 767px) {
  .schedule-content-head__catch {
    width: 90%;
  }
}

.schedule-content-head__catch img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.schedule__content-head__text {
  font-family: serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.013em;
  text-align: center;
  color: #fff;
  margin-top: 27px;
}

@media (max-width: 767px) {
  .schedule__content-head__text {
    font-size: min(calc(24 / 320 * 100vw), 32px);
  }
}

.schedule__content-head__text span {
  color: #eec51d;
}

.schedule__content--inner {
  width: 1100px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.schedule__content--text {
  margin-top: 6rem;
  font-size: clamp(16px, 1.3vw, 18px);
  text-align: center;
  background: #707070;
  padding: 3rem 2rem;
}

@media (max-width: 767px) {
  .schedule__content--text {
    margin-top: 3rem;
  }
}

.schedule__content--text .text-sm {
  font-size: clamp(14px, 1vw, 16px);
}

.schedule__content--day {
  background: #000;
  margin-top: 2rem;
}

.schedule__content--day-inner {
  display: flex;
  align-items: start;
  justify-content: center;
  padding: 6rem 3rem;
}

@media screen and (max-width: 480px) {
  .schedule__content--day-inner {
    display: block;
    padding: 4rem 3rem;
  }
}
.schedule__content--deco01 {
  position: relative;
}
.schedule__content--deco01::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 20px;
  height: 20px;
  background: transparent;
  border-top: 1px solid #a48a30;
  border-left: 1px solid #a48a30;
}
@media (max-width: 767px) {
  .schedule__content--deco01::before {
    top: 10px;
    left: 10px;
    width: 10px;
    height: 10px;
  }
}
.schedule__content--deco01::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  background: transparent;
  border-top: 1px solid #a48a30;
  border-right: 1px solid #a48a30;
}
@media (max-width: 767px) {
  .schedule__content--deco01::after {
    top: 10px;
    right: 10px;
    width: 10px;
    height: 10px;
  }
}

.schedule__content--deco02 {
  position: relative;
}
.schedule__content--deco02::before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 20px;
  height: 20px;
  background: transparent;
  border-bottom: 1px solid #a48a30;
  border-left: 1px solid #a48a30;
}
@media (max-width: 767px) {
  .schedule__content--deco02::before {
    bottom: 10px;
    left: 10px;
    width: 10px;
    height: 10px;
  }
}
.schedule__content--deco02::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  background: transparent;
  border-bottom: 1px solid #a48a30;
  border-right: 1px solid #a48a30;
}
@media (max-width: 767px) {
  .schedule__content--deco02::after {
    bottom: 10px;
    right: 10px;
    width: 10px;
    height: 10px;
  }
}

.schedule__content--ul:last-child {
  margin-left: 15rem;
}
@media (max-width: 767px) {
  .schedule__content--ul:last-child {
    margin-left: 4rem;
  }
}
.schedule__content--ul li {
  font-size: clamp(16px, 1.1vw, 18px);
  letter-spacing: 0.1rem;
  padding: 0.8rem 0;
}
.schedule__content--ul a {
  text-decoration: underline;
  transition: all 0.3s ease 0s;
}
.schedule__content--ul a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 480px) {
  .schedule__content--ul:last-child {
    margin-left: 0;
  }
  .schedule__content--ul li {
    text-align: center;
  }
}
.schedule__schedule {
  margin-top: 7rem;
}
@media (max-width: 767px) {
  .schedule__schedule {
    margin-top: 5rem;
  }
}

.schedule__item {
  background-color: #fff;
  padding: 40px 70px 60px;
}

@media (max-width: 767px) {
  .schedule__item {
    padding: calc(20 / 768 * 100vw);
  }
}

.schedule__item:not(:first-child) {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .schedule__item:not(:first-child) {
    margin-top: 6rem;
  }
}

.schedule__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid #c5c5c5;
  padding-top: 2rem;
  /* border-top: 2px solid #a48a30; */
}
.schedule__meta--num {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #a83200;
  font-family: serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.1rem;
  width: 69px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.schedule__meta--day {
  font-family: serif;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0.1rem;
  color: #000;
  text-align: center;
}
@media (max-width: 767px) {
  .schedule__meta--day {
    font-size: 24px;
    margin-left: 0;
  }
}
.schedule__meta--day-special {
  display: inline-block;
}
.schedule__meta--day span {
  font-size: 22px;
}
.schedule__meta--place {
  width: 100%;
  font-size: clamp(14px, 2vw, 22px);
  font-weight: 900;
  letter-spacing: 0.1rem;
  color: #000;
  text-align: center;
}
.schedule__body {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.jc-center {
  justify-content: center;
}

.gap-20 {
  gap: 40px;
}

@media (max-width: 767px) {
  .schedule__body {
    display: block;
  }
}
.schedule__body--item {
  margin-top: 1.5rem;
  height: 295px;
  width: 300px;
  display: flex;
  flex-direction: column;
}

.schedule__body--item.schedule__body--item--sm{
  width: 256px;
}
.schedule__body--item.schedule__body--item--lg{
  width: 388px;
}
.schedule__body--item.schedule__body--item--2col{
  width: calc(480px - 24px);
}

@media (max-width: 1100px) {
  .schedule__body--item {
    height: 260px;
  }
}

@media (max-width: 767px) {
  .schedule__body--item {
    width: 100%;
    height: auto;
    margin-top: 2.5rem;
  }
  .schedule__body--item.schedule__body--item--sm{
    width: 100%;
  }
  .schedule__body--item.schedule__body--item--lg{
    width: 100%;
  }
  .schedule__body--item.schedule__body--item--2col{
    width: 100%;
  }
}
.schedule__body--item-time {
  position: relative;
  font-family: serif;
  background-image: linear-gradient(
    120deg,
    rgba(205, 177, 85, 1) 0%,
    rgba(125, 95, 11, 1) 100%
  );
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  padding: 1rem 0;
}
.schedule__body--item-time span {
  font-size: 33px;
}

.schedule__body--item-special{
  position: absolute;
  content: '';
  display: inline-block;
  background-color: #A83200;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 18px!important;
  font-weight: bold;
  width: 80%;
  left:50%;
  top:-20px;
  transform: translateX(-50%);
  padding: 3px 10px 5px;
  border-radius: 50px;
}

@media (max-width: 767px) {
  .schedule__body--item-time {
    /* font-size: clamp(18px, 1.3vw, 20px); */
  }
  .schedule__body--item-time.schedule__body--item-time--special{
    margin-top: 30px;
  }
  .schedule__body--item-special{
    font-size: 16px!important;
    font-weight: bold;
    width: 65%;
    left:50%;
    top:-40px;
  }
}
.schedule__body--item-profile {
  margin-top: 1.2rem;
  display: flex;
  align-items: start;
}
.schedule__body--item-profile-left {
  width: 130px;
}
.schedule__body--profile-right {
  width: 150px;
  margin-left: 2rem;
}
@media (max-width: 767px) {
  .schedule__body--profile-right {
    width: 100%;
  }
}
.schedule__body--profile-text {
  color: #000;
  font-size: clamp(13px, 1.1vw, 14px);
  letter-spacing: 0.1rem;
}
@media (max-width: 767px) {
  .schedule__body--profile-text {
    font-size: clamp(13px, 1.1vw, 16px);
  }
}
.schedule__body--profile-tag {
  margin-top: 1rem;
  display: inline-block;
  background: #a83200;
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  padding: 0.1rem;
  align-self: flex-end;
}
@media (max-width: 767px) {
  .schedule__body--profile-tag {
    font-size: clamp(10px, 1.3vw, 12px);
  }
}

.schedule__body--profile-meta {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .schedule__body--profile-meta {
    margin-top: 1rem;
    justify-content: flex-start;
  }
}

.schedule__body--profile-icon {
  /* width: 32%; */
}
@media (max-width: 767px) {
  .schedule__body--profile-icon {
    /* width: 14%; */
    margin-left: 2rem;
  }
}

@media (max-width: 500px) {
  .schedule__body--profile-icon {
    /* width: 23%; */
  }
}
.schedule__body--profile-name {
  margin-top: 1.5rem;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
.schedule__body--profile-name span {
  font-size: 20px;
}
@media (max-width: 767px) {
  .schedule__body--profile-name {
    font-size: clamp(14px, 3vw, 20px);
  }
  .schedule__body--profile-name span {
    font-size: clamp(12px, 2.8vw, 18px);
  }
}

.schedule__button {
  margin-top: auto;
  display: flex;
  justify-content: center;
}

.schedule__btn {
  background: #604c08;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, 1.3vw, 14px);
  letter-spacing: 0.1rem;
  border-radius: 2px;
  box-shadow: none;
  width: 100%;
  border-radius: 100px;
  position: relative;
}
.schedule__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 23px;
  transform: translateY(-50%);
  width: 14px;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../img/arrow--schedule__btn.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.schedule__btn:hover {
  opacity: 0.6;
  background: #000;
  color: #fff;
}

.schedule__btn.schedule__btn--sm{
  font-size: 12px;
  padding: 0.8rem 0;
}

.schedule__btn.schedule__btn--sm::after{
  right: 5px;
}

@media (max-width: 767px) {
  .schedule__btn {
    font-size: clamp(12px, 3vw, 16px);
  }
}

.scheduleBtn__img img {
  margin-left: 0;
  margin-right: 1.5rem;
}

.coming-soon {
  margin-top: 6.9rem;
}

.course-summary__button {
  margin-top: 9.2rem;
  text-align: center;
  justify-content: center;
  display: flex;
}

.course-summary__btn {
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(350px, 30vw, 380px);
  height: 70px;
  line-height: 70px;
  padding: 0;
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 600;
  background: #53430c;
  border-radius: 5px;
  letter-spacing: 0.05em;
  color: #fff;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease 0s;
}
.course-summary__btn:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .course-summary__btn {
    font-size: clamp(12px, 3vw, 16px);
  }
}

.course-summary__icon-before img {
  margin-right: 7rem;
  width: 24px;
}
@media screen and (max-width: 767px) {
  .course-summary__icon-before img {
    margin-right: 1rem;
  }
}

.course-summary__icon-after img {
  margin-left: 7.25rem;
  width: 13px;
}
@media screen and (max-width: 767px) {
  .course-summary__icon-after img {
    margin-left: 2.25rem;
  }
}

.must-check__button {
  margin-top: 4.8rem;
  text-align: center;
  justify-content: center;
  display: flex;
}

.must-check__btn {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  width: clamp(420px, 30vw, 480px);
  padding: 0;
  background: #CF3E00;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease 0s;
  padding: 1.0rem;
}

.must-check__btn::before{
  content: "";
  position: absolute;
  top: -35px;
  left: -65px;
  background-image: url(../img/must-check.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 120px;
  aspect-ratio: 120 / 88;
}

.must-check__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 30px;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../img/arrow--schedule__btn.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.must-check__btn-subtext {
  display: inline-block;
  color: #000;
  font-size: clamp(10px, 1.2vw, 14px);
  font-weight: 700;
  line-height: 1.2;
  border-radius: 30px;
  background: linear-gradient(90deg, #EEDC89 8.69%, #F9F2D1 49.98%, #EACD7B 88.95%);
  padding: 0.5rem 2rem;
}

.must-check__btn-text {
  display: block;
  color: #fff;
  font-size: clamp(16px, 1.2vw, 22px);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-top: 6px;
}

.must-check__btn:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1200px) {
  .must-check__btn::before{
    top: -35px;
    left: -40px;
    width: clamp(100px, 4.028rem + 4.63vw, 120px);
  }
  .must-check__btn::after {
    right: 7px;
  }
}

@media screen and (max-width: 767px) {
  .must-check__btn::before{
    top: -35px;
    left: -20px;
    width: clamp(80px, 100px, 100px);
  }
}

@media screen and (max-width: 480px) {
  .must-check__btn::before{
    top: -40px;
    left: -5px;
    width: clamp(50px, 100px, 70px);
  }
  .must-check__btn::after {
    width: 1.6rem;
  }
  .must-check__btn-subtext {
    padding: 0.5rem 1.0rem;
  }
}

/*=======================
モーダル
=======================*/
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  max-width: calc(100% - 20px);
  background: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  z-index: 501;
  padding: 5rem 4rem;
  display: none;
}
@media (max-width: 500px) {
  .modal {
    padding: 24px;
    height: 500px;
    overflow-y: scroll;
  }
}

.modal-content__head {
  display: flex;
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid #000;
}

.modal-content__left {
  width: 130px;
}
.modal-content__left--img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.modal-content__left--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-content__right {
  margin-left: 2rem;
}
.modal-content__right--tag {
  display: inline-block;
  background: #a83200;
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  padding: 0.1rem;
}
.modal-content__right--meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.modal-content__right--icon {
  margin-left: 2rem;
  width: 8rem;
}

@media (max-width: 767px) {
  .modal-content__right--icon {
    margin-left: 1rem;
  }
}

@media (max-width: 500px) {
  .modal-content__right--icon {
    width: 5rem;
  }
}

.modal-content__right--name {
  margin-top: 10px;
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: 0.1rem;
  color: #000;
}
.modal-content__right--caption {
  font-size: clamp(14px, 1.3vw, 16px);
  letter-spacing: 0.1rem;
  color: #000;
}

.modal-content__body {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .modal-content__body {
    margin-top: 2rem;
  }
}

.modal-content__body--p {
  font-size: clamp(14px, 1.3vw, 16px);
  letter-spacing: 0.1rem;
  color: #000;
}

.modal-content__button {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
}

.modal__btn {
  font-weight: 700;
  transition: all 0.3s ease 0s;
  color: #000;
  width: 20px;
  height: auto;
  font-size: 16px;
  background: transparent;
  box-shadow: none;
}
.modal__btn:hover {
  background: #3e3e3e;
  color: #fff;
}

.modal-content__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 500;
  background: rgba(0, 0, 0, 0.6);
  display: none;
}

.schedule__content--under {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .schedule__content--under {
    margin-top: 4rem;
  }
}

.schedule__content--under--inner {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  padding: 5rem;
}
@media (max-width: 767px) {
  .schedule__content--under--inner {
    display: block;
    padding: 3rem 2rem;
  }
}

.schedule__content--under-left {
  width: 33vw;
}
@media (max-width: 767px) {
  .schedule__content--under-left {
    width: 100%;
  }
}

.schedule__content--under-right {
  width: 38vw;
  margin-left: auto;
}
@media (max-width: 767px) {
  .schedule__content--under-right {
    margin-top: 2rem;
    width: 100%;
  }
}

.schedule__content--under-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: 0.1rem;
}

.schedule__content--under-text {
  margin-top: 3rem;
  font-size: clamp(14px, 1.1vw, 16px);
  letter-spacing: 0.1rem;
}
.schedule__content--under-text span {
  display: block;
  margin-top: 1.5rem;
  font-size: clamp(13px, 1.1vw, 14px);
}

/* ------------------------
    schedule__content--under
---------------------------*/
.schedule__content-bottom {
  padding: 59px 120px;
  background-image: url(../img/schedule__content-bottom.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: 80px;
  width: 1200px;
  max-width: 90%;
  margin-inline: auto;
}

@media (max-width: 767px) {
  .schedule__content-bottom {
    padding: 20px;
  }
}

.schedule__content-bottom__title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
  background-color: #a83200;
  padding: 10px;
  text-align: center;
}

@media (max-width: 767px) {
  .schedule__content-bottom__title span {
    display: block;
  }
}

.schedule__content-bottom__text {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
}

.schedule__content-bottom__attention {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
}

/*-----------------------------------------
    line
-----------------------------------------*/

.line {
  padding: 10rem 0 10rem;
  border-bottom: 1px solid #a48a30;
}

@media (max-width: 767px) {
  .line {
    padding: 5rem 0 5rem;
  }
}

.line__content--text {
  font-size: clamp(18px, 1.3vw, 20px);
  letter-spacing: 0.1rem;
  text-align: center;
}

@media (max-width: 767px) {
  .line__content--text {
    font-size: clamp(14px, 1.3vw, 16px);
  }
}

.line__content--button {
  margin-top: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 767px) {
  .line__content--button {
    margin-top: 3rem;
  }
}

.line__content--btn {
}
.line__content--btn {
  background: #a48a30;
  width: clamp(400px, 30vw, 500px);
  height: 80px;
  line-height: 80px;
  padding: 0;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0.1rem;
}

.line__content--btn:hover {
  background: #e5c44d;
  color: #000;
}

@media (max-width: 767px) {
  .line__content--btn {
    height: 60px;
    line-height: 60px;
  }
}

@media (max-width: 480px) {
  .line__content--btn {
    height: 50px;
    line-height: 50px;
  }
}

/*-----------------------------------------
    pm
-----------------------------------------*/
.pm {
  padding: 10rem 0 13rem;
}
@media (max-width: 767px) {
  .pm {
    padding: 5rem 0 7rem;
  }
}

.pm__inner {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}
@media (max-width: 767px) {
  .pm__inner {
    max-width: 100%;
  }
}

.pm__content {
  margin-top: 6rem;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .pm__content {
    display: block;
    margin-top: 4rem;
  }
}
.pm__content--left {
  width: clamp(500px, 38vw, 550px);
}
@media (max-width: 767px) {
  .pm__content--left {
    width: 100%;
  }
}
.pm__content--price {
  border: 1px solid #fff;
  padding: 3rem 4rem 2rem 3rem;
  position: relative;
}
@media (max-width: 767px) {
  .pm__content--price {
    padding: 2rem 0rem 2rem 1rem;
  }
}
.pm__content--price-title {
  position: absolute;
  top: -3rem;
  left: 0;
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(20px, 2vw, 26px);
  background: #000;
  padding: 0 3rem;
}
@media (max-width: 767px) {
  .pm__content--price-title {
    top: -2rem;
  }
}
.pm__content--price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
}
.pm__content--price-row dt {
  font-size: clamp(14px, 1.6vw, 18px);
}
.pm__content--price-row dt .sm {
  font-size: clamp(13px, 1.3vw, 16px);
}
.pm__content--price-row dd {
  font-family: "Lora", serif;
  font-size: clamp(26px, 3vw, 40px);
}
.pm__content--price-row dd .sm {
  display: inline-block;
  margin-left: 3px;
  font-size: clamp(14px, 1.3vw, 18px);
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: -0.08rem;
}
.pm__content--place {
  margin-top: 5.5rem;
  border: 1px solid #fff;
  padding: 3rem 4rem 2rem 3rem;
  position: relative;
}
@media (max-width: 767px) {
  .pm__content--place {
    margin-top: 4.5rem;
    padding: 2rem 0rem 2rem 1rem;
  }
}
.pm__content--place-title {
  position: absolute;
  top: -3rem;
  left: 0;
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(20px, 2vw, 26px);
  background: #000;
  padding: 0 3rem;
}
@media (max-width: 767px) {
  .pm__content--place-title {
    top: -2rem;
  }
}
.pm__content--place-text {
  margin-top: 1rem;
  font-weight: 700;
  font-size: clamp(16px, 3vw, 22px);
  letter-spacing: 0.1rem;
}
.pm__content--place-address {
  margin-top: 5px;
  font-weight: 400;
  font-size: clamp(14px, 1.3vw, 16px);
  letter-spacing: 0.1rem;
}
.pm__content--right {
  width: clamp(450px, 38vw, 500px);
  margin-left: 2rem;
}
@media (max-width: 767px) {
  .pm__content--right {
    width: 100%;
    margin-top: 4rem;
    margin-left: 0;
  }
}
.iframe__wrap {
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

.access__button {
  margin-top: 2rem;
}

.access__btn {
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1rem;
  border-radius: 2px;
  background: #a48a30;
  font-size: clamp(18px, 2vw, 22px);
  transition: all 0.3s ease 0s;
}
.access__btn:hover {
  background: #e5c44d;
}

/*-----------------------------------------
    contact
-----------------------------------------*/
.contact {
  padding: 10rem 0 10rem;
  position: relative;
  background: url(../img/contact-bg.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .contact {
    padding: 5rem 0 5rem;
  }
}
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(78, 78, 78, 0.85);
}

.contact__inner {
  position: relative;
  z-index: 2;
}

.contact__content {
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .contact__content {
    margin-top: 4rem;
  }
}

.contact__form {
  margin-top: 6rem;
}

@media (max-width: 767px) {
  .contact__form {
    margin-top: 3rem;
  }
}
.contact__content--text {
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 1.8;
  font-size: clamp(14px, 1.3vw, 16px);
}

/*ContactForm7カスタマイズ*/

table {
  border-spacing: 0;
}

.contact-form form table {
  width: 100%;
  margin: 0 auto;
  font-size: clamp(14px, 1.3vw, 16px);
}

table .contact-form tr {
  border-top: 1px solid #e5e5e5;
}

.single .entry-content table .contact-form,
.page .entry-content table .contact-form {
  display: table;
}

.contact-form [type="text"] {
  width: 100%;
  padding: 1rem;
  font-size: clamp(14px, 1.3vw, 16px);
}

.contact-form [type="tel"] {
  width: 100%;
  padding: 1rem;
  font-size: clamp(14px, 1.3vw, 16px);
}

.contact-form [type="email"] {
  width: 100%;
  padding: 1rem;
  font-size: clamp(14px, 1.3vw, 16px);
}
.contact-form select {
  width: 100%;
  padding: 1rem;
  font-size: clamp(14px, 1.3vw, 16px);
  border: 1px solid #d8d8d8;
}

.wpcf7-list-item {
  padding-left: 1rem;
}

.contact-form textarea {
  width: 100%;
  padding: 1rem;
  font-size: clamp(14px, 1.3vw, 16px);
}

/*入力欄*/
.contact-form input,
.contact-form textarea select {
  border: 1px solid #d8d8d8;
}

.contact-form ::placeholder {
  color: #797979;
}

/*「必須」文字*/
.require {
  font-size: 16px;
  padding: 5px;
  color: #a83200;
}

/* タイトル列 */
@media screen and (min-width: 768px) {
  .contact-form th {
    width: 30%; /*横幅*/
    background-color: #ebedf5;
    background-color: #ebedf5;
    padding: 3rem 2rem;
    text-align: left;
    color: #000;
  }

  .contact-form td {
    padding: 1rem 2rem;
    background: #fff;
    color: #000;
  }
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
  table .contact-form {
    width: 95%;
  }
  .contact-form tr,
  .contact-form td,
  .contact-form th {
    display: block;
    width: 100%;
    line-height: 2.5em;
    padding: 1rem 1rem;
    background: #fff;
    color: #000;
  }

  .contact-form th > p {
    text-align: left;
  }

  .contact-form th {
    background-color: #ebedf5;
  }
}

/* 「送信する」ボタン */
.submit-container {
  margin-top: 2rem;
  text-align: center;
}

.submit-container [type="submit"] {
  font-size: clamp(18px, 1.6vw, 22px);
  font-family: "Noto Serif JP", serif;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border: none;
  width: clamp(300px, 30vw, 400px);
  padding: 3rem 0;
  background: #a83200;
  border-radius: 5px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease 0s;
  margin: 0 auto;
}

.submit-container [type="submit"]:hover {
  background: #cb5725;
}

@media screen and (max-width: 768px) {
  .submit-container [type="submit"] {
    width: 100%;
    padding: 1.5rem 0;
  }
}

/*# sourceMappingURL=style.css.map */

/* (2023_11_05) */
.footer {
  height: 120px;
}
.footer__button {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.schedule__body {
  align-items: stretch;
}
.schedule__body--item {
  height: auto;
}
.schedule__body--item-profile {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
}

.schedule__body--item-profile.schedule__body--item-profile--2col{
  flex-direction: row;
  align-items: flex-end;
  margin-top: 1rem;
}

.schedule__body--item-profile img {
  vertical-align: bottom;
}
.schedule__body--item-profile-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  height: 198px;
  position: relative;
}
.schedule__body--item-profile--2col .schedule__body--item-profile-head{
  align-items: flex-end;
}

.schedule__body-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 16px;
  position: absolute;
  bottom: -16px;
  left: 0;
  z-index: 2;
}
.schedule__body-wrap.schedule__body-wrap--2023{
  bottom: -10px;
  left: 88px;
}
.schedule__body-wrap.schedule__body-wrap--2010{
  bottom: -20px;
  left: 105px;
}
@media (max-width: 767px) {
  .schedule__body-wrap {
    justify-content: center;
  }
  .schedule__body-wrap.schedule__body-wrap--2023{
    bottom: unset;
    left: unset;
  }
  .schedule__body-wrap.schedule__body-wrap--2010{
    bottom: unset;
    left: unset;
  }
  .schedule__body--item-profile.schedule__body--item-profile--2col{
    flex-direction: column;
  }
  .schedule__body--item-profile.schedule__body--item-profile--2col + .schedule__body--item-profile.schedule__body--item-profile--2col{
    margin-top: 3rem;
  }
}
.schedule__body--profile-img {
  flex: 0 1 calc(180 / 300 * 100%);
  position: relative;
  z-index: 2;
}

.schedule__body--profile-img.schedule__body--profile-img--2col{
  flex: 0 1 calc(140 / 300 * 100%);
}

.schedule__body--profile-img > img {
  object-fit: cover;
  aspect-ratio: 1/1;
  width: 100%;
}

.schedule__body--profile-img.schedule__body--profile-img-lg > img{
  width: 140px;
  aspect-ratio: 14/19;
}
@media (max-width: 767px) {
  .schedule__body--profile-img.schedule__body--profile-img-lg > img{
    width: 100%;
  }
}

.schedule__body--profile-icon {
  /* position: absolute; */
  /* bottom: 0; */
  /* left: 0; */
  /* transform: translate(7%, 32%); */
  margin: 0;
  width: 136px;
}

.schedule__body--profile-icon.award {
  height: auto;
  aspect-ratio: 136/90;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
}

.schedule__body--profile-icon.award__2005 {
  background-image: url(../img/award/award_2005.png);
}
.schedule__body--profile-icon.award__2006 {
  background-image: url(../img/award/award_2006.png);
}
.schedule__body--profile-icon.award__2007 {
  background-image: url(../img/award/award_2007.png);
}
.schedule__body--profile-icon.award__2008 {
  background-image: url(../img/award/award_2008.png);
}
.schedule__body--profile-icon.award__2009 {
  background-image: url(../img/award/award_2009.png);
}
.schedule__body--profile-icon.award__2010 {
  background-image: url(../img/award/award_2010.png);
}
.schedule__body--profile-icon.award__2011 {
  background-image: url(../img/award/award_2011.png);
}
.schedule__body--profile-icon.award__2012 {
  background-image: url(../img/award/award_2012.png);
}
.schedule__body--profile-icon.award__2013 {
  background-image: url(../img/award/award_2013.png);
}
.schedule__body--profile-icon.award__2014 {
  background-image: url(../img/award/award_2014.png);
}
.schedule__body--profile-icon.award__2015 {
  background-image: url(../img/award/award_2015.png);
}
.schedule__body--profile-icon.award__2016 {
  background-image: url(../img/award/award_2016.png);
}
.schedule__body--profile-icon.award__2017 {
  background-image: url(../img/award/award_2017.png);
}
.schedule__body--profile-icon.award__2018 {
  background-image: url(../img/award/award_2018.png);
}
.schedule__body--profile-icon.award__2019 {
  background-image: url(../img/award/award_2019.png);
}
.schedule__body--profile-icon.award__2020 {
  background-image: url(../img/award/award_2020.png);
}
.schedule__body--profile-icon.award__2021 {
  background-image: url(../img/award/award_2021.png);
}
.schedule__body--profile-icon.award__2022 {
  background-image: url(../img/award/award_2022.png);
}
.schedule__body--profile-icon.award__2023 {
  background-image: url(../img/award/award_2023.png);
}
.schedule__body--profile-icon.award__2024 {
  background-image: url(../img/award/award_2024.png);
}

.schedule__body--profile-catch {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: bold;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  min-height: 180px;
}
.schedule__body--profile-catch.text-sm {
  font-size: 20px;
}
.schedule__body--profile-catch.text-xs {
  font-size: 16px;
}
.schedule__body--profile-catch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-68%, -38%);
  background: url(../../2024/img/catch_deco01.png) no-repeat center
    center/contain;
  aspect-ratio: 1/1;
  width: calc(183 / 120 * 100%);
}
.schedule__body--item-profile--2col .schedule__body--profile-catch::before {
  aspect-ratio: 170/173;
  width: 170px;
  top:40%;
  left:85%;
}
.schedule__body--item.schedule__body--item--2col .schedule__body--profile-catch::before {
  width: calc(130 / 120 * 100%);
}
.schedule__body--profile-catch .text-stroke {
  display: block;
  position: relative;
  color: #675515;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  -webkit-text-stroke: 4px #fff;
  word-break: keep-all;
}
.schedule__body--profile-catch .text-stroke::before {
  content: attr(data-text);
  -webkit-text-stroke: 0;
  position: absolute;
  inset: 0 auto auto 0;
}
.schedule__body--profile-catch .text-stroke:nth-child(2) {
  margin-top: 1em;
}
.schedule__body--profile-catch .text-stroke:nth-child(3) {
  margin-top: 3em;
}
.schedule__body--profile-catch .text-stroke:nth-child(4) {
  margin-top: 4em;
}
.schedule__body--profile-catch.text-xs .text-stroke:nth-child(2) {
  margin-top: 1em;
}
.schedule__body--profile-catch.text-xs .text-stroke:nth-child(3) {
  margin-top: 2em;
}
.schedule__body--profile-catch.text-xs .text-stroke:nth-child(4) {
  margin-top: 3em;
}
.schedule__body--profile-catch .text-stroke.text-stroke--5em{
  margin-top: 5em;
}
.schedule__body--profile-catch .text-stroke.text-stroke--6em{
  margin-top: 6em;
}
.schedule__body--profile-foot {
  flex: 1;
  position: relative;
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 14px 14px 20px;
  /* margin-top: 20px; */
  width: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.schedule__body--profile-foot.schedule__body--profile-foot--2col{
  flex: unset;
  width: 73%;
  padding-top:5px;
  padding-bottom: 15px;
}

.schedule__body--profile-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 16px;
}
.schedule__body--profile-name {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin: 0;
}
.schedule__body--item-profile--2col .schedule__body--profile-name {
  font-size: 22px;
}
.schedule__body--profile-tag {
  /* flex: 1; */
  display: block;
  background-color: transparent;
  margin: 0;
  padding: 0;
  width: 126px;
  height: auto;
  aspect-ratio: 126/31;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.schedule__body--profile-tag.growth {
  background-image: url(../img/tag/growth.png);
}
.schedule__body--profile-tag.prime {
  background-image: url(../img/tag/prime.png);
}
.schedule__body--profile-tag.prime--pre {
  background-image: url(../img/tag/prime--pre.png);
}
.schedule__body--profile-tag.standard {
  background-image: url(../img/tag/standard.png);
}
.schedule__body--profile-tag.jasdaq--pre {
  background-image: url(../img/tag/jasdaq--pre.png);
}
.schedule__body--profile-tag.centrex--pre {
  background-image: url(../img/tag/centrex--pre.png);
}
.schedule__body--profile-tag.nasdaq-jp--pre {
  background-image: url(../img/tag/nasdaq-jp--pre.png);
}
.schedule__body--profile-tag.tosho01--pre {
  background-image: url(../img/tag/tosho01--pre.png);
}
.schedule__body--profile-tag.tosho02--pre {
  background-image: url(../img/tag/tosho02--pre.png);
}

.schedule__body--profile-text {
  border-top: 1px solid #ddd8c7;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 12px;
  padding-top: 12px;
  padding-bottom: 16px;
}
.schedule__body--profile-foot--2col .schedule__body--profile-text{
  font-size: 13px;
  padding-top: 6px;
  padding-bottom: 8px;
}

.schedule__button {
  margin-top: auto;
}
.modal-content__head {
  min-height: 180px;
}
.modal-content__right--tag {
  background: transparent;
  width: 148px;
  aspect-ratio: 148/36;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.modal-content__right--tag.growth {
  background-image: url(../img/tag/growth.png);
}
.modal-content__right--tag.prime {
  background-image: url(../img/tag/prime.png);
}
.modal-content__right--tag.prime--pre {
  background-image: url(../img/tag/prime--pre.png);
}
.modal-content__right--tag.standard {
  background-image: url(../img/tag/standard.png);
}
.modal-content__right--tag.jasdaq--pre {
  background-image: url(../img/tag/jasdaq--pre.png);
}
.modal-content__right--tag.centrex--pre {
  background-image: url(../img/tag/centrex--pre.png);
}
.modal-content__right--tag.nasdaq-jp--pre {
  background-image: url(../img/tag/nasdaq-jp--pre.png);
}
.modal-content__right--tag.tosho01--pre {
  background-image: url(../img/tag/tosho01--pre.png);
}
.modal-content__right--tag.tosho02--pre {
  background-image: url(../img/tag/tosho02--pre.png);
}

.modal-content__left {
  position: relative;
}
.modal-content__right--icon {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-5%, 50%);
  margin: 0;
  width: 120px;
}

.modal-content__right--icon.award {
  height: auto;
  aspect-ratio: 120/80;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.modal-content__right--icon.award__2005 {
  background-image: url(../img/award/award_2005.png);
}
.modal-content__right--icon.award__2006 {
  background-image: url(../img/award/award_2006.png);
}
.modal-content__right--icon.award__2007 {
  background-image: url(../img/award/award_2007.png);
}
.modal-content__right--icon.award__2008 {
  background-image: url(../img/award/award_2008.png);
}
.modal-content__right--icon.award__2009 {
  background-image: url(../img/award/award_2009.png);
}
.modal-content__right--icon.award__2010 {
  background-image: url(../img/award/award_2010.png);
}
.modal-content__right--icon.award__2011 {
  background-image: url(../img/award/award_2011.png);
}
.modal-content__right--icon.award__2012 {
  background-image: url(../img/award/award_2012.png);
}
.modal-content__right--icon.award__2013 {
  background-image: url(../img/award/award_2013.png);
}
.modal-content__right--icon.award__2014 {
  background-image: url(../img/award/award_2014.png);
}
.modal-content__right--icon.award__2015 {
  background-image: url(../img/award/award_2015.png);
}
.modal-content__right--icon.award__2016 {
  background-image: url(../img/award/award_2016.png);
}
.modal-content__right--icon.award__2017 {
  background-image: url(../img/award/award_2017.png);
}
.modal-content__right--icon.award__2018 {
  background-image: url(../img/award/award_2018.png);
}
.modal-content__right--icon.award__2019 {
  background-image: url(../img/award/award_2019.png);
}
.modal-content__right--icon.award__2020 {
  background-image: url(../img/award/award_2020.png);
}
.modal-content__right--icon.award__2021 {
  background-image: url(../img/award/award_2021.png);
}
.modal-content__right--icon.award__2022 {
  background-image: url(../img/award/award_2022.png);
}
.modal-content__right--icon.award__2023 {
  background-image: url(../img/award/award_2023.png);
}
.modal-content__right--icon.award__2024 {
  background-image: url(../img/award/award_2024.png);
}

@media (max-width: 767px) {
  .schedule__body--item-profile {
    margin-top: 16px;
  }
  .schedule__body--item-profile-head {
    flex-direction: column-reverse;
    align-items: center;
    row-gap: 18px;
    height: auto;
  }
  .schedule__body--profile-foot.schedule__body--profile-foot--2col{
    width: 100%;
    padding: 44px 15px 13px;
  }
  .schedule__body--item-profile--2col .schedule__body--item-profile-head{
    align-items: center;
  }
  .schedule__body--profile-img {
    width: calc(165 / 300 * 100%);
    max-width: 320px;
  }
  .schedule__body--profile-icon {
    /* transform: translate(-45%, 10%); */
    width: min(calc(141 / 375 * 100vw), 280px);
    /* max-width: 200px; */
  }
  .schedule__body--profile-catch {
    flex-direction: row;
    flex-wrap: wrap;
    font-size: min(20 / 375 * 100vw, 24px);
    line-height: 1.1;
    letter-spacing: 0.1em;
    padding-right: 0;
    margin-top: 0;
    -ms-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    text-align: center;
    min-height: auto;
    width: 100%;
  }
  .schedule__body--profile-catch.text-sm {
    font-size: min(20 / 375 * 100vw, 24px);
  }
  .schedule__body--profile-catch.schedule__body--profile-catch.text-xs {
    font-size: min(18 / 375 * 100vw, 24px);
  }
  .schedule__body--profile-catch::before {
    transform: translate(-50%, -28%);
    background: url(../../2024/img/catch_deco02.png) no-repeat center
      center/contain;
    aspect-ratio: 300/30;
    width: 100%;
    max-width: 320px;
  }
  .schedule__body--item-profile--2col .schedule__body--profile-catch::before{
    aspect-ratio: 300/30;
    width: 100%;
    max-width: 320px;
    top: 50%;
    left:50%;
  }
  .schedule__body--profile-catch .text-stroke {
    color: #a0810f;
    text-shadow: none;
    -webkit-text-stroke: 0px;
    font-size: 19px;
  }
  .schedule__body--profile-catch .text-stroke::before {
    content: none;
  }
  .schedule__body--profile-catch .text-stroke:nth-child(2) {
    margin-top: 0;
  }
  .schedule__body--profile-catch .text-stroke:nth-child(3) {
    margin-top: 0;
  }
  .schedule__body--profile-catch .text-stroke:nth-child(4) {
    margin-top: 0;
  }
  .schedule__body--profile-catch.text-xs .text-stroke:nth-child(2) {
    margin-top: 0;
  }
  .schedule__body--profile-catch.text-xs .text-stroke:nth-child(3) {
    margin-top: 0;
  }
  .schedule__body--profile-catch.text-xs .text-stroke:nth-child(4) {
    margin-top: 0;
  }
  .schedule__body--profile-foot {
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    padding: 44px 15px 13px;
    margin: -30px auto 0;
    text-align: center;
    /* width: 87%; */
  }
  
  
  .schedule__body--profile-meta {
    /* display: contents; */
  }
  .schedule__body--profile-name {
    order: 1;
    font-size: min(22 / 375 * 100vw, 22px);
    line-height: 1.2;
  }
  .schedule__body--profile-tag {
    width: calc(126 / 375 * 100vw);
  }
  .schedule__body--profile-text {
    /* order: 2; */
    margin-top: 7px;
    margin-bottom: 7px;
    padding-top: 8px;
  }
  .schedule__button {
    margin-top: 16px;
  }
  .modal-content__right {
    flex: 1;
  }
}

.video__content {
  width: 100%;
  max-width: 800px;
  height: auto;
  aspect-ratio: 500/315;
  margin-inline: auto;
  margin-top: 16px;
}

.video__content > * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.schedule__body--item-profile:has(.coming-soon) {
  display: grid;
  place-content: center;
}
.schedule__body--item-profile .coming-soon {
  display: inline-block;
  color: #000;
  width: 100%;
  height: 100%;
  text-align: center;
  margin-top: 0;
  font-size: 32px;
  font-weight: 700;
}

/* ------------------------
  講座後は懇親会
---------------------------*/
.afterLesson {
}

.afterLesson__container {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}

.afterLesson__head {
  padding: 35px 20px;
  background-image: url(../img/afterLesson__head-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 767px) {
  .afterLesson__head {
    padding: 35px 12px;
  }
}

.afterLesson__title {
  font-family: serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.afterLesson__title::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 237px;
  height: auto;
  aspect-ratio: 237/27;
  background-image: url(../img/afterLesson__title-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.afterLesson__text {
  font-family: serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0;
  text-align: center;
  margin-top: 25px;
}

@media (max-width: 767px) {
  .afterLesson__text {
    font-size: min(calc(14/320 * 100vw),20px);
  }
}

.afterLesson__text span {
  display: inline-block;
}

.afterLesson__gallery-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.afterLesson__gallery-item {
  width: 100%;
  height: auto;
}

.afterLesson__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}