@charset "UTF-8";
#sec0 {
  position: relative;
  z-index: 3;
}

@layer resets {
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  :where([hidden]:not([hidden=until-found])) {
    display: none !important;
  }
  :where(html) {
    overflow-x: hidden;
    -webkit-text-size-adjust: none;
    color-scheme: dark light;
    -moz-tab-size: 2;
    -o-tab-size: 2;
    tab-size: 2;
    interpolate-size: allow-keywords;
    line-height: 1.5;
    min-width: 225px;
    scroll-behavior: auto;
  }
  :where(html:has(dialog:modal[open])) {
    overflow: clip;
  }
  :where(body) {
    line-height: inherit;
    font-family: var(--font-jp);
    -webkit-font-smoothing: antialiased;
    font-size: clamp(var(--font-size-min), var(--font-size-mid), var(--font-size-max));
    scroll-behavior: auto;
  }
  :where(body).active {
    overflow: hidden;
  }
  :where(section) {
    position: relative;
    will-change: transform, opacity;
  }
  :where(input, button, textarea, select) {
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    word-spacing: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    background-color: #fff;
  }
  :where(button) {
    all: unset;
  }
  :where(textarea) {
    resize: vertical;
    resize: block;
  }
  :where(button, label, select, summary, [role=button], [role=option]) {
    cursor: pointer;
  }
  :where(:disabled, label:has(> :disabled, + disabled)) {
    cursor: not-allowed;
  }
  :where(a) {
    color: inherit;
    text-underline-offset: 0.2ex;
    text-decoration: none;
  }
  :where(ul, ol) {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  :where(blockquote, q) {
    quotes: none;
  }
  :where(blockquote:before, blockquote:after, q:before, q:after) {
    content: "";
    content: none;
  }
  :where(table) {
    border-collapse: collapse;
    border-spacing: 0;
  }
  :where(img, picture, svg, video) {
    max-inline-size: 100%;
    block-size: auto;
    display: block;
    vertical-align: middle;
  }
  :where(dialog, [popover]) {
    border: none;
    background: none;
    color: inherit;
    inset: unset;
    max-width: unset;
    max-height: unset;
    overflow: unset;
  }
  :where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
    display: none !important;
  }
  :where(:focus-visible) {
    outline: 3px solid CanvasText;
    box-shadow: 0 0 0 5px Canvas;
    outline-offset: 1px;
  }
  :where(.visually-hidden:not(:focus-within, :active)) {
    clip-path: inset(50%) !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden !important;
    position: absolute !important;
    white-space: nowrap !important;
    border: 0 !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    user-select: none !important;
  }
  :where(fieldset, legend) {
    display: block;
    float: none;
    min-width: auto;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: normal;
    font-style: normal;
    font-size: 100%;
    font-family: inherit;
    line-height: inherit;
  }
  :where(a) {
    text-decoration: none;
    transition: 0.3s;
    opacity: 1;
    display: inline-block;
  }
}
@layer setting {
  :root {
    /* フォント関連 */
    --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", "游ゴシック Mediu", YuGothic, YuGothicM, "メイリオ", meiryo, sans-serif;
    --font-min: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    --font-en: "Jost", sans-serif;
    --font-begas: "Bebas Neue", cursive;
    /* レイアウト */
    --container-width: 1200px;
    --container-width-p: 90%;
    --section-padding: 2em 0;
    /* 色 */
    --color1: #ecf1f7;
    --color2: #222;
    /* フォントサイズclamp */
    --font-size-min: 9px;
    --font-size-mid: 1vw;
    --font-size-max: 16px;
  }
  @media screen and (max-width: 768px) {
    :root {
      --font-size-mid: 1.83dvw;
    }
  }
}
@layer layouts {
  body::before,
  body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  body::before {
    background: black;
  }
  body::after {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.3rem;
    text-align: center;
    white-space: pre-wrap;
    padding: 2rem;
  }
  /* 🟨横長すぎ or 縦長すぎの時に警告ON */
  @media (max-aspect-ratio: 1/2.5), (min-aspect-ratio: 2.5/1) {
    #loading {
      display: none !important;
    }
    body::before {
      opacity: 1;
      pointer-events: all;
    }
    body::after {
      white-space: pre-wrap;
      opacity: 1;
      pointer-events: all;
    }
  }
  @media (max-aspect-ratio: 1/2.5) {
    body::after {
      font-size: 1.3em;
      content: "この画面比率では正しく表示できません。\a縦に長すぎます。";
    }
  }
  @media (min-aspect-ratio: 2.5/1) {
    body::after {
      content: "この画面比率では正しく表示できません。\a横に長すぎます。";
    }
  }
  /* アコーディオン */
  :where(.accordion-area) {
    list-style: none;
    width: 100%;
    margin: 0 auto;
  }
  :where(.accordion-area) li {
    background-color: #fff;
    border-radius: 0.8em;
  }
  :where(.accordion-area) li + li {
    margin-top: 2em;
  }
  :where(.accordion-area) :where(.title) {
    position: relative;
    transition: all 0.5s ease;
    margin: 0;
    background-color: #c30d23;
    color: #fff;
  }
  :where(.accordion-area) :where(.title):before {
    display: block;
    position: absolute;
    content: "";
    width: 1.9rem;
    height: auto;
    aspect-ratio: 1/1;
    background-color: #fff;
    border-radius: 50%;
    transform: translate(50%, -50%);
    top: 50%;
    right: calc(0.95rem + 3%);
  }
  :where(.accordion-area) :where(.title):after {
    display: block;
    position: absolute;
    content: "";
    left: 0.75em;
    top: 1.48em;
    width: 1.4em;
    aspect-ratio: 1/1;
    height: auto;
    transform: translateY(-50%);
    background: url("../img/q.webp") no-repeat center/contain;
  }
  :where(.accordion-area) :where(.title) :where(span) {
    cursor: pointer;
    display: inline-block;
    padding: 0.7em 0;
    width: 100%;
    position: relative;
    letter-spacing: 0.1em;
    font-weight: 700;
    width: 100%;
    padding-right: calc(1.9rem + 3%);
    padding-left: 3.2rem;
  }
  :where(.accordion-area) :where(.title) :where(span):before, :where(.accordion-area) :where(.title) :where(span):after {
    content: "";
    height: 3px;
    width: 1.4rem;
    display: block;
    position: absolute;
    right: calc(0.95rem + 3%);
    top: 0.15em;
    bottom: 0;
    margin: auto;
    background-size: 90%;
    background-position: center;
    transition: 0.3s;
    background-color: #FC0C79;
    transform: translate(50%, -50%) rotate(0deg);
  }
  :where(.accordion-area) :where(.title) :where(span):before {
    transform: translate(50%, -50%) rotate(-90deg);
  }
  :where(.accordion-area) .title.close span::before {
    transform: translate(50%, -50%) rotate(0deg);
  }
  :where(.accordion-area) .abox {
    display: none;
    font-size: 1.1em;
    background: url("../img/dot.webp") no-repeat bottom/100% auto;
    padding: 1em 0 2.5em 3.2rem;
    font-weight: 700;
    position: relative;
    color: #282828;
    font-size: 1.15em;
    letter-spacing: 0.05em;
  }
  :where(.accordion-area) .abox:after {
    display: block;
    position: absolute;
    content: "";
    left: 0.75em;
    top: 1.7em;
    width: 1.4em;
    aspect-ratio: 1/1;
    height: auto;
    transform: translateY(-50%);
    background: url("../img/a.webp") no-repeat center/contain;
  }
  :where(.frame) {
    width: var(--container-width-p);
    max-width: var(--container-width);
    margin-inline: auto;
    position: relative;
  }
  :where(.flex) {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
  /* --- ローディング画面のスタイル --- */
  #loading {
    position: fixed;
    inset: 0;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }
  #loading.hidden {
    opacity: 0;
    visibility: hidden;
  }
  /* --- サイト本体 --- */
  body {
    background-image: url("../img/mainbg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    width: 100dvw;
    overflow-x: hidden;
  }
  @media screen and (max-width: 768px) {
    body {
      background-image: url("../img/mainbg_sp.webp");
    }
  }
  body .fixed_box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: calc(100% - 4dvw);
    height: calc(100% - 3dvw);
    top: 1.5dvw;
    bottom: 1.5dvw;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 1.5em;
    pointer-events: none;
  }
  @media screen and (max-width: 768px) {
    body .fixed_box {
      width: calc(100% - 6dvw);
      height: calc(100% - 6dvw);
      top: 3dvw;
      bottom: 3dvw;
    }
  }
  body .fixed_box.up {
    z-index: 14;
  }
  body .fixed_box.middle {
    border: 0.38em #fff solid;
    z-index: 3;
  }
  body .fixed_box.down {
    z-index: 1;
  }
  body .fixed_box #sec0-p2 {
    position: absolute;
    top: 0.7%;
    left: 0.7%;
    width: 25%;
    opacity: 0;
  }
  @media screen and (max-width: 768px) {
    body .fixed_box #sec0-p2 {
      top: 2.2vw;
      left: 2.2vw;
      width: 73%;
    }
  }
  body .fixed_box #sec0-p5 {
    position: absolute;
    left: 86%;
    top: 87%;
    width: 31%;
    z-index: 14;
    transform: translate(-50%, -50%);
    pointer-events: painted;
    opacity: 0;
  }
  @media screen and (max-width: 768px) {
    body .fixed_box #sec0-p5 {
      width: 55%;
      left: 74%;
      top: 91%;
    }
  }
  body .fixed_box #sec0-p5:hover a {
    opacity: 1;
    scale: 1;
  }
  body .fixed_box #sec0-p31 {
    position: absolute;
    left: 59%;
    top: 62%;
    width: 63%;
    opacity: 0;
  }
  @media screen and (max-width: 768px) {
    body .fixed_box #sec0-p31 {
      left: 11%;
      top: 68%;
      width: 163%;
    }
  }
  body.loading {
    overflow: hidden !important;
    height: 100% !important;
    width: 100% !important;
    position: fixed !important;
    touch-action: none !important;
  }
  .loading_text {
    display: block;
    text-align: center;
    position: absolute;
    font-size: 0.8em;
    letter-spacing: 0.05em;
    left: 0;
    right: 0;
    bottom: 6%;
    margin: 0 auto;
    z-index: 20;
    width: 100%;
    height: auto;
    color: #fff;
    text-shadow: -1px -1px 0 rgb(0, 0, 0), 1px -1px 0 rgb(0, 0, 0), -1px 1px 0 rgb(0, 0, 0), 1px 1px 0 rgb(0, 0, 0);
  }
  @media screen and (max-width: 768px) {
    .loading_text {
      bottom: 3%;
      font-size: 1.1em;
    }
  }
  /* --- ローディング --- */
  #loading {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    z-index: 9999;
    transition: opacity 0.6s ease;
    /* 円形ローダー */
    /* バーローダー */
  }
  #loading .circle-loader {
    width: 100%;
    aspect-ratio: 1/1;
    height: auto;
    margin-bottom: 2.5rem;
    background: url("../img/loading_img2.webp") no-repeat center/94.5% auto;
  }
  @media screen and (max-width: 768px) {
    #loading .circle-loader {
      margin-bottom: 2rem;
    }
  }
  #loading .circle-loader circle {
    fill: none;
    stroke-width: 3;
    transform: rotate(-90deg);
    transform-origin: center;
    stroke-dasharray: 70 212.6;
  }
  #loading .text_box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18%;
  }
  @media screen and (max-width: 768px) {
    #loading .text_box {
      width: 33%;
    }
  }
  #loading .bar-loader {
    max-width: 300px;
    width: 33%;
    height: 6px;
    background: #333;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #fff;
  }
  @media screen and (max-width: 768px) {
    #loading .bar-loader {
      max-width: 220px;
      width: 50%;
    }
  }
  #loading #progress-bar {
    height: 100%;
    width: 0%;
    background: #fff;
  }
  #loading .fhotoimg {
    display: block;
    position: absolute;
    left: 44%;
    top: -5%;
    width: 48%;
    aspect-ratio: 1/1.59;
    height: auto;
    z-index: 10;
    transform: translate(-50%, -50%);
  }
  #loading .nowloading {
    display: block;
    position: absolute;
    left: 50%;
    right: 0;
    bottom: 52%;
    width: 52%;
    aspect-ratio: 6.85/1;
    height: auto;
    transform: translate(-50%, -50%);
  }
  @media screen and (max-width: 768px) {
    #loading .nowloading {
      bottom: 59%;
      width: 59%;
    }
  }
  #loading .progress-text-box {
    font-size: clamp(1px, 3.2dvw, 55px);
    letter-spacing: 0em;
    position: absolute;
    line-height: 1;
    left: 50%;
    bottom: 30%;
    transform: translate(-50%, -50%);
  }
  @media screen and (max-width: 768px) {
    #loading .progress-text-box {
      font-size: clamp(1px, 5dvw, 55px);
      bottom: 37%;
    }
  }
  #loading .progress-text-box .progress-text {
    text-align: center;
    font-weight: 800;
    font-style: italic;
    position: relative;
    z-index: 5;
    display: block;
  }
  #loading .progress-text-box .progress-text.type1 {
    position: absolute;
    z-index: 4;
    top: 0.1em;
    left: 0.1em;
    right: 0;
    bottom: 0;
    margin: auto;
    color: #000;
    text-shadow: -1px -1px 0 rgb(255, 0, 116), 1px -1px 0 rgb(255, 0, 116), -1px 1px 0 rgb(255, 0, 116), 1px 1px 0 rgb(255, 0, 116);
  }
  #loading .progress-text-box .progress-text.type2 {
    position: absolute;
    z-index: 3;
    top: -0.05em;
    left: -0.1em;
    right: 0;
    bottom: 0;
    margin: auto;
    color: #000;
    text-shadow: -1px -1px 0 rgb(0, 247, 239), 1px -1px 0 rgb(0, 247, 239), -1px 1px 0 rgb(0, 247, 239), 1px 1px 0 rgb(0, 247, 239);
  }
  #loading .progress-text-box .progress-text:after {
    content: "%";
    font-size: 0.8em;
    padding-left: 0.1em;
  }
  #loading.hidden {
    opacity: 0;
    pointer-events: none;
  }
  main {
    opacity: 0;
    transition: opacity 1s ease;
  }
  main.visible {
    opacity: 1;
  }
  #loading,
  .fixed_box,
  section,
  .position {
    max-width: 1920px;
    margin-inline: auto;
  }
  #smooth-wrapper {
    width: 100%;
    z-index: 10;
  }
  .particle {
    will-change: transform, opacity;
    position: absolute;
    display: block;
    height: auto;
    transform-origin: center center;
    pointer-events: none;
    z-index: 10;
  }
  .particle.link {
    pointer-events: painted;
  }
  .particle.link:hover a {
    opacity: 1;
    display: block;
    scale: 1;
  }
  section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100vh;
  }
  .position {
    position: relative;
  }
  @media screen and (max-width: 768px) {
    .position {
      width: 100%;
      height: 94dvh;
    }
  }
  #sec0 #sec0-p1 {
    left: 5%;
    top: 0.7%;
    width: 45%;
    aspect-ratio: 0.45/1;
  }
  @media screen and (max-width: 768px) {
    #sec0 #sec0-p1 {
      left: -12%;
      top: 17.7%;
      width: 93%;
    }
  }
  #sec0 #sec0-p3 {
    left: 42%;
    top: 5%;
    width: 11%;
    z-index: 15;
  }
  @media screen and (max-width: 768px) {
    #sec0 #sec0-p3 {
      left: 1%;
      top: 36%;
      width: 26%;
      z-index: 10;
    }
  }
  #sec0 #sec0-p4 {
    left: 40%;
    top: 18%;
    width: 56%;
  }
  @media screen and (max-width: 768px) {
    #sec0 #sec0-p4 {
      left: 6%;
      top: 40%;
      width: 95%;
    }
  }
  #sec0 #sec0-p6 {
    left: 5%;
    top: 45%;
    width: 7%;
  }
  @media screen and (max-width: 768px) {
    #sec0 #sec0-p6 {
      left: 1%;
      top: 26%;
      width: 11%;
    }
  }
  #sec0 #sec0-p7 {
    left: -30%;
    top: 3%;
    width: 33%;
    z-index: 2;
  }
  #sec0 #sec0-p8 {
    left: 64%;
    top: 5%;
    width: 9%;
  }
  @media screen and (max-width: 768px) {
    #sec0 #sec0-p8 {
      left: 84%;
      top: 11%;
      width: 16%;
    }
  }
  #sec0 #sec0-p9-1,
  #sec0 #sec0-p9-2,
  #sec0 #sec0-p9-3,
  #sec0 #sec0-p9-4 {
    left: 13%;
    top: 0%;
    width: 70%;
  }
  @media screen and (max-width: 768px) {
    #sec0 #sec0-p9-1,
    #sec0 #sec0-p9-2,
    #sec0 #sec0-p9-3,
    #sec0 #sec0-p9-4 {
      left: -24%;
      top: 17%;
      width: 140%;
    }
  }
  #sec0 #sec0-p9-5,
  #sec0 #sec0-p9-6 {
    left: 0%;
    top: -15%;
    width: 90%;
  }
  @media screen and (max-width: 768px) {
    #sec0 #sec0-p9-5,
    #sec0 #sec0-p9-6 {
      left: -38%;
      top: 11%;
      width: 180%;
    }
  }
  #sec0 #sec0-p25 {
    left: 5%;
    top: -15%;
    width: 90%;
  }
  #sec0 #sec0-p9-1 {
    z-index: 6;
  }
  #sec0 #sec0-p9-2 {
    z-index: 5;
  }
  #sec0 #sec0-p9-3 {
    z-index: 4;
  }
  @media screen and (max-width: 768px) {
    #sec0 #sec0-p9-3 {
      left: 19%;
    }
  }
  #sec0 #sec0-p9-4 {
    z-index: 3;
  }
  #sec0 #sec0-p9-5 {
    z-index: 2;
  }
  #sec0 #sec0-p9-6 {
    z-index: 1;
  }
  #sec0 #sec0-p10 {
    left: 29%;
    top: 114%;
    width: 20%;
    z-index: 1;
  }
  #sec0 #sec0-p11 {
    left: 67%;
    top: 121%;
    width: 7%;
  }
  #sec0 #sec0-p12 {
    left: 2%;
    top: 71%;
    width: 8%;
  }
  @media screen and (max-width: 768px) {
    #sec0 #sec0-p12 {
      left: -8%;
      top: 96%;
      width: 20%;
    }
  }
  #sec0 #sec0-p13 {
    left: 95%;
    top: 7%;
    width: 10%;
  }
  #sec0 #sec0-p14 {
    left: 81%;
    top: 22%;
    width: 7%;
  }
  #sec0 #sec0-p15 {
    left: 109%;
    top: 77%;
    width: 7%;
  }
  #sec0 #sec0-p16 {
    left: 92%;
    top: 55%;
    width: 7%;
    z-index: 2;
  }
  #sec0 #sec0-p17 {
    left: 42%;
    top: 40%;
    width: 5%;
    z-index: 2;
  }
  #sec0 #sec0-p18 {
    left: 63%;
    top: 68%;
    width: 7%;
  }
  @media screen and (max-width: 768px) {
    #sec0 #sec0-p18 {
      left: 89%;
      top: 69%;
      width: 14%;
    }
  }
  #sec0 #sec0-p19 {
    left: 4%;
    top: 60%;
    width: 10%;
    z-index: 2;
  }
  #sec0 #sec0-p20 {
    left: 67%;
    top: -56%;
    width: 9%;
  }
  #sec0 #sec0-p21 {
    left: 102%;
    top: 23%;
    width: 8%;
  }
  @media screen and (max-width: 768px) {
    #sec0 #sec0-p21 {
      top: 23%;
      width: 12%;
      z-index: 2;
    }
  }
  #sec0 #sec0-p22 {
    left: 108%;
    top: -8%;
    width: 10%;
  }
  #sec0 #sec0-p23 {
    left: 28%;
    top: 88%;
    width: 9%;
  }
  @media screen and (max-width: 768px) {
    #sec0 #sec0-p23 {
      left: 28%;
      top: 76%;
      width: 21%;
      z-index: 8;
    }
  }
  #sec0 #sec0-p24 {
    left: 84%;
    top: 12%;
    width: 18%;
  }
  @media screen and (max-width: 768px) {
    #sec0 #sec0-p24 {
      left: 69%;
      top: 18%;
      width: 37%;
    }
  }
  #sec0 #sec0-p26 {
    left: 125%;
    top: 46%;
    width: 17%;
    z-index: 11;
  }
  @media screen and (max-width: 768px) {
    #sec0 #sec0-p26 {
      width: 22%;
    }
  }
  #sec0 #sec0-p27 {
    left: 112%;
    top: 41%;
    width: 10%;
  }
  @media screen and (max-width: 768px) {
    #sec0 #sec0-p27 {
      width: 29%;
    }
  }
  #sec0 #sec0-p28 {
    left: -27%;
    top: -38%;
    width: 14%;
  }
  @media screen and (max-width: 768px) {
    #sec0 #sec0-p28 {
      width: 30%;
    }
  }
  #sec0 #sec0-p29 {
    left: -15%;
    top: 17%;
    width: 8%;
  }
  @media screen and (max-width: 768px) {
    #sec0 #sec0-p29 {
      width: 20%;
    }
  }
  #sec0 #sec0-p30 {
    left: 20%;
    top: -50%;
    width: 11%;
  }
  @media screen and (max-width: 768px) {
    #sec0 #sec0-p30 {
      width: 28%;
    }
  }
  #sec0 #sec0-p32 {
    left: 45%;
    top: 77%;
    width: 9%;
  }
  @media screen and (max-width: 768px) {
    #sec0 #sec0-p32 {
      width: 13%;
      left: 50%;
      top: 67%;
      z-index: 5;
    }
  }
  #sec0 #sec0-p33 {
    left: -28%;
    top: 123%;
    width: 32%;
    z-index: 2;
  }
  @media screen and (max-width: 768px) {
    #sec0 #sec0-p33 {
      width: 41%;
    }
  }
  #sec0 #sec0-p34 {
    left: -24%;
    top: 98%;
    width: 11%;
    z-index: 2;
  }
  @media screen and (max-width: 768px) {
    #sec0 #sec0-p34 {
      width: 32%;
    }
  }
  #sec0 #sec0-p35 {
    left: 28%;
    top: 55%;
    width: 14%;
  }
  @media screen and (max-width: 768px) {
    #sec0 #sec0-p35 {
      left: -34%;
      top: 59%;
      width: 27%;
    }
  }
  #sec0 #sec0-p36 {
    left: 43%;
    top: -16%;
    width: 9%;
  }
  @media screen and (max-width: 768px) {
    #sec0 #sec0-p36 {
      left: 65%;
      top: 22%;
      width: 11%;
      z-index: 5;
    }
  }
  #sec0 #sec0-p37 {
    left: 95%;
    top: -17%;
    width: 7%;
  }
  #sec0 #sec0-p38 {
    left: -1%;
    top: 103%;
    width: 10%;
  }
  #sec0 #sec0-p39 {
    left: 70%;
    top: 70%;
    width: 30%;
    z-index: 2;
  }
  #sec0 #sec0-p40 {
    left: 78%;
    top: 51%;
    width: 15%;
  }
  @media screen and (max-width: 768px) {
    #sec0 #sec0-p40 {
      left: 60%;
      top: 67%;
      width: 29%;
    }
  }
  #sec1 #sec1-p1 {
    left: -2%;
    top: 49.7%;
    width: 44%;
  }
  @media screen and (max-width: 768px) {
    #sec1 #sec1-p1 {
      left: -35%;
      top: 17.7%;
      width: 97%;
      z-index: 8;
    }
  }
  #sec1 #sec1-p2 {
    left: 67%;
    top: -1%;
    width: 40%;
  }
  @media screen and (max-width: 768px) {
    #sec1 #sec1-p2 {
      left: 32%;
      top: 22%;
      width: 121%;
    }
  }
  #sec1 #sec1-p3 {
    left: 56%;
    top: 0%;
    width: 19%;
  }
  @media screen and (max-width: 768px) {
    #sec1 #sec1-p3 {
      left: 15%;
      top: 37%;
      width: 43%;
    }
  }
  #sec1 #sec1-p4 {
    left: 61%;
    top: 70%;
    width: 11%;
  }
  #sec1 #sec1-p5 {
    left: 33%;
    top: 26%;
    width: 3%;
    z-index: 12;
  }
  @media screen and (max-width: 768px) {
    #sec1 #sec1-p5 {
      left: 16%;
      top: 61%;
      width: 7%;
    }
  }
  #sec1 #sec1-p6 {
    left: 30%;
    top: 46%;
    width: 4%;
  }
  @media screen and (max-width: 768px) {
    #sec1 #sec1-p6 {
      left: 7%;
      top: 72%;
      width: 8%;
    }
  }
  #sec1 #sec1-p7 {
    left: 31%;
    top: 39%;
    width: 7%;
    z-index: 3;
  }
  @media screen and (max-width: 768px) {
    #sec1 #sec1-p7 {
      left: 9%;
      top: 67%;
      width: 16%;
    }
  }
  #sec1 #sec1-p8 {
    left: 25%;
    top: 15%;
    width: 52%;
    z-index: 2;
  }
  @media screen and (max-width: 768px) {
    #sec1 #sec1-p8 {
      left: 5%;
      top: 54%;
      width: 101%;
      z-index: 10;
    }
  }
  #sec1 #sec1-p9 {
    left: 1%;
    top: 46%;
    width: 17%;
    z-index: 3;
  }
  @media screen and (max-width: 768px) {
    #sec1 #sec1-p9 {
      left: 44%;
      top: 22%;
      width: 30%;
    }
  }
  #sec1 #sec1-p10 {
    left: 8%;
    top: 25%;
    width: 15%;
    z-index: 2;
  }
  @media screen and (max-width: 768px) {
    #sec1 #sec1-p10 {
      left: -16%;
      top: 83%;
      width: 22%;
    }
  }
  #sec1 #sec1-p11 {
    left: 39%;
    top: 56%;
    width: 20%;
    z-index: 2;
  }
  @media screen and (max-width: 768px) {
    #sec1 #sec1-p11 {
      left: 1%;
      top: 81%;
      width: 53%;
      z-index: 4;
    }
  }
  #sec1 #sec1-p12 {
    display: none;
  }
  @media screen and (max-width: 768px) {
    #sec1 #sec1-p12 {
      display: block;
      left: 75%;
      top: 6%;
      width: 28%;
    }
  }
  #sec2 #sec2-p1 {
    left: 34%;
    top: -5.3%;
    width: 14%;
  }
  #sec2 #sec2-p2 {
    left: 74%;
    top: -2%;
    width: 5%;
  }
  @media screen and (max-width: 768px) {
    #sec2 #sec2-p2 {
      left: 75%;
      top: -2%;
      width: 8%;
    }
  }
  #sec2 #sec2-p3 {
    left: 82%;
    top: 16%;
    width: 13%;
  }
  @media screen and (max-width: 768px) {
    #sec2 #sec2-p3 {
      left: 0%;
      top: 81%;
      width: 26%;
    }
  }
  #sec2 #sec2-p4 {
    left: 42%;
    top: 63%;
    width: 8%;
  }
  @media screen and (max-width: 768px) {
    #sec2 #sec2-p4 {
      left: 76%;
      top: 21%;
      width: 15%;
    }
  }
  #sec2 #sec2-p5 {
    left: 48%;
    top: 61%;
    width: 14%;
    z-index: 2;
  }
  @media screen and (max-width: 768px) {
    #sec2 #sec2-p5 {
      left: 81%;
      top: 13%;
      width: 31%;
    }
  }
  #sec2 #sec2-p6 {
    left: 63%;
    top: 77%;
    width: 5%;
  }
  #sec2 #sec2-p7 {
    left: 4%;
    top: 24%;
    width: 35%;
    z-index: 3;
  }
  @media screen and (max-width: 768px) {
    #sec2 #sec2-p7 {
      left: -7%;
      top: 24%;
      width: 99%;
      z-index: 5;
    }
  }
  #sec2 #sec2-p8 {
    left: 4%;
    top: 24%;
    width: 16%;
    z-index: 2;
  }
  @media screen and (max-width: 768px) {
    #sec2 #sec2-p8 {
      left: 8%;
      top: 20%;
      width: 35%;
    }
  }
  #sec2 #sec2-p9 {
    left: -1%;
    top: 71%;
    width: 7%;
    z-index: 3;
  }
  @media screen and (max-width: 768px) {
    #sec2 #sec2-p9 {
      left: -19%;
      top: 67%;
      width: 18%;
    }
  }
  #sec2 #sec2-p10 {
    left: 35%;
    top: 16%;
    width: 50%;
    z-index: 2;
  }
  @media screen and (max-width: 768px) {
    #sec2 #sec2-p10 {
      left: 16%;
      top: 47%;
      width: 89%;
      z-index: 9;
    }
  }
  #sec2 #sec2-p11 {
    left: 70%;
    top: 55%;
    width: 14%;
    z-index: 2;
  }
  @media screen and (max-width: 768px) {
    #sec2 #sec2-p11 {
      left: 54%;
      top: 81%;
      width: 45%;
    }
  }
  #sec2 #sec2-p12 {
    left: 70%;
    top: 55%;
    width: 14%;
    z-index: 2;
  }
  @media screen and (max-width: 768px) {
    #sec2 #sec2-p12 {
      left: 83%;
      top: 84%;
      width: 14%;
    }
  }
  #sec2 #sec2-p13 {
    left: 70%;
    top: 55%;
    width: 14%;
    z-index: 2;
  }
  @media screen and (max-width: 768px) {
    #sec2 #sec2-p13 {
      top: 83%;
    }
  }
  #sec3 #sec3-p1 {
    left: 23%;
    top: 90.7%;
    width: 11%;
  }
  @media screen and (max-width: 768px) {
    #sec3 #sec3-p1 {
      left: 23%;
      top: 102.7%;
      width: 18%;
    }
  }
  #sec3 #sec3-p2 {
    left: 82%;
    top: 14%;
    width: 20%;
  }
  @media screen and (max-width: 768px) {
    #sec3 #sec3-p2 {
      left: 4%;
      top: 67%;
      width: 56%;
    }
  }
  #sec3 #sec3-p3 {
    left: 53%;
    top: -7%;
    width: 8%;
  }
  @media screen and (max-width: 768px) {
    #sec3 #sec3-p3 {
      left: 106%;
      top: 65%;
      width: 25%;
    }
  }
  #sec3 #sec3-p4 {
    left: -3%;
    top: 31%;
    width: 12%;
  }
  @media screen and (max-width: 768px) {
    #sec3 #sec3-p4 {
      left: -25%;
      top: 22%;
      width: 27%;
    }
  }
  #sec3 #sec3-p5 {
    left: 1%;
    top: 28%;
    width: 38%;
    z-index: 12;
  }
  @media screen and (max-width: 768px) {
    #sec3 #sec3-p5 {
      left: -28%;
      top: 24%;
      width: 93%;
      z-index: 9;
    }
  }
  #sec3 #sec3-p6 {
    left: 38%;
    top: 58%;
    width: 14%;
  }
  @media screen and (max-width: 768px) {
    #sec3 #sec3-p6 {
      left: 75%;
      top: 28%;
      width: 33%;
    }
  }
  #sec3 #sec3-p7 {
    left: 31%;
    top: 16%;
    width: 19%;
    z-index: 3;
  }
  @media screen and (max-width: 768px) {
    #sec3 #sec3-p7 {
      left: 41%;
      top: 18%;
      width: 44%;
    }
  }
  #sec3 #sec3-p8 {
    left: 48%;
    top: 12%;
    width: 36%;
    z-index: 2;
  }
  @media screen and (max-width: 768px) {
    #sec3 #sec3-p8 {
      left: 41%;
      top: 49%;
      width: 69%;
      z-index: 8;
    }
  }
  #sec3 #sec3-p9 {
    left: 29%;
    top: 4%;
    width: 9%;
    z-index: 3;
  }
  #sec3 #sec3-p10 {
    left: 73%;
    top: 2%;
    width: 11%;
    z-index: 2;
  }
  #sec3 #sec3-p11 {
    left: 77%;
    top: 24%;
    width: 7%;
    z-index: 2;
  }
  #sec3 #sec3-p12 {
    left: 62%;
    top: 64%;
    width: 14%;
    z-index: 2;
  }
  #sec3 #sec3-p13 {
    left: 59%;
    top: 66%;
    width: 13%;
    z-index: 2;
  }
  #sec3 #sec3-p14 {
    left: 57%;
    top: 64%;
    width: 15%;
    z-index: 2;
  }
  #sec4 #sec4-p1 {
    left: -2%;
    top: 18.7%;
    width: 7%;
  }
  @media screen and (max-width: 768px) {
    #sec4 #sec4-p1 {
      left: -16%;
      top: 15.7%;
      width: 15%;
    }
  }
  #sec4 #sec4-p2 {
    left: 87%;
    top: 4%;
    width: 13%;
  }
  @media screen and (max-width: 768px) {
    #sec4 #sec4-p2 {
      left: 88%;
      top: 8%;
      width: 23%;
    }
  }
  #sec4 #sec4-p3 {
    left: 1%;
    top: 58%;
    width: 9%;
  }
  @media screen and (max-width: 768px) {
    #sec4 #sec4-p3 {
      left: -2%;
      top: 75%;
      width: 22%;
    }
  }
  #sec4 #sec4-p4 {
    left: 49%;
    top: 68%;
    width: 18%;
  }
  @media screen and (max-width: 768px) {
    #sec4 #sec4-p4 {
      left: 105%;
      top: 74%;
      width: 37%;
    }
  }
  #sec4 #sec4-p5 {
    left: 45%;
    top: 57%;
    width: 13%;
    z-index: 2;
  }
  @media screen and (max-width: 768px) {
    #sec4 #sec4-p5 {
      left: 108%;
      top: 42%;
      width: 29%;
    }
  }
  #sec4 #sec4-p6 {
    left: 80%;
    top: -7%;
    width: 6%;
  }
  @media screen and (max-width: 768px) {
    #sec4 #sec4-p6 {
      left: 104%;
      top: -22%;
      width: 13%;
    }
  }
  #sec4 #sec4-p7 {
    left: 5%;
    top: 70%;
    width: 17%;
    z-index: 3;
  }
  @media screen and (max-width: 768px) {
    #sec4 #sec4-p7 {
      left: 10%;
      top: 79%;
      width: 38%;
    }
  }
  #sec4 #sec4-p8 {
    left: 29%;
    top: 71%;
    width: 8%;
    z-index: 2;
  }
  @media screen and (max-width: 768px) {
    #sec4 #sec4-p8 {
      left: 31%;
      top: 74%;
      width: 15%;
    }
  }
  #sec4 #sec4-p9 {
    left: 60%;
    top: 1%;
    width: 32%;
    z-index: 3;
  }
  @media screen and (max-width: 768px) {
    #sec4 #sec4-p9 {
      left: 51%;
      top: 22%;
      width: 89%;
    }
  }
  #sec4 #sec4-p10 {
    left: -7%;
    top: 13%;
    width: 35%;
    z-index: 2;
  }
  @media screen and (max-width: 768px) {
    #sec4 #sec4-p10 {
      left: -46%;
      top: 15%;
      width: 84%;
    }
  }
  #sec4 #sec4-p11 {
    left: 48%;
    top: -3%;
    width: 17%;
    z-index: 2;
  }
  @media screen and (max-width: 768px) {
    #sec4 #sec4-p11 {
      left: 25%;
      top: 21%;
      width: 43%;
      z-index: 1;
    }
  }
  #sec4 #sec4-p12 {
    left: 23%;
    top: 17%;
    width: 38%;
    z-index: 2;
  }
  @media screen and (max-width: 768px) {
    #sec4 #sec4-p12 {
      left: -6%;
      top: 59%;
      width: 117%;
      z-index: 7;
    }
  }
  #sec4 #sec4-p13 {
    left: 32%;
    top: -15%;
    width: 10%;
    z-index: 2;
  }
  @media screen and (max-width: 768px) {
    #sec4 #sec4-p13 {
      left: -11%;
      top: -10%;
      width: 17%;
    }
  }
  #sec5 #sec5-p1 {
    left: -2%;
    top: 68.7%;
    width: 12%;
  }
  @media screen and (max-width: 768px) {
    #sec5 #sec5-p1 {
      left: -21%;
      top: 68.7%;
      width: 21%;
    }
  }
  #sec5 #sec5-p2 {
    left: -5%;
    top: 24%;
    width: 28%;
  }
  @media screen and (max-width: 768px) {
    #sec5 #sec5-p2 {
      left: -1%;
      top: 17%;
      width: 45%;
    }
  }
  #sec5 #sec5-p3 {
    left: 55%;
    top: 70%;
    width: 21%;
  }
  @media screen and (max-width: 768px) {
    #sec5 #sec5-p3 {
      left: 99%;
      top: 78%;
      width: 35%;
    }
  }
  #sec5 #sec5-p4 {
    left: 41%;
    top: -8%;
    width: 21%;
  }
  @media screen and (max-width: 768px) {
    #sec5 #sec5-p4 {
      left: 72%;
      top: 5%;
      width: 50%;
    }
  }
  #sec5 #sec5-p5 {
    left: 92%;
    top: 16%;
    width: 10%;
    z-index: 2;
  }
  @media screen and (max-width: 768px) {
    #sec5 #sec5-p5 {
      left: 97%;
      top: 73%;
      width: 28%;
    }
  }
  #sec5 #sec5-p6 {
    left: 28%;
    top: -1%;
    width: 9%;
  }
  @media screen and (max-width: 768px) {
    #sec5 #sec5-p6 {
      left: 89%;
      top: 69%;
      width: 17%;
    }
  }
  #sec5 #sec5-p7 {
    left: 15%;
    top: 74%;
    width: 7%;
    z-index: 3;
  }
  @media screen and (max-width: 768px) {
    #sec5 #sec5-p7 {
      left: -5%;
      top: 49%;
      width: 11%;
    }
  }
  #sec5 #sec5-p8 {
    left: -2%;
    top: 39%;
    width: 49%;
    z-index: 2;
  }
  @media screen and (max-width: 768px) {
    #sec5 #sec5-p8 {
      left: -51%;
      top: 51%;
      width: 99%;
      z-index: 10;
    }
  }
  #sec5 #sec5-p9 {
    left: 71%;
    top: 16%;
    width: 34%;
    z-index: 3;
  }
  @media screen and (max-width: 768px) {
    #sec5 #sec5-p9 {
      left: 44%;
      top: 24%;
      width: 66%;
    }
  }
  #sec5 #sec5-p10 {
    left: 63%;
    top: 3%;
    width: 19%;
    z-index: 2;
  }
  @media screen and (max-width: 768px) {
    #sec5 #sec5-p10 {
      left: 26%;
      top: 17%;
      width: 41%;
    }
  }
  #sec5 #sec5-p11 {
    left: 24%;
    top: 11%;
    width: 49%;
    z-index: 0;
  }
  @media screen and (max-width: 768px) {
    #sec5 #sec5-p11 {
      left: 1%;
      top: 38%;
      width: 99%;
      z-index: 7;
    }
  }
  #sec6 #sec6-p1 {
    left: 56%;
    top: 43.7%;
    width: 13%;
  }
  @media screen and (max-width: 768px) {
    #sec6 #sec6-p1 {
      left: 61%;
      top: 46.7%;
      width: 35%;
    }
  }
  #sec6 #sec6-p2 {
    left: 25%;
    top: 44%;
    width: 25%;
  }
  @media screen and (max-width: 768px) {
    #sec6 #sec6-p2 {
      left: 8%;
      top: 45%;
      width: 43%;
    }
  }
  #sec6 #sec6-p3 {
    left: 0%;
    top: 36%;
    width: 19%;
  }
  @media screen and (max-width: 768px) {
    #sec6 #sec6-p3 {
      left: -24%;
      top: 17%;
      width: 24%;
    }
  }
  #sec6 #sec6-p4 {
    left: 23%;
    top: 75%;
    width: 7.5%;
  }
  @media screen and (max-width: 768px) {
    #sec6 #sec6-p4 {
      left: 34%;
      top: 82%;
      width: 14.5%;
      z-index: 12;
    }
  }
  #sec6 #sec6-p5 {
    left: 5%;
    top: 69%;
    width: 21%;
    z-index: 2;
  }
  @media screen and (max-width: 768px) {
    #sec6 #sec6-p5 {
      left: 4%;
      top: 79%;
      width: 32%;
      z-index: 11;
    }
  }
  #sec6 #sec6-p6 {
    left: 85%;
    top: 26%;
    width: 19%;
  }
  @media screen and (max-width: 768px) {
    #sec6 #sec6-p6 {
      left: 76%;
      top: 10%;
      width: 28%;
    }
  }
  #sec6 #sec6-p7 {
    left: 78%;
    top: 47%;
    width: 6%;
    z-index: 3;
  }
  @media screen and (max-width: 768px) {
    #sec6 #sec6-p7 {
      left: 90%;
      top: 31%;
      width: 11%;
    }
  }
  #sec6 #sec6-p8 {
    left: 69%;
    top: 65%;
    width: 7%;
    z-index: 2;
  }
  @media screen and (max-width: 768px) {
    #sec6 #sec6-p8 {
      left: 91%;
      top: 75%;
      width: 12%;
    }
  }
  #sec6 #sec6-p9 {
    left: 51%;
    top: 7%;
    width: 8%;
    z-index: 3;
  }
  @media screen and (max-width: 768px) {
    #sec6 #sec6-p9 {
      left: 53%;
      top: 20%;
      width: 17%;
    }
  }
  #sec6 #sec6-p10 {
    left: 50%;
    top: 14%;
    width: 35%;
  }
  @media screen and (max-width: 768px) {
    #sec6 #sec6-p10 {
      display: none;
    }
  }
  #sec6 #sec6-p11 {
    left: 23%;
    top: 11%;
    width: 29%;
    z-index: 7;
  }
  @media screen and (max-width: 768px) {
    #sec6 #sec6-p11 {
      left: -6%;
      top: 20%;
      width: 119%;
    }
  }
  #sec6 #sec6-p12 {
    left: 35%;
    top: 36%;
    width: 29%;
  }
  @media screen and (max-width: 768px) {
    #sec6 #sec6-p12 {
      left: 9%;
      top: 39%;
      width: 80%;
      z-index: 13;
    }
  }
  #sec6 #sec6-p13 {
    left: 32%;
    top: 66%;
    width: 10%;
  }
  @media screen and (max-width: 768px) {
    #sec6 #sec6-p13 {
      display: none;
    }
  }
  #sec6 #sec6-p14 {
    left: 17%;
    top: 32%;
    width: 7%;
  }
  @media screen and (max-width: 768px) {
    #sec6 #sec6-p14 {
      left: -3%;
      top: 31%;
      width: 16%;
      z-index: 3;
    }
  }
  #sec6 #sec6-p15 {
    left: -1%;
    top: 28%;
    width: 7%;
    z-index: 2;
  }
  #sec6 #sec6-p16 {
    left: 22%;
    top: 52%;
    width: 9%;
  }
  @media screen and (max-width: 768px) {
    #sec6 #sec6-p16 {
      left: 2%;
      top: 49%;
      width: 19%;
    }
  }
  #sec6 #sec6-p17 {
    left: 81%;
    top: 2%;
    width: 6%;
    z-index: 3;
  }
  @media screen and (max-width: 768px) {
    #sec6 #sec6-p17 {
      left: 70%;
      top: -4%;
      width: 17%;
    }
  }
  #sec6 #sec6-p18 {
    left: 66%;
    top: 33%;
    width: 12%;
  }
  @media screen and (max-width: 768px) {
    #sec6 #sec6-p18 {
      left: 66%;
      top: 39%;
      width: 28%;
    }
  }
  #sec6 #sec6-p19 {
    left: 64%;
    top: 93%;
    width: 4%;
    z-index: 3;
  }
  #sec6 #sec6-p20 {
    left: 33%;
    top: 94%;
    width: 4%;
    z-index: 2;
  }
  #sec6 #sec6-p21 {
    left: 24%;
    top: 11%;
    width: 49%;
    z-index: 0;
  }
  @media screen and (max-width: 768px) {
    #sec6 #sec6-p21 {
      left: -4%;
      top: 20%;
      width: 106%;
    }
  }
  #sec6 #sec6-p22 {
    left: 36%;
    top: 26%;
    width: 10%;
    z-index: 9;
  }
  @media screen and (max-width: 768px) {
    #sec6 #sec6-p22 {
      left: 16%;
      top: 31%;
      width: 20%;
    }
  }
}
@layer modules {
  /* ハンバーガーメニュー構造・配置 */
  .hamburger {
    display: block;
    margin: auto 0;
    cursor: pointer;
    text-align: center;
    width: 5%;
    aspect-ratio: 1/1;
    position: absolute;
    top: 3vw;
    right: 3vw;
    z-index: 30;
    pointer-events: painted;
  }
  @media screen and (max-width: 768px) {
    .hamburger {
      width: 10%;
      top: 6vw;
      right: 4vw;
    }
  }
  .hamburger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 80%;
    background-color: #fff;
    border-radius: 2px;
    transform-origin: center;
    transform: rotate(-20deg);
    right: 0;
  }
  @media screen and (max-width: 768px) {
    .hamburger span {
      height: 2px;
    }
  }
  .hamburger span:nth-child(1) {
    top: 6%;
    animation: slideLine 7s ease 0.2s infinite;
  }
  .hamburger span:nth-child(2) {
    top: 33%;
    animation: slideLine 7s ease 0.4s infinite;
  }
  .hamburger span:nth-child(3) {
    top: 60%;
    animation: slideLine 7s ease 0.6s infinite;
  }
  @keyframes slideLine {
    0%, 100% {
      transform: rotate(-20deg) translate(0);
    }
    38%, 50% {
      transform: rotate(-20deg) translate(0);
    }
    45% {
      transform: rotate(-20deg) translate(45%, 50%);
    }
  }
  nav.globalMenuSp {
    position: fixed;
    z-index: 15;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-120%);
    transition: all 0.6s;
    width: 100%;
    height: 100vh;
    max-width: 450px;
    background-size: 100% auto, auto;
    background-position: top center;
    pointer-events: none;
  }
  nav.globalMenuSp ul {
    padding: 6em 0 2em;
    position: relative;
    height: 100vh;
  }
  nav.globalMenuSp ul li {
    position: absolute;
    top: 0;
    bottom: 10%;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 1/0.7;
    margin: auto;
  }
  nav.globalMenuSp ul li a {
    color: #fff;
    padding: 0.7em 5%;
    font-size: 1.2em;
    width: 100%;
  }
  nav.globalMenuSp ul li a:hover {
    scale: 1;
    opacity: 1;
  }
  nav.globalMenuSp .close_menu {
    width: 3em;
    height: 3em;
    top: 10px;
    right: 10px;
    position: absolute;
    cursor: pointer;
  }
  nav.globalMenuSp .close_menu:before, nav.globalMenuSp .close_menu:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 70%;
    background: #fff;
  }
  nav.globalMenuSp .close_menu:before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  nav.globalMenuSp .close_menu:after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  nav.globalMenuSp.active {
    transform: translateY(0%);
    pointer-events: visible;
  }
}
@layer utilities {
  @media screen and (max-width: 768px) {
    .pc {
      display: none !important;
    }
  }
  .sp {
    display: none !important;
  }
  @media screen and (max-width: 768px) {
    .sp {
      display: block !important;
    }
  }
}