@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

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

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

body {
  min-height: 100vh;
  padding: 60px 20px;
  color: #222;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.7;
  background-color: #f4f1e1;
  background-image: url("../img/bg-body.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  background-attachment: fixed;
}

@media (max-width: 767px) {
  body {
    padding: 30px 15px;
  }
}
.l-footer {
  width: min(100%, 1280px);
  margin: 40px auto 80px;
  padding: 32px 20px;
  color: #333;
  text-align: center;
}

.l-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.l-footer__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.l-footer__info-row {
  display: flex;
  gap: 0.3em;
}

.l-footer__info-row dt::after {
  content: ":";
  margin-right: 0.3em;
}

.l-footer__registration,
.l-footer__contact {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.l-footer__contact-title {
  font-weight: 700;
}

.l-footer__contact-text a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

@media (max-width: 767px) {
  .l-footer {
    margin-top: 30px;
    padding: 28px 15px 70px;
  }
  .l-footer__info {
    flex-direction: column;
    gap: 4px;
  }
  .l-footer__info-row {
    align-items: flex-start;
    justify-content: center;
  }
  .l-footer__contact-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.l-main {
  width: min(100%, 1280px);
  min-height: calc(100vh - 120px);
  margin: 0 auto;
  padding-block: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
}

@media (max-width: 767px) {
  .l-main {
    min-height: calc(100vh - 60px);
    padding-block: 24px;
    background: none;
  }
}
.c-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: min(100%, 690px);
  margin-inline: auto;
}

.c-cta__note {
  width: 100%;
  color: #9ea0a6;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.05em;
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  text-align: center;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.c-button--cta {
  gap: 20px;
  width: 100%;
  min-height: 80px;
  padding: 28px 32px;
  background-color: #fe8d05;
  border-radius: 60px;
  box-shadow: 0 4px 3px rgba(0, 0, 0, 0.25);
}

.c-button--contact {
  gap: 20px;
  width: min(100%, 380px);
  min-height: 80px;
  padding: 16px 73px 16px 82px;
  background-color: #fe8d05;
  border-radius: 40px;
  box-shadow: 0 4px 3px rgba(0, 0, 0, 0.25);
}

.c-button__text {
  font-size: 24px;
  line-height: 20px;
  letter-spacing: 0.05em;
}

.c-button__icon {
  width: 10px;
  height: auto;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.c-button:hover,
.c-button:focus-visible {
  background-color: #ff9f24;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.22);
  opacity: 0.92;
  transform: translateY(-2px);
}

.c-button:hover .c-button__icon,
.c-button:focus-visible .c-button__icon {
  transform: translateX(6px);
}

.c-button:focus-visible {
  outline: 3px solid rgba(254, 141, 5, 0.35);
  outline-offset: 4px;
}

@media (max-width: 767px) {
  .c-cta {
    gap: 14px;
  }
  .c-cta__note {
    font-size: 12px;
    line-height: 1.6;
  }
  .c-button--cta {
    gap: 14px;
    min-height: 64px;
    padding: 20px 24px;
  }
  .c-button--contact {
    gap: 14px;
    min-height: 64px;
    padding: 20px 24px;
  }
  .c-button__text {
    font-size: 18px;
    line-height: 1.2;
  }
  .c-button__icon {
    width: 8px;
  }
}
.c-details-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: min(100%, 380px);
  padding: 30px 15px 44px;
  background-color: #f4df4e;
  border-radius: 10px;
}

.c-details-card__label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.05em;
}

.c-details-card__icon {
  width: 30px;
  height: 20px;
  object-fit: contain;
}

.c-details-card__icon--yen {
  width: 15px;
}

.c-details-card__value {
  color: #333;
  font-size: 32px;
  font-weight: 900;
  line-height: 30px;
  text-align: center;
  letter-spacing: 0.05em;
}

.c-details-card__value--emphasis {
  color: #fd2a0a;
}

.c-details-card__note {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  text-align: center;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .c-details-card {
    padding: 26px 15px 32px;
  }
  .c-details-card__label {
    font-size: 16px;
  }
  .c-details-card__value {
    font-size: 28px;
  }
  .c-details-card__note {
    font-size: 15px;
    line-height: 1.6;
  }
}
.c-hr {
  width: 100%;
  height: 0;
  margin: 0;
  border: 0;
  border-top: 2px solid #e6e7eb;
}

.c-session-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  font-size: 18px;
  font-weight: 900;
  line-height: 20px;
  letter-spacing: 0.05em;
  border-radius: 5px;
  white-space: nowrap;
}

.c-session-label--am {
  color: #1f40af;
  background-color: #dbeafe;
}

.c-session-label--pm {
  color: #9b3412;
  background-color: #ffedd5;
}

@media (max-width: 767px) {
  .c-session-label {
    padding: 8px 10px;
    font-size: 15px;
    line-height: 1.3;
  }
}
.c-profile-card {
  width: min(100%, 470px);
}

.c-profile-card__header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.c-profile-card__image {
  width: 220px;
  flex-shrink: 0;
}

.c-profile-card__image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
}

.c-profile-card__info {
  min-height: 117px;
  color: #333;
  letter-spacing: 0.05em;
}

.c-profile-card__role {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.c-profile-card__name {
  margin-top: 7px;
  font-size: 24px;
  font-weight: 900;
  line-height: 30px;
}

.c-profile-card__job,
.c-profile-card__company {
  color: #fe8d05;
  font-size: 16px;
  line-height: 20px;
}

.c-profile-card__job {
  margin-top: 10px;
  font-weight: 700;
}

.c-profile-card__company {
  margin-top: 10px;
  font-weight: 600;
}

.c-profile-card__body {
  margin-top: 15px;
  color: #333;
  font-size: 15px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .c-profile-card {
    width: 100%;
  }
  .c-profile-card__info {
    min-height: 0;
  }
  .c-profile-card__header {
    align-items: flex-start;
    gap: 16px;
  }
  .c-profile-card__image {
    width: min(42vw, 160px);
  }
  .c-profile-card__role,
  .c-profile-card__job,
  .c-profile-card__company {
    font-size: 13px;
    line-height: 1.5;
  }
  .c-profile-card__name {
    font-size: 20px;
    line-height: 1.4;
  }
  .c-profile-card__body {
    font-size: 13px;
    line-height: 1.8;
  }
}
@media (max-width: 480px) {
  .c-profile-card__header {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .c-profile-card__image {
    width: min(100%, 220px);
  }
  .c-profile-card__info {
    width: 100%;
    text-align: center;
  }
}
.c-section-title {
  position: absolute;
  top: -38px;
  left: 50%;
  z-index: 1;
  width: min(581px, 100% - 40px);
  min-height: 92px;
  margin: 0;
  transform: translateX(-50%);
}

.c-section-title__ribbon,
.c-section-title__ribbon img {
  width: 100%;
  height: auto;
}

.c-section-title__text {
  position: absolute;
  top: 42%;
  left: 50%;
  width: 100%;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  letter-spacing: 0.05em;
  transform: translate(-50%, -50%);
}

.c-section-title--pink .c-section-title__text {
  text-shadow: 0 3px 5px #134d83;
}

.c-section-title--blue .c-section-title__text {
  text-shadow: 0 3px 5px #134d83;
}

.c-section-title--orange .c-section-title__text {
  text-shadow: 0 3px 5px rgba(129, 73, 5, 0.5);
}

@media (max-width: 767px) {
  .c-section-title {
    top: -28px;
    width: min(360px, 100% - 30px);
    min-height: 58px;
  }
  .c-section-title__text {
    font-size: 16px;
    line-height: 1.25;
  }
}
@media (max-width: 480px) {
  .c-section-title {
    top: -34px;
    width: min(360px, 100% - 24px);
    min-height: 76px;
  }
  .c-section-title__ribbon,
  .c-section-title__ribbon img {
    height: 76px;
  }
  .c-section-title__ribbon img {
    object-fit: fill;
  }
  .c-section-title__text {
    top: 39%;
    padding-inline: 20px;
    font-size: 16px;
    line-height: 1.35;
    white-space: normal;
  }
}
.p-page-title,
.p-mv,
.p-cta-section {
  padding-inline: 20px;
}

.p-page-title__inner,
.p-mv__image,
.p-cta-section__inner {
  width: min(100%, 1150px);
  margin-inline: auto;
}

.p-page-title__text {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}

.p-mv {
  margin-top: 20px;
}

.p-cta-section {
  margin-top: 40px;
}

.p-mv__image img {
  width: 100%;
  height: auto;
}

.p-learning {
  max-width: 1150px;
  margin-inline: auto;
  margin-top: 80px;
  padding: 80px 20px 96px;
  background-color: #f4df4e;
  border-radius: 20px 20px 0 0;
}

.p-learning__inner {
  display: flex;
  flex-direction: column;
  gap: 77px;
  width: min(100%, 1055px);
  margin-inline: auto;
}

.p-learning__section {
  position: relative;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.p-learning-point {
  padding: 90px 50px 40px;
}

.p-learning-point__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 33px;
}

.p-learning-point__lead,
.p-learning-point__message {
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
  letter-spacing: 0.05em;
}

.p-learning-point__box {
  width: 100%;
  padding: 45px 51px;
  background-color: #fffdf9;
  border: 3px dashed #fed7aa;
  border-radius: 30px;
}

.p-learning-point__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.p-learning-point__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding-inline: 28px;
}

.p-learning-point__item + .p-learning-point__item {
  border-left: 2px dotted #fed7aa;
}

.p-learning-point__icon {
  width: 80px;
}

.p-learning-point__icon img {
  width: 100%;
  height: auto;
}

.p-learning-point__text {
  color: #000;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  letter-spacing: 0.05em;
}

.p-learning-point__text-accent--pink {
  color: #ff8996;
}

.p-learning-point__text-accent--blue {
  color: #3b82f6;
}

.p-learning-point__text-accent--green {
  color: #3fcd72;
}

.p-learning-point__catch {
  min-width: 450px;
  padding: 10px 36px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
  letter-spacing: 0.05em;
  background-color: #fe8d05;
  border-radius: 40px;
  box-shadow: 0 4px 2.5px rgba(0, 0, 0, 0.25);
}

.p-souvenir {
  padding: 70px 60px;
}

.p-souvenir__inner {
  display: flex;
  align-items: center;
  gap: 55px;
}

.p-souvenir__content {
  width: min(100%, 570px);
}

.p-souvenir__brand,
.p-souvenir__name {
  font-weight: 900;
  line-height: 20px;
  letter-spacing: 0.05em;
}

.p-souvenir__brand {
  color: #333;
  font-size: 24px;
}

.p-souvenir__name {
  margin-top: 23px;
  color: #fe8d05;
  font-size: 32px;
}

.p-souvenir__text {
  margin-top: 30px;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.05em;
}

.p-souvenir__image-wrap {
  width: 315px;
  flex-shrink: 0;
}

.p-souvenir__image {
  width: 100%;
}

.p-souvenir__image img {
  width: 100%;
  height: auto;
}

.p-souvenir__image-note {
  margin-top: 8px;
  color: #333;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
}

.p-speakers {
  padding: 96px 40px 44px;
}

.p-speakers__inner {
  display: flex;
  justify-content: center;
  gap: min(4.2vw, 45px);
}

.p-details {
  position: relative;
  width: min(100%, 1055px);
  margin: 80px auto 0;
  padding: 80px 40px 40px;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.p-details__inner {
  display: grid;
  grid-template-columns: minmax(0, 450px) minmax(0, 480px);
  gap: 45px;
  align-items: start;
}

.p-details__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-details__date-wrap {
  display: flex;
  align-items: flex-end;
  gap: 11px;
}

.p-details__date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background-color: #f3f4f6;
  border-radius: 10px;
}

.p-details__date-icon {
  width: 20px;
  flex-shrink: 0;
}

.p-details__date-text {
  color: #333;
  font-size: 20px;
  font-weight: 900;
  line-height: 20px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.p-details__reception {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.p-details__time-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: min(100%, 364px);
  margin-top: 20px;
}

.p-details__time-row {
  display: flex;
  align-items: center;
  gap: 11px;
}

.p-details__time {
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.p-details__closed {
  margin-top: 10px;
  padding-left: 20px;
  color: #d1211f;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.05em;
}

.p-details__place {
  display: flex;
  gap: 5px;
  padding-top: 20px;
  border-top: 2px solid #e5e7eb;
}

.p-details__place-icon {
  width: 15px;
  flex-shrink: 0;
}

.p-details__place-text {
  color: #333;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0.05em;
}

.p-details__parking {
  padding: 20px;
  color: #333;
  font-weight: 700;
  letter-spacing: 0.05em;
  background-color: #f3f4f6;
  border-radius: 10px;
}

.p-details__parking-title,
.p-details__parking-text {
  font-size: 20px;
  line-height: 30px;
}

.p-details__parking-text {
  margin-top: 5px;
}

.p-details__parking-note {
  margin-top: 5px;
  font-size: 14px;
  line-height: 20px;
}

.p-details__map {
  width: 100%;
  aspect-ratio: 480/540;
  overflow: hidden;
  border-radius: 10px;
}

.p-details__map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.p-details-notes {
  margin-top: 40px;
  padding-inline: 20px;
}

.p-details-notes__inner {
  display: flex;
  justify-content: center;
  gap: 31px;
  width: min(100%, 791px);
  margin-inline: auto;
}

.p-note {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 1055px);
  margin: 80px auto 0;
  padding: 30px 27px 56px;
  background-color: #f9fafb;
  border: 2px solid #e6e7eb;
  border-radius: 30px;
}

.p-note__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #000;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
}

.p-note__title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  background-color: #fe8d05;
  border-radius: 50%;
}

.p-note__title-text {
  line-height: 1.2;
}

.p-note .c-hr {
  margin-top: 30px;
}

.p-note__body {
  width: 100%;
  margin-top: 40px;
  padding: 40px 25px;
  background-color: #fff;
  border-radius: 10px;
}

.p-note__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.p-note__item {
  position: relative;
  padding-left: 1em;
  color: #444e5d;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.05em;
}

.p-note__item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
}

.p-note__underline {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.p-note .c-button--contact {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .p-page-title,
  .p-cta-section {
    padding-inline: 15px;
  }
  .p-page-title__text {
    font-size: 16px;
    line-height: 1.5;
  }
  .p-mv {
    padding-inline: 0;
    margin-top: 15px;
  }
  .p-cta-section {
    margin-top: 30px;
  }
  .p-learning {
    margin-top: 50px;
    padding: 56px 15px 60px;
  }
  .p-learning__inner {
    gap: 58px;
  }
  .p-learning-point {
    padding: 56px 20px 30px;
  }
  .p-learning-point__content {
    gap: 24px;
  }
  .p-learning-point__lead,
  .p-learning-point__message {
    font-size: 16px;
    line-height: 1.8;
  }
  .p-learning-point__lead span {
    display: inline-block;
  }
  .p-learning-point__box {
    padding: 28px 20px;
  }
  .p-learning-point__list {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .p-learning-point__item {
    gap: 16px;
    padding-inline: 0;
  }
  .p-learning-point__item + .p-learning-point__item {
    padding-top: 28px;
    border-top: 2px dotted #fed7aa;
    border-left: 0;
  }
  .p-learning-point__icon {
    width: 64px;
  }
  .p-learning-point__text {
    font-size: 19px;
  }
  .p-learning-point__catch {
    min-width: 0;
    width: 100%;
    padding-inline: 18px;
    font-size: 15px;
    line-height: 1.6;
  }
  .p-souvenir {
    padding: 56px 20px 30px;
  }
  .p-souvenir__inner {
    flex-direction: column;
    gap: 24px;
  }
  .p-souvenir__brand {
    font-size: 18px;
    line-height: 1.5;
  }
  .p-souvenir__name {
    margin-top: 10px;
    font-size: 24px;
    line-height: 1.4;
  }
  .p-souvenir__text {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.8;
  }
  .p-souvenir__image-wrap {
    width: min(100%, 315px);
  }
  .p-speakers {
    padding: 56px 20px 30px;
  }
  .p-speakers__inner {
    flex-direction: column;
    gap: 36px;
  }
  .p-details {
    margin-top: 58px;
    padding: 56px 20px 30px;
  }
  .p-details__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .p-details__date-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
  .p-details__date {
    padding: 12px 14px;
  }
  .p-details__date-text {
    font-size: 16px;
    line-height: 1.4;
  }
  .p-details__reception {
    font-size: 13px;
  }
  .p-details__time-list {
    width: 100%;
  }
  .p-details__time-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .p-details__time {
    font-size: 18px;
    line-height: 1.5;
    white-space: normal;
  }
  .p-details__closed {
    padding-left: 0;
    font-size: 15px;
  }
  .p-details__place-text {
    font-size: 16px;
    line-height: 1.7;
  }
  .p-details__parking {
    padding: 20px 16px;
  }
  .p-details__parking-title,
  .p-details__parking-text {
    font-size: 16px;
    line-height: 1.7;
  }
  .p-details__parking-note {
    font-size: 14px;
    line-height: 1.6;
  }
  .p-details-notes {
    margin-top: 30px;
    padding-inline: 15px;
  }
  .p-details-notes__inner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .p-note {
    margin-top: 50px;
    padding: 24px 15px 36px;
    border-radius: 20px;
  }
  .p-note__title {
    align-items: flex-start;
    font-size: 18px;
  }
  .p-note__title-icon {
    width: 26px;
    height: 26px;
    font-size: 20px;
    flex-shrink: 0;
  }
  .p-note__body {
    padding: 28px 18px;
  }
  .p-note__list {
    gap: 18px;
  }
  .p-note__item {
    font-size: 14px;
    line-height: 1.7;
  }
}
.u-hidden-sp {
  display: block;
}

.u-hidden-pc {
  display: none;
}

.u-br-pc {
  display: block;
}

@media (max-width: 767px) {
  .u-hidden-sp {
    display: none;
  }
  .u-hidden-pc {
    display: block;
  }
  .u-br-pc {
    display: none;
  }
}

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