@charset 'utf-8';

/* 全体設定 */
* {  
    box-sizing: border-box;
}

body {
    background-color: #b4a89c;
    font-family: 'Playfair', serif;
    overflow-x: hidden;
}

.wrapper {
    width: 90%;
    max-width: 1080px;
    margin: 0 auto;
}

section{
    margin-bottom: 96px;
    @media sp{
        margin-bottom: 3rem;
    }
}

.flex {
    display: flex;
    justify-content: center;
}

.sec__title {
    margin: 100px auto;
}
.sec__entitle {
    font-size: 3rem;
}

.sec__jptitle {
    font-size: 1.2rem;
}

/*========= 途中からハンバーガーメニューに変化するのためのCSS ===============*/

/*========= ボタンのためのCSS ===============*/

/*ボタン全体の形状*/
.openbtn{
    /*はじめは非表示に*/
	display: none;
    /*ボタンの位置*/
	position:fixed;
	top:10px;
	right: 10px;
	z-index: 999;
    /*ボタンの形状*/
	background:#3a342e;
	cursor: pointer;
    width: 50px;
    height:50px;
	border-radius: 5px;
}

/*ボタンのアイコン設定*/
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #fff;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

/*activeクラスが付与された後のボタンのアイコン設定*/
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*fadeDownクラスが付与された後のボタンの出現アニメーション設定*/
.fadeDown {
    animation-name: fadeDownAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
    display: block;
}
@keyframes fadeDownAnime{
  from {
    opacity: 0;
	transform: translateY(-100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}


/*========= ヘッダーナビゲーションのためのCSS ===============*/

/*==ヘッダーの形状*/


#header{
	width:100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
    background-color: rgba(69, 59, 49, 0.7);
	text-align: center;
	padding: 20px;
}

/*.doneクラスがついたヘッダー*/
#header.dnone {
	opacity: 0;/*透過0にして非表示に*/
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたら*/
#header.dnone.panelactive {
	opacity: 1;/*不透明にして出現*/
}


/*==ヘッダーのテキストナビゲーションの形状*/
#g-navi ul{
	list-style: none;
	display: flex;
	justify-content: center;
    @media screen and (max-width:600px) {
        display: none;
    }
}

#g-navi ul li a{
	display: block;
	text-decoration: none;
	color: #000;
	padding:10px;
}

#g-navi ul li.current a,
#g-navi ul li a:hover{
    opacity: .6;
}

/*.doneクラスがついたヘッダーのテキストナビゲーションの形状*/
#header.dnone #g-navi{
    /*固定位置にして最背面に*/
    position:fixed;
	top: 0;
    right: 0;
	z-index: -1;
    /*高さと幅*/  
	width:30%;
	height: 70vh;
    border-radius: 0 0 10px 10px;
    /*天地中央＆テキスト中央揃え*/  
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
    /*はじめは透過0に*/  
    opacity: 0;
	transition: all 0.4s;
    @media screen and (max-width:600px) {
        width:50%;
        height: 70vh;
    }
    @media screen and (max-width:375px) {
        width:100%;
        height: 100vh;
        }
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたナビゲーションの形状*/
#header.dnone.panelactive #g-navi{
	opacity: .9;/*不透明に*/
	z-index:3;/*最前面に*/
	background:#eee;

}

#header.dnone.panelactive #g-navi ul{
	display:block;/*flexの横並びをblockにして縦並びに*/
}


/*リストの形状*/

#header.dnone.panelactive #g-navi li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	transition:all 0.3s;
}
section{
    position: relative;
    z-index: 1;
}



.header__wrapper {
    width: 94%;
    padding: 15px;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.header__nav {
    width: 65%;
    /* @media tb{
        display: none;*/
}
.header__nav__list {
    display: flex;
    justify-content: space-between;
}

.header__nav__link{
        transition: all 0.5s;
        display: inline-block;
        font-size: 1.7rem;
        outline: 0px solid #3d9c8e00;
        padding: 0.15em 0.9em;

        &:hover {
            border-bottom: 1px solid #000;
            
        }
        &.current {
            border-bottom: 1px solid #000;

        }
    }



.header__logo img{
    width: 200px;
}
/*     
    .appear{
        top:15px;
        opacity: 1;
        visibility: visible;
    } */

#parallax {
    align-items: center;
}
.parallax__content{
    padding: 70px;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    background-size: cover;
}
    
.img_bg_01{
    background-image: url(images/hero-bg.jpg);
    background-repeat: no-repeat;
    height: 90vh;
    text-align: center;
}
    
.parallax__box {
    width: 70vw;
    margin: 25vh auto;
}
    
.parallax__logo {
    width: 40vw;
    height: auto;
}
    
.parallax__text {
    color: #ddd8d3;
    margin-top: 0.7rem;
}

#cotegory {
    margin: 0 auto;
    text-align: center;
}

.img__box {
    padding: 19px;
}


.cotegory__container {
    justify-content: space-between;
}

.cotegory__box:hover {
    opacity: .8;
}

.cotegory__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 15px;
    margin-bottom: 100px;
}


.cotegory__img {
    display: inline-block;
    width: 110px;
    height: 180px;
}

.cotegory__item {
    align-items: center;
    flex-direction: column;
}


#lookbook {
    margin: 0 auto;
    text-align: center;
}

.lookbookWrapper {
    width: 90%;
    max-width: 700px;
    margin: 0 auto;
}

#lookbook-container {
    width: 100%;
    max-width: 600px;
    height: 425px;
    margin: 90px auto;
}

.prevnext {
	list-style: none;
	width: 100%;
    display: flex;
    margin: 0 auto;
}

.prevnext__list {
    width: 50%;
    text-align: center;
}

#prevpage, #nextpage {
    cursor: pointer;
    margin: 0 auto;
}

#about {
    margin: 0 auto;
    text-align: center;
}

.about__container {
    line-height: 1.7;
    font-size: 20px;
    @media screen and (max-width:600px) {
        font-size: 14px;
    }
}

#contact {
    margin: 0 auto;
    text-align: center;
}


.contact {
    display: flex;
    justify-content: center;
}

.contact__text {
    margin-bottom: 40px;
}

.contact__dlist {
        width: 90%;
        margin: 0 auto;
    @media screen and (max-width:600px){
        width: 100%;
    }
}

.contact__dInner {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    @media screen and (max-width:850px) {
        flex-direction: column;
        margin: 20px auto;
    }
    
}


.contact__dt {
    width:25%;
    font-weight: normal;
    margin-left: 0 !important;
    font-size: 20px;
    font-weight: normal;
    margin-left: 20px;
    @media screen and (max-width:850px) {
        margin-bottom: 10px;
        width: 100%;
        text-align: left;
    }
}

.contact__dd{
    width: 70%;
    justify-content: space-between;
    font-size: 20px;
    @media screen and (max-width:850px) {
        width: 100%;
    }
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    width:100%;
    padding: 0.2em 0.5em;
    border: 2px solid #000;
    text-align: left;
    @media screen and (max-width:850px) {
        display: block;
        width: 100%;
    }
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus {
    width: 100%;
    outline: 2px solid #000;
    border: 2px solid #000;
}

textarea {
    height: 160px;
}

::placeholder {
    color: #f1e6dc;
}

.dl__inner {
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0;

}

form {
    margin-bottom: 80px;
    @media screen and (max-width:850px) {
        margin: 0 auto;
    }
}


.form__btn {
    display: block;
    width:30%;
    margin: 70px auto;
    text-align: center;
    border: 3px solid #000;
    background-color: #3a342e;
    @media screen and (max-width:850px) {
        width: 60%;
    }

}


.form__btn button {
    width: 50%;
    padding: 20px;
    color: #b4a89c;
    display: block;
    margin: 0 auto;
    width: 100%;
    margin: 0 auto;
    @media screen and (max-width:400px) {
        padding: 10px;
    }
}

.form__btn:hover {
    background-color: #000;
}

.submit__btn:hover {
    color: #fff;
}


/* footer */
footer{
    margin-top: 6rem;
    /* @media tb{
        margin-top: 3rem;
    } */
}

.footer__wrapper {
    width: 94%;
    padding: 15px;
    max-width: 1200px;
    display: flex;
    justify-content: right;
    align-items: center;
    margin: 0 auto;
}

.footer__logo img{
    width: 200px;
}

.sitemap__list {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    padding: 40px 0;
    @media(max-width:965px){
        padding: 20px 0;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.sitemap__item {
    outline: 0px solid #3d9c8e00;
    transition: all 0.5s;
    padding: 0.15em 0.3em;
}

.sitemap__link{
    transition: all 0.5s;
    display: inline-block;
    font-size: 1.7rem;
    outline: 0px solid #3d9c8e00;
    padding: 0.15em 0.9em;

    &.current {
        border-bottom: 1px solid #000;

    }
}

.sns__area__list {
    margin-right: 20px;
}

.sns__icon {
    color: #000;
}

.sns__area__list a:hover {
    opacity: .7;
}

.copy{
    white-space: nowrap;
}
