﻿@import url('https://fonts.googleapis.com/css2?family=Rock+Salt&family=Zen+Kurenaido&display=swap');

:root{
    --font-en: 'Rock Salt', 'Noto Sans JP', "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
    --font-jp: 'Zen Kurenaido', 'Noto Sans JP', "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
}

body, .en_font{
    font-family: 'Noto Sans JP', "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.font_bold{
    font-weight: 700;
}
.en_font{
    font-weight: normal;
}

/*** color ***/

:root{
    --base: #121212;
    --glay: #bbb
}

/*** animation ***/

@keyframes main1 {
    0%  {
        transform: translate(0%, 0%);
    }
    20%{
        transform: translate(1vw, -1vw);
    }
    40%{
        transform: translate(5vw, -5vw);
    }
    60%{
        transform: translate(2vw, -2vw);
    }
    80%{
        transform: translate(3vw, -3vw);
    }
    100%{
        transform: translate(0%, 0%);
    }
}
@keyframes yura1 {
    0%  {
        text-shadow:yellow
        0 0 0 rgba(36,232,237,0.1), /* cyan */
        0 0 0 rgba(255,62,150,0.2), /* magenta */
        0 0 0 rgba(249,238,45,0.3); /* yellow */
    }
    10%{
        text-shadow:
        1px 2px 0 rgba(36,232,237,0.3), /* cyan */
        1px -2px 0 rgba(255,62,150,0.2), /* magenta */
        -3px 1px 0 rgba(249,238,45,0.1); /* yellow */
    }
    20%{
        text-shadow:
        3px -1px 0 rgba(36,232,237,0.3), /* cyan */
        -1px -2px 0 rgba(255,62,150,0.3), /* magenta */
        -2px 3px 0 rgba(249,238,45,0.2); /* yellow */
    }
    30%{
        text-shadow:
        2px -1px 0 rgba(36,232,237,0.2), /* cyan */
        3px 1px 0 rgba(255,62,150,0.3), /* magenta */
        2px -1px 0 rgba(249,238,45,0.1); /* yellow */
    }
    40%{
        text-shadow:
        1px -1px 0 rgba(36,232,237,0.2), /* cyan */
        -3px 1px 0 rgba(255,62,150,0.2), /* magenta */
        2px -1px 0 rgba(249,238,45,0.3); /* yellow */
    }
    50%{
        text-shadow:
        -1px 2px 0 rgba(36,232,237,0.3), /* cyan */
        3px 0 0 rgba(255,62,150,0.1), /* magenta */
        1px 2px 0 rgba(249,238,45,0.1); /* yellow */
    }
    60%{
        text-shadow:
        1px -1px 0 rgba(36,232,237,0.1), /* cyan */
        0 2px 0 rgba(255,62,150,0.2), /* magenta */
        3px -2px 0 rgba(249,238,45,0.3); /* yellow */
    }
    70%{
        text-shadow:
        -2px 1px 0 rgba(36,232,237,0.3), /* cyan */
        3px 1px 0 rgba(255,62,150,0.3), /* magenta */
        -1px 2px 0 rgba(249,238,45,0.1); /* yellow */
    }
    80%{
        text-shadow:
        -1px 1px 0 rgba(36,232,237,0.1), /* cyan */
        3px 1px 0 rgba(255,62,150,0.2), /* magenta */
        -1px -2px 0 rgba(249,238,45,0.3); /* yellow */
    }
    90%{
        text-shadow:
        1px 3px 0 rgba(36,232,237,0.2), /* cyan */
        2px 1px 0 rgba(255,62,150,0.2), /* magenta */
        -2px 1px 0 rgba(249,238,45,0.3); /* yellow */
    }
    100%{
        text-shadow:
        0 -2px 0 rgba(36,232,237,0.3), /* cyan */
        -1px 2px 0 rgba(255,62,150,0.2), /* magenta */
        1px 3px 0 rgba(249,238,45,0.1); /* yellow */
    }
}
@keyframes backLine {
    0%  {
        background-position-y: 0;
    }
    100%{
        background-position-y: -350px, 350px;
    }
}
@keyframes backLine2 {
    0%  {
        background-position-y: 0;
    }
    100%{
        background-position-y: -175px, 175px;
    }
}

/*** fade ***/

.fade_txt span{
    display: inline-block;
    opacity: 0;
    transform: translateX(5px);
    transition: transform 0.3s;
}
.fade_txt span.active{
    opacity: 1;
    transform: none;
}

/*** svg ***/

#mask1 > g{
    transition: 1s;
    transition-property: opacity, transform;
    transform: translate(10vw, -10vw);
    opacity: 0;
}
#mask1.active > g{
    transform: translate(0, 0);
    opacity: 1;
}
#mask1 rect{
    fill: #fff;
}
svg > rect {
    -webkit-mask: url(#mask1);
    mask: url(#mask1);
}
#mask1.active > g > g:nth-of-type(1){
    animation: main1 10s linear infinite;
}
#mask1.active > g > g:nth-of-type(2){
    animation: main1 10s linear -1.5s infinite;
}
#mask1.active > g > g:nth-of-type(3){
    animation: main1 10s linear -2.5s infinite;
}
#mask1.active > g > g:nth-of-type(4){
    animation: main1 10s linear -3.5s infinite;
}

/*** other ***/

body{
    padding: 0 50px;
    background-color: var(--base);
}
body .back_text{
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: url(./Dup/img/bg_img1.png), url(./Dup/img/bg_img2.png);
    background-size: 40px;
    background-position-x: calc(100% - 5px), 5px;
    background-position-y: 0;
    background-repeat: repeat-y;
    animation: backLine 10s linear infinite;
    z-index: 3;
}

#main{
    max-height: inherit;
    height: auto!important;
}
#main svg{
    margin-left: auto;
    max-height: 100vh;
    max-width: 100%;
}
#main .sns_link li{
    background-color: var(--base);
}
#main .main_box{
    position: static;
    transform: none;
    max-width: inherit;
    width: 100%;
}
#main .main_box h1{
    position: absolute;
    top: 50px;
    left: 5%;
    max-width: 200px;
}
#main .main_box h2{
    position: absolute;
    width: 80%;
    bottom: 150px;
    left: 5%;
    font-size: 80px;
    margin-bottom: 0;
    line-height: 1.5;
}
#main .main_box h2 span{
    transform: skewX(-10deg);
    animation: yura1 0.8s steps(1) infinite;
}

#header{
    background-color: transparent!important;
    background-image: linear-gradient(to bottom, rgba(18,18,18,1), rgba(18,18,18,0));
    padding-left: 70px;
    padding-right: 70px;
    box-sizing: border-box;
    justify-content: space-between;
}
#header .logo{
    max-width: 200px;
}
#header .header_menu{
    width: auto!important;
}

.g-menu h2 {
    max-width: 300px;
}
.g-menu-btn{
    cursor: pointer;
}
.g-menu-btn.active{
    right: 75px;
}

.sp_back{
    width: calc(100% - 60px);
    left: 30px;
}

#catch{
    background-image: url('./Dup/img/bg_img5.png');
    background-position: left top;
    background-repeat: repeat-x;
    background-size: 1500px;
}
#catch .catch_img{
    display: none;
}
#catch .catch_txt{
    padding: 0 80px 80px;
    max-width: 1000px;
    width: 80%!important;
    background-color: rgba(18,18,18,0.3);
    backdrop-filter: blur(5px);
}
#catch .catch_txt::before{
    position: absolute;
    content: "";
    width: 150px;
    height: 0;
    right: -70px;
    top: -50px;
    background-image: url(./Dup/img/bg_img4.png);
    background-size: 100%;
    background-position: top left;
    z-index: -1;
    transition: height 1s cubic-bezier(.75,0,.13,1) 1s;
}
#catch .catch_txt.scrollin::before{
    height: 600px;
}
#catch .catch_txt h2{
    font-size: 60px;
    margin-top: -50px;
    margin-bottom: 50px;
    margin-left: -30px;
}
#catch .catch_txt h2 span{
    border-bottom: solid 2px;
}
#catch .catch_txt .more a::before, #catch .catch_txt .more a::after{
    background-color: #444!important;
}

.back_color {
    background: linear-gradient(rgba(18,18,18,0.4) 0%, rgba(18,18,18,0.8) 20%, rgba(18,18,18,0.8) 80%,rgba(18,18,18,0.4) 100%);
}

#contents .con_bg{
    top: 0;
    right: 0;
    transform: skewX(-10deg);
    transform-origin: right bottom;
}
#contents .con_bg > div{
    top: 0;
    left: 0;
    transform: skewX(10deg);
    transform-origin: left bottom;
}
#contents .box .box_item{
    padding: 50px 100px;
}
#contents .box .box_item:after, #contents .box .box_item:before{
    display: none;
}
#contents .no{
    background-color: transparent;
}
#contents .no::before{
    position: absolute;
    content: "";
    width: 1px;
    height: 200px;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    transform: rotate(10deg);
    background-color: #fff;
}
#contents .no .en_font{
    font-family: var(--font-en);
    font-size: 30px;
}
#contents .no .en_font span{
    font-size: 70px;
}
#contents .box .box_item p{
    padding-left: 30px;
}

.cms_wrap{
    width: 100%;
}

#top_cms > .top_cms_wrap{
    padding-bottom: 1px;
}
#top_cms .top_cms_box{
    padding-bottom: 0;
    background-color: transparent;
}
#top_cms .cms_title::before{
    display: none;
}
#top_cms .cms_title > div{
    text-align: center;
    width: 100%;
    margin-left: 0;
    border-left: none;
    padding: 30px 0;
    position: relative;
}
#top_cms .cms_title h2{
    position: relative;
    z-index: 1;
    font-size: 40px;
    transform: skewX(-10deg);
    animation: yura1 0.8s steps(1) infinite;
}
#top_cms .cms_title p{
    font-family: var(--font-en);
    font-weight: normal;
    font-size: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
    width: 100%;
}
.more a{
    background-color: transparent;
    overflow: inherit;
    z-index: 1;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}
.more a::before, .more a::after{
    position: absolute;
    content: "";
    width: 95%;
    height: 50%;
    background-color: var(--base)!important;
    transform: skewX(-10deg)!important;
    z-index: -1;
    transition: width 0.3s cubic-bezier(.75,0,.13,1)!important;
    transition-delay: 0s!important;
}
.more a::before{
    left: 0!important;
    top: 0!important;
    transform-origin: top left;
}
.more a::after{
    right: 0!important;
    bottom: 0!important;
    top: auto;
    left: auto;
    transform-origin: bottom right;
}
.more a:hover::before, .more a:hover::after{
    width: 0;
}

.more{
    font-family: var(--font-en);
}


#page_title{
    background-position: center;
    background-attachment: scroll;
}
#page_title:before{
    background-color: transparent!important;
    background-image: url('./Dup/img/bg_img3.png')!important;
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 1500px;
}
#page_title:after{
    background-color: rgba(18,18,18,0.6)
}
#page_title .page_title_box .wrap {
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
#page_title p.font_30up {
    position: relative;
    z-index: 1;
    padding: 0;
    margin-bottom: 20px;
    transform: skewX(-10deg);
    font-weight: 700;
}
#page_title p.font_30up span span{
    display: inline-block;
    animation: yura1 0.8s steps(1) infinite;
}
#page_title p.font_9up{
    font-family: var(--font-en);
    padding: 0;
    font-size: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
    width: 100%;
}

.content_wrap{
    background-color: transparent;
    padding: 0;
}

.cate_list p {
    left: -42px;
    background: var(--base);
    padding: 0 10px;
}
.cate_list p span{
    padding: 0;
}
.cate_list {
    margin-bottom: 100px;
    width: 100%;
    border: solid 1px;
}
.cate_list div{
    width: 100%!important;
    padding: 20px;
    padding-left: 50px;
}
.cate_list li{
    width: auto;
    padding: 10px;
}
.cate_list li a{
    padding: 5px;
    border-bottom: solid 1px;
    box-sizing: border-box;
}
.cate_list li a:hover {
    transform: none;
    opacity: 0.6;
    transition: 0s;
    color: #fff;
}

.pager li a:hover{
    opacity: 0.6;
}

.cate_title{
    transform: skewX(-10deg);
    font-family: var(--font-jp);
    font-size: 32px;
}

.v_type3{
    counter-reset: number 0
}
.v_type3 .cate_box{
    position: relative;
}
.v_type3 .cate_box::before{
    position: absolute;
    counter-increment: number 1;
    content: "0" counter(number);
    padding: 0 10px;
    background-color: var(--base);
    font-size: 50px;
    line-height: 1;
    left: 20px;
    top: -40px;
}

#cms_5-c .box_title1, .cms_5-c .box_title1{
    border-color: #fff;
}
#cms_5-c .box_txt1::before, .cms_5-c .box_txt1::before{
    color: #fff;
    opacity: 0.5;
}

.page7, .page8, .page9, .page10{
    padding-bottom: 100px;
}
.page10 .more a{
    border: none;
}
.page10 .more a::before, .page10 .more a::after{
    background-color: #282828!important;
}

.footer_banner a:hover .banner_bg{
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.2;
}
.footer_banner a p{
    font-family: var(--font-en);
}
.footer_banner a:hover p{
    animation: yura1 0.8s steps(1) infinite;
}

footer .entry{
    display: none;
}

#page-top p{
    font-family: var(--font-en);
}


/** tablet 780 **/
@media screen and (max-width: 768px){
#main .main_box h2 {
    bottom: 50px;
    font-size: 50px;
}
#header .logo{
    max-width: 150px;
}
#header .header_menu{
    display: none;
}
.g-menu-btn{
    right: 75px;
    position: fixed;
}
#catch .catch_txt h2 {
    font-size: 30px;
    margin-top: -20px;
}
#contents .box{
    margin-bottom: 50px;
}
#contents .no{
    z-index: 1;
    margin-bottom: -50px;
}
#contents .no::before{
    display: none;
}
#contents .no, #contents .box .box_item{
    display: block;
    width: 100%!important;
}
#contents .box .box_item{
    padding: 100px 50px 50px;
}
#contents .con_bg {
    transform: none;
    width: 100%!important;
}
#contents .con_bg > div{
    transform: none;
}
#contents .box .box_item h2{
    text-align: center;
}
#contents .box .box_item p{
    padding-left: 0;
}
#page_title:before, #catch{
    background-size: 780px;
}
#page_title p.font_9up {
    font-size: 20px;
    position: static;
    transform: none;
    opacity: 1;
}
}

/** mobile 750 **/
@media screen and (max-width: 667px){
body{
    padding: 0 30px;
}
body .back_text{
    background-size: 20px;
    animation: backLine2 5s linear infinite;
}
#main .main_box h1 {
    top: 20px;
    max-width: 150px;
}
#main .main_box h2 {
    bottom: -50px;
    font-size: 40px;
}
.g-menu-btn, .g-menu-btn.active{
    right: 50px;
}
#catch{
    padding-top: 100px;
}
#catch .catch_txt {
    width: 90%!important;
    padding: 0 20px 50px;
}
#catch .catch_txt h2 {
    margin-left: 0;
}
#contents .box .box_item{
    padding: 100px 20px 50px;
}
#top_cms .cms_title > div{
    padding: 0;
}
#top_cms .cms_title h2 {
    font-size: 30px;
}
#top_cms .cms_title p {
    font-size: 18px;
    position: static;
    transform: none;
    opacity: 1;
    width: 100%;
    margin-top: 10px;
}
#page_title p.font_30up{
    font-size: 24px;
}
.cate_list div{
    padding-left: 30px;
}
.cate_list li {
    width: 100%;
    padding: 0;
}
.cate_title{
    font-size: 24px;
}
}