
/*
-----------------
format
-----------------
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-family: 'Noto Sans JP', sans-serif;
    color: #151719;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
html{
    overflow-x :hidden;
}
body {
    overflow-x :hidden;
    line-height: 1.7em;
    -webkit-text-size-adjust: none;
    height: 100%;
    background: url(../img/background.png) 50% 0 no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a{
    text-decoration: none;
    color: #25282b;
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease; /* opera */
    -moz-transition: all 0.3s ease; /* firefox */
    -webkit-transition: all 0.3s ease; /* chrome, safari */
    -ms-transition: all 0.3s ease; /* ie */
}
a img{
    opacity: 1;
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease; /* opera */
    -moz-transition: all 0.3s ease; /* firefox */
    -webkit-transition: all 0.3s ease; /* chrome, safari */
    -ms-transition: all 0.3s ease; /* ie */
}
a:hover{
    opacity: 0.6;
    cursor: pointer;
}
a:hover img{
    opacity: 0.6;
}

/*
-----------------
header @PC
-----------------
*/

#header{
    width: 100%;
    margin: 0 auto;
    position: fixed;
    z-index: 9999;
    background: url(../img/background-nav.png) 50% 0 no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
header{
    width: 1080px;
    position: relative;
    z-index:50;
    margin: 0 auto;
    height: 140px;
    background-size: 130px;
}
header > p{
    position: absolute;
    top: 80px;
    left: -40px;
}
header > p a{
    display:inline-block;
    line-height: 0;
    /*padding: 16px 0 0 66px;*/
    position: relative;
}
header > p a img{
    height: 45px;
}

header > h1{
    position: absolute;
    bottom: 10px;
    left: 50%;
    margin: 0 0 0 -160px;
}
header > h1 img{
    width: 320px;
}

header input + label {
  position: absolute;
  top: 97px;
  right: -48px;
  height: 20px;
  width: 48px;
  z-index: 5;
}
header input + label span {
  position: absolute;
  width: 30px;
  height: 1px;
  top: 50%;
  margin-top: -1px;
  right: 0;
  display: block;
  background: #0f0f0f;
  transition: .5s;
}
header input + label span:first-child {
  top: 0;
}
header input + label span:last-child {
  top: 22px;
  width: 48px;
}
header label:hover {
  cursor: pointer;
}
header input:checked + label span {
  opacity: 0;
  top: 50%;
  width: 36px;
  background: #0f0f0f;
}
header input:checked + label span:first-child {
  opacity: 1;
  transform: rotate(405deg);
}
header input:checked + label span:last-child {
  opacity: 1;
  transform: rotate(-405deg);
}

header input ~ nav {
  position: fixed;
  top:0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 0;
  transition: .5s;
  transition-delay: .5s;
  overflow-y: scroll;
  -ms-overflow-style: none;
}
header input ~ nav::-webkit-scrollbar {
    display:none;
}
header nav > ul {
    width: 80vw;
    max-width: 1080px;
    margin: 0 auto;
    padding: 40px 0 0 0;
}
header input:checked ~ nav {
  height: 100%;
  transition-delay: 0s;
  background: rgba(255, 255, 255, 0.95);
  margin: 0 0 0 0;
}
header input ~ nav .nav-wrap{
    opacity: 0;
    width: 80vw;
    max-width: 1080px;
    margin: 0 auto;
    transition: .5s;
    transition-delay: 0.5s;
}
header input:checked ~ nav .nav-wrap{
    opacity: 1;
    transition-delay: 0s;
    text-align: left;
}
header nav h1{
    display: block;
    margin: 90px auto 0;
    border-bottom: 2px solid #000;
    padding-bottom: 20px;
}
header nav h1 img{
    width: 20%;
    min-width: 200px;
}
header nav .nav-wrap > ul{
    padding: 24px 0;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}
header nav ul.artist_menu{
    border-bottom: 1px solid #000;
}
header nav ul.artist_menu li{
    margin-bottom: 4px;
}
header nav ul.artist_menu li a{
    text-decoration: none;
    text-transform: uppercase;
    color: #25282b;
    font-family: 'Oswald', sans-serif;
    display: block;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 16px;
}
header nav ul.hmnav{
    /* padding-bottom: 40px; */
    border-bottom: 1px solid #000;
}
header nav .nav-wrap p {
    width: 80vw;
    max-width: 1080px;
    margin: 0px 0 0 -10px;
    padding: 24px 0;
}
header nav .nav-wrap p img{
    width: 200px;
}
header nav .nav-wrap ul.global_menu{
    padding-bottom: 60px;
}
header nav .nav-wrap ul.global_menu li{
    margin-bottom: 4px;
}
header nav .nav-wrap ul.global_menu li a{
    font-size: 18px;
    margin-bottom: 6px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    font-size: 16px;
}
#burger{
    display: none;
}





/*
-----------------
header @tablet
-----------------
*/
@media screen and (max-width: 1180px){
    header{
        width: 90vw;
    }
    header p{
        left: 0;
    }
    header > h1{
    }
    header input + label {
      right: 0;
    }
}
/*
-----------------
header @mobile
-----------------
*/
@media screen and (max-width: 766px){
    #header{
        width: 100%;
        height: 120px;
        margin: 0 auto;
        position: fixed;
        z-index: 9999;
        background: none;
    }
    #header:before{
        content: "";
        position: fixed;
        width: 360%;
        height: 148px;
        left: -100%;
        background-image: url(../img/background-nav.png);
        /* background-position: 10% 0%; */
        background-size: cover;
        pointer-events: none;
    }
    header{
        height: 120px;
    }
    header h1{
        top: 38px;
    }
    header > h1{
        position: absolute;
        bottom: auto;
        left: 0;
        margin: 0 0 0 0;
    }
    header > h1 img{
        width: 60%;
    }
    header p{
        display: none;
    }
    header nav p{
        display: block;
    }
    header h1 a img{
        display: block!important;
    }
    header input + label {
        top: 40px;
    }
    header input ~ nav > ul > li{
        width: 100%;
    }
    header input:checked ~ nav{
        overflow: scroll;
    }
    header input:checked ~ nav > ul{
        padding-top: 14px;
        width: 80vw;
    }
    header input:checked ~ nav > ul.global_menu{
        padding: 40px 0 10px;
    }
    header input:checked ~ nav > ul.global_menu a{
        font-size: 14px;
        margin-bottom: 4px;
        /* font-family: 'Noto Sans JP', sans-serif; */
    }
    header nav h1{
        width: 80vw;
        display: block;
        margin-top: 60px;
        border-bottom: 2px solid #000;
        padding-bottom: 20px;
    }
    header nav h1 img{
        width: 42%;
    }
    header nav .nav-wrap p img{
        width: auto;
        height: 40px;
    }
    .artist_menu{
        padding-bottom: 14px;
        border-bottom: 1px solid #000;
        margin-top: 0px;
    }
    .artist_menu li{
        margin-bottom: 7px;
        font-weight: bold;
    }
    .hmnav li ul li{
        font-size: 13px;
    }
}

/*
-----------------
main @PC
-----------------
*/
main{
    width: 1080px;
    margin: 0 auto 20px auto;
    padding: 0 0 120px 0;
    position: relative;
    border-bottom: 1px solid #c8c8cb;
}
/*
-----------------
main @tablet
-----------------
*/
@media screen and (max-width: 1080px){
    main{
        width: 90vw;
    }
}

/*
-----------------
main @mobile
-----------------
*/
@media screen and (max-width: 768px){
    main{
        margin: 0 auto 40px auto;
    }
}

/*
-----------------
breadCrumbs @PC
-----------------
*/
.breadCrumbs{
    width: 1080px;
    margin: 0 auto;
    overflow: hidden;
    padding: 40px 0 10px 0;
}
.breadCrumbs li{
    float: left;
    font-size: 12px;
}
.breadCrumbs li a{
    margin: 0 10px 0 0;
    padding: 0 22px 0 0;
    position: relative;
    display: inline-block;
}
.breadCrumbs li a:after{
    content:"〉";
    position: absolute;
    right: 0;
    font-size: 10px;
}
.breadCrumbs li:last-child a:after{
    content: "";
}

/*
-----------------
breadCrumbs @tablet
-----------------
*/
@media screen and (max-width: 1080px){
    .breadCrumbs{
        width: 90vw;
    }
}
/*
-----------------
breadCrumbs @mobile
-----------------
*/
@media screen and (max-width: 768px){
    .breadCrumbs{
        display: none;
    }
}

/*
-----------------
footer @PC
-----------------
*/
footer{
	width: 100%;
    width: 1080px;
    margin: auto;
}
/*
footer > div:nth-child(1){
	text-align: right;
	position: relative;
}
footer > div:nth-child(1) a{
	width: 64px;
	height: 64px;
	font-size: 0;
	display: inline-block;
	background: #a9a9a9;
	position: absolute;
	top: -32px;
	right: 0;
}
footer > div:nth-child(1) a:after{
    content:"";
    width: 14px;
    height: 14px;
    margin: -4px 0 0 -7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    left: 50%;
}
footer > div:nth-child(1) a:hover{
	opacity: 1;
	background: #191919;
	top: -36px;
}
*/
footer > div:nth-child(1){
	padding: 30px 0 23px 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    flex-wrap: wrap;
}
footer > div:nth-child(1) ul:nth-child(1){
    display: -webkit-flex;
    display: flex;
}
footer > div:nth-child(1) ul:nth-child(1) li{
    margin: 0 30px 0 0;
}
footer > div:nth-child(1) ul:nth-child(1) li a{
    display: block;
    width: 206px;
    height: 72px;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer > div:nth-child(1) ul:nth-child(1) li a:hover{
    opacity: 1;
}
footer > div:nth-child(1) ul:nth-child(1) li.wastore a:hover img{
    height: 58px;
    opacity: 1;
}
footer > div:nth-child(1) ul:nth-child(1) li.zkai a:hover img{
    height: 30px;
    opacity: 1;
}
footer > div:nth-child(1) ul:nth-child(1) li.wastore img{
    height: 64px;
}
footer > div:nth-child(1) ul:nth-child(1) li.zkai img{
    height: 32px;
}
footer > div:nth-child(1) ul:nth-child(1) li.wastore{
    background: #2184c7;
}
footer > div:nth-child(1) ul:nth-child(1) li.garden{
    background: #25282b;
}
footer > div:nth-child(1) ul:nth-child(1) li.zkai{
    background: #f8f8f8;
    margin: 0;
}
footer > div:nth-child(1) ul:nth-child(2){
    display: -webkit-flex;
    display: flex;
}
footer > div:nth-child(1) ul:nth-child(2) li{
    height: 72px;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 40px 0 0;
    font-size: 10px;
}
@media screen and (max-width: 768px){
    footer > div:nth-child(1) ul:nth-child(2) li{
        margin: 0 20px 0 0;
        text-align: center;
    }
    footer > div:nth-child(1) ul:nth-child(2) li:last-child i{
        padding: 0;
    }
}
footer > div:nth-child(1) ul:nth-child(2) li a{
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}
footer > div:nth-child(1) ul:nth-child(2) li:nth-child(1) i{
    font-size: 26px;
    color: #25282b;
    padding: 0 5px 0 0;
    vertical-align: middle;
}
footer > div:nth-child(1) ul:nth-child(2) li:nth-child(2) i,
footer > div:nth-child(1) ul:nth-child(2) li:nth-child(3) i,
footer > div:nth-child(1) ul:nth-child(2) li:nth-child(4) i,
footer > div:nth-child(1) ul:nth-child(2) li:nth-child(5) i{
    font-size: 26px;
    color: #25282b;
    padding: 0 5px 0 0;
    vertical-align: middle;
}
footer > div:nth-child(1) ul:nth-child(2) li:last-child{
    margin: 0;
}
footer > div:nth-child(1) ul:nth-child(2) li:last-child i{
    margin: 0;
}
footer > div:nth-child(2){
    padding: 15px 0 36px 0;
	margin: 0 auto;
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
footer > div:nth-child(2) ul li{
	display: inline-block;
	padding: 0 17px 0 0;
	margin: 0 17px 0 0;
	position: relative;
}
footer > div:nth-child(2) ul li:after{
	content:"";
	width: 1px;
	height: 16px;
	margin: -6px 0 0 0;
	background: #a7a8a4;
	position: absolute;
	right: 0;
	top: 50%;
}
footer > div:nth-child(2) ul li:last-child{
	padding: 0 0 0 0;
	margin: 0 0 0 0;
}
footer > div:nth-child(2) ul li:last-child:after{
	background: none;
}
footer > div:nth-child(2) ul li a{
	font-size: 11px;
	font-weight: 300;
    letter-spacing: 2px;
    font-family: 'Oswald', sans-serif;
}
footer > div:nth-child(2) p{
	font-size: 10px;
    letter-spacing: 2px;
    font-family: 'Oswald', sans-serif;
}

/*
-----------------
footer @tablet
-----------------
*/
@media screen and (max-width: 1080px){
	footer{
        width: 90vw;
        margin: 0 auto;
    }
    footer > div:nth-child(1) ul:nth-child(1){
        width: 90vw;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }
    footer > div:nth-child(1) ul:nth-child(1) li{
        margin: 0 0 0 0;
    }
    footer > div:nth-child(1) ul:nth-child(1) li a{
        width: 28vw;
    }
    footer > div:nth-child(1) ul:nth-child(1) li img{
        height: 5vw;
    }
    footer > div:nth-child(1) ul:nth-child(2){
        padding: 30px 0 0 0;
        width: 90vw;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
    }
}

/*
-----------------
footer @mobile
-----------------
*/
@media screen and (max-width: 768px){
    /*
    footer > div:nth-child(1){
        margin: 0 0 0 64px;
    }
    footer > div:nth-child(1) a{
        top: -80px;
        right: 50%;
    }
    footer > div:nth-child(1) a:hover{
        top: -86px;
    }
    */
    footer > div:nth-child(2){
        width: 90vw;
        flex-wrap: wrap;
    }
    footer > div:nth-child(2) ul{
        width: 90vw;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        padding: 0 0 20px 0;
    }
    footer > div:nth-child(2) p{
        width: 90vw;
        text-align: center;
    }
}
@media screen and (max-width: 480px){
    footer > div:nth-child(1) ul:nth-child(1){
        flex-wrap: wrap;
    }
    footer > div:nth-child(1) ul:nth-child(1) li{
        margin: 0 0 20px 0;
    }
    footer > div:nth-child(1) ul:nth-child(1) li a{
        width: 90vw;
    }
    footer > div:nth-child(1) ul:nth-child(1) li img{
        height: 10vw;
    }
}



/*-----------------------------------*/
/*-----------------------------------*/
/*-----------------------------------*/
/*Artist page*/
/*-----------------------------------*/
/*-----------------------------------*/
/*-----------------------------------*/
/*-----------------------------------*/


body > nav{
    width: 1080px;
    margin: 170px auto 0 auto;
    position: relative;
}

body > nav ul{
    display: flex;
    justify-content: space-between;
}
body > nav ul.global_menu{
    display: none;
}
body > nav ul li a{
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.b_artist_menu{
    text-transform: uppercase;   
}
@media screen and (max-width: 768px){
    body > nav{
        display: none;
    }
    .spblk{
        height: 110px;
    }
}

#news{
    margin: 60px 0 0 0;
}
#news li{
    border-bottom: 1px solid #c8c8cb;
    padding: 10px;
    display: flex;
}
#news li:first-child{
    border-top: 1px solid #c8c8cb;
}
#news li time{
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
}
#news li span{
    width: 64px;
    display: inline-block;
    background: #888888;
    color: #fff;
    font-size: 10px;
    padding: 5px 10px 5px 10px;
    margin: 0 20px 0 20px;
    line-height: 1.2em;
    text-align: center;
    font-family: 'Oswald', sans-serif;
}
#news li p{
    font-size: 14px;
}
#news li span.news{
    background: #036eb7;
}

@media screen and (max-width: 768px){
    #news{
        margin: 40px 0 0 0;
    }
    #news li{
        border-bottom: 1px solid #c8c8cb;
        padding: 10px;
        display: flex;
        flex-wrap: wrap;
    }
    #news li p{
        width: 100%;
        font-size: 15px;
    }
}


p.archive{
    text-align: right;
    margin: 32px 0 0 0;
}
p.archive a{
    padding: 5px 0 0 34px;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    position: relative;
    line-height: 1em;
}
p.archive a:before{
    content:"";
    width: 72px;
    height: 1px;
    background: #25282b;
    position: absolute;
    top: 26px;
    left: -72px;
}
p.archive a:after{
    content:"";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 0 8px;
    border-color: transparent transparent transparent #25282b;
    position: absolute;
    top: 12px;
    left: 0;
}

#movie{
    margin: 40px 0 0 0;
}
#movie ul{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
#movie ul li{
    width: 29.62%;
}
#movie ul li div{
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 20px auto 0 auto;
}
#movie ul li div iframe{
  position: absolute;
  top: 0;
  right: 0;
  width: 150% !important;
  height: 150% !important;
  transform: scale(0.66);
  transform-origin: top right;
}
#movie ul li div p{
    width: 100%;
  position: absolute;
  bottom: -30px;
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width: 768px){
    #movie ul{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    #movie ul li{
        width: 100%;
        margin: 0 0 60px 0;
    }
    #movie ul li div iframe{
        width: 100% !important;
        height: 100% !important;
        transform:none;
    }
}

main > div > h1{
    text-align: center;
    font-size: center;
    font-family: 'Oswald', sans-serif;
    font-size: 34px;
    padding: 120px 0 20px 0;
    letter-spacing: 1px;
}
@media screen and (max-width: 768px){
    main > div > h1{
        text-align: center;
        font-size: center;
        font-family: 'Oswald', sans-serif;
        font-size: 34px;
        padding: 90px 0 20px 0;
        letter-spacing: 1px;
    }
}
#live ul{
    padding: 20px 0 0 0;
}
#live li{
    border-bottom: 1px solid #c8c8cb;
    padding: 10px;
    display: flex;
}
#live li:first-child{
    border-top: 1px solid #c8c8cb;
}
#live li time{
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 0 20px 0 0;
}
#live li p{
    font-size: 14px;
}
@media screen and (max-width: 768px){
    #live li{
        border-bottom: 1px solid #c8c8cb;
        padding: 10px;
        display: flex;
        flex-wrap: wrap;
    }
    #live li p{
        width: 100%;
        font-size: 15px;
    }
}



#works ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: -20px 0 0 0;
}
#works ul li{
    width: 29.62%;
    background: #25282b;
    margin: 40px 0 0 0;
    position: relative;
}
#works ul li img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
#works ul li span{
    position: absolute;
    top: 0;
    right: 0;
    background: #25282b;
    color: #fff;
    font-size: 10px;
    padding: 5px 10px 5px 10px;
    line-height: 1.2em;
    text-align: center;
    font-family: 'Oswald', sans-serif;
}
#works ul li p{
    padding: 10px 20px 20px 20px;
    color: #fff;
    font-size: 14px;
    line-height: 1.6em;
}
@media screen and (max-width: 768px){
    #works ul{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin: -20px 0 0 0;
    }
    #works ul li{
        width: 100%;
        background: #25282b;
        margin: 40px 0 0 0;
        position: relative;
    }
}
#hzettrio #works ul li:nth-child(3n+1){
    background: #e50012;
}
#hzettrio #works ul li:nth-child(3n+1) span{
    background: #e50012;
}
#hzettrio #works ul li:nth-child(3n+2){
    background: #036eb7;
}
#hzettrio #works ul li:nth-child(3n+2) span{
    background: #036eb7;
}
#hzettrio #works ul li:nth-child(3n+3){
    background: #888888;
}
#hzettrio #works ul li:nth-child(3n+3) span{
    background: #888888;
}


#media ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: -20px 0 0 0;
}
#media ul li{
    width: 29.62%;
    background: #25282b;
    margin: 40px 0 0 0;
    position: relative;
}
#media ul li img{
    width: 100%;
    height: 160px;
    object-fit: cover;
}
#media ul li span{
    position: absolute;
    top: 0;
    right: 0;
    background: #25282b;
    color: #fff;
    font-size: 10px;
    padding: 5px 10px 5px 10px;
    line-height: 1.2em;
    text-align: center;
    font-family: 'Oswald', sans-serif;
}
#media ul li p{
    padding: 10px 20px 20px 20px;
    color: #fff;
    font-size: 14px;
    line-height: 1.6em;
}

@media screen and (max-width: 768px){
    #media ul{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin: -20px 0 0 0;
    }
    #media ul li{
        width: 100%;
        background: #25282b;
        margin: 40px 0 0 0;
        position: relative;
    }
}

#hzettrio #media ul li:nth-child(3n+1){
    background: #e50012;
}
#hzettrio #media ul li:nth-child(3n+1) span{
    background: #e50012;
}
#hzettrio #media ul li:nth-child(3n+2){
    background: #036eb7;
}
#hzettrio #media ul li:nth-child(3n+2) span{
    background: #036eb7;
}
#hzettrio #media ul li:nth-child(3n+3){
    background: #888888;
}
#hzettrio #media ul li:nth-child(3n+3) span{
    background: #888888;
}
#hzettrio #media ul li img{
    width: 100%;
    object-fit: cover;
    height: 160px;
}

.sns{
    display: flex;
    justify-content: flex-end;
}
.sns li{
    margin: 0 0 0 20px;
}
.sns li a i{
    color: #45453e;
}

.member{
    border-bottom: 2px solid #45453e;
    padding: 20px 0 20px 0;
}
.member li{
    padding: 1px 0 1px 0;
    font-size: 14px;
}

.member-trio{
    border-bottom: 2px solid #45453e;
    padding: 20px 0 20px 0;
}
.member-trio li{
    padding: 1px 0 1px 24px;
    font-size: 14px;
}
.member-trio li:nth-child(1){
    background: url(../img/nose-M.png) 0 7px no-repeat;
    background-size: 15px;
}
.member-trio li:nth-child(2){
    background: url(../img/nose-NIRE.png) 0 7px no-repeat;
    background-size: 15px;
}
.member-trio li:nth-child(3){
    background: url(../img/nose-KOU.png) 0 7px no-repeat;
    background-size: 15px;
}
.biography > p{
    font-size: 14px;
    text-align: justify;
    padding: 20px 0 0 0;
}

#biography > div{
    display: flex;
    justify-content: space-between;
    flex-wrap:wrap;
    padding: 40px 0 0 0;
}
#biography > div div.headshot{
    width: 64.9%;
    order: 2;
}
#biography > div div.headshot img{
    width: 100%;
    height: auto;
    display: block;
}
#biography > div div.biography{
    width: 30%;
    order: 1;
}
#biography > div div.biography > div img{
    width: 100%;
    height: auto;
    display: block;
}
#biography > div div.biography > div span{
    font-size: 12px;
}
#biography > div div.biography-en{
    width: 100%;
    order: 3;
    font-size: 14px;
    margin-top: 20px;
}
#biography > div div.biography-en p{
    margin: 20px 0 0 0;
}
#biography ul{
    margin-top: 20px;
}

@media screen and (max-width: 768px){
    #biography img{
        max-width: 100%;
        height: auto;
    }
    #biography > div div.headshot{
        width: 100%;
        order: 1;
        padding: 0 0 30px 0;
    }
    #biography > div div.biography{
        width: 100%;
        order: 2;
    }
    #biography > div div.biography > div img{
        width: 75%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    .sns{
        display: flex;
        justify-content: space-around;
    }
    .sns li{
        margin: 0 0 0 0;
    }
    .sns li a i{
        font-size: 30px;
        color: #45453e;
    }
    .biography > p span{
        width: 100%;
    font-size: 14px;
    text-align: center;
    padding: 0 0 20px 0;
    display: block;
}
}




#discography ul{
    display: flex;
    flex-wrap: wrap;
}
#discography ul li{
    width: 7.9%;
    margin:14px 0.3% 0 0.8%;
}
#discography ul li:first-child{
    background: #888;
    color: #fff;
    line-height: 1em;
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    display: flex;
  justify-content: center;
  align-items: center;
}
#discography ul li img{
    width: 100%;
    display: block;
}

#discography ul.album li:first-child{
    background: #e50012;
}

#discography ul.single li:first-child{
    background: #036eb7;
}

@media screen and (max-width: 768px){
    #discography ul li{
        width: 48%;
        margin:30px 1% 0 1%;
    }
}


#newsarticle{
    margin: 0 0 0 0;
}
#newsarticle > ul > li{
    border-top: 1px solid #c8c8cb;
    padding: 20px 0 0 0;
    display: flex;
    flex-wrap: wrap;
}
#newsarticle > ul > li > div{
    width: 100%;
}
#newsarticle > ul > li > div > time{
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
}
#newsarticle > ul > li > div > span{
    width: 64px;
    display: inline-block;
    background: #888888;
    color: #fff;
    font-size: 10px;
    padding: 5px 10px 5px 10px;
    margin: 0 20px 0 20px;
    line-height: 1.2em;
    text-align: center;
    font-family: 'Oswald', sans-serif;
}
#newsarticle > ul > li > p{
    font-size: 20px;
    font-weight: 500;
    padding: 10px 0 0 0;
}
#hzettrio #newsarticle li span.radio{
    background: #e50012;
}
#hzettrio #newsarticle li span.news{
    background: #036eb7;
}
#newsarticle li article{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 20px 0 80px 0;
}
#newsarticle li article > div:nth-child(1){
    width: 60%;
    margin: -20px 0 0 0;
}
#newsarticle li article > div:nth-child(2){
    width: 30%;
    text-align: right;
}
#newsarticle li article > div:nth-child(2) img{
    width: 100%;
}
#newsarticle li article > div:nth-child(1) p{
    font-size: 14px;
    margin: 20px 0 0 0;
}
#newsarticle li article > div:nth-child(1) ul{
    margin: 20px 0 0 0;
}
#newsarticle li article > div:nth-child(1) ul li{
    padding: 0 0 0 15px;
    position: relative;
    font-size: 14px;
}
#newsarticle li article > div:nth-child(1) ul li:before{
    content:"";
    width: 10px;
    height: 10px;
    background: #3a302e;
    position: absolute;
    top: 8px;
    left: 0;
}
#newsarticle li article > div:nth-child(1) ul li a{
    color: #036eb7;
}
#newsarticle li article > div:nth-child(1) ul li a i{
    font-size: 10px;
    padding: 0 0 0 10px;
    vertical-align: 2px;
    color: #036eb7;
}
@media screen and (max-width: 768px){
    iframe{
        width: 100%;
    }
}

.pager ul{
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 780px;
}
#newsarchive .pager ul{
    width: 40%;
}
.pager li{
    width: 33.3%;
    /*text-align: center;*/
    display: flex;
    align-items: center;
}
.pager li:nth-child(1){
    justify-content: flex-start;
}
.pager li:nth-child(3){
    justify-content: flex-end;
    text-align: right;
}
.pager li a{
    font-size: 12px;
    padding: 5px 0px 5px 0px;
}
.pager li:nth-child(1) a,
.pager li:nth-child(3) a{
    width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
.pager li i{
    margin: 0 10px; 
}
.pager li:nth-child(1) a i{
    margin: 0 10px 0 0;
}
.pager li:nth-child(2){
    justify-content: center;
}
.pager li:nth-child(2) a{
    border: 1px solid #3a302e;
    background: #fff;
    color: #3a302e;
    padding: 3px 20px 3px 20px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    margin: 0 16px;
}

.pager li:nth-child(2) a:hover{
    border: 1px solid #3a302e;
    background: #fff;
    color: #3a302e;
}
.pager li:nth-child(3) a i{
    margin: 0 0 0 10px;
}

@media screen and (max-width: 768px){
    #newsarchive .pager ul,
    .pager ul{
        width: 100%;
        justify-content: space-between;
    }
    .pager li{
        text-align: left;
    }
    .pager li a{
        padding: 0;
    }
    .pager li:nth-child(2){
        text-align: center;
    }
    .pager li:nth-child(3){
        text-align: right;
    }
}


#newsarchive{
    margin: 0 0 0 0;
}
#newsarchive > ul{
    padding: 10px 0 40px 0;
}
#newsarchive > ul > li{
    border-bottom: 1px solid #c8c8cb;
    padding: 10px;
    display: flex;
}
#newsarchive > ul > li:first-child{
    border-top: 1px solid #c8c8cb;
}
#newsarchive > ul > li time{
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
}
#newsarchive > ul > li span{
    width: 64px;
    display: inline-block;
    background: #888888;
    color: #fff;
    font-size: 10px;
    padding: 5px 10px 5px 10px;
    margin: 0 20px 0 20px;
    line-height: 1.2em;
    text-align: center;
    font-family: 'Oswald', sans-serif;
}
#newsarchive > ul > li span a{
    color: #fff;
}
#newsarchive > ul > li >p{
    font-size: 14px;
}
#newsarchive > ul > li span.news{
    background: #036eb7;
}

@media screen and (max-width: 768px){
    #newsarchive > ul > li{
        display: block;       
    }
}




#single_article{
    margin: 0 0 0 0;
}
#single_article > ul > li{
    border-top: 1px solid #c8c8cb;
    padding: 20px 0 0 0;
    display: flex;
    flex-wrap: wrap;
}
#single_article > ul > li > div{
    width: 100%;
}
#single_article > ul > li > div > time{
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
}
#single_article > ul > li > div > span{
    width: 64px;
    display: inline-block;
    background: #888888;
    color: #fff;
    font-size: 10px;
    padding: 5px 10px 5px 10px;
    margin: 0 20px 0 20px;
    line-height: 1.2em;
    text-align: center;
    font-family: 'Oswald', sans-serif;
}
#single_article > ul > li > p{
    font-size: 20px;
    font-weight: 500;
    padding: 10px 0 0 0;
}
#hzettrio #single_article li span.radio{
    background: #e50012;
}
#hzettrio #single_article li span.news{
    background: #036eb7;
}
#single_article li article{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 20px 0 80px 0;
}
#single_article li article > div:nth-child(1){
    width: 60%;
}
#single_article li article > div:nth-child(2){
    width: 30%;
    text-align: right;
}
#single_article li article > div:nth-child(2) img{
    width: 100%;
    height: auto;
}
#single_article li article > div:nth-child(1) p{
    font-size: 14px;
    text-align: justify;
}
#single_article li article > div:nth-child(1) strong{
    font-weight: bold;
}
#single_article li article > div:nth-child(1) p a{
    color: #036eb7;
}
#single_article li article > div:nth-child(1) .tracks{
    margin: 20px 0 0 0;
    counter-reset: my-counter;
    list-style: none;
    padding: 0;
    position: relative;
    padding: 40px 0 0 0;
}
#single_article li article > div:nth-child(1) .tracks:before{
    content:"Tracks";
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 20px;
    position: absolute;
    top: 0;
    left: 0;
}
#single_article li article > div:nth-child(1) .tracks li{
    padding: 0 0 0 18px;
    position: relative;
    font-size: 14px;
}
#single_article li article > div:nth-child(1) .tracks li:before{
    content: counter(my-counter);
    counter-increment: my-counter;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 14px;
    position: absolute;
    top: 0;
    left: 0;
}
.discnotice{
    padding: 20px 0 0 0;
}
.discnotice li{
    font-size: 12px;
    font-weight: 500;

}
#single_article li article > div:nth-child(2) ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#single_article li article > div:nth-child(2) ul li{
    width: 48%;
    text-align: center;
    margin: 10px 0 0 0;
}
#single_article li article > div:nth-child(2) ul li a{
    border: 1px solid #231815;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    text-align: left;
    display: block;
    padding: 0 0 0 20px;
    position: relative;
}
#single_article li article > div:nth-child(2) ul li a:hover{
    background: #231815;
    color: #fff;
    opacity: 1;
}
#single_article li article > div:nth-child(2) ul li a:hover i{
    color: #fff;
}
#single_article li article > div:nth-child(2) ul li a i{
    font-size: 10px;
    vertical-align: 2px;
    color: #231815;
    position: absolute;
    top: 50%;
    right: 10px;
    margin: -5px 0 0 0;
}

@media screen and (max-width: 768px){
    #single_article li article{
        flex-direction: column-reverse;
    }
    #single_article li article > div:nth-child(1),
    #single_article li article > div:nth-child(2){
        width: 100%;
    }
    .buy{
        margin-bottom: 20px;
    }
}