@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Open+Sans');

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,
blockquote,pre,abbr,address,cite,code,del,dfn,em,img,
ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,
ol,ul,li,fieldset,form,label,legend,table,caption,
tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,
figcaption,figure,footer,header,hgroup,menu,nav,
section,summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    font-family: 'Open Sans', 'Roboto', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-weight: normal;
}

html,body {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

img{
  width: 100%;
  display: block;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
    word-break: break-all;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
    color: #0e0e0e;
}

ol,
ul {
    list-style: none;
}

@font-face {
    font-family: 'GerTTmedium';
    src: url("./font/GerTT Medium.otf") format('opentype'),
        url("./font/GerTT Medium.woff") format('woff');
}

@font-face {
    font-family: 'GerTTlight';
    src: url("./font/gerttlightweb.otf")format('opentype'),
        url("./font/gerttlightweb.woff") format('woff');
}

.inner {
    width: 100%;
    padding: 0 6.67%;
}

.sp{
    display: block!important;
}

.pc{
    display: none!important;
}

@media only screen and (min-width: 769px) {
    .sp {
        display: none!important;
    }

    .pc {
        display: block!important;
    }

    .inner {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 30px;
    }
}

@media only screen and (max-width: 768px) {
    html,
    body {
        height: 100%;
        min-width: 320px;
    }

}

/*========================================================
▼ヘッダー
========================================================*/

header {
    width: 100%;
    height: calc(41.25px + 1vw);
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    background-color: #0e0e0e;
    z-index: 9999;
}

.header-inner {
    width: 100%;
    position: relative;
    height: calc(41.25px + 1vw);
    display: flex;
    justify-content: space-between;
    padding: 0 3%;
    align-items: center;
}

.header-inner .logo {
    width: 12.67vw;
    max-width: 70px;
}


/*SNSアイコン*/

.header-inner .sns {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-inner .sns a {
    display: block;
    text-align: center;
    padding: 0 1em;
    color: #fff;
}

.header-inner .sns a:last-of-type {
    padding-right: 0;
}

.header-inner .sns a:hover,
.header-inner .logo:hover {
    opacity: 0.8;
}

.header-inner .sns a i {
    font-size: calc(2rem + 1vw);
    vertical-align: middle;
}

@media only screen and (min-width: 769px) {
    header {
        width: 100%;
        height: 90px;
    }

    .header-inner {
        width: 100%;
        max-width: 1200px;
        padding: 0 20px;
        margin: 0 auto;
    }

    .header-inner .logo {
        max-width: 102px;
        max-height: 56px;
    }

    .header-inner .sns a {
        padding: 0 1.5em;
    }

    .header-inner .sns a:hover,
    .header-inner .logo:hover {
        opacity: 0.8;
    }

    .header-inner .sns a i {
        font-size: 3.5rem;
        vertical-align: middle;
    }
}


/*========================================================
▼メイン
========================================================*/

#main {
    width: 100%;
    position: relative;
    background-color: #fff;
}

@media only screen and (min-width: 769px) {
    #main {
        width: 100%;
        margin: 0 auto;
    }
}

/*========================================================
▼メインビジュアル
========================================================*/

#mv {
    position: relative;
    z-index: 9996;
    width: 100%;
}

#mv .mv-inner {
    width: 100%;
    margin: 0 auto;
    height: calc(100vw * 0.74);
    max-height: 520px;
    position: relative;
    background-image: url(../images/mv.jpg);
    background-position: 50% 50%;
    background-size: cover;
    padding-top: 9.33%;
}

#mv .mv-video {
    width: 100%;
    padding: 0 4%;
    margin: 0 auto;
    position: relative;
}

.play-btn {
    color: #fff;
    font-size: 2vw;
    position: absolute;
    bottom: 1.2em;
    left: 4%;
    padding-left: 1.4em;
}

.fa-play {
    font-size: 1.8em;
    margin-right: 0.3em;
    vertical-align: middle;
}

@media only screen and (min-width: 769px) {
    #mv {
        background-color: #444;
    }

    #mv .mv-inner {
        width: 100%;
        max-width: 1800px;
        max-height: 750px;
        margin: auto;
    }

    #mv .mv-video {
        width: 100%;
        max-width: 750px;
        padding: 0 30px;
        margin: 0 auto;
        position: relative;
    }

    .play-btn {
        font-size: 1.6rem;
        padding-left: 1em;
    }

    .play-btn:hover {
        opacity: 0.6;
    }

    .fa-play {
        font-size: 1.3em;
        margin-right: 0.3em;
    }
}


/*スクロールボタン*/

.scroll_down {
    position: absolute;
    bottom: 4.3%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 9998;
}

.scroll_down a {
    font-size: 2vw;
    font-weight: 600;
    color: #333;
    position: relative;
    display: block;
    font-family: 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

.scroll_down a span {
    position: absolute;
    bottom: 38px;
    left: 67%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    margin-left: -12px;
    border-left: 1px solid #333;
    border-bottom: 1px solid #333;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: sdb 1s infinite;
    animation: sdb 2s infinite;
    box-sizing: border-box;
}

@-webkit-keyframes sdb {
    0% {
        -webkit-transform: rotate(-45deg) translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        -webkit-transform: rotate(-45deg) translate(-10px, 10px);
        opacity: 0;
    }
}

@keyframes sdb {
    0% {
        transform: rotate(-45deg) translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(-45deg) translate(-10px, 10px);
        opacity: 0;
    }
}

@media only screen and (min-width: 769px) {
    .scroll_down a {
        font-size: 14px;
    }
   
}


/*========================================================
▼コンテンツ全体
========================================================*/

#wrapper {
    width: 100%;
}

@media only screen and (min-width: 769px) {
    #wrapper {
        width: 100%;
        max-width: 1080px;
        margin: 0 auto;
        
        position: relative;
    }
}

#ttl{
    background: url('../images/bg_lead.jpg') no-repeat center center;
    padding: 16.53% 6.4%;
    background-size: cover;
}

#ttl.inner{
    width:100%;
    max-width:1080px;
}


#ttl.inner img{
    width:64.8%;
    margin: 0 auto;
    max-width:700px;
}

#contents {
    width: 100%;
    position: relative;
    padding: 10% 0 0;
    background-color: #fff;
}

#contents h2{
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.928;
    margin-bottom: 4%;
}

#contents h2 span{
    font-weight: 600;
    display: block;
    margin-bottom: 5.33%;
}

#contents h2 img{
    width: 48%;
    margin: 0 auto;
}

@media only screen and (min-width: 769px) {
    #ttl{
        padding: 250px 0;
    }

    #contents {
        padding: 100px 0 0;
    }

    #contents h2{
        margin-bottom: 30px;
    }

    #contents h2 span{
        font-size: 2.5rem;
    }

    #contents h2 img{
        width: 360px;
        margin: 0 auto;
    }
}

/*----------------------------------------
セクション共通
----------------------------------------*/

section h3 {
    font-size: 6.67vw;
    font-weight: 600;
    padding-top: 0.36em;
    margin-bottom: 8%;
    text-align: center;
    position: relative;
    font-family: 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

section h3:before {
    width: 60%;
    height: 2px;
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #0e0e0e;
}

section h4 {
    background-color: #296397;
    text-align: center;
    color: #fff;
    font-size: 4.8vw;
    font-weight: 600;
    padding: 1em 0;
    position: relative;
    font-family: 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

section h4::before,
section h4::after {
  content: '';
  position: absolute;
  top: 100%;
  border-style: solid;
  border-color: transparent;
}

section h4::before {
  left: 0;
  border-width: 0 18px 18px 0;
  border-right-color: #20507b;
}

section h4::after {
  right: 0;
  border-style: solid;
  border-width: 18px 18px 0 0;
  border-top-color: #20507b;
}

section h4 span{
    font-size: 3.8vw;
    font-weight: 600;
    display: block;
    margin-top: 2%;
}

@media only screen and (min-width: 769px) {
    section h3 {
        font-size: 3.6rem;
        padding-top: 40px;
        line-height: 1;
        margin-bottom: 40px;
    }

    section h4{
        font-size: 2.4rem;
        color: #222;
        padding: 20px 0 50px;
        background: none;
        line-height: 1;

    }
    
    section h4 span{
        font-size: 2rem;
        margin-top: 12px;
    }

    section h4::before,
    section h4::after {
        display: none;
    }

    section h3:before {
        width: 280px;
        height: 2px;
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        -moz-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        background-color: #0e0e0e;
    }
}


/*----------------------------------------
リード
----------------------------------------*/

#lead {
    font-size: 1.4rem;
    padding-top: 5%;
    padding-bottom: 6%;
}

#lead p{
    line-height: 1.785;
}

#lead p:first-of-type{
    margin-bottom: 1em;
}

@media only screen and (min-width: 769px) {
    #lead {
        font-size: 1.6rem;
        padding: 30px 0 18px;
    }

    #lead p{
        width: 100%;
        max-width: 680px;
        margin:0 auto;
    }
}
/*----------------------------------------
写真
----------------------------------------*/
#pic{
    padding: 6% 6.67% 7.5%;
}

#pic ul li{
    margin-bottom: 8%;
}

#pic ul li:last-of-type{
    margin-bottom: 0;
}

#pic ul li:last-of-type img{
    margin-bottom: 8%;
}

@media only screen and (min-width: 769px) {
    #pic{
        width: 100%;
        max-width: 1080px;
        margin: 0 auto;
        padding: 30px 0 50px;
    }

    #pic ul{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    #pic ul li{
        width: 49%;
    }

    #pic ul li:nth-of-type(1){
        width: 63%;
        margin: 0 auto 20px;
    }

    #pic ul li:nth-of-type(2){
         margin-bottom: 20px;
     }


    #pic ul li:nth-of-type(3){
         margin-bottom: 20px;
     }


    #pic ul li:nth-of-type(5){
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    #pic ul li:nth-of-type(n+4){
        margin-bottom: 0;
    }

    #pic ul li:last-of-type img{
        margin-bottom: 0;
        min-height: 0%;
    }

}

/*----------------------------------------
items
----------------------------------------*/
#items{
    padding: 7.5% 6.67%;
}

#items .collection{
    padding: 8% 0 11.33%;
}

#items .collection:last-of-type{
    padding-bottom: 0;
}

#items .collection .collection-about{
    width: 100%;
}

#items .collection .collection-about > *{
    text-align: center;
    font-size: 1.4rem;
}

#items .collection .collection-about dt{
    margin-bottom: 6.4%;
}

#items .collection .collection-about dt img{
    width: auto;
    max-height: 150px;
    margin: 0 auto;
}

#items .collection .collection-about dd{
    font-weight: 600;
    margin-bottom: 8%;
}

#items .collection .collection-about p{
    margin-bottom: 9%;
}

#items .collection .collection-about .detail-btn{
    width: 60%;
    margin: 0 auto;
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    color: #6d869d;
    background-color: #ddd;
    box-shadow: 2px 2px 4px rgba(146,168,180,1);
    border-radius: 10px;
    padding: 0.5em 0;
    margin-bottom: 4px;
}

#items .collection .collection-about .detail-btn i{
    font-size: 1.6rem;
}

@media only screen and (min-width: 600px) {
    #items .collection{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    #items .collection .collection-about{
        width: 46%;
        display: flex;
        flex-direction: column;
        margin-bottom: 6%;
    }

    #items .collection .collection-about dt{
        padding: 10px;
    }

    #items .collection .collection-about dt img{
        max-width: 100%;
        max-height: 240px;
    }

    #items .collection .collection-about .detail-btn{
        margin-top: auto;
        width: 78%;

    }
    #items .collection .collection-about .detail-btn:hover{
        color: #ddd;
        background-color: #6d869d;
    }

    #items .collection .collection-about .detail-btn,
    #items .collection .collection-about .detail-btn:hover{
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
}

@media only screen and (min-width: 769px) {
    #items{
        padding: 100px 0;
    }

    #items .items-all{
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        position: relative;
    }

    #items .items-all div{
        position: absolute;
        top: 0;
        left: -20px;
    }

    #items .items-all .items-all__ttl{
        display: inline-block;
        position: relative;
        padding: 12px 1em;
        color: #f2f2f2;
        background: #296397;
        font-size: 1.8rem;
        font-weight: 600;
        font-family: 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    }

    #items .items-all .items-all__ttl:before{
        position: absolute;
        content: '';
        top: 100%;
        left: 0;
        border: none;
        border-bottom: solid 15px transparent;
        border-right: solid 20px #20507b;
    }

    #items .items-all img{
        border: 2px solid #296397;
    }

    #items .collection{
        padding: 50px 20px;
        width: 100%;
        max-width: 900px;
    }

    #items .collection .collection-about{
        width: 31.1%;
        max-width: 280px;
        display: flex;
        flex-direction: column;
        margin-bottom: 40px;
    }

    #items .collection .collection-about dt{
        width: 100%;
        height: 280px;
        display: flex;
        align-items: center;
        margin-bottom: 30px;
    }


    #items .collection .collection-about dt img{
        width: auto;
        max-width: 100%;
        max-height: 260px;
    }

    #items .collection .collection-about li{
        margin-bottom: 5px;
    }    
}

/*----------------------------------------
スライダー個別設定
----------------------------------------*/
.slick_container {
    width: 100%; /* 任意の値 */
    margin:0 auto; /* 任意の値 */
    position:relative;
}

.slider-arrow {
    position: absolute;
    top: 20%;
    width: 25px;
    height: 28px;
    margin-top: -21px;
    z-index: 10;
    cursor: pointer;
}

.slider-prev {
    left: 6.67%;
}

.slider-next {
    right: 6.67%;
}

/*----------------------------------------
Gallery
----------------------------------------*/
#gallery{
    position: relative;
}

#gallery .mask{
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

#gallery ul{
    width: 310vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 12vw;
}

#gallery ul li{
    width: 65vw;
    margin-bottom: 8vw;
}

#gallery .gallery-btn {
    background-color: #296397;
    color: #fff;
    width: 6em;
    height: 6em;
    font-size: 1.2rem;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 3px solid #fff;
    vertical-align: bottom;
    display: flex;
    justify-content: center;
    align-items: center;
    transition-property: opacity;
    transition-duration: 1s;
    opacity: 1;
    position: absolute;
    top: 50%;
    right: 6.67%;

}

#gallery .gallery-btn p {
    text-align: center;
    font-weight: 600;
}

#gallery .gallery-btn img{
    width: auto;
    max-height: 15px;
    margin: 4px auto 0;
}

#gallery .gallery-btn.f-out {
    opacity: 0;
}

/*ボタンバウンド*/
.bound {
    animation-name: bound;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    -webkit-animation-name: bound;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease;
    -moz-animation-name: bound;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease;
}

@-webkit-keyframes bound {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-16px, 0);
    }
    100% {
        transform: translate(0, 0);
    }
}

@-webkit-keyframes bound {
    0% {
        -webkit-transform: translate(0, 0);
    }
    50% {
        -webkit-transform: translate(-16px, 0);
    }
    100% {
        -webkit-transform: translate(0, 0);
    }
}

@-moz-keyframes bound {
    0% {
        -moz-transform: translate(0, 0);
    }
    50% {
        -moz-transform: translate(-16px, 0);
    }
    100% {
        -moz-transform: translate(0, 0);
    }
}

@media only screen and (min-width: 600px) {
    #gallery ul{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0 6.67%;
    }

    #gallery ul li{
        width: 47%;
        margin-bottom: 6%;
    }

    #gallery .gallery-btn{
        display: none;
    }
}

@media only screen and (min-width: 769px) {
    #gallery .mask{
        padding-top: 40px;
    }

    #gallery ul{
        width: 100%;
        padding: 0 2%;
    }

    #gallery ul li{
        width: 23.5%;
        margin-bottom: 1.93%;
    }

    #gallery .gallery-btn{
        display: none;
    }
}

/*----------------------------------------
credit
----------------------------------------*/
#credit{
    background: url(../images/bg_credit.jpg) no-repeat center center;
    background-size: cover;
    padding: 27% 0;
}

#credit .credit-logo{
    width: 32%;
    margin: 0 auto;
    display: block;
    background-color: rgba(255,255,255,0.8);
    padding: 1% 1.67%;
}


@media only screen and (min-width: 769px) {
    #credit{
        padding: 320px 0;
    }
    #credit .credit-logo{
        width: 100%;
        max-width: 240px;
        margin: 0 auto;
        display: block;
        background-color: rgba(255,255,255,0.8);
        padding: 1% 1.67%;
    }
}


/*========================================================
▼フッター
========================================================*/

footer {
    text-align: center;
}

footer small {
    width: 100%;
    background: #000;
    color: #fff;
    display: block;
    font-size: 2.6vw;
    line-height: 1.2;
    padding: 10px 0;
}

@media only screen and (min-width: 769px) {
    footer small {
        font-size: 1.4rem;
        padding: 12px 0;
    }
}


/*========================================================
▼モーダル
========================================================*/

.modal-overlay {
    z-index: 9999;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0e0e0e;
}

a.modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 8%;
    max-width: 40px;
}

.modal_logo {
    width: 30%;
    margin: 0 auto 6%;
    text-align: center;
}

.modal_logo img {
    display: inline-block;
}

.modal-btn {
    width: 100%;
    list-style: none;
    padding: 0 5%;
}

.modal-btn li {
    width: 100%;
    padding-left: ;
    margin-bottom: 4%;
}

.modal-btn li a {
    color: #fff;
    font-size: 1.6rem;
    background-color: #e1352b;
    display: block;
    text-align: center;
    padding: 0.3em 0;
}


@media only screen and (min-width: 769px) {
    a.modal-close {
        width: 50px;
    }

    a.modal-close:hover {
        cursor: pointer;
        opacity: 0.75;
    }

    .modal-btn {
        width: 100%;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0;
    }

    .modal-btn li {
        width: 157.5px;
    }

    .modal-btn li:first-of-type {
        padding-left: 0;
    }

    .modal-btn li a {
        position: relative;
        z-index: 2;
    }

    .modal-btn li a::before,
    .modal-btn li a::after {
        position: absolute;
        z-index: -1;
        display: block;
        content: '';
    }

    .modal-btn li a,
    .modal-btn li a::before,
    .modal-btn li a::after {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: all .3s;
        transition: all .3s;
    }

    .modal-btn li a:hover {
        background-color: #fff;
        color: #e1352b;
    }

    .modal-btn li a::before,
    .modal-btn li a::after {
        top: 0;
        width: 50%;
        height: 100%;
        background-color: #e1352b;
    }
    .modal-btn li a::before {
        right: 0;
    }
    .modal-btn li a::after {
        left: 0;
    }
    .modal-btn li a:hover::before,
    .modal-btn li a:hover::after {
        width: 0;
        background-color: #e1352b;
    }

    .modal_logo {
        width: 100%;
    }
}



/*モーダル動画部分
-------------------------------------------------------*/

@media only screen and (max-width: 768px) {
    .modal_content {
        width: 100%;
        margin: 0 auto;
        position: fixed !important;
        top: 30px !important;
        left: 0 !important;
        display: none;
        z-index: 99999;
    }

    .modal_movie {
        width: 100%;
        padding: 0 5%;
        height: 45vh;
        margin-bottom: 3%;
    }
}

@media only screen and (min-width: 769px) {
    .modal_content {
        width: 750px;
        margin: 0 auto;
        position: fixed;
        display: none;
        z-index: 99999;
    }

    .modal_movie {
        width: 100%;
        height: 421px;
        margin: 0 auto 30px;
    }
    .modal_logo{
        width: 150px;
    }
}