@charset "UTF-8";

html {
    font-size: 100%;
}

body {
    background: url(images/Blackbg2.png);
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    background-color: #050507;
    }
    
a {
    color: #fff;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

li {
    list-style: none;
}

/* h1タグ用 */
.site-title {
    font-size: 6.25rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    margin: 100px 0;
}

.site-title2 {
    font-size: 5.50rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    margin: 100px 0;
}

/* h2タグ用 */
.section-title {
    border-bottom: solid 1px #fff;
    /* 下線をテキストと同じ幅にあわせるために設定 */
    display: inline-block;
    font-size: 3.75rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    margin-bottom: 45px;
}
/* h3タグ用 */
.menu-title {
    border-bottom: solid 1px #fff;
    /* 下線をテキストと同じ幅にあわせるために設定 */
    display: inline-block;
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    margin-bottom: 55px;
}
/* コンテンツ幅を設定するための共通クラス */
.wrapper {
    max-width: 800px;
    padding: 0 30px;
    margin: 0 auto;
}

/* MainとFooter全体を囲むクラス */
.container {
    /* background: #050507; */
    color: #fff;
    text-align: center;
}

/*
サイドボタン
初期状態は「translateY(60px);」で画面の右側に隠しておく
Galleryのタイトルが画面下にきたタイミングで、jQueryでCSSを変更してボタンをスライドしながら表示する
Accessのタイトルが画面下にきたタイミングで、jQueryでCSSを変更してボタンをスライドしながら非表示にする
※main.jsの「サイドボタンを表示」を参照
*/

#side-btn {
    border: solid 1px #fff;
    position: fixed;
    right: -144px;
    bottom: 200px;
    transform: rotate(-90deg) translateY(60px);
    transition: 0.6s;
    z-index: 30;
}

#side-btn a {
    width: 165px;
    font-size: 0.875rem;
    display: inline-block;
    letter-spacing: 0.1em;
    padding: 15px 0;
    transition: 0.3s;
}

#side-btn a:last-of-type {
    border-left: solid 1px #fff
}

#side-btn a:hover {
    opacity: 0.7;
}


/*
Accessの背景画像
初期状態は「display: none;」で非表示にしておく
Accessのタイトルが画面下にきたタイミングで、jQueryのfadeInで表示する
Contactのタイトルが画面下にきたタイミングで、jQueryのfadeOutで非表示にする
「position: fixed;」で固定し「width: 100vw;」「height: 100vh;」で全画面表示する
※main.jsの「Accessの背景画像を表示」を参照
*/

.bg {
    background: url(images/Blackbg.jpeg) center center repeat !important;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
/*     display: none; */
    z-index: 10;
}

/*
フェード表示
InformationとGalleryの画像を下からふわっと表示させるためのクラス
「transform: translate(0, 50%);」で下にさげた状態で、
「opacity: 0;」で非表示にしておく
*/

.fadein {
    opacity: 0;
    transform: translate(0, 50%);
    transition: 2s;
}

/*
fadeinクラスの要素が画面下にきたタイミングで、jQueryのinviewにてshowクラスを追加して
「transform: translate(0, 0);」と「opacity: 1;」で表示させる
※main.jsの「フェード表示」を参照
*/

.fadein.show {
    transform: translate(0, 0);
    opacity: 1;
}

/*-------------------------------------------
ヘッダー
-------------------------------------------*/
/*
ヘッダーロゴ
初期状態は「display: none;」で非表示にしておく
所定のスクロール位置にきたらjQueryのfadeInで表示する
※main.jsの「ロゴ、ハンバーガーメニューの表示」を参照
*/

.logo {

    line-height: 1px;
    position: fixed;
    top: 35px;
    left: 30px;
    /* 一番上にくるように設定 */

    z-index: 40;
    display: none;
}

.logo a {
    display: block;
}

/*
ハンバーガ―メニュー
初期状態は「display: none;」で非表示にしておく
所定のスクロール位置にきたらjQueryのfadeInで表示する
※main.jsの「ロゴ、ハンバーガーメニューの表示」を参照
*/

.hamburger {
    width: 42px;
    height: 42px;
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 25px;
    /* 一番上にくるように設定 */

    z-index: 40;
    display: none;
}

.hamburger span {
    width: 30px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 6px;
    transition: 0.5s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 11px;
}

.hamburger span:nth-child(2) {
    top: 21px;
}

.hamburger span:nth-child(3) {
    top: 31px;
}


.hamburger.active span:nth-child(1) {
    top: 21px;
    left: 6px;
    transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
    top: 21px;
    transform: rotate(45deg)
}

#navi {
    width: 100%;
    background-color: #fff;
    color: #050507;
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    transform: translateY(-100%);
    transition: 0.6s;
    /* ロゴ、ハンバーガーより下でAccessページの背景画像よりも上にくるよう設定 */

    z-index: 30;
}

#navi ul {
    width: 100%;
    background-color: #050507;
    padding: 80px 0 30px 0;
}

#navi ul li {
    padding: 10px 0;
}

#navi ul li a {
    display: block;
}

/*
メニュー表示
ハンバーガーメニューがクリックされた際に、jQueryで#naviにactiveクラスを追加して、
メニューを上から下にスライドさせて表示する
*/
#navi.active {
    transform: translateY(0%);
}

/*-------------------------------------------
Mainvisual
-------------------------------------------*/

#mainvisual {
    display: flex;
    justify-content: center;

    /* スクロールで画像を拡大させた際に、横スクロールが出ないよう設定 */
    overflow-x: hidden;
}

#mainvisual img {
    width: calc(100%/3);
    height: 100vh;
    flex-shrink: 0;
    object-fit: cover;
}

/*-------------------------------------------
Information
-------------------------------------------*/
#information {
    margin-bottom: 140px;
}

#information .info-date-en {
    display: block;
    font-size: 1.5rem;
}

#information .info-time-en {
    display: block;
    font-size: 1.125rem;
}

#information .info-place {
    font-size: 2.5rem;
    font-weight: 400;
    margin: 20px 0;
}

#information .info-date-ja {
    font-size: 1.125rem;
}
#information .btn {
    width: 400px;
    border: solid 1px #7d7d7d;
    color: #fff;
    display: block;
    padding: 30px 0;
    margin: 20px auto 20px auto;
    position: relative;
    transition: 0.3s;
    text-align: center;
    justify-content: space-between;
    align-items: center;
}

/*
ボタン矢印
*/

#information .btn::before,
#information .btn::after {
    content: "";
    position: absolute;
    right: -40px;
    height: 1px;
    background-color: #fff;
    transition: 0.3s;
}

/*
矢印の直線部分
*/
#information .btn::before {
    width: 120px;
    top: 48px;
}

/*
矢印の先端部分
「rotate(25deg)」で角度をつける
*/

#information .btn::after {
    width: 15px;
    top: 45px;
    transform: rotate(25deg);
}

#information .btn:hover {
    opacity: 0.7;
}

#information .btn:hover::before,
#information .btn:hover::after {
    right: -50px;
}

#information .chatwork {
    display: inline-flex;
    vertical-align: middle;
    height: 2rem;
    margin-right: 15px;
}
/*-------------------------------------------
Gallery
-------------------------------------------*/
#gallery {
    margin-bottom: 100px;

}

#gallery ul{
    display: flex;
    justify-content: center space-around;
    -webkit-align-items: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

#gallery .list li {
    margin-bottom: 60px;
    display: flex;
    width: 50%;
}

#gallery .list li img {
    width: 48%;
}

/* 奇数のliタグは左寄せ */
 #gallery .list li:nth-child(odd){
    text-align: left;
    display: flex;

}

/* 偶数のliタグは右寄せ */
#gallery .list li:nth-child(even){
    text-align: right;
    display: flex;
}
#gallery p {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 400;
}

#gallery span.menutext {
    display: inline-block;
    text-align: left;
    font-size: 1.3rem;
    font-weight: 400;
}

#gallery span.menu {

    font-size: 2.5rem;
    font-weight: 400;
    margin: 0 auto;
}

#gallery span.menukatakana {
    font-size: 2.0rem;
    font-weight: 400;
    margin: 0 auto;
}

/*-------------------------------------------
Access
-------------------------------------------*/
/*
「z-index: 20;」でコンテンツが背景画像の上にくるようにする
※デフォルトのposition（static）では、z-indexを指定できないため。
「position: relative;」設定する
*/
#gallery .option {
    display: flex;
    column-gap: 14px;
    align-items: center;
    max-width: 800px;
    text-align: center;
    margin-bottom: 5px;
}

#gallery .option::after {
    height: .7em;
    content: '';
    background: radial-gradient(#fff 20%, transparent 10%) center / .7em;
    flex:auto;
}

#gallery .optionname {
    display: inline-block;
    padding: 0 10px;

}
#gallery .optionPrice {
    display: inline-block;
    order: 1;
    font-size: 20px;
}
#gallery .optionetc {
    margin-top: 20px;
}


dt {
    display: block;
    unicode-bidi: isolate;
}
dd {
    display: block;
    unicode-bidi: isolate;
}

/*-------------------------------------------
Flow
-------------------------------------------*/
/*
「z-index: 20;」でコンテンツが背景画像の上にくるようにする
*/
#flow {
    margin-bottom: 100px;
    position: relative;
    z-index: 20;
}

.flow-container {
    margin-bottom: 200px;
    position: relative;
    z-index: 20;
}
.flow-flex {
    display: flex;
    align-items: left;
    flex-direction: column;
    text-align: left;
    margin-top: 20px;
}
.flowbox-flex {
    display: flex;
    align-items: left;
    text-align: left;
    margin-bottom: 10px;
}
#flow li{
    display: block;
        text-align: center;
}

.flow-tytle {
    position: relative;
    padding: 0.25em 1em;
    border-top: solid 2px #fff;
    border-bottom: solid 2px #fff;
    display: inline-block;
    font-size:1.3rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    margin-bottom: 35px;
    width: 25%;
  }
.flow-tytle:before, .flow-tytle:after {
    content: '';
    position: absolute;
    top: -7px;
    width: 2px;
    height: -webkit-calc(100% + 14px);
    height: calc(100% + 14px);
    background-color: rgb(255, 255, 255);
    
  }
.flow-tytle:before {
    left: 7px;
  }

.flow-tytle:after {
    right: 7px;
  }

#flow .texts {
    display: inline-flex;
    width: 75%;
    text-align: left;
    vertical-align: auto;
    margin-left: 25px;
}

.triangle {
    background: #fff;
    display: inline-block;
    height: 11px;
    width: 24px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    margin-left: 80px;
    margin-bottom: 40px;
    text-align: center;
}


/*-------------------------------------------
Contact
-------------------------------------------*/
/*
「z-index: 20;」でコンテンツが背景画像の上にくるようにする
*/
#contact {
    margin-bottom: 140px;
    position: relative;
    z-index: 20;
}

#contact .btn {
    width: 400px;
    border: solid 1px #7d7d7d;
    color: #fff;
    display: block;
    padding: 30px 0;
    margin: 0 auto 20px auto;
    position: relative;
    transition: 0.3s;
    text-align: center;
    justify-content: space-between;
    align-items: center;
}

/*
ボタン矢印
*/

#contact .btn::before,
#contact .btn::after {
    content: "";
    position: absolute;
    right: -40px;
    height: 1px;
    background-color: #fff;
    transition: 0.3s;
}

/*
矢印の直線部分
*/
#contact .btn::before {
    width: 120px;
    top: 48px;
}

/*
矢印の先端部分
「rotate(25deg)」で角度をつける
*/

#contact .btn::after {
    width: 15px;
    top: 45px;
    transform: rotate(25deg);
}

#contact .btn:hover {
    opacity: 0.7;
}

#contact .btn:hover::before,
#contact .btn:hover::after {
    right: -50px;
}

.chatwork {
    display: inline-flex;
    vertical-align: middle;
    height: 2rem;
    margin-right: 15px;
}

/*-------------------------------------------
Footer
-------------------------------------------*/

#footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-top: solid 1px #fff;
    font-size: 0.75rem;
    padding: 30px 30px;
    text-align: left;
}

#footer p {
    line-height: 1.2;
}

#footer .sns {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

#footer .snsimgx {
    display: flex;
    align-items: center;
    margin-top: 10px;
    width: 30px;
    vertical-align: bottom;
}

#footer .snsimgi {
    display: flex;
    align-items: center;
    margin-top: 10px;
    width: 30px;
    height: 30.66px;
    vertical-align: bottom;
}

#footer .sns li {
    margin-right: 15px;
}

#footer .copyright {
    display: flex;
    align-items: center;
}

#footer .copyright li:last-child {
    margin-left: 30px;
}
.nbtn{
    position: relative;
    display: inline-block;
    padding: 25px 30px;
    margin: 40px 0;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.5s;
    letter-spacing: 3px;
    overflow: hidden;
   
}
.nbtn:hover{
    background: #2182f1;
    color: #050801;
    box-shadow: 0 0 5px #2182f1,
                0 0 25px #2182f1,
                0 0 50px #2182f1,
                0 0 200px #2182f1;
     -webkit-box-reflect:below 1px linear-gradient(transparent, #0005);
}
.nbtn span{
    position: absolute;
    display: block;
}
.nbtn:nth-child(1){
    filter: hue-rotate(270deg);
}
.nbtn:nth-child(2){
    filter: hue-rotate(110deg);
}
.nbtn span:nth-child(1){
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,transparent,#2182f1);
    animation: animate1 1s linear infinite;
}
@keyframes animate1{
    0%{
        left: -100%;
    }50%,100%{
            left: 100%;
        }
    }
    .nbtn span:nth-child(2){
        top: -100%;
        right: 0;
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg,transparent,#2182f1);
        animation: animate2 1s linear infinite;
        animation-delay: 0.25s;
    }
    @keyframes animate2{
        0%{
            top: -100%;
        }
        50%,100%{
            top: 100%;
        }
    }
    .nbtn span:nth-child(3){
        bottom: 0;
        right: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(270deg,transparent,#2182f1);
        animation: animate3 1s linear infinite;
        animation-delay: 0.50s;
    }
    @keyframes animate3{
        0%{
            right: -100%;
        }
        50%,100%{
            right: 100%;
        }
    }
    
    
    .nbtn span:nth-child(4){
        bottom: -100%;
        left: 0;
        width: 2px;
        height: 100%;
        background: linear-gradient(360deg,transparent,#2182f1);
        animation: animate4 1s linear infinite;
        animation-delay: 0.75s;
    }
    @keyframes animate4{
        0%{
            bottom: -100%;
        }
        50%,100%{
            bottom: 100%;
        }
    }

/*-------------------------------------------
SP
-------------------------------------------*/

@media screen and (max-width: 900px) {
    .site-title {
        font-size: 3rem;
        margin: 50px 0;
    }

    .section-title {
        font-size: 2rem;
    }
    .menu-title {
        font-size: 1.5rem;
    }

    .logo {

        line-height: 1px;
        position: fixed;
        top: 35px;
        left: 10px;
        width: 20%;
        height: 20%;
        /* 一番上にくるように設定 */

        z-index: 40;
        display: none;
    }

    .logo a {
        display: block;
    }
    #mainvisual img {
        width: 90%;
        height: 100vh;
        flex-shrink: 0;
        object-fit: cover;
    }
    
    /*-------------------------------------------
    Information
    -------------------------------------------*/
    #information {
        margin-bottom: 80px;
    }

    #information .info-date-en,
    #information .info-time-en,
    #information .info-date-ja {
        font-size: 1rem;
    }

    #information .info-place {
        font-size: 2rem;
    }
    #information .btn {
        width: 80vw;
    }

    /*スマホの時は矢印を消す*/
    #information .btn::before,
    #information .btn::after {
        content: none;
    }

    /*-------------------------------------------
    Gallery
    -------------------------------------------*/
    #gallery {
        margin-bottom: 100px;
        text-align: center;
    }

    #gallery ul .list{
        text-align: center;
        flex-wrap: nowrap;
        display: inline-block;
    }
    #gallery .list li {
        margin-bottom: 30px;
        width: 100%;
        text-align: center;
        display: inline-block;
    }

    #gallery .list ul {
        margin: auto;
        text-align: center;
        display: inline-block;
    }

    #gallery .list li img {
        width: 100%;
    }

    #gallery p {
        font-size: 1.3rem;
        font-weight: 400;
        text-align: center;
        margin: 0 auto;
    }


    #gallery span.menukatakana {
        text-align: center;
        font-size: 1.8rem;
        font-weight: 400;
        margin: 0 auto;
    }


    #gallery span.menutext {
        display: inline-block;
        text-align: left;
        font-size: 1.3rem;
        font-weight: 400;
    }

    /*-------------------------------------------
    Access
    -------------------------------------------*/
    #access {
        margin-bottom: 280px;
    }
    .flowbox-flex {
        display: block;
        align-items: left;
        text-align: center;
        margin-bottom: 40px;
    }

    .flow-tytle{
    font-size: 1rem;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    }

    #flow .texts{
        width: auto;
        padding-left: 10px;
        padding-right: 10px;
        margin-left: 0;
    }
    .triangle {
        margin:0 auto;
        margin-bottom: 30px;
    }
    /*-------------------------------------------
    Contact
    -------------------------------------------*/
    #contact .btn {
        width: 100%;
    }

    /*スマホの時は矢印を消す*/
    #contact .btn::before,
    #contact .btn::after {
        content: none;
    }

    /*-------------------------------------------
    Footer
    -------------------------------------------*/
    #footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 30px;
    }

    #footer .sns {
        margin-bottom: 30px;
    }
}