/*------------------------------
theme name: toshiko_hashiura
version: 210114
author: yamabatosha
author uri: https://yamabatosha.com
------------------------------*/

@charset "utf-8";
@import url(css/reset.css);
@import url(css/base.css);

#loader .fl {
    width: 100px;
    height: 100px;
}

/*------------------------------
delighter
------------------------------*/

.delighter {
    transition: all .5s ease-out;
    transform: translateY(30px);
    opacity: 0;
}

header h1.delighter {
    transition-delay: 0.5s;
}

header #nav-toggle .delighter {
    transition-delay: .75s;
}

header nav div.delighter {
    transition-delay: 0s;
}

.cover h2.delighter {
    transition-delay: 1s;
}

.delighter.started {
    transform: none;
    opacity: 1;
}

@media (min-width: 768px) {
    header nav div.delighter {
        transition-delay: .75s;
    }
}

/*------------------------------
base
------------------------------*/

body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background: #fff;
    color: #000;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: .05em;
    line-height: 2;
    font-family: YakuHanJP, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, YuGothic, 'Yu Gothic', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
    backface-visibility: hidden;
}

video {
    width: 100%;
    height: auto;
}

audio {
    width: 100%;
    margin-top: 10px;
}

.container {
    width: 80%;
    margin: 0 auto 90px;
    position: relative;
}

.right-out {
    margin-top: 60px;
    text-align: right;
    margin-right: calc(50% - 50vw);
}

.left-out {
    margin-top: 60px;
    text-align: left;
    margin-left: calc(50% - 50vw);
}

/*------------------------------
font
------------------------------*/

p {
    margin-top: 30px;
}

h1,
h2,
h3,
h4 {
    line-height: 1;
    margin-top: 40px;
    font-family: 'Barlow', YuGothic, 'Yu Gothic', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
}

h1 {
    font-size: 24px;
}

h2 {
    font-size: 15px;
    letter-spacing: 0.1em;
    font-weight: normal;
}

h3 {
    font-size: 26px;
    text-align: center;
}

h4 {
    font-size: 18px;
    font-weight: normal;
}

.gothic {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Yu Gothic", sans-serif;
}

.caption {
    text-align: right;
    font-size: 12px;
    margin-top: 0px;
    line-height: 1;
}

/*------------------------------
link
------------------------------*/

a {
    transition: .3s;
}

a,
a:hover,
a:focus,
a:active,
a.active {
    color: #000;
    text-decoration: none;
}

a img:hover {
    opacity: .7;
}

p a {
    border-bottom: 1px solid;
}

p a:hover {
    color: rgba(51, 51, 51, .5);
}

/*------------------------------
figure
------------------------------*/

figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    padding-top: 100%;
}

figure img {
    position: absolute;
    width: 100%;
    height: auto;
    margin: 0;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    filter: brightness(1);
}

figure:hover img {
    -webkit-transform: translate(-50%, -50%) scale(1.05);
    transform: translate(-50%, -50%) scale(1.05);
    cursor: pointer;
    filter: brightness(.9);
    opacity: 1;
}

figure figcaption {
    opacity: 0;
    font-size: 15px;
    text-align: center;
    color: #fff;
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: .3s;
}

figure:hover figcaption {
    opacity: 1;
}

/*------------------------------
decoration
------------------------------*/

::selection {
    background: #f0f0f0;
    color: #000;
}

/*------------------------------
btn
------------------------------*/

.btn {
    display: inline-block;
    height: auto;
    text-align: center;
    letter-spacing: .1em;
    border-radius: 0;
    padding: 3px 10px 3px 15px;
    margin-top: 30px;
    position: relative;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.btn::after {
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

/* btn-bw */

.btn-bw {
    color: #000;
    background: #fff;
    z-index: 0;
    vertical-align: text-bottom;
}

.btn-bw::after {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #f0f0f0;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .5s;
}

.btn-bw:hover,
.btn-bw:active {
/*    color: #fff;*/
}

.btn-bw:hover::after,
.btn-bw:active::after {
    transform-origin: left top;
    transform: scale(1, 1);
}

/* btn-bw2 */

.btn-bw2 {
    color: #000;
    background: #f0f0f0;
    z-index: 0;
    padding: 5px 30px 5px 38px;
}

.btn-bw2::after {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #f6f6f6;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .5s;
}

.btn-bw2:hover,
.btn-bw2:active {
/*    color: #000;*/
}

.btn-bw2:hover::after,
.btn-bw2:active::after {
    transform-origin: left top;
    transform: scale(1, 1);
}

/*------------------------------
table
------------------------------*/

table {
    margin-top: 60px;
    width: 100%;
    text-align: center;
}

table tr {
    border-bottom: 1px solid #ddd;
}

table tr:first-child {
    border-top: 1px solid #ddd;
}

table th {
    background: #f9f9f9;
    font-weight: normal;
    vertical-align: middle;
}

table th,
table td {
    padding: 15px;
    vertical-align: top;
}

table td:first-child {
    white-space: nowrap;
}

.no-border td,
.no-border tr,
.no-border tr:first-child {
    border: none;
    padding: 0;
    text-align: left;
}

@media (max-width: 991px) {
    .table-sp thead {
        display: none;
    }
    .table-sp th,
    .table-sp td {
        display: block;
        text-align: left;
    }
    .table-sp td::before {
        float: left;
        content: attr(label);
    }
}

/*------------------------------
form
------------------------------*/

.form tr td:first-child {
    width: 100px;
    vertical-align: middle;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea,
select {
    width: 100%;
    margin: 15px 0;
    padding: 1em 0.5em;
    vertical-align: middle;
    color: #000;
    background: #fff;
    border-bottom: 2px solid #000;
    border-radius: 0;
    letter-spacing: .1em;
    font-family: YakuHanJP, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, YuGothic, 'Yu Gothic', sans-serif;
}

input[type="submit"] {
    cursor: pointer;
}

.form .btn-bw2 {
    padding: 0;
    line-height: 1;
}
.form .btn-bw2 input[type="submit"] {
    color: #000;
    line-height: 1;
    letter-spacing: .4em;
    width: 150px;
    height: 40px;
    padding-left: 32px;
}
.form .btn-bw2:hover input[type="submit"],
.form .btn-bw2:active input[type="submit"] {
/*    color: #000;*/
}

textarea {
    height: 12em;
    line-height: 1.5;
}

select {
    appearance: none;
    -webkit-appearance: none;
    border-radius: none;
    -webkit-border-radius: none;
    cursor: pointer;
}

.sel-arrow {
    position: relative;
}

.sel-arrow::after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-top: solid 1px #000;
    border-right: solid 1px #000;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: 30px;
    right: 1.5em;
}

/*------------------------------
wpcf7
------------------------------*/

span.wpcf7-not-valid-tip,
div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing,
div.wpcf7-response-output,
div.wpcf7-mail-sent-ok {
    display: inline-block;
    color: #000;
    font-size: 10px;
    float: right;
    background: #f0f0f0;
    border: none!important;
    border-radius: 15px;
    padding: 0 15px!important;
}

div.wpcf7-response-output {
    margin: 10px 0 0 0!important;
    padding: 0!important;
    background: #fff;
    color: #f33;
    font-size: 12px;
}

div.wpcf7 .ajax-loader {
    margin: 0 10px 0 0;
}

.wpcf7-spinner {
    margin: 0;
    top: 8px;
    right: 8px;
}

/*------------------------------
header
------------------------------*/

header {
    position: fixed;
    transition: .5s;
}

header h1,
header nav {
    margin: 0;
    font-weight: 600;
    font-family: 'Barlow', sans-serif;
    text-transform: uppercase;
}

header h1 {
    font-size: 14px;
    line-height: 1.2;
    margin: 15px 0 0 10px;
}

header h1 img {
    width: 90px;
    height: auto;
}

/*------------------------------
nav
------------------------------*/

/* SP */

@media screen and (max-width:767px) {
    header nav {
        visibility: hidden;
        position: fixed;
        overflow: scroll;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(198, 198, 198, 1);
        background: #f1f1f1;
        opacity: 0;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }
    html.open {
        overflow: hidden;
    }
    .open nav {
        visibility: visible;
        opacity: 1;
    }
    header nav ul {
        position: absolute;
        width: 100%;
        top: 50%;
        left: 50%;
        text-align: center;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    header nav ul li {
        font-size: 18px;
        line-height: 1;
        display: block;
        padding: 15px 0;
    }
    /* nav-toggle */
    #nav-toggle {
        display: block;
        width: 30px;
        height: 30px;
        position: fixed;
        top: 30px;
        right: 20px;
        z-index: 100;
        cursor: pointer;
    }
    #nav-toggle div {
        position: relative;
    }
    #nav-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: #000;
        position: absolute;
        left: 0;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }
    #nav-toggle span:nth-child(1) {
        top: 5px;
    }
    #nav-toggle span:nth-child(2) {
        top: 14px;
        width: 25px;
    }
    #nav-toggle span:nth-child(3) {
        top: 23px;
        width: 20px;
    }
    /* nav-toggle .open */
    .open #nav-toggle span:nth-child(1) {
        top: 14px;
        -webkit-transform: rotate(225deg);
        -moz-transform: rotate(225deg);
        transform: rotate(225deg);
    }
    .open #nav-toggle span:nth-child(2) {
        opacity: 0;
    }
    .open #nav-toggle span:nth-child(3) {
        top: 14px;
        width: 30px;
        -webkit-transform: rotate(-225deg);
        -moz-transform: rotate(-225deg);
        transform: rotate(-225deg);
    }
}

/* nav hover */

header h1 a span,
header nav ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    line-height: 1;
}

/*
header nav ul li.current a,
header h1 a span.title:hover,
header nav ul li a:hover {
    color: #fff;
}
*/

header h1 a span.title::after,
header nav ul li a::after {
    position: absolute;
    top: 2px;
    left: 0;
    content: '';
    width: 100%;
    height: 18px;
    background: #f0f0f0;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .5s;
    z-index: -1;
}

header h1 a span {
    padding: 4px 3px 5px;
}

header nav ul li a {
    padding: 0 2px 0 3px;
}

header nav ul li a::after {
    height: 20px;
    top: 0;
}

header nav ul li a.current::after,
header h1 a span.title:hover::after,
header nav ul li a:hover::after {
    transform-origin: left top;
    transform: scale(1, 1);
}

header nav ul li.sp a:hover::after {
    transform: scale(0, 1);
}

header nav ul li.sp img {
    width: 180px;
}

/*------------------------------
top
------------------------------*/

.cover {
    position: relative;
}

.cover img {
    width: 100%;
    height: calc(100vh - 120px);
    max-height: 800px;
    object-fit: cover;
}

.cover h2 {
    position: absolute;
    font-size: 22px;
    letter-spacing: .3em;
    line-height: 1.4;
    bottom: 40px;
    right: 10px;
    writing-mode: vertical-rl;
}

.copy {
    margin-top: 0;
}

/*------------------------------
section
------------------------------*/

section {
    max-width: 1500px;
    margin: 60px auto 0;
}

#about h2 {
    margin-top: 0;
}

#about h3 {
    margin-top: 90px;
}

/*------------------------------
main
------------------------------*/

.trim {
    overflow: hidden;
    position: relative;
    padding-top: 66.666%;
}

.trim img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*gallery*/

#page .trim {
    padding-top: 100%;
}

#page .trim img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.9);
    transform: translate(-50%, -50%) scale(1);
}

#page .trim img:hover {
    filter: brightness(1);
}

.bg-color {
    background: #f9f9f9;
}

/*------------------------------
footer
------------------------------*/

#footer {
    font-family: 'Barlow', sans-serif;
    position: fixed;
    bottom: 15px;
    left: 5px;
    font-size: 10px;
    writing-mode: vertical-rl;
    text-orientation: sideways;
}

/*------------------------------
768px
------------------------------*/

@media (min-width: 768px) {
    /* base
    ------------------------------*/
    body {
        font-size: 15px;
    }
    h2 {
        font-size: 20px;
    }
    h3 {
        font-size: 30px;
    }
    h4 {
        font-size: 22px;
    }
    /* header
    ------------------------------*/
    header h1 {
        font-size: 18px;
        margin: 30px 0 0 30px;
    }
    header h1 img {
        width: 150px;
        height: auto;
    }
    header nav {
        margin: 0 0 0 30px;
    }
    header nav ul li {
        line-height: 1;
        font-size: 15px;
        margin-top: 20px;
    }
    header h1 a span.title::after {
        height: 26px;
        top: 1px;
    }
    header nav ul li a::after {
        height: 20px;
        top: -2px;
    }
    header #nav-toggle {
        display: none;
    }
    section {
        margin: 60px auto 0;
    }
    /* top
    ------------------------------*/
    .cover h2 {
        font-size: 32px;
        line-height: 2;
        bottom: -130px;
        right: 60px;
    }
    .copy {
        margin-top: 90px;
    }
    /* page
    ------------------------------*/
    .gray-outer {
        background: #f9f9f9;
        margin: 90px -270px -90px 180px;
        padding: 90px;
    }
    .gray-inner {
        margin: -30px 180px 0px -270px;
    }
    #about h2 {
        margin-top: 90x;
        letter-spacing: .1em;
    }
    #about h3.about {
        text-align: right;
        margin-top: 30px;
    }
    #about h3.music {
        text-align: left;
        margin-top: 150px;
    }
    /* footer
    ------------------------------*/
    #footer {
        font-size: 12px;
        right: inherit;
        left: 30px;
        bottom: 30px;
    }
}
/*------------------------------
container
------------------------------*/
@media (min-width: 768px) {.container {width: 708px;}}
@media (min-width: 992px) {.container {width: 932px;}}
@media (min-width: 1200px) {.container {width: 1040px;}}
@media (min-width: 1300px) {.container {width: 1200px;}}
@media (max-width: 767px) {.pc {display: none !important}}
@media (min-width: 768px) {.sp {display: none !important}}
.hidden {display: none !important}