@charset "UTF-8";
/*==========================
common
==========================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul{
    list-style: none;
}

html{
    /* font-size: 100%; = 約16px */
    /* font-size: 62.5%; = 約10px */
    font-size: 62.5%;
}

body {
    background-color: #060309;
    color: #f6f6f6;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

a{
    text-decoration: none;
}

/*==========================
ミニロード画面
==========================*/

#splash {
    /*fixedで全面に固定*/
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 999;
        background:#f6f6f6;
        text-align:center;
        color: #060309;
}

/*==========================
.siteHeader
==========================*/
.siteHeader{
    background-color: #f6f6f6;
    width: 100%;
    position: fixed;
    z-index: 100;
    padding: 20px;
}

.siteHeader .inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_title{
    text-decoration: none;
    margin-left: 18px;
}

h1{
    color: #060309;
    font-size: 2.8rem;
    font-family: Helvetica, sans-serif, Arial;
    letter-spacing: 0.05em;
}

.globalNav__list{
    display: flex;
}

.globalNav__item{
    margin-right: 24px;
}

.globalNav__item a{
    font-size: 1.6rem;
    font-weight: bold;
    text-decoration: none;
    color: #060309;
    font-family: Helvetica, sans-serif, Arial;
    transition: all .2s;
    margin-left: 24px;
}

.globalNav__item a:hover{
    color: #b9b9b9;
}

@media screen and (max-width: 768px) {
    .siteHeader {
        padding: 8px 4%;
    }
}

/*==========================
hamburger
==========================*/
.hamburger{
    position: relative;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    display: none;
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }
}

.bye{
    opacity: 0;
}

.hamburger .hamburger_area{
    transition: all .6s;
    width: 50px;
    height: 50px;
}

.hamburger span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    /* border-radius: 2px; */
    background-color: #060309;
    width:45%;
}

.hamburger span:nth-last-of-type(1){
    top: 15px;
}

.hamburger span:nth-last-of-type(2){
    top: 23px;
}

.hamburger span:nth-last-of-type(3){
    top: 31px;
}

/*activeクラスが付与されると .openbtn-areaが360度回転し、その中の線が回転して×に*/
.hamburger.active .hamburger_area{
    transform: rotate(360deg);
}

.hamburger.active span:nth-of-type(1){
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 40%;
}

.hamburger.active span:nth-of-type(2){
    opacity: 0;
}

.hamburger.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 40%;
}


/*==========================
Modal_window
==========================*/
@media screen and (max-width: 768px) {

    .globalNav{
        display: none;
    }

    .globalNav.active {
        display: block;
        position: fixed;
        width: 100%;
        height:100vh;
        left: 50%;
        top: 61px;
        transform: translateX(-50%);
        background-color: #f6f6f6;
        z-index: 99;
    }

    .globalNav__list {
        display: block;
        width: 80%;
        margin: 0 auto;
        text-align: center;
    }

    .globalNav__item {
        margin: 48px 0;
    }

    .globalNav__list a {
        font-size: 2.4rem;
    }

    .globalNav__item a{
        margin-left: 0px;
    }

    h1{
        color: #060309;
        font-size: 1.9rem;
        font-family: Helvetica, sans-serif, Arial;
        letter-spacing: 0.05em;
    }

    .header_title{
        margin-left: 8px;
    }

}

/*==========================
.articleHeader
==========================*/
.articleHeader_main{
    padding-top: 150px;
    text-align: center;
}

.articleHeader_main h2{
    font-size: 6.2rem;
    font-family: Helvetica, sans-serif, Arial;
    letter-spacing: 0.13em;
}
.articleHeader_main p{
    padding-top: 10px;
    font-size: 2.4rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
    letter-spacing: 0.075em;
}

@media screen and (max-width: 768px) {

    .articleHeader_main{
        padding-top: 100px;
    }

    .articleHeader_main h2{
        font-size: 4.5rem;
        letter-spacing: 0.08em;
    }

    .articleHeader_main p{
        padding-top: 10px;
        font-weight: 600;
        font-size: 1.5rem;
        line-height: 1.9em;
        letter-spacing: 0.07em;
        font-family: sans-serif;
    }

}

/*==================================================
ギャラリー
===================================*/
.gallery{
    columns: 4;/*段組みの数*/
    padding:50px 100px;/*ギャラリー左右に余白をつける*/
    margin:0;
    margin-bottom: 100px;
}

.gallery li {
    margin-bottom: 10px;/*各画像下に余白をつける*/
    list-style:none;
}

/*ギャラリー内のイメージは横幅100%にする*/
.gallery img{
    width:100%;
    height:auto;
    vertical-align: bottom;/*画像の下にできる余白を削除*/
}
    
    /*　横幅900px以下の段組み設定　*/
    @media only screen and (max-width: 900px) {
        .gallery{
            columns:3;
        }

        .gallery{
            padding:50px 30px;/*ギャラリー左右に余白をつける*/
            margin:0;
            margin-bottom: 100px;
        }
    }
    
    @media only screen and (max-width: 768px) {
        .gallery{
            columns: 2;
        }	

        .gallery{
            padding:50px 10px;/*ギャラリー左右に余白をつける*/
            margin:0;
            margin-bottom: 100px;
        }
        
        
    }

/*==========================
.sitefooter
==========================*/

.siteFooter{
    background-color: #dedede;
    width: 100%;
    height: 220px;
    position: relative;
}

.siteFooter p{
    color: #060309;
    font-family: Helvetica, sans-serif, Arial;
    font-weight: bold;
}

.footer_title{
    font-size: 3.5rem;
    letter-spacing: 0.05em;
    text-align: center;
    padding-top: 55px;
}

.sns_icon{
    margin-right: 20px;
    margin-left: 20px;
    margin-top: 27px;
}

.sns_flex{
    display: flex;
    justify-content: center;
}

.sns_logo{
    width: 33px;
    height: 33px;
}

.footer_copy{
    bottom: 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);   	
    white-space: nowrap;
    letter-spacing: 0.09em;
}

@media screen and (max-width: 768px) {

    .siteFooter{
        height: 150px;
    }

    .footer_title{
        font-size: 2.3rem;
        padding-top: 25px;
    }

    .sns_icon{
        margin-top: 20px;
    }
}