@charset "UTF-8";
:root {
    --color-accent: #f5a100;
}
/* reset
-------------------------------------------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    min-block-size: 100svb;
    min-height: 100svh;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
p, h1, h2, h3, h4, h5, h6, li {
    font-weight: 400;
    overflow-wrap: break-word;
}
th, td {
    font-weight: 400;
}
ul, ol {
    list-style: none;
}
img, svg, video {
    display: block;
    max-width: 100%;
}
input, button, textarea, select {
    font-family: inherit;
    color: inherit;
    max-width: 100%;
    border: none;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
a {
    text-decoration: none;
}
/* common
-------------------------------------------------------------------------------- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 10vw;
}
body {
    font-family: "noto-sans-cjk-jp", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 3.5vw;
    background-color: #000;
    color: #fff;
}
.a-otf-ud-shin {
    font-family: a-otf-ud-shin-go-pr6n, sans-serif;
    font-weight: 300;
    font-style: normal;
}
.corporate-logo {
    font-family: corporate-logo-ver2, sans-serif;
    font-weight: bold;
}
.bg_white {
    background-color: #f4f4f4;
    color: #000;
}
.bg_white a {
    color: #000;
}
a {
    color: #fff;
}
.inner {
    width: 88%;
    max-width: 768px;
    margin-inline: auto;
}
header, main, footer {
    max-width: 768px;
    margin-inline: auto;
}
.emmerge {
    -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    transition: 0.5s;
}
.emmerge._on {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.emmerge_circle {
    -webkit-clip-path: circle(0%);
    clip-path: circle(0%);
    transition: -webkit-clip-path 1s;
    transition: clip-path 1s;
    transition: clip-path 1s, -webkit-clip-path 1s;
}
.emmerge_circle._on {
    -webkit-clip-path: circle(100%);
    clip-path: circle(100%);
}
.star {
    list-style-type: "★";
    margin-left: 1rem;
    margin-bottom: 5vw;
}
.star li {
    font-weight: bold;
    padding-left: 0.25rem;
}
.href a {
    display: block;
    margin-bottom: 2.5vw;
}
.deco3 {
    color: var(--color-accent);
    font-size: 4.5vw;
    font-weight: bold;
    letter-spacing: 0.25vw;
    transform: scaleY(1.1);
    line-height: 0.8;
    text-align: center;
}
.deco3::before, .deco3::after {
    content: ">>>";
    display: inline-block;
    font-weight: normal;
    transform: scaleX(0.666);
    letter-spacing: 0.3vw;
    margin: 0 1vw;
}
._hr {
    -webkit-clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
    clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
    transition: -webkit-clip-path 1s;
    transition: clip-path 1s;
    transition: clip-path 1s, -webkit-clip-path 1s;
}
._hr._on {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
/* header
-------------------------------------------------------------------------------- */
header {
    padding: 10vw 0 15vw;
}
header ._txt {
    text-align: center;
    margin-bottom: 5vw;
}
header ._txt h1 {
    position: relative;
    display: inline-block;
    line-height: 1.4;
    font-size: 5.25vw;
}
header ._txt h1::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
    -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    transition: -webkit-clip-path 0.25s;
    transition: clip-path 0.25s;
    transition: clip-path 0.25s, -webkit-clip-path 0.25s;
    bottom: 0;
}
header ._txt h1._on::before {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
header ._logo {
    margin-bottom: 2vw;
    transition-delay: 0.5s;
}
header ._img {
    position: relative;
    -webkit-clip-path: polygon(0 14.5vw, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 14.5vw, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
}
header ._img ._character {
    transition-delay: 0.75s;
}
header ._img ._hr {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transition-delay: 1s;
    transform: scaleX(1.01);
}
header ._img ._period {
    position: absolute;
    bottom: 4vw;
    left: -5vw;
    width: 46.5vw;
    transition-delay: 0.75s;
}
header nav {
    position: relative;
    background-color: #000;
    margin-top: -1px;
    padding-top: 5px;
}
header nav .inner {
    width: 80%;
}
header nav .inner ul li {
    margin-bottom: 5vw;
}
header nav .inner ul li a {
    display: block;
}
/* collab
-------------------------------------------------------------------------------- */
#collab_menu {
    padding-bottom: 7.5vw;
}
#collab_menu ._head {
    margin-bottom: 10vw;
}
#collab_menu ._body .inner {
    width: 80%;
}
#collab_menu ._body .inner ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 5vw;
}
#collab_menu ._body .inner ul li {
    width: 46%;
}
#collab_menu ._body .inner ul li a {
    display: block;
}
#collab_menu ._body .inner ul li:nth-child(2n) {
    transition-delay: 0.25s;
}
#collab_present {
    padding-bottom: 1.5vw;
}
.collab_item {
    padding-top: 8.5vw;
}
.collab_item ._hr {
    margin-top: 8vw;
    overflow: hidden;
    width: 100%;
}
.collab_item ._hr img {
    transform: scaleX(1.01);
}
/* apply
-------------------------------------------------------------------------------- */
#apply {
    margin-bottom: 20vw;
    background-color: #000;
    margin-top: -1px;
}
#apply ._head {
    margin-bottom: 8vw;
}
#apply ._period {
    margin-bottom: 5vw;
}
#apply ._period ._item {
    text-align: center;
    margin-bottom: 4vw;
}
#apply ._period ._item p {
    font-size: 4vw;
    font-weight: bold;
}
#apply ._period ._item p span {
    font-size: 6vw;
    letter-spacing: 0.25vw;
    margin: 0 0.5vw;
}
#apply ._period ._item p._note {
    text-align: right;
    font-size: 2.5vw;
    font-weight: normal;
    margin-right: 5vw;
}
#apply ._prize .inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    -moz-column-gap: 5%;
    column-gap: 5%;
    row-gap: 4vw;
    margin-bottom: 7.5vw;
}
#apply ._prize .inner ._item {
    position: relative;
}
#apply ._prize .inner ._item._a ._order {
    width: 22.5vw;
    top: -5vw;
    left: -4vw;
}
#apply ._prize .inner ._item._b, #apply ._prize .inner ._item._c {
    width: 47.5%;
}
#apply ._prize .inner ._item._c ._order {
    transition-delay: 0.25s;
}
#apply ._prize .inner ._item img {
    border-radius: 2.5vw;
}
#apply ._prize .inner ._item img._order {
    position: absolute;
    top: -3vw;
    left: -3vw;
    width: 17.5vw;
    border-radius: 0;
}
#apply ._txt {
    margin-bottom: 12.5vw;
}
#apply ._txt ._item {
    margin-bottom: 10vw;
}
#apply ._txt ._item h3 {
    margin-bottom: 5vw;
}
#apply ._txt ._item p {
    font-weight: bold;
}
#apply ._txt ._item p ._note {
    font-size: 3vw;
}
#apply ._txt ._item._howto h4 {
    font-size: 2.5vw;
    font-weight: bold;
    margin-bottom: 0.75vw;
}
#apply ._txt ._item._howto ul._note {
    list-style-type: "＊";
    font-size: 2vw;
    margin-left: 0.5rem;
}
#apply ._txt ._item._howto ul._note li {
    padding-left: 0.5vw;
    font-weight: bold;
    margin-bottom: 0.75vw;
}
#apply ._txt ._item._announce h4 {
    font-size: 2.75vw;
    font-weight: bold;
    margin-bottom: 0.75vw;
    text-align: center;
}
#apply ._txt ._item._announce p {
    font-size: 2.15vw;
    font-weight: bold;
    line-height: 1.8;
}
/* panel
-------------------------------------------------------------------------------- */
#panel ._head ._aiming {
    width: 25vw;
    margin: 0 auto 7.5vw;
}
#panel ._period {
    text-align: center;
    margin-bottom: 10vw;
}
#panel ._period h3 {
    letter-spacing: 2vw;
    margin-bottom: 2.5vw;
}
#panel ._period p {
    font-size: 4vw;
    font-weight: bold;
}
#panel ._period p span {
    font-size: 6vw;
    letter-spacing: 0.25vw;
    margin: 0 0.5vw;
}
#panel ._img {
    margin-bottom: 6.66vw;
    border-radius: 3vw;
    overflow: hidden;
}
#panel ._img .swiper-wrapper {
    transition-timing-function: ease-in-out !important;
}
#panel ._img .swiper-slide {
    height: auto;
}
#panel ._img .swiper-slide ._item {
    transition-delay: 1.5s;
    transition-duration: 1.5s;
    height: 100%;
    -webkit-clip-path: polygon(-50% 0%, 0% 0%, -50% 100%, -100% 100%);
    clip-path: polygon(-50% 0%, 0% 0%, -50% 100%, -100% 100%);
    overflow: hidden;
}
#panel ._img .swiper-slide ._item img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#panel ._img .swiper-slide.swiper-slide-active ._item {
    transition-delay: 0s;
    -webkit-clip-path: polygon(0% 0%, 150% 0%, 100% 100%, -50% 100%);
    clip-path: polygon(0% 0%, 150% 0%, 100% 100%, -50% 100%);
}
#panel ._img .swiper-pagination-bullet {
    background-color: #959595;
}
#panel .href {
    margin-bottom: 6.66vw;
}
/* about_cityhunter
-------------------------------------------------------------------------------- */
#about_cityhunter .inner {
    padding-top: 15vw;
}
#about_cityhunter .inner ._head img {
    width: 40vw;
    margin: 0 auto 12.5vw;
}
#about_cityhunter .inner ._body {
    margin-bottom: 12.5vw;
}
#about_cityhunter .inner ._copy {
    font-size: 3vw;
    text-align: center;
}
#about_cityhunter ._hr {
    margin-top: 2.5vw;
    width: 100%;
    overflow: hidden;
}
#about_cityhunter ._hr img {
    transform: scale(1.01);
}
/* footer
-------------------------------------------------------------------------------- */
footer ._contact {
    text-align: center;
    margin-bottom: 7.5vw;
}
footer ._contact h3 {
    font-weight: bold;
    font-size: 3.5vw;
    margin-bottom: 1.5vw;
}
footer ._contact p {
    font-weight: bold;
}
footer ._contact p>span {
    font-size: 2.75vw;
}
footer ._contact a {
    font-size: 5vw;
}
footer ._logo a img {
    width: 40vw;
    margin: 0 auto 10vw;
}
footer .href {
    margin-bottom: 15vw;
}
footer .href ul {
    text-align: center;
}
footer .href ul li a {
    font-size: 3vw;
    font-weight: bold;
    color: #a3a3a3;
}
footer ._copyright {
    font-size: 2.75vw;
    margin-bottom: 2.5vw;
}
#page_top {
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 17.5vw;
    z-index: 1;
}
#page_top a {
    display: block;
}
@media (width > 768px) {
    /* common
  -------------------------------------------------------------------------------- */
    html {
        scroll-padding-top: 10rem;
    }
    body {
        font-size: 1.25rem;
        background-image: url(../img/bg.png);
        background-position: center;
        background-repeat: repeat-y;
        background-size: 2560px;
    }
    .bg_white a {
        color: #000;
    }
    a {
        transition: 0.5s;
    }
    a:hover {
        filter: grayscale(1);
    }
    header, main, footer {
        max-width: 768px;
        margin-inline: auto;
    }
    .star {
        margin-bottom: 2rem;
    }
    .star li {
        padding-left: 0.25rem;
    }
    .href a {
        margin-bottom: 1.5rem;
    }
    .deco3 {
        color: var(--color-accent);
        font-size: 2rem;
        letter-spacing: 0.15rem;
    }
    .deco3::before, .deco3::after {
        letter-spacing: 0.1rem;
        margin: 0 0.5rem;
    }
    /* header
  -------------------------------------------------------------------------------- */
    header {
        padding: 5rem 0 5rem;
    }
    header ._txt {
        margin-bottom: 2.5rem;
    }
    header ._txt h1 {
        font-size: 2.5rem;
    }
    header ._txt h1::before {
        height: 2px;
    }
    header ._logo {
        margin-bottom: 2rem;
        transition-delay: 0.5s;
    }
    header ._img {
        -webkit-clip-path: polygon(0 5rem, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 5rem, 100% 0, 100% 100%, 0 100%);
    }
    header ._img ._hr {
        transition-delay: 0.25s;
    }
    header ._img ._period {
        bottom: 2rem;
        left: -2rem;
        width: 24rem;
        transition-delay: 0s;
    }
    header nav .inner ul li {
        margin-bottom: 2.5rem;
    }
    /* collab
  -------------------------------------------------------------------------------- */
    #collab_menu {
        padding-bottom: 3.5rem;
    }
    #collab_menu ._head {
        margin-bottom: 5rem;
    }
    #collab_menu ._body .inner {
        width: 80%;
    }
    #collab_menu ._body .inner ul {
        row-gap: 2rem;
    }
    #collab_menu ._body .inner ul li a {
        display: block;
    }
    #collab_menu ._body .inner ul li a:hover {
        filter: brightness(1.25);
    }
    #collab_menu ._body .inner ul li:nth-child(2n) {
        transition-delay: 0.25s;
    }
    #collab_present {
        padding-bottom: 1.5rem;
    }
    .collab_item {
        padding-top: 4rem;
    }
    .collab_item ._hr {
        margin-top: 4rem;
    }
    /* apply
  -------------------------------------------------------------------------------- */
    #apply {
        margin-bottom: 10rem;
    }
    #apply ._head {
        margin-bottom: 4rem;
    }
    #apply ._period {
        margin-bottom: 3rem;
    }
    #apply ._period ._item {
        margin-bottom: 2.5rem;
    }
    #apply ._period ._item p {
        font-size: 2rem;
    }
    #apply ._period ._item p span {
        font-size: 3rem;
        letter-spacing: 0.125rem;
        margin: 0 0.25rem;
    }
    #apply ._period ._item p._note {
        font-size: 1rem;
        margin-right: 2.5rem;
    }
    #apply ._prize .inner {
        -moz-column-gap: 5%;
        column-gap: 5%;
        row-gap: 2rem;
        margin-bottom: 3.5rem;
    }
    #apply ._prize .inner ._item._a ._order {
        width: 10rem;
        top: -2.5rem;
        left: -3rem;
    }
    #apply ._prize .inner ._item._b, #apply ._prize .inner ._item._c {
        width: 47.5%;
    }
    #apply ._prize .inner ._item._c ._order {
        transition-delay: 0.25s;
    }
    #apply ._prize .inner ._item img {
        border-radius: 1rem;
    }
    #apply ._prize .inner ._item img._order {
        top: -1.5rem;
        left: -2rem;
        width: 7.5rem;
    }
    #apply ._txt {
        margin-bottom: 6rem;
    }
    #apply ._txt ._item {
        margin-bottom: 4rem;
    }
    #apply ._txt ._item h3 {
        margin-bottom: 2rem;
    }
    #apply ._txt ._item p {
        font-weight: bold;
    }
    #apply ._txt ._item p ._note {
        font-size: 1rem;
    }
    #apply ._txt ._item._howto h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    #apply ._txt ._item._howto ul._note {
        font-size: 0.9rem;
        margin-left: 0.5rem;
    }
    #apply ._txt ._item._howto ul._note li {
        padding-left: 0.25rem;
        margin-bottom: 0.25rem;
    }
    #apply ._txt ._item._announce h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    #apply ._txt ._item._announce p {
        font-size: 0.9rem;
    }
    /* panel
  -------------------------------------------------------------------------------- */
    #panel ._head ._aiming {
        width: 12.5rem;
        margin: 0 auto 2.5rem;
    }
    #panel ._period {
        margin-bottom: 4rem;
    }
    #panel ._period h3 {
        letter-spacing: 1rem;
        margin-bottom: 0.5rem;
    }
    #panel ._period p {
        font-size: 2rem;
    }
    #panel ._period p span {
        font-size: 3rem;
        letter-spacing: 0.125rem;
        margin: 0 0.25rem;
    }
    #panel ._img {
        margin-bottom: 3rem;
        border-radius: 1.25rem;
    }
    #panel ._img .swiper-wrapper {
        transition-timing-function: ease-in-out !important;
    }
    #panel ._img .swiper-slide {
        height: auto;
    }
    #panel ._img .swiper-slide ._item {
        transition-delay: 1.5s;
        transition-duration: 1.5s;
        height: 100%;
        -webkit-clip-path: polygon(-50% 0%, 0% 0%, -50% 100%, -100% 100%);
        clip-path: polygon(-50% 0%, 0% 0%, -50% 100%, -100% 100%);
        overflow: hidden;
    }
    #panel ._img .swiper-slide ._item img {
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    #panel ._img .swiper-slide.swiper-slide-active ._item {
        transition-delay: 0s;
        -webkit-clip-path: polygon(0% 0%, 150% 0%, 100% 100%, -50% 100%);
        clip-path: polygon(0% 0%, 150% 0%, 100% 100%, -50% 100%);
    }
    #panel ._img .swiper-pagination {
        bottom: 0.9rem;
    }
    #panel ._img .swiper-pagination-bullet {
        width: 0.75rem;
        height: 0.75rem;
        margin: 0 0.4rem;
    }
    #panel .href {
        margin-bottom: 3rem;
    }
    /* about_cityhunter
  -------------------------------------------------------------------------------- */
    #about_cityhunter {
        border-top-left-radius: 1.25rem;
        border-top-right-radius: 1.25rem;
        overflow: hidden;
    }
    #about_cityhunter .inner {
        padding-top: 7.5rem;
    }
    #about_cityhunter .inner ._head img {
        width: 20rem;
        margin: 0 auto 6rem;
    }
    #about_cityhunter .inner ._body {
        margin-bottom: 6rem;
    }
    #about_cityhunter .inner .href a:hover {
        opacity: 0.5;
    }
    #about_cityhunter .inner ._copy {
        font-size: 1.5rem;
    }
    #about_cityhunter ._hr {
        margin-top: 2.5rem;
        width: 100%;
        overflow: hidden;
    }
    #about_cityhunter ._hr img {
        transform: scale(1.01);
    }
    /* footer
  -------------------------------------------------------------------------------- */
    footer ._contact {
        margin-bottom: 3.5rem;
    }
    footer ._contact h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    footer ._contact p>span {
        font-size: 1rem;
    }
    footer ._contact a {
        font-size: 2rem;
    }
    footer ._logo a img {
        width: 20rem;
        margin: 0 auto 5rem;
    }
    footer ._logo a:hover {
        opacity: 0.5;
    }
    footer .href {
        margin-bottom: 5rem;
    }
    footer .href ul li a {
        font-size: 1.5rem;
        font-weight: bold;
        color: #a3a3a3;
        transition: 0.5s;
    }
    footer .href ul li a:hover {
        color: var(--color-accent);
        filter: none;
    }
    footer ._copyright {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    #page_top {
        width: 5rem;
    }
    #page_top a:hover {
        background-color: #fff;
    }
}
/* thanks
-------------------------------------------------------------------------------- */
