@charset "UTF-8";
/* CSS Document */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    text-decoration: none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.3rem;
    letter-spacing: .08rem;
	font-size: 14px;
    font-size: .9rem;
    font-family: 'Noto Serif JP', serif;
	color: #000;
    background: #fff;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

p {
	font-size: 16px;
	line-height: 1.6rem;
}

.text-left { text-align: left; }
.text-right { text-align: right; }
.text-center { text-align: center; }
.font-goshic { font-family: "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif; }
/*.font-mincho { font-family: "游明朝","YuMincho","ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; }*/

.hover {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 1;
}
.hover:hover { opacity: 0.75; }


@media screen and (min-width: 769px) {
    .sp-only {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .pc-only {
        display: none;
    }
}


/******************************************
* css3 animation
*****************************************/

/* effect-fade */
.effect-fade {
    opacity : 0;
    transform : translate(0, 45px);
    transition : all 800ms;
}

.effect-fade.effect-scroll {
    opacity : 1;
    transform : translate(0, 0);
}



/******************************************
* 共通部分レイアウト
*****************************************/
body#page {
    background: url(../images/bg-paper.png) repeat;
}


/* header　*/
header {
    background: -moz-linear-gradient(top, transparent, #000) ,url(../images/bg-header.png);
    background: -webkit-linear-gradient(top, transparent, #000) ,url(../images/bg-header.png);
    background: linear-gradient(to bottom, transparent, #000) ,url(../images/bg-header.png);
    background-repeat: repeat;
    width: 100%;
    padding: 20px 0;
}
.header-inner {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.nav {
    margin-top: 1.7rem;
}
.nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.nav li:not(:last-child) {
    border-right: 1px solid #888888;
}
.nav a {
    display: block;
    color: #fff;
    letter-spacing: .5em;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 60px;
}
.nav a:hover {
    color: #d7bd51;
}
.nav a:after {
    content: '';
    position: absolute;
    top: 32%;
    right: 18%;
    width: 5px;
    height: 5px;
    border: 2px solid;
    border-color: transparent transparent #fff #fff;
    transform: rotate(-45deg);
}
.nav a:hover:after {
    border-color: transparent transparent #d7bd51 #d7bd51;
}


/* footer　*/
footer {
    background: #000;
    margin-top: 130px;
    padding: 40px 5rem 15px;
    position: relative;
}
footer:before {
    content: '';
    position: absolute;
    top: 6px;
    right: 0;
    height: 2px;
    width: 100%;
    background: #5f4d27;
}
.footer-bnr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
/*.footer-bnr li:nth-child(2n) {
    margin-left: 40px
}*/
.copyright {
    margin-top: 20px
}
.copyright p {
    font-size: .7rem;
    text-align: center;
    color: #fff;
}
#pageTop {
    display: none;
    position: fixed;
    bottom: 3rem;
    right: 2vw;
    width: 70px;
    height: auto;
    z-index: 4;
    transition: all 0.3s ease;
}
#pageTop:hover {
    filter: brightness(150%);
}

/* main　*/
.wrap {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}
.sec {
    padding-top: 140px;
    position: relative;
}
.box-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.title-main {
    text-align: center;
    margin-bottom: 70px;
}
.btn-hover a {
    display: block;
    position: relative;
    box-sizing: border-box;
    background: url(../images/bg-btn.png) repeat;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 0;
}
.btn-hover a:before {
    content: '';
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: -100%;
    left: 0;
    background-color: rgba(255, 235, 187, 0.28);
    transition: all 0.3s ease;
    filter: brightness(100%);
}
.btn-hover a:hover:before{
    bottom: 0;
}


/******************************************
* TOP
*****************************************/
.mv-slider {
    background: -moz-linear-gradient(top, #000 10%, transparent 40%);
    background: -webkit-linear-gradient(top, #000 10%, transparent 40%);
    background: linear-gradient(to bottom, #000 10%, transparent 40%);
    margin-bottom: 130px;
}
.mv-slider-inner {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
}
.box-banner {
    margin-top: 80px;
}
.box-banner ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.box-movie {
    width: 100%;
    /*max-width: 730px;*/
    margin: 80px auto 0;
}
.box-movie-inner {
    margin-bottom: 35px;
}
.box-movie-inner a {
    display: block;
    border: 10px solid #c5c0a1;
    background: #000;
}
.box-movie-inner a img {
    vertical-align: bottom;
    transition: all 0.3s ease;
    opacity: .7;
}
.box-movie-inner a:hover img {
    opacity: 1;
}
.box-movie-inner figure {
    position: relative;
    width: 100%;
}
.box-movie-inner figure:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
    background: url(../images/icon-play.png) no-repeat;
    background-size: contain;
}
.btn-hover.btn-movie span {
    margin-left: 2.5rem;
}
.btn-hover.btn-movie span:before {
    content: '';
    position: absolute;
    top: 35%;
    left: 19%;
    width: 27px;
    height: 21px;
    background: url(../images/deco01.png) no-repeat;
    background-size: contain;
}
#shop .box-inner:not(:last-child) {
    margin-bottom: 100px;
}
.title-shop {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: .4em;
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 35px;
    position: relative;
}
.title-shop:after {
    content: '';
    position: absolute;
    top: 80%;
    left: 50%;
    width: 2px;
    height: 30px;
    background: #4f422b;
}
.base {
    border: 1px solid #9f9f9f;
    margin-bottom: 20px;
}
.base dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.base dt {
    background: rgba(214, 204, 180, 0.3);
    padding: 20px;
    width: 35%;
    border-bottom: 1px solid #9f9f9f;
    border-right: 1px solid #9f9f9f;
}
.base dd {
    background: rgba(255, 255, 255, 0.45);
    padding: 20px;
    width: 100%;
    border-bottom: 1px solid #9f9f9f;
}
.base dl:last-child dt, .base dl:last-child dd {
    border-bottom: none;
}
.gmap {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 75%;
}
.gmap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.deco01, .deco02, .deco03, .deco04, .deco05 {
    position: absolute;
    z-index: -1;
}

/******************************************
* GALLERY
*****************************************/
.box-gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.box-gallery li {
    margin-bottom: 60px;
}
.title-movie {
    text-align: center;
    font-weight: 500;
    margin: 30px auto 20px;
}
.title-movie span {
    position: relative;
}
.title-movie span:before,
.title-movie span:after {
    content: '';
    position: absolute;
    top: 35%;
    width: 18px;
    height: 9px;
    background: url(../images/deco02.png) no-repeat;
    background-size: contain;  
}
.text-movie {
    font-size: 13px;
}


/* pc
===================================== */
@media screen and (min-width:769px) {
    
    /* TOP */

    .box-banner ul li:not(:last-child) {
        margin-bottom: 20px;
    }
    .box-column .image, .box-column .detail {
        width: 520px;
    }
    .deco01 {
        top: 35rem;
        left: -6rem;
    }
    .deco02 {
        top: 54rem;
        right: -9rem;
    }
    .deco03 {
        top: 43rem;
        left: 10rem;
    }
    .deco04 {
        top: 90rem;
        left: -6rem;
    }
    .deco05 {
        top: 163rem;
        left: 10rem;
    }
    .deco01 img {
        width: calc(929px / 2);
    }
    .deco02 img {
        width: calc(823px / 2);
    }
    .deco03 img {
        width: calc(1056px / 2);
    }
    .deco04 img {
        width: calc(929px / 2);
    }
    .deco05 img {
        width: calc(929px / 2);
    }
    
    /* GALLERY */
    .box-gallery li {
        width: 47%;
    }
    
    .title-movie span {
        padding: 0 35px;
    }
    .title-movie span:before {
        left: 0;
    }
    .title-movie span:after {
        right: 0;
    }
}



/* sp
===================================== */
@media screen and (max-width:768px) {
    
    img {
        width: 100%;
    } 
    header {
        min-width: auto;
    }
    .header-inner .logo {
        width: 45%;
        margin: 0 auto;
    }
    .nav {
        width: 100%; 
    }
    .nav li {
        box-sizing: border-box;
        text-align: center;
        width: 50%;
    }
    .nav a {
        padding: 10px 45px;
    }
    footer {
        margin-top: 4rem;
        padding: 50px 20px 20px;
    }
    footer .bnr {
        width: 65%;
        margin: 0 auto;
    }
    .copyright p {
        font-size: .6rem;
    }
    #pageTop {
        width: 40px;
        bottom: 15px;
    }
    .wrap {
        width: 90%;
    }
    .sec {
        padding-top: 4rem;
    }
    .title-main {
        width: 75%;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 2rem;
    }
    .btn-hover a {
        width: 80%;
        padding: .6rem 1rem;
        font-size: .8rem;
    }
    
    /*TOP*/
    .mv-slider {
        margin-bottom: 5rem;
    }
    .box-banner {
        margin-top: 2rem;
    }
    .box-banner.sp-only {
        margin-top: 3rem;
    }
    .box-banner li:not(:last-child) {
        margin-bottom: 1rem;
    }
    .box-movie {
        margin-top: 1rem;
    }
    .box-movie-inner {
        margin-bottom: 1rem;
    }
    .box-movie-inner figure:after {
        width: 70px;
        height: 70px;
    }
    .btn-hover.btn-movie span:before {
        top: 33%;
        left: 19%;
        width: 18px;
        height: 14px;
    }
    #shop .box-inner:not(:last-child) {
        margin-bottom: 5rem;
    }
    .box-column .image {
        margin-bottom: .8rem;
    }
    .box-column .detail {
        width: 100%;
    }
    .base {
        font-size: .7rem;
    }
    .base dt, .base dd {
        padding: .5rem;
    }
    .title-shop {
        margin-bottom: 25px;
        padding-bottom: 20px;
        font-size: 1rem;
    }
    .title-shop:after {
        width: 1px;
        height: 20px;
    }
    
    /* GALLERY */
    .box-gallery li {
        margin-bottom: 2.5rem;
    }
    .box-movie-inner .title-main {
        width: 90%;
    }
    .title-movie {
        margin: 1rem auto;
    }
    .title-movie {
        font-size: .9rem;
    }
    .text-movie {
        font-size: .7rem;
    }
    .title-movie span:before {
        left: -2rem;
    }
    .title-movie span:after {
        right: -2rem;
    }
    
}



@media screen and (max-width:480px) {    
    
    .footer-bnr li:nth-child(2n) {
        margin-top: 1rem;
    }
    
}