@charset "UTF-8";

/*
VARIABLES
================================================ */
:root {
    --light-green: #d5edeb;
    --green: #63dbd0;
    --brown: #403632;
    --light-grey: #eee;
    --white: #fff;
    --oswald-font: 'Oswald', sans-serif;
}

/* 共通部分 */
html {
    font-size: 100%;
}

body {
    font-family: "Yu Gothic Medium","游ゴシック Medium", "YuGothic", "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
    line-height: 1.7;
    color: #432;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* ローディング */
#loading {
    background-color: var(--light-grey);
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: grid;
    place-items: center;
}
#loading-screen {
    background-color: #222222;
    position: fixed;
    inset: 0;
    z-index: 9998;
    translate: 0 100vh;
}
#loading p {
    font-size: 2rem;
    font-family: var(--oswald-font);
}


/* ヘッダー */

.logo {
    width: 210px;
    margin-top: 14px;
}

.main-nav{
    display: flex;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-top: 34px;
    list-style: none;
}

.main-nav li{
    margin-left: 36px;
}

.main-nav a{
    color: #fff;
}

.main-nav a:hover{
    color: #0bd;
}

.page-header{
    display: flex; /*横並びにするやつ*/
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4%;
}

/* フッター */

footer{
    background: #432;
    text-align: center;
    padding: 26px 0;
}

footer p{
    color: #fff;
    font-size: 0.875rem;
}

/* main */

.home-content{
    text-align: center;
    margin-top: 10%;
}
.home-content p{
    font-size: 1.5rem;
    padding: 50px 0 42px;
    /* margin: 50px 0 42px; */
    color: #fff;
}

.page-title{
    font-size: 3.5rem;
    font-family: 'Philosopher', sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    color: #fff;
    text-align: center;
    padding-top: 10vh;
    padding-bottom: 10vh;
}

.big-bg{
    background-size: cover;
    background-position: center top;
    padding-bottom: 10vh;
}

#home{
    background-image: url(../images/genba1.JPG);
    background-blend-mode: soft-light;
    background-color: rgb(23, 23, 23);
    background-position: center;
    height: 110vh;
    /* min-height: 100vh; */
    /* 背景画像を複数個も載せて動かしたい． */
}

#home .page-title{
    text-transform: none;
}

.home-contact{
    background-image: url(../images/genba3.JPG);
    min-height: 60vh;
    background-blend-mode: soft-light;
    background-color: rgb(23, 23, 23);
    background-size: cover;
    background-position: center top;
}

.home-contact p{
    font-size: 1.5rem;
    margin: 50px 0 42px;
    color: #fff;
    text-align: center;
}


.location-map-home {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; 
    width: 60%;
    padding-top: 40px;
    padding-bottom: 40px;
    margin: 0 auto;
}

#home iframe{
    width: 100%;
    height: 100%;
}


table{
    width: 100%;
    max-width: 500px;
    border-collapse: collapse;;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
  }
  
  table tr{
    border-bottom: solid 2px #0bd;
  }
  
  table tr:last-child{
    border-bottom: none;
  }
  
  table th{
    position: relative;
    text-align: left;
    width: 50%;
    /* background-color: rgb(125, 127, 127); */
    color: #fff;
    text-align: center;
    padding: 10px 0;
    border-bottom: solid 2px #0bd;
    
  }
  
  table td{
    text-align: left;
    width: 50%;
    text-align: center;
    /* background-color: #eee; */
    padding: 10px 0;
    border-bottom: solid 2px #0bd;
}

/* contact */

#contact{
    background-image: url(../images/genba3.JPG);
    min-height: 90vh;
    background-blend-mode: soft-light;
    background-color: rgb(23, 23, 23);
    background-position: center;
}

.page-title-contact{
    font-size: 3.5rem;
    font-family: 'Philosopher', sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    color: #fff;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.contact-content1{
    color: white;
    text-align: center;
    font-size: 1.5rem;
}

.contact-content2{
    padding-top: 20px;
    padding-bottom: 20px;
    color: white;
    text-align: center;
    font-size: 1.25rem;
}

.sub-title-contact{
    font-size: 1.375rem;
    padding: 0 8px 8px;
    border-bottom: 2px #0bd solid;
    font-weight: normal;
}

.sub-title{
    font-size: 1.175rem;
    padding: 0 8px 8px;
    border-bottom: 2px #0bd solid;
    font-weight: normal;
}

#location {
    padding: 4% 0;
}
#location .wrapper {
    display: flex;
    justify-content: space-between;
}
.location-info {
    width: 22%;
}
.location-info p {
    padding: 12px 10px;
}
.location-map {
    width: 74%;
}

iframe{
    width: 100%;
    
}


.wrapper{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4%;
}

/* portfolio */


.header-text{
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
    z-index: 2;
}

#portfolio header video{
    object-fit: cover;
    object-position: center top;
    opacity: var(--video-opacity);
}

.header-pattern{
    --bg: #fff;
    position: absolute;
    z-index: 1;
    background-size: auto auto;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 2px,var(--bg) 2px, var(--bg) 2px);
}

.header-text,
.header-pattern,
header video{
    width: 100vw;
    height: 90vh;
}

#portfolio header{
    position: relative;
    margin-bottom: .5rem;
    overflow: hidden;
}

#portfolio .page-header{
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#portfolio a{
    color: #fff;
}

.grid {
    width: 94vw;
    margin: 0 auto 3vw;
    display: grid;
    gap: 2vw;
    grid-template-columns: repeat(2, 46vw);
    grid-template-rows: repeat(6, 46vw);
}

.grid-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%);
}

.grid-big-top {
    grid-column: 1/3;
    grid-row: 2/3;
}
.grid-big-bottom {
    grid-column: 1/3;
    grid-row: 6/7;
}

.grid-item:hover {
    filter: grayscale(0);
    box-shadow: 0 0 2rem rgba(0, 0, 0, .5);
    transform: scale(1.1);
    z-index: 3;
    position: relative;
}

.grid-item {
    transition: .3s;
}

/*
LIGHTBOX LUMINOUS
================================================ */
.lum-lightbox.lum-open {
    z-index: 4;
}
.lum-lightbox-inner img {
    max-width: 120vw;
    max-height: 80vh;
}


/*
DESKTOP SIZE
================================================ */
@media (min-width: 601px) {
    /* Header */
    .header-name {
        font-size: 5rem;
    }
    /* Grid */
    .grid {
        width: 80vw;
        gap: 1vw;
        grid-template-columns: repeat(3, 26vw); /* (80 - 2) / 3 */
        grid-template-rows: repeat(4, 26vw);
    }
    .grid-big-bottom {
        grid-column: 2/4;
        grid-row: 4/5;
    }
    .grid-item {
        transition: .3s;
    }
    .grid-item:hover {
        filter: grayscale(0);
        box-shadow: 0 0 2rem rgba(0, 0, 0, .5);
        transform: scale(1.1);
        z-index: 3;
        position: relative;
    }
}

@media (max-width: 600px){

    .main-nav{
        font-size: 1.25rem;
        margin-top: 10px;
    }

    .main-nav li{
        margin: 0 20px;
    }

    .home-content{
        margin-top: 20%;
    }

    .page-header{
        flex-direction: column;
        align-items: center;
    }

    .page-title{
        font-size: 1.5rem;
        padding: 50px 0 42px;
        color: #fff;
        /* line-height: 0.5;  */
    }

    .home-content p{
        font-size: 1rem;
        padding: 50px 0 42px;
        color: #fff;
        /* line-height: 0.5;  */
    }

    .location-map-home{
        width: 100%;
        padding-left: 40px;
        padding-right: 40px;
        padding-top: 40px;
        padding-bottom: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    table{
        width: 50%;
        max-width: 500px;
        border-collapse: collapse;;
        margin-left: auto;
        margin-right: auto;
        font-size: 0.75rem;
        color: #fff;
        text-align: center;
      }
      
      table tr{
        border-bottom: solid 2px #0bd;
      }
      
      table tr:last-child{
        border-bottom: none;
      }
      
      table th{
        position: relative;
        text-align: left;
        width: 50%;
        /* background-color: rgb(125, 127, 127); */
        color: #fff;
        text-align: center;
        padding: 10px 0;
        border-bottom: solid 2px #0bd;
        
      }
      
      table td{
        text-align: left;
        width: 50%;
        text-align: center;
        /* background-color: #eee; */
        padding: 10px 0;
        border-bottom: solid 2px #0bd;
    }


    #location .wrapper,
    #calendar .wrapper,
    #sns .wrapper{
        flex-direction: column;
    }

    .location-info,
    .location-map,
    .calendar-info,
    .calendar-map
    .sns-box{
        width: 100%;
        padding-top: 30px;
    }

    .sns-box{
        margin-bottom: 30px;
    }

    .page-title-contact{
        font-size: 2.75rem;
        font-family: 'Philosopher', sans-serif;
        text-transform: uppercase;
        font-weight: normal;
        color: #fff;
        text-align: center;
    }

    .contact-content1{
        color: white;
        text-align: center;
        font-size: 1.25rem;
    }
    
    .contact-content2{
        color: white;
        text-align: center;
        font-size: 1.15rem;
    }

    .page-title-contact{
        margin-top: 5%;
        margin-bottom: 5%;
    }

    .home-content2{
        flex-direction: column;
    }

    .sns-wrapper{
        display: inline-block;
    }
}
