@charset "UTF-8";
/*
Theme Name: kumihara.com
Theme URI: https://kumihara.com/
Description: kumihara.com
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Roboto+Condensed&display=swap');

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;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
	display: block;
}

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;
}

/* -------------------------------- 

Primary style

-------------------------------- */

html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
	font-family: 'Noto Sans JP', sans-serif;
    font-size: 100%;
    color: #fff;
    background-color: #000;
    line-height: 1.6;
    -webkit-text-size-adjust: none;
}

body, html {
    height: 100%;
}

a {
    color: #dea110;
    text-decoration: none;
}

a:hover {
    color: #aa7b0a;
    transition: color 0.1s ease-out;
}

a:hover img {
	opacity: 0.6;
    transition: opacity 0.2s ease-out;
}

/* -------------------------------- 

Modules

-------------------------------- */

.container {
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
    clear: both;
    overflow: hidden;
}

section {
    position: relative;
}

/* -------------------------------- 

post

-------------------------------- */

p {
    font-size: 16px;
    line-height: 2;
    padding: 0 0 1.5em;
}

.f16R {
    font-size: 16px;
    font-weight: normal;
}

.alignleft {
    float:left;
    padding:0 15px 15px 10px;
}

.alignright {
    float:right;
    padding: 0 10px 15px 15px;
}

.aligncenter {
    text-align: center;
    display: block;
    margin: 20px auto;
    padding: 0;
}

.pc {
    display: inherit;
}

.sp {
    display: none;
}

@media only screen and (max-width:1000px) {

.pc {
    display: none;
}

.sp {
    display: inherit;
}

}

/* -------------------------------- 

Background - Smart Slider

-------------------------------- */

#background {
    position: fixed;
    z-index: -1;
}

div#n2-ss-2 .n2-ss-slider-4 {
    object-fit: cover;
    width: 100vw !important;
    height: 100vh !important;
}

/* -------------------------------- 

nav

-------------------------------- */

nav {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
	font-family: 'Roboto Condensed', sans-serif;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 35px 0 0;
}

nav ul li {}

nav ul li a {
    color: #fff;
    font-size: 16px;
    letter-spacing: 2px;
	position: relative;
    display: inline-block;
}

nav ul li a::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -20px;
    transform: translate(-50%, 0);
    width: 18px;
    height: 14px;
    margin-left: -1px;
    background: url(images/icon_nav.png) no-repeat 0 0;
    opacity: 0;
}

nav ul li a:hover:before, nav ul li a.active:before {
    transition: all .2s linear;
    opacity: 1;
    top: -15px;
}

nav ul li a:hover {
    color: #fff;
    transition: all .2s linear;
}

nav ul li.fb a {
    background: url(images/icon_fb.png) no-repeat 50%;
    text-indent: -9999px;
    width: 15px;
    height: 24px;
}

nav ul li.x a {
    background: url(images/icon_x.png) no-repeat 50%;
    text-indent: -9999px;
    width: 15px;
    height: 24px;
}

nav ul li.ins a {
    background: url(images/icon_ins.png) no-repeat 50%;
    text-indent: -9999px;
    width: 15px;
    height: 24px;
}

nav ul li.yt a {
    background: url(images/icon_yt.png) no-repeat 50%;
    text-indent: -9999px;
    width: 15px;
    height: 24px;
}


/* -------------------------------- 
sp nav
-------------------------------- */

#toggle {
    position: fixed;
    top: 30px;
    right: 30px;
}

#toggle-box {
    position: relative;
    width: 25px;
    height: 24px;
    cursor: pointer;
}

#toggle-box > span {
    width: 100%;
    height: 1px;
    left: 0;
    display: block;
    background: #fff;
    position: absolute;
    transition: transform .6s ease-in-out, top .5s ease, bottom .5s ease;
}

#toggle-box > span:nth-child(1) {
    top: 0;
}

#toggle-box > span:nth-child(2) {
    top: 50%;
    transform: translatey(-50%);
}

#toggle-box > span:nth-child(3) {
    bottom: 0;
}

.is-open #toggle-box > span {
    background: #fff;
}

.is-open #toggle-box > span:nth-child(1) {
    top: 50%;
    transform: rotate(45deg) translatey(-50%);
}

.is-open #toggle-box > span:nth-child(2) {
    width: 0;
}

.is-open #toggle-box > span:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg) translatey(-50%);
}

#toggle {
    z-index: 1000;
}

#main {
    position: relative;  
    z-index: 990;
}

#nav-content {
    overflow: auto;
    width: 100%;
    height: 100%;
    background: #00000085;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    opacity: 0;
    transition: opacity .6s ease, visibility .6s ease;
}

#nav-content ul {
    list-style: none;
}

#nav-content a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 30px 0;
    transition: opacity .6s ease;
    pointer-events: none;
}

#nav-content a:hover {
    opacity: 0.6;
}

.is-open {
    overflow: hidden;
}

.is-open #nav-content {
    z-index: 999;
    visibility: visible;
    opacity: 1;
}

.is-open #nav-content a {
    pointer-events: auto;
    margin: 0 auto;
}

@media only screen and (max-width:1000px) {

nav ul {
    display: inline-block;
}

#nav-content a {
    padding: 20px 0;
}

nav ul li a::before {
    background: none;
}


}

/* -------------------------------- 

top

-------------------------------- */

#contents {
    position: relative;
    z-index: 1;
}

#top_logo {
    height: 100vh;
    margin-top: -61px;
}

#top_logo h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

#top_logo h1 span.f16R {
    font-family: 'Roboto Condensed', sans-serif;
    color: #fff;
    letter-spacing: 6px;
    display: block;
}

.bg_halfsmoke {
    max-width: 860px;
    padding: 40px 50px;
    background: rgba(0, 0, 0, 0.4);
}

h2.under {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 8px;
    text-align: center;
    padding: 45px 0 50px;
}

h2.under::after {
    content: '';
    position: relative;
    bottom: -7px;
    left: 50%;
    margin-left: -102px;
    display: block;
    height: 1px;
    width: 190px;
    background: #fff;
}

@media only screen and (max-width:1000px) {

#contents {
    padding: 30px 0 0;
}

#contents.top {
    padding: 0;
}

#top_logo {
    margin-top: 0;
}

#top_logo h1 img {
    max-width: 280px;
}

#top_logo h1 span.f16R {
    font-size: 10px;
}

.bg_halfsmoke {
    margin: 0 20px;
    padding: 20px 20px;
}

h2.under {
    font-size: 33px;
}

h2.under::after {
    margin-left: -88px;
    width: 170px;
}

}

/* -------------------------------- 
top_news
-------------------------------- */

#top_news {
    height: 100vh;
}

#top_news h2.under::after {
    margin-left: -102px;
    width: 190px;
}

#top_news ul {
    padding: 3px 15px 0;
}

#top_news ul li {
    margin: 0 0 45px;
}

#top_news ul li time {
    font-family: 'Roboto Condensed', sans-serif;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
}

#top_news ul li .news_title {}

#top_news ul li .news_title a {
    font-size: 18px;
    font-weight: normal;
    color: #fff;
}

#top_news ul li .news_title a:hover {
    text-decoration: underline;
}

.btn_more {}
.btn_more a {
    display: block;
    width: 125px;
    height: 35px;
    color: #fff;
    text-align: center;
    line-height: 35px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    letter-spacing: 3px;
    margin: 0 auto;
    background: #acaf8d;
    transition: background 0.2s ease-out;
}

.btn_more a:hover {
    background: #c2c3b7;
    transition: background 0.2s ease-out;
}

@media only screen and (max-width:1000px) {

#top_news {
    height: auto;
    margin: 0 0 150px;
}

}

/* -------------------------------- 
top_video
-------------------------------- */

#top_video {
    height: 100vh;
}

#top_video h2.under::after {
    margin-left: -102px;
    width: 190px;
}

.pre_yb {
    position: relative;
    padding-bottom: 56.25%;
    margin-bottom: 29px;
    height: 0;
    overflow: hidden;
}

.pre_yb iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;	
}

@media only screen and (max-width:1000px) {

#top_video {
    height: auto;
	margin: 0 0 250px;
}

}

/* -------------------------------- 

footer

-------------------------------- */

footer {
    position: relative;
    z-index: 10;
    margin: 120px 0 0;
}

footer.active {
    margin: 0;
}

footer p.copy {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    text-align: center;
    color: #fff;
    line-height: 170%;
    padding: 0 0 1em;
}

@media only screen and (max-width:1000px) {}

/* -------------------------------- 

archive

-------------------------------- */

header.sub {
    position: relative;
    z-index: 1;
    padding: 0 0 38px;
}

.is-open header.sub {
    z-index: 2;
}

header.sub h1 {
    text-align: center;
    position: relative;
    top: 20px;
    padding: 0 0 3px;
	z-index: 10;
}

#post_archive {}

ul.archive {}

ul.archive li {}

ul.archive li a {
    display: block;
    margin: 0 0 33px;
    background-image: url(images/icon_archive.png);
    background-repeat: no-repeat;
    background-position: 98% 50%;
}

ul.archive li a:hover {
    transition: all .2s linear;
    background-position: 98.5% 50%;
}

ul.archive li a time {
    font-family: 'Roboto Condensed', sans-serif;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 2;
}

ul.archive li a h3.post_title {
    font-size: 18px;
    font-weight: normal;
    color: #fff;
    padding: 0 15px 15px 0;
}

ul.archive li a:hover h3.post_title {
    text-decoration: underline;
}

.wp-pagenavi {
    text-align: center;
    margin: 85px 0 0;
    font-family: 'Roboto Condensed', sans-serif;
}

.wp-pagenavi a, .wp-pagenavi span {
    border: none !important;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    font-weight: normal;
    padding: 6px 12px !important;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
    background: rgb(0 0 0) !important;
}

@media only screen and (max-width:1000px) {

header.sub {
    padding: 0;
}

#post_archive {
    margin: 0 20px;
}

ul.archive li a {
    background-position: 96% 50%;
}

}

/* -------------------------------- 

post_single

-------------------------------- */

#post_single {}

#post_single time {
    font-family: 'Roboto Condensed', sans-serif;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 2;
}

#post_single h3.post_title {
    font-size: 18px;
    font-weight: normal;
    color: #fff;
    padding: 0 0 15px;
}

.single_content {
    border-top: 1px solid #fff;
    padding: 25px 0 0;
    margin: 6px 0 0;
}

.single_content p {
    color: #fff;
}

#post_single .btn_more {
    margin: 75px 0 15px;
}

@media only screen and (max-width:1000px) {}

/* -------------------------------- 

post_page

-------------------------------- */

#post_page {}

#post_page h2.under {
    padding: 45px 0 56px;
}

@media only screen and (max-width:1000px) {}

/* -------------------------------- 
profile
-------------------------------- */

#post_page h2.under.profile::after {
    margin-left: -140px;
    width: 270px;
}

.bg_halfsmoke.paddtop50 {
    padding: 50px;
}

.profile_img {}

.profile_img img {
    max-width: 760px;
    width: 100%;
    height: auto;
}

.profile_name {
    font-size: 34px;
    text-align: center;
    letter-spacing: 2px;
    padding: 15px 0 25px;
}

.roboto_18 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
}

.profile_name .roboto_18 {
    display: block;
    letter-spacing: 1px;
}

@media only screen and (max-width:1000px) {

.bg_halfsmoke.paddtop50 {
    padding: 20px 20px;
}

#post_page h2.under.profile::after {
    margin-left: -109px;
    width: 210px;
}

}

/* -------------------------------- 
discography
-------------------------------- */

#post_page h2.under.discography::after {
    margin-left: -201px;
    width: 390px;
}

ul.disco {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 -20px;
}

ul.disco li {
    margin: 0 0 33px;
}

ul.disco li p {
    display: none;
}

ul.disco li a {color: #fff;}
ul.disco li a:hover {
    color: #999;
    transition: color 0.1s ease-out;
}

ul.disco li .box_img {
    height: 222px;
    display: table-cell;
    vertical-align: middle;
}

ul.disco li .box_txt {
    font-size: 18px;
    line-height: 1.2;
    padding: 2px 0 0;
}

.roboto_14 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
}

@media only screen and (max-width:1000px) {

#post_page h2.under.discography::after {
    margin-left: -165px;
    width: 330px;
}

ul.disco {
    justify-content: space-around;
	margin: 30px 0 -10px;
}

}

/* -------------------------------- 
video
-------------------------------- */

.box_video {
    margin: 0 0 63px;
}

.box_video .pre_yb {
    margin-bottom: 5px;
}

.box_video p {
    font-size: 18px;
    line-height: 1;
    padding: 8px 0 0;
}

@media only screen and (max-width:1000px) {

#post_page h2.under.contact::after {
    margin-left: -120px;
    width: 230px;
}

}

/* -------------------------------- 
contact
-------------------------------- */

#post_page h2.under.contact::after {
    margin-left: -130px;
    width: 250px;
}

.bg_halfsmoke.contact {
    padding: 50px 60px;
}

.f20R {
    font-size: 20px;
}

.f18R {
    font-size: 18px;
}

ul.list_kome {}

ul.list_kome li {
    font-size: 14px;
    text-indent: -1em;
    margin: 0 0 0 1em;
}

ul.list_kome li:before {
	content: "※";
}

.form {
    margin: 37px 0 0;
}

.form div.form_box {
    margin: 0 0 20px;
    font-size: 18px;
}

.form input[type="text"], .form input[type="tel"], .form input[type="email"], .form textarea {
    width: 100%;
    height: 48px;
    background: #0000;
    border: 2px solid #fff;
    color: #fff;
    padding: 0 10px;
	margin: 7px 0 0;
}

.form textarea {
    height: 336px;
}

.form .form_txt p {
    line-height: 1.8;
}

.form .form_btn {
    margin: 30px 0 0;
}

.form .form_btn input[type="submit"] {
    display: block;
    width: 125px;
    height: 35px;
    color: #fff;
    text-align: center;
    line-height: 33px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    letter-spacing: 3px;
    margin: 0 auto;
    background: #acaf8d;
    transition: background 0.2s ease-out;
    border: none;
    cursor: pointer;
}

.form .form_btn input[type="submit"]:hover {
    background: #c2c3b7;
    transition: background 0.2s ease-out;
}

@media only screen and (max-width:1000px) {

.bg_halfsmoke.contact {
    padding: 20px 20px;
}

}

/* -------------------------------- 

side_nav

-------------------------------- */

#side_nav {
    position: fixed;
    z-index: 10;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
	visibility: visible !important;
}

#side_nav ul {}

#side_nav ul li {
    margin: 45px 0;
    font-size: 14px;
    text-align: right;
}

#side_nav ul li a {
    color: #fff;
    opacity: 0.5;
}

#side_nav ul li a:before {
    content: '';
    display: block;
    width: 82px;
    height: 1px;
    background-color: #fff;
    top: 21px;
    position: relative;
    transition: all .2s linear;
    right: -96px;
    opacity: 0.5;
}

#side_nav ul li a.current:before {
    transition: all .2s linear;
    right: -12px;
}

#side_nav ul li a:hover:before {
    transition: all .2s linear;
    right: -12px;
}

#side_nav.side_sub {
    top: inherit;
    transform: inherit;
    bottom: 0;
    right: 38px;
    z-index: 11;
    visibility: hidden !important;
    opacity: 0;
}

#side_nav.side_sub ul li a {
    background: url(images/page_top.png) no-repeat;
    display: block;
    width: 40px;
    height: 40px;
    opacity: 0.7;
    transition: all .2s linear;
}

#side_nav.side_sub ul li a:hover {
    opacity: 1;
    transition: all .2s linear;
}

#side_nav.side_sub ul li a:before {
    content: none;
}

#side_nav.view {
    visibility: visible !important;
    transition: all .2s linear;
    opacity: 0.8;
}

@media only screen and (max-width:1000px) {

#side_nav {
    top: inherit;
    bottom: -125px;
}

#side_nav.side_sub {
    right: 20px;
}

}

