@charset "UTF-8";
/*==================================================
 Foundation
================================================== */
:root {
  --design-sm: 402px;
  --design-lg: 1920px;
  --bp-sm: 768px;
  --bp-lg: 1024px;
  --layer-loading: 200;
  --layer-modal: 100;
  --layer-drawer: 40;
  --layer-floating: 30;
  --layer-header: 20;
  --layer-footer: 10;
  --layer-default: 1;
  --width-container: 1510px;
  --spacing-page: 20px;
  --color-primary: #5a53b4;
  --color-primary-light: #dbd9f5;
  --color-text-primary: #000;
  --color-dividers: #dbd9f5;
  --color-background: #ececfc;
  --color-text-link: #000;
  --color-text-hover: #000;
  --font-size-base: 16px;
  --line-height-base: 1.78;
  --font-family-base: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  --font-family-fira: "Fira Sans Condensed", sans-serif;
  --font-family-inter: "Inter", sans-serif;
  --transition-duration: 0.3s;
  --letter-spacing-base: 0.12em;
  @media (1024px <= width) {
    --width-container: 1670px;
    --spacing-page: 100px;
  }
}

/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  border-style: solid;
  border-width: 0;
  box-sizing: border-box;
  min-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  border-top-width: 1px;
  box-sizing: content-box; /* 1 */
  clear: both;
  color: inherit;
  height: 0; /* 1 */
  margin: 0;
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border-radius: 0;
  color: inherit;
  font: inherit;
  margin: 0;
  padding: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
  vertical-align: middle;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
}

button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  min-width: 0;
  padding: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type="search"] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type="number"] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-collapse: collapse;
  border-color: inherit; /* 1 */
}

caption {
  text-align: left;
}

td,
th {
  padding: 0;
  vertical-align: top;
}

th {
  font-weight: bold;
  text-align: left;
}

/* base styles
--------------------------------------------- */
html {
  scroll-behavior: smooth;
}
html:has(dialog[open]) {
  overflow: hidden;
}

*,
::before,
::after {
  letter-spacing: var(--letter-spacing-base);
}

body {
  color: var(--color-text-primary);
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-break: strict;
  line-height: var(--line-height-base);
  min-height: 100dvh;
  overflow-wrap: anywhere;
  word-break: normal;
  &.is-drawer-open {
    overflow: hidden;
  }
}

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

dfn,
cite,
em,
i {
  font-style: italic;
}

a {
  transition: opacity 0.3s;
  @media (hover: hover) {
    &:hover {
      cursor: pointer;
      opacity: 0.7;
    }
  }
}

/*==================================================
 Layout
================================================== */
/* Footer
--------------------------------------------- */
.l-footer {
  background-image: url("../../assets/images/common/footer-bg.webp");
  background-position: center;
  background-size: cover;
  color: #fff;
  padding-bottom: 60px;
  padding-top: 110px;
  @media (width <= 767px) {
    background-image: url("../../assets/images/common/footer-bg_sp.webp");
    padding-top: 36px;
  }
}

.l-footer-inner {
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  max-width: var(--width-container);
  padding-inline: var(--spacing-page);
  position: relative;
  z-index: var(--layer-footer);
  @media (width <= 767px) {
    flex-direction: column;
  }
}

.l-footer__left {
  display: flex;
  flex-direction: column;
}

.l-footer__logo {
  margin-top: 60px;
  width: 326px;
  @media (width <= 767px) {
    margin-top: 140px;
    width: 204px;
  }
}

.l-footer__nav {
  font-size: 22px;
  font-weight: bold;
  margin-top: 36px;
  @media (width <= 767px) {
    font-size: 16px;
    margin-top: 40px;
  }
}

.l-footer__navItem:not(:first-child) {
  margin-top: 24px;
  @media (width <= 767px) {
    margin-top: 8px;
  }
}

.l-footer__copyright {
  font-size: 14px;
  font-weight: bold;
  margin-top: 160px;
  @media (width <= 767px) {
    font-size: 12px;
    margin-top: 40px;
  }
}

.l-footer__right {
  display: flex;
  @media (width <= 767px) {
    position: absolute;
    right: 0;
    top: 0;
  }
}

.l-footer__catchphrase {
  font-family: var(--font-family-fira);
  font-size: 62px;
  font-weight: bold;
  @media (768px <= width <= 1023px) {
    font-size: 42px;
  }
  @media (width <= 767px) {
    font-size: 24px;
    line-height: 2;
    text-align: left;
  }
}

/* Header
--------------------------------------------- */
.l-header {
  background-color: #fff;
  padding-bottom: 35px;
  padding-top: 45px;
  @media (width <= 767px) {
    padding-bottom: 30px;
    padding-top: 30px;
  }
}

.l-header__inner {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  max-width: var(--width-container);
  padding-inline: var(--spacing-page);
  position: relative;
  @media (width <= 1023px) {
    align-items: center;
  }
  .l-header.is-active & {
    z-index: calc(var(--layer-drawer) + 1);
  }
}

.l-header__logo {
  width: clamp(200px, 53.067vw - 343.4px, 373px);
  @media (width <= 767px) {
    width: 253px;
  }
  .l-header.is-active & img {
    filter: brightness(0) invert(1);
  }
}

.l-header__navList {
  align-items: center;
  display: flex;
  gap: clamp(20px, 6.135vw - 42.82px, 40px);
}

.l-header__navItem {
  font-size: 18px;
  font-weight: bold;
  @media (1024px <= width <= 1350px) {
    font-size: 16px;
  }
}

.l-header__lang {
  display: flex;
  @media (768px <= width <= 1023px) {
    margin-right: 83px;
  }
  @media (width <= 767px) {
    margin-right: 33px;
  }
}

.l-header__langItem {
  align-items: center;
  background-color: #e6e6e6;
  display: inline-flex;
  flex: 1;
  font-family: var(--font-family-inter);
  font-size: 18px;
  font-weight: bold;
  height: 41px;
  justify-content: center;
  line-height: 1;
  width: 102px;
  @media (1024px <= width <= 1350px) {
    font-size: 16px;
    height: 33px;
    width: 60px;
  }
  @media (width <= 767px) {
    background-color: var(--color-primary);
    color: #fff;
    font-size: 14px;
    height: 27px;
    width: 38px;
  }
}

.l-header__langItem--active {
  background-color: var(--color-primary);
  color: #fff;
  @media (hover: hover) {
    &:hover {
      cursor: default;
      opacity: 1;
    }
  }
  @media (width <= 767px) {
    display: none;
  }
}

.l-header__langItem--disabled {
  cursor: default;
  opacity: 0.5;
  @media (hover: hover) {
    &:hover {
      cursor: default;
      opacity: 0.5;
    }
  }
}

.l-header__hamburger {
  background: transparent;
  cursor: pointer;
  height: 9px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  @media (768px <= width <= 1023px) {
    height: 18px;
    right: 20px;
    width: 64px;
  }

  &.is-active {
    .l-header__hamburgerLine:first-child {
      top: 50%;
      transform: translateY(-50%) rotate(30deg);
    }
    .l-header__hamburgerLine:last-child {
      bottom: auto;
      top: 50%;
      transform: translateY(-50%) rotate(-30deg);
    }
  }
}

.l-header__hamburgerLine {
  background-color: var(--color-text-primary);
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  transition: transform var(--transition-duration);
  width: 100%;
  @media (768px <= width <= 1023px) {
    height: 4px;
  }
  .l-header.is-active & {
    background-color: #fff;
  }
}

.l-header__hamburgerLine:first-child {
  top: 0;
}

.l-header__hamburgerLine:last-child {
  bottom: 0;
}

.l-drawer {
  align-items: center;
  background: linear-gradient(to bottom, #0085cd, #e7364a);
  display: flex;
  height: 100vh;
  height: 100dvh;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  visibility: hidden;
  width: 100%;
  z-index: var(--layer-drawer);

  &.is-active {
    opacity: 1;
    visibility: visible;
  }

  .l-drawer__nav {
    text-align: center;
  }

  .l-drawer__navList {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .l-drawer__navItem a {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    @media (768px <= width <= 1023px) {
      font-size: 26px;
    }
  }
}

/*==================================================
 Object
================================================== */
/*==================================================
 Component
================================================== */
/* Button
--------------------------------------------- */
.c-button {
  display: inline-block;
}

.c-button--primary {
  background-color: var(--color-primary);
}

.c-button--gradient {
  align-items: center;
  background: linear-gradient(90deg, #de1e39 0%, #83347e 50%, #de1e39 100%);
  background-position: right center;
  background-size: 200% auto;
  border-radius: 9999px;
  color: #fff;
  display: flex;
  height: 60px;
  justify-content: flex-start;
  margin-inline: auto;
  max-width: 430px;
  padding: 10px 42px;
  position: relative;
  text-decoration: none;
  transition: background-position 0.5s ease;
  @media (hover: hover) {
    &:hover {
      background-position: left center;
      color: #fff;
      opacity: 1;
    }
  }
  @media (width <= 767px) {
    height: 46px;
    max-width: 320px;
    padding: 6px 32px;
  }
}

.c-button__text {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  @media (width <= 767px) {
    font-size: 14px;
  }
}

.c-button__arrow {
  display: flex;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  @media (width <= 767px) {
    right: 18px;
    width: 18px;
  }
}

/* PageTitle
--------------------------------------------- */
.c-pageTitle {
  align-items: center;
  aspect-ratio: 1920/330;
  background-color: #d9d9d9;
  background-image: url(../../assets/images/common/title-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  width: 100%;
  @media (width <= 767px) {
    aspect-ratio: 402/250;
    background-image: url(../../assets/images/common/title-bg_sp.webp);
  }
  &.about {
    background-image: url(../../assets/images/about/title-bg.webp);
    @media (width <= 767px) {
      background-image: url(../../assets/images/about/title-bg.webp);
    }
  }
}

.c-pageTitle__text {
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  @media (width <= 767px) {
    font-size: 24px;
  }
}

/* Card
--------------------------------------------- */
.c-card {
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.25);
  height: 100%;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);

  @media (hover: hover) {
    &:hover {
      box-shadow: 8px 16px 24px 0 rgba(0, 0, 0, 0.15);
      transform: translateY(-6px);
      .c-card__image img {
        transform: scale(1.05);
      }
    }
  }
}
.c-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;

  @media (hover: hover) {
    &:hover {
      opacity: 1;
    }
  }
}

.c-card__head {
  aspect-ratio: 470 / 320;
  overflow: hidden;
  position: relative;
}

.c-card__badge {
  background-color: var(--color-primary);
  color: #fff;
  font-family: var(--font-family-fira);
  font-size: 24px;
  font-weight: 600;
  left: 0;
  line-height: 1.2;
  padding: 6px 16px;
  position: absolute;
  top: 0;
  z-index: 1;
  @media (width <= 767px) {
    font-size: 16px;
  }
}

.c-card__image {
  background-color: var(--color-primary-light);
  height: 100%;
  width: 100%;

  img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
  }
}

.c-card__comingsoon {
  align-items: center;
  background-color: var(--color-primary-light);
  color: #fff;
  display: flex;
  font-family: var(--font-family-fira);
  font-size: 24px;
  font-weight: 600;
  height: 100%;
  justify-content: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: 100%;
}

.c-card__body {
  flex-grow: 1;
  padding: 18px 18px 40px;
}

.c-card__date {
  font-size: 12px;
  font-weight: bold;
}

.c-card__title {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  @media (width <= 767px) {
    margin-top: 4px;
  }
}

.c-card__titleSmall {
  font-size: 18px;
  font-weight: bold;
  line-height: normal;
  @media (width <= 767px) {
    font-size: 14px;
  }
}

.c-card__titleLarge {
  font-size: 26px;
  font-weight: bold;
  line-height: normal;
  @media (width <= 767px) {
    font-size: 22px;
  }
}

.c-card__name {
  color: #8b8989;
  margin-top: 8px;
}

.c-card__nameText {
  font-size: 20px;
  font-weight: bold;
  @media (width <= 767px) {
    font-size: 16px;
  }
}

.c-card__nameHonorific {
  font-size: 14px;
  font-weight: bold;
  margin-left: 4px;
  @media (width <= 767px) {
    font-size: 12px;
  }
}

.c-card__desc {
  color: #8b8989;
  font-size: 14px;
  font-weight: bold;
  line-height: normal;
  margin-top: 8px;
  @media (width <= 767px) {
    font-size: 12px;
  }
}

/* Voice
--------------------------------------------- */
.c-voice {
  align-items: flex-start;
  display: flex;
  gap: 90px;
  @media (width <= 767px) {
    flex-direction: column;
    gap: 24px;
  }
}

.c-voice__profile {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  padding-left: 40px;
  @media (width <= 767px) {
    align-items: end;
    flex-direction: row;
    gap: 6px;
    padding-left: 0;
  }
}

.c-voice__image {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  width: 98px;
  @media (width <= 767px) {
    width: 70px;
  }
}

.c-voice__image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.c-voice__name {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  @media (width <= 767px) {
    font-size: 14px;
    text-align: left;
  }
}

.c-voice__text {
  font-weight: 500;
}
.c-voice__text * + * {
  margin-top: 1.5em;
}

/* TimetableItem
--------------------------------------------- */
.c-timetableItem {
  align-items: stretch;
  display: flex;
}

.c-timetableItem__line {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  position: relative;
  width: 36px;

  /* 縦線：上端から下端まで伸ばし、繰り返し配置時に途切れないようにする */
  &::before {
    background-color: var(--color-primary);
    content: "";
    height: 100%;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 2px;
    @media (width <= 767px) {
      width: 1px;
    }
  }
}

.c-timetableItem__dot {
  background-color: var(--color-primary);
  border-radius: 50%;
  height: 21px;
  left: 50%;
  position: absolute;
  top: 6px;
  transform: translateX(-50%);
  width: 21px;
  z-index: 1;
}

.c-timetableItem__content {
  flex: 1;
  padding-bottom: 80px;
  padding-left: 10px;
  @media (width <= 767px) {
    padding-bottom: 50px;
    padding-left: 14px;
  }
}

.c-timetableItem__head {
  border-bottom: 1px dotted var(--color-primary);
  padding-bottom: 20px;
  @media (width <= 767px) {
    padding-bottom: 8px;
  }
}
.c-timetableItem__time {
  color: var(--color-primary);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 10px;
  @media (width <= 767px) {
    font-size: 16px;
  }
}

.c-timetableItem__title {
  color: var(--color-primary);
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  @media (width <= 767px) {
    font-size: 20px;
  }
}

.c-timetableItem__body {
  margin-top: 20px;
  @media (width <= 767px) {
    margin-top: 12px;
  }
}

/* 最初のアイテムの線を丸印の位置から開始 */
.c-timetableItem:first-child .c-timetableItem__line::before {
  height: calc(100% - 6px);
  top: 6px;
}

/* 最後のアイテムの線を丸印の位置で終了 */
.c-timetableItem:last-child .c-timetableItem__line::before {
  height: 20px;
  @media (width <= 767px) {
    height: 16px;
  }
}

/* 最後のアイテムのコンテンツのパディングを除去 */
.c-timetableItem:last-child .c-timetableItem__content {
  padding-bottom: 0;
}
/*==================================================
 Project
================================================== */
/* Top Page
--------------------------------------------- */
.p-top__fv {
  overflow: hidden;
  padding-bottom: 240px;
  padding-top: 20px;
  position: relative;
  @media (width <= 767px) {
    padding-bottom: 160px;
    padding-top: 60px;
  }
}

.p-top__fv-inner {
  align-items: center;
  display: flex;
  gap: calc(140 / 1470 * 100%);
  justify-content: flex-start;
  margin-inline: auto;
  max-width: var(--width-container);
  padding-inline: var(--spacing-page);
  position: relative;
  @media (width <= 767px) {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
  }
}

@keyframes fvArcFadeIn {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

.p-top__fv-arc {
  animation: fvArcFadeIn 1.6s cubic-bezier(0.85, 0, 0.15, 1) forwards;
  clip-path: inset(0 100% 0 0);
  left: -259px;
  max-width: none;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 837px;
  z-index: -1;
  @media (width <= 1200px) {
    left: -167px;
    width: 600px;
  }
  @media (width <= 1023px) {
    left: -260px;
    width: 600px;
  }
  @media (width <= 767px) {
    left: 0;
    top: -57px;
    width: calc(287 / 402 * 100vw);
  }
}

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

@keyframes fvArcFadeInRight {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

.p-top__fv-arcRight {
  animation: fvArcFadeInRight 1.6s cubic-bezier(0.85, 0, 0.15, 1) forwards;
  bottom: 0;
  clip-path: inset(0 0 0 100%);
  left: -600px;
  max-width: none;
  pointer-events: none;
  position: absolute;
  width: 806px;
  z-index: -1;
  @media (width <= 1200px) {
    left: -427px;
    width: 600px;
  }
  @media (width <= 1023px) {
    left: -364px;
    width: 600px;
  }
  @media (width <= 767px) {
    bottom: -88px;
    left: auto;
    right: -21px;
    width: calc(272 / 402 * 100vw);
  }
}

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

@keyframes fvContentWipe {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes fvTextColorTitle {
  0%,
  50% {
    color: transparent;
  }
  100% {
    color: var(--color-text-primary);
  }
}

@keyframes fvTextColorDesc {
  0%,
  50% {
    color: transparent;
  }
  100% {
    color: #8b8989;
  }
}

@keyframes fvTextGradient {
  0% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

.p-top__fv-content {
  animation: fvContentWipe 1.6s cubic-bezier(0.85, 0, 0.15, 1) forwards;
  clip-path: inset(0 100% 0 0);
  flex: 0 0 640px;
  @media (width <= 1200px) {
    flex: 0 0 460px;
  }
  @media (width <= 1023px) {
    flex: 0 0 360px;
  }
  @media (width <= 767px) {
    flex: 0 0 100%;
    text-align: left;
  }
}

.p-top__fv-title {
  background-image: linear-gradient(
    90deg,
    #83347e 0%,
    #de1e39 50%,
    #83347e 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  animation:
    fvTextColorTitle 2s cubic-bezier(0.85, 0, 0.15, 1) forwards,
    fvTextGradient 1.6s cubic-bezier(0.85, 0, 0.15, 1) forwards;
  background-clip: text;
  color: transparent;
  font-size: 72px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.53;
  white-space: nowrap;
  @media (width <= 1200px) {
    font-size: 52px;
  }
  @media (width <= 1023px) {
    font-size: 40px;
  }
  @media (width <= 767px) {
    font-size: 28px;
  }
}

.p-top__fv-desc {
  background-image: linear-gradient(
    90deg,
    #83347e 0%,
    #de1e39 50%,
    #83347e 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  animation:
    fvTextColorDesc 2s cubic-bezier(0.85, 0, 0.15, 1) forwards,
    fvTextGradient 1.6s cubic-bezier(0.85, 0, 0.15, 1) forwards;
  background-clip: text;
  color: transparent;
  font-size: 24px;
  font-weight: bold;
  line-height: normal;
  margin-top: 40px;
  white-space: nowrap;
  @media (width <= 1200px) {
    font-size: 18px;
    margin-top: 30px;
  }
  @media (width <= 1023px) {
    font-size: 16px;
  }
  @media (width <= 767px) {
    font-size: 14px;
    margin-top: 10px;
  }
}

.p-top__fv-slider {
  border-radius: 28px;
  flex: 1;
  height: 740px;
  max-width: 660px;
  overflow: visible;
  position: relative;
  @media (width <= 1200px) {
    height: 660px;
  }
  @media (width <= 1023px) {
    height: 560px;
  }
  @media (width <= 767px) {
    aspect-ratio: 362/404;
    height: auto;
    max-width: none;
    width: 100%;
  }
  .swiper {
    height: 100%;
    overflow: visible;
    width: 100%;
  }
  .swiper-wrapper {
    background-color: #fff;
    border-radius: 28px;
  }
  .swiper-slide {
    border-radius: 28px;
    overflow: hidden;
  }
  img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transform: scale(1);
    transition: transform 8s linear;
    width: 100%;
  }
  .swiper-slide-active img {
    transform: scale(1.15);
  }
  /* Swiper overrides */
  .swiper-pagination-bullet {
    background: #dbd9f5;
    height: 20px;
    margin: 0 10px !important;
    opacity: 1;
    width: 20px;
    @media (width <= 767px) {
      height: 11px;
      margin: 0 6px !important;
      width: 11px;
    }
  }
  .swiper-pagination-bullet-active {
    background: var(--color-primary);
  }
  .swiper-pagination {
    bottom: -50px !important; /* 20px below the image (plus its own height means setting roughly -40px) */
    @media (width <= 767px) {
      bottom: -30px !important;
    }
  }
}

/* Symposium
--------------------------------------------- */
.p-top__symposium {
  background-image: linear-gradient(to bottom, #fff 0%, #e6e6e6);
  padding-bottom: 200px;
  padding-top: 0;
  @media (width <= 767px) {
    padding-bottom: 110px;
    padding-top: 0;
  }

  .p-top__symposium-inner {
    margin-inline: auto;
    max-width: var(--width-container);
    padding-inline: var(--spacing-page);
  }

  .p-top__symposium-layout {
    align-items: center;
    display: flex;
    gap: 70px;
    justify-content: center;
    @media (width <= 1023px) {
      gap: 40px;
    }
    @media (width <= 767px) {
      flex-direction: column;
      gap: 70px;
    }
  }

  .p-top__symposium-image {
    flex: 0 0 calc(780 / 1470 * 100%);
    @media (width <= 767px) {
      flex: none;
      max-width: 100%;
      width: 100%;
    }
    img {
      height: auto;
      -o-object-fit: cover;
      object-fit: cover;
      width: 100%;
    }
  }

  .p-top__symposium-text {
    flex: 1;
    @media (width <= 767px) {
      flex: none;
      max-width: 100%;
      width: 100%;
    }
  }

  .p-top__symposium-title {
    font-size: 34px;
    font-weight: bold;
    line-height: 1.5;
    @media (width <= 1023px) {
      font-size: 24px;
    }
  }

  .p-top__symposium-date {
    font-size: 68px;
    font-weight: bold;
    line-height: 1.2;
    margin-top: 24px;
    span {
      font-size: 32px;
      margin-left: 8px;
    }
    @media (width <= 1023px) {
      font-size: 48px;
      margin-top: 20px;
      span {
        font-size: 24px;
      }
    }
    @media (width <= 767px) {
      font-size: 42px;
      margin-top: 8px;
      span {
        font-size: 28px;
      }
    }
  }

  .p-top__symposium-info {
    margin-top: 24px;
    p {
      font-size: 24px;
      font-weight: bold;
      line-height: 1.5;
    }
    @media (width <= 767px) {
      margin-top: 16px;
      p {
        font-size: 18px;
      }
    }
  }

  .p-top__symposium-button {
    margin-top: 40px;
    @media (width <= 767px) {
      margin-top: 30px;
    }
    .c-button {
      margin-inline: 0;
      @media (width <= 767px) {
        margin-inline: auto;
      }
    }
  }
}

/* Magazine
--------------------------------------------- */
.p-top__magazine {
  background-color: var(--color-background);
  border-radius: 100px 100px 0 0;
  margin-top: -80px;
  overflow: hidden;
  padding-bottom: 140px;
  padding-top: 100px;
  @media (width <= 767px) {
    border-radius: 50px 50px 0 0;
    margin-top: -40px;
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .p-top__magazine-inner {
    margin-inline: auto;
    max-width: var(--width-container);
    padding-inline: var(--spacing-page);
    position: relative;
  }

  .p-top__magazine-header {
    position: relative;
  }

  .p-top__magazine-title {
    position: relative;
    text-align: center;
    width: 100%;
    @media (width <= 767px) {
      text-align: left;
    }
  }

  .p-top__magazine-titleEn {
    color: var(--color-primary-light);
    font-family: var(--font-family-fira);
    font-size: 160px;
    font-weight: bold;
    left: -50px;
    letter-spacing: 0.04em;
    line-height: 1;
    position: absolute;
    top: -20px;
    white-space: nowrap;
    z-index: 0;
    @media (width <= 1200px) {
      font-size: 100px;
      top: -10px;
    }
    @media (width <= 767px) {
      font-size: 54px;
      left: 0;
      top: -10px;
    }
  }

  .p-top__magazine-titleJa {
    color: var(--color-primary);
    display: block;
    font-family: var(--font-family-fira);
    font-size: 58px;
    font-weight: bold;
    line-height: 1;
    padding-top: 105px;
    position: relative;
    z-index: 1;
    @media (width <= 1200px) {
      font-size: 32px;
      padding-top: 60px;
    }
    @media (width <= 767px) {
      font-size: 28px;
      line-height: 1.5;
      padding-left: 0;
      padding-top: 20px;
    }
  }

  .p-top__magazine-sliderNav {
    display: flex;
    gap: 16px;
    position: absolute;
    right: var(--spacing-page);
    top: 200px;
    z-index: 10;
    @media (width <= 1200px) {
      top: 100px;
    }
    @media (width <= 1023px) {
      gap: 10px;
      top: 120px;
    }

    .swiper-button-prev,
    .swiper-button-next {
      align-items: center;
      background-color: #fff;
      border-radius: 9999px;
      color: transparent !important;
      display: flex;
      height: calc(33px * 2);
      justify-content: center;
      margin-top: 0;
      position: static;
      width: calc(47px * 2);
      &.swiper-button-lock {
        display: none !important;
      }
      &::after,
      &:after {
        content: "" !important;
        display: none !important;
      }
      & svg {
        display: none !important;
      }
      &::before {
        background-color: var(--color-primary);
        content: "";
        height: 40px;
        -webkit-mask: url(../../assets/images/common/icon-arrow.svg) no-repeat
          center / contain;
        mask: url(../../assets/images/common/icon-arrow.svg) no-repeat center /
          contain;
        width: 40px;
        -webkit-mask: url(../../assets/images/common/icon-arrow.svg) no-repeat
          center / contain;
      }
      @media (width <= 1023px) {
        height: calc(33px * 1.5);
        width: calc(47px * 1.5);
      }
      @media (width <= 767px) {
        height: 33px;
        width: 47px;
        &::before {
          height: 20px;
          width: 20px;
        }
      }
    }
    .swiper-button-prev {
      &::before {
        transform: scaleX(-1);
      }
    }
  }

  .p-top__magazine-slider {
    margin-top: 140px;
    padding-bottom: 100px;
    @media (width <= 1023px) {
      padding-bottom: 0;
    }
    @media (width <= 767px) {
      margin-right: calc(50% - 50vw);
      margin-top: 70px;
      padding-right: var(--spacing-page);
    }

    .swiper {
      overflow: visible;
    }

    .swiper-slide {
      height: auto;
      width: calc((100% - 60px) / 3);
      @media (1024px <= width) {
        &:nth-child(3n + 1) {
          transform: translateY(100px);
        }
        &:nth-child(3n + 2) {
          transform: translateY(0);
        }
        &:nth-child(3n) {
          transform: translateY(60px);
        }
      }
      @media (width <= 1023px) {
        width: calc((100% - 48px) / 2);
      }
      @media (width <= 767px) {
        width: 335px;
      }
    }
    .c-card {
      border-radius: 10px 10px 60px 10px;
    }
  }

  .p-top__magazine-button {
    margin-top: 90px;
    text-align: center;
    @media (width <= 767px) {
      margin-top: 60px;
    }
    .c-button {
      margin-inline: auto;
    }
  }
}

/* Crossnite
--------------------------------------------- */
.p-top__crossnite {
  background-color: var(--color-primary);
  color: #fff;
  padding-bottom: 150px;
  padding-top: 150px;
  @media (width <= 767px) {
    padding-bottom: 70px;
    padding-top: 70px;
  }

  .p-top__crossnite-inner {
    align-items: center;
    display: flex;
    @media (width <= 767px) {
      flex-direction: column;
      gap: 70px;
      padding-inline: 0;
    }
  }

  .p-top__crossnite-image {
    flex-shrink: 0;
    margin-left: calc(50% - 50vw);
    width: calc(824 / 1920 * 100vw);
    @media (width <= 767px) {
      margin-left: 0;
      width: 100%;
    }
    img {
      height: auto;
      -o-object-fit: cover;
      object-fit: cover;
      width: 100%;
    }
  }

  .p-top__crossnite-cont {
    display: grid;
    flex: 1;
    padding-inline: 100px;
    place-items: center;
    @media (768px <=width <= 1023px) {
      padding-inline: 40px;
    }
    @media (width <= 767px) {
      padding-inline: 0;
    }
  }
  .p-top__crossnite-text {
    max-width: 700px;
    @media (width <= 767px) {
      padding-inline: var(--spacing-page);
    }
  }

  .p-top__crossnite-subtitle {
    font-family: var(--font-family-fira);
    font-size: 28px;
    font-weight: bold;
    @media (width <= 1023px) {
      font-size: 24px;
    }
    @media (width <= 767px) {
      font-size: 18px;
      text-align: center;
    }
  }

  .p-top__crossnite-title {
    border-bottom: solid 1px #fff;
    margin-top: 50px;
    max-width: 700px;
    padding-bottom: 46px;
    @media (width <= 767px) {
      margin-inline: auto;
      margin-top: 32px;
      padding-bottom: 32px;
    }
  }

  .p-top__crossnite-desc {
    font-size: 18px;
    font-weight: bold;
    line-height: 2.3;
    margin-top: 46px;
    @media (width <= 767px) {
      font-size: 16px;
      margin-top: 32px;
    }
  }

  .p-top__crossnite-button {
    margin-top: 62px;
    width: 100%;
    @media (width <= 767px) {
      margin-top: 70px;
    }
    .c-button {
      margin-left: auto;
      margin-right: 0;
      @media (width <= 767px) {
        margin-inline: auto;
      }
    }
  }
}

/* JETRO
--------------------------------------------- */
.p-top__jetro {
  padding-bottom: 100px;
  padding-top: 100px;
}
.p-top__jetro-inner {
  margin-inline: auto;
  max-width: var(--width-container);
  padding-inline: var(--spacing-page);
}

.p-top__jetro-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  @media (width <= 767px) {
    font-size: 16px;
  }
}

.p-top__jetro-image {
  margin-inline: auto;
  margin-top: 32px;
  width: 359px;
  @media (width <= 767px) {
    margin-top: 20px;
    width: 200px;
  }
  img {
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
  }
}

/* Introduction Page
--------------------------------------------- */
.p-introduction {
  padding-bottom: 120px;
  padding-top: 120px;
  @media (width <= 767px) {
    padding-bottom: 80px;
    padding-top: 70px;
  }
}

.p-introduction__inner {
  margin-inline: auto;
  max-width: var(--width-container);
  padding-inline: var(--spacing-page);
}

.p-introduction__layout {
  display: flex;
  gap: 80px;
  @media (width <= 767px) {
    flex-direction: column;
  }
}

.p-introduction__sidebar {
  flex-shrink: 0;
  width: calc(570 / 1470 * 100%);
  @media (width <= 767px) {
    width: 100%;
  }
}

.p-introduction__main {
  flex-grow: 1;
}

.p-introduction__image img {
  border-radius: 28px;
  width: 100%;
}

.p-introduction__profile {
  margin-top: 33px;
}

.p-introduction__profileCompany {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  @media (width <= 767px) {
    font-size: 16px;
  }
}

.p-introduction__profileBorder {
  background-color: var(--color-dividers);
  height: 1px;
  margin-top: 6px;
}

.p-introduction__profileName {
  align-items: baseline;
  display: flex;
  font-size: 18px;
  font-weight: bold;
  gap: 16px;
  margin-top: 12px;
  @media (width <= 767px) {
    font-size: 16px;
  }
}
.p-introduction__profileName span {
  font-size: 26px;
  @media (width <= 767px) {
    font-size: 22px;
  }
}

.p-introduction__profileTitle {
  font-size: 14px;
  font-weight: bold;
  margin-top: 12px;
}

.p-introduction__heading {
  font-size: 36px;
  font-weight: bold;
  line-height: normal;
  * + & {
    margin-top: 1.5em;
  }
  @media (width <= 767px) {
    font-size: 28px;
  }
}

.p-introduction__heading2 {
  font-size: 24px;
  font-weight: bold;
  line-height: normal;
  * + & {
    margin-top: 1.5em;
  }
}

.p-introduction__text {
  font-size: 16px;
  font-weight: 500;
  margin-top: 2em;
  * + & {
    margin-top: 2em;
  }
  * + p {
    margin-top: 2em;
  }
}

.p-introduction__list {
  * + & {
    margin-top: 2em;
  }
  ul {
    display: flex;
    flex-direction: column;
    gap: 0.8em;
  }
  li {
    font-weight: bold;
    padding-left: 32px;
    position: relative;
    &:before {
      background-color: var(--color-primary);
      border-radius: 50%;
      content: "";
      height: 14px;
      left: 0;
      position: absolute;
      top: 0.9em;
      transform: translateY(-50%);
      width: 14px;
    }
  }
}

/* Magazine Page
--------------------------------------------- */
.p-magazine {
  padding-bottom: 306px;
  padding-top: 105px;
}
.p-magazine-inner {
  margin-inline: auto;
  max-width: var(--width-container);
  padding-inline: var(--spacing-page);
}
.p-magazine-articleContainer {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  @media (width <= 1023px) {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

/* Article Page
--------------------------------------------- */
.p-article {
  padding-bottom: 152px;
  padding-top: 60px;
  @media (width <= 767px) {
    padding-bottom: 100px;
    padding-top: 20px;
  }
}
.p-article__inner {
  margin-inline: auto;
  max-width: calc(var(--width-container) - 40px);
  padding-inline: 0;
}

.p-article__fv {
  margin-top: 120px;
  position: relative;
  z-index: 1;
  @media (width <= 767px) {
    margin-top: 40px;
  }
}

.p-article__fvLabel {
  color: var(--color-primary-light);
  font-family: var(--font-family-fira);
  font-size: 160px;
  font-weight: bold;
  left: 0;
  letter-spacing: 0.04em;
  line-height: 1;
  position: absolute;
  top: -130px;
  white-space: nowrap;
  z-index: -1;
  @media (width <= 767px) {
    font-size: 60px;
    top: -50px;
  }
}

.p-article__fvImage {
  position: relative;
  width: 100%;
  z-index: 1;
}
.p-article__fvImage img {
  aspect-ratio: 1470 / 835;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  @media (width <= 767px) {
    aspect-ratio: 402 / 250;
  }
}

.p-article__profiles {
  align-items: stretch;
  display: flex;
  gap: 10px;
  margin-inline: auto;
  margin-top: 120px;
  max-width: 1320px;
  padding-inline: var(--spacing-page);

  @media (width <= 767px) {
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
  }
}

.p-article__profile {
  background-color: #f6f6ff;
  flex: 1;
  padding: 46px 30px;
  @media (width <= 767px) {
    padding: 30px 20px;
  }
}

.p-article__profileName {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  font-size: 32px;
  font-weight: bold;
  @media (width <= 767px) {
    flex-direction: column;
    font-size: 24px;
  }
}
.p-article__profileName span {
  font-size: 16px;
  font-weight: 500;
  margin-left: 8px;
  @media (width <= 767px) {
    font-size: 14px;
    margin-left: 0;
  }
}

.p-article__profileTitle {
  font-size: 16px;
  font-weight: bold;
  line-height: normal;
  margin-top: 20px;
  @media (width <= 767px) {
    font-size: 12px;
    margin-top: 8px;
  }
}

.p-article__profileText {
  font-size: 14px;
  font-weight: 500;
  margin-top: 20px;
  @media (width <= 767px) {
    margin-top: 30px;
  }
  * + * {
    margin-top: 1em;
  }
}

.p-article__cross {
  flex-shrink: 0;
  position: relative;
  width: calc(100 / 1120 * 100%);
  @media (width <= 767px) {
    height: 100px;
    margin-inline: auto;
    width: 100px;
  }
  &:before,
  &:after {
    background-color: var(--color-primary);
    content: "";
    height: 2px;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 141%;
  }
  &:before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  &:after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

.p-article__title {
  display: block;
  font-size: 42px;
  font-weight: bold;
  margin-inline: auto;
  margin-top: 90px;
  max-width: 1320px;
  padding-inline: var(--spacing-page);
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  @media (width <= 767px) {
    font-size: 26px;
  }
}

.p-article__main {
  display: flex;
  flex-direction: column;
  gap: 70px;
  margin-inline: auto;
  margin-top: 90px;
  max-width: 1320px;
  padding-inline: var(--spacing-page);
  @media (width <= 767px) {
    gap: 50px;
  }
}

.p-article__buttonWrap {
  margin-top: 140px;
  @media (width <= 767px) {
    margin-top: 60px;
  }
}

body.p-symposium01-page::after {
  background-image: url("../../assets/images/symposium/symposium01/bg.webp");
  background-position: center;
  background-size: cover;
  content: "";
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}

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

.p-symposium01__date {
  padding-bottom: 150px;
  padding-top: 100px;
  @media (width <= 767px) {
    padding-bottom: 130px;
    padding-top: 70px;
  }
}

.p-symposium01__date-inner {
  display: flex;
  gap: 40px;
  margin-inline: auto;
  max-width: var(--width-container);
  padding-inline: var(--spacing-page);
  @media (width <= 1023px) {
    gap: 20px;
  }
  @media (width <= 767px) {
    flex-direction: column;
    gap: 36px;
  }
}

.p-symposium01__date-image {
  flex: 0 0 calc(693 / 1470 * 100%);
  @media (width <= 767px) {
    flex: none;
    width: 100%;
  }
  img {
    height: auto;
    width: 100%;
  }
}

.p-symposium01__date-body {
  background-color: #f6f6ff;
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.2);
  flex: 1;
  padding: 70px 80px;
  @media (width <= 1023px) {
    padding: 20px 20px;
  }
  @media (width <= 767px) {
    padding: 38px 20px;
    width: 100%;
  }
}

.p-symposium01__date-day {
  font-size: 42px;
  font-weight: bold;
  @media (width <= 1023px) {
    font-size: 32px;
  }
  @media (width <= 767px) {
    font-size: 24px;
  }
}

.p-symposium01__date-schedule {
  margin-top: 10px;
  @media (width <= 767px) {
    margin-top: 12px;
  }
  p {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.5;
    @media (width <= 1023px) {
      font-size: 20px;
    }
    @media (width <= 767px) {
      font-size: 18px;
    }
  }
}

.p-symposium01__date-venue {
  margin-top: 10px;
  @media (width <= 767px) {
    margin-top: 12px;
  }
  p {
    font-size: 24px;
    font-weight: bold;
    line-height: 2;
    @media (width <= 1023px) {
      font-size: 16px;
      line-height: normal;
    }
  }
  a {
    color: #0085cd;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }
}

.p-symposium01__date-pdf {
  align-items: center;
  background-color: #fff;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  display: flex;
  font-size: 20px;
  font-weight: bold;
  justify-content: space-between;
  margin-top: 34px;
  padding: 20px 32px;
  text-decoration: none;
  transition: opacity var(--transition-duration);
  @media (hover: hover) {
    &:hover {
      opacity: 0.8;
    }
  }
  @media (width <= 1023px) {
    font-size: 16px;
    margin-top: 20px;
    padding: 12px 16px;
  }
  @media (width <= 767px) {
    font-size: 14px;
    margin-top: 26px;
    padding: 12px 20px;
  }
}

.p-symposium01__date-pdfArrow {
  color: var(--color-primary);
  font-size: 24px;
  line-height: 1;
}

.p-symposium01__timetable {
  overflow: hidden;
  padding-bottom: 110px;
}

.p-symposium01__timetable-inner {
  margin-inline: auto;
  max-width: var(--width-container);
  padding-inline: var(--spacing-page);
}

.p-symposium01__timetable-heading {
  background-color: var(--color-primary);
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  left: calc(
    -1 * (var(--spacing-page) + ((100vw - var(--width-container)) / 2))
  );
  letter-spacing: 0.1em;
  max-width: 960px;
  padding: 23px var(--spacing-page);
  padding-left: 207px;
  position: relative;
  @media (width <= 1510px) {
    left: calc(-1 * var(--spacing-page));
    padding-left: 20px;
  }
  .c-timetableItem__body & {
    left: calc(
      -1 *
        (
          ((100vw - var(--width-container)) / 2) + var(--spacing-page) + 36px +
            10px
        )
    );
    margin-top: 150px;
    @media (width <= 1510px) {
      left: calc(-1 * (var(--spacing-page) + 36px + 10px));
    }
  }
}

.p-symposium01__timetable-body {
  margin-top: 40px;
  .p-symposium01__timetable-default + .p-symposium01__timetable-default {
    margin-top: 1em;
  }
}
.p-symposium01__timetable-default {
  p {
    font-weight: bold;
    &:first-child {
      font-size: 32px;
      @media (width <= 767px) {
        font-size: 24px;
      }
    }
    &:last-child {
      font-size: 18px;
      @media (width <= 767px) {
        font-size: 14px;
        line-height: normal;
      }
    }
  }
}
.p-symposium01__timetable-title {
  font-size: 32px;
  font-weight: bold;
  @media (width <= 767px) {
    font-size: 20px;
    line-height: normal;
  }
}
.p-symposium01__timetable-person {
  align-items: start;
  display: flex;
  gap: 32px;
  margin-top: 24px;
  @media (width <= 767px) {
    gap: 16px;
    margin-top: 12px;
  }
}
.p-symposium01__timetable-personImg {
  aspect-ratio: 1;
  flex-shrink: 0;
  width: 240px;
  @media (width <= 767px) {
    width: 120px;
  }
  img {
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
  }
}
.p-symposium01__timetable-personBody {
  p {
    font-weight: bold;
    @media (width <= 767px) {
      line-height: normal;
    }
    &:first-child {
      font-size: 32px;
      @media (width <= 767px) {
        font-size: 24px;
      }
    }
    &:last-child {
      font-size: 18px;
      @media (width <= 767px) {
        font-size: 14px;
        margin-top: 10px;
      }
    }
    span {
      font-size: 18px;
      @media (width <= 767px) {
        font-size: 14px;
      }
    }
  }
}

.p-symposium01__timetable-list {
  counter-reset: timetable-list;
  list-style: none;

  li {
    counter-increment: timetable-list;
    display: grid;
    gap: 0 16px;
    grid-template-columns: auto 1fr;

    &::before {
      align-items: center;
      background-color: #fff;
      border: 1px solid #231815;
      content: counter(timetable-list);
      display: flex;
      flex-shrink: 0;
      font-size: 18px;
      font-weight: bold;
      grid-row: span 2;
      height: 32px;
      justify-content: center;
      line-height: 1;
      margin-top: 4px;
      width: 32px;
      @media (width <= 767px) {
        font-size: 16px;
        height: 24px;
        width: 24px;
      }
    }
  }

  li + li {
    margin-top: 30px;
    @media (width <= 767px) {
      margin-top: 12px;
    }
  }
}

.p-symposium01__timetable-listName {
  font-size: 26px;
  font-weight: bold;
  grid-column: 2;
  grid-row: 1;
  line-height: normal;
  @media (width <= 767px) {
    font-size: 24px;
  }
}

.p-symposium01__timetable-listDesc {
  font-size: 16px;
  font-weight: bold;
  grid-column: 2;
  grid-row: 2;
  line-height: normal;
  @media (width <= 767px) {
    font-size: 14px;
  }
}
.p-symposium01__timetable-titleRound {
  align-items: center;
  background-color: var(--color-primary);
  border-radius: 999px;
  color: #fff;
  display: flex;
  font-size: 26px;
  font-weight: bold;
  gap: 12px;
  margin-top: 30px;
  padding: 5px 20px;
  @media (width <= 767px) {
    font-size: 16px;
  }
  &:before {
    background-color: #fff;
    border-radius: 50%;
    content: "";
    flex-shrink: 0;
    height: 20px;
    width: 20px;
    @media (width <= 767px) {
      height: 15px;
      width: 15px;
    }
  }
  .p-symposium01__timetable-panelCont + & {
    margin-top: 50px;
  }
}

.p-symposium01__timetable-panelCont {
  display: grid;
  gap: 54px;
  grid-template-columns: 1fr 1fr;
  margin-top: 50px;
  @media (width <= 767px) {
    gap: 30px;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
}

.p-symposium01__timetable-paneler {
  display: grid;
  gap: 16px 32px;
  grid-template-columns: 240px 1fr;
  grid-template-rows: auto auto;
  @media (768px <= width <= 1023px) {
    grid-template-columns: 120px 1fr;
  }
  @media (width <= 767px) {
    -moz-column-gap: 16px;
    column-gap: 16px;
    grid-template-columns: 120px 1fr;
    row-gap: 30px;
  }
}

.p-symposium01__timetable-panelerImg {
  aspect-ratio: 1;
  grid-column: 1;
  grid-row: 1;
  overflow: hidden;
  @media (width <= 767px) {
    grid-column: 1;
    grid-row: 1;
  }

  img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
  }
}

.p-symposium01__timetable-panelerProfile {
  grid-column: 1;
  grid-row: 2;
  @media (width <= 767px) {
    align-self: center;
    grid-column: 2;
    grid-row: 1;
  }
}

.p-symposium01__timetable-panelerName {
  font-size: 32px;
  font-weight: bold;
  line-height: normal;
  @media (768px <= width <= 1023px) {
    font-size: 20px;
  }
  @media (width <= 767px) {
    font-size: 24px;
  }
}

.p-symposium01__timetable-panelerTitle {
  font-size: 16px;
  font-weight: bold;
  line-height: normal;
  margin-top: 8px;
  @media (768px <= width <= 1023px) {
    font-size: 14px;
  }
  @media (width <= 767px) {
    font-size: 16px;
  }
}

.p-symposium01__timetable-panelerBio {
  font-weight: bold;
  grid-column: 2;
  grid-row: span 2;
  @media (768px <= width <= 1023px) {
    font-size: 14px;
  }
  @media (width <= 767px) {
    font-size: 16px;
    grid-column: span 2;
    grid-row: 2;
  }
}
.p-symposium01__timetable-lounge {
  align-items: center;
  display: flex;
  gap: calc(90 / 1388 * 100%);
  margin-inline: auto;
  margin-top: 70px;
  max-width: 1388px;
  @media (width <= 767px) {
    align-items: start;
    flex-direction: column;
    gap: 30px;
    margin-top: 170px;
  }
}
.p-symposium01__timetable-loungeImg {
  flex-shrink: 0;
  width: calc(650 / 1388 * 100%);
  @media (width <= 767px) {
    width: 100%;
  }
  img {
    height: auto;
    width: 100%;
  }
}
.p-symposium01__timetable-loungeBody {
  flex: 1;
  p {
    font-weight: bold;
    line-height: normal;
    &:first-child {
      font-size: 24px;
      @media (width <= 767px) {
        font-size: 16px;
      }
    }
    &:nth-child(2) {
      font-size: 32px;
      margin-top: 10px;
      @media (width <= 767px) {
        font-size: 24px;
      }
    }
    &:nth-child(3) {
      font-size: 18px;
      @media (width <= 767px) {
        font-size: 16px;
      }
    }
  }
}
.p-symposium01__timetable-note {
  font-size: 18px;
  font-weight: bold;
  margin-top: 104px;
  text-align: center;
  @media (width <= 767px) {
    font-size: 16px;
    padding-inline: var(--spacing-page);
  }
}

/* Member Page
--------------------------------------------- */
.p-member {
  padding-bottom: 150px;
  @media (width <= 767px) {
    padding-bottom: 80px;
  }
}

.p-member__inner {
  margin-inline: auto;
  max-width: var(--width-container);
  padding-inline: var(--spacing-page);
}

.p-member__heading {
  color: var(--color-primary);
  font-size: 36px;
  font-weight: bold;
  line-height: normal;
  margin-top: 150px;
  padding-bottom: 13px;
  position: relative;
  text-align: center;
  @media (width <= 767px) {
    font-size: 28px;
    margin-top: 100px;
    padding-bottom: 15px;
  }
  &:first-child {
    margin-top: 100px;
    @media (width <= 767px) {
      margin-top: 70px;
    }
  }
  &:after {
    background-image: url("../../assets/images/member/titleline.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    content: "";
    height: 5px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 120px;
    @media (width <= 767px) {
      background-image: url("../../assets/images/member/titleline_sp.svg");
      width: 53px;
    }
  }
}

.p-member__list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 100px;
  @media (768px <= width <= 1023px) {
    grid-template-columns: repeat(4, 1fr);
  }
  @media (width <= 767px) {
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 70px;
  }
}

.p-member__item {
  aspect-ratio: 1;
  background-color: #fff;
  img {
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
  }
}

.p-member__button {
  align-items: center;
  background-color: #fff;
  border: 1px solid var(--color-primary);
  border-radius: 9999px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  color: var(--color-primary);
  display: flex;
  font-size: 24px;
  font-weight: bold;
  height: 80px;
  justify-content: center;
  margin-inline: auto;
  margin-top: 150px;
  max-width: 800px;
  transition: all var(--transition-duration) ease;
  width: 100%;
  @media (hover: hover) {
    &:hover {
      background-color: var(--color-primary);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      color: #fff;
      opacity: 1;
    }
  }
  @media (width <= 767px) {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    font-size: 18px;
    height: 60px;
    margin-top: 60px;
  }
}

/* About Page
--------------------------------------------- */
.p-about {
  padding-bottom: 152px;
  padding-top: 60px;
  @media (width <= 767px) {
    padding-bottom: 100px;
    padding-top: 20px;
  }
}
.p-about__inner {
  margin-inline: auto;
  max-width: var(--width-container);
  padding-inline: var(--spacing-page);
  p {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    @media (width <= 767px) {
      font-size: 16px;
    }
  }
}

/*==================================================
 Utility
================================================== */
/* 表示/非表示切り替え
--------------------------------------------- */
.u-sm-only {
  display: none;
}
@media (width <= 767px) {
  .u-sm-only {
    display: block;
  }
}

.u-md-only {
  display: none;
}
@media (768px <= width <= 1023px) {
  .u-md-only {
    display: block;
  }
}

.u-lg-only {
  display: none;
}
@media (1024px <= width) {
  .u-lg-only {
    display: block;
  }
}

.u-mdLg-only {
  display: none;
}
@media (768px <= width) {
  .u-mdLg-only {
    display: block;
  }
}

.u-smMd-only {
  display: none;
}
@media (width <= 1023px) {
  .u-smMd-only {
    display: block;
  }
}

/* テキストまわり
--------------------------------------------- */
.u-uppercase {
  text-transform: uppercase;
}

/* fade-inアニメーション
--------------------------------------------- */
.js-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1.3s ease,
    transform 1.3s ease;
  &.js-fade-in--visible {
    opacity: 1;
    transform: translateY(0);
  }
}
