@charset "UTF-8";
.sphide{
    display: none;
}

/*--------------------
ローディング画面
--------------------*/

#loading {
    position: fixed;
    background: #fff;
    box-sizing: border-box;
    z-index: 9999;
    overflow: hidden;
    transition: .8s;
    width: 100%;
    height: 100vh;
}
.loadingInner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
#loading svg > * {
    opacity: 0;
}
#loading svg {
    width: 80%;
    height: auto;
    padding-left: 10%;
}

/*--------------------
ヘッダー
--------------------*/

header {
    position: relative;
    z-index: 999;
    background: #fff;
}
nav {
    display: flex;
    justify-content: space-between;
}
nav .headerLogo {
    max-width: 34%;
    display: flex;
}
nav .headerLogo a {
    display: flex;
    box-sizing: border-box;
    transition: .3s;
    width: 100%;
    height: 100%;
}
nav .headerLogo a:hover {
    opacity:.8
}
nav .headerLogo svg,
nav .headerLogo img {
    vertical-align: bottom;
    width: 100%;
    /*height: auto;*/
    max-width: 180px;
    margin-top: 2%;
}
#gNav {
    display: flex;
    width: 60%;
}
#gNav ul {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
#gNav li {
    width: 100%;
    max-width: 100px;
    font-size: 13px;
    display: flex;
    justify-content: center;
}
#gNav a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    position: relative;
    min-height: 65px;
}
#gNav a:before {
    content: "";
    position: absolute;
    bottom: 1em;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
    height: 1px;
    background: rgb(0 0 0 / .3);
    transition: .5s;
}
#gNav a:hover:before,
#gNav a.current:before {
    width: 60%;
}
#gNav a.current:before {
    opacity:.8
}

/*--------------------
コンテンツエリア
--------------------*/

.cover {
    height: calc(50vh - 65px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: none;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}
.cover .inner {
    display: flex;
    flex-direction: column;
    margin-top: 6vh;
}
.cover figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.cover figure:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(#000 40%, transparent 40%);
    background-size: 3px 3px,100% 100px;
    z-index: 1;
}
.cover video {
    height: 100%;
    width: auto;
    min-width: 100%;
    min-height: 100vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.cover h1 {
    font-size: 16vw;
    font-family: 'Crimson Text', serif;
    line-height: 1;
    font-weight: 400;
    color: #000;
}

@media screen and (orientation:landscape){
    .cover {
        height: calc(100vh - 65px);
    }
}

/*------お知らせ・ぱんくずエリア------*/

#info,
#breadcrumb {
    display: none;
}

/*------ボタン------*/

.btn {
    width: 100%;
    margin: 0 auto;
    font-size: 18px;
    letter-spacing: 0.1em;
    position: relative;
    display: block;
    letter-spacing: 0.1em;
    padding: 1.4em 0.5em;
    box-sizing: border-box;
    color: #39b49e;
    border: 1px solid #39b49e;
    text-align: center;
    text-decoration: none;
    transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    text-shadow: none;
    z-index: 1;
}
.btn:before,
.btn:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    display: block;
}
.btn:before {
    width: 0;
    background: #39b49e;
    transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index:-1;
}
.btn.prev:before {
    right: 0;
}
.btn:after {
    width: 100%;
    background: #fff;
    z-index:-2;
}
.btn:hover:before,
.btn:active:before {
    width: 100%;
}
.btn:hover {
    color: #fff;
}

/*------セクションレイアウト------*/

#contents {
    position: relative;
    z-index: 0;
}
.inner{
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
    box-sizing: border-box;
}


/*--------------------
フッター
--------------------*/
.pageTop {
    position: relative;
}
.pageTop > a {
    background: rgb(244 241 236 / .8);
    color: rgb(147 146 145 / .8);
    font-size: 20px;
    text-decoration: none;
    display: block;
    right: 10px;
    bottom: 10px;
    padding: 3px 10px;
    text-align: center;
    z-index: 10;
    border-radius: 4px;
    position: fixed;
    cursor: pointer;
    transition: .3s;
}
.pageTop > a:hover {
    padding: 2px 10px 10px 10px;
    background: #f4f1ec;
    color: #939291;
}


footer {
    padding: 0;
    position: relative;
    padding-top: 60px;
    z-index: 999;
    background: #fff;
}
footer address {
    padding-bottom: 40px;
    position: relative;
}
footer p {
    letter-spacing: .1em;
}
footer img {
    width: auto;
    max-width: 190px;
    display: block;
    margin-bottom: 15px;
}
footer .copyright {
    font-size: 10px;
    text-align: center;
    padding: 10px 0 40px 0;
}