@charset "UTF-8";
:root {
  --inner-scale: 1;
  --vw-base: calc(1440 / var(--inner-scale));
  --inner: 1280;
  --inner-1305: 1305;
  --fz-ratio: 1; /* font-size倍率 */
}
@media screen and (max-width: 1024px) {
  :root {
    --inner-scale: calc(0.9 / (1280 / 1440));
    --fz-ratio: 1.57;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --vw-base: 375;
    --inner-scale: 1;
    --inner: 343;
    --fz-ratio: 1;
  }
}

/* リセットCSS
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6;
  font-weight: 500;
  background: #fff;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #fff;
}

/*------------------------------
common
------------------------------*/
body {
  color: #1F1D1D;
  font-family: "Noto Sans JP", sans-serif;
  word-break: break-all;
}
body.is-active {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll; /* スクロールバー補完 */
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}
html:has(#archive) {
  scroll-behavior: auto;
}

/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .is-pc {
    display: none !important;
  }
}
/* コンテンツ幅
------------------------------*/
.inner {
  width: min(var(--inner) / var(--vw-base) * 100%, var(--inner) / var(--vw-base) * 1440px);
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .inner {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .inner {
    width: calc(var(--inner) / var(--vw-base) * 100%);
  }
}

@media (min-width: 768px) {
  .u-inner-1305 {
    width: min(var(--inner-1305) / var(--vw-base) * 100%, var(--inner-1305) / var(--vw-base) * 1440px);
  }
}

/* タイトル
------------------------------*/
.c-sec-title__en {
  display: block;
  font-weight: 400;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.02em;
}

.c-sec-title__en--sm {
  font-size: min( (50 * 100vw / var(--vw-base)) * var(--fz-ratio) , 50/var(--vw-base) * 1440px );
}
@media (max-width: 1024px) and (min-width: 768px) {
  .c-sec-title__en--sm {
    font-size: calc(min( (50 * 100vw / var(--vw-base)) * var(--fz-ratio) , 50/var(--vw-base) * 1440px ) / 1.57);
  }
}
@media (max-width: 767px) {
  .c-sec-title__en--sm {
    font-size: min( (30 * 100vw / var(--vw-base)) * var(--fz-ratio) , 30/var(--vw-base) * 1440px );
  }
}

.c-sec-title__en--md {
  font-size: min( (70 * 100vw / var(--vw-base)) * var(--fz-ratio) , 70/var(--vw-base) * 1440px );
}
@media (max-width: 1024px) and (min-width: 768px) {
  .c-sec-title__en--md {
    font-size: calc(min( (70 * 100vw / var(--vw-base)) * var(--fz-ratio) , 70/var(--vw-base) * 1440px ) / 1.57);
  }
}
@media (max-width: 767px) {
  .c-sec-title__en--md {
    font-size: min( (40 * 100vw / var(--vw-base)) * var(--fz-ratio) , 40/var(--vw-base) * 1440px );
  }
}

.c-sec-title__en--lg {
  font-size: min( (80 * 100vw / var(--vw-base)) * var(--fz-ratio) , 80/var(--vw-base) * 1440px );
}
@media (max-width: 1024px) and (min-width: 768px) {
  .c-sec-title__en--lg {
    font-size: calc(min( (80 * 100vw / var(--vw-base)) * var(--fz-ratio) , 80/var(--vw-base) * 1440px ) / 1.57);
  }
}
@media (max-width: 767px) {
  .c-sec-title__en--lg {
    font-size: min( (30 * 100vw / var(--vw-base)) * var(--fz-ratio) , 30/var(--vw-base) * 1440px );
  }
}

.c-sec-title__en--xl {
  font-size: min( (90 * 100vw / var(--vw-base)) * var(--fz-ratio) , 90/var(--vw-base) * 1440px );
}
@media (max-width: 1024px) and (min-width: 768px) {
  .c-sec-title__en--xl {
    font-size: calc(min( (90 * 100vw / var(--vw-base)) * var(--fz-ratio) , 90/var(--vw-base) * 1440px ) / 1.57);
  }
}
@media (max-width: 767px) {
  .c-sec-title__en--xl {
    font-size: min( (40 * 100vw / var(--vw-base)) * var(--fz-ratio) , 40/var(--vw-base) * 1440px );
  }
}

.c-sec-title__ja {
  display: block;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.05em;
}

.c-sec-title__ja--md {
  font-size: min( (25 * 100vw / var(--vw-base)) * var(--fz-ratio) , 25/var(--vw-base) * 1440px ); /*  */
  padding: 0.32em;
  margin-top: 0.4em;
}
@media (max-width: 767px) {
  .c-sec-title__ja--md {
    font-size: min( (18 * 100vw / var(--vw-base)) * var(--fz-ratio) , 18/var(--vw-base) * 1440px );
  }
}

.c-sec-title__ja--sm {
  font-size: min( (20 * 100vw / var(--vw-base)) * var(--fz-ratio) , 20/var(--vw-base) * 1440px ); /*  */
  margin-top: 0.5em;
}
@media (max-width: 767px) {
  .c-sec-title__ja--sm {
    font-size: min( (16 * 100vw / var(--vw-base)) * var(--fz-ratio) , 16/var(--vw-base) * 1440px );
  }
}

.c-sec-title__ja--xs {
  font-size: min( (16 * 100vw / var(--vw-base)) * var(--fz-ratio) , 16/var(--vw-base) * 1440px );
  margin-top: 0.688em;
}

/* ページタイトル
------------------------------*/
.c-page-hero {
  width: 100%;
  aspect-ratio: 1440/656;
  padding: 0 1%;
  padding-top: 26.15%;
}
@media (max-width: 767px) {
  .c-page-hero {
    aspect-ratio: 400/400;
    padding: min( 200 * 100vw / var(--vw-base) , 200/var(--vw-base) * 1440px ) 0 min( 30 * 100vw / var(--vw-base) , 30/var(--vw-base) * 1440px );
    padding-top: 0;
    display: flex;
    align-items: flex-end;
  }
}

.c-page-hero--short {
  aspect-ratio: 1440/377;
  padding-top: min( 213 * 100vw / var(--vw-base) , 213/var(--vw-base) * 1440px );
}

.c-page-title {
  color: #fff;
}

.c-page-title__en {
  display: block;
  font-size: min( (80 * 100vw / var(--vw-base)) * var(--fz-ratio) , 80/var(--vw-base) * 1440px );
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .c-page-title__en {
    font-size: calc(min( (80 * 100vw / var(--vw-base)) * var(--fz-ratio) , 80/var(--vw-base) * 1440px ) / 1.57);
  }
}
@media (max-width: 767px) {
  .c-page-title__en {
    font-size: min( (30 * 100vw / var(--vw-base)) * var(--fz-ratio) , 30/var(--vw-base) * 1440px );
  }
}

@media (min-width: 768px) {
  .c-page-title__en.c-page-title__en--large {
    font-size: min( (90 * 100vw / var(--vw-base)) * var(--fz-ratio) , 90/var(--vw-base) * 1440px );
    letter-spacing: 0.05em;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .c-page-title__en.c-page-title__en--large {
    font-size: calc(min( (90 * 100vw / var(--vw-base)) * var(--fz-ratio) , 90/var(--vw-base) * 1440px ) / 1.57);
  }
}

.c-page-title__ja {
  display: block;
  font-size: min( (25 * 100vw / var(--vw-base)) * var(--fz-ratio) , 25/var(--vw-base) * 1440px );
  font-weight: 500;
  margin-top: 0.3em;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .c-page-title__ja {
    font-size: calc(min( (25 * 100vw / var(--vw-base)) * var(--fz-ratio) , 25/var(--vw-base) * 1440px ) / 1.57);
  }
}
@media (max-width: 767px) {
  .c-page-title__ja {
    font-size: min( (18 * 100vw / var(--vw-base)) * var(--fz-ratio) , 18/var(--vw-base) * 1440px );
  }
}

/* テキスト位置
------------------------------*/
.u-text-center {
  text-align: center;
}

/* テキスト色
------------------------------*/
.u-text-wh {
  color: #fff;
}

/* 余白調整
------------------------------*/
.u-mt30 {
  margin-top: min( 30 * 100vw / var(--vw-base) , 30/var(--vw-base) * 1440px );
}
@media (max-width: 767px) {
  .u-mt30 {
    margin-top: min( 15 * 100vw / var(--vw-base) , 15/var(--vw-base) * 1440px );
  }
}

.u-mt30 {
  margin-top: min( 30 * 100vw / var(--vw-base) , 30/var(--vw-base) * 1440px );
}
@media (max-width: 767px) {
  .u-mt30 {
    margin-top: min( 15 * 100vw / var(--vw-base) , 15/var(--vw-base) * 1440px );
  }
}

/* リンク
------------------------------*/
.c-link {
  display: inline-block;
  font-size: min( (15 * 100vw / var(--vw-base)) * var(--fz-ratio) , 15/var(--vw-base) * 1440px );
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.05em;
  padding-right: 2.33em;
  position: relative;
  padding-right: 1.7em; /*  */
}
.c-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1em; /*  */
  transform: translate(-50%, -50%);
  background: url(../img/icon_arrow.png) no-repeat center center/contain;
  width: 1.4em; /*  */
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  .c-link {
    font-size: min( (14 * 100vw / var(--vw-base)) * var(--fz-ratio) , 14/var(--vw-base) * 1440px );
  }
}

.c-link-2::after {
  width: 1.8em;
  right: -1.3em;
}

.c-link-3::after {
  width: 1.8em;
  right: -0.9em;
}

.c-link--yellow[class]::after {
  background: url(../img/icon_arrow_yel.png) no-repeat center center/contain;
}

.c-link--blue {
  color: #1D2088;
}
.c-link--blue::after {
  background: url(../img/icon_arrow_blue.png) no-repeat center center/contain;
}

.c-link--yel {
  color: #9DC93A;
}
.c-link--yel::after {
  background: url(../img/icon_arrow_yel.png) no-repeat center center/contain;
}

.c-link--wh {
  color: #fff;
}
.c-link--wh::after {
  background: url(../img/icon_arrow_wh.png) no-repeat center center/contain;
}

.c-link--wh-underline {
  color: #fff;
  padding: 0.875em 4.47em 0.875em 0;
  border-bottom: 1px solid #fff;
}
.c-link--wh-underline::after {
  background: url(../img/icon_arrow_wh.png) no-repeat center center/contain;
}

.c-link--underline {
  padding: 0.875em 4.47em 0.875em 0;
  border-bottom: 1px solid #1F1D1D;
}

/* リスト
------------------------------*/
.c-bullet-list li {
  text-indent: -1em;
  padding-left: 1em;
}
.c-bullet-list li::before {
  content: "・";
}

/* WORKSブロック
------------------------------*/
.c-works-card {
  background: #fff;
  position: relative;
}
.c-works-card a {
  padding: min( 20 * 100vw / var(--vw-base) , 20/var(--vw-base) * 1440px ) min( 24 * 100vw / var(--vw-base) , 24/var(--vw-base) * 1440px );
  display: inline-block;
  width: 100%;
}

.c-works-card--2 {
  padding: min( 30 * 100vw / var(--vw-base) , 30/var(--vw-base) * 1440px );
}
.c-works-card--2:nth-child(n+2) {
  margin-top: 8%;
}

.c-works-card--3 {
  padding: min( 30 * 100vw / var(--vw-base) , 30/var(--vw-base) * 1440px );
}
@media (min-width: 768px) {
  .c-works-card--3:nth-child(2n) {
    margin-top: 8%;
  }
  .c-works-card--3:nth-child(2n-1) {
    margin-top: 3%;
  }
  .c-works-card--3:nth-child(1) {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .c-works-card--3:nth-child(n+2) {
    margin-top: 8%;
  }
}

.c-works-card__thumbnail img {
  aspect-ratio: 325/227;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-works-card__body {
  margin-top: min( 13 * 100vw / var(--vw-base) , 13/var(--vw-base) * 1440px );
}
@media (min-width: 768px) {
  .c-works-card__body {
    margin-bottom: min( 40 * 100vw / var(--vw-base) , 40/var(--vw-base) * 1440px );
  }
}

.c-works-card__categorys {
  display: flex;
  flex-wrap: wrap;
  gap: min( 7 * 100vw / var(--vw-base) , 7/var(--vw-base) * 1440px );
}

.c-works-card__category {
  display: inline-block;
  font-size: min( (16 * 100vw / var(--vw-base)) * var(--fz-ratio) , 16/var(--vw-base) * 1440px );
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.05em;
  color: #1D2088;
  border: 1px solid #1D2088;
  border-radius: 5px;
  padding: 0 0.7em;
}
.c-works-card__category--yellow[class] {
  color: #9DC93A;
  border-color: #9DC93A;
}

.c-works-card__title {
  font-size: min( (18 * 100vw / var(--vw-base)) * var(--fz-ratio) , 18/var(--vw-base) * 1440px );
  font-weight: 600;
  line-height: normal;
  margin-top: 0.3em;
}
.c-works-card__link {
  text-align: right;
  margin-top: min( 40 * 100vw / var(--vw-base) , 40/var(--vw-base) * 1440px ); /*  */
}
@media (min-width: 768px) {
  .c-works-card__link {
    position: absolute;
    right: 2vw;
    bottom: 1.5vw;
    margin-top: 0;
  }
}

/* ナンバー付きリスト
------------------------------*/
.c-number-item {
  display: flex;
  align-items: center;
  padding: min( 60 * 100vw / var(--vw-base) , 60/var(--vw-base) * 1440px ) 0 min( 60 * 100vw / var(--vw-base) , 60/var(--vw-base) * 1440px ) min( 30 * 100vw / var(--vw-base) , 30/var(--vw-base) * 1440px );
  border-bottom: 1px solid #9D9D9D;
}
@media (max-width: 767px) {
  .c-number-item {
    display: block;
    padding: min( 30 * 100vw / var(--vw-base) , 30/var(--vw-base) * 1440px ) 0;
  }
}

.c-number-item__image {
  width: 40%;
}
@media (max-width: 767px) {
  .c-number-item__image {
    width: 100%;
  }
}

.c-number-item__body {
  width: 60%;
}
@media (min-width: 768px) {
  .c-number-item__body {
    padding-left: 6%;
  }
}
@media (max-width: 767px) {
  .c-number-item__body {
    width: 100%;
    margin-top: min( 20 * 100vw / var(--vw-base) , 20/var(--vw-base) * 1440px );
  }
}

.c-number-item__meta {
  display: flex;
  align-items: flex-end;
}

.c-number-item__number {
  font-size: min( (64 * 100vw / var(--vw-base)) * var(--fz-ratio) , 64/var(--vw-base) * 1440px );
  font-weight: 500;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(84.2deg, #1D2088 18.18%, #4DC9E6 96.68%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-right: 0.172em;
  transform: translateY(10%);
}
@media (max-width: 767px) {
  .c-number-item__number {
    font-size: min( (50 * 100vw / var(--vw-base)) * var(--fz-ratio) , 50/var(--vw-base) * 1440px );
  }
}

.c-number-item__title {
  font-size: min( (20 * 100vw / var(--vw-base)) * var(--fz-ratio) , 20/var(--vw-base) * 1440px );
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.05em;
}

.c-number-item__description {
  font-size: min( (16 * 100vw / var(--vw-base)) * var(--fz-ratio) , 16/var(--vw-base) * 1440px );
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.05em;
  margin-top: 1em;
}

/* ポップアップ
------------------------------*/
.c-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  display: flex;
}
.c-popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.c-popup-content {
  background: #fff;
  width: 90%;
  max-width: 1032px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  z-index: 10000;
}

.c-popup-close {
  cursor: pointer;
  position: absolute;
  top: min( 40 * 100vw / var(--vw-base) , 40/var(--vw-base) * 1440px );
  right: min( 40 * 100vw / var(--vw-base) , 40/var(--vw-base) * 1440px );
  width: min( 64 * 100vw / var(--vw-base) , 64/var(--vw-base) * 1440px );
}
@media (max-width: 767px) {
  .c-popup-close {
    top: min( 20 * 100vw / var(--vw-base) , 20/var(--vw-base) * 1440px );
    right: min( 20 * 100vw / var(--vw-base) , 20/var(--vw-base) * 1440px );
    width: min( 30 * 100vw / var(--vw-base) , 30/var(--vw-base) * 1440px );
  }
}

/*------------------------------
works list(page)
------------------------------*/
.works--list {
  padding: min( 85 * 100vw / var(--vw-base) , 85/var(--vw-base) * 1440px ) 0;
  position: relative;
}
.works--list > * {
  position: relative;
  z-index: 10;
}

.works-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0%;
  top: 0%;
}
@media (min-width: 768px) {
  .works-bg {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
  .works-bg::after {
    content: "";
    background: url(../img/top/works-bg.png) no-repeat center center/cover;
    aspect-ratio: 2880/4000;
    top: 0;
    left: 0;
    aspect-ratio: unset;
    position: fixed;
    width: 100%;
    height: 100vh;
    max-height: unset;
  }
}
@media (max-width: 767px) {
  .works-bg {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
  .works-bg::after {
    content: "";
    background: url(../img/top/works-bg.png) no-repeat center center/cover;
    aspect-ratio: 2880/4000;
    top: 0;
    left: 0;
    aspect-ratio: unset;
    position: fixed;
    width: 100%;
    height: 100vh;
    max-height: unset;
  }
}

.works__container--list {
  margin-top: calc(60 / var(--inner) * 100%);
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .works__container--list {
    display: block;
  }
}

.works__section--list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .works__section--list > a {
    width: 44%;
  }
}
@media (max-width: 767px) {
  .works__section--list {
    width: 100%;
  }
  .works__section--list:nth-child(n+2) {
    margin-top: calc(40 / var(--inner) * 100%);
  }
}

.works__header {
  padding-left: min( 25 * 100vw / var(--vw-base) , 25/var(--vw-base) * 1440px );
  color: #fff;
  margin-bottom: 14%;
}
@media (max-width: 767px) {
  .works__header {
    padding-left: 0;
  }
}

.works__heading {
  font-size: min( (28 * 100vw / var(--vw-base)) * var(--fz-ratio) , 28/var(--vw-base) * 1440px );
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.05em;
}

.works__link--list {
  position: absolute;
  bottom: 0%;
  right: 0%;
}
.works__link--list a {
  padding-top: 1em;
  padding-bottom: 1em;
  transform: translateY(1em);
  border-color: #fff;
}

/*------------------------------
イベントナビ
------------------------------*/
.event-nav__menu {
  display: flex;
}
@media (max-width: 767px) {
  .event-nav__menu {
    display: block;
  }
}

.event-nav__item {
  width: 50%;
  padding: min( 90 * 100vw / var(--vw-base) , 90/var(--vw-base) * 1440px ) min( 33 * 100vw / var(--vw-base) , 33/var(--vw-base) * 1440px ) min( 20 * 100vw / var(--vw-base) , 20/var(--vw-base) * 1440px ) min( 72 * 100vw / var(--vw-base) , 72/var(--vw-base) * 1440px );
  color: #fff;
  display: block;
}
@media (max-width: 767px) {
  .event-nav__item {
    width: 100%;
    padding: min( 30 * 100vw / var(--vw-base) , 30/var(--vw-base) * 1440px ) min( 15 * 100vw / var(--vw-base) , 15/var(--vw-base) * 1440px );
  }
}

.event-nav__item--01 {
  background: url(../img/ebent-nav_btn-img01.jpg) no-repeat center center/cover;
}

.event-nav__item--02 {
  background: url(../img/ebent-nav_btn-img02.jpg) no-repeat center center/cover;
}

.event-nav__heading--ja {
  display: block;
  font-size: min( (28 * 100vw / var(--vw-base)) * var(--fz-ratio) , 28/var(--vw-base) * 1440px );
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .event-nav__heading--ja {
    font-size: min( (20 * 100vw / var(--vw-base)) * var(--fz-ratio) , 20/var(--vw-base) * 1440px );
  }
}

.event-nav__heading--en {
  display: block;
  font-size: min( (16 * 100vw / var(--vw-base)) * var(--fz-ratio) , 16/var(--vw-base) * 1440px );
  font-weight: normal;
  line-height: normal;
  letter-spacing: 0.05em;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 767px) {
  .event-nav__heading--en {
    font-size: min( (12 * 100vw / var(--vw-base)) * var(--fz-ratio) , 12/var(--vw-base) * 1440px );
  }
}

.event-nav__link {
  margin-top: min( 28 * 100vw / var(--vw-base) , 28/var(--vw-base) * 1440px );
  text-align: right;
}

/*------------------------------
contact
------------------------------*/
.contact__container {
  background: #1D2088;
  padding: min( 80 * 100vw / var(--vw-base) , 80/var(--vw-base) * 1440px ) 0;
  color: #fff;
}
@media (max-width: 767px) {
  .contact__container {
    padding: min( 50 * 100vw / var(--vw-base) , 50/var(--vw-base) * 1440px ) 0;
  }
}

.contact__wrapper {
  width: calc(1080 / var(--inner) * 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .contact__wrapper {
    display: block;
    width: 100%;
  }
}

.contact__body {
  width: 47.8%;
}
@media (max-width: 767px) {
  .contact__body {
    width: 100%;
  }
}

.contact__message {
  font-size: min( (16 * 100vw / var(--vw-base)) * var(--fz-ratio) , 16/var(--vw-base) * 1440px );
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.05em;
  margin-top: 2em;
}

.contact__actions {
  width: 45%;
}
@media (max-width: 767px) {
  .contact__actions {
    width: 100%;
    margin-top: calc(40 / var(--inner) * 100%);
  }
}

.contact__action a {
  width: 100%;
  border: 1px solid #fff;
  border-radius: min( 100 * 100vw / var(--vw-base) , 100/var(--vw-base) * 1440px );
  height: min( 110 * 100vw / var(--vw-base) , 110/var(--vw-base) * 1440px );
}

.contact__action-form {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: min( (20 * 100vw / var(--vw-base)) * var(--fz-ratio) , 20/var(--vw-base) * 1440px );
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.05em;
  position: relative;
}
.contact__action-form::before {
  display: inline-block;
  content: "";
  position: relative;
  background: url(../img/icon_mail.png) no-repeat center center/contain;
  width: 1.95em;
  aspect-ratio: 78/54;
  margin-right: 0.75em;
}

.contact__action-tel {
  display: inline-block;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: min( 20 * 100vw / var(--vw-base) , 20/var(--vw-base) * 1440px );
}

.contact__action-number {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min( (24 * 100vw / var(--vw-base)) * var(--fz-ratio) , 24/var(--vw-base) * 1440px );
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.05em;
  position: relative;
}
.contact__action-number::before {
  display: inline-block;
  content: "";
  position: relative;
  background: url(../img/icon_tel.png) no-repeat center center/contain;
  width: 0.917em;
  aspect-ratio: 44/70;
  margin-right: 0.625em;
}

.contact__action-note {
  font-size: min( (15 * 100vw / var(--vw-base)) * var(--fz-ratio) , 15/var(--vw-base) * 1440px );
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.05em;
  margin-top: 1em;
  text-align: center;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .contact__action-note {
    margin-top: 0;
  }
}

/*------------------------------
map
------------------------------*/
.c-map-note-wrap {
  font-size: min( (14 * 100vw / var(--vw-base)) * var(--fz-ratio) , 14/var(--vw-base) * 1440px );
  line-height: 1.8;
}
.c-map-note-wrap span {
  display: block;
  position: relative;
  padding-left: 1.8em;
}
.c-map-note-wrap span::before {
  content: "";
  position: absolute;
  aspect-ratio: 1/1;
  border-radius: min( 5 * 100vw / var(--vw-base) , 5/var(--vw-base) * 1440px );
  transform: translate(0%, -50%);
  width: 1.15em;
  left: 0%;
  top: 50%;
}
@media (max-width: 767px) {
  .c-map-note-wrap {
    font-size: min( (16 * 100vw / var(--vw-base)) * var(--fz-ratio) , 16/var(--vw-base) * 1440px );
  }
}

.c-map-note--blue::before {
  background: #1D2088;
}

.c-map-note--green::before {
  background: #9DC93A;
}

.c-map-note--brown::before {
  background: #CC751E;
}

.c-map-note2 {
  position: absolute;
  display: block;
  padding-left: 1.5em;
  font-size: min( (16 * 100vw / var(--vw-base)) * var(--fz-ratio) , 16/var(--vw-base) * 1440px );
}
.c-map-note2::before {
  content: "";
  position: absolute;
  aspect-ratio: 1/1;
  border-radius: 50%;
  transform: translate(0%, -50%);
  width: 1.15em;
  left: 0%;
  top: 50%;
  background: #9DC93A;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .c-map-note2 {
    font-size: calc(min( (16 * 100vw / var(--vw-base)) * var(--fz-ratio) , 16/var(--vw-base) * 1440px ) / 1.57);
  }
}
@media (max-width: 767px) {
  .c-map-note2 {
    position: relative;
    margin-top: 5%;
  }
}

.c-map-bubble {
  cursor: pointer;
  position: absolute;
  color: #fff;
  font-size: min( (16 * 100vw / var(--vw-base)) * var(--fz-ratio) , 16/var(--vw-base) * 1440px );
  border-radius: min( 5 * 100vw / var(--vw-base) , 5/var(--vw-base) * 1440px );
  padding: 0.4em 0.6em;
  background: red;
  left: 50%;
  top: 50%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  transition: all 0.3s;
}
.c-map-bubble::before {
  content: "";
  position: absolute;
  background: red;
  aspect-ratio: 15/13;
  transform: translate(-50%, -1px);
  width: 1em;
  left: 50%;
  top: 100%;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.c-map-bubble.c-map-bubble-no::before {
  display: none;
}
@media (hover: hover) {
  .c-map-bubble:hover {
    opacity: 0.7;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .c-map-bubble {
    font-size: calc(min( (16 * 100vw / var(--vw-base)) * var(--fz-ratio) , 16/var(--vw-base) * 1440px ) / 1.57);
  }
}
@media (max-width: 767px) {
  .c-map-bubble {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    display: block;
    margin-top: 5%;
  }
  .c-map-bubble::before {
    display: none;
  }
}

.c-map-bubble--blue {
  background: #1D2088;
}
.c-map-bubble--blue::before {
  background: #1D2088;
}

.c-map-bubble--green {
  background: #82A13F;
}
.c-map-bubble--green::before {
  background: #82A13F;
}

.c-map-bubble--brown {
  background: #CC751E;
}
.c-map-bubble--brown::before {
  background: #CC751E;
}

/*------------------------------
404
------------------------------*/
.error-page {
  padding: 10% 0 24.4%;
  text-align: center;
}
.error-page h2 {
  font-size: min( 60 * 100vw / var(--vw-base) , 60/var(--vw-base) * 1440px );
  font-weight: bold;
}
.error-page p {
  padding-top: 5%;
  font-size: min( 24 * 100vw / var(--vw-base) , 24/var(--vw-base) * 1440px );
}
@media (max-width: 767px) {
  .error-page {
    padding-top: 30%;
  }
  .error-page h2 {
    font-size: min( 30 * 100vw / var(--vw-base) , 30/var(--vw-base) * 1440px );
  }
  .error-page p {
    font-size: min( 16 * 100vw / var(--vw-base) , 16/var(--vw-base) * 1440px );
  }
}

.scrollCon {
  visibility: hidden;
  overflow: hidden;
}

.vertical .scrollItem { /* no edit */
  flex-direction: column;
} /* 縦並び用 */
.scrollItem {
  display: flex;
  max-width: unset;
  position: absolute;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
}

.scroll-c { /*  1つのサイズ、アイテム間の余白など設定*/
  max-width: unset;
  flex-shrink: 0;
  height: 100%;
  width: auto;
  padding: 0 min( 10 * 100vw / var(--vw-base) , 10/var(--vw-base) * 1440px );
  font-family: "Poppins", sans-serif;
}

.scrollCon--1 {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  aspect-ratio: 1440/67;
  transform: translateY(2%);
}
@media (max-width: 1024px) {
  .scrollCon--1 {
    aspect-ratio: 1440/130;
  }
}
@media (max-width: 767px) {
  .scrollCon--1 {
    aspect-ratio: 1440/130;
  }
}

.scrollCon--2 {
  position: absolute;
  bottom: 0%;
  left: 0%;
  transform: translate(0%, 0%);
  font-size: min( 200 * 100vw / var(--vw-base) , 200/var(--vw-base) * 1440px );
  width: 100%;
  height: 1lh;
}

.scrollCon--recruitment {
  color: #1D2088;
  position: absolute;
  bottom: 0%;
  left: 0%;
  transform: translate(0%, 14%);
  font-size: min( 200 * 100vw / var(--vw-base) , 200/var(--vw-base) * 1440px );
  width: 100%;
  height: 1lh;
  opacity: 0.06;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .c-scroll-custom {
    overflow: visible !important;
  }
}

@media (max-width: 767px) {
  .c-scroll-wrap {
    position: relative;
  }
  .c-scroll-custom {
    scrollbar-width: none;
    position: relative;
    width: 100%;
    height: 100%;
  }
  .c-scroll-custom::-webkit-scrollbar {
    display: none;
  }
  .custom-scrollbar-track { /* カスタムスクロールバーのトラック（背景 サムが移動する領域） */
    cursor: pointer;
    position: absolute;
  }
  .custom-scrollbar-track .custom-thumb { /* カスタムスクロールバーのサム（動く部分） */
    position: absolute;
  }
  .c-scroll-custom[data-dir=x] + .custom-scrollbar-track {
    width: 100%; /* トラック幅 */
    height: 10px; /* トラック高さ */
    bottom: 0;
    left: 0;
    background-color: #CBCBCB;
    position: relative;
    margin-top: 5%;
  }
  .c-scroll-custom[data-dir=x] + .custom-scrollbar-track .custom-thumb {
    top: 0;
    left: 0;
    height: 100%; /* トラックの高さに合わせる */
    width: 20%;
    background-color: #48494B;
  }
}
@media (max-width: 767px) {
  .c-scroll-width {
    width: 104.3956043956%;
  }
}

.u-hoverTri {
  cursor: default;
}

.body[class][class] .u-mt1_9e {
  margin-top: 1.9em;
}
.body[class][class] .u-mt20 {
  margin-top: min( 20 * 100vw / var(--vw-base) , 20/var(--vw-base) * 1440px );
}
.body[class][class] .u-mt30 {
  margin-top: min( 30 * 100vw / var(--vw-base) , 30/var(--vw-base) * 1440px );
}
.body[class][class] .u-mt40 {
  margin-top: min( 40 * 100vw / var(--vw-base) , 40/var(--vw-base) * 1440px );
}
.body[class][class] .u-pr1e {
  padding-right: 1em;
}
.body[class][class] .u-ph1e {
  padding-left: 1em;
  padding-right: 1em;
}
.body[class][class] .u-letter0_2 {
  letter-spacing: 0.2em;
}
.body[class][class] .u-letter0_05 {
  letter-spacing: 0.05em;
}
.body[class][class] .u-db {
  display: block;
}
.body[class][class] .u-color-w {
  color: #fff;
}
.body[class][class] .u-ls-normal {
  letter-spacing: normal;
}
.body[class][class] .u-pos-rel {
  position: relative;
}
.body[class][class] .u-pointer-none {
  pointer-events: none;
}
@media (min-width: 768px) {
  .body[class][class] .u-mt1_9e-pc {
    margin-top: 1.9em;
  }
  .body[class][class] .u-mt20-pc {
    margin-top: min( 20 * 100vw / var(--vw-base) , 20/var(--vw-base) * 1440px );
  }
  .body[class][class] .u-mt30-pc {
    margin-top: min( 30 * 100vw / var(--vw-base) , 30/var(--vw-base) * 1440px );
  }
  .body[class][class] .u-mt40-pc {
    margin-top: min( 40 * 100vw / var(--vw-base) , 40/var(--vw-base) * 1440px );
  }
  .body[class][class] .u-pr1e-pc {
    padding-right: 1em;
  }
  .body[class][class] .u-ph1e-pc {
    padding-left: 1em;
    padding-right: 1em;
  }
  .body[class][class] .u-letter0_2-pc {
    letter-spacing: 0.2em;
  }
  .body[class][class] .u-letter0_05-pc {
    letter-spacing: 0.05em;
  }
  .body[class][class] .u-db-pc {
    display: block;
  }
  .body[class][class] .u-color-w-pc {
    color: #fff;
  }
  .body[class][class] .u-pos-rel-pc {
    position: relative;
  }
  .body[class][class] .u-wspace-nowrap-pc {
    white-space: nowrap;
  }
}
/*# sourceMappingURL=common.css.map */