@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;
}

@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');
}

.gett {
    font-family: GerTTmedium;
}

p {
    line-height: 1.8;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
    color: #0e0e0e;
}

img {
    max-width: 100%;
    display: block;
}

html {
    height: 100%;
    font-size: 62.5%;
}

body {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    color: #0e0e0e;
    position: relative;
    -webkit-text-size-adjust: 100%;
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.inner {
    width: 100%;
    padding: 0 4%;
}

@media only screen and (min-width: 769px) {
    .sp {
        display: none!important;
    }

    .pc {
        display: block!important;
    }

    .inner {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 30px;
    }
}

@media only screen and (max-width: 768px) {
    html,
    body {
        height: 100%;
        min-width: 320px;
    }

    .sp {
        display: block!important;
    }

    .pc {
        display: none!important;
    }
}



/*========================================================
▼ヘッダー
========================================================*/

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: 30vw;
}

/*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 .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: #f5f5f2;
}

@media only screen and (min-width: 769px) {
    #main {
        width: 100%;
        margin: 0 auto;
    }
}


/*========================================================
▼メインビジュアル
========================================================*/

#mv {
    position: relative;
    width: 100%;
    background-color: #f5f5f2;
    background-image: url(../images/mv_bg_sp.jpg);
    background-position: 50% 0;
    background-size: cover;
    padding-bottom: 6%;
}

#mv .mv-inner {
    width: 100%;
    margin: 0 auto;
    padding: 4%;
}

@media only screen and (min-width: 769px) {
    #mv {
        display: flex;
        flex-direction: row-reverse;
        background-image: url(../images/mv_bg.jpg);
        background-position: 50% bottom;
        background-size: cover;
        padding-bottom: 150px; 
    }

    #mv .mv-inner {
        padding: 60px 0 0 30px;
        width: 100%;
        max-width: 600px;
        margin: 0 auto 0 0;
    }
}

/*----------------------------------------
リード
----------------------------------------*/

#lead {
    font-size: 1.3rem;
    padding: 4% 8% 0;
}

.lead-ttl {
    margin-bottom: 4%;
}

.lead-ttl span{
    font-size: 9vw;
    display: block;
    font-family: GerTTmedium;
    font-weight: bold;
    letter-spacing: 1px;
}

.lead-ttl .sub_ttl {
    font-size: 5.3vw;
    font-family: GerTTlight;
    margin-bottom: 4%;
}

.lead-txt {
    font-size: 1.3rem;
    line-height: 1.5;
}

@media only screen and (min-width: 600px) {
    .lead-ttl {

    }

    .lead-ttl span {

    }
}

@media only screen and (min-width: 769px) {
    #lead {
        font-size: 1.6rem;
        margin: 0 0 42px auto;
        padding: 100px 30px 35px;
        width: 100%;
        max-width: 600px;
    }

    .lead-ttl {
        font-size: 6rem;
        letter-spacing: 1.6px;
        margin-bottom: 40px;
    }

    .lead-ttl span {
        font-size: 5rem;
    }

    .lead-txt{
        font-size: 1.6rem;
        line-height: 1.8;
    }

    .lead-txt p {
        line-height: 2;
    }

    .lead-ttl .sub_ttl {
        font-size: 3rem;
        margin-bottom: 40px;
    }
}


/*----------------------------------------
コンテンツ共通
----------------------------------------*/

#contents {
    width: 100%;
    position: relative;
    padding: 0 4% 8%;
    margin: 0 auto;
}

@media only screen and (min-width: 769px) {
    #contents {
        width: 100%;
        position: relative;
        padding: 0;
        margin-top: -100px;
    }
}





/*----------------------------------------
セクション共通
----------------------------------------*/

.section {
    width:100%;
    margin-bottom: 10%;
    position: relative;
}

.section:last-of-type{
    margin-bottom: 0;
}

.section .section-img{
    margin-bottom: 5.8%;
}

.section .section-txt{

}

.section .section-txt dt{
    border-bottom: 1px solid #7c7756;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4%;
}

.section .section-txt dt span{
    font-size: 2rem;
    font-weight: 600;
}

.section .section-txt dt span.roman{
    font-size: 1.2rem;
    font-style: italic;
}

.section .section-txt dd{
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 6%;
}

.section .section-txt dd a{
    display: block;
    word-break: break-all;
    font-weight: 600;
    font-size: 1.2rem;
}

.section a.acc-btn{
    width: 64%;
    max-width:400px;
    margin: 0 auto 5%;
    text-align: center;
    display: block;
    background-color: #a88722;
    border:1px solid #a88722;
    color: #fff;
    padding:0.7em 0;
    font-size: 1.4rem;
}

.section a.acc-btn:after{
    content: "コーディネートを見る";
}

.section a.acc-btn.active{
    background-color: #fff;
    color: #a88722;
}

.section a.acc-btn.active:after{
    content: "閉じる";
}

.section:last-of-type a.acc-btn{
    margin-bottom: 0;
}

@media only screen and (min-width: 769px) {
    .section {
        display: block;
        padding: 0;
        margin-bottom: 40px;
    }

    .section-inner {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
    }

    .section .section-img{
        margin-bottom: 48px;
    }

    .section:last-of-type .section-img{
        margin-bottom: 0;
    }

    .section .section-txt{
        width:400px;
        position: absolute;
        top:50%;
        right:50px;
        -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
        background-color: rgba(72, 65, 20, 0.7);
        color:#fff;
        padding:30px 24px;
    }

    .section:nth-of-type(even) .section-txt{
        position: absolute;
        top:50%;
        left:50px;
    }


    .section .section-txt dt{
        border-bottom: 1px solid #fff;
        margin-bottom: 30px;
    }

    .section .section-txt dt span{
        font-size: 3rem;
    }

    .section .section-txt dt span.roman{
        font-size: 2rem;
    }

    .section .section-txt dd{
        font-size: 1.6rem;
        line-height: 1.8;
        margin-bottom: 6%;
    }

    .section .section-txt dd a{
        color: #fff;
        font-size: 1.3rem;
        font-weight: normal;
    }

    .section .section-txt dd a:hover{
        text-decoration: underline;
    }

    .section a.acc-btn{
        width: 300px;
    }

    .section a.acc-btn:hover{
        background-color: #fff;
        color: #a88722;
    }
    
    .section a.acc-btn,
    .section a.acc-btn:hover{
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    .section a.acc-btn.active{
        background-color: #fff;
        color: #a88722;
    }

    .section a.acc-btn.active:after{
        content: "コーディネート閲覧中";
        background-color: #fff;
        color: #a88722;
    }

    .section .close-btn{
        width: 300px;
        margin: 0 auto 5%;
        text-align: center;
        display: block;
        background-color: #fff;
        border: 1px solid #a88722;
        color: #a88722;
        padding:0.7em 0;
        font-size: 1.4rem;
        cursor: pointer;
    }

    .section .close-btn:hover{
        background-color: #a88722;
        color: #fff;
    }

    .section .close-btn,
    .section .close-btn:hover{
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
}

/*----------------------------------------
アコーディオン部分
----------------------------------------*/
.acc{
    display: none;
    padding-bottom: 5%;
}

.acc h2{
    text-align: center;
    font-family: GerTTmedium;
    color:#6f6239;
    font-size: 6vw;
    margin-bottom: 8%;
    padding-bottom: 40px;
    background: url('../images/line.png') no-repeat;
    background-position: center bottom;
}

.acc p{
    margin-bottom: 5%;
    position: relative;
}

a.detail-btn{
    background-color: #fff;
    color: #a88722;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 100%;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    font-size: 1.4rem;
    position: absolute;
    right:3%;
    bottom:4%;
}

@media only screen and (min-width: 769px) {
    .acc{
        width:100%;
        max-width: 1200px;
        margin:0 auto;
    }

    .acc h2{
        font-size: 2.6rem;
        letter-spacing: 1.3px;
        margin-bottom: 40px;
    }
    
    .section:last-of-type .acc h2{
        padding-top:48px;
    }

    .acc p{
        margin-bottom: 30px;
    }

    .acc p:last-of-type{
        margin-bottom: 30px;
    }

    a.detail-btn{
        width: 70px;
        height: 70px;
        line-height: 70px;
        position: absolute;
        right:20px;
        bottom:20px;
        font-size: 1.8rem;
    }

    a.detail-btn:hover{
        background-color: #3d3503;
        color: #fff;
    }
    
    a.detail-btn,
    a.detail-btn:hover{
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    .img-gr{
        display: flex;
        justify-content: center;
        align-items: top;
    }

    .img-gr p{
        width: 50%;
    }
}


/*----------------------------------------
クレジット部分
----------------------------------------*/
#credit{
    background-image: url(../images/sp_ft_bg.jpg);
    background-position: 50% bottom;
    background-size: cover;
    padding:5.6% 4%;
}

#credit ul{
    list-style: none;
    text-align: center;
    font-size: 1.2rem;
    color: #4a1b01;
    margin-bottom: 5.6%;

}


@media only screen and (min-width: 769px) {
    #credit{
        background-image: url(../images/ft_bg.jpg);
        background-position: 50% top;
        background-size: cover;
        margin-top: -100px;
        padding-top: 200px;
        padding-bottom: 100px;
    }

    #credit ul{
        font-size: 1.6rem;
        margin-bottom: 60px;
    }

    .credit-inner{
        width: 650px;
        margin: 0 auto;
    }

    #credit a{
        display: block;
        background-color: #fff;
    }

    #credit a:hover img{
        opacity: 0.8;
    }
}

.ft-bnr{
    display: block;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;

}
@media only screen and (min-width: 769px) {
    .ft-bnr{
        width: 650px;
    }
    
}


/*========================================================
▼フッター
========================================================*/

footer {
    text-align: center;
}

footer small {
    width: 100%;
    background: #000;
    color: #fff;
    font-size: 14px;
    line-height: 50px;
    display: block;
}

@media only screen and (max-width: 768px) {
    footer small {
        font-size: 2.6vw;
        line-height: 1.2;
        padding: 10px 0;
    }
}