@charset "UTF-8";
/*!
global > color
------------------------------
*/
:root {
  --color-white: #ffffff;
  --color-font-base: #000000;
  --color-font-white: #ffffff;
  --color-font-orange: #ff3c37;
  --color-bg-black: #000000;
  --color-bg-orange: #ff3c37;
  --color-bg-gray: #ebe6eb;
  --color-overlay: #d9d9d9;
}

/*!
global > content-width
------------------------------
*/
:root {
  --width-content-s: 340rem;
  --width-content: 1000rem;
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-base: "Zen Kaku Gothic Antique", sans-serif;
  --font-family-en: "Poppins", sans-serif;
  --font-family-sub: "Roboto", sans-serif;
  --font-family-origin: "Shippori Mincho", serif;
}

/*!
global > z-index
------------------------------
*/
:root {
  --z-index-modal: 100;
  --z-index-header: 30;
  --z-index-menu: 10;
  --z-index-default: 1;
}

/*!
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

textarea {
  resize: vertical;
  display: block;
}

select {
  cursor: pointer;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: inherit;
}

tbody {
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

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

img,
svg {
  width: 100%;
  height: auto;
  display: block;
}

dialog {
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  color: inherit;
  border: none;
}

iframe {
  vertical-align: bottom;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

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

/*!
foundation > base
------------------------------
*/
:root {
  --base-vw: 380;
}
@media screen and (min-width: 768px) {
  :root {
    --base-vw: 1200;
  }
}

html {
  font-size: calc(100vw / var(--base-vw));
}

body {
  line-height: 1.7;
  font-size: 16rem;
  color: var(--color-font-base);
  font-family: var(--font-family-base);
}
@media screen and (min-width: 768px) {
  body {
    font-size: 18rem;
  }
}

/*!
utility > utility
------------------------------
*/
.u-ptb {
  padding: 80rem 0;
}
@media screen and (min-width: 768px) {
  .u-ptb {
    padding: 90rem 0;
  }
}

.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

/*!
component > button
------------------------------
*/
.c-button a {
  width: 100%;
  max-width: 360rem;
  display: flex;
  align-items: center;
  border-radius: 100vh;
  background-color: var(--color-bg-black);
  padding: 10rem 10rem 10rem 30rem;
  color: var(--color-font-orange);
  font-family: var(--font-family-en);
  font-size: 46rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-button a {
    font-size: 50rem;
  }
}
.c-button a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 25rem;
  transform: translateY(-50%);
  width: 24rem;
  height: 18rem;
  mask-image: url(../img/icon-arrow-btn.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--color-bg-orange);
  transition: right 0.3s ease;
}
.c-button a span {
  position: relative;
  transition: transform 0.3s ease;
}
@media (any-hover: hover) {
  .c-button a:hover::after {
    right: 18rem;
  }
  .c-button a:hover span {
    transform: translateX(5rem);
  }
}

/*!
component > title
// ------------------------------
// */
.c-title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 24rem;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .c-title {
    flex-direction: row;
    align-items: center;
  }
}
.c-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-bg-black);
}
@media screen and (min-width: 768px) {
  .c-title::after {
    bottom: 4rem;
  }
}

.c-title-en {
  position: relative;
  font-family: var(--font-family-en);
  font-weight: 700;
  font-size: 48rem;
  line-height: 1.2;
  padding: 0 24rem 8rem 0;
  border-bottom: 1px solid var(--color-bg-black);
}
.c-title-en::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background-color: var(--color-bg-black);
}
@media screen and (min-width: 768px) {
  .c-title-en {
    font-size: 70rem;
    padding-bottom: 0;
    padding-right: 30rem;
    border-bottom: none;
  }
  .c-title-en::after {
    height: 95%;
    bottom: 5rem;
  }
}

.c-title--white,
.c-title-en--white,
.c-title-ja--white {
  color: var(--color-font-white);
}
.c-title--white::after,
.c-title-en--white::after,
.c-title-ja--white::after {
  background-color: var(--color-white);
}

.c-title-en--white {
  border-bottom: 1px solid var(--color-white);
}
@media screen and (min-width: 768px) {
  .c-title-en--white {
    border-bottom: none;
  }
}

.c-title-ja {
  padding: 6rem 0;
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: 18rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .c-title-ja {
    margin-top: 0;
    padding-left: 29rem;
    padding-bottom: 16rem;
    font-size: 25rem;
    white-space: nowrap;
  }
}

.c-title--level2::after {
  display: none;
}
.c-title--level2 .c-title-ja {
  position: relative;
  font-size: 24rem;
  line-height: 1.5;
  padding: 4rem 24rem 6rem 0;
}
.c-title--level2 .c-title-ja::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 87%;
  background-color: var(--color-bg-black);
}
@media screen and (min-width: 768px) {
  .c-title--level2 .c-title-ja {
    padding-left: 0;
    font-size: 35rem;
    line-height: 1.14;
    padding: 9rem 31rem 9rem 0;
  }
}

/*!
component > cta
------------------------------
*/
.c-cta {
  width: 100%;
  max-width: 360rem;
}

.c-cta-title {
  border-bottom: 1px solid var(--color-bg-black);
}
.c-cta-title span {
  text-transform: uppercase;
  font-family: var(--font-family-sub);
  font-weight: 500;
  font-size: 30rem;
  line-height: 1.56;
}

.c-cta-button-group {
  margin-top: 22rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 7rem;
}
@media screen and (min-width: 768px) {
  .c-cta-button-group {
    margin-top: 25rem;
    gap: 10rem;
  }
}

/*!
component > section-divider
------------------------------
*/
.c-section-divider {
  position: relative;
}
.c-section-divider img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200/410;
}

/*!
component > table
------------------------------
*/
.c-table-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15rem;
  padding: 12rem 0;
  border-top: 1px solid var(--color-bg-black);
}
@media screen and (min-width: 768px) {
  .c-table-row {
    grid-template-columns: 220rem 1fr;
    gap: 0;
    padding: 26rem 0 24rem 0;
  }
}

.c-table-header {
  font-size: 14rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-table-header {
    font-size: 18rem;
    line-height: 2.22;
  }
}

.c-table-data {
  font-size: 14rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-table-data {
    font-size: 18rem;
    line-height: 2.22;
  }
}
.c-table-data ul {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
@media screen and (min-width: 768px) {
  .c-table-data ul {
    gap: 1rem;
  }
}

/*!
layout > container
------------------------------
*/
.l-container-s {
  width: min(90%, var(--width-content-s));
  margin-inline: auto;
}

.l-container {
  width: min(90%, var(--width-content));
  margin-inline: auto;
}

/*!
layout > header
------------------------------
*/
.l-header {
  padding: 20rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 68rem;
  z-index: var(--z-index-header);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--color-bg-black);
  background-color: var(--color-bg-orange);
}
@media screen and (min-width: 768px) {
  .l-header {
    padding: 20rem 0;
    height: 90rem;
    grid-template-columns: 320rem 1fr;
  }
}

.l-header-logo {
  width: 120rem;
}
@media screen and (min-width: 768px) {
  .l-header-logo {
    width: 215rem;
    margin-left: 100rem;
  }
}

.l-header-menu {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--color-bg-orange);
}
@media screen and (min-width: 768px) {
  .l-header-menu {
    background-color: inherit;
    display: block;
    width: auto;
    height: auto;
    position: static;
  }
}
.l-header-menu::backdrop {
  display: none;
}

.l-header-menu[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-header-menu-close-button {
  position: absolute;
  right: 20rem;
  top: 20rem;
}
@media screen and (min-width: 768px) {
  .l-header-menu-close-button {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .l-header-menu-close-button {
    display: none;
  }
}

.l-header-menu-close-button-line {
  display: block;
  width: 20rem;
  height: 20rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.l-header-menu-close-button-line span {
  display: block;
  width: 25rem;
  height: 1rem;
  background-color: var(--color-bg-black);
  position: absolute;
  translate: -50% -50%;
  top: 50%;
  left: 50%;
}
.l-header-menu-close-button-line span:nth-child(1) {
  rotate: 45deg;
}
.l-header-menu-close-button-line span:nth-child(2) {
  rotate: -45deg;
}

.l-header-menu-nav {
  width: 100%;
}

.l-header-menu-logo {
  display: block;
  margin-inline: auto;
  width: 80%;
  aspect-ratio: 860/197;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .l-header-menu-logo {
    display: none;
  }
}

.l-header-menu-list {
  display: flex;
  flex-direction: column;
  gap: 16rem;
  align-items: center;
  margin-top: 30rem;
}
@media screen and (min-width: 768px) {
  .l-header-menu-list {
    padding-right: 100rem;
    flex-direction: row;
    justify-content: flex-end;
    gap: 30rem;
    margin-top: 0;
  }
}

.l-header-menu-item {
  text-transform: uppercase;
}
.l-header-menu-item a {
  font-family: var(--font-family-en);
  font-weight: 600;
  font-size: 20rem;
  position: relative;
}
.l-header-menu-item a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color-bg-black);
  left: 0;
  bottom: 10rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
@media (any-hover: hover) {
  .l-header-menu-item a:hover::after {
    visibility: visible;
    bottom: 0;
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .l-header-menu-item a {
    font-family: var(--font-family-en);
    font-weight: 600;
    font-size: 18rem;
    line-height: 2.6;
  }
}

@media screen and (min-width: 768px) {
  .l-header-menu-button {
    display: none;
  }
}

.l-header-menu-button-line {
  display: block;
  width: 20rem;
  height: 20rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.l-header-menu-button-line span {
  display: block;
  width: 100%;
  height: 1rem;
  background-color: var(--color-bg-black);
}

/*!
layout > footer
------------------------------
*/
.l-footer {
  padding: 12rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  border-top: 1px solid var(--color-bg-black);
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding: 18rem 0 22rem 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.l-footer-content {
  display: flex;
  justify-content: flex-end;
  gap: 20rem;
}

.l-footer-link a {
  display: flex;
  align-items: center;
  gap: 12rem;
  font-weight: 500;
  font-size: 15rem;
  line-height: 2.2;
  position: relative;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .l-footer-link a:hover {
    color: var(--color-font-orange);
  }
  .l-footer-link a:hover .l-footer-link-arrow {
    background-color: var(--color-bg-orange);
  }
}
@media screen and (min-width: 768px) {
  .l-footer-link a {
    font-size: 19rem;
  }
}
@media screen and (min-width: 768px) {
  .l-footer-link {
    line-height: 2.1;
  }
}

.l-footer-link-arrow {
  width: 18rem;
  aspect-ratio: 18/14;
  mask-image: url(../img/icon-arrow-btn.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--color-font-base);
  transition: background-color 0.3s ease;
}

.l-footer-copyright {
  font-size: 13rem;
  line-height: 2.1;
}
@media screen and (min-width: 768px) {
  .l-footer-copyright {
    font-size: 19rem;
    margin-right: -38rem;
  }
}

/*!
page > kv
------------------------------
*/
.kv {
  padding: 84rem 20rem 80rem 20rem;
  background-color: var(--color-bg-orange);
  position: relative;
  border-top: 1px solid var(--color-bg-black);
}
@media screen and (min-width: 768px) {
  .kv {
    padding: 100rem 100rem 156rem 85rem;
  }
}

.kv-logo-group {
  width: 100%;
  aspect-ratio: 1015/410;
}
@media screen and (min-width: 768px) {
  .kv-logo-group {
    width: 1015rem;
  }
}

.kv-logo-catchcopy {
  width: 38rem;
  aspect-ratio: 3777/12500;
}
@media screen and (min-width: 768px) {
  .kv-logo-catchcopy {
    width: 123rem;
  }
}

.kv-image-wrapper {
  overflow: hidden;
  position: absolute;
  width: 340rem;
  height: 211rem;
  aspect-ratio: 340/211;
  object-fit: cover;
  top: 233rem;
  left: 50%;
  transform: translateX(-50%);
  filter: grayscale(100%);
  mix-blend-mode: multiply;
  will-change: filter;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
@media screen and (min-width: 768px) {
  .kv-image-wrapper {
    width: 580rem;
    height: 360rem;
    aspect-ratio: 580/360;
    top: 650rem;
    left: auto;
    right: 0;
    transform: inherit;
  }
}

.kv-image-group {
  position: relative;
}

.kv-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}
.kv-image.is-visible {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.kv-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 340/211;
}
@media screen and (min-width: 768px) {
  .kv-image img {
    aspect-ratio: 580/360;
  }
}

.kv-copy {
  position: absolute;
  width: 216rem;
  aspect-ratio: 216/65;
  object-fit: cover;
  top: 922rem;
  right: 0;
}
@media screen and (min-width: 768px) {
  .kv-copy {
    width: 410rem;
    top: 1376rem;
    left: auto;
    right: 0;
  }
}

.kv-content {
  margin-top: 261rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 92rem;
}
@media screen and (min-width: 768px) {
  .kv-content {
    margin: 130rem 0 0 10rem;
    gap: 52rem;
  }
}

.kv-message {
  font-size: 20rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .kv-message {
    font-size: 30rem;
  }
}
.kv-message span {
  display: block;
}

.kv-message--large {
  margin-top: 12rem;
  font-size: 28rem;
}
@media screen and (min-width: 768px) {
  .kv-message--large {
    font-size: 50rem;
  }
}

/*!
page > overview
------------------------------
*/
.overview {
  background-color: var(--color-bg-gray);
}

@media screen and (min-width: 768px) {
  .overview-wrapper {
    padding-bottom: 78rem;
  }
}

.overview-text {
  margin-top: 36rem;
  font-size: 16rem;
  font-weight: 700;
  line-height: 2.2;
}
@media screen and (min-width: 768px) {
  .overview-text {
    margin-top: 42rem;
    font-size: 20rem;
    line-height: 2;
  }
}

.overview-content {
  margin-top: 54rem;
}
@media screen and (min-width: 768px) {
  .overview-content {
    margin-top: 95rem;
  }
}
@media screen and (min-width: 768px) {
  .overview-content--session {
    margin-top: 113rem;
  }
}

.overview-table {
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  .overview-table {
    margin-top: 20rem;
  }
}

@media screen and (min-width: 768px) {
  .overview-event-session {
    padding-bottom: 56rem;
  }
}

.overview-event-info ul {
  gap: 24rem;
}
.overview-event-info li {
  display: grid;
  grid-template-columns: 20rem 1fr;
  gap: 18rem;
}
@media screen and (min-width: 768px) {
  .overview-event-info ul {
    gap: 12rem;
  }
}

.overview-event-number {
  font-family: var(--font-family-en);
  font-size: 16rem;
  font-weight: 600;
  line-height: 2.35;
}
@media screen and (min-width: 768px) {
  .overview-event-number {
    font-size: 20rem;
  }
}

.overview-event-title {
  font-size: 16rem;
  font-weight: 700;
  line-height: 1.66;
}
@media screen and (min-width: 768px) {
  .overview-event-title {
    font-size: 21rem;
  }
}

@media screen and (min-width: 768px) {
  .overview-sp-br {
    display: none;
  }
}

.overview-event-block {
  padding-left: 18rem;
  padding-top: 3rem;
  position: relative;
}
.overview-event-block::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background-color: var(--color-bg-black);
}
@media screen and (min-width: 768px) {
  .overview-event-block::before {
    left: 6rem;
  }
}
@media screen and (min-width: 768px) {
  .overview-event-block {
    padding-left: 24rem;
  }
}

.overview-event-info ul > li:first-child .overview-event-block::before {
  height: 88%;
}

.overview-event-detail {
  margin-top: 24rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12rem;
  justify-items: center;
}
@media screen and (min-width: 768px) {
  .overview-event-detail {
    margin-top: 8rem;
    grid-template-columns: 310rem 20rem 310rem;
    gap: 5rem;
    align-items: center;
    justify-items: flex-start;
  }
}

.overview-event-speaker {
  display: inline-flex;
  flex-direction: column;
  padding: 12rem 12rem 6rem 12rem;
  border-top: 1px solid var(--color-bg-black);
  border-bottom: 1px solid var(--color-bg-black);
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .overview-event-speaker {
    margin-top: 12rem;
    width: 310rem;
  }
}

.overview-event-speaker-information {
  font-size: 14rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .overview-event-speaker-information {
    font-size: 15rem;
  }
}

.overview-event-speaker-name {
  font-size: 16rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .overview-event-speaker-name {
    font-size: 18rem;
  }
}

.overview-event-cross {
  display: block;
  position: relative;
  width: 18rem;
  height: 18rem;
}
.overview-event-cross::after, .overview-event-cross::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 25rem;
  background-color: var(--color-bg-black);
}
.overview-event-cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.overview-event-cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .overview-event-cross {
    width: 20rem;
    height: 20rem;
  }
}

.overview-point li {
  position: relative;
  padding-left: 20rem;
}
.overview-point li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (min-width: 768px) {
  .overview-point-sub {
    font-size: 17rem;
  }
}

/*!
page > merit
------------------------------
*/
.merit {
  background-color: var(--color-bg-black);
}

@media screen and (min-width: 768px) {
  .merit-wrapper {
    padding-top: 80rem;
    padding-bottom: 98rem;
  }
}

.merit-content {
  margin-top: 48rem;
}
@media screen and (min-width: 768px) {
  .merit-content {
    margin-top: 40rem;
  }
}

.merit-list {
  counter-reset: number;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48rem;
}
@media screen and (min-width: 768px) {
  .merit-list {
    grid-template-columns: 500rem 1fr;
    gap: 40rem;
  }
}

.merit-item {
  counter-increment: number;
  position: relative;
  padding-top: 60rem;
  padding: 60rem 12rem 24rem 12rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16rem;
}
@media screen and (min-width: 768px) {
  .merit-item {
    padding: 0 24rem 24rem 59rem;
    height: 390rem;
  }
}
@media screen and (min-width: 768px) {
  .merit-item:nth-child(2n+1) {
    padding: 0 60rem 24rem 59rem;
    border-right: 1px solid var(--color-white);
  }
}
.merit-item:not(:first-child) {
  border-top: 1px solid var(--color-white);
}
@media screen and (min-width: 768px) {
  .merit-item:not(:first-child) {
    border-top: none;
  }
}
.merit-item::before {
  content: counter(number, decimal-leading-zero);
  position: absolute;
  top: 24rem;
  left: 12rem;
  color: var(--color-font-white);
  font-family: var(--font-family-en);
  font-size: 20rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .merit-item::before {
    top: 10rem;
  }
}

.merit-text {
  font-size: 20rem;
  font-weight: 700;
  line-height: 1.82;
  color: var(--color-font-white);
}
@media screen and (min-width: 768px) {
  .merit-text {
    font-size: 22rem;
  }
}

.merit-image {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .merit-image {
    max-width: 360rem;
    max-height: 220rem;
    object-fit: contain;
  }
}

/*!
page > guideline
------------------------------
*/
.guideline {
  background-color: var(--color-bg-gray);
}
@media screen and (min-width: 768px) {
  .guideline {
    padding-bottom: 44rem;
  }
}

@media screen and (min-width: 768px) {
  .guideline-wrapper {
    padding-top: 80rem;
  }
}

.guideline-content {
  margin-top: 54rem;
}
@media screen and (min-width: 768px) {
  .guideline-content {
    margin-top: 84rem;
  }
}
.guideline-content h3 {
  font-size: 25rem;
  line-height: 1.44;
}
@media screen and (min-width: 768px) {
  .guideline-content h3 {
    font-size: 35rem;
    line-height: 1.14;
  }
}

.guideline-entry-wrapper {
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  .guideline-entry-wrapper {
    margin-top: 24rem;
  }
}

.guideline-entry {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32rem;
  padding: 32rem 0;
  border-top: 1px solid var(--color-bg-black);
}
@media screen and (min-width: 768px) {
  .guideline-entry {
    grid-template-columns: 220rem 1fr;
    gap: 0;
    padding: 41rem 0 62rem 0;
  }
}

.guideline-entry-header {
  display: block;
  width: fit-content;
  padding: 0 0 12rem 12rem;
  border-bottom: 1px solid var(--color-bg-black);
  border-left: 1px solid var(--color-bg-black);
}
@media screen and (min-width: 768px) {
  .guideline-entry-header {
    padding: 0;
    border-bottom: none;
    border-left: none;
  }
}

.guideline-label {
  font-family: var(--font-family-en);
  font-size: 25rem;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .guideline-label {
    font-size: 35rem;
  }
}

.guideline-title {
  font-size: 13rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .guideline-title {
    font-size: 18rem;
  }
}

.guideline-detail ul {
  display: flex;
  flex-direction: column;
  gap: 10rem;
}
@media screen and (min-width: 768px) {
  .guideline-detail ul {
    gap: 0;
  }
}
.guideline-detail li {
  position: relative;
  padding-left: 20rem;
  font-size: 16rem;
  font-weight: 700;
}
.guideline-detail li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (min-width: 768px) {
  .guideline-detail li {
    font-size: 18rem;
    line-height: 2.22;
  }
}

.guideline-detail-note {
  font-size: 15rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .guideline-detail-note {
    font-size: 17rem;
  }
}

.guideline-cta {
  margin-top: 32rem;
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .guideline-cta {
    margin-top: 77rem;
    grid-template-columns: 90rem 1fr;
  }
}

.guideline-cta-head {
  font-size: 16rem;
  font-weight: 700;
  line-height: 1.6;
  width: 90rem;
  padding-right: 26rem;
  position: relative;
}
.guideline-cta-head::after {
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  right: 0;
  background-color: var(--color-bg-black);
  position: absolute;
}
@media screen and (min-width: 768px) {
  .guideline-cta-head {
    font-size: 18rem;
    line-height: 2.2;
    padding-right: 0;
  }
  .guideline-cta-head::after {
    display: none;
  }
}

.guideline-cta-entry {
  position: relative;
}
@media screen and (min-width: 768px) {
  .guideline-cta-entry {
    padding-left: 18rem;
  }
  .guideline-cta-entry::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1px;
    height: 96%;
    background-color: var(--color-bg-black);
  }
}

.guideline-cta-text {
  margin-top: 4rem;
  font-size: 15rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .guideline-cta-text {
    font-size: 17rem;
    line-height: 2.35;
  }
}

.guideline-button {
  margin-top: 32rem;
}
@media screen and (min-width: 768px) {
  .guideline-button {
    margin-top: 14rem;
  }
}

.guideline-cta--deadline {
  margin-top: 6rem;
  font-size: 15rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .guideline-cta--deadline {
    margin-top: 9rem;
    font-size: 18rem;
    text-align-last: left;
    padding-left: 36rem;
  }
}

.guideline-note {
  padding-top: 18rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12rem;
  border-top: 1px solid var(--color-bg-black);
}
@media screen and (min-width: 768px) {
  .guideline-note {
    gap: 0;
  }
}
.guideline-note p {
  font-size: 15rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .guideline-note p {
    font-size: 16rem;
    line-height: 2.19;
  }
}
.guideline-note a {
  font-size: 16rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-font-orange);
  position: relative;
}
.guideline-note a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color-bg-orange);
  left: 0;
  bottom: 5rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
@media (any-hover: hover) {
  .guideline-note a:hover::after {
    visibility: visible;
    bottom: 0;
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .guideline-note a {
    font-size: 17rem;
    line-height: 2.1;
    width: fit-content;
  }
}

/*!
page > schedule
------------------------------
*/
.schedule {
  background-color: var(--color-bg-orange);
}

.schedule-list {
  margin-top: 42rem;
}
@media screen and (min-width: 768px) {
  .schedule-list {
    margin-top: 50rem;
  }
}

.schedule-item {
  display: flex;
  flex-direction: column;
  gap: 12rem;
  padding-bottom: 15rem;
  padding-left: 22rem;
  min-height: 120rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .schedule-item {
    display: grid;
    grid-template-columns: 418rem 1fr;
    gap: 34rem;
    padding-bottom: 26rem;
    min-height: 100rem;
  }
}
.schedule-item::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 80%;
  top: 25rem;
  left: 4rem;
  background-color: var(--color-bg-black);
}
@media screen and (min-width: 768px) {
  .schedule-item::after {
    top: 29rem;
    left: 459rem;
  }
}

.schedule-title {
  font-size: 20rem;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
}
@media screen and (min-width: 768px) {
  .schedule-title {
    font-size: 22rem;
    line-height: 1.82;
    text-align: end;
  }
}
.schedule-title::before {
  content: "";
  position: absolute;
  width: 10rem;
  height: 10rem;
  border-radius: 100vh;
  top: 12rem;
  left: -22rem;
  background-color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .schedule-title::before {
    top: 16rem;
    left: 432rem;
  }
}

@media screen and (min-width: 768px) {
  .schedule-body {
    margin-top: 4rem;
  }
}

.schedule-description {
  font-size: 20rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .schedule-description {
    font-size: 22rem;
    line-height: 1.55;
  }
}

.schedule-pc-br {
  display: none;
}
@media screen and (min-width: 768px) {
  .schedule-pc-br {
    display: block;
  }
}

.schedule-note {
  margin-top: 8rem;
  font-size: 15rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .schedule-note {
    font-size: 16rem;
    line-height: 1.63;
  }
}

/*!
page > faq
------------------------------
*/
.faq-accordion-details {
  border-bottom: 1px solid var(--color-bg-black);
}

.faq-accordion-summary {
  cursor: pointer;
  display: block;
  padding: 28rem 20rem;
  font-weight: bold;
  position: relative;
}
@media screen and (min-width: 768px) {
  .faq-accordion-summary {
    padding: 46rem 50rem;
    font-size: 22rem;
    line-height: 1.82;
  }
}

.faq-accordion-summary::-webkit-details-marker {
  display: none;
}

.faq-accordion-label-q,
.faq-accordion-label-a {
  position: relative;
}
.faq-accordion-label-q::before,
.faq-accordion-label-a::before {
  position: absolute;
  left: -20rem;
  font-family: var(--font-family-en);
  font-size: 20rem;
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .faq-accordion-label-q::before,
  .faq-accordion-label-a::before {
    font-size: 30rem;
    line-height: 1.57;
    left: -48rem;
  }
}
.faq-accordion-label-q br,
.faq-accordion-label-a br {
  display: none;
}
@media screen and (min-width: 768px) {
  .faq-accordion-label-q br,
  .faq-accordion-label-a br {
    display: block;
  }
}

.faq-accordion-label-q::before {
  content: "Q";
  top: -4rem;
}
@media screen and (min-width: 768px) {
  .faq-accordion-label-q::before {
    top: -6rem;
  }
}

.faq-accordion-label-a::before {
  content: "A";
  top: -1rem;
}
@media screen and (min-width: 768px) {
  .faq-accordion-label-a::before {
    top: -2rem;
  }
}

.faq-accordion-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24rem;
  height: 24rem;
  border-radius: 100vh;
  background-color: var(--color-bg-black);
}
@media screen and (min-width: 768px) {
  .faq-accordion-icon {
    width: 30rem;
    height: 30rem;
  }
}
.faq-accordion-icon span {
  content: "";
  display: block;
  background-color: var(--color-bg-orange);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.faq-accordion-icon span:nth-child(1) {
  width: 57%;
  height: 2rem;
}
.faq-accordion-icon span:nth-child(2) {
  width: 2rem;
  height: 57%;
  transition: 0.3s;
}

.faq-accordion-details.is-open .faq-accordion-icon span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-accordion-contents {
  overflow: hidden;
}

.faq-accordion-contents-inner {
  display: block;
  padding: 28rem 20rem;
  font-weight: bold;
  position: relative;
}
@media screen and (min-width: 768px) {
  .faq-accordion-contents-inner {
    padding: 48rem 50rem;
    font-size: 22rem;
  }
}
.faq-accordion-contents-inner:before {
  position: absolute;
  content: "";
  background-image: linear-gradient(to right, #000, #000 3rem, transparent 5rem, transparent 5rem);
  background-size: 8rem 1rem;
  background-repeat: repeat-x;
  top: 0;
  bottom: 0;
  left: 0;
  right: 24rem;
}
@media screen and (min-width: 768px) {
  .faq-accordion-contents-inner:before {
    right: 100rem;
  }
}

/*!
page > contact
------------------------------
*/
.contact-logo {
  margin-inline: auto;
  width: 100%;
  aspect-ratio: 650/198;
}
@media screen and (min-width: 768px) {
  .contact-logo {
    width: 650rem;
  }
}

.contact-cta {
  margin-top: 48rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .contact-cta {
    margin-top: 53rem;
  }
}

.contact-deadline {
  margin-top: 15rem;
  font-size: 16rem;
  font-weight: 700;
  line-height: 2.22;
  text-align: center;
}

.contact-detail {
  text-align: center;
  margin-top: 46rem;
}

.contact-detail-heading {
  font-size: 20rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .contact-detail-heading {
    font-size: 23rem;
    line-height: 1.74;
  }
}

.contact-detail-email {
  font-family: var(--font-family-sub);
  font-size: 32rem;
  font-weight: 500;
  line-height: 1.2;
  position: relative;
}
.contact-detail-email a {
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .contact-detail-email a:hover {
    color: var(--color-font-orange);
  }
}
@media screen and (min-width: 768px) {
  .contact-detail-email {
    font-size: 40rem;
    line-height: 1.18;
  }
}

.contact-detail-company {
  font-size: 16rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .contact-detail-company {
    font-size: 18rem;
    line-height: 2.22;
  }
}

/*!
page > origin
------------------------------
*/
.origin {
  background-color: var(--color-bg-black);
}

.origin-inner {
  padding: 50rem 0;
}
@media screen and (min-width: 768px) {
  .origin-inner {
    padding: 70rem 0;
  }
}

.origin-word {
  display: inline-block;
  padding: 0 0 2rem 2rem;
  font-family: var(--font-family-origin);
  font-size: 26rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-font-base);
  background-color: var(--color-bg-orange);
}
@media screen and (min-width: 768px) {
  .origin-word {
    padding: 2rem 0 8rem 8rem;
    font-size: 40rem;
  }
}

.origin-description {
  margin-top: 15rem;
  color: var(--color-font-orange);
  font-size: 15rem;
  font-weight: 700;
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .origin-description {
    margin-top: 30rem;
    font-size: 25rem;
  }
}/*# sourceMappingURL=style.css.map */