@charset "UTF-8";

/*
  CSS Reset
*/
*,
*::before,
*::after {
  box-sizing: border-box
}

* {
  margin: 0
}

html,
body {
  height: 100%
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased
}

img,
picture,
video,
canvas,
svg {
  display: inline-block;
  max-width: 100%;
  vertical-align: bottom;
}

input,
button,
textarea,
select {
  font: inherit
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

#root,
#__next {
  isolation: isolate
}

html {
  font-size: 100%;
  line-height: 1.6;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: var(--color-main-text);
  position: relative;
  z-index: -1;
}

/*
---------------------------------------------------------------------
カスタムプロパティ
---------------------------------------------------------------------
*/
:root {
  /* カラー設定 */
  --color-white: #fff;
  --color-main-text: #1A1A1A;
  --color-position: #333;
  --color-border: #999;
  --color-blue: #278EED;
  --color-right-blue: #22A3FF;
  --color-blur-01: #E3DF69;
  --color-blur-02: #60D18B;
  --color-gradient-01: linear-gradient(180deg, #278eed 0%, #00a840 100%);
  --color-gradient-02: linear-gradient(180deg, transparent 0%, #0F9F82 100%);
  --color-gradient-03: linear-gradient(180deg, #22A3FF 0%, rgb(34 163 255 / 0.71) 50%, transparent 100%);

  /* フォント設定 */
  --font-noto-serif-jp: 'Noto Serif JP', serif;
  --font-cormorant: 'Cormorant', serif;
  --font-oswald: 'Oswald', sans-serif;

  /* ホバー処理設定 */
  --hover-opacity: 0.6;
  --hover-duration: 0.4s;
  --hover-timing: ease;
}

/*
---------------------------------------------------------------------
ページ内リンク用設定
---------------------------------------------------------------------
*/
html {
  scroll-behavior: smooth;
}

body [id] {
  scroll-margin-top: 66px;
  scroll-behavior: smooth;
}

@media print,
screen and (min-width: 768px) {
  body [id] {
    scroll-margin-top: 60px;
  }
}

/*
---------------------------------------------------------------------
name: _40th-Header
ヘッダー
---------------------------------------------------------------------
*/
._40th-Header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
}

._40th-Header-Inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 15px;
  background-color: rgb(255 255 255 / 0.9);
}

._40th-Header-Logo-Box {
  display: flex;
  align-items: center;
  column-gap: 12px;
}

._40th-Header-Logo {
  width: 132px;
}

._40th-Header-Logo-Text {
  font-size: 12px;
  font-weight: 400;
}

/* ボタン */
._40th-Header-Menu-Btn {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background-color: unset;
  padding: 0;
  margin-left: auto;
}

._40th-Header-Menu-Btn > span {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
}

._40th-Header-Menu-Btn > span::before,
._40th-Header-Menu-Btn > span::after {
  content: "";
  position: absolute;
  background-color: var(--color-main-text);
  height: 1px;
  width: 22px;
  left: 0;
  right: 0;
  margin: auto;
}

._40th-Header-Menu-Btn > span::before {
  top: 18px;
}

._40th-Header-Menu-Btn > span::after {
  bottom: 18px;
}

/* ------------ メニュー展開後 ------------- */
body.-is-Open {
  overflow-y: hidden;
}

body.-is-Open ._40th-Header-Wrap {
  pointer-events: none;
}

._40th-Header-Menu-Btn.-is-Open {
  background-color: var(--color-white);
}

._40th-Header-nav-Wrap {
  padding: 9px 15px;
  display: none;
  overflow: auto;
  height: 100vh;
  background-color: var(--color-blue);
  position: relative;
  z-index: 100;
  transform: translateY(-66px);
}

._40th-Header-nav-Wrap nav {
  padding: 30px 15px;
}

/* 閉じるボタン */
.js-Menu-Btn-Close {
  background-color: var(--color-white);
}

._40th-Header-Menu-Btn > span::before,
._40th-Header-Menu-Btn > span::after {
  width: 24px;
}

.js-Menu-Btn-Close > span::before {
  top: 23px;
  transform: rotate(45deg);
}

.js-Menu-Btn-Close > span::after {
  bottom: 22px;
  transform: rotate(-45deg);
}

/* ナビリンク */
._40th-Header-Nav-Link-Item {
  border-top: 1px solid #83C3FF;
}

._40th-Header-Nav-Link-Item > a {
  display: block;
  text-decoration: none;
  color: var(--color-white);
  padding: 15px 15px 15px 0;
  font-size: 15px;
  font-weight: 400;
}

@media print,
screen and (min-width: 768px) {

  /* --------- スクロール後 ---------- */
  .-is-Header-Scroll ._40th-Header-Logo-Box::before {
    transform: translateY(-1000px);
  }

  .-is-Header-Scroll ._40th-Header {
    padding: 0 50px 0 30px;
    background-color: rgb(255 255 255 / 0.9);
  }

  .-is-Header-Scroll ._40th-Header-Logo {
    width: 138px;
  }

  /* ------------------------------ */
  ._40th-Header {
    background-color: var(--color-white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px 0 30px;
    height: 60px;
  }

  ._40th-Header-Wrap {
    position: static;
    width: auto;
  }

  ._40th-Header-Inner {
    padding: 0;
  }

  ._40th-Header-Logo-Box {
    column-gap: 20px;
    position: relative;
  }

  ._40th-Header-Logo-Box::before {
    content: "";
    position: absolute;
    background-color: var(--color-white);
    width: 954px;
    height: 570px;
    border-radius: 50%;
    left: -313px;
    bottom: -32px;
    z-index: -1;
  }

  ._40th-Header-Logo {
    width: 190px;
  }

  ._40th-Header-Logo > a {
    display: inline-block;
    transition: opacity var(--hover-duration) var(--hover-timing);
  }

  ._40th-Header-Logo > a:hover {
    opacity: var(--hover-opacity);
  }

  ._40th-Header-Logo-Text {
    font-size: 14px;
  }

  /* ボタン */
  ._40th-Header-Menu-Btn {
    display: none;
  }

  ._40th-Header-Inner {
    background-color: unset;
  }

  /* ------------ メニュー ------------- */
  ._40th-Header-nav-Wrap {
    padding: 0;
    display: block;
    overflow: unset;
    height: auto;
    background-color: unset;
    position: relative;
    transform: unset;
  }

  ._40th-Header-nav-Wrap nav {
    padding: 0;
  }

  /* 閉じるボタン */
  .js-Menu-Btn-Close {
    display: none;
  }

  ._40th-Header-Nav-Link-List {
    display: flex;
    column-gap: 15px;
  }

  ._40th-Header-Nav-Link-Item {
    border: none;
  }

  ._40th-Header-Nav-Link-Item > a {
    display: block;
    text-decoration: none;
    color: var(--color-main-text);
    padding: 0;
    font-size: 12px;
    font-weight: 400;
    position: relative;
  }

  ._40th-Header-Nav-Link-Item > a::after {
    content: "";
    position: absolute;
    background-color: var(--color-blue);
    width: 100%;
    height: 1px;
    bottom: -5px;
    left: 0;
    will-change: opacity;
    transition: opacity 0.3s ease-out;
    opacity: 0;
  }

  ._40th-Header-Nav-Link-Item > a:hover::after {
    opacity: 1;
  }
}

@media print,
screen and (min-width: 1024px) {
  ._40th-Header-Nav-Link-List {
    column-gap: 30px;
  }

  ._40th-Header-Nav-Link-Item > a {
    font-size: 13px;
  }
}

/*
---------------------------------------------------------------------
name: _40th-Mv-Wrap
メインビジュアル
---------------------------------------------------------------------
*/
main {
  position: relative;
  z-index: -100;
}

._40th-Mv-Inner {
  position: relative;
  z-index: -1;
  overflow: hidden;
}

._40th-Mv-Img-Box {
  overflow: hidden;
}

._40th-Mv-Img-Box img {
  min-height: 705px;
  object-fit: cover;
  vertical-align: top;
  height: 100vh;
  width: 100vw;
}

._40th-Mv-Blur-Circle {
  position: absolute;
  top: 121px;
  right: 42px;
}

._40th-Mv-Blur-Circle-Inner {
  font-family: var(--font-noto-serif-jp);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1;
  text-align: center;
  position: relative;
  z-index: 0;
}

._40th-Mv-Blur-Circle-Inner::after {
  content: "";
  position: absolute;
  background-image: url('../img/mv-blur.png');
  background-size: 100%;
  background-repeat: no-repeat;
  width: 176px;
  height: 176px;
  top: 9px;
  left: -39px;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
}

._40th-Mv-Blur-Circle-Inner > .number {
  font-size: 26px;
}

._40th-Mv-Blur-Circle-Inner > .en {
  font-size: 19px;
}

/* -------- 波 --------- */

/* 波の追加スタイル */
._40th-Mv-Wave02-Wrap {
  position: absolute;
  left: 0;
  bottom: 70px;
  width: 200%;
  height: 100px;
  z-index: 0;
}

._40th-Mv-Wave02 {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 100px;
}

._40th-Mv-Wave02-Svg {
  width: 200%;
  /* ← 2倍にするのが重要 */
  height: 100%;
  animation: Wave02Loop 10s linear infinite;
}

._40th-Mv-Wave02-Svg use {
  fill: #fff;
}

@keyframes Wave02Loop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ---------------------------- */

._40th-Mv-Title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 15px 37px;
  text-align: center;
  font-size: clamp(24px, 6.4vw, 32px);
  font-weight: 600;
  color: var(--color-blue);
  font-family: var(--font-noto-serif-jp);
  background-color: var(--color-white);
}

@media print,
screen and (min-width: 768px) {
  ._40th-Mv-Img-Box img {
    min-height: unset;
  }

  ._40th-Mv-Blur-Circle {
    top: unset;
    bottom: 107px;
    right: 32px;
    z-index: 1;
  }

  ._40th-Mv-Blur-Circle-Inner {
    font-size: 17px;
  }

  ._40th-Mv-Blur-Circle-Inner::after {
    width: 230px;
    height: 230px;
    top: 6px;
    left: -62px;
  }

  ._40th-Mv-Blur-Circle-Inner > .number {
    font-size: 33px;
  }

  ._40th-Mv-Blur-Circle-Inner > .en {
    font-size: 23px;
  }

  ._40th-Mv-Title {
    padding: 0 50px 29px;
    font-size: clamp(32px, 4.17vw, 42px);
  }
}

@media print,
screen and (min-width: 1024px) {
  ._40th-Mv-Blur-Circle {
    bottom: 107px;
  }

  ._40th-Mv-Blur-Circle-Inner {
    font-size: 27px;
  }

  ._40th-Mv-Blur-Circle-Inner::after {
    width: 290px;
    height: 290px;
    top: 18px;
    left: -64px;
  }

  ._40th-Mv-Blur-Circle-Inner > .number {
    font-size: 44px;
  }

  ._40th-Mv-Blur-Circle-Inner > .en {
    font-size: 30px;
  }
}

/*
---------------------------------------------------------------------
name: _40th-Main-Container
メインコンテナ
---------------------------------------------------------------------
*/
/* 背景 */
._40th-All-Wrap {
  background-image: url('../img/bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  z-index: -100;
  position: relative;
}

._40th-Main-Container {
  padding-top: 60px;
  padding-bottom: 99px;
  z-index: -100;
}

@media print,
screen and (min-width: 768px) {
  ._40th-Main-Container {
    padding-top: 135px;
    padding-bottom: 200px;
  }
}

/*
---------------------------------------------------------------------
name: _40th-Common-Title-Box
共通タイトル
---------------------------------------------------------------------
*/
._40th-Common-Title-Box {
  margin-bottom: 50px;
}

._40th-Common-Title {
  font-size: 50px;
  font-family: var(--font-noto-serif-jp);
  font-weight: 400;
  background: var(--color-gradient-01);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

._40th-Common-Sub-title {
  font-size: 20px;
  font-family: var(--font-noto-serif-jp);
  font-weight: 400;
  color: var(--color-blue);
  padding-left: 35px;
  margin-top: 12px;
  position: relative;
}

._40th-Common-Sub-title::before {
  position: absolute;
  content: "";
  width: 1em;
  height: 1px;
  background-color: var(--color-blue);
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto 0;
}

@media print,
screen and (min-width: 768px) {
  ._40th-Common-Title-Box {
    margin-bottom: 122px;
    max-width: 1400px;
    padding: 0 150px;
    margin-inline: auto;
  }

  ._40th-Common-Title {
    font-size: 100px;
  }

  ._40th-Common-Sub-title {
    font-size: 24px;
    padding-left: 50px;
    margin-top: 20px;
  }

  ._40th-Common-Sub-title::before {
    width: 30px;
    height: 1px;
  }
}

/*
---------------------------------------------------------------------
name: _40th-Message-Container
メッセージ
---------------------------------------------------------------------
*/
._40th-Message-Container {
  padding-bottom: 80px;
  position: relative;
}

._40th-Message-Container::before {
  position: absolute;
  content: "";
  background-color: var(--color-right-blue);
  opacity: 0.08;
  border-radius: 26.67vw;
  top: 47px;
  left: 0;
  width: 100%;
  height: calc(100% - 47px);
  z-index: 0;
}

._40th-Message-Container-Inner {
  padding: 0 15px;
}

._40th-Message-Content-Img-Box {
  width: 78.26%;
  overflow: hidden;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

._40th-Message-Content-Img-Box img {
  width: 100%;
  object-fit: cover;
}

._40th-Message-Meta-Box {
  text-align: right;
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

._40th-Message-Position {
  font-size: 16px;
  font-family: var(--font-noto-serif-jp);
  font-weight: 400;
}

._40th-Message-Name {
  font-size: 22px;
  font-weight: 400;
  font-family: var(--font-noto-serif-jp);
}

._40th-Message-Text-Box {
  padding: 20px 0;
}

._40th-Message-Text {
  font-size: 12px;
  font-weight: 400;
  line-height: 2;
}

._40th-Message-Content + ._40th-Message-Content {
  margin-top: 40px;
}

._40th-Message-Content.-is-Reverse ._40th-Message-Content-Img-Box {
  margin-left: 0;
  margin-right: auto;
}

._40th-Message-Content.-is-Reverse ._40th-Message-Meta-Box {
  text-align: left;
}

@media print,
screen and (min-width: 768px) {
  ._40th-Message-Container {
    padding-bottom: 250px;
  }

  ._40th-Message-Container::before {
    border-radius: 28.57vw;
    top: 90px;
    height: calc(100% - 90px);
  }

  ._40th-Message-Container-Inner {
    padding: 0;
  }

  ._40th-Message-Content {
    display: grid;
    grid-template-columns: 45% auto;
    padding-right: 50px;
    max-width: 1400px;
    margin: 0 auto;
  }

  ._40th-Message-Content-Img-Box {
    width: 100%;
    max-width: 590px;
    margin-left: 0;
  }

  ._40th-Message-Meta-Box {
    text-align: right;
    margin-top: 47px;
    padding-bottom: 24px;
  }

  ._40th-Message-Position {
    font-size: 20px;
  }

  ._40th-Message-Name {
    font-size: 36px;
  }

  ._40th-Message-Text-Box {
    padding: 30px 0 0 40px;
  }

  ._40th-Message-Text {
    font-size: 15px;
  }

  ._40th-Message-Content + ._40th-Message-Content {
    margin-top: 150px;
  }

  ._40th-Message-Content.-is-Reverse {
    grid-template-columns: auto 45%;
    padding-left: 50px;
    padding-right: 0;
  }

  ._40th-Message-Content.-is-Reverse ._40th-Message-Content-Img-Box {
    margin-left: 0;
    margin-right: 0;
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  ._40th-Message-Content.-is-Reverse ._40th-Message-Text-Box {
    padding: 30px 40px 0 0;
  }
}

@media print,
screen and (min-width: 1024px) {
  ._40th-Message-Content {
    grid-template-columns: 49.58% auto;
    padding-right: 210px;
  }

  ._40th-Message-Text-Box {
    padding: 57px 0 0 80px;
  }

  ._40th-Message-Content.-is-Reverse {
    grid-template-columns: auto 49.58%;
    padding-left: 210px;
    padding-right: 0;
  }

  ._40th-Message-Content.-is-Reverse ._40th-Message-Text-Box {
    padding: 57px 80px 0 0;
  }
}

/*
---------------------------------------------------------------------
name: _40th-Fixed-Bg-Box
区切り背景
---------------------------------------------------------------------
*/
._40th-Fixed-Bg-Box {
  position: relative;
  overflow: hidden;
  height: 146.67vw;
  margin-top: 80px;
}

._40th-Fixed-Bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 120%;
  background-image: url('../img/fixed-bg.jpg');
  background-repeat: no-repeat;
  background-position: center right 0;
  background-size: cover;
  bottom: 0;
  margin: auto 0;
  will-change: transform;
}

@media print,
screen and (min-width: 768px) {
  ._40th-Fixed-Bg-Box {
    height: 42.86vw;
    margin-top: 120px;
  }
}

/*
---------------------------------------------------------------------
name: _40th-About-Container
about
---------------------------------------------------------------------
*/
._40th-About-Bg-Container {
  background-image: url('../img/song-bg.png');
  background-repeat: no-repeat;
  background-position: top -33px left -53px;
  background-size: 323px auto;
}

._40th-About-Container-Inner {
  padding: 120px 15px 128px;
}

._40th-About-Content {
  border-radius: 20px;
  padding: 40px 4vw 45px;
  background-color: var(--color-white);
  box-shadow: 0 2px 26px rgb(0 0 0 / 0.1);
}

._40th-About-Content + ._40th-About-Content {
  margin-top: 80px;
}

._40th-About-Content-Title {
  font-size: 32px;
  font-weight: 400;
  color: var(--color-blue);
  font-family: var(--font-noto-serif-jp);
  text-align: center;
  margin-bottom: 20px;
}

._40th-About-Song-2col-Box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 15px;
  margin-top: 20px;
}

._40th-About-Content-Text {
  font-size: 12px;
  font-weight: 400;
  line-height: 2;
}

/* オーディオ */
._40th-About-Content-Audio {
  margin: 30px 0;
}

._40th-About-Content-Audio audio {
  width: 100%;
}

/* ロゴ */
._40th-About-Logo-Img-Box {
  width: 148px;
  margin-inline: auto;
  margin-top: 20px;
}

@media print,
screen and (min-width: 768px) {
  ._40th-About-Bg-Container {
    background-position: top -64px left -68px;
    background-size: clamp(590px, 76.82vw, 877px);
  }

  ._40th-About-Container-Inner {
    padding: 120px 50px 246px;
    max-width: 1400px;
    margin: 0 auto;
  }

  ._40th-About-Content {
    padding: 60px 6.51vw 80px;
    width: fit-content;
  }

  ._40th-About-Content + ._40th-About-Content {
    margin-top: 120px;
  }

  ._40th-About-Content-Title {
    font-size: 48px;
    margin-bottom: 50px;
  }

  ._40th-About-Song-2col-Box {
    column-gap: 125px;
    margin-top: 27px;
  }

  ._40th-About-Content-Text {
    font-size: 15px;
  }

  /* オーディオ */
  ._40th-About-Content-Audio {
    margin: 50px 0;
  }

  ._40th-About-Content-Audio audio {
    width: 100%;
  }

  /* ロゴ */
  ._40th-About-Logo-2col-Box {
    display: grid;
    grid-template-columns: auto clamp(210px, 27.34vw, 315px);
    column-gap: 4.57%;
  }


  ._40th-About-Logo-Img-Box {
    width: 100%;
    margin-top: 0;
  }
}

@media print,
screen and (min-width: 1024px) {
  ._40th-About-Content:nth-child(1) {
    width: 58.93vw;
    max-width: 825px;
    margin-left: auto;
  }

  ._40th-About-Content:nth-child(2) {
    width: 65.71vw;
    max-width: 920px;
    margin-right: auto;
  }

  ._40th-About-Content:nth-child(3) {
    width: 66.29vw;
    max-width: 928px;
    margin-inline: auto;
  }
}

/* ----------- 大学憲章 ------------- */
/* 背景装飾 */
._40th-About-Charter-decoration-00 {
  background-color: #FEF7DA;
  position: relative;
}

._40th-About-Charter-decoration-00::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  inset: 0;
  margin: auto;
  background-image: url('../img/about-logo.svg');
  background-size: clamp(150px, 44.11vw, 337px);
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
}


._40th-About-Charter-decoration-01,
._40th-About-Charter-decoration-02,
._40th-About-Charter-decoration-03 {
  position: relative;
  overflow: hidden;
}

/* 下側 角 x 2 */
._40th-About-Charter-decoration-01::before,
._40th-About-Charter-decoration-01::after {
  position: absolute;
  content: "";
  background-image: url('../img/charter-bg-corner.png');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100%;
  width: 66px;
  height: 66px;
  bottom: 0px;
  z-index: 2;
}

._40th-About-Charter-decoration-01::before {
  transform: scale(1, -1);
  left: -10px;
}

._40th-About-Charter-decoration-01::after {
  transform: scale(-1);
  right: -10px;
}

/* 上側 ー 中央 線 */
._40th-About-Charter-decoration-02 {
  z-index: 1;
}

._40th-About-Charter-decoration-02::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 64px;
  background-image: url('../img/charter-bg-border.png');
  background-repeat: repeat-x;
  transform: scaleY(-1);
  background-size: 64px;
  background-position: bottom 2px center;
  z-index: 1;
  bottom: 3px;
  left: 0;
}

._40th-About-Charter-decoration-02::after {
  position: absolute;
  content: "";
  width: 137px;
  height: 147px;
  background-image: url('../img/charter-bg-center.png');
  background-repeat: no-repeat;
  transform: scale(-1);
  background-size: 147px;
  background-position: bottom 2px center;
  z-index: 1;
  bottom: -86px;
  left: 0;
  margin-inline: auto;
  right: 0;
}

/* 上側 ー 中央 線 */
._40th-About-Charter-decoration-03 {
  z-index: 1;
}

._40th-About-Charter-decoration-03::before,
._40th-About-Charter-decoration-03::after {
  position: absolute;
  content: "";
  width: 41px;
  height: 100%;
  background-image: url('../img/charter-bg-border-vertical.png');
  background-repeat: repeat-y;
  background-size: 41px;
  background-position: center;
  z-index: -1;
  top: 0;
}

._40th-About-Charter-decoration-03::before {
  left: -10px;
}

._40th-About-Charter-decoration-03::after {
  transform: rotate(180deg);
  right: -10px;
}

/* ----------------- */

._40th-About-Charter-Wrap {
  font-family: var(--font-noto-serif-jp);
  line-height: 1.5;
  text-align: center;
  font-weight: 500;
  position: relative;
  z-index: 0;
  overflow: hidden;
  z-index: 0;
}


/* 背景装飾 上側 角 x 2 */
._40th-About-Charter-Wrap::before,
._40th-About-Charter-Wrap::after {
  position: absolute;
  content: "";
  background-image: url('../img/charter-bg-corner.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
  width: 66px;
  height: 66px;
  top: -5px;
  z-index: -1;
}

._40th-About-Charter-Wrap::before {
  left: -10px;
}

._40th-About-Charter-Wrap::after {
  transform: scaleX(-1);
  right: -10px;
}

/* ----------------- */

._40th-About-Charter-Inner {
  padding: 50px 10% 60px;
  position: relative;
}

/* 背景装飾　上側 ー 中央 線 */
._40th-About-Charter-Inner::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 64px;
  background-image: url('../img/charter-bg-border.png');
  background-repeat: repeat-x;
  background-size: 64px;
  background-position: top 2px center;
  z-index: -2;
  top: -6px;
  left: 0;
}

._40th-About-Charter-Inner::after {
  position: absolute;
  content: "";
  width: 137px;
  height: 100%;
  background-image: url('../img/charter-bg-center.png');
  background-repeat: no-repeat;
  background-size: 150px;
  background-position: top 1px center;
  z-index: -1;
  top: 0;
  left: 0;
  margin-inline: auto;
  right: 0;
}

/* ----------------- */

._40th-About-Charter-Title01 {
  font-size: 14px;
}

._40th-About-Charter-Title02 {
  font-size: 30px;
  color: #193c65;
}

._40th-About-Charter-Text01 {
  font-size: 11px;
  color: #841914;
  margin-top: 10px;
}

._40th-About-Charter-Text02 {
  font-size: 10px;
  color: #193c65;
  margin-top: 10px;
  text-align: left;
}

._40th-About-Charter-Title03 {
  font-size: 12px;
  border-bottom: 1px solid #193c65;
  color: #193c65;
  margin-top: 10px;
}

._40th-About-Charter-Text03 {
  font-size: 10px;
  color: #841914;
  margin-top: 10px;
  text-align: left;
}

._40th-About-Charter-Text04 {
  font-size: 10px;
  text-align: right;
  margin-top: 10px;
}

._40th-About-Charter-Logo {
  width: 120px;
  display: inline-block;
  position: relative;
  margin-top: 10px;
  z-index: 10;
}

._40th-About-Charter-Logo img {
  width: 100%;
}

@media print,
screen and (min-width: 768px) {
  ._40th-About-Charter-Title01 {
    font-size: 25px;
  }

  ._40th-About-Charter-Title02 {
    font-size: 50px;
  }

  ._40th-About-Charter-Text01 {
    font-size: 20px;
    margin-top: 20px;
  }

  ._40th-About-Charter-Text02 {
    font-size: 12px;
  }

  ._40th-About-Charter-Title03 {
    font-size: 20px;
    margin-top: 20px;
  }

  ._40th-About-Charter-Text03 {
    font-size: 12px;
    margin-top: 10px;
  }

  ._40th-About-Charter-Text04 {
    font-size: 12px;
    margin-top: 20px;
  }

  ._40th-About-Charter-Logo {
    width: 150px;
    margin-top: 20px;
  }
}

@media print,
screen and (min-width: 1024px) {
  ._40th-About-Charter-Title02 {
    font-size: 60px;
  }
}

/* --------------------------------- */

/*
---------------------------------------------------------------------
name: _40th-Slider-Container
カルーセル
---------------------------------------------------------------------
*/
._40th-Slider-Container {
  position: relative;
}

._40th-Slider-Container-Inner {
  overflow: hidden;
}

._40th-Slider-Container::before,
._40th-Slider-Container::after {
  position: absolute;
  content: "";
  width: 145px;
  height: 290px;
  background-image: url('../img/mv-blur.png');
  background-repeat: no-repeat;
  background-size: 290px;
  opacity: 0.65;
  overflow: hidden;
}

._40th-Slider-Container::before {
  background-position: center right;
  top: -96px;
  left: 0;
}

._40th-Slider-Container::after {
  background-position: center left;
  bottom: -114px;
  right: 0;
}

._40th-Slider {
  overflow: visible;
}

._40th-Slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

._40th-Slider .swiper-slide {
  width: max-content;
}

._40th-Slide {
  width: 300px;
}

._40th-Slide img {
  width: 100%;
}

@media print,
screen and (min-width: 768px) {
  ._40th-Slider-Container-Inner {
    position: relative;
  }

  ._40th-Slider-Container-Inner::before {
    position: absolute;
    content: "";
    width: 290px;
    height: 290px;
    background-image: url('../img/mv-blur.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    top: 0;
    bottom: 0;
    left: 30%;
    margin: auto 0;
    opacity: 0.65;
    overflow: hidden;
  }

  ._40th-Slider-Container::before {
    top: -150px;
  }

  ._40th-Slider-Container::after {
    bottom: -150px;
  }

  ._40th-Slide {
    width: 590px;
  }
}

/*
---------------------------------------------------------------------
name: _40th-History-Container
沿革
---------------------------------------------------------------------
*/
._40th-History-Container {
  margin-top: 20px;
  position: relative;
}

._40th-History-Container::before {
  position: absolute;
  content: "";
  background: var(--color-gradient-03);
  opacity: 0.08;
  border-radius: 26.67vw 26.67vw 0 0;
  top: 47px;
  left: 0;
  width: 100%;
  height: 600px;
  z-index: 0;
}

._40th-History-Container-Inner {
  padding: 0 15px;
  position: relative;
  z-index: 5;
}

/* コンテンツ */
._40th-History-Content-Inner {
  padding: 0 15px;
}

._40th-History-Content + ._40th-History-Content {
  margin-top: 30px;
}

._40th-History-Year {
  font-size: 120px;
  font-weight: 400;
  font-family: var(--font-noto-serif-jp);
  color: var(--color-blue);
  opacity: 0.3;
  line-height: 1.3;
  position: relative;
  z-index: 5;
}

._40th-History-Title {
  font-size: 30px;
  font-weight: 400;
  font-family: var(--font-noto-serif-jp);
  color: var(--color-blue);
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

._40th-History-Title::before {
  position: absolute;
  content: "";
  filter: blur(30px);
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--color-blur-01);
  opacity: 0.3;
  left: -43px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  z-index: -1;
}

._40th-History-Content:nth-child(2n+1) ._40th-History-Title::before {
  background-color: var(--color-blur-02);
}

._40th-History-Text {
  font-size: 12px;
  font-weight: 400;
  margin-top: 2em;
  line-height: 2;
  position: relative;
  z-index: 1;
}

/* 画像 */
._40th-History-Img-Box {
  margin-top: 20px;
}

._40th-History-Img-Box.-is-S {
  text-align: center;
}

._40th-History-Img-Box.-is-S img {
  width: 170px;
}

._40th-History-Img-Box.-is-M {
  width: 100%;
}

._40th-History-Img-Box.-is-M img {
  width: 100%;
}

._40th-History-Img-Box.-is-L img {
  width: 100%;
}

._40th-History-Img-Caption {
  font-size: 12px;
  font-weight: 400;
  margin-top: 12px;
  line-height: 2;
  text-align: center;
}

@media print,
screen and (min-width: 768px) {
  ._40th-History-Container::before {
    border-radius: 28.57vw 28.57vw 0 0;
    top: 90px;
  }

  ._40th-History-Container-Inner {
    padding: 0 50px;
    max-width: 1400px;
    margin: 0 auto;
  }

  ._40th-History-Container-Inner ._40th-Common-Title-Box {
    margin-bottom: 80px;
    padding: 0 100px;
  }

  /* コンテンツ */
  ._40th-History-Content-Inner {
    padding: 0;
  }

  ._40th-History-Content-Grid-Box {
    display: grid;
  }

  ._40th-History-Content + ._40th-History-Content {
    margin-top: 176px;
  }

  ._40th-History-Year {
    font-size: clamp(122px, 15.89vw, 220px);
    line-height: 1;
    margin-top: -20px;
    position: sticky;
    top: 60px;
    left: 0;
    height: fit-content;
    width: fit-content;
    z-index: 0;
  }

  ._40th-History-Title {
    font-size: 40px;
    margin-top: 0;
  }

  ._40th-History-Title::before {
    left: -72px;
  }

  ._40th-History-Text-Box {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    margin-left: clamp(57px, 7.42vw, 113px);
  }

  ._40th-History-Text {
    font-size: 15px;
  }

  /* 画像 */
  ._40th-History-Margin-Left ._40th-History-2col-Img-Wrap {
    margin-top: 0;
  }

  ._40th-History-Margin-Left {
    margin-top: 70px;
    grid-column: 1 / 3;
    grid-row: 3 / 4;
  }

  ._40th-History-2col-Img-Wrap {
    display: flex;
    column-gap: 30px;
    justify-content: flex-end;
    align-items: flex-start;
    margin-top: 70px;
    position: relative;
    z-index: 1;
    grid-column: 1 / 3;
    grid-row: 3 / 4;
  }

  ._40th-History-2col-Img-Wrap + ._40th-History-2col-Img-Wrap {
    margin-top: 40px;
  }

  ._40th-History-2col-Img-Wrap.-is-Center {
    justify-content: center;
  }

  ._40th-History-Img-Box {
    margin-top: 0;
  }

  ._40th-History-Img-Box.-is-S {
    width: 300px;
  }

  ._40th-History-Img-Box.-is-S img {
    width: 100%;
  }

  ._40th-History-Img-Box.-is-M {
    width: 100%;
    max-width: 350px;
  }

  ._40th-History-Img-Box.-is-L {
    width: 100%;
    max-width: 540px;
  }

  ._40th-History-Img-Box.-is-L img {
    width: 100%;
  }

  ._40th-History-Img-Caption {
    font-size: 13px;
    margin-top: 17px;
  }

  ._40th-History-Margin-Left ._40th-History-2col-Img-Wrap {
    justify-content: center;
  }
}

@media print,
screen and (min-width: 1024px) {
  ._40th-History-Margin-Left {
    width: max-content;
    margin-left: auto;
  }

  ._40th-History-Margin-Left ._40th-History-2col-Img-Wrap {
    justify-content: flex-end;
  }

  ._40th-History-Margin-Left ._40th-History-2col-Img-Wrap.-is-Center {
    justify-content: center !important;
  }
}

/*
---------------------------------------------------------------------
name: _40th-Info-Container
イベント＆ニュース スライダー
---------------------------------------------------------------------
*/
._40th-Info-Container {
  margin-top: 80px;
}

._40th-Info-Title {
  font-size: 50px;
  font-family: var(--font-noto-serif-jp);
  font-weight: 400;
  background: var(--color-gradient-01);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
  padding-left: 15px;
  margin-bottom: 12px;
}

._40th-Info-Slider-Wrap {
  padding-left: 15px;
}

._40th-Info-Slider-Inner {
  background-color: var(--color-blue);
  border-radius: 80px 0 0 80px;
  padding: 80px 0 80px 30px;
  overflow: hidden;
}

._40th-Info-Slider .swiper-slide {
  width: max-content;
}

._40th-Info-Slide {
  width: 255px;
}

._40th-Info-Slide > a {
  display: block;
  text-decoration: none;
}

._40th-Info-Slide-Img-Box {
  width: 100%;
  aspect-ratio: 350 / 233;
  overflow: hidden;
  background-color: var(--color-white);
}

._40th-Info-Slide-Img-Box img {
  object-fit: cover;
  width: 100%;
}

._40th-Info-Slide-Title {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.6;
  margin-top: 12px;
}

._40th-Info-Slide-Meta-Box {
  margin-top: 6px;
  display: flex;
  align-items: center;
  column-gap: 17px;
  color: var(--color-white);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
}

._40th-Info-Slide-Tag {
  padding: 0 12px;
  line-height: 1.5;
  background-color: #56AB4B;
}

.swiper-slide.-is-Event ._40th-Info-Slide-Tag {
  background-color: #D4C763;
}

._40th-Info-Slide-Date {
  letter-spacing: 0.7px;
}

/* ナビゲーション */
._40th-Info-Slider-Nav-Box {
  display: grid;
  grid-template-columns: auto 90px;
  column-gap: 20px;
  align-items: center;
  margin-top: 31px;
  padding-right: 15px;
}

._40th-Info-Slider-Progress {
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  position: relative;
  z-index: 4;
}

._40th-Info-Slider-Progress span {
  height: 5px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto 0;
  background-color: var(--color-white);
  transform: scaleX(0);
  transform-origin: left center;
  transition-timing-function: linear;
}

._40th-Info-Slider-Pagenation-Btn-Box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 10px;
}

._40th-Info-Slider-Pagenation-Btn-Prev,
._40th-Info-Slider-Pagenation-Btn-Next {
  background-color: var(--color-white);
  width: 40px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: 10px auto;
}

._40th-Info-Slider-Pagenation-Btn-Prev {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10.454" height="11.405" viewBox="0 0 10.454 11.405"><path id="location-arrow-solid" d="M5.7,0,5.176.981.527,9.5,0,10.454l1.253-.364L5.7,8.8l4.449,1.289,1.253.364L10.878,9.5,6.229.981Z" transform="translate(0 11.405) rotate(-90)" fill="%23278eed"/></svg>');
  background-position: center left 14px;
}

._40th-Info-Slider-Pagenation-Btn-Next {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10.454" height="11.405" viewBox="0 0 10.454 11.405"><path id="location-arrow-solid" d="M5.7,10.454l-.527-.981L.527.953,0,0,1.253.364,5.7,1.654,10.152.364,11.4,0l-.527.953L6.229,9.473Z" transform="translate(0 11.405) rotate(-90)" fill="%23278eed"/></svg>');
  background-position: center right 14px;
}

@media print,
screen and (min-width: 1024px) {
  ._40th-Info-Container {
    margin-top: 180px;
  }

  ._40th-Info-Title {
    font-size: 100px;
    padding-left: 240px;
    margin-bottom: 0;
  }

  ._40th-Info-Slider-Wrap {
    padding-left: 145px;
  }

  ._40th-Info-Slider-Inner {
    border-radius: 120px 0 0 120px;
    padding: 120px 50px 95px 95px;
  }

  ._40th-Info-Slide {
    width: 100%;
  }

  ._40th-Info-Slide > a {
    transition: opacity var(--hover-duration) var(--hover-timing);
  }

  ._40th-Info-Slide > a:hover {
    opacity: var(--hover-opacity);
  }

  ._40th-Info-Slide-Title {
    font-size: 15px;
    margin-top: 20px;
    line-height: 1.4;
  }

  ._40th-Info-Slide-Meta-Box {
    font-size: 13px;
  }

  /* ナビゲーション */
  ._40th-Info-Slider-Nav-Box {
    grid-template-columns: auto 103px;
    column-gap: 30px;
    margin-top: 63px;
    padding-right: 50px;
  }

  ._40th-Info-Slider-Pagenation-Btn-Box {
    column-gap: 15px;
  }

  ._40th-Info-Slider-Pagenation-Btn-Prev,
  ._40th-Info-Slider-Pagenation-Btn-Next {
    width: 44px;
    background-size: 14px auto;
  }

  ._40th-Info-Slider-Pagenation-Btn-Prev {
    background-position: center left 13px;
  }

  ._40th-Info-Slider-Pagenation-Btn-Next {
    background-position: center right 13px;
  }

  ._40th-Info-Slider-Pagenation-Btn-Prev,
  ._40th-Info-Slider-Pagenation-Btn-Next {
    cursor: pointer;
    transition: opacity var(--hover-duration) var(--hover-timing);
  }

  ._40th-Info-Slider-Pagenation-Btn-Prev:hover,
  ._40th-Info-Slider-Pagenation-Btn-Next:hover {
    opacity: var(--hover-opacity);
  }
}

/*
---------------------------------------------------------------------
name: pt-personal-flow-main-title-wrap
フッター
---------------------------------------------------------------------
*/
._40th-Footer {
  padding-top: 70px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1500" height="1299" viewBox="0 0 1500 1299"><path id="パス_881" data-name="パス 881" d="M750,0c414.214,0,750,290.791,750,649.5S1164.214,1299,750,1299,0,1008.209,0,649.5,335.786,0,750,0Z" fill="%23278eed"/></svg>');
  background-position: top center;
}

._40th-Footer-Inner {
  padding: 16px 30px 40px;
  text-align: center;
  background: var(--color-gradient-02);
}

._40th-Footer-Logo {
  font-family: var(--font-noto-serif-jp);
  font-size: 34px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 2;
}

._40th-Footer-Logo-Text {
  font-size: 19px;
  font-weight: 400;
  color: var(--color-white);
  margin-top: 15px;
}

._40th-Footer-Link-Wrap {
  margin-top: 45px;
  display: grid;
  row-gap: 30px;
  justify-content: center;
}

._40th-Footer-Link-Box > a {
  text-align: center;
  color: var(--color-blue);
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  text-decoration: none;
  display: block;
  padding: 16px 52px 16px 40px;
  width: 100%;
  line-height: 1.4;
  background-color: var(--color-white);
  clip-path: inset(0 round 27px 0 27px 0);
  background-image: url('data:image/svg+xml;utf8,<svg id="box-arrow-up-right" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path id="パス_309" data-name="パス 309" d="M8.636,3.5a.5.5,0,0,0-.5-.5H1.5A1.5,1.5,0,0,0,0,4.5v10A1.5,1.5,0,0,0,1.5,16h10A1.5,1.5,0,0,0,13,14.5V7.864a.5.5,0,0,0-1,0V14.5a.5.5,0,0,1-.5.5H1.5a.5.5,0,0,1-.5-.5V4.5A.5.5,0,0,1,1.5,4H8.136A.5.5,0,0,0,8.636,3.5Z" fill="%23278EED" fill-rule="evenodd"/><path id="パス_310" data-name="パス 310" d="M16,.5a.5.5,0,0,0-.5-.5h-5a.5.5,0,0,0,0,1h3.793L6.146,9.146a.5.5,0,0,0,.708.708L15,1.707V5.5a.5.5,0,0,0,1,0Z" fill="%23278EED" fill-rule="evenodd"/></svg>');
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center right 25px;
}

._40th-Footer-Link-Box:nth-child(2) > a {
  clip-path: inset(0 round 0 38px 0 38px);
}

._40th-Footer-Copy {
  margin-top: 60px;
  color: var(--color-white);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

@media print,
screen and (min-width: 768px) {
  ._40th-Footer {
    padding-top: 117px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="3074" height="1299" viewBox="0 0 3074 1299"><ellipse id="楕円形_38" data-name="楕円形 38" cx="1537" cy="649.5" rx="1537" ry="649.5" fill="%23278eed"/></svg>');
  }

  ._40th-Footer-Inner {
    padding: 0 50px 47px;
  }

  ._40th-Footer-Logo {
    font-size: 44px;
  }

  ._40th-Footer-Logo-Text {
    font-size: 22px;
    margin-top: 12px;
  }

  ._40th-Footer-Link-Box {
    width: max-content;
  }

  ._40th-Footer-Link-Box > a {
    font-size: 18px;
    padding: 27.5px 52px 27.5px 40px;
    width: 100%;
    width: 475px;
    clip-path: inset(0 round 40px 0 40px 0);
    overflow: hidden;
    transition: opacity var(--hover-duration) var(--hover-timing);
  }

  ._40th-Footer-Link-Box > a:hover {
    opacity: var(--hover-opacity);
  }

  ._40th-Footer-Link-Box:nth-child(2) > a {
    clip-path: inset(0 round 0 40px 0 40px);
  }

  ._40th-Footer-Copy {
    margin-top: 70px;
    font-size: 13px;
  }
}

@media print,
screen and (min-width: 1024px) {
  ._40th-Footer-Link-Wrap {
    grid-template-columns: 1fr 1fr;
    margin-top: 70px;
    row-gap: 0;
    column-gap: 30px;
    width: fit-content;
    margin-inline: auto;
  }
}

/*
---------------------------------------------------------------------
name: _40th-Loader-Wrap
ローディング
---------------------------------------------------------------------
*/
body:not(:has(#loader.-is-Hide)) {
  overflow: hidden;
}

body:not(:has(#loader.-is-Hide)) ._40th-All-Wrap {
  opacity: 0;
  transition: opacity 2.5s linear;
  will-change: opacity;
}

body:has(#loader.-is-Bg-Out) ._40th-All-Wrap {
  opacity: 1;
  transition: opacity 2.5s linear;
}

._40th-Loader-Wrap {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 1000;
  overflow: hidden;
  pointer-events: auto;
  opacity: 1;
  z-index: 100;
}

._40th-Loader-Wrap.-is-Hide {
  pointer-events: none;
}

._40th-Loader-Inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100vw;
  height: 100vh;
}

._40th-Loader-Inner::before,
._40th-Loader-Inner::after {
  transition: width 2s linear;
  position: absolute;
  content: "";
  width: 50vw;
  height: 100vh;
  background-color: var(--color-white);
  top: 0;
}

._40th-Loader-Wrap.-is-Bg-Out ._40th-Loader-Inner::before,
._40th-Loader-Wrap.-is-Bg-Out ._40th-Loader-Inner::after {
  width: 0;
}

._40th-Loader-Inner::before {
  left: 0;
}

._40th-Loader-Inner::after {
  right: 0;
}

._40th-Loader-Content-Box {
  position: relative;
  margin: auto;
  text-align: center;
  opacity: 0;
  transition: opacity 2s;
  transition-delay: 0.1s;
  z-index: 100;
}

._40th-Loader-Wrap.-is-Logo-Visible ._40th-Loader-Content-Box {
  opacity: 1;
}

._40th-Loader-Blur-Circle-Inner {
  font-family: var(--font-noto-serif-jp);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1;
  text-align: center;
  position: relative;
  z-index: 0;
  letter-spacing: 0.5px;
}

._40th-Loader-Blur-Circle-Inner::after {
  content: "";
  position: absolute;
  background-image: url('../img/mv-blur.png');
  background-size: 100%;
  background-repeat: no-repeat;
  width: 176px;
  height: 176px;
  top: 11px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
}

._40th-Loader-Blur-Circle-Inner > .number {
  font-size: 26px;
}

._40th-Loader-Blur-Circle-Inner > .en {
  font-size: 19px;
}

._40th-Loader-Title {
  position: relative;
  font-family: var(--font-noto-serif-jp);
  color: var(--color-blue);
  margin-top: 84px;
  font-size: 34px;
  font-weight: 500;
  text-shadow: 0 7px 8px rgb(0 0 0 / 0.2);
}

@media print,
screen and (min-width: 1024px) {
  ._40th-Loader-Blur-Circle-Inner {
    font-size: 27px;
  }

  ._40th-Loader-Blur-Circle-Inner::after {
    width: 290px;
    height: 290px;
    top: 11px;
  }

  ._40th-Loader-Blur-Circle-Inner > .number {
    font-size: 44px;
  }

  ._40th-Loader-Blur-Circle-Inner > .en {
    font-size: 30px;
  }

  ._40th-Loader-Title {
    margin-top: 130px;
    font-size: 50px;
  }

  ._40th-Loader-Title br {
    display: none;
  }
}