@charset "utf-8";

/* グリッドレイアウト */
/* --------------------------------------
Responsive | Breakpoint

スマホ(タテ): 
@media screen and (max-width:599px)
-----------------------------------------
PC:
@media screen and (min-width:1366px)
-------------------------------------- */


/* ---------------------------------
common
--------------------------------- */
body {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro","メイリオ","Miryo,Osaka","MS Pゴシック","MS PGothic",sans-serif;
    background-color: #26211c;
    color: #dbdbdb;
}
img {
    display: block;
    width: 100%;
}

/* ---------------------------------
openbtn
--------------------------------- */
@media screen and (max-width:599px) {
    /*ボタン外側*/
    .openbtn1 {
        transform: translate(0);
        position: fixed;
        top: 30px;
        right: 3%;
        padding: 10px 10px;
        width: 50px;
        height: 50px;
        cursor: pointer;
        background: rgb(0 0 0 / 0%);
        z-index: 99999;
      }
      /*ボタン内側*/
    .openbtn1 span {
        display: inline-block;
        transition: all .4s;
        /*アニメーションの設定*/
        position: absolute;
        left: 13px;
        height: 2px;
        background-color: #b8b8b8;
    }
    .openbtn1 span:nth-of-type(1) {
        top: 22px;
        width: 50%;
    }
    .openbtn1 span:nth-of-type(2) {
        top: 29px;
        width: 50%;
    }
    .openbtn1 span:nth-of-type(3) {
        top: 36px;
        width: 50%;
    }
      
    /*activeクラスが付与されると線が回転して×に*/
    .openbtn1.active span:nth-of-type(1) {
        top: 20px;
        left: 16px;
        transform: translateY(6px) rotate(-45deg);
        width: 35%;
    } 
    .openbtn1.active span:nth-of-type(2) {
        display: none;
    }
    .openbtn1.active span:nth-of-type(3) {
        top: 32px;
        left: 16px;
        transform: translateY(-6px) rotate(45deg);
        width: 35%;
    }
    }
    
/* ---------------------------------
topに戻るボタン
--------------------------------- */
.d-none {
    display:none;
}
#page-top {
    position: fixed;
    right: 4%;
    bottom: 50px;
    height: 50px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    font-size: 90%;
    line-height: 1.5rem;
    color: #dbdbdb;
    padding: 0 0 0 35px;
    border-top: solid 1px;
}
#page-top::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 1px;
    width: 15px;
    border-top: solid 1px;
    -webkit-transform: rotate(35deg);
            transform: rotate(35deg);
    -webkit-transform-origin: left top;
            transform-origin: left top;
}
#page-top a {
    font-size: 1em;
}

/* ---------------------------------
header
--------------------------------- */
header {
    display: grid;
    grid-template-columns: 2fr 5fr;
    width: 86%;
    height: 200px;
    margin: 0 auto;
}
header #title {
    display: flex;
}
header #title h1 {
    margin: auto 0;
    font-size: 18px;
    letter-spacing: .3rem;
    font-family: "hannari", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
}
header #title h1 a {
    color: #dbdbdb;
}
header #title h2 {
    position: absolute;
    top: 108px;
    left: 13%;
    font-family: 'Julius Sans One', sans-serif;
    font-size: 50px;
    color: hsla(0, 0%, 86%, 0.1);
}
header nav {
    margin: auto 0;
}
header nav ul {
    display: flex;
    justify-content: flex-end;
}
header nav ul li {
    padding: 50px 0 50px 6%;
    font-family: "jaf-domus-titling-web", sans-serif;
    font-weight: 300;
    font-style: normal;
}
header nav ul li a {
    padding: 30px 0;
    font-size: 13px;
    text-decoration: none;
    color: #dbdbdb;
    transition: .5s;
}
header nav ul li a:hover {
    color: #dbdbdb80;
    transition: .5s;
}
@media screen and (max-width: 599px) {
/* ------------------------
ハンバーガーメニューのnav設定
------------------------ */
header {
    width: 100%;
    grid-template-columns: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
header #title h1 {
    position: absolute;
    top: 93px;
    left: 50px;
}
header nav {
    transform: translate(-100%, 0%);
    transition: all .5s;
}
header nav ul {
    display: block;
    margin: 0;
    background: #37373780;
}
header nav ul li {
    padding: 0;
    text-align: center;
    line-height: 12vh;
}
header nav ul li a {
    padding: 30px 150px;
}
header nav.active {
    /* 元の位置に戻る */
    transform: translate(0, 0%);
}
}
    

/* ---------------------------------
降りてくるnav
--------------------------------- */
/* 上部に固定させる */
.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}  
/* クラスfixedが付与されたときの文字色 */
.fixed .header-nav-item-link { 
    color: #444444;
}
.fixed .header-nav-item-link:hover {
    color: #dbdbdb;
    transition: .5s;
}
.fixed #title h1 a {
    color: #444444;
}
.fixed #title h1 a:hover {
    color: #dbdbdb;
    transition: .5s;
}
/* クラスfixedが付与されたときh2は非表示にする */
.fixed #title h2 {
    display: none;
}
@media screen and (max-width: 599px) {
.fixed {

}
}

/* ---------------------------------
main
--------------------------------- */
main {
    width: 86%;
    margin: 0 auto 100px auto;
    display: grid;
    gap: 30px 3%;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}
main figure img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    filter: sepia(70%) contrast(.5) blur(0.5px);
}
main figure figcaption {
    margin-top: 10px;
    text-align: center;
    font-size: 70%;
    font-family: "jaf-domus-titling-web", sans-serif;
}

/*-- lightboxカスタマイズ --*/
.lb-data .lb-number {
    font-size: 0;
}
.lb-outerContainer {
    background-color: transparent;
}
.lightbox .lb-image {
    border: none;
    border-radius: 0px;
}
.lb-data .lb-caption {
    font-family: "jaf-domus-titling-web", sans-serif;
    font-weight: 400;
}

@media screen and (max-width: 599px) {
main {
    margin: 200px auto 100px auto;
    grid-template-columns: none;
}
}

/* ---------------------------------
footer
--------------------------------- */
footer {
    margin: 20px 0 10px 0;
    font-size: 12px;
}
footer p {
    text-align: center;
}
