@charset "UTF-8";
.pchide{
    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 {
    padding-left: 60px;
}
#loading svg > * {
    opacity: 0;
}


/*--------------------
ヘッダー
--------------------*/

header {
    position: relative;
    z-index: 999;
    padding: 10px 0;
}
nav {
    display: flex;
    justify-content: space-between;
}
nav .headerLogo {
    max-width: 220px;
    display: flex;
}
nav .headerLogo a {
    display: flex;
    box-sizing: border-box;
    transition: .3s;
    padding: 10px 0;
    width: 100%;
    height: 100%;
}
nav .headerLogo a:hover {
    opacity:.8
}
nav .headerLogo svg,
nav .headerLogo img {
    vertical-align: bottom;
    width: 100%;
    height: auto;
}
#gNav {
    display: flex;
    width: 100%;
}
#gNav ul {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
#gNav li {
    width: 100%;
    max-width: 100px;
    margin-left: 20px;
    display: flex;
    justify-content: center;
}
#gNav li:first-of-type {
    margin-left: 0;
}
#gNav a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    color: #fff;
    padding: 1em 0;
    position: relative;
}
#gNav a:before {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
    height: 1px;
    background: #fff;
    transition: .5s;
}
#gNav a:hover:before,
#gNav a.current:before {
    width: 50%;
}
#gNav a.current:before {
    opacity:.8
}

/*--------------------
コンテンツエリア
--------------------*/

.cover {
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0 80px 0;
    box-sizing: border-box;
}
.cover .inner {
    display: flex;
    flex-direction: column;
}
.cover figure {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.cover figure:before {
    content:"";
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    background: #f4f1ec;
    z-index: 2;
    min-width: 390px;
    width: calc((100% - 1080px)/ 2 + 390px);
}
.cover figure:after {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*
    background: linear-gradient(-45deg,
        #000 25%,
        transparent 25%,transparent 50%,
        #000 50%, #000 75%,
        transparent 75%, transparent);
    background-size: 3px 3px;
    */
    background: radial-gradient(#000 40%, transparent 40%),
                linear-gradient(to bottom,rgb(0 0 0 / .3) 0, transparent 100%) no-repeat;
    background-size: 3px 3px,100% 100px;
    z-index: 1;
}
.cover video {
    min-width: 100%;
    min-height: 100vh;
}
.cover h1 {
    font-size: 126px;
    font-family: 'Crimson Text', serif;
    line-height: 1;
    font-weight: 400;
    color: #000;
    letter-spacing: 0;
}
@media screen and (max-width:1080px){
.cover h1 {
    font-size: 11.5vw;
}
}

/*------お知らせ・ぱんくずエリア------*/

#info,
#breadcrumb {
    color: #5b5d5d;
    font-size: 12px;
    margin-top: 30px;
    width: 35.3%;
    min-width: 360px;
    padding-right: 20px;
    box-sizing: border-box;
}
#info .ttl {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    letter-spacing: .1em;
}
#info .ttl:after {
    content: "";
    display: block;
    border-top: 1px solid #989a9a;
    width: 100%;
    margin-left: 2em;
    max-width: 100px;
}
#info li {
    display: flex;
    justify-content: flex-start;
    height: 1.6em;
    overflow: hidden;
}
#info li .date {

    margin-right: 1.5em;
}

#breadcrumb ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
#breadcrumb li {
    display: flex;
    align-items: center;
    letter-spacing: .1em;
    margin: 5px 0;
}
#breadcrumb li:before {
    content: "";
    border-top: 1px solid #989a9a;
    width: 5em;
    margin: 0 .8em;
}
#breadcrumb li:first-of-type:before {
    content: none;
}
#breadcrumb a {
    transition: .3s;
}
#breadcrumb a:hover {
    opacity: .8;
}


/*------ボタン------*/

.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;
    min-height: 100vh;
}
.inner{
    width: 100%;
    padding: 0 30px;
    max-width: 1080px;
    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;
    margin-top: 50px;
    z-index: 999;
    background: #fff;
}
footer address {
    padding: 50px 0 40px 0;
    position: relative;
}
footer p {
    letter-spacing: .1em;
}
footer img {
    width: auto;
    max-width: 250px;
    display: block;
    margin-bottom: 15px;
}
footer .copyright {
    font-size: 10px;
    text-align: center;
    padding: 10px 0 40px 0;
}