@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&display=swap');

/*common*/
html {
    height: 100%;
}

body {
    color: #333;
    font-size: clamp(10px, 16 / 1200 * 100vw, 16px);
    line-height: 1.7;
    line-break: strict;
    word-break: break-all;
    text-align: justify;
    text-justify: distribute;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    position: relative;
}

a:link {
    text-decoration: none;
    color: #ea5971;
    -webkit-transition: all 500ms 0s ease;
    transition: all 500ms 0s ease;
}

a:visited {
    text-decoration: none;
    color: #ea5971;
}

a:hover {
    text-decoration: none;
    opacity: 0.7;
}

p:not(:last-child) {
    margin-bottom: 1.5em;
}


table{
  width: 100%;
  border-spacing: 0;
}

table th{
  border-bottom: solid 2px #fb5144;
  text-align: center;
vertical-align: top;
  padding: 10px 0;
}

table td{
  border-bottom: solid 2px #ddd;
  text-align: center;
  padding: 10px 0;
}


/*PC--------------------------------------------------------------------------------------*/

/*navi*/

nav {
    display: block;
    position: fixed;
    top: 0;
    right: -900px;
    bottom: 0;
    width: 450px;
    background: rgba(0, 0, 0, 0.5);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all .5s;
    z-index: 999;
    opacity: 0;
}

.open nav {
    right: 0;
    opacity: 1;
}

nav .inner {
    padding: 15px 15px 25px 15px;
}

nav .inner p{
	text-align: center;
}

nav .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
	margin-bottom: 1.5em;
    display: flex;
    flex-wrap: wrap;
}

nav .inner ul li {
    display: flex;
    position: relative;
    margin: 0;
    justify-content: center;
    align-items: center;
    width: 50%;
}

nav .inner ul li a {
    display: block;
    width: 100%;
    color: #333;
    text-align: center;
    padding: 0.5em 0;
    text-decoration: none;
    transition-duration: 0.2s;
    font-weight: bold;
	font-size: 1.2em;
}

nav .inner ul li a:hover {
    opacity: 0.7;
}

nav .nav__logo {
    width: 250px;
    margin: 5vh auto;
}

.nav__logo a,
.nav__logo img{
    width: 100%;
    padding: 0;
}

nav .inner ul li a img {
    width: 80%;
    padding: 0;
}

.toggle_btn {
    display: block;
    position: fixed;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    transition: all .5s;
    cursor: pointer;
    z-index: 1000;
}

.toggle_btn:before{
    content: "";
    background: url(../images/common/navi-toggle.png) no-repeat center;
    background-size: 80px 80px;
    position: absolute;
    top: -12px;
    left: -16px;
    width: 80px;
    height: 80px;
    display: inline-block;
}

.toggle_btn span {
    display: block;
    position: absolute;
    left: 20%;
    width: 30px;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    transition: all .5s;
}

.toggle_btn span:nth-child(1) {
    top: 30%;
}

.toggle_btn span:nth-child(2) {
    top: 50%;
}

.toggle_btn span:nth-child(3) {
    top: 70%;
}

.open .toggle_btn {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: none;
}

.open .toggle_btn span {
    background-color: #e6d355;
}

.open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
}

.open .toggle_btn span:nth-child(2) {
    opacity: 0;
}

.open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-12px) rotate(45deg);
    transform: translateY(-12px) rotate(45deg);
}

#mask {
    display: none;
    transition: all .5s;
}

.open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .7;
    z-index: 998;
    cursor: pointer;
}

/*header*/

.header-wrap {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.header-wrap .header {
    top: 0px;
    left: 0px;
    height: 0;
    padding-top: 74.85029%;
    position: relative;
    width: 100%;
    display: block;
    background: url(../images/header/bg.jpg) no-repeat;
    background-size: cover;
}

.header-wrap .header .chara04-pos {
    position: absolute;
    top: 52.880000%;
    left: 38.682635%;
    width: 33.473054%;
    -webkit-transition: all 500ms 0s ease;
    transition: all 500ms 0s ease;
    animation: chara04FadeIn 2s ease 0s 1 normal;
    -webkit-animation: chara04FadeIn 2s ease 0s 1 normal;
    z-index: 5;
}

@keyframes chara04FadeIn {
    0% {
        opacity: 0;
        transform: translateY(-15%);
    }

    50% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes chara04FadeIn {
    0% {
        opacity: 0;
        transform: translateY(-15%);
    }

    50% {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-wrap .header .chara04-pos .chara04 {
    top: 0px;
    left: 0px;
    height: 0;
    padding-top: 105.36673%;
    position: relative;
    width: 100%;
    background: url("../images/header/chara04.png") no-repeat;
    background-size: cover;
    display: block;
    overflow: hidden;
    text-indent: -9999px;
}

.header-wrap .header .chara03-pos {
    position: absolute;
    top: 30.800000%;
    left: 43.772455%;
    width: 38.023952%;
    -webkit-transition: all 500ms 0s ease;
    transition: all 500ms 0s ease;
    animation: chara03FadeIn 2s ease 0s 1 normal;
    -webkit-animation: chara03FadeIn 2s ease 0s 1 normal;
    z-index: 6;
}

@keyframes chara03FadeIn {
    0% {
        opacity: 0;
        transform: translateY(15%);
    }

    10% {
        opacity: 0;
        transform: translateY(15%);
    }

    60% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes chara03FadeIn {
    0% {
        opacity: 0;
        transform: translateY(15%);
    }

    10% {
        opacity: 0;
        transform: translateY(15%);
    }

    60% {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-wrap .header .chara03-pos .chara03 {
    top: 0px;
    left: 0px;
    height: 0;
    padding-top: 136.22047%;
    position: relative;
    width: 100%;
    background: url("../images/header/chara03.png") no-repeat;
    background-size: cover;
    display: block;
    overflow: hidden;
    text-indent: -9999px;
}

.header-wrap .header .chara02-pos {
    position: absolute;
    top: 14.880000%;
    left: 5.868263%;
    width: 38.982036%;
    -webkit-transition: all 500ms 0s ease;
    transition: all 500ms 0s ease;
    animation: chara02FadeIn 2s ease 0s 1 normal;
    -webkit-animation: chara02FadeIn 2s ease 0s 1 normal;
    z-index: 7;
}

@keyframes chara02FadeIn {
    0% {
        opacity: 0;
        transform: translateX(-15%);
    }

    20% {
        opacity: 0;
        transform: translateX(-15%);
    }

    70% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-webkit-keyframes chara02FadeIn {
    0% {
        opacity: 0;
        transform: translateX(-15%);
    }

    20% {
        opacity: 0;
        transform: translateX(-15%);
    }

    70% {
        opacity: 1;
        transform: translateX(0);
    }
}

.header-wrap .header .chara02-pos .chara02 {
    top: 0px;
    left: 0px;
    height: 0;
    padding-top: 163.44086%;
    position: relative;
    width: 100%;
    background: url("../images/header/chara02.png") no-repeat;
    background-size: cover;
    display: block;
    overflow: hidden;
    text-indent: -9999px;
}

.header-wrap .header .chara01-pos {
    position: absolute;
    top: 0.000000%;
    left: 58.443114%;
    width: 41.556886%;
    -webkit-transition: all 500ms 0s ease;
    transition: all 500ms 0s ease;
    animation: chara01FadeIn 2s ease 0s 1 normal;
    -webkit-animation: chara01FadeIn 2s ease 0s 1 normal;
    z-index: 8;
}

@keyframes chara01FadeIn {
    0% {
        opacity: 0;
        transform: translateX(15%);
    }

    30% {
        opacity: 0;
        transform: translateX(15%);
    }

    80% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-webkit-keyframes chara01FadeIn {
    0% {
        opacity: 0;
        transform: translateX(15%);
    }

    30% {
        opacity: 0;
        transform: translateX(15%);
    }

    80% {
        opacity: 1;
        transform: translateX(0);
    }
}

.header-wrap .header .chara01-pos .chara01 {
    top: 0px;
    left: 0px;
    height: 0;
    padding-top: 180.11527%;
    position: relative;
    width: 100%;
    background: url("../images/header/chara01.png") no-repeat;
    background-size: cover;
    display: block;
    overflow: hidden;
    text-indent: -9999px;
}

.header-wrap .header .paint-pos {
    position: absolute;
    top: 65.520000%;
    left: 0.000000%;
    width: 100.000000%;
    z-index: 9;
}

.header-wrap .header .paint-pos .paint {
    top: 0px;
    left: 0px;
    height: 0;
    padding-top: 39.16168%;
    position: relative;
    width: 100%;
    background: url("../images/header/paint.png") no-repeat;
    background-size: cover;
    display: block;
    overflow: hidden;
    text-indent: -9999px;
}

.header-wrap .header .logo-pos {
    position: absolute;
    top: 67.200000%;
    left: 2.455090%;
    width: 54.011976%;
    -webkit-transition: all 500ms 0s ease;
    transition: all 500ms 0s ease;
    animation: logoFadeIn 2s ease 0s 1 normal;
    -webkit-animation: logoFadeIn 2s ease 0s 1 normal;
    z-index: 15;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(15%);
    }

    65% {
        opacity: 0;
        transform: translateY(15%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(15%);
    }

    65% {
        opacity: 0;
        transform: translateY(15%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-wrap .header .logo-pos h1 {
    top: 0px;
    left: 0px;
    height: 0;
    padding-top: 41.13082%;
    position: relative;
    width: 100%;
    background: url("../images/header/logo.png") no-repeat;
    background-size: cover;
    display: block;
    overflow: hidden;
    text-indent: -9999px;
}

.header-wrap .header .release-pos {
    position: absolute;
    top: 2.800000%;
    left: 91.257485%;
    width: 6.347305%;
    -webkit-transition: all 500ms 0s ease;
    transition: all 500ms 0s ease;
    animation: releaseFadeIn 2s ease 0s 1 normal;
    -webkit-animation: releaseFadeIn 2s ease 0s 1 normal;
    z-index: 10;
}

@keyframes releaseFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-15%);
    }

    65% {
        opacity: 0;
        transform: translateY(-15%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes releaseFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-15%);
    }

    65% {
        opacity: 0;
        transform: translateY(-15%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-wrap .header .release-pos .release {
    top: 0px;
    left: 0px;
    height: 0;
    padding-top: 734.90566%;
    position: relative;
    width: 100%;
    background: url("../images/header/release.png") no-repeat;
    background-size: cover;
    display: block;
    overflow: hidden;
    text-indent: -9999px;
}

.header-wrap .header .catch-pos {
    position: absolute;
    top: 2.960000%;
    left: 35.748503%;
    width: 17.544910%;
    -webkit-transition: all 500ms 0s ease;
    transition: all 500ms 0s ease;
    animation: rcatchFadeIn 2s ease 0s 1 normal;
    -webkit-animation: catchFadeIn 2s ease 0s 1 normal;
    z-index: 10;
}

@keyframes catchFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-15%);
    }

    65% {
        opacity: 0;
        transform: translateX(-15%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-webkit-keyframes catchFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-15%);
    }

    65% {
        opacity: 0;
        transform: translateX(-15%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.header-wrap .header .catch-pos .catch {
    top: 0px;
    left: 0px;
    height: 0;
    padding-top: 211.60410%;
    position: relative;
    width: 100%;
    background: url("../images/header/catch.png") no-repeat;
    background-size: cover;
    display: block;
    overflow: hidden;
    text-indent: -9999px;
}

.header-wrap .header .bonus-pos {
    position: absolute;
    top: 65.680000%;
    left: 68.263473%;
    width: 31.736527%;
    -webkit-transition: all 500ms 0s ease;
    transition: all 500ms 0s ease;
    animation: bonusFadeIn 2s ease 0s 1 normal;
    -webkit-animation: bonusFadeIn 2s ease 0s 1 normal;
    z-index: 10;
}

@keyframes bonusFadeIn {
    0% {
        opacity: 0;
        transform: translateX(15%);
    }

    65% {
        opacity: 0;
        transform: translateX(15%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-webkit-keyframes bonusFadeIn {
    0% {
        opacity: 0;
        transform: translateX(15%);
    }

    65% {
        opacity: 0;
        transform: translateX(15%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.header-wrap .header .bonus-pos .bonus a{
    top: 0px;
    left: 0px;
    height: 0;
    padding-top: 79.05660%;
    position: relative;
    width: 100%;
    background: url("../images/header/bonus.png") no-repeat;
    background-size: cover;
    display: block;
    overflow: hidden;
    text-indent: -9999px;
}

.header-wrap .header .yuzulogo {
    position: absolute;
    top: 3%;
    left: 2%;
    width: 8%;
    z-index: 10;
}

.header-wrap .header .yuzulogo img{
    width: 100%;
}

.common-header-wrap {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.common-header-wrap .common-header {
    top: 0px;
    left: 0px;
    height: 0;
    padding-top: 16.76746%;
    position: relative;
    width: 100%;
    display: block;
    background: url(../images/header/common_header1.jpg) no-repeat;
    background-size: cover;
    text-indent: -9999px;
    -webkit-transition: all 500ms 0s ease;
    transition: all 500ms 0s ease;
}

/*fanza*/

.fanza{
    width: 210px;
    margin: 40px auto 0 auto;
}

.fanza img{
    width: 100%;
}

/*contents*/

.bg01{
    background: url(../images/bg/bg01.jpg) center no-repeat;
    background-size: cover;
    position: relative;
    z-index: 20;
}

.bg02{
    background: url(../images/bg/bg02.jpg) center no-repeat;
    background-size: cover;
    position: relative;
    z-index: 20;
}

.bg03{
    background: url(../images/bg/bg03.jpg) center no-repeat;
    background-size: cover;
    position: relative;
    z-index: 20;
}

.bg04{
    background: url(../images/bg/bg04.jpg) center no-repeat;
    background-size: cover;
    position: relative;
    z-index: 20;
}

.bg05{
    background: url(../images/bg/bg05.jpg) center no-repeat;
    background-size: cover;
    position: relative;
    z-index: 20;
}

.bg06{
    background: url(../images/bg/bg06.jpg) center no-repeat;
    background-size: cover;
    position: relative;
    z-index: 20;
}

.bg07{
    background: url(../images/bg/bg07.jpg) center no-repeat;
    background-size: cover;
    position: relative;
    z-index: 20;
}

.bg08{
    background: url(../images/bg/bg08.jpg) center no-repeat;
    background-size: cover;
    position: relative;
    z-index: 20;
}

.bg09{
    background: url(../images/bg/bg09.jpg) center no-repeat;
    background-size: cover;
    position: relative;
    z-index: 20;
}

.bg10{
    background: url(../images/bg/bg10.jpg) center repeat;
    position: relative;
    z-index: 20;
}

.bg01::before,
.bg03::before,
.bg05::before,
.bg07::before,
.bg09::before,
.bg10::before{
    content: "";
    clip-path: polygon(100% 0, 0 0, 100% 15%);
    background: #fff;
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg01::after,
.bg03::after,
.bg05::after,
.bg07::after,
.bg09::after,
.bg10::after{
    content: "";
    clip-path: polygon(100% 100%, 0 85%, 0 100%);
    background: #fff;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg02::before,
.bg04::before,
.bg06::before,
.bg08::before{
    content: "";
    clip-path: polygon(100% 0, 0 0, 0 15%);
    background: #fff;
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg02::after,
.bg04::after,
.bg06::after,
.bg08::after{
    content: "";
    clip-path: polygon(100% 100%, 100% 85%, 0 100%);
    background: #fff;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100%;
}

.content-wrap{
    max-width: 1240px;
    width: 100%;
    padding: 100px 20px;
    margin: 0 auto;
    box-sizing: border-box;
    /*overflow: hidden;*/
}

.js-fade {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: opacity 1s,visibility 1s, transform 1s;
}

.scroll {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

h2{
    max-width: 395px;
    width: 100%;
    margin: 0 auto -130px auto;
    position: relative;
    z-index: 50;
}

h2 img{
    width: 100%;
}

h3{
    background: #ffffff;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(58, 188, 201, 1) 50%, rgba(255, 255, 255, 0) 100%);
    margin: 50px 0;
    font-size: 1.4em;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    -moz-text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
    -webkit-text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
    padding: 0.5em;
}

h3:first-child,
h4:first-child{
    margin-top: 0;
}

h4{
    margin: 1.5em 0;
    font-weight: bold;
    color: #8c4999;
    font-size: 1.1em;
    border-left: 5px solid #ea5971;
    padding-left: 0.5em;
}

section{
    position: relative;
    z-index: 100;
}

.btn{
    max-width: 700px;
    width: 100%;
    margin: 2em auto;
}

.btn a{
    display: block;
    text-align: center;
    padding: 0.5em;
    background: #F4DC4A;
background: linear-gradient(180deg, rgba(244, 220, 74, 0.8) 0%, rgba(234, 89, 113, 0.8) 100%);
    color: #fff;
    -moz-text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
    -webkit-text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
    font-weight: 700;
    border-radius: 30px;
    -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.7);
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.7);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.7);
    border: 2px solid #fff;
    box-sizing: border-box;
}

.pic{
    max-width: 700px;
    width: 100%;
    margin: 2em auto;
}

.pic:last-child,
.btn:last-child{
    margin-bottom: 0;
}

.pic img{
    width: 100%;
    -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.7);
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.7);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.7);
}


.pic2{
    max-width: 1000px;
    width: 100%;
    margin: 2em auto;
}

.pic2:last-child,
.btn2:last-child{
    margin-bottom: 0;
}

.pic2 img{
    width: 100%;
    -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.7);
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.7);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.7);
}




hr{
    margin: 50px 0;
    border-top: 2px dotted #333;
}

/*special*/

ul.special-wrap{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.5% -30px -1.5%;
    padding: 0;
}

ul.special-wrap li{
    width: calc(100% / 3);
    padding: 0 1.5%;
    box-sizing: border-box;
    margin-bottom: 30px;
    position: relative;
}

ul.special-wrap li .newicon{
    position: absolute;
    width: 20%;
    top: -5%;
    left: 0;
}

ul.special-wrap li .newicon img{
    width: 100%;
}

ul.special-wrap li:nth-child(odd){
    transform: rotate(-5deg);
}

ul.special-wrap li:nth-child(even){
    transform: rotate(5deg);
}

ul.special-wrap li .special-frame{
    background: #fff;
    -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.7);
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.7);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
}

ul.special-wrap li .special-frame img{
    width: 100%;
    display:block;
}

ul.special-wrap li .special-frame .date{
    font-size: 1.6em;
    font-family: 'Oswald', sans-serif;
    vertical-align: baseline;
    font-weight: 700;
    padding: 1rem 1rem 0 1rem;
    line-height: 1;
}

ul.special-wrap li .special-frame p{
    padding: 0.5rem 1rem 1rem 1rem;
    font-size: 0.9em;
    color: #333;
    flex-grow: 1;
}

/*information*/

dl.info-wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
}

dl.info-wrap dt{
    width: 20%;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: #3abcc9;
    font-size: 1.1em;
    vertical-align: baseline;
    margin-bottom: 0.5em;
}

dl.info-wrap dt::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    content: "\f15c";
    margin-right: 0.5em;
    font-weight: bold;
    color: #000;
    font-size: 1em;
    vertical-align: text-top;
}

dl.info-wrap dd{
    width: 80%;
    padding: 0;
    margin: 0;
    font-size: 0.9em;
    margin-bottom: 0.5em;
}

/*story*/

.story-text{
    width: 100%;
    margin: 2em auto;
    font-size: 1.1em;
    line-height: 2;
}

.story-text p{
    color: #fff;
    text-align: center;
    -moz-text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
    -webkit-text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
}

.story-text p span.c01{
    color: #e6d355;
    font-weight: bold;
}

.story-text p span.c02{
    color: #3abcc9;
    font-weight: bold;
}

/*chara*/

.chara-wrap {
    position: relative;
    width: 100%;
}

.chara-base-pos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.chara-base01 {
    top: 0px;
    left: 0px;
    height: 0;
    padding-top: 66.66666%;
    position: relative;
    width: 100%;
    background: url("../images/mainchara/chara01/chara-base.jpg") no-repeat;
    background-size: cover;
    display: block;
    overflow: hidden;
    text-indent: -9999px;
}

.chara-base02 {
    top: 0px;
    left: 0px;
    height: 0;
    padding-top: 66.66666%;
    position: relative;
    width: 100%;
    background: url("../images/mainchara/chara02/chara-base.jpg") no-repeat;
    background-size: cover;
    display: block;
    overflow: hidden;
    text-indent: -9999px;
}

.chara-base03 {
    top: 0px;
    left: 0px;
    height: 0;
    padding-top: 66.66666%;
    position: relative;
    width: 100%;
    background: url("../images/mainchara/chara03/chara-base.jpg") no-repeat;
    background-size: cover;
    display: block;
    overflow: hidden;
    text-indent: -9999px;
}

.chara-base04 {
    top: 0px;
    left: 0px;
    height: 0;
    padding-top: 66.66666%;
    position: relative;
    width: 100%;
    background: url("../images/mainchara/chara04/chara-base.jpg") no-repeat;
    background-size: cover;
    display: block;
    overflow: hidden;
    text-indent: -9999px;
}

.chara-base05 {
    top: 0px;
    left: 0px;
    height: 0;
    padding-top: 66.66666%;
    position: relative;
    width: 100%;
    background: url("../images/mainchara/chara05/chara-base.jpg") no-repeat;
    background-size: cover;
    display: block;
    overflow: hidden;
    text-indent: -9999px;
}

.chara-base06 {
    top: 0px;
    left: 0px;
    height: 0;
    padding-top: 66.66666%;
    position: relative;
    width: 100%;
    background: url("../images/mainchara/chara06/chara-base.jpg") no-repeat;
    background-size: cover;
    display: block;
    overflow: hidden;
    text-indent: -9999px;
}

.chara-cos-pos {
    position: absolute;
    top: 4%;
    right: 2%;
    width: 41%;
}

.chara-cos-pos h5 {
    text-align: right;
    font-size: 0.9em;
    font-family: 'Oswald', sans-serif;
    padding-right: 5px;
}

.chara-cos-pos img {
    width: 100%;
}

.cos-tab,
.cos-tab2,
.cos-tab3,
.cos-tab4,
.cos-tab5,
.cos-tab6 {
    width: 105px;
    margin: 10px 0 0 auto;
    box-sizing: border-box;
}

.cos-tab .slick-track,
.cos-tab2 .slick-track,
.cos-tab3 .slick-track,
.cos-tab4 .slick-track,
.cos-tab5 .slick-track,
.cos-tab6 .slick-track {
    transform: unset !important;
}

.cos-tab .slick-slide,
.cos-tab2 .slick-slide,
.cos-tab3 .slick-slide,
.cos-tab4 .slick-slide,
.cos-tab5 .slick-slide,
.cos-tab6 .slick-slide {
    margin: 0 5px;
}

.cos-tab .slick-slide img,
.cos-tab2 .slick-slide img,
.cos-tab3 .slick-slide img,
.cos-tab4 .slick-slide img,
.cos-tab5 .slick-slide img,
.cos-tab6 .slick-slide img {
    width: 100%;
}

.cos-slider.cos01,
.cos-slider2.cos02,
.cos-slider3.cos03,
.cos-slider4.cos04,
.cos-slider5.cos05,
.cos-slider6.cos06 {
    left:25%;
}


.chara-text {
    margin: 2em 0;
    text-align: center;
}

.chara-text .attribute{
    font-weight: bold;
    color: #ea5971;
}

ul.event-cg-wrap {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -1% -2% -1%;
}

ul.event-cg-wrap li {
    flex-basis: 25%;
    padding: 0 1%;
    margin-bottom: 2%;
    box-sizing: border-box;
}

ul.event-cg-wrap li img {
    width: 100%;
}

.thumbnail {
    max-width: 600px;
    width: 100%;
    margin: 0 auto 10px auto;
    box-sizing: border-box;
}

.thumbnail .slick-slide {
    margin: 0 5px;
}

.thumbnail .slick-slide img {
    width: 100%;
}

.thumbnail .slick-track {
    transform: unset !important;
}

.thumbnail .thumbnail-img {
    opacity: .3;
    transition: opacity .3s linear;
}

.thumbnail .slick-current {
    opacity: 1;
}

.slick-prev {
    width: 41px !important;
    height: 78px !important;
    left: -20px !important;
    top: 28% !important;
    z-index: 99;
    background: none !important;
}

.slick-prev::before {
    content: "" !important;
    display: block;
    width: 41px;
    height: 78px;
    background: url(../images/mainchara/prev.png) no-repeat;
    background-size: contain;
}

.slick-next {
    width: 41px !important;
    height: 78px !important;
    right: -20px !important;
    top: 28% !important;
    z-index: 99;
    background: none !important;
}

.slick-next::before {
    content: "" !important;
    display: block;
    width: 41px;
    height: 78px;
    background: url(../images/mainchara/next.png) no-repeat right;
    background-size: contain;
}

.slick-list {
    padding: 0 !important;
}

.slick-arrow::after {
    display: none;
}

ul.dl-item{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    overflow: hidden;
    border-radius: 50px;
    box-sizing: border-box;
    border: 3px solid #fff;
    -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
    width: calc(100% - 8px);
    margin: 2em auto 5px auto;
}

ul.dl-item li{
    width: calc(100% / 3);
}

ul.dl-item li a{
    display: block;
    text-align: center;
    background: #3abcc9;
    color: #fff;
    padding: 1em 0.5em;
    -moz-text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
    -webkit-text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
    box-sizing: border-box;
}

ul.dl-item li.dl02 a{
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}

ul.dl-item li.dl01 a::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    content: "\f118";
    margin-right: 0.5em;
    font-weight: bold;
    color: #fc0;
    font-size: 1em;
    vertical-align: text-top;
}

ul.dl-item li.dl02 a::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    content: "\f118";
    margin-right: 0.5em;
    font-weight: bold;
    color: #fc0;
    font-size: 1em;
    vertical-align: text-top;
}

ul.dl-item li.dl03 a::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    content: "\f03e";
    margin-right: 0.5em;
    font-weight: bold;
    color: #fc0;
    font-size: 1em;
    vertical-align: text-top;
}

/*sub-chara*/

ul.sub-chara-wrap {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto -3% auto;
    max-width: 800px;
    width: 100%;
}

ul.sub-chara-wrap li {
    width: calc(100% / 2);
    padding: 0 1.5%;
    margin-bottom: 3%;
    box-sizing: border-box;
}

ul.sub-chara-wrap li img {
    width: 100%;
}

ul.sub-chara-wrap li .chara-text {
    margin: 1.5em 0 0 0;
    font-size: 0.9em;
}

/*movie*/

ul.movie-wrap {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0 -1.5% -3% -1.5%;
}

ul.movie-wrap li {
    flex-basis: 50%;
    padding: 0 1.5%;
    box-sizing: border-box;
    margin-bottom: 3%;
}

.movie {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.movie iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
    -moz-box-shadow: 0px 0px 4px rgba(50, 50, 50, 0.7);
    -webkit-box-shadow: 0px 0px 4px rgba(50, 50, 50, 0.7);
    box-shadow: 0px 0px 4px rgba(50, 50, 50, 0.7);
}

.mw800{
    max-width: 800px;
    width: 100%;
    margin: 50px auto;
}

/*spec*/

dl.spec-wrap {
    display: table;
    margin: 0 auto;
    text-align: left;
}

dl.spec-wrap dt {
    float: left;
    color: #3abcc9;
    width: 7em;
    font-weight: bold;
    margin-bottom: 0.5em;
}

dl.spec-wrap dd {
    margin: 0 0 0.5em 7em;
}


/*pamph*/

dl.pamph-wrap {
    display: table;
    margin: 0 auto;
    text-align: left;
}

dl.pamph-wrap dt {
    float: left;
    color: #3abcc9;
    width: 7em;
    font-weight: bold;
    margin-bottom: 0.5em;
}

dl.pamph-wrap dd {
    margin: 0 0 0.5em 7em;
}

dl.pamph-wrap dc {
    margin: 0 0 0.5em 7em;
}


/*bonus*/

.bonus-wrap{
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.bonus-wrap ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto -5% auto;
}

.bonus-wrap ul li {
    width: calc(100% / 2);
    padding: 0 1.5%;
    margin-bottom: 5%;
    box-sizing: border-box;
}

.bonus-wrap ul li img {
    width: 100%;
}

.bonus-wrap ul h5{
    margin-top: 1.5em;
    color: #ea5971;
}

.bonus-wrap ul h5::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    content: "\f54f";
    margin-right: 0.5em;
    font-weight: bold;
    color: #8c4999;
    font-size: 1em;
    vertical-align: text-top;
}

.bonus-wrap ul li .btn{
    margin: 1em 0 0 0;
}

.bonus-wrap ul li .btn a::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    content: "\f07a";
    margin-right: 0.5em;
    font-weight: bold;
    color: #ff0;
    font-size: 1em;
    vertical-align: text-top;
}

/*footer*/

.footer{
    width: 100%;
    background: #333;
    color: #fff;
    padding: 50px 20px;
    box-sizing: border-box;
    text-align: center;
    font-size: 0.9em;
    margin-top: 50px;
}

.footer .sns{
    margin-bottom: 1em;
}

.footer .sns ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer .sns ul li {
    width: 50px;
    margin: 5px;
}

.footer .sns ul li img {
    width: 100%;
}

/*pagetop*/

#page-top {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 60px;
    margin-bottom: 0;
    z-index: 200;
}

#page-top img {
    width: 100%;
}

/*format*/

.article-2column {
    display: flex;
    flex-wrap: wrap;
}

.article-2column .left-column {
    width: 60%;
    box-sizing: border-box;
    padding-right: 3%;
}

.article-2column .right-column {
    width: 40%;
}



/*RESPONSIVE--------------------------------------------------------------------------------------*/

@media only screen and (max-width: 900px) {

    

}

/*MOBILE--------------------------------------------------------------------------------------*/

@media only screen and (max-width: 767px) {


    body {
        font-size: clamp(10px, 14 / 375 * 100vw, 14px);
    }

    span.br::before{
        content: "\A" ;
        white-space: pre ;
        padding-right: 0.5em;
    }

    nav {
        width: 100%;
    }

    .header-wrap {
        width: 100%;
        margin: 0 auto;
        overflow: hidden;
        padding-bottom: 30%;
    }

    .header-wrap .header .logo-pos {
        position: absolute;
        top: 84%;
        left: 5%;
        width: 90%;
        -webkit-transition: all 500ms 0s ease;
        transition: all 500ms 0s ease;
        animation: logoFadeIn 2s ease 0s 1 normal;
        -webkit-animation: logoFadeIn 2s ease 0s 1 normal;
        z-index: 15;
    }

    .header-wrap .header .release-pos {
        position: absolute;
        top: 5%;
        left: 89.257485%;
        width: 8%;
        -webkit-transition: all 500ms 0s ease;
        transition: all 500ms 0s ease;
        animation: releaseFadeIn 2s ease 0s 1 normal;
        -webkit-animation: releaseFadeIn 2s ease 0s 1 normal;
        z-index: 10;
    }
    

    .header-wrap .header .bonus-pos {
        position: absolute;
        top: 42%;
        left: -5%;
        width: 40%;
        -webkit-transition: all 500ms 0s ease;
        transition: all 500ms 0s ease;
        animation: bonusFadeIn 2s ease 0s 1 normal;
        -webkit-animation: bonusFadeIn 2s ease 0s 1 normal;
        z-index: 10;
    }

    .header-wrap .header .yuzulogo {
        position: absolute;
        top: 4%;
        left: 3%;
        width: 14%;
        z-index: 10;
    }

    .common-header-wrap {
        width: 100%;
        margin: 0 auto;
        overflow: hidden;
    }

    .common-header-wrap .common-header {
        top: 0px;
        left: 0px;
        height: 0;
        padding-top: 89.74358%;
        position: relative;
        width: 100%;
        display: block;
        background: url(../images/header/common_header2.jpg) no-repeat;
        background-size: cover;
        text-indent: -9999px;
    }

    .fanza{
    width: 40%;
    margin: 0 auto 5vh auto;
    }

    .content-wrap{
        width: 100%;
        padding: 10vh 15px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    h2{
        width: 70%;
        margin: -3vh auto -13vh auto;
        position: relative;
        z-index: 50;
    }

    h3{
        background: #ffffff;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(58, 188, 201, 1) 50%, rgba(255, 255, 255, 0) 100%);
        margin: 5vh 0;
        font-size: 1.4em;
        line-height: 1.5;
        color: #fff;
        text-align: center;
        -moz-text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
        -webkit-text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
        text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
        padding: 0.5em;
    }

    hr{
        margin: 5vh 0;
        border-top: 2px dotted #333;
    }

    ul.special-wrap{
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        margin: 0 -2% -3vh -2%;
        padding: 0;
    }
    
    ul.special-wrap li{
        width: calc(100% / 2);
        padding: 0 2%;
        box-sizing: border-box;
        margin-bottom: 3vh;
    }

    ul.special-wrap li:nth-child(odd){
        transform: rotate(0deg);
    }
    
    ul.special-wrap li:nth-child(even){
        transform: rotate(0deg);
    }

    dl.info-wrap dt{
        width: 100%;
        margin-bottom: 0;
    }
    
    dl.info-wrap dd{
        width: 100%;
        padding: 0;
        margin: 0 0 1em 0;
    }

    .story-text p{
        text-align: left;
    }

    .chara-base-pos {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
    }

    .chara-base01 {
        top: 0px;
        left: 0px;
        height: 0;
        padding-top: 130.20833%;
        position: relative;
        width: 100%;
        background: url("../images/mainchara/chara01/chara-base2.jpg") no-repeat top left;
        background-size: cover;
        display: block;
        overflow: hidden;
        text-indent: -9999px;
        margin-bottom: 3vh;
    }

    .chara-base02 {
        top: 0px;
        left: 0px;
        height: 0;
        padding-top: 130.20833%;
        position: relative;
        width: 100%;
        background: url("../images/mainchara/chara02/chara-base2.jpg") no-repeat top left;
        background-size: cover;
        display: block;
        overflow: hidden;
        text-indent: -9999px;
        margin-bottom: 3vh;
    }

    .chara-base03 {
        top: 0px;
        left: 0px;
        height: 0;
        padding-top: 130.20833%;
        position: relative;
        width: 100%;
        background: url("../images/mainchara/chara03/chara-base2.jpg") no-repeat top left;
        background-size: cover;
        display: block;
        overflow: hidden;
        text-indent: -9999px;
        margin-bottom: 3vh;
    }

    .chara-base04 {
        top: 0px;
        left: 0px;
        height: 0;
        padding-top: 130.20833%;
        position: relative;
        width: 100%;
        background: url("../images/mainchara/chara04/chara-base2.jpg") no-repeat top left;
        background-size: cover;
        display: block;
        overflow: hidden;
        text-indent: -9999px;
        margin-bottom: 3vh;
    }

    .chara-base05 {
        top: 0px;
        left: 0px;
        height: 0;
        padding-top: 130.20833%;
        position: relative;
        width: 100%;
        background: url("../images/mainchara/chara05/chara-base2.jpg") no-repeat top left;
        background-size: cover;
        display: block;
        overflow: hidden;
        text-indent: -9999px;
        margin-bottom: 3vh;
    }

    .chara-base06 {
        top: 0px;
        left: 0px;
        height: 0;
        padding-top: 130.20833%;
        position: relative;
        width: 100%;
        background: url("../images/mainchara/chara06/chara-base2.jpg") no-repeat top left;
        background-size: cover;
        display: block;
        overflow: hidden;
        text-indent: -9999px;
        margin-bottom: 3vh;
    }

    .chara-cos-pos {
        position: relative;
        top: auto;
        right: auto;
        width: 80%;
        margin: 0 auto;
    }

    .cos-tab,
    .cos-tab2,
    .cos-tab3,
    .cos-tab4,
    .cos-tab5,
    .cos-tab6 {
        width: 135px;
        margin: 10px auto 10px auto;
        box-sizing: border-box;
    }

    .cos-tab .slick-track,
    .cos-tab2 .slick-track,
    .cos-tab3 .slick-track,
    .cos-tab4 .slick-track,
    .cos-tab5 .slick-track,
    .cos-tab6 .slick-track {
        transform: unset !important;
    }

    .cos-tab .slick-slide,
    .cos-tab2 .slick-slide,
    .cos-tab3 .slick-slide,
    .cos-tab4 .slick-slide,
    .cos-tab5 .slick-slide,
    .cos-tab6 .slick-slide {
        margin: 0 5px;
    }

    .cos-tab .slick-slide img,
    .cos-tab2 .slick-slide img,
    .cos-tab3 .slick-slide img,
    .cos-tab4 .slick-slide img,
    .cos-tab5 .slick-slide img,
    .cos-tab6 .slick-slide img {
        width: 100%;
    }

    .cos-slider.cos01,
    .cos-slider2.cos02,
    .cos-slider3.cos03,
    .cos-slider4.cos04,
    .cos-slider5.cos05,
    .cos-slider6.cos06 {
        left: 0;
    }

    .chara-cos-pos h5 {
        text-align: center;
        padding-right: 0;
    }

    ul.event-cg-wrap li {
        flex-basis: 50%;
        padding: 0 1%;
        margin-bottom: 2%;
        box-sizing: border-box;
    }

    .slick-prev {
        width: 20px !important;
        height: 39px !important;
        left: -10px !important;
        top: 200px !important;
        z-index: 99;
        background: rgba(0, 0, 0, 0.8);
    }

    .slick-prev::before {
        content: "" !important;
        display: block;
        width: 20px;
        height: 39px;
        background: url(../images/mainchara/prev.png) no-repeat;
        background-size: contain;
    }

    .slick-next {
        width: 20px !important;
        height: 39px !important;
        right: -10px !important;
        top: 200px !important;
        z-index: 99;
        background: rgba(0, 0, 0, 0.8);
    }

    .slick-next::before {
        content: "" !important;
        display: block;
        width: 20px;
        height: 39px;
        background: url(../images/mainchara/next.png) no-repeat right;
        background-size: contain;
    }

    .slick-track{
        display: flex!important;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0;
        margin: 0;
    }

    .thumbnail .slick-slide{
        width: 15%!important;
        float: none;
        margin: 0!important;
    }

    .thumbnail .slick-track{
        width: 100%!important;
    }

    .chara-text{
        text-align: left;
    }

    ul.dl-item{
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        overflow: hidden;
        border-radius: 10px;
        box-sizing: border-box;
        border: 3px solid #fff;
        -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
        -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
        box-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
        width: calc(100% - 8px);
        margin: 0 auto 5px auto;
    }

    ul.dl-item li{
        width: 100%;
    }

    ul.dl-item li a{
        padding: 0.5em;
    }

    ul.dl-item li.dl02 a{
        border-left: none;
        border-right: none;
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff;
    }

    ul.sub-chara-wrap {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 auto -5vh auto;
    }

    ul.sub-chara-wrap li {
        flex-basis: 75%;
        padding: 0 1.5%;
        margin-bottom: 5vh;
        box-sizing: border-box;
    }

    ul.movie-wrap {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0 -2% -3vh -2%;
    }
    
    ul.movie-wrap li {
        flex-basis: 50%;
        padding: 0 2%;
        box-sizing: border-box;
        margin-bottom: 3vh;
    }

    .mw800{
        width: 100%;
        margin: 3vh auto;
    }

    dl.spec-wrap {
        display: block;
        margin: 0 auto;
        text-align: left;
    }

    dl.spec-wrap dt {
        float: none;
        color: #3abcc9;
        width: 100%;
        font-weight: bold;
        margin-bottom: 0;
    }

    dl.spec-wrap dd {
        margin: 0 0 0.5em 0;
    }

    .bonus-wrap ul {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 auto -5vh auto;
    }
    
    .bonus-wrap ul li {
        width: 100%;
        padding: 0 1.5%;
        margin-bottom: 5vh;
        box-sizing: border-box;
    }

    .footer{
        width: 100%;
        background: #333;
        color: #fff;
        padding: 5vh 15px;
        box-sizing: border-box;
        text-align: center;
        font-size: 0.9em;
        margin-top: 5vh;
    }

    .article-2column .left-column {
        width: 100%;
        box-sizing: border-box;
        padding-right: 0;
    }
    
    .article-2column .right-column {
        width: 100%;
    }
    

}
