@charset "UTF-8";
/*-----------------------------------------
    color
-----------------------------------------*/
:root {
  --color-primary: #0168B7;
  --color-light-blue: #E4F3FF;
  --color-light-blue2: #EFF8FF;
  --color-light-blue3: #EBF6FF;
  --color-gray-light-blue: #E8F1F8;
  --color-navy: #003E6E;
  --color-gray-dark: #1B1B1B;
  --color-text: #2C2C2C;
  --color-white: #fff;
  --color-black: #000;
  --color-gold: #A48A30;
  --color-bright-gold: #e5c44d;
  --color-beige: #E7E0C9;
  --font-noto-sans-jp: "Noto Sans", sans-serif;
  --font-noto-serif-jp: "Noto Serif JP", serif;
}

/*-----------------------------------------
  Fonts
-----------------------------------------*/
@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");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&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 {
  max-width: 1240px;
  width: 100%;
  margin-inline: auto;
  padding: 0 20px;
}

body {
  font-family: var(--font-noto-sans-jp);
  line-height: 1.6;
  font-weight: 400;
  background: var(--color-white);
  color: var(--color-text);
}

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: var(--font-noto-serif-jp);
  color: var(--color-white);
  text-align: center;
  text-decoration: none;
  width: clamp(175px, 17vw, 248px);
  padding: 1.2rem 0;
  background: var(--color-primary);
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease 0s;
}

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

/*-----------------------------------------
    header
-----------------------------------------*/
.header {
  position: fixed;
  top: 15px;
  left: 10px;
  width: calc(100% - 20px);
  height: 80px;
  padding: 0 40px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  background:var(--color-white);
}
@media (max-width: 960px) {
  .header {
    height: 60px;
  }
}
@media (max-width: 767px) {
  .header {
    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-wrap{
  display: flex;
  gap: 30px;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 2.0rem;
}
@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;
  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: var(--color-primary);
  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: var(--color-primary);
  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:hover{
  background: #1287e0;
}

.header__btn--line {
  background: var(--color-gold);
}

.header__btn--line:hover {
  background: var(--color-bright-gold);
  color: #000;
}

/*-----------------------------------------
    //drawer
-----------------------------------------*/
.drawer__icon {
  position: fixed;
  top: 30px;
  right: 30px;
  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) {
  transform: rotate(-45deg);
  top: 1.5rem;
}
.drawer__icon.is-active span:nth-child(2) {
  display: none;
}
.drawer__icon.is-active span:nth-child(3) {
  transform: rotate(45deg);
  top: 1.5rem;
}

.drawer__bars {
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
}
.drawer__bars span {
  width: 100%;
  height: 0.2rem;
  background: var(--color-primary);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease 0s;
}
.drawer__bars span:nth-child(1) {
  top: 5px;
}
.drawer__bars span:nth-child(2) {
  top: 12px;
}
.drawer__bars span:nth-child(3) {
  top: 19px
}

.drawer__content {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: var(--color-white);
  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 var(--color-white);
}

.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: var(--color-bright-gold);
  color: #000;
}

/*-----------------------------------------
    section__title
-----------------------------------------*/
.section__title {
  font-family: var(--font-noto-serif-jp);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-primary);
}

.section__subtitle {
  font-family: var(--font-noto-serif-jp);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-gray-dark);
}

/*-----------------------------------------
    mv
-----------------------------------------*/

.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: var(--font-noto-serif-jp);
  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: var(--font-noto-serif-jp);
  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: var(--font-noto-serif-jp);
  letter-spacing: 0.2rem;
  font-size: clamp(16px, 1.3vw, 18px);
  text-align: center;
}
.mv__text .ac {
  color: #a48a30;
}


/*-----------------------------------------
  株式上場塾とは？
-----------------------------------------*/
.about {
  padding-bottom: 100px;
  position: relative;
}
@media (max-width: 767px) {
  .about {
    padding-bottom: 3rem;
  }
}

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

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

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

.about__subtitle {
  margin-top: 30px;
}

.about__content-list {
  margin-top: 20px;
}

.about__content-item {
  position: relative;
  padding-left: 1em;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.8;
}

.about__content-item::before {
  content: "・";
  position: absolute;
  left: 0;
}

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

/*-----------------------------------------
  主催者メッセージ
-----------------------------------------*/
.message {
  padding: 100px 0 80px;
}
@media (max-width: 767px) {
  .message {
    padding: 3rem 0 5rem;
  }
}

.message__content {
  background-color: var(--color-light-blue);
  padding: 45px;
}
@media (max-width: 767px) {
  .message__content {
    padding: 15px;
  }
}

.message__title {
  text-align: center;
}

.message__subtitle{
  text-align: center;
  margin-top: 30px;
}

.message__text{
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 2.0;
  margin-top: 15px;
}

.message__name {
  display: flex;
  align-items: flex-end;
  justify-content: right;
  gap: 10px;
  color: var(--color-text);
  font-family: var(--font-noto-serif-jp);
  font-weight: 500;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .message__name {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
}

.message__name-position {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6;
}

.message__name-text {
  font-size: clamp(22px, 1.3vw, 26px);
  line-height: 1.6;
  letter-spacing: 0.05em;
}

/*-----------------------------------------
  開催日程
-----------------------------------------*/
.overview {
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .overview {
    padding-bottom: 4.5rem;
  }
}

.overview__title {
  text-align: center;
}

.overview__content{
  background-color: var(--color-light-blue);
  padding: 80px 57px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.overview__content-left,
.overview__content-right{
  background-color: var(--color-white);
  padding: 50px;
}

.overview__timetable-items {
  margin-top: 30px;
}

.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,
.timetable-item__value {
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 10px 20px;
  border-bottom: 1px solid var(--color-navy);
}

@media (max-width: 1024px) {
  .timetable-item__time,
  .timetable-item__value {
    padding: 10px;
  }
}

.timetable-item__time {
  max-width: 170px;
  min-width: 170px;
  background-color: var(--color-navy);
  color: var(--color-white);
}

@media (max-width: 1024px) {
  .timetable-item__time {
    max-width: 160px;
    min-width: 160px;
  }
}

.overview__timetable-item.overview__timetable-item--wide .timetable-item__time,
.overview__timetable-item.overview__timetable-item--wide .timetable-item__value{
  padding: 20px;
}

@media (max-width: 1024px) {
  .overview__timetable-item.overview__timetable-item--wide .timetable-item__time,
  .overview__timetable-item.overview__timetable-item--wide .timetable-item__value{
    padding: 20px 10px;
  }
}

.timetable-item__value {
  color: var(--color-text);
  flex-grow: 1;
  box-sizing: border-box;
}

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

.overview__note {
  color: var(--color-white);
  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: 19px;
}

.networking-event__time {
  max-width: 170px;
  min-width: 170px;
  background-color: var(--color-navy);
  color: var(--color-white);
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 20px;
}

@media (max-width: 1024px) {
  .networking-event__time {
    max-width: 160px;
    min-width: 160px;
  }
}

.networking-event__value {
  background-color: var(--color-light-blue3);
  color: var(--color-text);
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 20px;
  flex-grow: 1;
}

@media (max-width: 1024px) {
  .overview__content{
    padding: 5.5rem 2.5rem;
    gap: 1.5rem;
  }
  .overview__content-left,
  .overview__content-right{
    padding: 2.5rem;
  } 
}

@media (max-width: 767px) {
  .overview__content{
    grid-template-columns: 1fr;
    padding: 3.5rem 1.5rem;
  }
  .overview__timetable-item {
    flex-direction: column;
  }
  .timetable-item__time {
    max-width: unset;
    min-width: unset;
  }
  .networking-event__time {
    max-width: unset;
    min-width: unset;
  }
  .timetable-item__time,
  .timetable-item__value {
    border-bottom: none;
  }
  .overview__networking-event {
    flex-direction: column;
  }
  .overview__timetable-item.overview__timetable-item--wide .timetable-item__time, 
  .overview__timetable-item.overview__timetable-item--wide .timetable-item__value{
    padding: 10px 20px;
  }
}
@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 {
  padding: 60px 0 100px;
  position: relative;
  background: linear-gradient(92.28deg, #0068B7 -0.96%, #005596 100%);
}
@media (max-width: 767px) {
  .schedule {
    padding: 3rem 0 5rem;
  }
}

.schedule::before {
  content: "";
  position: absolute;
  z-index: 0;
  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 {
  padding: 5rem 0 10rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .schedule__content {
    padding: 3rem 0 5rem;
  }
}

.schedule-content__sub-title {
  font-family: var(--font-noto-serif-jp);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  background: linear-gradient(180deg, #D89100 0%, #FFEA1C 48.5%, #E19D00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media (max-width: 767px) {
  .schedule-content-head__sub-catch {
    font-size: min(calc(24 / 320 * 100vw), 32px);
  }
}

.schedule-content__title {
  font-family: var(--font-noto-serif-jp);
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  color: var(--color-white);
}

.schedule-content__list{
  margin-top: 50px;
}

.schedule-content__item{
  padding: 40px 100px 60px;
  background-color: var(--color-white);
}

.schedule-content__item:not(:first-child){
  margin-top: 20px;
}

.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: var(--color-white);
  margin-top: 27px;
}

@media (max-width: 1024px) {
  .schedule-content__item{
    padding: 2.5rem clamp(2.5rem, -5rem + 15.63vw, 5rem) 3.0rem;
  }
}
@media (max-width: 767px) {
  .schedule-content__item{
    padding: 2.5rem 1.25rem 3.5rem;
  }
  .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__item {
  background-color: var(--color-white);
  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-content-item__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;
}

.schedule-content-item__meta-num {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: serif;
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 900;
  letter-spacing: 0.1rem;
  width: 69px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.schedule-content-item__meta-day {
  font-family: serif;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: #000;
  text-align: center;
}
.schedule-content-item__meta-day .text-sm{
  font-size: clamp(16px, 3vw, 20px);
}
@media (max-width: 767px) {
  .schedule-content-item__meta-day {
    font-size: 24px;
    margin-left: 0;
  }
}

.schedule-content__body {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}

/* 共通セミナーブロック */

.schedule-program + .schedule-program{
  margin-top: 35px;
}

.schedule-program__label {
  font-family: var(--font-noto-serif-jp);
  color: var(--color-white);
  font-weight: bold;
  padding: 8px 16px 10px;
  font-size: clamp(20px, 2vw, 24px);
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.schedule-program__label .text-lg{
  font-size: clamp(26px, 2vw, 30px);
}

.schedule-program--blue .schedule-program__label {
  background: linear-gradient(92.28deg, #0068B7 -0.96%, #005596 100%);
}

.schedule-program--red .schedule-program__label {
  background: linear-gradient(92.28deg, #BF1A20 -0.96%, #A20006 100%);
}

.schedule-program__speaker {
  margin-top: 15px;
}

.schedule-program__job {
  background: linear-gradient(90deg, #0068B7 0%, #FFFFFF 100%);
  font-size: clamp(14px, 1.3vw, 16px);
  letter-spacing: 0.03em;
  font-weight: 700;
  color: var(--color-white);
  padding: 10px;
}

.schedule-program__speaker-content{
  display: flex;
  gap: 30px;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .schedule-program__speaker-content{
    flex-direction: column;
    align-items: center;
    margin-top: 1.25rem;
    gap: 1.25rem;
  }
}

.schedule-program__speaker-img{
  width: 180px;
  object-fit: contain;
  aspect-ratio: 1 / 1;
}

@media (max-width: 767px) {
  .schedule-program__speaker-img{
    width: 75%;
  }
}

.schedule-program__body{
  flex: 1;
}

.schedule-program__name {
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.3;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 767px) {
  .schedule-program__name {
    flex-direction: column;
    align-items: center;
  }
}

.schedule-program__name-position{
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 500;
}

.schedule-program__name-text{
  font-family: var(--font-noto-serif-jp);
  font-weight: 700;
  font-size: clamp(24px, 1.3vw, 28px);
}

.schedule-program__name-text .text-sm{
  font-size: clamp(18px, 1.3vw, 20px);
}

.schedule-program__text{
  margin-top: 10px;
}

.schedule-program__text,
.schedule-program__theme {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.6;
}

.schedule-program__theme{
  margin-top: 15px;
  background-color: var(--color-gray-light-blue);
  padding: 30px;
}

@media (max-width: 767px) {
  .schedule-program__theme{
    padding: 1.75rem 1.25rem;
  }
}

.schedule-program__theme-title {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.schedule-program__theme-text{
  margin-top: 10px;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.6;
}

/* 会社データ */
.schedule-company {
  margin-top: 15px;
  color: var(--color-white);
}

.schedule-company__head {
  display: flex;
}

@media (max-width: 767px) {
  .schedule-company__head {
    flex-direction: column;
  }
}

.schedule-company__title {
  background-color: var(--color-text);
  font-weight: bold;
  border-top-left-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.03em;
  padding: 5px 25px;
}

@media (max-width: 767px) {
  .schedule-company__title {
    border-top-right-radius: 10px;
  }
}

.schedule-company__tag {
  background: linear-gradient(92.28deg, #CDB155 -0.96%, #7D5F0B 100%);
  color: #fff;
  padding: 4px 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
  padding: 5px 25px;
  border-top-right-radius: 10px;
}

@media (max-width: 767px) {
  .schedule-company__tag {
    border-top-right-radius: 0;
  }
}

.schedule-company__list-wrap{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: var(--color-beige);
  margin: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 15px 20px;
}

@media (max-width: 767px) {
  .schedule-company__list-wrap{
    grid-template-columns: 1fr;
    padding: 15px 10px;
  }
}

.schedule-company__list{
  position: relative;
  padding: 0 10px;
}

.schedule-company__list:not(:first-child){
  padding-left: 20px;
}

.schedule-company__list:not(:first-child)::before{
  position: absolute;
  content: '';
  width: 1px;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #CDC4A6;
}

@media (max-width: 767px) {
  .schedule-company__list:not(:first-child){
    padding:20px 10px 0;
  }
  .schedule-company__list:not(:first-child)::before{
    width: 100%;
    height: 1px;
    left: 0;
    top: 0;
  }
}

.schedule-company__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  font-size: clamp(12px, 1.3vw, 14px);
  color: var(--color-text);
}

.schedule-company__row dt {
  font-weight: 500;
}

.schedule-company__row dt{
  padding: 2px 0;
}

.schedule-company__row dd{
  padding: 2px 10px;
}


@media (max-width: 767px) {
  .schedule-company__row dt{
    padding: 2px 5px;
  }
  
  .schedule__body {
    display: block;
  }
}
/* .schedule__body--item {
  margin-top: 1.5rem;
  height: 295px;
  width: 300px;
  display: flex;
  flex-direction: column;
}

.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: var(--color-white);
}

.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: var(--color-white);
  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;
  }
} */

/* ------------------------
    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: var(--color-white);
  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: var(--color-white);
  text-align: center;
}

.schedule__content-bottom__attention {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--color-white);
  text-align: center;
} */

/*-----------------------------------------
  料金・会場
-----------------------------------------*/
.pm {
  padding: 100px 0;
  background-color: var(--color-light-blue2);
}
@media (max-width: 767px) {
  .pm {
    padding: 5rem 0;
  }
}

.pm__title{
  text-align: center;
}

.pm__content {
  margin-top: 45px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 45px;
}
@media (max-width: 767px) {
  .pm__content {
    display: block;
    margin-top: 4rem;
  }
}
.pm__content-left {
  width: 45%;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .pm__content-left {
    width: 100%;
  }
}
.pm__content-price,
.pm__content-place {
  background: linear-gradient(92.28deg, #0068B7 -0.96%, #005596 100%);
  border-radius: 5px;
  padding: 30px 45px;
  position: relative;
}
@media (max-width: 767px) {
  .pm__content-price,
  .pm__content-place {
    padding: 25px 20px;
  }
}

.pm__content-price-title,
.pm__content-place-title {
  font-family: var(--font-noto-serif-jp);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  color: var(--color-white);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--color-white);
}

.pm__content-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
}

.pm__content-price-row:not(:first-child){
  margin-top: 4px;
}

.pm__content-price-row dt,
.pm__content-price-row dd{
  color: var(--color-white);
}

.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(24px, 3vw, 36px);
}
.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: 20px;
}

.pm__content-place-text{
  margin-top: 15px;
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 500;
  color: var(--color-white);
}

.pm__content-place-address {
  margin-top: 4px;
  font-weight: 400;
  font-size: clamp(14px, 1.3vw, 16px);
  color: var(--color-white);
}

.pm__content-right {
  flex:1;
}
@media (max-width: 767px) {
  .pm__content-right {
    width: 100%;
    margin-top: 4rem;
    margin-left: 0;
  }
}
.iframe__wrap iframe{
  height: 319px;
}

.access__button {
  margin-top: 2rem;
}

.access__btn {
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0;
  font-family: var(--font-noto-serif-jp);
  border-radius: 5px;
  background: var(--color-gold);
  font-size: clamp(20px, 2vw, 24px);
  transition: all 0.3s ease 0s;
}
.access__btn:hover {
  background: var(--color-bright-gold);
}

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

/* ------------------------
  講座後は懇親会
---------------------------*/
.afterLesson {
  padding-top: 100px;
}

@media (max-width: 767px) {
  .afterLesson {
    padding-top: 5.5rem;
  }
}

.afterLesson__content{
  background-color: var(--color-light-blue);
  padding: 45px 20px;
}

.afterLesson__title-wrap{
  text-align: center;
}

.afterLesson__title {
  display: inline-block;
  font-family: var(--font-noto-serif-jp);
  font-size: clamp(24px, 2.0vw, 28px);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--color-primary);
  text-align: center;
  padding: 0 10px;
  margin-inline: auto;
  border-bottom: 1px solid var(--color-primary);
}

.afterLesson__text {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.65;
  text-align: center;
  margin-top: 25px;
}

.afterLesson__note {
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 500;
  text-align: center;
  margin-top: 10px;
}

.afterLesson__time {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.afterLesson__time-label {
  border-radius: 5px;
  border: 1px solid var(--color-text);
  padding: 2px 15px;
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 500;
  line-height: 1.6;
}

.afterLesson__time-text {
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 500;
  line-height: 1.6;
}

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

.line {
  padding: 45px 0 100px;
}

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

.line__content-text {
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 500;
  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 {
  background: var(--color-gold);
  width: clamp(400px, 30vw, 473px);
  height: 80px;
  line-height: 80px;
  padding: 0;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0.1rem;
}

.line__content-btn:hover {
  background: var(--color-bright-gold);
  color: var(--color-black);
}

@media (max-width: 767px) {
  .line__content-btn {
    height: 60px;
    line-height: 60px;
    font-size: clamp(16px, 1.3vw, 18px);
  }
}

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


/*-----------------------------------------
  お問い合わせ
-----------------------------------------*/
.contact {
  background-color: var(--color-primary);
  padding: 100px 0;
}

.contact__title {
  text-align: center;
}

.contact__box {
  background-color: var(--color-white);
  padding: 60px 110px;
}

@media (max-width: 1024px) {
  .contact__box {
    padding: 50px clamp(3.125rem, -8.125rem + 23.44vw, 6.875rem);
  }
}
@media (max-width: 767px) {
  .contact__box {
    padding: 3.5rem 1.5rem;
  }
}

.contact__content{
  display: flex;
  justify-content: space-between;
  margin-top: 45px;
  gap: 20px;
}

@media (max-width: 767px) {
  .contact__content{
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}

.contact__content-left {
  flex: 1;
}

.contact__ribbon{
  position: relative;
  display: inline-block;
  padding: 0 20px;
  background-color: var(--color-navy);
  color: var(--color-white);
  font-size: clamp(18px, 0.857rem + 1.34vw, 24px);
  font-weight: 700;
  height: 75px;
  line-height: 75px;
  width: 90%;
}

.contact__ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  right: -32px;
  width: 0;
  height: 0;
  border-top: 37.5px solid transparent;
  border-bottom: 37.5px solid transparent;
  border-left: 32px solid var(--color-navy);
}

@media (max-width: 767px) {
  .contact__ribbon{
    text-align: center;
    height: 60px;
    line-height: 60px;
    width: 100%;
  }
  
  .contact__ribbon::after {
    top: auto;
    right: auto;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    border-top: 21px solid var(--color-navy);
    border-left: 37.5px solid transparent;
    border-right: 37.5px solid transparent;
    border-bottom: 0;
  }
}

.contact__content-right {
  width: 180px;
  flex-shrink: 0;
}

.contact__explanation{
  font-size: clamp(22px, 1.017rem + 1.79vw, 30px);
  font-weight: 700;
  line-height: 1.6;
  margin-top: 15px;
}

@media (max-width: 767px) {
  .contact__explanation{
    margin-top: 3.5rem;
  }
}

.contact__text{
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 500;
  line-height: 1.6;
}

.contact__text .pc-only {
  display: inline;
}
.contact__text .sp-only{
  display: none;
}

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

.contact__details {
  background-color: var(--color-light-blue3);
  padding: 20px clamp(2.5rem, -8.75rem + 23.44vw, 6.25rem);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(2.5rem, -8.75rem + 23.44vw, 6.25rem);
  margin-top: 30px;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .contact__details {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.contact__details-label {
  padding: 4px 30px;
  border: 1px solid var(--color-primary);
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-primary);
  border-radius: 5px;
}

.contact__details-value {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

@media (max-width: 767px) {
  .contact__details-value {
    flex-direction: column;
    flex-wrap: wrap;
  }
}

.contact__details-value-text {
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 700;
  line-height: 1.6;
  flex: 1;
}

.contact__details-value-img {
  margin-left: 30px;
  width: 139px;
}
@media (max-width: 767px) {
  .contact__details-value-img {
    margin-left: 0;
  }
}

/*-----------------------------------------
    footer
-----------------------------------------*/
.footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__inner{
  max-width: 1400px;
  width: 100%;
  margin-inline: auto;
  padding: 0 20px;
}

.footer__button {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 340px;
  margin-inline: auto;
  padding: 60px 0;
}

.footer__btn{
  background-color: var(--color-gold);
  width: 340px;
}

@media (max-width: 767px) {
  .footer__btn{
    width: 75%;
  }
}

.footer__btn:hover{
  background: var(--color-bright-gold);
  color: var(--color-black);
}

.footer__copy {
  text-align: center;
  font-size: clamp(14px, 0.786rem + 0.45vw, 16px);
  padding: 20px 0;
  border-top: 1px solid var(--color-navy);
}

.page-top {
  display: block;
  position: fixed;
  bottom: -100px;
  right: 40px;
  background-color: rgba(51, 51, 51, 0.5);
  cursor: pointer;
  opacity: 0;
  width: 60px;
  height: 60px;
  z-index: 10;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .page-top {
    width: 40px;
    height: 40px;
    right: 5%;
  }
}

.page-top::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -25%) rotate(-45deg);
  border-top: 3px solid var(--color-white);
  border-right: 3px solid var(--color-white);
  height: 20px;
  width: 20px;
}
@media screen and (max-width: 767px) {
  .page-top::after {
    height: 10px;
    width: 10px;
  }
}

.page-top.active {
  bottom: 30px;
  opacity: 1;
}
