@charset "UTF-8";

:root {
  /* Colors */
  --color-navy: #15315b;
  --color-navy-mid: #1a3a5c;
  --color-gold: #b8966a;
  --color-gold-light: #d8bc95;
  --color-white: #ffffff;
  --color-gray: #8899aa;
  --color-text: #2c3e50;
  --color-text-light: #49535d;
  --color-bg-light: #f0f4f8;
  --color-txt: #eeedea;

  /* Typography */
  --font-sans: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;

  /* Spacing */
  --space-xs: 8rem;
  --space-sm: 16rem;
  --space-md: 32rem;
  --space-lg: 64rem;
  --space-xl: 96rem;

  /* Border Radius */
  --radius-md: 8px;

  /* Transition */
  --transition: 0.25s ease;
}

/* ---------------------------------------common set */

/* -------------------------
   共通設定
------------------------- */
html {
  font-size: 1px; /* PC基準: 1rem = 1px */
  overscroll-behavior: none;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

/* -------------------------
   スマホ（〜767px）
   → 375px幅を基準に拡大
------------------------- */
@media (max-width: 767px) {
  html {
    font-size: calc(100vw / 375);
  }
}

/* -------------------------
   PC（768〜1440px）
   → デザイン幅1440px基準で縮小
------------------------- */
@media (min-width: 768px) and (max-width: 1440px) {
  html {
    font-size: calc(100vw / 1440);
  }
}

/* 1440px以上：bl_heroだけスケールを継続 */
@media (min-width: 1441px) {
  .bl_hero {
    font-size: calc(100vw / 1440);
  }
}

/* CSS STYLE */

body {
  font-family: var(--font-sans);
  font-size: 15rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
}
@media only screen and (max-width: 959px) {
  body {
    font-size: 13rem;
  }
}

/* スクロール位置対策 */
[id] {
  scroll-margin-top: 80rem;
}

@media (max-width: 767px) {
  [id] {
    scroll-margin-top: 67rem;
  }
}

a,
a img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none;
}

iframe {
  vertical-align: bottom;
}
.cb {
  clear: both;
}
.pcnone {
  display: none !important;
}
.nolink {
  pointer-events: none;
  color: #999 !important;
}
/* pc-sp切り替え */
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}
@media only screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
.anchor {
  padding-top: 80rem;
  margin-top: -80rem;
}

/* ============================================================
   Layout
   ============================================================ */

.ly_inner {
  max-width: 1240rem;
  margin-inline: auto;
}

@media (max-width: 767px) {
  .ly_inner {
    max-width: 343rem;
    margin: 0 24rem;
  }
}
/* ============================================================
   Element - Button
   ============================================================ */

.el_btn {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 420rem;
  padding: 5rem;
  background: radial-gradient(#ce6200, #ef9118) #ef9118;
  font-size: 24rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  cursor: pointer;
  border: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  line-height: 72rem;
  color: var(--color-white);
  font-family: var(--font-serif);
}

@media only screen and (max-width: 767px) {
  .el_btn {
    font-size: 20rem;
    line-height: 68rem;
  }
}

.el_btn::after {
  content: "";
  width: 100%;
  height: 40rem;
  position: absolute;
  z-index: 1;
  background: url("../img/deco_shadow.webp") center top no-repeat;
  background-size: contain;
  left: 0;
  bottom: -40rem;
}

.el_btn_inner {
  position: relative;
  display: block;
  border: solid 1px var(--color-bg-light);
}

.el_btn_inner::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 11rem;
  height: 11rem;
  background: url(../img/deco_triangle_bottom.svg) right bottom no-repeat;
  background-size: contain;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.el_btn:hover {
  opacity: 1;
  background: radial-gradient(rgb(216, 107, 12), #ce6200) #d78317;
  transform: translateY(-1px);
}
.el_btn:hover .el_btn_inner::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 22rem;
  height: 22rem;
  background: url(../img/deco_triangle_bottom.svg) right bottom no-repeat;
  background-size: contain;
}

.bl_cta_container {
  max-width: 520rem;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ============================================================
   Element - Speaker Avatar
   ============================================================ */

.el_speakerAvatar {
  width: 140rem;
  height: 140rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-navy-mid), var(--color-gray));
}

.el_speakerAvatar img {
  border-radius: 50%;
}

@media only screen and (max-width: 767px) {
  .el_speakerAvatar {
    width: 120rem;
    height: 120rem;
  }
}

/* ============================================================
   Block - Section Head
   ============================================================ */

.bl_sectionHead {
  margin-bottom: var(--space-sm);
}

.bl_sectionHead_title {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 500;
  font-size: 76rem;
  line-height: 100%;
  color: var(--color-gold-light);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: 24rem;
  font-feature-settings: "palt";
}

.bl_sectionHead_sub {
  font-size: 24rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
  font-family: "Times New Roman", Times, serif;
}

.bl_sectionHead_title.bl_sectionHead_title__entry {
  flex-flow: column;
  margin-bottom: 60rem;
}

.bl_sectionHead_title.bl_sectionHead_title__entry .bl_sectionHead_sub {
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .bl_sectionHead_title {
    font-size: 36rem;
    text-align: center;
    flex-direction: column;
    gap: 0;
  }
  .bl_sectionHead_sub {
    font-size: 15rem;
  }
  .bl_sectionHead_title.bl_sectionHead_title__entry {
    gap: var(--space-sm);
    margin-bottom: 40rem;
  }
}

/* ============================================================
   Block - Header
   ============================================================ */

.bl_header {
  background-color: white;
}

.bl_header_inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  width: 100%;
}

.bl_header_logo {
  display: block;
  padding: 8rem 40rem 8rem 40rem;
}

.bl_header_logo figure {
  width: 200rem;
}

.bl_header_logoText {
  font-size: 18rem;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.1em;
}

.bl_header_logoSub {
  font-size: 9rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

.bl_header_nav {
  margin-left: auto;
  padding: 0 40rem 0 0;
}

.bl_header_navList {
  display: flex;
  gap: var(--space-lg);
}

.bl_header_navLink {
  font-size: 20rem;
  font-weight: 600;
  color: var(--color-navy);
  font-family: var(--font-serif);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.bl_header_navLink:hover {
  color: var(--color-gold-light);
}

.el_btn__header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 240rem;
  font-size: 18rem;
  font-weight: 600;
  font-family: var(--font-serif);
  height: 74rem;
  line-height: 150%;
  color: var(--color-white);
  background: radial-gradient(#ce6200, #ef9118) #ef9118;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.el_btn__header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 21rem;
  height: 16rem;
  background: url("../img/deco_triangle.svg") left top no-repeat;
  background-size: contain;
}

.el_btn__header:hover {
  background: radial-gradient(rgb(216, 107, 12), #ce6200) #d78317;
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .bl_header_inner {
    gap: 12rem;
  }
  .bl_header_logo {
    display: block;
    padding: var(--space-xs) var(--space-xs) var(--space-xs) var(--space-sm);
  }

  .bl_header_logo figure {
    width: 110rem;
  }
  .bl_header_nav {
    padding: 0;
  }
  .bl_header_navList {
    gap: var(--space-xs);
  }

  .bl_header_navLink {
    font-size: 11rem;
    border-left: solid 1px var(--color-gray);
    padding-left: var(--space-xs);
  }

  .el_btn__header {
    width: 80rem;
    font-size: 12rem;
    height: 60rem;
  }
  .el_btn__header::before {
    content: "";
    position: absolute;
    left: -1rem;
    top: -1rem;
    width: 14rem;
    height: 12rem;
    background: url("../img/deco_triangle.svg") left top no-repeat;
    background-size: contain;
  }
}
/* ============================================================
   Element - Scroll Indicator　go top
   ============================================================ */

.el_scroll {
  position: fixed;
  right: var(--space-xs);
  bottom: 220rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  z-index: 10;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}
.el_scroll.is_hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.el_gotop {
  position: fixed;
  right: var(--space-xs);
  bottom: 160rem;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: var(--space-xs);
  z-index: 10;
  opacity: 0;
  visibility: visible;
  transition: opacity 0.3s ease;
}

.el_gotop.is_show {
  opacity: 1;
  visibility: visible;
}

/* ============================================================
   Element - Fixed Entry Button
   ============================================================ */
.el_fixedEntry {
  position: fixed;
  right: 24rem;
  bottom: 24rem;
  z-index: 20;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0s linear 0s;
}
.el_fixedEntry.is_hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12rem);
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0s linear 0.4s;
}

.el_fixedEntry_btn {
  width: 320rem;
  display: block;
}

.el_fixedEntry_btn:hover {
  background: var(--color-gold-light);
  transform: translateY(-2rem);
}

@media only screen and (max-width: 767px) {
  .el_fixedEntry {
    right: 12rem;
    bottom: 12rem;
  }

  .el_fixedEntry_btn {
    width: 160rem;
  }
}

.el_scroll_text,
.el_gotop_text {
  font-family: "Times";
  font-style: normal;
  font-weight: 400;
  font-size: 16rem;
  line-height: 165%;
  color: #b8966a;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  margin-bottom: var(--space-sm);
  user-select: none;
}

.el_gotop_text {
  color: var(--color-txt);
}

@media only screen and (max-width: 767px) {
  .el_scroll_text,
  .el_gotop_text {
    font-size: 12rem;
  }
}

.el_scroll_line,
.el_gotop_line {
  position: relative;
  width: 1px;
  height: 100rem;
  background: #97754b;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.el_gotop_line {
  background: var(--color-txt);
}
.el_scroll_dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: #b8966a;
  animation: scrollDotMove 2s ease-in-out infinite;
}

@keyframes scrollDotMove {
  0% {
    top: 0;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    top: calc(100% - 7rem);
    opacity: 0;
  }
}

@media only screen and (max-width: 767px) {
  .el_scroll,
  .el_gotop {
    position: fixed; /* または absolute でヒーロー内に配置 */
    right: 4rem;
    bottom: 100rem;
  }
}

/* ============================================================
   Block - Hero
   ============================================================ */

.bl_hero {
  --u: calc(100vw / 1440);
  position: relative;
  background:
    url("../img/hero_deco_line_pc.svg") left bottom no-repeat,
    url("../img/hero_bg_pc.webp") center no-repeat,
    var(--color-navy-mid);
  background-size:
    100% auto,
    cover;
  padding: calc(32 * var(--u)) 0 calc(260 * var(--u)) 0;
  overflow: hidden;
}

.bl_hero .ly_inner {
  max-width: calc(1200 * var(--u));
  margin-inline: auto;
}

.bl_hero_inner {
  position: relative;
}

.bl_hero_label {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 700;
  font-size: calc(24 * var(--u));
  line-height: 200%;
  color: var(--color-gold-light);
  margin-bottom: 8rem;
}

.bl_hero_heading {
  position: relative;
  font-family: var(--font-serif);
  font-size: calc(62 * var(--u));
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
  background: url("../img/hero_deco_01_pc.svg") left center no-repeat;
  background-size: contain;

  padding: calc(40 * var(--u)) calc(40 * var(--u));
}

.bl_hero_heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: calc(80 * var(--u));
  height: 100%;
  background: url("../img/hero_deco_line_pc_front.svg") left center repeat-y;
  background-size: contain;
}

.bl_hero_heading_inner {
  position: relative;
}

.el_color {
  color: #97734b;
}

.el_small {
  font-size: calc(58 * var(--u));
}

.bl_hero_badge {
  position: absolute;
  left: calc(580 * var(--u));
  top: calc(190 * var(--u));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: calc(148 * var(--u));
  height: calc(148 * var(--u));
  background: linear-gradient(309.27deg, #5e575b 4.86%, #8b7f7a 96.66%);
}

.bl_hero_badgeText {
  font-size: calc(26 * var(--u));
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--color-white);
  text-align: center;
  line-height: 1.3;
}

.bl_hero_info {
  margin-bottom: var(--space-md);
}

.bl_hero_date {
  color: var(--color-txt);
  font-size: calc(40 * var(--u));
  font-weight: 600;
  margin-bottom: calc(8 * var(--u));
  font-family: var(--font-serif);
  line-height: 1em;
}

.bl_hero_dateNum {
  color: var(--color-gold-light);
  font-size: calc(80 * var(--u));
  font-weight: 700;
}

.bl_hero_dateDay {
  font-size: 16rem;
  margin-left: 4px;
}

.bl_hero_time {
  font-weight: 600;
  font-size: calc(32 * var(--u));
  line-height: 120%;
  letter-spacing: 0.05em;
  margin-bottom: calc(8 * var(--u));
  color: var(--color-txt);
  font-family: var(--font-serif);
}

.bl_hero_time .el_reception-hours {
  font-size: calc(22 * var(--u));
}

.bl_hero_venue {
  color: var(--color-txt);
  font-weight: 600;
  font-size: calc(22 * var(--u));
  margin-bottom: calc(16 * var(--u));
  font-family: var(--font-serif);
}

.bl_hero_meta {
  color: var(--color-gold-light);
  font-size: calc(18 * var(--u));
  display: flex;
  gap: calc(40 * var(--u));
  margin-bottom: calc(60 * var(--u));
}

.bl_hero_meta p {
  display: flex;
  align-items: center;
  gap: calc(8 * var(--u));
}

.el_capacity::before {
  content: "";
  display: block;
  width: calc(26 * var(--u));
  height: calc(26 * var(--u));
  background: url("../img/ic_member.svg") center no-repeat;
  background-size: contain;
}

.el_fee::before {
  content: "";
  display: block;
  width: calc(26 * var(--u));
  height: calc(26 * var(--u));
  background: url("../img/ic_ticket.svg") center no-repeat;
  background-size: contain;
}

.el_btn.el_btn__hero {
  max-width: calc(400 * var(--u));
}
.el_btn.el_btn__hero {
  margin-bottom: calc(26 * var(--u));
}
.el_entry-caption {
  position: relative;
  color: var(--color-gold-light);
  font-size: calc(18 * var(--u));
  font-weight: normal;
}

@media only screen and (min-width: 768px) {
  .bl_hero .el_btn.el_btn__hero {
    padding: calc(5 * var(--u));
    font-size: calc(24 * var(--u));
    line-height: calc(72 * var(--u));
  }
}

/* Hero Decorations */
.bl_hero_deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bl_hero_decoShape {
  position: absolute;
}

.bl_hero_decoShape__1 {
  right: 0;
  bottom: calc(146 * var(--u));
  width: calc(258 * var(--u));
  height: calc(616 * var(--u));
  background: url("../img/hero_decoshape__1.svg") center no-repeat;
  background-size: contain;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.bl_hero_decoShape__2 {
  left: calc(968 * var(--u));
  top: calc(-120 * var(--u));
  width: calc(476 * var(--u));
  height: calc(490 * var(--u));
  background: url("../img/hero_decoshape__2.svg") center no-repeat;
  background-size: contain;
}
.bl_hero_decoShape__2.fade.active {
  animation: decoShape2Float 0.8s ease-in-out;
}
@keyframes decoShape2Float {
  from {
    transform: translate(calc(300 * var(--u)), calc(-300 * var(--u)));
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.bl_hero_decoShape__3 {
  left: calc(859 * var(--u));
  top: calc(600 * var(--u));
  width: calc(187 * var(--u));
  height: calc(193 * var(--u));
  background: url("../img/hero_decoshape__3.svg") center no-repeat;
  background-size: contain;
}

.bl_hero_decoShape__3.fade.active {
  animation: decoShape3Float 1.5s ease-in-out;
}
@keyframes decoShape3Float {
  0% {
    transform: translate(calc(-600 * var(--u)), calc(600 * var(--u)));
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.bl_hero_decoShape__4 {
  left: calc(850 * var(--u));
  top: calc(-40 * var(--u));
  width: calc(518 * var(--u));
  height: calc(464 * var(--u));
  background: url("../img/hero_decoshape__4.svg") center no-repeat;
  background-size: contain;
  z-index: 1;
}
.bl_hero_decoShape__4.fade.active {
  animation: decoShape4Float 1s ease-in-out;
}
@keyframes decoShape4Float {
  from {
    transform: translateX(calc(400 * var(--u)));
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.bl_hero_decoShape__5 {
  left: calc(777 * var(--u));
  top: calc(278 * var(--u));
  width: calc(358 * var(--u));
  height: calc(386 * var(--u));
  background: url("../img/hero_decoshape__5.svg") center no-repeat;
  background-size: contain;
  z-index: 1;
}

.bl_hero_decoShape__5.active {
  animation: decoShape5Float 1s ease-in-out;
}

@keyframes decoShape5Float {
  0% {
    transform: translate(calc(-500 * var(--u)), calc(600 * var(--u)));
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* ============================================================
   Block - Hero / SP（〜767px）
   ============================================================ */

@media (max-width: 767px) {
  .bl_hero_wrap {
    background: url(../img/hero_bg_sp.webp) top center no-repeat;
    background-size: cover;
  }
  .bl_hero {
    --u: calc(100vw / 375);

    padding: 16rem 0 160rem;
    background:
      url("../img/hero_deco_line_sp.svg") left bottom no-repeat,
      var(--color-navy-mid);
  }

  .bl_hero .ly_inner {
    max-width: 343rem;
    padding-top: 0;
  }

  .bl_hero_label {
    font-size: 17rem;
  }
  .bl_hero_label span {
    display: block;
  }

  .bl_hero_heading {
    font-size: 33rem;
    padding: 20rem 16rem;
    background: url(../img/hero_deco_01_pc.svg) left center no-repeat;
    background-size: auto 100%;
  }

  .bl_hero_heading::before {
    display: none;
  }

  .el_small {
    font-size: 30rem;
  }

  .bl_hero_badge {
    left: auto;
    right: 0;
    top: 100rem;
    width: 90rem;
    height: 90rem;
  }

  .bl_hero_badgeText {
    font-size: 16rem;
  }

  .bl_hero_date {
    font-size: 20rem;
    margin-bottom: 8rem;
  }

  .bl_hero_dateNum {
    font-size: 40rem;
  }

  .bl_hero_time {
    font-size: 20rem;
    margin-bottom: 8rem;
  }

  .bl_hero_time .el_reception-hours {
    font-size: 13rem;
  }

  .bl_hero_venue {
    font-size: 13rem;
    margin-bottom: var(--space-sm);
  }

  .bl_hero_meta {
    font-size: 12rem;
    gap: var(--space-sm);
    margin-bottom: 0;
  }

  .bl_hero_meta p {
    gap: 4rem;
  }

  .el_capacity::before,
  .el_fee::before {
    width: 16rem;
    height: 16rem;
  }
  .bl_hero_cta {
    width: 310rem;
    margin: 0 auto;
    padding-top: var(--space-xs);
  }

  .el_entry-caption {
    font-size: 12rem;
    text-align: center;
  }
  .bl_hero_decoShape__1 {
    top: auto;
    bottom: 80rem;
    right: 0;
    width: 164rem;
    height: 200rem;
    z-index: 0;
    background: url("../img/hero_decoshape__1_sp.svg") bottom center no-repeat;
  }

  .bl_hero_decoShape__2 {
    left: auto;
    right: 0;
    top: -30rem;
    width: 162rem;
    height: 175rem;
    z-index: 0;
  }

  .bl_hero_decoShape__3 {
    left: 56rem;
    right: auto;
    top: auto;
    bottom: 79rem;
    width: 246rem;
    height: 244rem;
  }

  .bl_hero_decoShape__4 {
    right: auto;
    left: 208rem;
    top: 174rem;
    width: 287rem;
    height: 257rem;
    z-index: 0;
  }

  .bl_hero_decoShape__5 {
    display: none;
  }
}

/* ============================================================
   Block - Program
   ============================================================ */

.bl_program {
  background-color: var(--color-navy);
  padding-block: 0 var(--space-xl);
}

.bl_program_list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 80rem;
}

.bl_programItem {
  position: relative;
  display: grid;
  grid-template-columns: 220rem 1fr 200rem;
  gap: var(--space-sm);
  align-items: center;
  padding: 28rem 48rem 28rem 28rem;
  background: url(../img/deco_triangle_gold.svg) left top no-repeat #f8f6f2;
  background-size: 22rem;

  transition: var(--transition);
}

.bl_programItem.is_modal::after {
  content: "";
  width: 22rem;
  height: 22rem;
  position: absolute;
  right: 12rem;
  bottom: 12rem;
  background: url(../img/ic_detail.svg) center no-repeat;
  background-size: contain;
}

.bl_programItem.bl_programItem__double-speaker {
  display: grid;
  grid-template-columns: 220rem 1fr 400rem;
}

.bl_programItem.bl_programItem__networking {
  display: grid;
  grid-template-columns: 220rem 1fr;
  background: url(../img/deco_triangle_blue.svg) left top no-repeat #ecf4fc;
  background-size: 22rem;
}

.bl_programItem_time {
  text-align: center;

  background: #efebe4;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 20rem;
  padding-bottom: 24rem;
}

.bl_programItem.bl_programItem__networking .bl_programItem_time {
  background: #cae0f7;
}

.bl_programItem_timeLabel {
  font-style: normal;
  font-weight: 700;
  font-size: 12rem;
  line-height: 18rem;
  color: var(--color-gold);
  letter-spacing: 2rem;
  margin-bottom: 4rem;
}

.bl_programItem.bl_programItem__networking .bl_programItem_timeLabel {
  color: var(--color-gray);
}
.bl_programItem_timeValue {
  font-family: "Times";
  font-style: normal;
  font-weight: 400;
  font-size: 22rem;
  line-height: 100%;
  color: var(--color-navy);
  white-space: nowrap;
}

.bl_programItem_body {
  padding: 0 24rem;
}

.bl_programItem_category {
  font-size: 14rem;
  color: #7da0c4;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 4rem;
}

.bl_programItem_title {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 700;
  font-size: 24rem;
  line-height: 175%;
  letter-spacing: 0.05em;

  color: var(--color-navy);
  margin-bottom: 20rem;
}

.bl_programItem_desc {
  font-weight: 400;
  font-size: 15rem;
  line-height: 175%;
  color: var(--color-text-light);
}
.bl_programItem_speakers {
  display: flex;
}
.bl_programItem_speaker {
  width: 200rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xs);
  padding: 0 var(--space-xs);
}

.bl_programItem_speakerInfo {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.bl_programItem_speakerName {
  font-size: 15rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 4rem;
  line-height: 1.5em;
}

.bl_programItem_speakerName span {
  font-size: 11rem;
  display: block;
}

.bl_programItem_speakerRole {
  font-size: 11rem;
  color: var(--color-text-light);
}

@media only screen and (max-width: 767px) {
  .bl_programItem,
  .bl_programItem.bl_programItem__double-speaker,
  .bl_programItem.bl_programItem__networking {
    display: flex;
    flex-direction: column;
    padding: 24rem;
  }
  .bl_programItem_speakers {
    display: flex;
    flex-direction: column;
  }
  .bl_programItem_time {
    text-align: center;

    background: #efebe4;
    aspect-ratio: 262 / 68;
    width: 100%;
    gap: 4rem;
    padding-bottom: 0;
  }
  .bl_programItem_body {
    padding: 0;
  }

  .bl_programItem_speakerInfo {
    padding: 0 24rem;
  }
  .bl_programItem_title {
    font-size: 18rem;
  }
  .bl_programItem_desc {
    font-size: 13rem;
  }
  .bl_programItem_speakers {
    display: flex;
    gap: var(--space-sm);
  }
  .bl_programItem_speaker {
    width: 100%;
  }
}

/* ============================================================
   Block - Detail
   ============================================================ */

.bl_detail {
  position: relative;
  background: url("../img/detail_bg.webp") center no-repeat;
  background-size: cover;
  padding: 80rem 0 0 0;
  overflow: hidden;
}

.bl_detail::before {
  content: "";
  width: 670rem;
  height: 454rem;
  position: absolute;
  top: 0;
  right: -170rem;
  background: url("../img/detail_decoshape__1.svg") top left no-repeat;
  background-size: contain;
}

.bl_detail_grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  background-color: var(--color-navy);
  padding: 60rem;
  position: relative;
}

.bl_detailTable {
  width: 100%;
  border-collapse: collapse;
}

.bl_detailTable_row {
  background: #f8f6f2;
  background-size: 14rem;
  border-bottom: 2px solid var(--color-navy);
  vertical-align: middle;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20rem;
  line-height: 175%;
  letter-spacing: 0.05em;
}

.bl_detailTable_row:last-child {
  border-bottom: none;
}

.bl_detailTable_head {
  padding: 20rem 40rem;
  color: #97734b;
  white-space: nowrap;
  width: 80rem;
}

.bl_detailTable_data {
  padding: 20rem 40rem;

  color: var(--color-navy);
}

.bl_detail_target {
  background: #f8f6f2;
  background-size: 14rem;
  padding: 40rem;
}

.bl_detail_targetTitle {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20rem;
  line-height: 175%;
  margin-bottom: var(--space-sm);
  letter-spacing: 0.05em;
  color: #97734b;
}

.bl_detail_targetList {
  display: flex;
  flex-direction: column;
  gap: 12rem;
}

.bl_detail_targetItem {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20rem;
  color: var(--color-navy);
  line-height: 1.6;
  padding-left: var(--space-sm);
  padding-bottom: var(--space-sm);
  position: relative;
}
.bl_detail_targetItem:not(:last-child) {
  border-bottom: solid 1px #d9d4ca;
}

.bl_detail_targetItem.el_caption {
  font-size: 15rem;
  color: var(--color-text-light);
  font-family: var(--font-sans);
  font-weight: 400;
  padding-left: 0;
}

.bl_detail_targetItem::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10rem;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: var(--color-gold);
}

.bl_detail_targetItem.el_caption::before {
  display: none;
}
.bl_detail_decoShape {
  width: 100%;
  aspect-ratio: 144 / 40;
  background: url("../img/detail_decoshape__2.svg") bottom center no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 767px) {
  .bl_detail::before {
    content: "";
    width: 276rem;
    height: 220rem;
    position: absolute;
    top: 0;
    right: -140rem;
    background: url("../img/detail_decoshape__1_sp.svg") top left no-repeat;
    background-size: contain;
  }

  .bl_detail {
    padding-top: 40rem;
  }

  .bl_detail_grid {
    padding: 0;
    gap: 2px;
  }

  .bl_detailTable,
  .bl_detailTable tbody,
  .bl_detailTable_row {
    display: block;
    width: 100%;
  }

  .bl_detailTable_row {
    padding: 0;
    border-bottom: 2px solid var(--color-navy);
  }

  .bl_detailTable_head {
    display: block;
    width: 100%;
    padding: 14rem 20rem 0;
    font-size: 13rem;
    white-space: normal;
    line-height: 175%;
  }

  .bl_detailTable_data {
    display: block;
    width: 100%;
    padding: 0 20rem 16rem;
    font-size: 15rem;
    line-height: 175%;
  }

  .bl_detail_target {
    padding: 20rem;
  }

  .bl_detail_targetTitle {
    font-size: 15rem;
    margin-bottom: 12rem;
  }

  .bl_detail_targetItem {
    font-size: 15rem;
    padding-left: 14rem;
  }

  .bl_detail_targetItem::before {
    top: 9rem;
  }

  .bl_detail_targetItem.el_caption {
    font-size: 12rem;
  }

  .bl_detail_decoShape {
    width: 100%;
    aspect-ratio: 377 / 168;
    background: url("../img/detail_decoshape__2_sp.svg") bottom center no-repeat;
    background-size: contain;
  }
}

/* ============================================================
   Block - Organizer
   ============================================================ */

.bl_organizer {
  padding: 80rem 0 0;
  position: relative;
  text-align: center;
}

.bl_organizer::before {
  content: "";
  position: absolute;
  width: 670rem;
}

.bl_organizer_heading {
  display: inline-block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 28rem;
  color: var(--color-white);

  margin-bottom: var(--space-md);
  padding-bottom: 12rem;
  border-bottom: 2px solid var(--color-gold);
}

.bl_organizer_content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.bl_organizer_logo {
  flex-shrink: 0;
  width: 400rem;
}

.bl_organizer_logoText {
  font-size: 22rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.05em;
}

.bl_organizer_text p {
  font-size: 18rem;
  color: var(--color-txt);
  line-height: 2;
  margin-bottom: 8rem;
  text-align: left;
}

.bl_organizer_text p:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .bl_organizer {
    padding: 48rem 0;
  }

  .bl_organizer::before {
    display: none;
  }

  .bl_organizer_heading {
    font-size: 20rem;
    margin-bottom: var(--space-sm);
    padding-bottom: 10rem;
  }

  .bl_organizer_content {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }

  .bl_organizer_logo {
    width: 100%;
    max-width: 280rem;
  }
  .bl_organizer_text {
    padding: 0 24rem;
  }
  .bl_organizer_text p {
    font-size: 14rem;
    line-height: 1.8;
    margin-bottom: 12rem;
    text-align: left;
  }
}

/* ============================================================
   Block - Entry
   ============================================================ */

.bl_entry {
  background-color: var(--color-navy);
  padding: var(--space-xl) 0 80rem 0;
}

.bl_entry_note {
  font-size: 18rem;
  color: var(--color-txt);
  text-align: center;
  line-height: 2;
  margin-bottom: 24rem;
}

.bl_entry_meta {
  font-size: 18rem;
  color: var(--color-gold-light);
  display: flex;
  gap: 40rem;
  margin-bottom: 40rem;
  justify-content: center;
  align-items: center;
}

.bl_entry_meta p {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.bl_entry_meta .el_capacity::before {
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  background: url("../img/ic_member.svg") center no-repeat;
  background-size: contain;
}

.el_fee::before {
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  background: url("../img/ic_ticket.svg") center no-repeat;
  background-size: contain;
}

.bl_entry_formNote {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background-color: #e8f0fe;
  border-radius: var(--radius-md);
  font-size: 13px;
  color: #3a5a9a;
  margin-bottom: var(--space-lg);
}

.bl_entry_formNoteIcon {
  font-size: 16px;
}

.bl_entry_form {
  max-width: 980px; /*フォーム部分px設定*/
  margin: 0 auto;
  padding: 0 24rem;
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .bl_entry {
    padding-bottom: 40rem;
  }

  .bl_entry_note {
    font-size: 15rem;
  }

  .bl_entry_meta {
    font-size: 13rem;
    gap: 16rem;
  }

  .bl_entry_form {
    padding: 0;
  }
}

/* ============================================================
   Block - Footer
   ============================================================ */

/* -------------------------------------------------------------------------- FOOTER */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  border-top: 1rem solid #e6e6e6;
  background-color: #fff;
  width: 100%;
  padding: 20rem 50rem 30rem 50rem;
  z-index: 2;
}
footer .logo {
  display: flex;
  align-items: flex-end;
  font-size: 10rem;
  letter-spacing: 0.7rem;
  line-height: 1.4;
  color: #848484;
}
footer .logo img {
  width: 120rem;
  margin-right: 20rem;
}
footer .gft-cybertrust {
  width: 100rem;
  height: 72rem;
}

@media only screen and (max-width: 767px) {
  footer {
    padding: 35rem 20rem 45rem 20rem;
  }
  footer .logo {
    font-size: 9rem;
    line-height: 1.2;
    flex-direction: column;
    align-items: flex-start;
  }
  footer .logo img {
    display: block;
    margin-bottom: 1.5rem;
    margin-right: auto;
  }
  footer .gft-cybertrust {
    width: 100rem;
    height: 72rem;
  }
}
/* ============================================================
   Helper
   ============================================================ */

.hp_visually_hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   fade
   ============================================================ */
.fade {
  opacity: 0;
  -webkit-transition: 0.6s linear;
  transition: 0.6s linear;
}
.fade.active {
  opacity: 1;
}
.fade-l {
  position: relative;
  opacity: 0;
  -webkit-transform: translate(-20rem, 0);
  transform: translate(-20rem, 0);
  -webkit-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
}
.fade-l.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.fade-r {
  position: relative;
  opacity: 0;
  -webkit-transform: translate(20rem, 0);
  transform: translate(20rem, 0);
  -webkit-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
}
.fade-r.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.fade-t {
  position: relative;
  opacity: 0;
  -webkit-transform: translate(0, -20rem);
  transform: translate(0, -20rem);
  -webkit-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
}
.fade-t.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.fade-b {
  position: relative;
  opacity: 0;
  -webkit-transform: translate(0, 20rem);
  transform: translate(0, 20rem);
  -webkit-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
}
.fade-b.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.fade-w {
  -webkit-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
  opacity: 0;
}
.fade-z {
  -webkit-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
  -webkit-transform: scale(0.95, 0.95);
  transform: scale(0.95, 0.95);
  opacity: 0;
}
.fade-w.active,
.fade-z.active {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
}

.fade-ov {
  position: relative;
  opacity: 1;
  overflow: hidden;
}
.fade-ov::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color-navy);
  position: absolute;
  opacity: 1;
}
.fade-ov.active::before {
  animation: fadeov 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes fadeov {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
