* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    letter-spacing: 2.1;
}

/* font select 
-Bodoni Moda
..Rozha One
.+.+ Sree Krushnadevaraya
-Bodoni Moda SC
Kumar One Outline
Aboreto

Public Sans
Ramabhadra
Nunito Sans
Jura

Codystar
Cinzel Decorative
Squada One
Bungee Hairline
-Waterfall

Sofia
MuseoModerno

Marcellus

*/

/* スクロールをスムーズにする */
html {
    scroll-behavior: auto;
    margin: 0;
    /*パララックスが動作がもたつくのでautoにした*/
}

body {
    font-family: sans-serif;
    overflow-x: hidden;
    margin: 0;
}

a {
    color: #ffffff;
    text-decoration: none;
}


/* 表示制限用 */
.all-wrapper {
    /* 最大表示サイズ指定 一時的に無効*/
    /* max-width: 1586px; */
    /* 最小表示サイズ指定 */
    min-width: 300px;
    width: 100%;
    /* padding: 0 20px; */
    /*スマホ・タブレット対応　余白*/
    box-sizing: border-box;
    background: #000000;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 107px;
    background: #22222200;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(-100px);
    transition: transform 1s ease, opacity 1s ease;
    /* transition: transform 0.5s ease, opacity 1s ease; */
    mix-blend-mode: difference;
    opacity: 0;
    padding: 0 20px 0 0px;
    /* padding: 0 20px; */
    z-index: 1000;
}

.header.visible {
    transform: translateY(0);
    opacity: 1;
}

/* イベント情報表示 */
.announce {
    width: 120px;
    height: 120px;
    padding: 7px;
    font-size: clamp(8px, 1vw, 15px);
    margin-top: 14px;
    text-align: left;
    /* border-radius: 7%; */
    font-family: serif;
    background-color: #ff349747;
    color: #ffffff;
    clip-path: polygon(0px 0px, 101% 0px, -13% 112%);
    animation: announceColor 7s ease-in infinite;
}

.announce_caption {
    width: 100%;
    height: auto;
    transform: rotate(317deg) translate(-25px, -4px);
    text-align: center;
    line-height: 12px;
    border-bottom: 1px solid #ffffff;
}

@keyframes announceColor {
    0% {
        background: #ff349747;
    }

    25% {
        background: #a4cb064c;
    }

    50% {
        background: #d728283c;
    }

    75% {
        background: #341ddf49;
    }

    100% {
        background: #ff349747;
    }
}

/* @media (min-width: 600px) and (max-width: 856px) { 
}*/

@media (min-width: 857px) and (max-width: 1112px) {

    .announce {
        width: 160px;
        height: 160px;
        margin-top: 54px;
    }

    .announce_caption {
        transform: rotate(317deg) translate(-34px, -11px);
        line-height: 17px;
    }

}

@media (min-width: 1113px) {

    .announce {
        width: 200px;
        height: 200px;
        margin-top: 94px;
    }

    .announce_caption {
        transform: rotate(317deg) translate(-44px, -13px);
        line-height: 21px;
    }

}


/* .menu-toggle {
      font-size: 30px;
      cursor: pointer;
    } */

/* menu button start */
/* menuボタン */
.menu-wrapper {
    position: absolute;
    /*  右寄せ用*/
    top: 31px;
    right: 42px;
    cursor: pointer;
    text-align: right;
    z-index: 2000;
}

.menu-circle {
    width: 46px;
    height: 46px;
    border-radius: 15%;
    background: #ffffff00;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    transition: transform 0.4s ease;
    filter: drop-shadow(4px 10px 5px rgb(0, 0, 0));
    border: 2px solid #ffffff;
}



/* .menu-circle:active {

   transform: scale(1.0);

} */
.menu-circle.thouch {

    transform: scale(1.0);

}

@media (hover: hover) {
    /* hoverが使える端末 PC想定 */

    .menu-circle:hover {
        transform: scale(2.15);

    }
}

@media (hover: none) {
    /* hoverが使えない端末 スマホ想定 */

    .menu-circle:active {
        /* スマホ用 */
        /* touch-action: manipulation; */
        transform: scale(2.15);

    }
}


.menu-toggle {
    width: 25px;
    /* height: 30px; */
    position: relative;
    font-size: 2rem;
    /* padding: 1rem; */
    cursor: pointer;
    transition: all 0.3s ease;
    top: -2px;
    left: 10px;
}

.menu-toggle span {
    position: absolute;
    width: 21%;
    height: 5px;
    background: rgb(255, 255, 255);
    border-radius: 2px;
    left: 0;
    transition: all 0.3s ease;
}

.menu-toggle span:hover {

    background: rgb(153, 152, 152);
    animation: turnColor 1s ease-in forwards;
}

@keyframes turnColor {
    from {
        background: rgba(255, 255, 255, 0.3);
    }

    to {
        background: rgb(248, 248, 248);
    }
}

/* menu button -dis3- pre */
.menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
    transform: translate(11px, -11px);
    top: 21px;
}

.menu-toggle span:nth-child(2) {
    transform: rotate(45deg);
    transform: translate(0px, 0px);
    top: 21px;
}

.menu-toggle span:nth-child(3) {
    transform: rotate(45deg);
    transform: translate(-11px, 11px);
    top: 21px;
}

.menu-toggle span:nth-child(4) {
    transform: rotate(45deg);
    transform: translate(11px, 11px);
    top: 21px;
    opacity: 0;
}

.menu-toggle span:nth-child(5) {
    transform: rotate(45deg);
    transform: translate(-11px, -11px);
    top: 21px;
    opacity: 0;
}


/* menu button -dis3- after */
.menu-wrapper.active .menu-toggle span:nth-child(1) {
    /* transform: rotate(45deg) translate(20px, 43px); */
    transform: translate(-11px, -11px);

    /* width: 153%; */
    /* animation: menuBt 1.5s ease-in ; */
    /* height: 2px; */
}

.menu-wrapper.active .menu-toggle span:nth-child(2) {
    /* transform: translate(-10px, -1px); */
    opacity: 1;
}

.menu-wrapper.active .menu-toggle span:nth-child(3) {
    /* transform: rotate(-45deg) translate(-10px, -13px); */
    transform: translate(11px, 11px);

    /* top: 23px; */
    /* width: 153%; */
    /* animation: menuBt 1.5s ease-in ; */
    /* height: 2px; */
}

.menu-wrapper.active .menu-toggle span:nth-child(4) {
    /* transform: translate(-10px, -1px); */
    transform: rotate(45deg);
    transform: translate(11px, -11px);
    opacity: 1;
}

.menu-wrapper.active .menu-toggle span:nth-child(5) {
    /* transform: rotate(-45deg) translate(-10px, -13px); */
    transform: rotate(45deg);
    transform: translate(-11px, 11px);
    opacity: 1;
}


/* menu要素 */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 100vh; */
    /* height: calc(var(--vh, 1vh) * 100); */
    background: linear-gradient(160deg, #0e0e0e92, #000000be);
    color: white;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: opacity 0.5s ease;
    /* JS対応と非対応ブラウザのフォールバック兼用1/2 */
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    /* -------------------------------- */
}

/* JS対応と非対応ブラウザのフォールバック兼用2/2 */
@supports (height: 100lvh) {
    .fullscreen-menu {
        min-height: 100lvh;
    }
}


/* menu開閉アニメ */
.fullscreen-menu.show {
    opacity: 1;
    pointer-events: auto;
    animation: waveOpen 0.5s ease-in forwards;

    /* animation: waveOpen 1s infinite forwards; */
    /* 真ん中をゆっくり */
    /* animation-timing-function: linear(0, 0.45, 0.48, 0.52, 0.55, 1); */
}

.fullscreen-menu.remove-show {
    /* transition: opacity 1s ease; */
    /* opacity: 0; */
    /* pointer-events: auto; */
    animation: waveClose 0.5s ease-in forwards;
}

.left-menu {
    width: 500px;
    height: auto;
    float: left;
    margin: 129px auto 0;
    text-align: left;
    padding: 19px;

}

.sns-links {
    /* padding: 40px 0 40px 0 */
    margin-top: 5vh;
}

/* .right-menu {
    width: 80px;
    height: auto;
    float: left;
    margin: 150px auto 0;
    text-align: left;
    padding: 19px;
    text-align: right;
} */

/* menuリスト */
.fullscreen-menu ul {
    list-style: none;
    padding: 0;
    /* margin: 150px auto 0;
    text-align: left;
    padding: 19px; */
}

/* menu文字遅延アニメ */
.fullscreen-menu li {
    /* font-size: 2rem; */
    font-family: 'Jost';
    font-weight: 500;
    font-size: clamp(15px, 4vw, 35px);
    letter-spacing: 4px;
    margin: 1.2rem 0;
    opacity: 0;
    transform: translateY(20px);
    animation: slideIn 0.6s ease forwards;
}

.fullscreen-menu.open li {

    top: 0;
}

.small-sub-t {
    font-size: clamp(9px, 2vw, 15px);
    text-align: left;
    margin-left: 10px;
}

/* メニュー文字表示遅延 */
/* .fullscreen-menu.show li:nth-child(1) { animation-delay: 1.7s; }
  .fullscreen-menu.show li:nth-child(2) { animation-delay: 1.9s; }
  .fullscreen-menu.show li:nth-child(3) { animation-delay: 2.1s; }
  .fullscreen-menu.show li:nth-child(4) { animation-delay: 2.3s; } */

/* menu open animation */
@keyframes waveOpen {
    0% {
        clip-path: polygon(0 0, 100% 0);
    }

    10% {
        clip-path: polygon(0 0, 100% 0, 100% 40%, 0% 0%);
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);

    }

}

/* menu close animation */
@keyframes waveClose {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    10% {
        clip-path: polygon(0 40%, 100% 0%, 100% 100%, 0 100%);
    }

    100% {
        clip-path: polygon(0 100%, 100% 0, 100% 0, 0 100%);

    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* menu button end */

/* fix-area */
.fix-area {
    position: relative;
    width: 100%;
    /* height: 350vh; */
    /* height: 1500vh; */

    /* 変更 無効にすることで可変に対応できるようにする */
    /* height: 400vh; */

    z-index: 0;
}

/* -----------------スモークエフェクト -----------------------------*/
.side-smoke-ef1 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: radial-gradient(in hsl, #ffffff00, #000000);
    opacity: 1.5;
    z-index: 5;
}

.side-smoke-ef2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: radial-gradient(in hsl, #ffffff00, #000000);
    opacity: 0.3;
    z-index: 5;
}

.side-smoke-ef3 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: radial-gradient(in hsl, #ffffff00, #000000);
    /* opacity: 0.8; */
    opacity: 0;
    z-index: 5;
}

.side-smoke-ef3.visible {
    animation: grafade 5s cubic-bezier(0.33, 1, 0.68, 1);
    opacity: 0.8;
}

@keyframes grafade {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.8;
    }
}

.side-smoke-ef4 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: radial-gradient(ellipse at center, #ffffff00 50%, #ffffff 90%, #ffffff 100%);
    opacity: 1;
    z-index: 5;
}

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

/* スライダー S*/
/* -----------------スライダー ---------------------------------------------------- */

.slider-container {
    /* position: relative; */
    position: sticky;
    top: 0;
    width: 100%;
    /* height: 800px; */

    overflow: hidden;
    /* margin-top: -88px; */
    /*background: #0232a8; /*画像透過後の色*/
    background: #000000cf;
    /* box-shadow: 0 0 30px rgba(255, 255, 255, 0.3); */
    z-index: 3;

    /* JS対応と非対応ブラウザのフォールバック兼用1/2 */
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    /* -------------------------------- */
}

/* JS対応と非対応ブラウザのフォールバック兼用2/2 */
@supports (height: 100lvh) {
    .slider-container {
        min-height: 100lvh;
    }
}

.slides {
    width: 100%;
    /* height: 100%; */
    position: relative;

    /* JS対応と非対応ブラウザのフォールバック兼用1/2 */
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    /* -------------------------------- */
}

/* JS対応と非対応ブラウザのフォールバック兼用2/2 */
@supports (height: 100lvh) {
    .slides {
        min-height: 100lvh;
    }
}

.slide-cover {
    width: 100%;
    height: 100%;
    position: absolute;
    background: #00000000;
    z-index: 999;
}

.slide-cover::before {

    /* ----version1---- */
    content: "";
    position: absolute;
    inset: 0;
    /* background-image: url(../img/noise2.gif); */
    background-size: 60%;
    mix-blend-mode: multiply;
    opacity: .03;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    /* ----version2---- */
    /* content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url(../img/noise3.webp);
    background-repeat: repeat;
    pointer-events: none; */
}



.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: transform 1.2s ease, opacity 1s ease;
    z-index: 2;
    /* pointer-events: none; */

    /* opacity: 0;
    clip-path: circle(0% at 50% 50%);
    transform: scale(1.2) rotate(2deg);
    filter: brightness(0.7) blur(2px);
    transition: 
      opacity 1.2s ease-in-out,
      clip-path 1.2s ease-in-out,
      transform 1.2s ease-in-out,
      filter 1.2s ease-in-out;
    z-index: 0; */
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    animation: zoomOut 10s ease-in-out forwards;
}

/* @keyframes zoomIn {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
} */
@keyframes zoomOut {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}

.slide.active {
    opacity: 1;
    /* pointer-events: auto; */
    opacity: 1;
    clip-path: circle(150% at 50% 50%);
    transform: scale(1) rotate(0deg);
    filter: brightness(1) blur(0);
    z-index: 3;
}

.controls {
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100%;
    bottom: -17px;
    font-size: 35px;
    /* left: 50%; */
    /* transform: translateX(-50%); */
    color: #ffffff00;
    display: flex;
    align-items: center;
    gap: 20px;
    /* background: rgba(0, 0, 0, 0.4); */
    padding: 8px 16px;
    border-radius: 30px;
    z-index: 3;
}

button {
    padding: 7px 0px 15px 0px;
    font-size: 16px;
    background: #00000000;
    color: #ffffff00;
    border: none;
    cursor: pointer;
    border-radius: 6px;
}

button:hover {
    background: #44444400;
}

/* --- Animation Variants --- */

/* Pattern 1: Basic fade */
.slider-container.fade .slide {
    transition: opacity 1s ease;
}

/* Pattern 2: Zoom fade */
.slider-container.zoom-fade .slide {
    transition: opacity 1s ease, transform 1s ease;
    transform: scale(1.05);
}

.slider-container.zoom-fade .slide.active {
    transform: scale(1);
}

/* Pattern 3: Slide fade */
.slider-container.slide-fade .slide {
    transition: opacity 1s ease, transform 1s ease;
    transform: translateX(20px);
}

.slider-container.slide-fade .slide.active {
    transform: translateX(0);
}

/* スライダー文字 */
.caption {
    width: 100%;
    height: auto;
    position: absolute;
    top: 22%;
    bottom: 20%;
    left: -4%;
    background-color: rgba(0, 0, 0, 0.018);
    /* 半透明の背景 */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;


    /* text */
    /* display: inline-flex;
    background-position: 0;
    background-size: cover;
    -webkit-background-clip: text;
    color: transparent;
    filter: brightness(1.04);
    opacity: .6; */

}

.caption div {
    /* color: #fff; */
    text-decoration: none;
    /* font-size: 15.5em; */
    /* font-size: 24vw; */
    font-size: 200px;

    /* text */
    font-family: serif;
    display: inline-flex;
    /* background-position: 0; */

    background-size: cover;
    background-color: #000;
    /* background-image: url(img/E023_3.jpg); */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: brightness(1.0);
    /* overflow-wrap: break-word; */
    word-break: break-all;
    /* letter-spacing: 50px; */
    line-height: 235px;
    opacity: .9;
    /* background-position: -0.25em -78px; */
    background-position: 54px 0;
    /* filter: blur(5px); */
}

.caption div::before {
    background-position: -.75em 0;
}

.caption div::after {
    content: none;
}

.strimg1 {
    background-image: url(img/sample1.jpg);
}

.strimg2 {
    background-image: url(img/sample3.jpg);
}

.strimg3 {
    background-image: url(img/sample5.jpg);
}

@media screen and (max-width: 559px) {
    .caption div {
        font-size: 114px;
        line-height: 105px;

    }

}

/* スライダーE */
.info-section {

    width: 100%;
    position: relative;
    margin-top: -100vh;
    color: #ffffff;
    z-index: 5;
}


/* ------------logoセクション-----------  */
.content-logo-wrap {
    width: 100%;
    height: 100lvh;
    position: relative;
    top: 25vh;
    background: #00000000;
    /* JS対応と非対応ブラウザのフォールバック兼用1/2 */
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    /* -------------------------------- */
    z-index: 999;
}

/* JS対応と非対応ブラウザのフォールバック兼用2/2 */
@supports (height: 100lvh) {
    .content-logo-wrap {
        min-height: 100lvh;
        top: 25lvh;
    }
}

.content-logo {
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    box-sizing: border-box;
    /* padding: 0vh 20% 60vh 20%; */
    text-align: center;

}

.content-logo svg {
    width: min(40vw, 40vh);
    height: auto;
    /* padding: 0vh 20% 60vh 20%; */
    filter: opacity(80%);

}

/* iOS対策でコメントアウト start */
/* #g7101 {
    animation: Grad 25s linear infinite;
}

#path7077 {
    animation: Grad 10s linear infinite;
}

#path7079 {
    animation: Grad 5s linear infinite;
}

#path7081 {
    animation: Grad 5s linear infinite;
}

#path7083 {
    animation: Grad 5s linear infinite;
}

#path7085 {
    animation: Grad 5s linear infinite;
}

#path7087 {
    animation: Grad 5s linear infinite;
}

#path7089 {
    animation: Grad 5s linear infinite;
}

#path7091 {
    animation: Grad 5s linear infinite;
}

#path7093 {
    animation: Grad 5s linear infinite;
}

#path7095 {
    animation: Grad 5s linear infinite;
}

#path7097 {
    animation: Grad 5s linear infinite;
}

#path7099 {
    animation: Grad 5s linear infinite;
} */

/* @keyframes Grad {
    0% {
        -webkit-filter: hue-rotate(0deg) opacity(0.7);
        filter: hue-rotate(0deg) opacity(0.7);
    }

    100% {
        -webkit-filter: hue-rotate(360deg) opacity(0.7);
        filter: hue-rotate(360deg) opacity(0.7);
    }
} */
/* iOS対策でコメントアウト end */
/* iOS対策　代替 s*/
/* 初期フィルタ適用（JSでも上書きされる） */
#g7101,
#path7077,
#path7079,
#path7081,
#path7083,
#path7085,
#path7087,
#path7089,
#path7091,
#path7093,
#path7095,
#path7097,
#path7099 {
    will-change: filter;
}

/* iOS対策　代替 e*/

/* ロゴ背景グラデーション end */

/* キャッチコピー */
.content-str {
    --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
    position: relative;
    /* top: 6vh; */
    width: 100%;
    height: auto;
    text-align: center;
    font-family: serif;
    font-size: clamp(2px, min(2vw, 2vh), 15px);
    letter-spacing: 4px;
    line-height: min(4vw, 4vh);
    padding: 4vh 27vw 1vh 27vw;
    opacity: 0;
    translate: 0 -23%;
    filter: blur(12px);


}

.content-str.visible {
    /* animation: fadeInstr 1s ease-in; */
    opacity: 1;
    translate: 0;
    transition-duration: 1.8s;
    transition-timing-function: opacity var(--ease-out-cubic), translate var(--ease-out-quint);
    filter: blur(0);

}

@keyframes fadeInstr {
    0% {
        transform: translate(0, -200px);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0px);
        opacity: 1;
    }
}

/* @media (min-width: 600px) and (max-width: 856px) {

    .content-logo {

        padding: 0vh 30% 60vh 30%;

    }

}

@media (min-width: 857px) and (max-width: 1112px) {

    .content-logo {

        padding: 0vh 36% 60vh 36%;

    }

}

@media (min-width: 1113px) {

    .content-logo {

        padding: 0vh 40% 60vh 40%;

        .content-str {
            line-height: 2.5vw;
        }
    }

} */

/*  --------------------- scrolldown animation -------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap');

.scroll_down {
    position: relative;
    width: 100%;
    /* height: 17%; */
    height: 8%;
    /*10%->8%に調整*/
    top: 0;
    padding: 0vh 42vw 0 42vw;
    /* bottom: 61%; */
    /* right: 50%; */
    /* animation: arrowmove 1s ease-in-out infinite; */
}

.scroll_down a {
    position: absolute;
    /* left: -24px; */
    bottom: 30px;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: .2em;
    text-transform: uppercase;
    width: 24px;
    height: 24px;
    text-decoration: none;
}

.text {
    display: block;
    margin-top: 70px;
    margin-left: -25px;
    font-size: 12px;
    color: #ffffff;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 2px;
}

.arrow {
    position: absolute;
    left: -14px;
    width: 28px;
    height: 5px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
}

.arrow:first-child {
    animation: move 3s ease-out 1s infinite;
}

.arrow:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
}

.arrow:before,
.arrow:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: #fdfdfd;
}

.arrow:before {
    left: 0;
    transform: skew(0deg, 30deg);
}

.arrow:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
}

@keyframes move {
    25% {
        opacity: 1;
    }

    33% {
        opacity: 1;
        transform: translateY(30px);
    }

    67% {
        opacity: 1;
        transform: translateY(40px);
    }

    100% {
        opacity: 0;
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}

@media screen and (max-width: 540px) {

    .arrow {
        left: -5px;
        width: 14px;
        height: 5px;
    }

}

/* ------------logoセクション/-----------  */

.content-about-wrap {
    position: relative;
    display: block;
    /* top: 88vh; */
    width: 100%;
    /* height: auto; */
    height: 100%;
    min-height: 800px;
    /* padding: 0 20% 0 20%; */
    overflow: hidden;

}

.content-about {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 1300px;
    /* padding: 0 20% 0 20%; */
    /* left: 10%; */
    /* background: #ffebeb; */
    /* background: linear-gradient(86deg, #fff7f7a8 19%, #00000000); */
    /* background: #ffebeb; */
    background: #2c262680;
    font-family: serif;
    color: #ffffff;
    text-align: center;

    /* translate: 0 50%; */
    transform: scale(0);
    transition: transform 2s;
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    overflow-x: hidden;
}



.content-about.visible {
    transform: scale(1);
    /* animation: winUp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both */
}

/* about items aboutを区画しているスタイル */
.about-items1 {

    position: relative;
    /* width: 726px; */
    width: 626px;
    height: 200px;
    /*わざとこの値にしている　理由は文字と背景のロゴが重なるようにする為。ここの値を大きくすると重ならなくなる*/
    float: left;
}

.about-items2 {

    position: relative;
    width: 600px;
    height: 400px;
    float: left;
    padding-top: 50px;

}


/* overlapFontエフェクト */

.backp {
    /* パターン1 */
    /* color: #221f1f; */
    /* パターン2 */
    color: #000000;
    position: relative;
    z-index: 2;
}

.frontp {
    bottom: 0;
    /* パターン1 */
    /* color: #a6a6a6; */
    /* パターン2 */
    /* color: #2e2727; */
    /* パターン3 */
    /* color:#383838; */
    /* color: #9a9a9a; */
    color: #b7b7b7;
    height: 100%;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 3;
}

/* about　タイトル　ラップ */
.about-title {
    position: relative;
    height: max-content;
    /* margin: 12px auto 0; */
    /* margin: 0 auto 40px; */
    margin: 0 6vw 40px;
    width: max-content;
    top: 120;
    z-index: 4;

    opacity: 0;
    transform: translateY(50px);

}

.about-title.show {
    animation: slideIn 0.7s ease forwards;
}

/* about 本文　ラップ */
.about-text-wrap {
    width: 60vw;
    position: relative;
    height: auto;
    /* margin: 0 auto; */
    z-index: 4;

    opacity: 0;
    transform: translateY(50px);

}

.about-text-wrap.show {
    animation: slideIn 0.9s ease forwards;
}

.about-text {
    position: relative;
    height: max-content;
    /* margin: 12px auto 0; */
    margin: 2vh 6vw 0;
    width: max-content;
    /* padding: 20px; */
    top: 150;
    z-index: 2;

}


/* about タイトル用 */
.about-title .frontp {
    font-size: clamp(32px, 7vw, 49px);
    font-weight: 500;
    line-height: 100%;
}

.about-title .backp {
    font-size: clamp(32px, 7vw, 49px);
    font-weight: 500;
    line-height: 100%;
}

.about-title .frontp span {
    display: block;
    height: 100%;
    overflow: hidden;
    white-space: nowrap;
    width: 0%;
}

/* about 本文用 */
.about-text .frontp {
    font-size: clamp(10px, 3vw, 18px);
    font-weight: 300;
    line-height: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
}

.about-text .backp {
    font-size: clamp(10px, 3vw, 18px);
    font-weight: 300;
    line-height: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
}

.about-text .frontp span {
    display: block;
    height: 100%;
    overflow: hidden;
    white-space: nowrap;
    width: 0%;
}

/*--------------- about画像１------------------ */


.aboutlogo-img {
    width: 100%;
    filter: opacity(0.07) blur(20px);

}

.aboutlogo-img.visible {
    animation: logoFade 3s cubic-bezier(0.33, 1, 0.68, 1) both;
}

@keyframes logoFade {
    0% {
        filter: opacity(0.07) blur(8px);
    }

    70% {
        filter: opacity(0.07) blur(6px);
    }

    80% {
        filter: opacity(0.07) blur(4px);
    }

    90% {
        filter: opacity(0.07) blur(2px);
    }

    100% {
        filter: opacity(0.07) drop-shadow(64px 14px 112px black) blur(0);
    }
}

/* --------------- about画像１------------------/ */
/*------------- パララックス用 ------------------------ */
.parallax {
    /* セクション */
    /* position: relative; */
    box-sizing: border-box;
    width: 100%;
    height: 46vh;
    /*.fix-areaの高さを全長として　スライダーにぴったりかぶるように調整している*/
    /* background: #000000; */
    /* height: auto; */
    overflow: hidden;
    opacity: 0;

}

.parallaxfil {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    background-image: url(../img/noise3.webp);
    /* background-color: #0907075e; */
    background: radial-gradient(in hsl, #00000000, #000000f5);
    background-repeat: repeat;
    opacity: 1;
    z-index: 4;
}

.parallax-wrap {
    position: relative;
    width: 100%;
    /* height: 837px; */
    height: 171%;
    background: #000000;
    z-index: 5;
}

.parallax-content {
    /* background-image: url(../img/23.webp); */
    background-image: url(../img/70.webp);
    /* filter: brightness(1.3); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 87%;
    /* 高さを多めにして動きを出す */
    /* will-change: transform; */
    /*cSS最適化-GPU最適化*/
    transition: none;
    /* transformにtransition不要 */
    position: relative;
    /* オーバースクロール領域を事前に持たせる（遅延対策） */
    top: -10vh;
    /*上に10％出す*/
    bottom: -10vh;
    /*下にも10％出す*/
    left: 0;
    right: 0;
    /*写真の位置調整*/
    /* left: 0; */
    z-index: 3;
}

/*------------- パララックス用 ------------------------ */
/*--------------- parallax-system間 パーティション---------------- */
.partition {
    position: relative;
    width: 100%;
    height: 155px;
    background: #ffffff;
    z-index: 4;
}

/* -------- 無限ループスクロール 文字---------- */
.infinite-loop {
    width: 100%;
    height: 155px;
    /* padding: 30px; */
    text-align: center;
    position: relative;
    background: #ffffff00;
    /* color: #000000; */
    color: #e0e0e0;
    /* text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6); */
    transform: translateY(100%);
    /* font-size: 12vh; */
    /* font-family: serif; */
    /* vertical-align: middle; */
    animation-play-state: paused;
    opacity: 0;

}

.infinite-loop.running {

    /* animation: strColor 1s ease-in forwards; */
    animation: strdelay 1.5s ease-in;
    transform: translateY(0px);
    opacity: 1;
    /* アニメーション制御 */
    animation-play-state: running;
}

@keyframes strdelay {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    /* 50% {
    transform: translateY(10px) rotateX(22.5deg);
        opacity: 0.3;
    } */

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes strColor {
    from {
        color: #454545;
        /* opacity: 0; */
    }

    to {
        color: #FFFFFF;
        /* opacity: 1; */
    }
}

.marquee1-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background: #ffffff00;
    height: 155px;
    line-height: 170px;
    /* padding: 20px 0; */
    /* transform: translateY(-80px); */
    z-index: 2;

}

.marquee1-content {
    display: inline-block;
    white-space: nowrap;
    animation: scroll linear infinite;
    height: 100%;
    z-index: 4;
}

.marquee1-content span {
    display: inline-block;
    /* font-size: 14rem; */
    font-size: clamp(90px, 15vw, 200px);
    /* 大きいフォントでもOK */
    font-family: 'jost';
    letter-spacing: 10px;
    font-weight: 400;
    margin: 0 2rem;
}

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

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

@media (max-width: 699px) {
    .partition {
        height: 90px;
    }

    .infinite-loop {
        height: 90px;
    }

    .marquee1-content span {
        margin: 0 1rem;
    }

    .marquee1-wrapper {
        height: 90px;
        line-height: 90px;
        /* height: 20vw; */
    }
}

@media (min-width: 700px) and (max-width: 950px) {
    .partition {
        height: 120px;
    }

    .infinite-loop {
        height: 140px;
    }

    .marquee1-content span {
        margin: 0 1.5rem;
    }

    .marquee1-wrapper {
        height: 120px;
        line-height: 120px;
        /* height: 22vw; */
    }

}

/* --------ループ文字/----------------- */
/* ----------------- system menu ------------------ */

.system-section {
    position: relative;
    width: 100%;
    /* z-index: 4; */
    z-index: 999;
    /* パーティションと料金システムの間に謎のボーダーが出現するので下記の記述で対策 */
    top: -5px;
    /* height: 50vh; /*.fix-areaの高さを全長として　スライダーにぴったりかぶるように調整している*/
    height: auto;
    /* 変更 */

}

.system-menu-wrap {
    position: relative;
    /* top: -50vh; */
    width: 100%;
    height: auto;
    /*height: 1000vh; /*.fix-areaとここの２点で張り付き高さを調整している*/
    z-index: 4;
    /* 変更 */
    /* top: -27vh; /*パララックス用に設定*/
    /*height: 99vh; /*.fix-areaとここの２点で張り付き高さを調整している 解除中*/
    overflow: hidden;
}

.system-content {
    width: 100%;
    height: auto;
    background: #ffffff;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    /*本体背景*/
    padding: 22px 22px;
}

/* 画面サイズごとに料金システムの表示を可変 */
@media (min-width: 650px) and (max-width: 999px) {

    .system-content {

        padding: 5% 5%;

    }

}

@media (min-width: 1000px) {

    .system-content {

        padding: 5% 8%;

    }

}

/* システム枠 */
.system-frame {
    /* border: 1px solid #d6d3d3; */
    background: #ffffff;
    padding: 22px 22px;
    border-radius: 8px;
    color: #b7b3aa;

    /* 影 */
    /* background-color: rgb(255, 255, 255);
    transition: box-shadow 0.5s;
    box-shadow: 10px 10px 30px rgba(18, 47, 61, 0.5), -10px -10px 30px rgba(248, 253, 255, 0.9), inset 10px 10px 30px transparent, inset -10px -10px 30px transparent;*/

    background-color: rgb(255, 255, 255);
    /* transition: box-shadow 0.5s; */
    /* box-shadow: 10px 10px 30px rgba(18, 47, 61, 0.5), -10px -10px 30px rgba(248, 253, 255, 0.9), inset 10px 10px 30px transparent, inset -10px -10px 30px transparent; */
    /* transform: rotate(-3deg) translateY(25px); */
    opacity: 0;


    background-image: url(../img/g0000.jpg);
    background-size: 58%;

}

.system-frame.visible {
    animation: systemUp 2s ease-in;
    box-shadow: 10px 10px 30px rgba(18, 47, 61, 0.5), -10px -10px 30px rgba(248, 253, 255, 0.9), inset 10px 10px 30px transparent, inset -10px -10px 30px transparent;
    transform: rotate(-3deg) translateY(25px);
    opacity: 1;
}

@keyframes systemUp {
    0% {
        box-shadow: 0px 0px 0px rgba(255, 255, 255, 0.5), -0px -0px 0px rgba(248, 253, 255, 0.9), inset 10px 10px 30px transparent, inset -0px -0px 0px transparent;
        transform: rotate(0deg) translateY(0px);
        opacity: 1;
    }

    100% {
        transition: box-shadow 0.5s;
        box-shadow: 10px 10px 30px rgba(18, 47, 61, 0.5), -10px -10px 30px rgba(248, 253, 255, 0.9), inset 10px 10px 30px transparent, inset -10px -10px 30px transparent;
        transform: rotate(-3deg) translateY(25px);
        opacity: 1;
    }
}


/* .system-menu {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 222;
 
    transform: translate(12%, 14%);
    top: 0%;
    left: 4%;
}

.system-menu-title {
    width: 100%;
    height: auto;
    font-size: clamp(10px, 7vw, 40px);
    color: #ffffff;


} */
/* ---- system タイトル ---- */
.large {
    font-size: clamp(32px, 7vw, 49px);
    /* font-family: Georgia, serif; */
    /* font-family: serif; */
    font-family: "Sree Krushnadevaraya", serif;
    font-weight: 400;
    letter-spacing: 4px;
    text-align: center;
    padding: 20px 0 20px 0;
}


h2 span {
    display: inline-block;
    opacity: 0;
    transform: translateX(30px)
}

h2.is-visible span {
    opacity: 1;
    transform: translateX(0);
    transition: opacity .7s cubic-bezier(.5, 1, .89, 1), transform .7s cubic-bezier(.5, 1, .89, 1)
}

h2.is-visible span:nth-child(1) {
    transition-delay: .1s;
}

h2.is-visible span:nth-child(2) {
    transition-delay: .2s
}

h2.is-visible span:nth-child(3) {
    transition-delay: .3s
}

h2.is-visible span:nth-child(4) {
    transition-delay: .4s
}

h2.is-visible span:nth-child(5) {
    transition-delay: .5s
}

h2.is-visible span:nth-child(6) {
    transition-delay: .6s
}

/* --- system 詳細 --- */

.system-detail {
    width: 100%;
    height: auto;
    /* transform: translateX(50%); */
    /* border: 7px solid #fff3e4; */
    background-color: #ffffff;
    /* background-image: url(../img/g0004.png), linear-gradient(0deg, #ffffff, #ffffff00); */
    background-size: 78%;
    /* border: 20px solid #ffffff00; */
    border-radius: 5px;
    padding: 12vw;
    opacity: 0;
}

.system-detail.visible {
    animation: sysDetailIn 4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    background-color: #000000;
    background-image: url(../img/g0004.png);
    background-size: 64%;
    /* background-position: 100% 0%; */

}

@keyframes sysDetailIn {
    0% {
        background-color: #ffffff;
        /* transform: translateY(20%) rotate(0); */
        box-shadow: 10px 10px 30px rgba(18, 47, 61, 0.5), -10px -10px 30px rgba(246, 246, 246, 0.9), inset 10px 10px 30px transparent, inset -10px -10px 30px transparent;
        transform: rotate(0);
        opacity: 0;
    }

    50% {
        /* background-position: 100% 0%; */
        background-color: #ffffff;
        transform: rotate(6deg);
        box-shadow: 10px 10px 30px rgba(18, 47, 61, 0.5), -10px -10px 30px rgba(248, 253, 255, 0.9), inset 10px 10px 30px transparent, inset -10px -10px 30px transparent;
        opacity: 1;
    }

    100% {
        /* background-position: 0 0; */
        /* background-color: #000000; */
        /* transform: translateY(0px) rotate(3deg); */
        transform: rotate(6deg);
        box-shadow: 10px 10px 30px rgba(48, 55, 58, 0.56), -10px -10px 30px rgba(13, 13, 13, 0.47), inset 10px 10px 30px #aca5a540, inset -10px -10px 30px #a8a8a852;
        opacity: 1;
    }
}

.sys-detail-name {
    width: 100%;
    height: auto;
    font-size: clamp(8px, 2vw, 17px);
    font-family: serif;
    font-weight: 400;
    padding: 2vw 30px 2vw 30px;
}
.sys-detail-name a {
    color: #8103aa;
    font-weight: bold;
}

.sys-detail-price {
    width: 100%;
    height: auto;
    font-size: clamp(8px, 2vw, 17px);
    font-family: serif;
    font-weight: 400;
    padding: 2vw 50px 2vw 60px;
    /* border-bottom: solid 1px #ffffff53; */
}


/* --------------system/--------------------------------- */
/* ---------------------ギャラリー用--------------------------------------- */
.gallery {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background: #000000;
    width: 100%;
    height: auto;
    color: #ffffff;
    padding: 88px -1px;
    z-index: 4;
}

.gallery-content {
    width: 100%;
    height: auto;
    background: #000000;
}

/* スライダーコンテナ */
.g-slider {
    position: relative;
    width: 100%;
    /* height: 100vh; */
    overflow: hidden;
}

/* スライダートラック：横並び */
.g-slider-track {
    display: flex;
    flex-wrap: nowrap;
    /* 初期位置はJSで制御 */
    transform: translateX(0);
}

/* 各スライド(80%幅⁺右側余白で隙間を作成) */
.g-slide {
    flex: 0 0 auto;
    /* width: 80%; */
    width: 35%;
    margin-right: 2px;
    /* 次のスライドとの境目がはっきり*/
    position: relative;
}

/* スライド画像 */
.g-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(1);
}

/* キャプション(画像上に重ねる) */
.g-slide .e-caption {
    position: absolute;
    bottom: 10%;
    left: 5%;
    color: #fff;
    font-size: 2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* マウスホバー時：画像をズームアップ */
.g-slider:hover .g-slide img {
    transform: scale(1.05);
    filter: blur(2px);
    /* filter: brightness(0.5); */
    /* filter: grayscale(1); */
    filter: hue-rotate(250deg);

}

/* スマホ　タッチ用 */
@media (hover: none) {

    /* hoverが使えないタッチ端末を想定した装飾 */
    g-slider:active .g-slide img {
        transform: scale(1.05);
        filter: blur(2px);
        filter: grayscale(1);
    }
}

/*-----------------------------------------------------------------------------*/
/* --------------------NeoBlueInfo 店舗情報--------------------------- */
.neo-blue-info {
    position: relative;
    width: 100%;
    height: auto;
    padding: 44px 44px;
    background: #000000;
    /* background-image: url(../img/64.jpg); */
    background-image: url(../img/bg3.jpg);

    z-index: 4;
}

.nb-info-wrap {
    width: 100%;
    height: auto;
}

/* 店舗情報 タイトル */
.nb-info-title {
    width: 100%;
    height: calc(100% - 80%);
    font-size: clamp(32px, 7vw, 49px);
    /* font-family: Georgia, serif; */
    font-family: serif;
    font-weight: 500;
    letter-spacing: 4px;
    padding: 20px 0 20px 0;
    color: #ffffff;
}

/* 店舗情報　詳細 */
.nb-info-detail {
    width: 100%;
    height: auto;
    font-size: clamp(10px, 3vw, 17px);
    font-family: "Sree Krushnadevaraya", serif;
    font-weight: 400;
    padding: 20px 0 5px 0;
    color: #ffffff;
}

.nb-info-name {
    width: 100%;
    height: auto;
    font-size: clamp(12px, 3.2vw, 19px);
    font-family: serif;
    font-weight: 500;
    padding: 20px 0 5px 0;
    color: #767676;

}

.nb-info-disp {
    width: 100%;
    height: auto;
    font-size: clamp(10px, 3vw, 17px);
    font-family: serif;
    font-weight: 400;
    padding: 20px 0 30px 0;
    color: #b8a8a8;
    border-bottom: solid 1px #ffffff1f;
}

.line-entry {
    text-align: left;
    padding: 20px 0 20px 0;
}

/*----- マップ用 -----*/
/* 比率一覧
16:9
padding-top: 56.25%
4:3
padding-top: 75%
3:2
padding-top: 66.66%
1:1
padding-top: 100%
21:9
padding-top: 42.85%
*/
.map {
    position: relative;
    width: 95%;
    /* max-width: 500px; */
    margin: 3% 30% 10% 0%;
    padding-top: 50%;
    /* アスペクト比 */
    height: 0;
    /* float: right; */
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 3%;

    /* モノクロ */
    -webkit-filter: grayscale(100%) brightness(0.7);
    -moz-filter: grayscale(100%) brightness(0.7);
    -ms-filter: grayscale(100%) brightness(0.7);
    -o-filter: grayscale(100%) brightness(0.7);
    filter: grayscale(100%) brightness(0.7);
}

/* ----- マップ用 ------ */

/* --------------------NeoBlueInfo 店舗情報/--------------------------- */
/*---------------リクルート--------------------------------------------------------------*/
.recruit {
    position: relative;
    width: 100%;
    /* height: 100; */
    /* height: auto; */

    /* overflowが記述されているとstickyが効かない */
    /* overflow: hidden; */
    z-index: 4;
}



.recruit-content {
    width: 100%;
    /* height: 100vh; */
    height: auto;
    padding: 0 44px 1px 44px;
    background-color: #dd5dafa8;
    transform: scale(0.9);
}

.recruit-title {
    position: relative;
    width: 100%;
    height: auto;
    font-size: clamp(32px, 7vw, 49px);
    /* font-family: Georgia, serif; */
    font-family: "Sree Krushnadevaraya", serif;
    font-weight: 400;
    color: #ffffff;
    padding: 20px 0 20px 0;
    letter-spacing: 4px;
    z-index: 5;
}

.recruit-subtitle {
    position: relative;
    width: 100%;
    height: auto;
    font-size: clamp(10px, 3vw, 17px);
    font-family: serif;
    color: #ffffff;
    padding: 20px 0 10px 0;
    z-index: 5;
}

.recruit-detail {
    width: 100%;
    height: auto;
}

.recruit-name {
    position: relative;
    width: 100%;
    height: auto;
    font-weight: 500;
    font-size: clamp(12px, 3.2vw, 19px);
    font-family: serif;
    color: #b55791;
    padding: 20px 0 5px 0;
    mix-blend-mode: color-dodge;
    z-index: 5;

}

.recruit-disp {
    position: relative;
    width: 100%;
    height: auto;
    font-size: clamp(10px, 3vw, 17px);
    color: #ffffff;
    padding: 20px 0 30px 0;
    font-family: serif;
    /* mix-blend-mode: color-dodge; */
    border-bottom: solid 1px #ffffff53;
    z-index: 5;
}

.recruit-entry {
    position: relative;
    width: 100%;
    height: auto;
    margin: 40px 0px;
}

.recruit-entry-btn {
    width: 170px;
    height: 60px;
    color: #ffffff;
    font-weight: 600;
    font-size: 20px;
    font-family: serif;
    text-align: center;
    padding: 13px;
    letter-spacing: 1px;
    background: #55ce3d;
    border: 3px dotted #ffffff;
    border-radius: 5%;
}

/*----------------リクルート /-------------------------------------------------------------*/

footer {
    /* padding: 20px;
    width: 100%;
    height: 200px;
    text-align: center;
    background: #ec77d4;
    color: #fff;
    font-family: 'jost';
    letter-spacing: 10px; */
    background: #ec77d4;
    height: 20lvh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    /* z-index: 0; */
    /* bottom: 0; */
}

.footer_str {
    padding: 50px 20px 50px 20px;
    font-size: clamp(10px, 4vw, 23px);
    font-family: fantasy;
    letter-spacing: 3px;
    color: #c171c8;
}

/* ------------------TOP画面パーティクルアニメーション用------------------------ */
.particle-container {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    z-index: 888;
    filter: opacity(0.3);
}

.background {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: radial-gradient(white 0%, white 30%, transparent 80%, transparent);
    -webkit-mask-image: radial-gradient(white 0%, white 30%, transparent 80%, transparent);
}

.circle-container {
    position: absolute;
    top: 0;
    left: 0;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    transform: translateY(-10vh);
    animation-play-state: paused;
    /*アニメーション動作初期設定*/
}

.circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    mix-blend-mode: screen;
    background-image: radial-gradient(hsl(180, 100%, 80%), hsl(180, 100%, 80%) 10%, hsla(180, 100%, 80%, 0) 56%);
    animation: fade-frames 200ms infinite, scale-frames 2s infinite;
    animation-play-state: paused;
    /*アニメーション動作初期設定*/
}

@keyframes fade-frames {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes scale-frames {

    0%,
    100% {
        transform: scale3d(0.4, 0.4, 1);
    }

    50% {
        transform: scale3d(2.2, 2.2, 1);
    }
}

.message {
    position: absolute;
    right: 20px;
    bottom: 10px;
    color: white;
    line-height: 27px;
    font-size: 18px;
    text-align: right;
    pointer-events: none;
    opacity: 0;
    animation: message-frames 1.5s ease 5s forwards;
}

@keyframes message-frames {
    to {
        opacity: 1;
    }
}

/* -----------TOP画面パーティクルアニメーション用 /---------------------------------------------------- */

/* ----------リクルート背景　ブロッブエフェクト------------------------- */
.bgImage {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("../img/50-2.jpg");
    background-size: cover;
    background-position: center;
    /*topからcenterに変更　画面サイズ変更と共にずれるため*/


    filter: grayscale(70%);

    z-index: 0;
    opacity: 1;
}

.blobCont {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 1;

}

.blob {
    transform-origin: center;
    transform-box: fill-box;
    /*safariではtransform-originを効かせるためにこの記述が必要*/
    animation-play-state: running;
}

.paused {
    animation-play-state: paused !important;
}

/* -----------リクルート背景　ブロッブエフェクト /-------------------------------- */