@charset "UTF-8";

/* =================== 共通部分 =================== */
html {
    overscroll-behavior: none;
}

/*スタジオ紹介ページ用body設定*/
body {
    font-family: "Noto Sans JP", serif;
    color: #D8D6F2;
    box-sizing: border-box;
    padding-top: 68px;
    position: relative;
    min-height: 100vh;
    padding-bottom: 155px;
}

/*スタジオ紹介ページ用body設定*/
.body_about {
    font-family: "Noto Sans JP", serif;
    color: #D8D6F2;
    box-sizing: border-box;
    position: relative;
    min-height: calc(100dvh - 68px);
    padding-bottom: 0;
    padding-top: 0;
}

/*スタジオ紹介ページ　スワイプでのリロード防止用*/
.non_reload {
    overscroll-behavior-y: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:root {
    --slide-width: clamp(0px, 52vw, 1000px);
    --circle-color1: #8c8c8f;
    --circle-color2: #3a3aa5;
    --circle-color3: #f14388;
    --circle-color4: #e4ba10;
}

/*ローディング画面*/
#loading {
    background: linear-gradient(148deg, rgb(174 175 175) 0%, rgb(255 255 255) 100%);
    position: fixed;
    width: 100vw;
    height: 100dvh;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*ローディング画面　ロゴアニメーション*/
@keyframes svganimation {
    0% {
        stroke-dasharray: 1000px;
        stroke-dashoffset: 1000px;
        fill-opacity: 0;
    }

    70% {
        stroke-dashoffset: 0px;
        fill-opacity: 0;
    }

    100% {
        fill-opacity: 1;
    }
}

/*ロゴSVG設定*/
#svg1 {
    width: clamp(0px, 28.125vw, 540px);
    stroke: #3d3d3d;
    stroke-width: 2px;
    fill: #3d3d3d;
    animation: svganimation 2s ease forwards;
}

/*TOPへ戻るボタン*/
.top_return {
    border: 3px solid rgb(218, 220, 223);
    background: #3464a7;
    width: 80px;
    height: 80px;
    position: fixed;
    bottom: 7.5%;
    right: 3%;
    z-index: 4;
    cursor: pointer;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    transition: filter 0.5s ease;
}

.top_return::after {
    content: "";
    width: 40px;
    height: 40px;
    transform-origin: bottom left;
    transform: rotate(45deg);
    border-top: 6px solid white;
    border-left: 6px solid white;
    position: absolute;
    left: 12%;
    top: 12%;
}

/*共通背景*/
.background {
    background: #d9dae2;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -9999;
    overflow: hidden;
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: clamp(0px, 1.04vw, 20px);
    height: clamp(0px, 1.04vw, 20px);
    background: var(--circle-color1);
    opacity: 0.4;
    animation: animate_bg 25s linear infinite;
    bottom: 0;
    border-radius: 20%;
    transform: translateY(100%);
}

.circles li:nth-child(1) {
    left: 25%;
    width: clamp(0px, 4.16vw, 80px);
    height: clamp(0px, 4.16vw, 80px);
    animation-delay: 0s;
    background: none;
    border: clamp(0px, 0.3125vw, 6px) solid var(--circle-color2);
}

.circles li:nth-child(2) {
    left: 10%;
    width: clamp(0px, 1.04vw, 20px);
    height: clamp(0px, 1.04vw, 20px);
    animation-delay: 2s;
    animation-duration: 26s;
    border-radius: 50%;
}

.circles li:nth-child(3) {
    left: 70%;
    width: clamp(0px, 2.08vw, 40px);
    height: clamp(0px, 2.08vw, 40px);
    animation-delay: 4s;
    background: none;
    border: clamp(0px, 0.2vw, 4px) solid var(--circle-color3);
}

.circles li:nth-child(4) {
    left: 40%;
    width: clamp(0px, 3.125vw, 60px);
    height: clamp(0px, 3.125vw, 60px);
    animation-delay: 0s;
    animation-duration: 18s;
    border-radius: 50%;
}

.circles li:nth-child(5) {
    left: 65%;
    width: clamp(0px, 2.08vw, 40px);
    height: clamp(0px, 2.08vw, 40px);
    animation-delay: 0s;
    background: none;
    border: clamp(0px, 0.2vw, 4px) solid var(--circle-color4);
}

.circles li:nth-child(6) {
    left: 75%;
    width: clamp(0px, 5.72vw, 110px);
    height: clamp(0px, 5.72vw, 110px);
    animation-delay: 3s;
    bottom: -20%;
}

.circles li:nth-child(7) {
    left: 35%;
    width: clamp(0px, 7.29vw, 140px);
    height: clamp(0px, 7.29vw, 140px);
    animation-delay: 7s;
    background: none;
    border: clamp(0px, 0.52vw, 10px) solid var(--circle-color2);
    border-radius: 50%;
    bottom: -20%;
}

.circles li:nth-child(8) {
    left: 50%;
    width: clamp(0px, 1.3vw, 25px);
    height: clamp(0px, 1.3vw, 25px);
    animation-delay: 15s;
    animation-duration: 45s;
    border-radius: 50%
}

.circles li:nth-child(9) {
    left: 20%;
    width: clamp(0px, 1.56vw, 30px);
    height: clamp(0px, 1.56vw, 30px);
    animation-delay: 2s;
    animation-duration: 35s;
    background: none;
    border: clamp(0px, 0.2vw, 4px) solid var(--circle-color3);
}

.circles li:nth-child(10) {
    left: 85%;
    width: clamp(0px, 7.81vw, 150px);
    height: clamp(0px, 7.81vw, 150px);
    animation-delay: 0s;
    animation-duration: 20s;
}

@keyframes animate_bg {
    0% {
        transform: translateY(100%) rotate(0deg);
    }

    100% {
        transform: translateY(calc(-110vh - 100%)) rotate(720deg);
        opacity: 0;
    }
}

/*wrapper設定*/
.wrapper_home {
    max-width: 1920px;
    position: relative;
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
    padding-bottom: clamp(0px, 1.04vw, 20px);
}

.wrapper_home_gamelist {
    max-width: 1920px;
    position: relative;
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
    padding-bottom: clamp(0px, 5.2vw, 100px);
}

.wrapper_news {
    margin-right: auto;
    margin-left: auto;
    max-width: 1300px;
    padding-right: 40px;
    padding-left: 40px;
}

.wrapper_about {
    margin-right: auto;
    margin-left: auto;
    max-width: 1300px;
    padding-right: 30px;
    padding-left: 30px;
}

.wrapper_about_value {
    margin-right: auto;
    margin-left: auto;
    max-width: 1920px;
    position: relative;
}

.wrapper_reconnect {
    margin-right: auto;
    margin-left: auto;
    max-width: 1920px;
    position: relative;
    overflow: hidden;
}

.wrapper_reconnect_info {
    margin-right: auto;
    margin-left: auto;
    max-width: 1920px;
    position: relative;
}

.wrapper_contact {
    margin-right: auto;
    margin-left: auto;
    max-width: 1920px;
    position: relative;
    overflow: hidden;
}

/*ヘッダー用wrapper*/
.wrapper_header {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 1920px;
    height: 100%;
    line-height: 68px;
}

/*ヘッダー&ナビゲーションメニュー*/
header {
    background: #232323;
    height: 68px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 5;
    transition: all 0.3s ease;
}

.header_removed {
    transform: translateY(-100%);
}

.header_about {
    position: relative;
}

.navigation {
    display: flex;
}

.main-nav {
    display: flex;
    list-style: none;
    font-size: 18px;
    color: #dadada;
    font-weight: bold;
}

.main-nav>li {
    margin-right: 40px;
    height: 68px;
    position: relative;
    transition: color 0.3s;
    text-shadow: none;
}

.main-nav_home::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 3px;
    background: #c9c9c9;
    bottom: 0px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
}

.main-nav_news::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 3px;
    background: #c9c9c9;
    bottom: 0px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
}

.main-nav_about::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 3px;
    background: #c9c9c9;
    bottom: 0px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
}

.main-nav_game::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 3px;
    background: #c9c9c9;
    bottom: 0px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
}

.main-nav_contact::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 3px;
    background: #c9c9c9;
    bottom: 0px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
}

.main-nav a {
    text-decoration: none;
    color: inherit;
}

.main-nav>li>ul {
    display: none;
    font-size: 14px;
    list-style: none;
    height: 40px;
    width: 140px;
    background-color: #000000e1;
    position: absolute;
    top: 68px;
    text-align: center;
}

.main-nav>li>ul>li {
    color: #f5f5f5;
    line-height: 40px;
}

.main-nav li:nth-child(4) ul {
    position: absolute;
    top: 100%;
    transition: all 0.3 ease;
}

.main-nav li:nth-child(4) {
    margin-right: 0;
    padding-right: 40px;
}

.header-logo {
    display: block;
    margin-top: 12px;
    margin-left: 8px;
}

.header-logo img {
    display: block;
    width: 214px;
}

/*スマホ・タブレット表示用のハンバーガーメニュー*/
.toggle_menu {
    cursor: pointer;
    height: 30px;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    z-index: 7;
    display: none;
    align-items: center;
}

.hamburger {
    width: 30px;
    height: 3.5px;
    background-color: #dadada;
    position: relative;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin: auto 0 auto 0;
}

.hamburger.active {
    background-color: transparent;
}

.hamburger::before,
.hamburger::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 3.5px;
    background-color: #dadada;
    border-radius: 5px;
    transition: all 0.3s;
}

.hamburger::before {
    top: -12px;
}

.hamburger::after {
    top: 12px;
}

.hamburger.active::before {
    transform: rotate(45deg);
    top: 0;
    background-color: #373737;
}

.hamburger.active::after {
    transform: rotate(-45deg);
    top: 0;
    background-color: #373737;
}

.hamburger_inner {
    position: fixed;
    top: 0;
    left: 100vw;
    width: 100vw;
    height: 100dvh;
    margin: auto;
    background-color: #DCDDEF;
    z-index: 6;
    visibility: hidden;
    transition: all 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.background_hamburger {
    background: #d9dae2;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -9999;
    overflow: hidden;
}

.hamburger_inner_group {
    height: 100%;
    overflow-y: auto;
}

.hamburger_inner_group_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: clamp(0px, 97.65vw, 1000px);
    height: 100%;
}

.hamburger_inner ul {
    text-align: center;
    list-style: none;
    transition: all 0.5s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.copyright_hamburger {
    color: black;
    font-size: clamp(0px, 1.56vw, 16px);
}

.accordion {
    cursor: default;
}

.accordion_content {
    text-align: center;
    line-height: 68px;
    height: 0 !important;
    overflow: hidden;
    opacity: 1;
    transition: all 0.5s ease;
}

.accordion_content.is-open {
    height: clamp(0px, 8.59vw, 88px) !important;
    opacity: 1
}

/*展開時用クラス*/
.hamburger_inner ul.open {
    right: 0vw;
    transition: all 0.5s;
}

.hamburger_inner ul li {
    height: clamp(0px, 8.59vw, 88px);
    width: clamp(0px, 50.08vw, 300px);
    border-bottom: 2px solid #4d5cb280;
}

.hamburger_inner ul li:nth-child(4) {
    border-bottom: none;
}

.hamburger_inner ul li:last-of-type {
    border-bottom: none;
}

.hamburger_inner ul li a {
    text-decoration: none;
    color: black;
    font-size: clamp(0px, 5.34vw, 32px);
    font-weight: bold;
    text-shadow: none;
}

.studiologo_hamburger {
    display: block;
    margin: 0 auto;
    width: clamp(0px, 41.73vw, 250px);
}

.hamburger_images img {
    display: block;
}

.x_icon_hamburger {
    width: clamp(0px, 6.67vw, 40px);
}

.yt_icon_hamburger {
    width: clamp(0px, 8.01vw, 48px);
}

.bluesky_icon_hamburger {
    width: clamp(0px, 7.67vw, 46px);
}

.copyright_hamburger {
    font-size: clamp(0px, 2.67vw, 16px);
}

.accordion {
    position: relative;
}

.accordion::before {
    content: "";
    position: absolute;
    top: 43%;
    right: 24%;
    background: black;
    height: calc(tan(60deg) * clamp(0px, 2.67vw, 16px) / 2);
    width: clamp(0px, 2.67vw, 16px);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    transition: transform 0.3s ease;
}

.accordion.is-open::before {
    transform: rotate(180deg);
}

/*フッター*/
.footer {
    height: 155px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #232323;
    position: absolute;
    bottom: 0;
}

.footer p {
    width: fit-content;
    color: #dadada;
    font-size: 15px;
    font-weight: bold;
    text-shadow: none;
    white-space: nowrap;
    padding-top: 20px;
}

.footer_logo img {
    width: 260px;
    margin-right: 24px;
}

.x_icon {
    width: 36px;
}

.yt_icon {
    width: 44px;
}

.bluesky_icon {
    width: 46px;
}

.footer_images {
    width: fit-content;
    display: flex;
    gap: 12px;
    padding-top: 20px;
    align-items: center;
}

.footer_about {
    position: absolute;
    bottom: 3%;
    color: #414040;
    width: 100vw;
    text-align: center;
    font-size: 16px;
}


/* =================== HOMEページ =================== */
/*スライダー*/
.slider {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto 0 auto;
    overflow: hidden;
    padding-top: clamp(0px, 2.6vw, 50px);
    height: calc(100svh - 68px);
    max-height: calc(1080px - 68px);
    min-height: 570px;
}

.slide-wrapper {
    display: flex;
    height: 80%;
    will-change: transform;
    gap: clamp(0px, 1.04vw, 20px);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    width: 100%;
}

.slide-wrapper.is-ready {
    opacity: 1;
}

.slide {
    height: 100%;
    aspect-ratio: 16/9;
    background-color: #868686;
    border-radius: 25px;
    transform: translateX(0);
    transform-style: preserve-3d;
    transition: none;
    position: relative;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.slide svg {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 25px;
}

.line {
    stroke-dasharray: 0;
    stroke-width: 6px;
    fill: transparent;
    stroke: rgba(219, 219, 219, 0.652);
    animation: svgAnimation 5s linear infinite;
}

@keyframes svgAnimation {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: 1000;
    }
}

.slide-wrapper.is-animating .slide {
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.slide--center {
    transform: perspective(clamp(0px, 41.6vw, 800px)) translateX(0) translateZ(0) rotateY(0);
    z-index: 10;
}

.slide--left {
    transform: perspective(clamp(0px, 41.6vw, 800px)) rotateY(14deg);
    z-index: 5;
    opacity: 1;
}

.slide--right {
    transform: perspective(clamp(0px, 41.6vw, 800px)) rotateY(-14deg);
    z-index: 5;
    opacity: 1;
}

.slide--hidden {
    transform: translateX(0) translateZ(0) scale(1);
    z-index: 1;
}

.slide_contents {
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
    border-radius: 20px;
    position: relative;
}

.slide_contents::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.slide-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: clamp(0px, 1.45vw, 28px);
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
}

.slide_img_link {
    pointer-events: none;
}

.hover-ready .slide--center .slide_contents .slide_img_link {
    pointer-events: auto;
}

.slide_img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    display: block;
}

.slide_img_sp {
    display: none;
    width: 100%;
    display: block;
}

.slide_alt img {
    width: 100%;
    height: 100%;
}

/*スライド切り替えボタン*/
.next {
    position: absolute;
    right: 13px;
    bottom: 56%;
    transform: translateY(50%);
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.next::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    z-index: 1;
    border-top: solid 3px white;
    border-right: solid 3px white;
    -webkit-transform: rotate(45deg) translateY(50%) translateX(50%);
    transform: translateY(54%) translateX(65%) rotate(45deg);
}

.next::after {
    content: "";
    background-color: rgb(56 87 192);
    scale: 1;
    border-radius: 50%;
    border: 1px solid white;
    width: 60px;
    height: 60px;
    position: absolute;
    z-index: auto;
    top: -9.5px;
    transform: translateX(-5%);
    transition: all 0.5s;
}

.prev {
    position: absolute;
    left: 3px;
    bottom: 56%;
    transform: translateY(50%);
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.prev::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    z-index: 1;
    border-top: solid 3px white;
    border-right: solid 3px white;
    -webkit-transform: rotate(-135deg) translateY(-50%);
    transform: rotate(-135deg) translateY(-50%);
    top: 3px;
    right: -3px;
}

.prev::after {
    content: "";
    background-color: rgb(56 87 192);
    scale: 1;
    border-radius: 50%;
    border: 1px solid white;
    width: 60px;
    height: 60px;
    position: absolute;
    z-index: auto;
    top: -9.5px;
    transform: translateX(5%);
    transition: all 0.5s;
}

/*スライドインジケーター*/
.indicator {
    width: 100%;
    display: flex;
    column-gap: 1%;
    justify-content: center;
    align-items: center;
    margin-top: 0px;
}

.indicator li {
    width: 4%;
    height: 4px;
    list-style: none;
    background-color: #d9d9d9;
    cursor: pointer;
    position: relative;
}

.progress {
    position: absolute;
    top: 0;
    height: 100%;
    width: 0%;
    background: #e9912a;
    transition: none;
    pointer-events: auto;
}

/*スライド下小型サムネイル*/
.thumbnails {
    width: 100%;
    height: 20%;
    display: flex;
    column-gap: 1%;
    justify-content: center;
    align-items: center;
}

.thumb {
    height: 65%;
    aspect-ratio: 1/1;
    list-style: none;
    cursor: pointer;
    position: relative;
    transition: filter 0.3s ease;
    border-radius: 10%;
    filter: brightness(0.4);
}

.thumb.active {
    filter: brightness(1);
}

.thumb img {
    width: 100%;
    border-radius: 10%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.list {
    width: 100%;
    height: 5%;
    background-color: #d9d9d9;
    position: relative;
}

/*スタジオ概要セクション*/
.studio_outline {
    width: 95%;
    aspect-ratio: 100/40;
    background-color: #7f8087;
    border-radius: 18px;
    margin-top: clamp(0px, 6.25vw, 120px);
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    position: relative;
    transform: translateX(-25%);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.studio_outline.active {
    transform: translateX(-5%);
    opacity: 1;
}

.outline_topic {
    width: fit-content;
    position: absolute;
    top: 1%;
    right: 3%;
    z-index: 1;
    white-space: nowrap;
}

.outline_topic h2 {
    font-size: clamp(0px, 1.25vw, 24px);
    font-weight: bold;
    color: white;
    position: absolute;
    z-index: 2;
    top: 88%;
    left: 27%;
    text-shadow: none;
}

.outline_topic_sub {
    font-size: clamp(0px, 2.8125vw, 54px);
    width: fit-content;
    font-weight: bold;
    text-shadow: none;
    color: white;
}

.outline_topic_sub span {
    font-size: clamp(0px, 3.75vw, 72px);
}

.outline_topic_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -3%;
    z-index: 1;
}

.outline_content {
    width: 100%;
    height: 100%;
    background: #314070;
    display: flex;
    border-radius: clamp(0px, 1.3vw, 25px);
    align-items: center;
    overflow: hidden;
    position: relative;
}

.outline_img {
    width: 42%;
    height: 75%;
    background-color: #E6DDDD;
    border-radius: clamp(0px, 1.56vw, 30px);
    margin-left: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.outline_img img {
    width: 80%;
}

.outline_sentence {
    margin-left: 7%;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.outline_description {
    font-size: clamp(0px, 1.45vw, 28px);
    color: #f5f5f5;
    font-weight: bold;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
    width: clamp(0px, 32.29vw, 620px);
}

.outline_button {
    display: block;
    text-align: center;
    text-decoration: none;
    border-radius: clamp(0px, 0.72vw, 14px);
    background-color: #14759b;
    color: #f5f5f5;
    aspect-ratio: 462/100;
    width: clamp(0px, 25vw, 480px);
    font-size: clamp(0px, 1.45vw, 28px);
    margin-top: 6%;
    margin-left: 4%;
    padding: clamp(0px, 1.61vw, 31px) 0;
    font-weight: bold;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    transition: transform 0.4s ease;
}

.ornament {
    position: absolute;
    aspect-ratio: 1/1;
    border: 2px solid rgba(255, 255, 255, 0.818);
    z-index: 0;
    animation: float 3s ease-in-out infinite;
    opacity: 0.5;
}

.ornament.t1 {
    width: clamp(0px, 5.2vw, 100px);
    border-radius: 50%;
    top: 95%;
    left: 53%;
    animation-delay: 1s;
    border-color: #e89191;
}

.ornament.t2 {
    width: clamp(0px, 2.6vw, 50px);
    border-radius: 10%;
    top: 80%;
    left: 80%;
}

.ornament.t3 {
    width: clamp(0px, 4.16vw, 80px);
    border-radius: 50%;
    top: 80%;
    left: 45%;
    border-color: #5557bf;
    opacity: 1;
}

.ornament.t4 {
    width: clamp(0px, 4.16vw, 80px);
    border-radius: 10%;
    top: 20%;
    left: 90%;
    border-color: #5557bf;
    opacity: 1;
}

.ornament.t5 {
    width: clamp(0px, 3.125vw, 60px);
    border-radius: 50%;
    top: 8%;
    left: 15%;
    animation-delay: 1s;
    border-color: #e89191;
    opacity: 1;
}

.ornament.t6 {
    width: clamp(0px, 3.125vw, 60px);
    border-radius: 10%;
    top: 27%;
    left: 87%;
    animation-delay: 0.3s;
}

.ornament.t7 {
    width: clamp(0px, 3.64vw, 70px);
    border: 2px solid #cba95b;
    border-radius: 50%;
    top: 68%;
    left: 97%;
    opacity: 1;
}

.ornament.t8 {
    width: clamp(0px, 5.2vw, 100px);
    border-radius: 50%;
    top: 50%;
    left: 65%;
    display: none;
}

.ornament.t9 {
    width: clamp(0px, 4.68vw, 90px);
    border-radius: 10%;
    top: 17%;
    left: 49%;
    animation-delay: 1s;
}

.ornament.t10 {
    width: clamp(0px, 4.68vw, 90px);
    border-radius: 10%;
    top: 75%;
    left: 67%;
    animation-delay: 0.5s;
    border-color: #2ec46e;
}

.ornament.t11 {
    width: clamp(0px, 4.68vw, 90px);
    border-radius: 10%;
    top: 67%;
    left: 69%;
    animation-delay: 1s;
}

.ornament.t12 {
    width: clamp(0px, 4.68vw, 90px);
    border-radius: 10%;
    top: 80%;
    left: 9%;
    animation-delay: 1s;
}

.ornament.t13 {
    width: clamp(0px, 8.33vw, 160px);
    border-radius: 50%;
    top: -10%;
    left: 64%;
    animation-delay: 1s;
    border-color: #4ffaff;
}

.ornament.t14 {
    width: clamp(0px, 4.68vw, 90px);
    border-radius: 10%;
    top: 54%;
    left: 84%;
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/*制作ゲーム紹介セクション*/
.gamelist {
    position: relative;
    width: 95%;
    aspect-ratio: 100/40;
    margin-top: clamp(0px, 6.25vw, 120px);
    border-radius: clamp(0px, 1.3vw, 25px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    transform: translateX(30%);
    overflow: hidden;
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.gamelist.active {
    transform: translateX(10%);
    opacity: 1;
}

.gamelist::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    pointer-events: none;
}

.gamelist_topic {
    width: fit-content;
    position: absolute;
    top: 2%;
    left: 2.5%;
    z-index: 2;
    white-space: nowrap;
}

.gamelist_topic h2 {
    font-size: clamp(0px, 1.25vw, 24px);
    font-weight: bold;
    color: white;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 104%;
    text-shadow:
        0px 2px 4px rgba(14, 30, 37, 0.12),
        0px 2px 16px rgba(14, 30, 37, 0.32);
}

.gamelist_topic_sub {
    font-size: clamp(0px, 3.75vw, 72px);
    width: fit-content;
    font-weight: bold;
    text-shadow:
        0px 2px 4px rgba(14, 30, 37, 0.12),
        0px 2px 16px rgba(14, 30, 37, 0.32);
    color: white;
}

.gamelist_topic_bg {
    background-image: url(../images/g430.png);
    width: 100%;
    height: 100%;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.background-video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.gamelist_content {
    position: relative;
    z-index: 2;
    display: flex;
}

.gamelist_button {
    text-decoration: none;
    text-align: center;
    font-size: clamp(0px, 1.45vw, 28px);
    width: clamp(0px, 25vw, 480px);
    aspect-ratio: 462/100;
    background-color: #3461be;
    color: #f5f5f5;
    border-radius: clamp(0px, 0.72vw, 14px);
    font-weight: bold;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    transition: transform 0.4s ease;
    padding: clamp(0px, 1.61vw, 31px) 0;
}

.gamelist_img {
    width: 45%;
    margin-left: clamp(0px, 2.08vw, 40px);
}

.gamelist_img img {
    width: 100%;
}

.gamelist_sentence {
    margin-left: clamp(0px, 5.2vw, 100px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0px, 1.56vw, 30px);
    transform: translateY(10%);
}

.gamelist_sentence p {
    text-align: center;
    font-size: clamp(0px, 1.45vw, 28px);
    font-weight: bold;
    color: #FFFBFB;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
}



/* =================== NEWS一覧ページ =================== */
.news_topic {
    margin-top: 32px;
    padding-bottom: clamp(0px, 2.81vw, 54px);
    opacity: 0;
    animation: newsindex_fadein 0.5s ease-in-out forwards;
}

@keyframes newsindex_fadein {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.news_topic h1 {
    text-align: center;
    width: clamp(172px, 11.45vw, 220px);
    font-size: clamp(42px, 2.81vw, 54px);
    font-weight: bold;
    position: relative;
    color: #414040;
    text-shadow: none;
    margin: 0 auto;
}

.news_topic h1::after {
    display: block;
    position: absolute;
    content: "";
    border-top: 5px solid #d7592f;
    width: 100%;
    top: 90%;
    transform: scale(0, 1);
    transform-origin: center;
    animation: scaleup_news 0.7s ease-in-out forwards;
}

@keyframes scaleup_news {
    0% {
        transform: scale(0, 1)
    }

    100% {
        transform: scale(1, 1)
    }
}

.news_topic h1::before {
    display: block;
    content: "最新情報";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(16px, 1.04vw, 20px);
    font-weight: 600;
}

.news_list {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0px, 3.07vw, 40px) clamp(0px, 3.07vw, 40px);
    margin-top: clamp(45px, 6vw, 80px);
}

.news_item {
    aspect-ratio: 380/350;
}

.news_thumbnail {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background-color: #F2EFEF;
    overflow: hidden;
    border-radius: 20px;
    color: #414040;
    text-shadow: none;
    transition: all 0.3s;
    position: relative;
    box-shadow: 0 0 10px rgba(151, 151, 151, 0.8);
}

.news_thumbnail_date_time {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(0px, 0.78vw, 15px);
}

.news_thumbnail_date {
    font-size: clamp(0px, 1.15vw, 15px);
    position: absolute;
    top: 64%;
    left: 4%;
}

.news_thumbnail_title {
    font-size: clamp(0px, 1.38vw, 18px);
    font-weight: bold;
    text-align: center;
}

.news_thumbnail img {
    width: 100%;
    aspect-ratio: 16/9;
}

.pagination {
    margin: clamp(0px, 2.6vw, 50px) auto 0 auto;
    width: 200px;
    text-align: center;
    font-size: 20px;
    text-shadow: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
}

.pagination a {
    text-decoration: none;
    color: #414040;
}

.pagenumbers {
    display: flex;
    flex-direction: row;
    gap: 14px;
}

.current {
    display: inline-block;
    font-weight: bold;
    color: #414040;
    text-decoration: underline;
}

.jump_first {
    position: absolute;
    top: 0%;
    left: 10%;
    width: 32px;
    height: 32px;
}

.jump_first_icon {
    fill: #414040;
    width: 100%;
    height: 100%;
}

.jump_last {
    position: absolute;
    top: 0%;
    right: 10%;
    width: 32px;
    height: 32px;
}

.jump_last_icon {
    fill: #414040;
    width: 100%;
    height: 100%;
}

/* =================== NEWS個別記事ページ =================== */
.news_article {
    margin-top: 52px;
    padding-bottom: 50px;
    width: 920px;
    animation: newsarticle_fadein 0.5s ease-in-out forwards;
}

@keyframes newsarticle_fadein {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.main_img {
    margin: 0 auto 0 auto;
    width: 100%;
}

.main_img img {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: clamp(10px, 1.3vw, 25px);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.news_group {
    margin-top: 30px;
    padding: 20px 20px 40px 20px;
    border-radius: 20px;
    background-color: white;
}

.news_date {
    font-size: 18px;
    color: #414040;
}

.news_title {
    color: #414040;
    font-size: 32px;
    text-align: center;
    margin: 0 auto;
    margin-top: 12px;
    font-weight: bold;
    border-bottom: dotted 3px #38b3f2;
    word-break: auto-phrase;
}

.news_body {
    color: #414040;
    font-size: 16px;
    margin-top: 24px;
    border-radius: 10px;
    font-weight: bold;
    padding: 10px 20px 10px 20px;
}

.news_link {
    color: #152a96;
    font-weight: bolder;
}

.news_space {
    margin-bottom: 20px;
}

.back_to_newslist {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
    display: block;
    width: 200px;
    height: 50px;
    border-radius: 12px;
    background: rgb(33, 70, 174);
    margin: 40px auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}



/* =================== スタジオ紹介ページ =================== */
.display {
    height: calc(100vh - 68px);
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.first {
    transition: all 1s ease-in-out;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 0;
    opacity: 0;
    animation: first_fadein 0.5s ease-in-out forwards;
}

@keyframes first_fadein {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.about_br_tab {
    display: none;
}

.second {
    transition: all 1s ease-in-out;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 300%;
}

.second_appear {
    transition: all 1s ease-in-out;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 0;
}

.vertical_top {
    transition: all 1s ease-in-out;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: -300%;
}

.vertical_down {
    transition: all 1s ease-in-out;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 300%;
}

.third {
    transition: all 1s ease-in-out;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 300%;
}

.third_appear {
    transition: all 1s ease-in-out;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.next_button {
    position: absolute;
    bottom: 50%;
    right: 2%;
    transform: translateY(50%);
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.next_button::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    z-index: 1;
    border-top: solid 3px white;
    border-right: solid 3px white;
    -webkit-transform: rotate(45deg) translateY(50%) translateX(50%);
    transform: translateY(50%) translateX(65%) rotate(45deg);
}

.next_button::after {
    content: "";
    background-color: rgba(35, 36, 43, 0.8);
    scale: 1;
    border-radius: 50%;
    border: 1px solid white;
    width: 60px;
    height: 60px;
    position: absolute;
    z-index: auto;
    top: -9.5px;
    transform: translateX(-5%);
    transition: all 0.5s;
}

.prev_button {
    position: absolute;
    bottom: 50%;
    left: 2%;
    transform: translateY(50%);
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: none;
}

.prev_button::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    z-index: 1;
    border-top: solid 3px white;
    border-right: solid 3px white;
    -webkit-transform: rotate(-135deg) translateY(-50%);
    transform: rotate(-135deg) translateY(-50%);
    top: 3px;
    right: -3px;
}

.prev_button::after {
    content: "";
    background-color: rgba(35, 36, 43, 0.8);
    scale: 1;
    border-radius: 50%;
    border: 1px solid white;
    width: 60px;
    height: 60px;
    position: absolute;
    z-index: auto;
    top: -9.5px;
    transform: translateX(5%);
    transition: all 0.5s;
}

.next_indicator {
    position: absolute;
    bottom: 15%;
    right: 90%;
    color: #414040;
    writing-mode: vertical-rl;
    animation: arrow 1.7s ease-in-out infinite;
}

@keyframes arrow {
    0% {
        bottom: 15%;
    }

    50% {
        bottom: 10%;
    }

    00% {
        bottom: 15%;
    }
}

.next_indicator::before {
    content: "";
    position: absolute;
    bottom: 5px;
    right: -6px;
    width: 2px;
    height: 20px;
    background: #414040;
    transform: skewX(-31deg);
}

.next_indicator::after {
    content: "";
    position: absolute;
    bottom: 5px;
    right: 0;
    width: 2px;
    height: 85px;
    background: #414040;
}

.headline {
    font-size: clamp(42px, 2.81vw, 54px);
    font-weight: bold;
    color: #414040;
    width: clamp(204px, 13.54vw, 260px);
    position: absolute;
    top: 5%;
    left: 0;
    text-align: center;
}

.headline::before {
    content: "";
    border-top: solid 5px;
    width: 100%;
    position: absolute;
    bottom: 4%;
    left: 0%;
    color: #6e80c6;
    transform: scale(0, 1);
    transform-origin: left;
    animation: scaleup_about 0.7s ease-in-out forwards;
}

@keyframes scaleup_about {
    0% {
        transform: scale(0, 1)
    }

    100% {
        transform: scale(1, 1)
    }
}

.headline::after {
    content: "スタジオ紹介";
    display: block;
    position: absolute;
    top: 98%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: clamp(16px, 1.04vw, 20px);
    font-weight: 600;
}

.about_topic {
    font-size: clamp(60px, 4.58vw, 88px);
    text-align: center;
    width: 100%;
    color: #414040;
    font-weight: bold;
    transform: translateY(-15%);
}

.about_topic p:first-of-type {
    color: #393f80;
    white-space: pre-wrap;
    word-break: auto-phrase;
    margin-bottom: 30px;
}

.about_topic span {
    font-size: clamp(49px, 3.75vw, 72px);
}

.about_topic p:last-of-type {
    font-size: 24px;
    font-weight: bold;
    word-break: auto-phrase;
    width: 100%;
}

.about_topic img {
    margin-top: 30px;
    width: 130px;
    display: none;
}

.mission_value {
    margin: 30px auto 0 auto;
    padding-top: 40px;
    padding-bottom: 60px;
    background-color: #d9d9d93a;
    width: 90%;
    height: fit-content;
}

.mission_value img {
    display: inline-block;
    width: 60px;
    position: relative;
}

.mission {
    position: relative;
    text-align: center;
    width: 100%;
    transform: translateY(-30%);
}

.mission::after {
    content: "Mission";
    font-size: 96px;
    font-weight: bold;
    color: transparent;
    text-shadow: none;
    -webkit-text-stroke: 0.6px #D8D6F2;
    position: absolute;
    top: 140%;
    left: 70%;
    line-height: 1;
    display: none;
}

.mission h2 {
    font-size: clamp(60px, 4.58vw, 88px);
    margin-bottom: 30px;
    color: #d90b7f;
    text-shadow: none;
}

.mission p {
    font-size: 24px;
    font-weight: bold;
    color: #414040;
    word-break: keep-all;
}

.value {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transform: translateY(clamp(-90px, -4.68vw, 0px));
}

.value::after {
    content: "Values";
    font-size: 96px;
    font-weight: bold;
    color: transparent;
    text-shadow: none;
    -webkit-text-stroke: 0.6px #D8D6F2;
    position: absolute;
    top: 80%;
    left: 73%;
    line-height: 1;
    display: none;
}

.value_flex {
    display: flex;
    flex-direction: row;
    gap: clamp(80px, 6.25vw, 120px);
    justify-content: center;
}

.value_topic {
    font-size: clamp(49px, 3.75vw, 72px);
    color: #D8D6F2;
    text-shadow: none;
    text-align: center;
    color: #414040;
    position: relative;
    margin-bottom: clamp(54px, 4.16vw, 80px);
}

.value_topic::after {
    content: "行動指針";
    position: absolute;
    bottom: -16%;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(15px, 1.14vw, 22px);
    white-space: nowrap;
}

.value_group {
    width: clamp(272px, 20.83vw, 400px);
    position: relative;
    color: #474658;
    text-shadow: none;
    text-align: center;
    font-weight: bold;
    background-size: 100% auto;
    transition: transform 0.5s ease, opacity 0.5s ease;
    transform: translateX(-40px);
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value_group.animate {
    transform: translateX(0);
    opacity: 1;
}

.value_title {
    font-size: clamp(34px, 2.6vw, 50px);
    position: relative;
    white-space: nowrap;
}

.value_title.originality {
    color: #428a2b;
}

.value_title_jp.originality {
    font-size: clamp(15px, 1.14vw, 22px);
    color: #428a2b;
}

.value_title.paradigm {
    color: #4b65bf;
}

.value_title_jp.paradigm {
    font-size: clamp(15px, 1.14vw, 22px);
    color: #4b65bf;
}

.value_title.playfulness {
    color: #d8461a;
}

.value_title_jp {
    text-align: center;
}

.value_title_jp.playfulness {
    font-size: clamp(15px, 1.14vw, 22px);
    color: #d8461a;
}

.value_content {
    font-size: clamp(16px, 1.25vw, 24px);
    width: 420px;
    width: fit-content;
    margin-top: clamp(0px, 1.56vw, 30px);
}

.value_content.originality {
    width: clamp(240px, 18.75vw, 360px);
}

.value_content.paradigm {
    width: clamp(280px, 21.875vw, 420px);
}

.value_content.playfulness {
    width: clamp(243px, 18.95vw, 364px);
}

.forsp {
    display: none;
}

.fortab {
    display: none;
}

.mission br {
    display: none;
}



/* =================== Re:Connect紹介ページ =================== */
/*Re:Connect専用背景*/
.bg_reconnect {
    width: 100%;
    height: 100vh;
    background-color: #dbdbdb;
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
}

.rectangle {
    position: absolute;
    animation: move-diagonal 12s linear infinite;
    background-color: #38b3f2;
    top: 0;
    left: 0;
    opacity: 0;
}

.rectangle1 {
    width: 200px;
    height: 30px;
    border-radius: 30px;
    --start-x: -200px;
    --start-y: 30vh;
    --end-x: 80vw;
    --end-y: -40vh;
}

.rectangle2 {
    width: 400px;
    height: 20px;
    border-radius: 40px;
    --start-x: -410px;
    --start-y: 35vh;
    --end-x: 80vw;
    --end-y: -35vh;
    animation-delay: 3s;
    background-color: rgb(188, 100, 100);
}

.rectangle3 {
    width: 200px;
    height: 30px;
    border-radius: 30px;
    --start-x: 0px;
    --start-y: 100vh;
    --end-x: 150vw;
    --end-y: -50vh;
    animation-delay: 5s;
}

.rectangle4 {
    width: 400px;
    height: 20px;
    border-radius: 40px;
    --start-x: -400px;
    --start-y: 100vh;
    --end-x: 140vw;
    --end-y: -40vh;
    background-color: orange
}

@keyframes move-diagonal {
    0% {
        transform: translate(var(--start-x), var(--start-y)) rotate(-30deg);
        opacity: 0.3;
    }

    100% {
        transform: translate(var(--end-x), var(--end-y)) rotate(-30deg);
        opacity: 0.3;
    }
}

.circleforgame {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    opacity: 0;
    animation: move-circle 24s linear infinite;
}

.circleforgame1 {
    position: absolute;
    border: 8px solid red;
    --start-x: 25vw;
    --start-y: 100vh;
    --end-x: 25vw;
    --end-y: -40vh;
    width: 140px;
    height: 140px;
    animation-duration: 20s;
}

.circleforgame2 {
    position: absolute;
    border: 6px solid rgb(52, 20, 167);
    --start-x: 70vw;
    --start-y: 100vh;
    --end-x: 70vw;
    --end-y: -40vh;
    animation-delay: 2s;
    animation-duration: 10s;
}

.circleforgame3 {
    position: absolute;
    border: 6px solid rgb(20, 167, 27);
    --start-x: 50vw;
    --start-y: 100vh;
    --end-x: 50vw;
    --end-y: -40vh;
    width: 75px;
    height: 75px;
    animation-delay: 14s;
    animation-duration: 20s;
}

.circleforgame4 {
    position: absolute;
    border: 6px solid rgb(119, 119, 119);
    --start-x: 10vw;
    --start-y: 100vh;
    --end-x: 10vw;
    --end-y: -40vh;
    width: 75px;
    height: 75px;
    animation-delay: 7s;
    animation-duration: 7s;
}

.circleforgame5 {
    position: absolute;
    border: 6px solid rgb(119, 119, 119);
    --start-x: 90vw;
    --start-y: 100vh;
    --end-x: 90vw;
    --end-y: -40vh;
    width: 100px;
    height: 100px;
    animation-delay: 16s;
    animation-duration: 8s;
}

@keyframes move-circle {
    0% {
        transform: translate(var(--start-x), var(--start-y)) scale(1);
        opacity: 0.3;
    }

    100% {
        transform: translate(var(--end-x), var(--end-y)) scale(1.4);
        opacity: 0.3;
    }
}

/*ヒーローセクション*/
.reconnect_hero {
    height: calc(100vh - 68px);
    max-height: 1080px;
    min-height: 500px;
}

.reconnect_hero_flex {
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.reconnect_hero_flex_element {
    flex-basis: 50%;
    display: flex;
    justify-content: center;
    transform: translateY(-15%);
}

.reconnect_logo_fadein {
    opacity: 0;
    transform: translateX(-20%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.reconnect_logo_fadein.animate {
    opacity: 1;
    transform: translateX(0);
}

.reconnect_hero_img {
    z-index: 1;
    position: relative;
    width: clamp(0px, 41.6vw, 800px);
}

.reconnect_hero_sentence {
    width: clamp(0px, 40vw, 768px);
    aspect-ratio: auto;
    z-index: 1;
}

.reconnect_herosentence_fadein {
    opacity: 0;
    transform: translateX(20%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.reconnect_herosentence_fadein.animate {
    opacity: 1;
    transform: translateX(0);
}

/*グリッド背景*/
.bg_grid {
    background-color: #e8e8eb;
    background-image: linear-gradient(rgba(255, 255, 255, 1) 0px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 1) 0px, transparent 1px);
    background-size: 20px 20px;
    background-position: -2px -2px, -2px -2px, -1px -1px, -1px -1px;
    min-height: 100%;
    width: 95%;
    animation: grid_animation 20s linear infinite;
    background-repeat: repeat;
    margin: 0 auto clamp(0px, 1.04vw, 20px) auto;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding-bottom: clamp(0px, 7.29vw, 140px);
}

@keyframes grid_animation {
    0% {
        background-position: 50% 0%;
    }

    100% {
        background-position: 50% 100%;
    }
}

/*ゲーム紹介セクション*/
.introduction_reconnect {
    margin-top: clamp(0px, 8.33vw, 160px);
}

.introduction_flex_element {
    flex-basis: 25%;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    flex-grow: 0;
    min-height: 0;
    transform: translateY(-16%);
}

.introduction_flex_element2 {
    flex-direction: row-reverse;
}

.introduction_sentence {
    font-size: clamp(0px, 2.1875vw, 42px);
    font-weight: 1000;
    color: #373737;
    width: fit-content;
    text-shadow: none;
    flex-basis: 62%;
}

.introduction_br_tab {
    display: none;
}

.small_reconnect {
    font-size: clamp(0px, 1.875vw, 36px);
}

.introduction_sentence1 {
    margin-left: clamp(0px, 5.2vw, 100px);
    margin-top: clamp(0px, 4.16vw, 80px);
    position: relative;
    width: clamp(0px, 52.6vw, 1010px);
    flex-basis: 57%;
    flex-shrink: 0;
    word-break: keep-all;
}

.reconnect_highlight_1 {
    position: relative;
    white-space: nowrap;
}

.reconnect_highlight_1::before {
    content: "";
    display: block;
    width: 100%;
    height: clamp(0px, 0.72vw, 14px);
    background-color: #6765d6;
    border-radius: clamp(0px, 1.04vw, 20px);
    position: absolute;
    bottom: -15%;
    left: 0%;
    transform: scale(0);
}

.introduction_sentence1.animate .reconnect_highlight_1::before {
    animation: fadein_introduction_sentence1 0.5s ease forwards;
    animation-delay: 0.5s;
}

.introduction_sentence2 {
    margin-top: clamp(0px, 4.16vw, 80px);
    margin-right: clamp(0px, 1.875vw, 36px);
    position: relative;
    flex-basis: 73%;
    word-break: keep-all;
}

.reconnect_highlight_2 {
    position: relative;
}

.reconnect_highlight_2::before {
    content: "";
    display: block;
    width: 100%;
    height: clamp(0px, 0.72vw, 14px);
    background-color: #efbd59;
    border-radius: clamp(0px, 1.04vw, 20px);
    position: absolute;
    bottom: -15%;
    left: 0%;
    transform: scale(0);
}

.introduction_sentence2.animate .reconnect_highlight_2::before {
    animation: fadein_introduction_sentence1 0.5s ease forwards;
    animation-delay: 0.5s;
}

.protagonist_introduction {
    width: clamp(0px, 36.45vw, 700px);
    opacity: 0;
    transform: scale(0) translateX(clamp(-20px, -1.95vw, 0px)) translateY(clamp(-20px, -1.95vw, 0px));
}

.navi_introduction {
    width: clamp(0px, 15.625vw, 300px);
    opacity: 0;
    transform: scale(0.7);
    margin-right: clamp(0px, 3.85vw, 74px);
}

.protagonist_introduction.animate {
    animation: fadein_intro_protagonist 0.5s ease-in-out forwards;
}

.navi_introduction.animate {
    animation: fadein_intro_navi 0.5s ease-in-out forwards;
}

@keyframes fadein_intro_protagonist {
    0% {
        transform: scale(0.7) translateX(clamp(-20px, -1.95vw, 0px)) translateY(clamp(-20px, -1.95vw, 0px));
        opacity: 0
    }

    65% {
        transform: scale(1.1) translateX(clamp(-20px, -1.95vw, 0px)) translateY(clamp(-20px, -1.95vw, 0px));
        opacity: 1
    }

    100% {
        transform: scale(1) translateX(clamp(-20px, -1.95vw, 0px)) translateY(clamp(-20px, -1.95vw, 0px));
        opacity: 1
    }
}

@keyframes fadein_intro_navi {
    0% {
        transform: scale(0.7);
        opacity: 0
    }

    65% {
        transform: scale(1.1);
        opacity: 1
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

.chara_frame {
    position: absolute;
    width: clamp(0px, 15.625vw, 300px);
    height: clamp(0px, 3.64vw, 70px);
    text-align: center;
    background-color: white;
    color: #373737;
    font-size: clamp(0px, 1.56vw, 30px);
    font-weight: bold;
    border-radius: clamp(0px, 1.56vw, 30px);
    border: clamp(0px, 0.3125vw, 6px) solid #6266b2;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    opacity: 0;
    transition: opacity 1s ease;
}

.chara_frame.animate {
    opacity: 1;
}

.chara_frame1 {
    top: 68%;
    right: 5%
}

.chara_frame2 {
    top: 90%;
    left: 4.5%
}

.fadein_introduction_sentence1 {
    transform: translateX(-80px);
    opacity: 0;
    transition: transform 0.5s, opacity 0.5s;
}

.fadein_introduction_sentence1.animate {
    transform: translateX(0px);
    opacity: 1;
}

.fadein_introduction_sentence2 {
    transform: translateX(80px);
    opacity: 0;
    transition: transform 0.5s, opacity 0.5s;
}

.fadein_introduction_sentence2.animate {
    transform: translateX(0px);
    opacity: 1;
}

.fadein_introduction_sentence2.animate::before {
    animation: fadein_introduction_sentence2 1s ease forwards;
    animation-delay: 0.5s;
}

.fadein_introduction_sentence3 {
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.5s, opacity 0.5s;
    width: 95%;
    text-align: center;
}

.fadein_introduction_sentence3.animate {
    transform: translateY(0px);
    opacity: 1;
}

.fadein_introduction_sentence4 {
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.5s, opacity 0.5s;
    width: 95%;
    text-align: center;
}

.fadein_introduction_sentence4.animate {
    transform: translateY(0px);
    opacity: 1;
}

.fadein_introduction_sentence5 {
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.5s, opacity 0.5s;
    width: 85%;
    text-align: center;
}

.fadein_introduction_sentence5.animate {
    transform: translateY(0px);
    opacity: 1;
}

@keyframes fadein_introduction_sentence1 {
    0% {
        transform: scale(0, 1)
    }

    100% {
        transform: scale(1, 1)
    }
}

@keyframes fadein_introduction_sentence2 {
    0% {
        transform: scale(0, 1)
    }

    100% {
        transform: scale(1, 1)
    }
}

.introduction_sentence3 {
    margin: clamp(0px, 6.25vw, 120px) auto 0 auto;
}

.introduction_sentence4 {
    margin: 0 auto;
}

.introduction_sentence5 {
    font-size: clamp(0px, 3.125vw, 60px);
    margin: clamp(0px, 5.2vw, 100px) auto;
}

.introduction_sentence3 span,
.introduction_sentence4 span {
    font-size: clamp(0px, 2.1875vw, 42px);
}

.game_video {
    padding-bottom: 50px;
    margin-top: 180px;
}

.game_video::before {
    display: block;
    content: "";
    width: 100%;
    height: 18px;
    background-color: #D9D9D9;
    display: none;
}

.reconnect_video {
    display: block;
    width: clamp(0px, 52.08vw, 1000px);
    aspect-ratio: 16/9;
    border: 12px solid #e0dcdc;
    border-radius: 20px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20%);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reconnect_video.animate {
    opacity: 1;
    transform: translateY(0%);
}

.flex_vid {
    display: flex;
    flex-direction: column;
    margin-top: clamp(0px, 14.58vw, 280px);
    row-gap: 100px;
    flex-wrap: nowrap;
    align-items: center;
    position: relative;
}

.game_video_slogan {
    width: clamp(0px, 31.25vw, 600px);
    position: absolute;
    top: -11%;
    left: 9%;
}

.game_video_sentence {
    font-size: clamp(0px, 1.66vw, 32px);
    color: #373737;
    font-weight: 1000;
    background-color: #e8e8eb;
    background-image: linear-gradient(rgba(255, 255, 255, 1) 0px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 1) 0px, transparent 1px);
    background-size: 20px 20px;
    background-position: -2px -2px, -2px -2px, -1px -1px, -1px -1px;
    animation: ani 20s linear infinite;
    background-repeat: repeat;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 30px;
    border-radius: 25px;
    border: 6px solid orange;
    text-shadow: none;
}

/*ゲームフィーチャー紹介セクション*/
.game_elements {
    position: relative;
    margin-top: clamp(0px, 4.16vw, 80px);
    padding-bottom: 110px;
}

.grid_group {
    margin-top: clamp(0px, 6.25vw, 120px);
    padding-bottom: 10px;
    display: grid;
    row-gap: clamp(0px, 10.41vw, 200px);
}

.flex_elements {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #e8e8eb;
    background-image: linear-gradient(rgba(255, 255, 255, 1) 0px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 1) 0px, transparent 1px);
    background-size: 20px 20px;
    background-position: -2px -2px, -2px -2px, -1px -1px, -1px -1px;
    animation: ani 20s linear infinite;
    background-repeat: repeat;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: clamp(0px, 23.43vw, 450px);
    width: 90%;
    transform: translateX(14%);
}

.flex_elements_reverse {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    background-color: #e8e8eb;
    background-image: linear-gradient(rgba(255, 255, 255, 1) 0px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 1) 0px, transparent 1px);
    background-size: 20px 20px;
    background-position: -2px -2px, -2px -2px, -1px -1px, -1px -1px;
    animation: ani 20s linear infinite;
    background-repeat: repeat;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: clamp(0px, 23.43vw, 450px);
    width: 90%;
    transform: translateX(-2.9%);
}

.flex_elements1 {
    background-color:#454598;
    position: relative;
    background-image: linear-gradient(rgb(150, 152, 210) 0px, transparent 1px), linear-gradient(90deg, rgba(150, 152, 210, 1) 0px, transparent 1px);
}

.flex_elements1::before {
    content: "EXPLORE";
    width: 100%;
    display: block;
    position: absolute;
    top: -29%;
    left: 69%;
    font-size: clamp(0px, 5.3125vw, 102px);
    color: #5f70e2;
    text-shadow: none;
    font-weight: bold;
}

.flex_elements2 {
    background-color:#CC494C;
    position: relative;
    background-image: linear-gradient(rgba(228, 164, 164, 1) 0px, transparent 1px), linear-gradient(90deg, rgba(228, 164, 164, 1) 0px, transparent 1px);
}

.flex_elements2::before {
    content: "PUZZLE";
    width: 100%;
    display: block;
    position: absolute;
    top: -29%;
    left: 4%;
    font-size: clamp(0px, 5.33vw, 102px);
    font-weight: bold;
    color: #d24f75;
    text-shadow: none;
}

.flex_elements3 {
    background-color:#2277bd;
    position: relative;
    background-image: linear-gradient(rgba(108, 173, 221, 1) 0px, transparent 1px), linear-gradient(90deg, rgba(108, 173, 221, 1) 0px, transparent 1px);
}

.flex_elements3::before {
    content: "BOSS BATTLE";
    width: 100%;
    display: block;
    position: absolute;
    top: -29%;
    left: 56.5%;
    font-size: clamp(0px, 5.33vw, 102px);
    font-weight: bold;
    text-shadow: none;
    color: #3b97e9;
}

.flex_elements4 {
    background-color:#0d8917;
    position: relative;
    background-image: linear-gradient(rgba(107, 205, 118, 1) 0px, transparent 1px), linear-gradient(90deg, rgba(107, 205, 118, 1) 0px, transparent 1px);
}

.flex_elements4::before {
    content: "STORY";
    width: 100%;
    display: block;
    position: absolute;
    top: -29%;
    left: 4%;
    font-size: clamp(0px, 5.33vw, 102px);
    font-weight: bold;
    color: #51ac48;
    text-shadow: none;
}

.frame_group,
.sentence_group {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.frame_group_left {
    transform: translateY(-10%) translateX(-16%);
}

.frame_group_right {
    transform: translateY(-10%) translateX(16%);
}

.frame {
    width: clamp(0px, 39.58vw, 760px);
    background: #D9D9D9;
    padding: clamp(0px, 0.625vw, 12px);
    border-radius: clamp(0px, 1.04vw, 20px);
    display: inline-block;
    position: relative;
}

.frame1,
.frame3 {
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.frame2,
.frame4 {
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.inner {
    overflow: hidden;
    border-radius: clamp(0px, 0.52vw, 10px);
    position: relative;
    display: block;
    width: 100%;
}

.inner source {
    width: 100%;
}

.elements_sentence_title_group img {
    width: auto;
    height: 100%;
}

.elements_sentence_title_group {
    display: block;
    height: clamp(0px, 2.39vw, 46px);
    position: relative;
}

.elements_sentence_title {
    font-size: 28px;
    z-index: 2;
    position: absolute;
    white-space: nowrap;
    line-height: 1;
    color: white;
}

.elements_sentence_title1 {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.elements_sentence_title2 {
    top: 58%;
    left: 48%;
    transform: translateX(-59%) translateY(-94%);
}

.elements_sentence_title3 {
    top: 62%;
    left: 53%;
    transform: translateX(-59%) translateY(-94%);
}

.elements_sentence_title4 {
    top: 62%;
    left: 53%;
    transform: translateX(-59%) translateY(-94%);
}

.reconnect_introduction_frame {
    display: block;
    width: 100px;
    z-index: 1;
}

.reconnect_introduction_frame1 path {
    fill: #8585b4;
}

.reconnect_introduction_frame2 path {
    fill: #e03d5e;
    stroke: white;
}

.reconnect_introduction_frame3 path {
    fill: #e26623;
    stroke: white;
}

.reconnect_introduction_frame4 path {
    fill: #3f9d3a;
    stroke: white;
}

.elements_sentence_topic {
    font-size: clamp(0px, 1.66vw, 32px);
    font-weight: bold;
    color: #ffffff;
    margin-top: clamp(0px, 0.83vw, 16px);
}

.elements_sentence_topic_second {
    margin-top: clamp(0px, 0.52vw, 10px);
}

.elements_sentence_body {
    margin-top: clamp(0px, 1.04vw, 20px);
    font-size: clamp(0px, 1.25vw, 24px);
    font-weight: bold;
    color: #ffffff;
}

.elements_sentence {
    text-shadow: none;
    position: relative;
    width: clamp(0px, 40vw, 768px);
}

.elements_sentence.sentence1 {
    width: clamp(0px, 40vw, 768px);
}

.elements_sentence.sentence2 {
    width: clamp(0px, 34.27vw, 658px);
}

.sentence_group1 {
    transform: translateX(-13%) translateY(-22%);
}

.sentence_group2 {
    transform: translateX(12%) translateY(-6%);
}

.sentence_group3 {
    transform: translateX(-3%) translateY(-20%);
}

.sentence_group4 {
    transform: translateX(18%) translateY(-18%);
}

.fadein_right {
    opacity: 0;
}

.fadein_left {
    opacity: 0;
}

/*インフォメーションセクション*/
.information {
    position: relative;
    background-image: url(../images/game/reconnect/triangle_background.png);
    background-size: cover;
    height: clamp(0px, 56.56vw, 1086px);
    padding: 5px;
}

.information::before {
    display: block;
    content: "";
    width: 100%;
    height: 18px;
    background-color: #D9D9D9;
    display: none;
}

.information::after {
    display: block;
    content: "";
    width: clamp(0px, 50vw, 768px);
    border-bottom: 20px solid #D9D9D9;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    position: absolute;
    top: -18px;
    top: clamp(-18px, -2vw, 0px);
    left: 50%;
    transform: translateX(-50%);
    display: none;
}

.info_frame {
    width: clamp(0px, 66.66vw, 1280px);
    height: clamp(0px, 46.87vw, 900px);
    background-color: rgb(234 234 234);
    border: clamp(0px, 0.41vw, 8px) solid #a5a5a5;
    border-radius: clamp(0px, 1.04vw, 20px);
    background-image:
        repeating-linear-gradient(to bottom,
            transparent 25px,
            rgba(0, 0, 0, 0.04) 26px, rgba(0, 0, 0, 0.04) 26px,
            transparent 27px, transparent 51px,
            rgba(0, 0, 0, 0.04) 52px, rgba(0, 0, 0, 0.04) 52px,
            transparent 53px, transparent 77px,
            rgba(0, 0, 0, 0.04) 78px, rgba(0, 0, 0, 0.04) 78px,
            transparent 79px, transparent 103px,
            rgba(0, 0, 0, 0.04) 104px, rgba(0, 0, 0, 0.04) 104px,
            transparent 105px, transparent 129px,
            rgba(0, 0, 0, 0.04) 130px, rgba(0, 0, 0, 0.04) 130px),

        repeating-linear-gradient(to right,
            transparent 25px,
            rgba(0, 0, 0, 0.04) 26px, rgba(0, 0, 0, 0.04) 26px,
            transparent 27px, transparent 51px,
            rgba(0, 0, 0, 0.04) 52px, rgba(0, 0, 0, 0.04) 52px,
            transparent 53px, transparent 77px,
            rgba(0, 0, 0, 0.04) 78px, rgba(0, 0, 0, 0.04) 78px,
            transparent 79px, transparent 103px,
            rgba(0, 0, 0, 0.04) 104px, rgba(0, 0, 0, 0.04) 104px,
            transparent 105px, transparent 129px,
            rgba(0, 0, 0, 0.04) 130px, rgba(0, 0, 0, 0.04) 130px);

    opacity: 0;
    transform: translateY(20%);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.info_frame.animate {
    opacity: 1;
    transform: translateY(0);
}

.info_topic_frame {
    width: clamp(0px, 31.25vw, 600px);
    height: clamp(0px, 8.02vw, 154px);
    margin: clamp(0px, 2.18vw, 42px) auto 0 auto;
}

.info_topic {
    width: fit-content;
    text-align: center;
    font-size: clamp(0px, 3.43vw, 66px);
    position: relative;
    text-shadow: none;
    font-weight: 600;
    margin: 0 auto;
    color: #373737;
}

.info_topic::after {
    content: "";
    display: block;
    width: clamp(0px, 22.13vw, 425px);
    border: 2px solid #1893b1;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) scale(0, 1);
    transition: all 1s;
}

.info_topic.animate::after {
    transform: translateX(-50%) scale(1, 1);
}

.info_topic::before {
    content: "詳細情報";
    display: block;
    position: absolute;
    top: 105%;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(0px, 1.35vw, 26px);
}

.info_body {
    font-size: clamp(0px, 1.35vw, 26px);
    width: fit-content;
    margin: clamp(0px, 4.16vw, 80px) auto 0 auto;
    text-shadow: none;
    color: #373737;
    display: grid;
    grid-template-columns: clamp(0px, 14.06vw, 270px) 1fr;
}

.info_title {
    font-weight: bold;
    color: #66668b;
    display: inline-block;
}

.info_content {
    font-weight: bold;
    color: #4b5292;
    display: inline-block;
}

.navi {
    display: block;
    width: clamp(0px, 8.85vw, 170px);
    transform: translateX(68%) translateY(-70%);
}

.info_responsive {
    display: none;
    font-size: 14px;
    margin: clamp(0px, 10.01vw, 60px) auto 0 auto;
    text-shadow: none;
}

#svg_bubble {
    width: 100%;
    height: 100%;
    left: -3%;
    -webkit-filter: drop-shadow(0px 3px 10px rgba(206, 206, 206, 0.8));
    filter: drop-shadow(0px 3px 10px rgba(206, 206, 206, 0.8));
    position: absolute;
    fill: #dadada;
    stroke: #b8adad;
}

#svg_bubble_sp {
    display: none;
}

.bubble {
    margin: clamp(0px, 3.125vw, 60px) auto 0 auto;
    background-size: contain;
    width: clamp(0px, 32.08vw, 616px);
    aspect-ratio: 8/2.5;
    border-radius: 25px;
    position: relative;
    z-index: 1;
}

.bubble_sentence {
    font-size: clamp(0px, 1.14vw, 22px);
    color: #57556D;
    text-align: center;
    padding-top: 3%;
    text-shadow: none;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.steam_access {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64%;
    aspect-ratio: 992/172;
    transform: translateX(-50%);
    z-index: 3;
    background-color: #3461be;
    border-radius: 44px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: filter 0.4s ease;
}

.steam_logo {
    width: clamp(0px, 8.33vw, 160px);
    position: absolute;
    top: 50%;
    left: 4%;
    transform: translateY(-50%);
}

.steam_access_sentence {
    position: absolute;
    top: 48%;
    left: 47%;
    transform: translateY(-50%);
    font-size: clamp(0px, 1.04vw, 20px);
    font-weight: bold;
    color: white;
}

.info_height {
    height: 100%;
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}



/* =================== お問い合わせページ =================== */
.contact_main {
    opacity: 0;
    animation: contact_fadein 0.5s ease-in-out forwards;
}

@keyframes contact_fadein {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.contact_flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    height: calc(100vh - 68px);
}

.contact_topic {
    font-size: clamp(42px, 2.81vw, 54px);
    font-weight: bold;
    color: #414040;
    width: clamp(204px, 13.54vw, 260px);
    position: absolute;
    top: 5%;
    left: 0;
    text-align: center;
}

.contact_topic::before {
    content: "";
    border-top: solid 5px #025fc5;
    opacity: 0.7;
    width: 100%;
    position: absolute;
    bottom: 4%;
    left: 0%;
    transform: scale(0, 1);
    transform-origin: left;
    animation: scaleup_contact 0.7s ease-in-out forwards;
}

@keyframes scaleup_contact {
    0% {
        transform: scale(0, 1)
    }

    100% {
        transform: scale(1, 1)
    }
}

.contact_topic::after {
    content: "お問い合わせ";
    display: block;
    position: absolute;
    top: 98%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: clamp(16px, 1.04vw, 20px);
}

.contact_body {
    font-size: clamp(20px, 1.25vw, 24px);
    width: fit-content;
    margin: 0 auto 0 auto;
    color: #414040;
    font-weight: bold;
}

.contact_br_tab {
    display: none;
}

.contact_br_sp {
    display: none;
}

.mail_button {
    display: block;
    margin: clamp(24px, 1.56vw, 30px) auto 0 auto;
    width: clamp(304px, 19.79vw, 380px);
    height: clamp(64px, 4.16vw, 80px);
    transition: filter 0.4s ease;
    border-radius: clamp(32px, 2.08vw, 40px);
    background-color: #3A68B4;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.mail_icon {
    width: clamp(54px, 3.54vw, 68px);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 7%;
}

.mail_sentence {
    font-size: clamp(16px, 1.04vw, 20px);
    position: absolute;
    top: 48%;
    left: 28%;
    transform: translateY(-50%);
    color: #f2f2f2;
    font-weight: bold;
}



/* =================== hoverエフェクト(PCのみ適用) =================== */
@media (hover: hover) and (pointer: fine) {
    .main-nav>li:hover {
        color: #888585;
    }

    .main-nav>li:hover::after {
        transform: scale(1, 1);
    }

    .main-nav li:nth-child(4):hover::after {
        transform: scale(0.6, 1);
    }

    .main-nav li:nth-child(4):hover {
        cursor: default;
    }

    .main-nav li:nth-child(4):hover ul {
        display: block;
    }

    .hover-ready .slide--center .slide_contents:hover::before {
        opacity: 1;
        content: "";
        position: absolute;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(15px);
        transition: opacity 0.3s ease;
        z-index: 1;
    }

    .hover-ready .slide--center .slide_contents:hover .slide-overlay {
        opacity: 1;
    }

    .next:hover::after {
        scale: 1.1;
    }

    .prev:hover::after {
        scale: 1.1;
    }

    .outline_button:hover {
        transform: scale(1.05);
    }

    .gamelist_button:hover {
        transform: scale(1.05);
    }

    .top_return:hover {
        filter: brightness(1.2);
    }

    .news_thumbnail:hover {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        transform: translateY(-5px);
    }

    .steam_access:hover {
        filter: brightness(1.2);
    }

    .mail_button:hover {
        filter: brightness(1.1) saturate(1.1);
    }
}



/* =================== タブレット表示時レスポンシブ設定 =================== */
@media (max-width: 1024px) and (min-width: 600px) {
    /*ヘッダー*/
    .navigation {
        display: none;
    }

    .toggle_menu {
        display: flex;
    }

    .header-logo img {
        width: 200px;
    }

    .header-logo {
        position: absolute;
        margin-top: 0px;
        margin-left: 0px;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }

    .studiologo_hamburger {
        display: block;
        margin: 0 auto;
        width: clamp(0px, 29.29vw, 300px);
        margin-bottom: clamp(0px, 5.85vw, 60px);
    }

    .hamburger_inner.open {
        visibility: visible;
        left: 0;
        transition: all 0.5s;
    }

    .hamburger_inner ul li a {
        line-height: clamp(0px, 8.59vw, 88px);
        font-size: clamp(0px, 3.125vw, 32px);
    }

    .hamburger_images {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: clamp(0px, 1.95vw, 20px);
        margin-top: clamp(0px, 5.85vw, 60px);
    }

    .x_icon_hamburger {
        width: clamp(0px, 4.49vw, 46px);
    }

    .yt_icon_hamburger {
        width: clamp(0px, 5.46vw, 56px);
    }

    .bluesky_icon_hamburger {
        width: clamp(0px, 5.07vw, 52px);
    }

    .copyright_hamburger {
        font-size: clamp(0px, 1.75vw, 18px);
        margin-top: clamp(0px, 2.92vw, 30px);
    }

    /*フッター*/
    .footer {
        height: 120px;
    }

    .footer_images {
        padding-top: 10px;
    }

    .footer p {
        padding-top: 10px;
        font-size: 13px;
    }

    .footer_logo img {
        width: 200px;
    }

    /*HOMEページ*/
    #svg1 {
        width: clamp(0px, 39.06vw, 400px);
    }

    .body_home {
        padding-bottom: 120px;
    }

    .circles li {
        transform: scale(2) translateY(100%);
        animation: animate_bg 40s linear infinite;
    }

    .circles li:nth-child(2) {
        animation-duration: 47s;
    }

    .circles li:nth-child(4) {
        animation-duration: 31s;
    }

    .circles li:nth-child(7) {
        animation-delay: 9s;
    }

    .circles li:nth-child(8) {
        animation-duration: 83s;
    }

    .circles li:nth-child(9) {
        animation-duration: 63s;
    }

    .circles li:nth-child(10) {
        animation-duration: 35s;
    }

    @keyframes animate_bg {
        0% {
            transform: scale(2) translateY(100%) rotate(0deg);
        }

        100% {
            transform: scale(2) translateY(calc(-65vh - 100%)) rotate(720deg);
            opacity: 0;
        }
    }

    .slider {
        padding-right: clamp(0px, 2.6vw, 50px);
        padding-left: clamp(0px, 2.6vw, 50px);
        height: auto;
        min-height: 400px;
    }

    .slide-wrapper {
        height: auto;
        aspect-ratio: 16/9;
        width: 100%;
    }

    .slide {
        flex: 0 0 100%;
    }

    .slide_contents {
        width: 100%;
    }

    .slide-overlay {
        font-size: clamp(0px, 2.34vw, 24px);
    }

    .prev,
    .next {
        display: none;
    }

    .thumbnails {
        margin-top: clamp(0px, 3.9vw, 40px);
        height: auto;
    }

    .thumb {
        height: auto;
        width: 10%;
    }

    .studio_outline {
        aspect-ratio: 100/45;
    }

    .outline_topic_sub {
        font-size: clamp(0px, 3.71vw, 38px);
    }

    .outline_topic_sub span {
        font-size: clamp(0px, 4.88vw, 50px);
    }

    .outline_topic h2 {
        font-size: clamp(0px, 1.36vw, 14px);
        left: 38%;
    }

    .outline_img {
        margin-top: 0;
    }

    .outline_sentence {
        margin-left: 5%;
    }

    .outline_description {
        font-size: clamp(0px, 1.75vw, 18px);
        width: clamp(0px, 39.06vw, 400px);
    }

    .outline_button {
        font-size: clamp(0px, 1.75vw, 18px);
        width: clamp(0px, 29.29vw, 300px);
        margin-left: 8%;
        padding: clamp(0px, 1.75vw, 18px) 0;
    }

    .gamelist_button {
        font-size: clamp(0px, 1.75vw, 18px);
        width: clamp(0px, 29.29vw, 300px);
        margin-left: 0%;
        padding: clamp(0px, 1.85vw, 19px) 0;
    }

    .gamelist {
        aspect-ratio: 100/45;
    }

    .gamelist_topic_sub {
        font-size: clamp(0px, 4.88vw, 50px);
    }

    .gamelist_topic h2 {
        top: 55%;
    }

    .gamelist_img {
        width: 40%;
    }

    .gamelist_sentence {
        margin-left: clamp(0px, 3.51vw, 36px);
        transform: translateY(0%);
    }

    .gamelist_sentence p {
        font-size: clamp(0px, 1.75vw, 18px);
    }

    .gamelist_content button {
        border: none;
        font-size: clamp(0px, 1.75vw, 18px);
    }

    /*ニュース一覧ページ*/
    .news_topic {
        padding-bottom: clamp(0px, 5.27vw, 54px);
    }

    .news_list {
        margin-top: clamp(0px, 7.81vw, 80px);
        grid-template-columns: repeat(2, 1fr);
    }

    .news_thumbnail_date {
        font-size: clamp(0px, 1.56vw, 16px);
    }

    .news_thumbnail_title {
        font-size: clamp(0px, 1.95vw, 20px);
    }

    .pagination {
        margin-top: clamp(0px, 5.27vw, 54px);
    }

    .body_news {
        padding-bottom: 120px;
    }

    /*ニュース個別記事ページ*/
    .news_topic h1 {
        width: 170px;
        font-size: 40px;
        height: auto;
    }

    .news_topic h1::after {
        width: 170px;
    }

    .news_topic h1::before {
        font-size: 16px;
    }

    .news_article {
        width: 80vw;
    }

    .news_title {
        font-size: 24px;
    }

    .news_body {
        font-size: 18px;
    }

    /*スタジオ紹介ページ*/
    .about_br_pc {
        display: none;
    }

    .about_br_tab {
        display: block;
    }

    .about_topic {
        transform: translateY(-15%);
    }

    .about_topic p:first-of-type {
        font-size: 70px;
    }

    .mission br:nth-child(2) {
        display: block;
    }

    .mission::after {
        top: 140%;
        left: 50%;
    }

    .value::after {
        top: 115%;
        left: 60%;
    }

    .fortab {
        display: block;
    }

    .headline {
        width: 200px;
        font-size: 40px;
        height: auto;
    }

    .headline::before {
        width: 200px;
    }

    .headline::after {
        font-size: 16px;
    }

    .display {
        min-height: 920px;
    }

    .mission h2 {
        font-size: 70px;
    }

    .value_group {
        width: auto;
    }

    .value_flex {
        flex-direction: column;
        transform: none;
        gap: 68px;
        align-items: center;
    }

    .value_topic {
        font-size: 58px;
        margin-bottom: 54px;
    }

    .value_topic::after {
        font-size: 20px;
        bottom: -15%;
    }

    .value_title {
        font-size: 48px;
    }

    .value_title_jp.originality,
    .value_title_jp.paradigm,
    .value_title_jp.playfulness {
        font-size: 20px;
    }

    .value_content {
        font-size: 22px;
        margin-top: 16px;
    }

    .value_content.originality {
        width: 340px;
    }

    .value_content.paradigm {
        width: 400px;
    }

    .value_content.playfulness {
        width: 340px;
    }

    /*Re:Connect紹介ページ*/
    .body_reconnect {
        padding-bottom: 120px;
    }

    .reconnect_hero {
        height: calc(100dvh - 68px);
        max-height: 1400px;
        min-height: 820px;
    }

    .reconnect_hero_flex {
        flex-direction: column;
        transform: translateY(-2%);
    }

    .reconnect_hero_flex_element {
        align-items: center;
        flex-basis: 20%;
    }

    .reconnect_hero_img {
        width: clamp(0px, 68.35vw, 700px);
    }

    .reconnect_hero_sentence {
        width: clamp(0px, 58.59vw, 600px);
    }

    .hero_schedule {
        font-size: clamp(0px, 4.68vw, 48px);
        margin: 20px auto 20px auto;
    }

    .introduction_sentence {
        font-size: clamp(0px, 2.73vw, 28px);
    }

    .small_reconnect {
        font-size: clamp(0px, 2.34vw, 24px);
    }

    .chara_frame {
        width: clamp(0px, 17.57vw, 180px);
        height: clamp(0px, 4.88vw, 50px);
        font-size: clamp(0px, 2.05vw, 21px);
        border-radius: clamp(0px, 2.92vw, 30px);
    }

    .chara_frame1 {
        top: 67%;
        right: 6%;
    }

    .chara_frame2 {
        top: 87%;
        left: 11%;
    }

    .nowrap_pc {
        white-space: normal;
    }

    .introduction_sentence1 {
        margin-top: clamp(0px, 3.71vw, 38px);
        margin-left: clamp(0px, 3.71vw, 38px);
        flex-basis: 46%;
        word-break: normal;
    }

    .introduction_sentence1::before {
        bottom: -6%;
        left: 0%;
        width: clamp(0px, 35.35vw, 362px);
    }

    .introduction_sentence2 {
        word-break: normal;
        flex-basis: 54%;
        margin-right: clamp(0px, 6.83vw, 70px);
    }

    .introduction_sentence2::before {
        width: clamp(0px, 18.75vw, 192px);
        bottom: -7%;
        left: 46%;
    }

    .introduction_sentence3,
    .introduction_sentence4 {
        width: clamp(0px, 73.24vw, 750px);
    }

    .introduction_sentence5 {
        font-size: clamp(0px, 3.125vw, 32px);
    }

    .introduction_br_pc {
        display: none;
    }

    .introduction_br_tab {
        display: block;
    }

    .reconnect_video {
        width: clamp(0px, 68.35vw, 700px);
    }

    .game_elements {
        margin-top: clamp(0px, 9.76vw, 100px);
        padding-bottom: clamp(0px, 8.78vw, 90px);
    }

    .grid_group {
        row-gap: clamp(0px, 14.64vw, 150px);
    }

    .flex_elements,
    .flex_elements_reverse {
        height: clamp(0px, 28.71vw, 294px);
    }

    .frame {
        width: clamp(0px, 48.82vw, 500px);
    }

    .frame_group_right {
        transform: translateY(-16%) translateX(19%);
    }

    .frame_group_left {
        transform: translateY(-16%) translateX(-19%);
    }

    .elements_sentence_title_group {
        height: clamp(0px, 3.125vw, 32px)
    }

    .elements_sentence_title {
        font-size: clamp(0px, 1.56vw, 16px);
    }

    .elements_sentence_topic {
        font-size: clamp(0px, 2.14vw, 22px);
    }

    .elements_sentence_body {
        white-space: nowrap;
        font-size: clamp(0px, 1.75vw, 18px);
    }

    .flex_elements1::before {
        top: -24%;
        left: 69%;
    }

    .flex_elements2::before {
        top: -24%;
        left: 4%;
    }

    .flex_elements3::before {
        top: -24%;
        left: 56.5%;
    }

    .flex_elements4::before {
        top: -24%;
        left: 4%;
    }

    .sentence1::after {
        font-size: clamp(0px, 5.66vw, 58px);
        top: -84%;
        left: 50%;
    }

    .sentence2::after {
        font-size: clamp(0px, 5.66vw, 58px);
        top: -84%;
        left: -2%;
    }

    .sentence3::after {
        font-size: clamp(0px, 5.66vw, 58px);
        top: -84%;
        left: 52%;
    }

    .sentence4::after {
        font-size: clamp(0px, 5.66vw, 58px);
        top: -84%;
        left: -2%;
    }

    .protagonist_introduction {
        width: clamp(0px, 46.875vw, 480px);
        transform: scale(0) translateX(clamp(0px, 2.44vw, 25px)) translateY(clamp(-20px, -1.95vw, 0px));
    }

    .navi_introduction {
        width: clamp(0px, 21.48vw, 220px);
        margin-right: clamp(0px, 6.83vw, 70px);
    }

    @keyframes fadein_intro_protagonist {
        0% {
            transform: scale(0.7) translateX(clamp(0px, 2.44vw, 25px)) translateY(clamp(-20px, -1.95vw, 0px));
            opacity: 0
        }

        65% {
            transform: scale(1.1) translateX(clamp(0px, 2.44vw, 25px)) translateY(clamp(-20px, -1.95vw, 0px));
            opacity: 1
        }

        100% {
            transform: scale(1) translateX(clamp(0px, 2.44vw, 25px)) translateY(clamp(-20px, -1.95vw, 0px));
            opacity: 1
        }
    }

    .sentence_group1 {
        transform: translateX(-13%) translateY(-10%);
    }

    .sentence_group2 {
        transform: translateX(17%) translateY(-8%);
    }

    .sentence_group3 {
        transform: translateX(-14%) translateY(-25%);
    }

    .elements_sentence.sentence1 {
        width: clamp(0px, 37.69vw, 386px);
    }

    .elements_sentence.sentence2 {
        width: clamp(0px, 43.94vw, 450px);
    }

    .elements_sentence.sentence3 {
        width: clamp(0px, 39.55vw, 405px);
    }

    .elements_sentence.sentence4 {
        width: clamp(0px, 43.45vw, 445px);
    }

    .reconnect_introduction_frame {
        width: clamp(0px, 11.71vw, 120px);
    }

    .information {
        height: clamp(0px, 92.77vw, 950px);
    }

    .info_frame {
        width: clamp(0px, 82.03vw, 840px);
        height: clamp(0px, 78.71vw, 806px);
    }

    .info_topic_frame {
        width: clamp(0px, 35.15vw, 360px);
        height: clamp(0px, 14.64vw, 150px);
    }

    .info_topic {
        font-size: clamp(0px, 4.88vw, 50px);
    }

    .info_topic::after {
        width: clamp(0px, 31.25vw, 320px);
    }

    .info_topic::before {
        font-size: clamp(0px, 2.34vw, 24px);
    }

    .info_body {
        font-size: clamp(0px, 1.95vw, 20px);
        margin: clamp(0px, 4.29vw, 44px) auto 0 auto;
        grid-template-columns: clamp(0px, 19.14vw, 196px) 1fr;
    }

    .navi {
        width: 18%;
        transform: translateX(209%) translateY(-51%);
    }

    .bubble {
        width: clamp(0px, 44.72vw, 458px);
        height: clamp(0px, 21.28vw, 218px);
        margin: clamp(0px, 6.83vw, 70px) auto 0 auto;
    }

    .bubble::before {
        left: 60%;
        bottom: -48%;
        border-top: clamp(0px, 11.91vw, 122px) solid #D9D9D9;
        border-right: clamp(0px, 6.05vw, 62px) solid transparent;
        border-left: 0px solid transparent;
        transform: rotate(30deg);
    }

    .steam_access {
        top: 37%;
    }

    .bubble_sentence {
        font-size: clamp(0px, 1.95vw, 20px);
        padding-top: 2%;
    }

    #svg_bubble {
        display: none;
    }

    #svg_bubble_sp {
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        fill: #dadada;
        stroke: #b8adad;
    }

    .steam_logo {
        width: clamp(0px, 10.74vw, 110px);
        left: 5%;
    }

    .steam_access_sentence {
        font-size: clamp(0px, 1.56vw, 16px);
        left: 46%;
    }

    /*お問い合わせページ*/
    .contact_topic {
        width: 200px;
        font-size: 40px;
        height: auto;
    }

    .contact_topic::before {
        width: 200px;
    }

    .contact_topic::after {
        font-size: 16px;
    }

    .contact_br_tab {
        display: block;
    }
}



/* =================== スマホ表示時レスポンシブ設定 =================== */
@media not (min-width: 600px) {
    /*ヘッダー*/
    .wrapper_header {
        line-height: normal;
    }

    .navigation {
        display: none;
    }

    .toggle_menu {
        display: flex;
    }

    .header-logo img {
        width: 160px;
    }

    .header-logo {
        position: absolute;
        margin-top: 0px;
        margin-left: 0px;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }

    .hamburger_inner.open {
        visibility: visible;
        left: 0;
        transition: all 0.5s;
    }

    .hamburger_inner ul li {
        height: clamp(0px, 10.68vw, 64px);
    }

    .hamburger_inner ul li a {
        line-height: clamp(0px, 10.68vw, 64px);
        font-size: clamp(0px, 4.34vw, 26px);
    }

    .accordion_content {
        line-height: normal;
    }

    .accordion_content.is-open {
        height: clamp(0px, 10.68vw, 64px) !important;
    }

    .studiologo_hamburger {
        margin-bottom: clamp(0px, 5.85vw, 60px);
    }

    .hamburger_images {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: clamp(0px, 1.95vw, 20px);
        margin-top: clamp(0px, 5.85vw, 60px);
    }

    .copyright_hamburger {
        margin-top: clamp(0px, 5vw, 30px);
    }

    /*フッター*/
    .footer {
        height: 100px;
    }

    .footer p {
        padding-top: 10px;
        font-size: 12px;
    }

    .footer_images {
        padding-top: 10px;
        gap: 6px;
    }

    .footer_logo img {
        width: 140px;
        margin-right: 12px;
    }

    .x_icon {
        width: 24px;
    }

    .yt_icon {
        width: 30px;
    }

    .bluesky_icon {
        width: 30px;
    }

    .footer_about {
        font-size: 12px;
    }

    /*HOMEページ*/
    :root {
        --slide-width: 744px;
    }

    #svg1 {
        width: clamp(0px, 66.77vw, 400px);
    }

    .body_home {
        padding-bottom: 100px;
    }

    .circles li {
        transform: scale(3) translateY(100%);
        animation: animate_bg 40s linear infinite;
    }

    .circles li:nth-child(2) {
        animation-duration: 47s;
    }

    .circles li:nth-child(4) {
        animation-duration: 31s;
    }

    .circles li:nth-child(7) {
        animation-delay: 9s;
    }

    .circles li:nth-child(8) {
        animation-duration: 83s;
    }

    .circles li:nth-child(9) {
        animation-duration: 63s;
    }

    .circles li:nth-child(10) {
        animation-duration: 35s;
    }

    @keyframes animate_bg {
        0% {
            transform: scale(3) translateY(100%) rotate(0deg);
        }

        100% {
            transform: scale(3) translateY(calc(-65vh - 100%)) rotate(720deg);
            opacity: 0;
        }
    }

    .top_return {
        width: 60px;
        height: 60px;
    }

    .top_return::after {
        width: 20px;
        height: 20px;
        left: 24%;
        top: 22%;
    }

    .top_return::before {
        width: 20px;
        height: 20px;
        left: 24%;
    }

    .slider {
        padding: 20px;
    }

    .slide {
        width: 100%;
        aspect-ratio: 1/1;
        padding: 0;
    }

    .slide_contents {
        width: 100%;
    }

    .slide-overlay {
        font-size: clamp(0px, 4vw, 24px);
    }

    .slide_img {
        display: none;
    }

    .slide_img_sp {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .prev {
        display: none;
    }

    .next {
        display: none;
    }

    .thumb {
        height: 50%;
    }

    .indicator li {
        width: 15%;
    }

    .wrapper_home {
        padding-bottom: clamp(0px, 11.62vw, 70px);
    }

    .studio_outline {
        width: 95%;
        aspect-ratio: 3/4.5;
        margin-top: clamp(0px, 10.66vw, 40px);
    }

    .outline_content {
        flex-direction: column;
        gap: 40px;
        height: 100%;
        justify-content: center;
        border-radius: clamp(0px, 4.17vw, 25px);
    }

    .outline_topic {
        font-size: clamp(0px, 5.33vw, 20px);
    }

    .outline_topic h2 {
        font-size: clamp(0px, 3.73vw, 30px);
        top: 135%;
        left: -179%;
    }

    .outline_topic_sub {
        font-size: clamp(0px, 8.37vw, 54px);
        left: -180%;
        top: -100%;
    }

    .outline_topic_sub span {
        font-size: clamp(0px, 11.16vw, 64px);
    }

    .outline_img {
        width: 85%;
        height: clamp(0px, 53vw, 300px);
        margin-left: 5%;
    }

    .outline_sentence {
        margin: 0;
        align-items: center;
    }

    .outline_description {
        font-size: clamp(0px, 4vw, 24px);
        padding-right: 8%;
        padding-left: 12%;
        width: clamp(0px, 93.48vw, 560px);
        margin-left: clamp(0px, 2vw, 12px);
    }

    .outline_description br {
        display: none;
    }

    .outline_button {
        font-size: clamp(0px, 4vw, 24px);
        border-width: clamp(0px, 1.06vw, 4px);
        width: clamp(0px, 70.11vw, 420px);
        border-radius: clamp(0px, 1.66vw, 10px);
        padding: clamp(0px, 4.5vw, 27px) 0;
    }

    .ornament.t1 {
        width: clamp(0px, 16.69vw, 100px);
        border-radius: 50%;
        top: 95%;
        left: 61%;
        animation-delay: 1s;
        border-color: #e89191;
    }

    .ornament.t2 {
        width: 50px;
        border-radius: 10%;
        top: 80%;
        left: 80%;
        display: none;
    }

    .ornament.t3 {
        width: clamp(0px, 13.35vw, 80px);
        border-radius: 50%;
        top: 91%;
        left: 54%;
        border-color: #5557bf;
        opacity: 1;
    }

    .ornament.t4 {
        width: clamp(0px, 13.35vw, 80px);
        border-radius: 10%;
        top: 47%;
        left: 7%;
        border-color: #5557bf;
        opacity: 1;
    }

    .ornament.t5 {
        width: clamp(0px, 10.01vw, 60px);
        border-radius: 50%;
        top: 8%;
        left: 15%;
        animation-delay: 1s;
        border-color: #e89191;
        opacity: 1;
    }

    .ornament.t6 {
        width: clamp(0px, 10.01vw, 60px);
        border-radius: 10%;
        top: 27%;
        left: 87%;
        animation-delay: 0.3s;
    }

    .ornament.t7 {
        width: 70px;
        border: 2px solid #cba95b;
        border-radius: 50%;
        top: 86%;
        left: 94%;
        opacity: 1;
        display: none;
    }

    .ornament.t8 {
        width: 100px;
        border-radius: 50%;
        top: 50%;
        left: 65%;
        display: none;
    }

    .ornament.t9 {
        width: clamp(0px, 15.02vw, 90px);
        border-radius: 10%;
        top: 17%;
        left: 49%;
        animation-delay: 1s;
    }

    .ornament.t10 {
        width: clamp(0px, 15.02vw, 90px);
        border-radius: 10%;
        top: 75%;
        left: 79%;
        animation-delay: 0.5s;
    }

    .ornament.t11 {
        width: 90px;
        border-radius: 10%;
        top: 72%;
        left: 18%;
        animation-delay: 1s;
        display: none;
    }

    .ornament.t12 {
        width: clamp(0px, 10.01vw, 60px);
        border-radius: 10%;
        top: 84%;
        left: 9%;
        animation-delay: 1s;
    }

    .ornament.t13 {
        width: clamp(0px, 26.71vw, 160px);
        border-radius: 50%;
        top: -10%;
        left: 64%;
        animation-delay: 1s;
        border-color: #4ffaff;
    }

    .ornament.t14 {
        width: clamp(0px, 6.67vw, 40px);
        border-radius: 10%;
        top: 54%;
        left: 86%;
        animation-delay: 1s;
        border-color: #cba95b;
    }

    .gamelist {
        width: 95%;
        aspect-ratio: 3/4.5;
        padding-bottom: clamp(0px, 8vw, 30px);
        border-radius: clamp(0px, 4.17vw, 25px);
    }

    .gamelist_topic {
        top: 4%;
        left: 50%;
        transform: translateX(-50%);
    }

    .gamelist_topic_sub {
        font-size: clamp(0px, 10.01vw, 60px);
        line-height: clamp(0px, 10.01vw, 60px);
    }

    .gamelist_topic h2 {
        position: static;
        text-align: center;
        font-size: clamp(0px, 3.67vw, 22px);
    }

    .gamelist_topic:before {
        font-size: clamp(0px, 3.73vw, 14px);
        bottom: -22%;
        left: 50%;
        transform: translateX(-50%);
    }

    .background-video {
        width: auto;
    }

    .gamelist_content {
        flex-direction: column;
    }

    .gamelist_img {
        width: 85%;
        margin-left: 5%;
        margin-top: 0;
    }

    .gamelist_sentence {
        margin-left: 0px;
        margin-top: clamp(0px, 2.67vw, 16px);
    }

    .gamelist_sentence P {
        width: 90%;
        font-size: clamp(0px, 3.33vw, 20px);
        margin-right: 4.5%;
    }

    .gamelist_button {
        font-size: clamp(0px, 4vw, 24px);
        width: clamp(0px, 70.11vw, 420px);
        margin-right: 4.5%;
        margin-top: 5%;
        border-radius: clamp(0px, 1.66vw, 10px);
        padding: clamp(0px, 4.5vw, 27px) 0;
    }

    /*ニュース一覧ページ*/
    .news_topic {
        margin-top: 22px;
        padding-bottom: clamp(0px, 6.67vw, 40px);
    }

    .news_topic h1 {
        font-size: 36px;
        width: 150px;
    }

    .news_topic h1::before {
        font-size: 14px;
    }

    .news_topic h1::after {
        font-size: 150px;
    }

    .news_list {
        margin-top: clamp(0px, 13.35vw, 80px);
        grid-template-columns: repeat(1, 1fr);
        gap: clamp(0px, 6.67vw, 40px) clamp(0px, 6.67vw, 40px);
    }

    .news_thumbnail_date {
        font-size: clamp(0px, 3.17vw, 19px);
    }

    .news_thumbnail_title {
        font-size: clamp(0px, 4vw, 24px);
    }

    .body_news {
        padding-bottom: 100px;
    }

    .pagination {
        margin: clamp(0px, 6.67vw, 40px) auto 0 auto;
    }

    /*ニュース個別記事*/
    .news_article {
        width: 100vw;
    }

    .main_img {
        width: 100%;
    }

    .news_date {
        font-size: 14px;
    }

    .news_title {
        font-size: 16px;
    }

    .news_body {
        font-size: 14px;
    }

    /*スタジオ紹介ページ*/
    .about_topic {
        transform: translateY(-10%);
    }

    .about_topic p:first-of-type {
        font-size: 44px;
        margin-bottom: 8px;
    }

    .about_topic span {
        font-size: 28px;
    }

    .headline {
        width: 174px;
        font-size: 36px;
    }

    .headline::before {
        width: 174px;
    }

    .headline::after {
        font-size: 14px;
    }

    .about_topic p:last-of-type {
        font-size: 16px;
        margin-top: 8px;
    }

    .about_br_pc {
        display: none;
    }

    .value::after {
        font-size: 64px;
        top: 115%;
        left: 44%;
    }

    .mission::after {
        content: "Mission";
        font-size: 64px;
        font-weight: bold;
        color: transparent;
        text-shadow: none;
        -webkit-text-stroke: 0.6px #D8D6F2;
        position: absolute;
        top: 150%;
        left: 45%;
        line-height: 1;
    }

    .mission p {
        font-size: 18px;
        padding-left: 0;
    }

    .mission br:nth-child(1) {
        display: block;
    }

    .mission br:nth-child(3) {
        display: block;
    }

    .mission h3 {
        font-size: 170%;
    }

    .mission_value img {
        scale: 0.7;
        transform: translateY(-15%);
    }

    .next_button {
        display: none !important;
    }

    .prev_button {
        display: none !important;
    }

    .wrapper_about {
        padding-left: 15px;
        padding-right: 15px;
    }

    .display {
        min-height: 700px;
    }

    .mission h2 {
        font-size: 48px;
    }

    .value_group {
        width: auto;
    }

    .value_flex {
        flex-direction: column;
        transform: none;
        gap: clamp(0px, 8.01vw, 40px);
        align-items: center;
    }

    .value_topic {
        font-size: 48px;
        margin-bottom: clamp(0px, 13.62vw, 68px);
    }

    .value_topic::after {
        font-size: 16px;
        bottom: -22%;
    }

    .value_title {
        font-size: 34px;
    }

    .value_title_jp.originality,
    .value_title_jp.paradigm,
    .value_title_jp.playfulness {
        font-size: 12px;
    }

    .value_content {
        font-size: 14px;
        margin-top: 18px;
    }

    .value_content.originality {
        width: 200px;
    }

    .value_content.paradigm {
        width: 130px;
    }

    .value_content.playfulness {
        width: 144px;
    }

    .value_flex {
        flex-direction: column;
        transform: none;
        gap: 40px;
        align-items: center;
    }

    .value_topic {
        font-size: 48px;
        margin-bottom: 68px;
    }

    .value_topic::after {
        font-size: 16px;
        bottom: -22%;
    }

    .value_title {
        font-size: 34px;
    }

    .value_title_jp.originality,
    .value_title_jp.paradigm,
    .value_title_jp.playfulness {
        font-size: 12px;
    }

    .value_content {
        font-size: 14px;
    }

    .value_content.originality {
        width: 220px;
    }

    .value_content.paradigm {
        width: 250px;
    }

    .value_content.playfulness {
        width: 220px;
    }

    /*ゲーム紹介ページ*/
    .body_reconnect {
        padding-bottom: 100px;
    }

    .introduction_reconnect {
        margin-top: clamp(0px, 20.03vw, 120px);
    }

    .reconnect_hero {
        height: calc(100svh - 68px);
        max-height: 1200px;
    }

    .reconnect_hero_flex {
        flex-direction: column;
        transform: translateY(-2%);
    }

    .reconnect_hero_flex_element {
        align-items: center;
        flex-basis: 15%;
    }

    .reconnect_hero_img {
        width: clamp(0px, 81.39vw, 488px);
    }

    .reconnect_hero_sentence {
        width: clamp(0px, 69.76vw, 418px);
    }

    .protagonist_introduction {
        transform: translateY(-20%);
        width: clamp(0px, 83.47vw, 500px);
        position: static;
        margin-left: clamp(0px, 26.71vw, 160px);
    }

    @keyframes fadein_intro_protagonist {
        0% {
            transform: scale(0.7) translateY(-20%);
            opacity: 0
        }

        65% {
            transform: scale(1.1) translateY(-20%);
            opacity: 1
        }

        100% {
            transform: scale(1) translateY(-20%);
            opacity: 1
        }
    }

    .navi_introduction {
        position: static;
        width: clamp(0px, 33.38vw, 200px);
        margin-right: clamp(0px, 46.74vw, 280px);
    }

    .introduction_flex_element {
        flex-direction: column-reverse;
        flex-basis: auto;
        transform: translateY(-10%);
    }

    .introduction_flex_element2 {
        gap: clamp(0px, 13.35vw, 80px);
    }

    .reconnect_hero_flex {
        flex-direction: column;
    }

    .introduction_sentence {
        font-size: clamp(0px, 4vw, 24px);
    }

    .introduction_sentence span {
        font-size: inherit;
    }

    .introduction_sentence1 {
        white-space: normal;
        word-break: normal;
        margin-left: 0;
        width: 72%;
    }

    .fadein_introduction_sentence1 {
        transform: translateX(-80px) translateY(clamp(-58px, -9.68vw, 0px));
    }

    .fadein_introduction_sentence1.animate {
        transform: translateX(0px) translateY(clamp(-58px, -9.68vw, 0px));
        opacity: 1;
    }

    .introduction_sentence1::before {
        display: none;
    }

    .reconnect_highlight_1::before {
        height: clamp(0px, 1.33vw, 8px);
    }

    .introduction_sentence2 {
        white-space: normal;
        word-break: normal;
        margin-right: 0;
        width: 80%;
    }

    .introduction_sentence2::before {
        display: none;
    }

    .reconnect_highlight_2::before {
        height: clamp(0px, 1.33vw, 8px);
    }

    .introduction_sentence3,
    .introduction_sentence4,
    .introduction_sentence5 {
        white-space: normal;
        width: 90%;
    }

    .introduction_br_tab {
        display: block;
    }

    .introduction_sentence3 {
        margin-top: clamp(0px, 8.34vw, 50px);
    }

    .introduction_sentence5 {
        margin-top: clamp(0px, 13.35vw, 80px);
        font-size: clamp(0px, 5.34vw, 32px);
    }

    .reconnect_video {
        width: clamp(0px, 83.47vw, 500px);
        border-width: clamp(0px, 1.33vw, 8px);
    }

    .chara_frame {
        width: clamp(0px, 33.38vw, 200px);
        height: clamp(0px, 8.34vw, 50px);
        border-radius: clamp(0px, 4.17vw, 25px);
        font-size: clamp(0px, 3vw, 18px);
        top: 42%;
        left: 8.5%;
        border-width: clamp(0px, 0.66vw, 4px);
    }

    .chara_frame1 {
        top: 42%;
        left: 60%;
    }

    .flex_elements {
        flex-direction: column;
        gap: 0px 0px;
        justify-content: flex-start;
        height: clamp(0px, 113.52vw, 680px);
        width: 85%;
        transform: translateX(17.5%);
    }

    .flex_elements_reverse {
        justify-content: flex-start;
        height: clamp(0px, 113.52vw, 680px);
        flex-direction: column;
        gap: 20px 0px;
        width: 85%;
        transform: translateX(0%);
    }

    .sentence_group1,
    .sentence_group2,
    .sentence_group3,
    .sentence_group4 {
        transform: none;
    }

    .break_pc {
        display: none;
    }

    .break_sp {
        display: block;
    }

    .game_elements {
        padding-bottom: clamp(0px, 13.35vw, 80px);
    }

    .grid_group {
        margin-top: clamp(0px, 21.7vw, 130px);
        row-gap: clamp(0px, 25.04vw, 150px);
    }

    .frame1,
    .frame2,
    .frame3,
    .frame4 {
        margin-top: clamp(0px, 9.01vw, 54px);
    }

    .frame_group_left {
        transform: translateY(-12%) translateX(0.2%);
    }

    .frame_group_right {
        transform: translateY(-12%) translateX(-0.2%);
    }

    .flex_elements1::before {
        font-size: clamp(0px, 11.68vw, 70px);
        top: -14%;
        left: 37%;
    }

    .flex_elements2::before {
        font-size: clamp(0px, 10.35vw, 62px);
        top: -12.5%;
        left: 1%;
    }

    .flex_elements3::before {
        font-size: clamp(0px, 11.68vw, 70px);
        top: -14%;
        left: 8.5%;
    }

    .flex_elements4::before {
        font-size: clamp(0px, 11.68vw, 70px);
        top: -14%;
        left: 1%;
    }

    .elements_sentence {
        padding-bottom: clamp(0px, 18.36vw, 110px);
    }

    .elements_sentence_title_group {
        height: clamp(0px, 6.01vw, 36px);
        margin-bottom: clamp(0px, 4vw, 24px);
    }

    .elements_sentence_topic {
        font-size: clamp(0px, 4vw, 24px);
    }

    .elements_sentence.sentence1 {
        width: clamp(0px, 69.44vw, 416px);
    }

    .elements_sentence.sentence2 {
        width: clamp(0px, 69.44vw, 416px);
    }

    .elements_sentence.sentence3 {
        width: clamp(0px, 73.45vw, 440px);
    }

    .elements_sentence.sentence4 {
        width: clamp(0px, 73.45vw, 440px);
    }

    .inner {
        border-radius: 15px;
    }

    .frame {
        width: 95%;
        padding: clamp(0px, 1.33vw, 8px);
        border-radius: 20px;
    }

    .frame::before {
        height: clamp(10px, 20vw, 235px);
        border-left: clamp(1px, 3vw, 32px) solid #D9D9D9;
        border-top: clamp(1px, 2vw, 32px) solid transparent;
        border-bottom: clamp(1px, 2vw, 32px) solid transparent;
        left: 99.5%;
    }

    .frame::after {
        height: clamp(10px, 20vw, 235px);
        border-right: clamp(1px, 3vw, 32px) solid #D9D9D9;
        border-top: clamp(1px, 2vw, 32px) solid transparent;
        border-bottom: clamp(1px, 2vw, 32px) solid transparent;
    }

    .sentence1::after {
        top: 18%;
        left: -43%;
        font-size: clamp(0px, 14.85vw, 89px);
        transform: rotateZ(-90deg);
    }

    .sentence1::before {
        display: none;
    }

    .sentence2::after {
        top: -74%;
        left: 41%;
        font-size: clamp(0px, 14.85vw, 89px);
        transform: rotateZ(-90deg);
    }

    .sentence2::before {
        display: none;
    }

    .sentence3::after {
        top: 18%;
        left: -43%;
        font-size: clamp(0px, 14.85vw, 89px);
        transform: rotateZ(-90deg);
    }

    .sentence3::before {
        display: none;
    }

    .sentence4::after {
        top: 28%;
        left: 80%;
        font-size: clamp(0px, 14.85vw, 89px);
        transform: rotateZ(-90deg);
    }

    .sentence4::before {
        display: none;
    }

    .elements_sentence_body br {
        display: none;
    }

    .information {
        height: auto;
    }

    .info_frame {
        width: clamp(0px, 97.66vw, 585px);
        height: auto;
        border-width: clamp(0px, 1vw, 6px);
        border-radius: clamp(0px, 3.33vw, 20px);
        padding-bottom: clamp(0px, 17.52vw, 105px);
    }

    .info_body {
        margin: clamp(0px, 13.35vw, 80px) auto 0 auto;
        font-size: clamp(0px, 3.67vw, 22px);
        grid-template-columns: clamp(0px, 30.05vw, 180px) clamp(0px, 46.74vw, 280px);
        gap: 0px clamp(0px, 3.33vw, 20px);
    }

    .info_topic_frame {
        width: clamp(0px, 66.77vw, 400px);
        height: clamp(0px, 17.02vw, 102px);
    }

    .info_topic {
        font-size: clamp(0px, 8.34vw, 50px);
        padding-top: clamp(0px, 3.33vw, 20px);
    }

    .info_topic::after {
        width: clamp(0px, 54.09vw, 324px);
    }

    .info_topic::before {
        font-size: clamp(0px, 3.67vw, 22px);
    }

    #svg_bubble {
        display: none;
    }

    #svg_bubble_sp {
        display: block;
        fill: #dadada;
        stroke: #b8adad;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
    }

    .navi {
        position: absolute;
        top: 80%;
        left: 32%;
        display: block;
        width: 25%;
        transform: none;
    }

    .bubble {
        width: clamp(0px, 84.14vw, 540px);
        height: clamp(0px, 40.06vw, 240px);
        border-radius: 10px;
        margin-top: clamp(0px, 10.01vw, 60px);
        aspect-ratio: 8/3;
    }

    .bubble::before {
        left: 60%;
        bottom: -30%;
        border-top: 12vw solid #D9D9D9;
        border-right: 6vw solid transparent;
        border-left: 0px solid transparent;
        transform: rotate(30deg);
    }

    .bubble_sentence {
        font-size: clamp(0px, 3.67vw, 22px);
        padding-top: 2%;
    }

    .steam_access {
        width: 69%;
        top: 35%;
    }

    .steam_logo {
        width: clamp(0px, 23.7vw, 142px);
        left: 5%;
    }

    .steam_access_sentence {
        font-size: clamp(0px, 3vw, 18px);
        left: 48%;
    }

    /*お問い合わせページ*/
    .contact_body {
        font-size: 16px;
    }

    .contact_br_tab {
        display: none;
    }

    .contact_br_sp {
        display: block;
    }

    .mail_icon {
        width: 48px;
    }

    .contact_topic {
        font-size: 36px;
        width: 174px;
    }

    .contact_topic::before {
        width: 174px;
    }

    .contact_topic::after {
        font-size: 14px;
    }

}



/* =================== スマホ(399px以下)表示時レスポンシブ設定(スタジオ紹介ページ専用) =================== */
@media (orientation: portrait) and (max-width: 399px) {
    /*スタジオ紹介ページ*/
    .display {
        min-height: 540px;
    }

    .mission h2 {
        font-size: 48px;
    }

    .value_flex {
        gap: 42px;
    }

    .value_topic {
        font-size: 44px;
        margin-bottom: 36px;
    }

    .value_topic::after {
        font-size: 16px;
    }

    .value_title {
        font-size: 30px;
    }

    .value_title_jp.originality,
    .value_title_jp.paradigm,
    .value_title_jp.playfulness {
        font-size: 12px;
    }

    .value_content {
        font-size: 14px;
        margin-top: 14px;
    }

    .value_content.originality {
        width: 220px;
    }

    .value_content.paradigm {
        width: 240px;
    }

    .value_content.playfulness {
        width: 216px;
    }

    .value {
        transform: translateY(-26px);
    }
    
}



/* =================== スマホ(399px以下)表示時レスポンシブ設定 =================== */
@media (max-width: 380px) {
    /*スタジオ紹介ページ*/
    .wrapper_about {
        padding-left: 15px;
        padding-right: 15px;
    }

    .value {
        width: 95vw;
    }

    .forsp {
        display: block;
    }

    .value::after {
        font-size: 64px;
        top: 105%;
        left: 44%;
    }

    /*お問い合わせページ*/
    .contact_body {
        font-size: 14px;
    }

    .mail_button {
        width: 280px;
    }

    .mail_sentence {
        font-size: 14px;
    }

}