@charset "UTF-8";
#ss-preview {
  display: none;
}

/* --------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Foundation
  - Base
# Layout
  - wrapper
  - article.body
  - container
  - header
  - footer
# Object
  ## Component
    - title
  ## Project
  ## Utility
*/
/* ==========================================================================
# Foundation
========================================================================== */
/* Base
---------------------------------------------------------- */
:root {
  --leading-trim: calc((1em - 1lh) / 2);
}

@supports not (top: 1lh) {
  :root {
    --leading-trim: 0;
  }
}
html {
  height: 100%;
  scroll-behavior: auto;
}

body {
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #f8f7f0;
  color: #332f2f;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.75;
  overflow-wrap: anywhere;
  line-break: strict;
}
body.is-active {
  height: 100%;
  overflow: hidden;
}

:focus {
  outline: 2px solid #0019ff;
}

:focus:not(:focus-visible) {
  outline: none;
}

a:focus img {
  background-color: transparent;
}

img,
svg {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

a {
  transition: text-decoration-color 0.3s;
  color: #006f70;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
}
a:hover, a:focus {
  text-decoration-color: transparent;
}
a:visited {
  color: #006f70;
}

ul {
  list-style: none;
}

/* ==========================================================================
# Layout
========================================================================== */
/* l-wrapper
---------------------------------------------------------- */
.l-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}

/* article.body
---------------------------------------------------------- */
article.body {
  display: flex;
  flex-direction: column;
}

/* l-container
---------------------------------------------------------- */
.l-container__inner {
  max-width: 1160px;
  margin-inline: auto;
  padding: 120px 16px 80px 16px;
}
@media only screen and (max-width: 768px) {
  .l-container__inner {
    padding: 80px 16px 40px 16px;
  }
}

/* l-header
---------------------------------------------------------- */
.l-header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  background-color: rgba(64, 0, 2, 0.8);
}

.l-header__inner {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 8px 20px;
}
@media only screen and (max-width: 768px) {
  .l-header__inner {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 8px 10px;
  }
}

.l-header__logo a img {
  width: 120px;
}

.l-header__nav-items {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: start;
  gap: 56px;
}
@media only screen and (max-width: 768px) {
  .l-header__nav-items {
    gap: clamp(10px, 9.8vw - 25.29px, 50px);
  }
}

.l-header__nav-item a {
  transition: text-decoration-color 0.3s;
  color: #fff;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: transparent;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__nav-item a:hover {
    text-decoration-color: currentColor;
  }
}
.l-header__nav-item a:focus-visible {
  text-decoration-color: currentColor;
}
@media only screen and (max-width: 768px) {
  .l-header__nav-item a {
    font-size: 12px;
  }
}

/* footer
---------------------------------------------------------- */
.l-footer {
  background: transparent linear-gradient(117deg, #9a020d 0%, #75020a 49%, #4d0107 100%) 0 0 no-repeat padding-box;
}
.l-footer__inner {
  max-width: 1160px;
  margin-inline: auto;
  padding: 70px 16px 20px 16px;
}
@media only screen and (max-width: 768px) {
  .l-footer__inner {
    padding: 40px 16px 20px 16px;
  }
}
.l-footer__body {
  display: flex;
  align-items: center;
  gap: 76px;
}
@media only screen and (max-width: 768px) {
  .l-footer__body {
    flex-direction: column;
    gap: 20px;
  }
}
.l-footer__logo {
  margin-top: -30px;
}
@media only screen and (max-width: 768px) {
  .l-footer__logo {
    margin-top: 0;
  }
}
.l-footer__logo img {
  vertical-align: super;
}
@media only screen and (max-width: 768px) {
  .l-footer__logo img {
    width: 240px;
  }
}
.l-footer__nav {
  display: flex;
  gap: 66px;
}
@media only screen and (max-width: 768px) {
  .l-footer__nav {
    gap: 40px;
  }
}
.l-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.l-footer__nav-item {
  margin-block: var(--leading-trim);
}
.l-footer__nav-item a {
  transition: text-decoration-color 0.3s;
  color: #fff;
  font-size: 14px;
  text-decoration: underline;
  text-decoration-color: transparent;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__nav-item a:hover {
    text-decoration-color: currentColor;
  }
}
.l-footer__nav-item a:focus-visible {
  text-decoration-color: currentColor;
}
.l-footer__sns {
  margin-top: 14px;
}
.l-footer__sns-list {
  display: flex;
  justify-self: center;
  gap: 22px;
}
.l-footer__copyright {
  margin-top: 55px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .l-footer__copyright {
    margin-top: 40px;
  }
}
.l-footer__copyright small {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

/* ==========================================================================
# Object
========================================================================== */
/* -----------------------------------------------------------------
## Component
----------------------------------------------------------------- */
/* c-title
---------------------------------------------------------- */
.c-title {
  position: relative;
  z-index: 1;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
.c-title.-bg:before {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: clamp(100px, 9.8vw + 64.71px, 140px);
  height: clamp(86px, 8.58vw + 55.12px, 121px);
  transform: translate(-50%, -50%);
  background: url("../img/title.webp") no-repeat center/contain;
}
.c-title.-lv2 {
  font-size: clamp(28px, 2.94vw + 17.41px, 40px);
}
.c-title.-lv3 {
  font-size: clamp(24px, 2.94vw + 13.41px, 36px);
}
.c-title.-white {
  color: #fff;
}
.c-title.-red {
  color: #9a020d;
}

/* -----------------------------------------------------------------
## Project
----------------------------------------------------------------- */
.p-kamban {
  display: grid;
  position: relative;
  height: 100vh;
  background: url("../img/hero.webp") no-repeat center/cover;
  place-content: center;
}
.p-kamban__images {
  display: flex;
  align-items: end;
  justify-self: center;
}
@media only screen and (max-width: 768px) {
  .p-kamban__images {
    flex-direction: column;
    align-items: center;
    padding-bottom: 10.4166666667vw;
  }
}
@media only screen and (max-width: 768px) {
  .p-kamban__image {
    max-width: 400px;
  }
}
@media only screen and (max-width: 480px) {
  .p-kamban__image {
    max-width: 300px;
  }
}
.p-kamban__footer {
  display: flex;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  gap: 76px;
  width: 100%;
  margin-top: 32px;
  padding: 16px 24px;
  background: rgba(64, 0, 2, 0.6);
}
@media only screen and (max-width: 768px) {
  .p-kamban__footer {
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
    padding: 8px 16px;
    font-size: 14px;
  }
}
.p-kamban__schedule {
  color: #fff;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .p-kamban__schedule {
    order: 2;
  }
}
.p-kamban__button {
  position: relative;
  flex-shrink: 0;
  width: 240px;
}
@media only screen and (max-width: 768px) {
  .p-kamban__button {
    order: 1;
  }
}
.p-kamban__button::before {
  content: "";
  position: absolute;
  top: -74px;
  width: 100%;
  height: 100%;
  background: url("../img/free.svg") no-repeat center/contain;
}
@media only screen and (max-width: 768px) {
  .p-kamban__button::before {
    top: -54px;
    height: 110%;
  }
}
.p-kamban__button a {
  display: inline-block;
  width: 100%;
  padding: 8px 16px;
  transition: background-color 0.3s;
  border-radius: 28px;
  background-color: #226a3e;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-kamban__button a:hover {
    background-color: #2c844e;
  }
}
.p-kamban__button a:focus-visible {
  background-color: #2c844e;
}
@media only screen and (max-width: 768px) {
  .p-kamban__button a {
    padding: 6px 12px;
    font-size: 14px;
  }
}
.p-kamban__button__center {
  position: relative;
  flex-shrink: 0;
  width: 240px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .p-kamban__button__center {
    order: 1;
  }
}
.p-kamban__button__center::before {
  content: "";
  position: absolute;
  top: -74px;
  width: 100%;
  height: 100%;
  background: url("../img/free.svg") no-repeat center/contain;
}
@media only screen and (max-width: 768px) {
  .p-kamban__button__center::before {
    top: -54px;
    height: 110%;
  }
}
.p-kamban__button__center a {
  display: inline-block;
  width: 100%;
  padding: 8px 16px;
  transition: background-color 0.3s;
  border-radius: 28px;
  background-color: #226a3e;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-kamban__button__center a:hover {
    background-color: #2c844e;
  }
}
.p-kamban__button__center a:focus-visible {
  background-color: #2c844e;
}
@media only screen and (max-width: 768px) {
  .p-kamban__button__center a {
    padding: 6px 12px;
    font-size: 14px;
  }
}
.p-kamban__button__develop {
  position: relative;
  flex-shrink: 0;
  width: 240px;
  margin-left: auto;
}
@media only screen and (max-width: 768px) {
  .p-kamban__button__develop {
    order: 1;
  }
}
.p-kamban__button__develop a {
  display: inline-block;
  width: 100%;
  padding: 8px 16px;
  transition: background-color 0.3s;
  border-radius: 28px;
  background-color: #22616b;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-kamban__button__develop a:hover {
    background-color: #2c844e;
  }
}
.p-kamban__button__develop a:focus-visible {
  background-color: #2c844e;
}
@media only screen and (max-width: 768px) {
  .p-kamban__button__develop a {
    padding: 6px 12px;
    font-size: 14px;
  }
}

.p-banquet {
  background: transparent linear-gradient(300deg, #152f13 0%, #0f310f 7%, #184323 67%, #245835 100%) 0 0 no-repeat padding-box;
}
.p-banquet__body {
  max-width: 718px;
  margin-top: 80px;
  margin-inline: auto;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-banquet__body {
    margin-top: clamp(50px, 7.35vw + 23.53px, 80px);
  }
}
.p-banquet__description {
  color: #fff;
  font-size: 18px;
  line-height: 2.5;
}
@media only screen and (max-width: 768px) {
  .p-banquet__description {
    font-size: 16px;
    line-height: 2;
  }
}

.p-talk__body {
  margin-top: 80px;
}
@media only screen and (max-width: 768px) {
  .p-talk__body {
    margin-top: 50px;
  }
}
.p-talk__body.-free {
  padding-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  .p-talk__body.-free {
    padding-bottom: 50px;
  }
}
.p-talk__body.-special {
  padding-top: 80px;
  background: url("../img/hr.webp") no-repeat top/contain;
}
@media only screen and (max-width: 768px) {
  .p-talk__body.-special {
    padding-top: 50px;
  }
}
.p-talk__lead {
  max-width: 704px;
  margin-top: 40px;
  margin-inline: auto;
  color: #9a020d;
  font-size: clamp(17px, 1.23vw + 12.59px, 22px);
  text-align: justify;
}
@media only screen and (max-width: 768px) {
  .p-talk__lead {
    margin-top: 24px;
  }
}
.p-talk__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(30px, 7.5vw + 3px, 90px);
  margin-top: 80px;
}
.p-talk__name {
  font-size: clamp(16px, 0.75vw + 13.3px, 22px);
  font-weight: 700;
  text-align: center;
}
.p-talk__nickname {
  display: block;
  color: #9a020d;
}
.p-talk__small {
  font-size: 60%;
}
.p-talk__description {
  font-size: 14px;
  font-weight: 700;
  text-align: justify;
}

.p-time__body {
  margin-top: 80px;
}
.p-time__table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 48px;
  border-collapse: collapse;
}
.p-time__table th,
.p-time__table td {
  border: 2px solid #F8F7F0;
  padding: 16px 20px;
  vertical-align: top;
  word-break: break-word;
}
.p-time__table th {
  text-align: center;
  color: #fff;
  font-weight: 900;
}
.p-time__table th:first-child {
  background: #62C0C2;
  width: 30%;
}
.p-time__table th:last-child {
  background: #B66561;
}
.p-time__table td:first-child {
  background: #62C0C2;
  color: #fff;
  text-align: center;
  font-weight: 700;
  width: 30%;
  white-space: nowrap;
}
.p-time__table td:last-child {
  background: #fff;
}
.p-time__caption {
  caption-side: top;
  display: block;
  text-align: left;
  font-weight: 800;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: #B66561;
  padding: 6px 8px 10px;
  letter-spacing: 0.05em;
}
.p-time {
  /* スマホ */
}
@media only screen and (max-width: 768px) {
  .p-time {
    margin-top: clamp(50px, 7.35vw + 23.53px, 80px);
  }
  .p-time__table th,
  .p-time__table td {
    padding: 12px 14px;
  }
  .p-time__table th:first-child,
  .p-time__table td:first-child {
    width: 140px;
  }
}

.u-coming-soon {
  color: #fff;
  text-align: center;
}

.p-access__body {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 80px;
}
@media only screen and (max-width: 768px) {
  .p-access__body {
    flex-direction: column;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: clamp(50px, 7.35vw + 23.53px, 80px);
  }
}
.p-access__title {
  font-size: 30px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .p-access__title {
    font-size: 26px;
  }
}
.p-access__description {
  margin-top: 100px;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .p-access__description {
    margin-top: 50px;
    font-size: 16px;
  }
}
.p-access__description__conduct {
  margin: 50px 0;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .p-access__description__conduct {
    margin-top: 50px;
    font-size: 16px;
  }
}
.p-access__button {
  max-width: 414px;
  margin-top: 100px;
}
@media only screen and (max-width: 768px) {
  .p-access__button {
    margin-top: 50px;
  }
}
.p-access__button a {
  display: inline-block;
  width: 100%;
  margin-block: var(--leading-trim);
  padding: 0.625em;
  transition: background-color 0.3s;
  border-radius: 5px;
  background-color: #9a020d;
  color: #fff;
  font-size: 24px;
  text-align: center;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-access__button a:hover {
    background-color: #b3232d;
  }
}
.p-access__button a:focus-visible {
  background-color: #b3232d;
}
@media only screen and (max-width: 768px) {
  .p-access__button a {
    font-size: 20px;
  }
}
.p-access__map {
  width: 100%;
  max-width: 550px;
  aspect-ratio: 550/550;
}
.p-access__map :where(img, video, iframe) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .p-access__map {
    max-width: none;
    aspect-ratio: 550/700;
  }
}

.p-sponsor {
  background: transparent linear-gradient(300deg, #152f13 0%, #0f310f 7%, #184323 67%, #245835 100%) 0 0 no-repeat padding-box;
}
.p-sponsor__body {
  margin-top: 80px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-sponsor__body {
    margin-top: clamp(50px, 7.35vw + 23.53px, 80px);
  }
}
.p-sponsor__status {
  color: #fff;
  font-size: 24px;
}
@media only screen and (max-width: 768px) {
  .p-sponsor__status {
    font-size: 20px;
  }
}
.p-sponsor__status a {
  color: #fff;
  text-decoration: underline transparent;
  transition: text-decoration-color 0.3s;
}
.p-sponsor__status a:hover {
  text-decoration-color: currentColor;
}
.p-sponsor__description {
  margin-top: 32px;
  color: #fff;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .p-sponsor__description {
    margin-top: 24px;
    font-size: 16px;
  }
}

/* -----------------------------------------------------------------
## Utility
----------------------------------------------------------------- */
.u-pt-8 {
  padding-top: 8px;
}

.u-pt-16 {
  padding-top: 16px;
}

.u-pt-24 {
  padding-top: 24px;
}

.u-pt-32 {
  padding-top: 32px;
}

.u-pt-40 {
  padding-top: 40px;
}

.u-pr-8 {
  padding-right: 8px;
}

.u-pr-16 {
  padding-right: 16px;
}

.u-pr-24 {
  padding-right: 24px;
}

.u-pr-32 {
  padding-right: 32px;
}

.u-pr-40 {
  padding-right: 40px;
}

.u-pb-8 {
  padding-bottom: 8px;
}

.u-pb-16 {
  padding-bottom: 16px;
}

.u-pb-24 {
  padding-bottom: 24px;
}

.u-pb-32 {
  padding-bottom: 32px;
}

.u-pb-40 {
  padding-bottom: 40px;
}

.u-pl-8 {
  padding-left: 8px;
}

.u-pl-16 {
  padding-left: 16px;
}

.u-pl-24 {
  padding-left: 24px;
}

.u-pl-32 {
  padding-left: 32px;
}

.u-pl-40 {
  padding-left: 40px;
}

.u-px-8 {
  padding: 0 8px;
}

.u-px-16 {
  padding: 0 16px;
}

.u-px-24 {
  padding: 0 24px;
}

.u-px-32 {
  padding: 0 32px;
}

.u-px-40 {
  padding: 0 40px;
}

.u-py-8 {
  padding: 8px 0;
}

.u-py-16 {
  padding: 16px 0;
}

.u-py-24 {
  padding: 24px 0;
}

.u-py-32 {
  padding: 32px 0;
}

.u-py-40 {
  padding: 40px 0;
}

.u-mt-8 {
  margin-top: 8px;
}

.u-mt-16 {
  margin-top: 16px;
}

.u-mt-24 {
  margin-top: 24px;
}

.u-mt-32 {
  margin-top: 32px;
}

.u-mt-40 {
  margin-top: 40px;
}

.u-mr-8 {
  margin-right: 8px;
}

.u-mr-16 {
  margin-right: 16px;
}

.u-mr-24 {
  margin-right: 24px;
}

.u-mr-32 {
  margin-right: 32px;
}

.u-mr-40 {
  margin-right: 40px;
}

.u-mb-8 {
  margin-bottom: 8px;
}

.u-mb-16 {
  margin-bottom: 16px;
}

.u-mb-24 {
  margin-bottom: 24px;
}

.u-mb-32 {
  margin-bottom: 32px;
}

.u-mb-40 {
  margin-bottom: 40px;
}

.u-ml-8 {
  margin-left: 8px;
}

.u-ml-16 {
  margin-left: 16px;
}

.u-ml-24 {
  margin-left: 24px;
}

.u-ml-32 {
  margin-left: 32px;
}

.u-ml-40 {
  margin-left: 40px;
}

.u-mx-8 {
  margin: 0 8px;
}

.u-mx-16 {
  margin: 0 16px;
}

.u-mx-24 {
  margin: 0 24px;
}

.u-mx-32 {
  margin: 0 32px;
}

.u-mx-40 {
  margin: 0 40px;
}

.u-my-8 {
  margin: 8px 0;
}

.u-my-16 {
  margin: 16px 0;
}

.u-my-24 {
  margin: 24px 0;
}

.u-my-32 {
  margin: 32px 0;
}

.u-my-40 {
  margin: 40px 0;
}

.pt-0 {
  padding-top: 0;
}

.pr-0 {
  padding-right: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pl-0 {
  padding-left: 0;
}

.px-0 {
  padding-right: 0;
  padding-left: 0;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.p-0 {
  padding: 0;
}

.mt-0 {
  margin-top: 0;
}

.mr-0 {
  margin-right: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.ml-0 {
  margin-left: 0;
}

.mx-0 {
  margin-right: 0;
  margin-left: 0;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.m-0 {
  margin: 0;
}

@media only screen and (max-width: 768px) {
  .u-pt-md-8 {
    padding-top: 8px;
  }
  .u-pt-md-16 {
    padding-top: 16px;
  }
  .u-pt-md-24 {
    padding-top: 24px;
  }
  .u-pt-md-32 {
    padding-top: 32px;
  }
  .u-pt-md-40 {
    padding-top: 40px;
  }
  .u-pr-md-8 {
    padding-right: 8px;
  }
  .u-pr-md-16 {
    padding-right: 16px;
  }
  .u-pr-md-24 {
    padding-right: 24px;
  }
  .u-pr-md-32 {
    padding-right: 32px;
  }
  .u-pr-md-40 {
    padding-right: 40px;
  }
  .u-pb-md-8 {
    padding-bottom: 8px;
  }
  .u-pb-md-16 {
    padding-bottom: 16px;
  }
  .u-pb-md-24 {
    padding-bottom: 24px;
  }
  .u-pb-md-32 {
    padding-bottom: 32px;
  }
  .u-pb-md-40 {
    padding-bottom: 40px;
  }
  .u-pl-md-8 {
    padding-left: 8px;
  }
  .u-pl-md-16 {
    padding-left: 16px;
  }
  .u-pl-md-24 {
    padding-left: 24px;
  }
  .u-pl-md-32 {
    padding-left: 32px;
  }
  .u-pl-md-40 {
    padding-left: 40px;
  }
  .u-px-md-8 {
    padding: 0 8px;
  }
  .u-px-md-16 {
    padding: 0 16px;
  }
  .u-px-md-24 {
    padding: 0 24px;
  }
  .u-px-md-32 {
    padding: 0 32px;
  }
  .u-px-md-40 {
    padding: 0 40px;
  }
  .u-py-md-8 {
    padding: 8px 0;
  }
  .u-py-md-16 {
    padding: 16px 0;
  }
  .u-py-md-24 {
    padding: 24px 0;
  }
  .u-py-md-32 {
    padding: 32px 0;
  }
  .u-py-md-40 {
    padding: 40px 0;
  }
  .u-mt-md-8 {
    margin-top: 8px;
  }
  .u-mt-md-16 {
    margin-top: 16px;
  }
  .u-mt-md-24 {
    margin-top: 24px;
  }
  .u-mt-md-32 {
    margin-top: 32px;
  }
  .u-mt-md-40 {
    margin-top: 40px;
  }
  .u-mr-md-8 {
    margin-right: 8px;
  }
  .u-mr-md-16 {
    margin-right: 16px;
  }
  .u-mr-md-24 {
    margin-right: 24px;
  }
  .u-mr-md-32 {
    margin-right: 32px;
  }
  .u-mr-md-40 {
    margin-right: 40px;
  }
  .u-mb-md-8 {
    margin-bottom: 8px;
  }
  .u-mb-md-16 {
    margin-bottom: 16px;
  }
  .u-mb-md-24 {
    margin-bottom: 24px;
  }
  .u-mb-md-32 {
    margin-bottom: 32px;
  }
  .u-mb-md-40 {
    margin-bottom: 40px;
  }
  .u-ml-md-8 {
    margin-left: 8px;
  }
  .u-ml-md-16 {
    margin-left: 16px;
  }
  .u-ml-md-24 {
    margin-left: 24px;
  }
  .u-ml-md-32 {
    margin-left: 32px;
  }
  .u-ml-md-40 {
    margin-left: 40px;
  }
  .u-mx-md-8 {
    margin: 0 8px;
  }
  .u-mx-md-16 {
    margin: 0 16px;
  }
  .u-mx-md-24 {
    margin: 0 24px;
  }
  .u-mx-md-32 {
    margin: 0 32px;
  }
  .u-mx-md-40 {
    margin: 0 40px;
  }
  .u-my-md-8 {
    margin: 8px 0;
  }
  .u-my-md-16 {
    margin: 16px 0;
  }
  .u-my-md-24 {
    margin: 24px 0;
  }
  .u-my-md-32 {
    margin: 32px 0;
  }
  .u-my-md-40 {
    margin: 40px 0;
  }
  .pt-md-0 {
    padding-top: 0;
  }
  .pr-md-0 {
    padding-right: 0;
  }
  .pb-md-0 {
    padding-bottom: 0;
  }
  .pl-md-0 {
    padding-left: 0;
  }
  .px-md-0 {
    padding-right: 0;
    padding-left: 0;
  }
  .py-md-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .p-md-0 {
    padding: 0;
  }
  .mt-md-0 {
    margin-top: 0;
  }
  .mr-md-0 {
    margin-right: 0;
  }
  .mb-md-0 {
    margin-bottom: 0;
  }
  .ml-md-0 {
    margin-left: 0;
  }
  .mx-md-0 {
    margin-right: 0;
    margin-left: 0;
  }
  .my-md-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .m-md-0 {
    margin: 0;
  }
}
.u-coming-soon {
  font-size: 40px;
}
@media only screen and (max-width: 768px) {
  .u-coming-soon {
    font-size: 24px;
  }
}

.u-leading-trim {
  margin-block: calc((1em - 1lh) / 2);
}

.u-margin-auto {
  margin-inline: auto;
}

.u-margin-right-auto {
  margin-inline-start: auto;
}

.u-margin-left-auto {
  margin-inline-end: auto;
}

.u-margin-right-none {
  margin-inline-start: initial;
}

.u-margin-left-none {
  margin-inline-end: initial;
}

.u-only-pc {
  display: block;
}
@media only screen and (max-width: 768px) {
  .u-only-pc {
    display: none;
  }
}

.u-only-sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .u-only-sp {
    display: block;
  }
}

.u-space-pc {
  display: inline;
}
@media only screen and (max-width: 768px) {
  .u-space-pc {
    display: none;
  }
}

.u-space-sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .u-space-sp {
    display: inline;
  }
}

.u-align-center {
  text-align: center;
}

.u-align-right {
  text-align: right;
}

.align-left {
  text-align: left;
}

br.u-only-pc {
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  br.u-only-pc {
    display: none;
  }
}
br.u-only-sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  br.u-only-sp {
    display: inline-block;
  }
}

[lang=en] {
  font-family: "Helvetica Neue", Arial, sans-serif;
}

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