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



/*font-family: 'Arvo', serif;*/


/*基本設定*/

html{
    font-size: 62.5%;
}

body{
    overflow-x: hidden;
    width: 940px;
    margin: 0 auto;
    background-color: #fce9cd;
    font-family: 'Noto Sans JP', sans-serif;
}

a{
    text-decoration: none;
    color: #000;
}

a:hover{
    color:#660000;
}

h2{
    text-align: center;
    font-size: 3rem;
    margin-bottom: 40px;
    font-family: 'Arvo', serif;
}

h3{
    font-family: 'Arvo', serif;
}

@media screen and (max-width: 939px) {
    body{width: 100%;}
}


/*ヘッダー画像*/

.indexHeader{
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 calc(50% - 50vw) 40px;
    width: 100vw;
    height: 480px;
}

.indexHeader__logo{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    margin:auto;
}

.indexHeader__link{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: auto;
}

.linkArea{
    display: flex;
    justify-content: flex-end;
    font-size: 1.2rem;
    width: 940px;
    margin: 0 auto;
}

.linkArea li{
    margin-right: 10px;
    padding: 5px ;
    background-color:#635245;
}

.linkArea__btn{
    display: block;
    background-image: url(../img/arrow_b.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    color: #ffffff;
    padding-left: 20px;
}

.linkArea__btn a:hover{
    color: #660000;
}

/* ヘッダー画像が親要素をはみ出さなくなったら */
@media screen and (max-width: 939px) {
    .indexHeader{margin: 0 0 40px;}
    .linkArea{width: 100%;}
}

/* Extra small devices (portrait phones, less than 576px) */
/*iPhoneX縦 / iPhoine6.7.8Plus縦 / iPhoine6.7.8縦 / iPhone5.SE縦横*/
@media screen and (max-width: 575px) {
    .indexHeader{margin: 0}
    .indexHeader__link{background-color: #635245;}
    .linkArea{justify-content: center;}
}


/*ナビゲーション*/

.indexNav{
    margin-bottom: 70px;
}

.navArea{
    display: flex;
    justify-content: space-around;
    height: 50px;
}

.navArea__list{
    display: flex; 
    font-size: 2em;
    border-bottom: 2px solid #5e3e25;
    width: 15%;
    height: 100%;
}

.navArea__list--link{  
    position: relative;  
    display: block;
    width: 100%;
    transition: 0.5s;
}

.navArea__list--link:hover{
    background-color: #fff6e8;
    transition: 0.5s;
}

.navArea__list--link p{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
}

/* Extra small devices (portrait phones, less than 576px) */
/*iPhoneX縦 / iPhoine6.7.8Plus縦 / iPhoine6.7.8縦 / iPhone5.SE縦横*/
@media screen and (max-width: 575px) {
    .navArea{flex-direction: column;align-items: center;height: 180px;}
    .navArea__list{width: 90%;}
}


/*side-btn共通*/

.indexSideBtn--cart{
    position: fixed;
    top: 160px;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    width: 50px;
    height: 50px;
    background-color: #5e3e25;
}

.indexSideBtn--login{
    position: fixed;
    top: 240px;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    width: 50px;
    height: 50px;
    background-color: #5e3e25;
}

.indexSideBtn__img{
    width: 60%;
}

/* Extra small devices (portrait phones, less than 576px) */
/*iPhoneX縦 / iPhoine6.7.8Plus縦 / iPhoine6.7.8縦 / iPhone5.SE縦横*/
@media screen and (max-width: 575px) {
    .indexSideBtn--cart{top:inherit;bottom:0;right:0;width: 50%;}
    .indexSideBtn--login{top:inherit;bottom:0;right:50%;width: 50%;}
    .indexSideBtn__img{width: 24px;}
}


/*アバウト*/

.indexAbout{
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
}

.indexAbout__inner{
    width: 30%;
    text-align: center;
}

.indexAbout__inner img{
    width: 100%;
}

.indexAbout__inner h4{
    margin: 0.8em 0;
    font-size: 2rem;
}

.indexAbout__inner p{
    margin: 1em 0;
    font-size: 1.3rem;
    line-height: 1.5em;
}

/* Extra small devices (portrait phones, less than 576px) */
/*iPhoneX縦 / iPhoine6.7.8Plus縦 / iPhoine6.7.8縦 / iPhone5.SE縦横*/
@media screen and (max-width: 575px) {
    .indexAbout{flex-direction: column;}
    .indexAbout__inner{width: 100%;}
    .indexAbout__inner img{width: 50%;}
}


/*news*/

.indexNews{
    position: relative;
    background-color: #ffffff;
    background-image:url(../img/section__bg.png);
    background-repeat: repeat;
    z-index: -20;
    margin: 0 calc(50% - 50vw) 70px;
    width: 100vw;
    height: 80px;
}

.indexNews__wrapper{
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2em;
    width: 720px;
}

.newsTitle{
    margin-right: 0.7em;
    padding: 10px 0;
    border-right: 1px solid #5e3e25;
}

.newsTitle h3{
    font-size: 1.8em;
    padding-right: 0.7em;
}

.indexNews::after{
    content: "";
    position: absolute;
    top: -60px;
    right: 1160px;
    display: inline-block;
    background-image: url(../img/pointImg-01.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -10;
    width: 300px;
    height: 300px;
}

@media screen and (max-width: 939px) {
    .indexNews__wrapper{width: 100%;}
}

/* Extra small devices (portrait phones, less than 576px) */
/*iPhoneX縦 / iPhoine6.7.8Plus縦 / iPhoine6.7.8縦 / iPhone5.SE縦横*/
@media screen and (max-width: 575px) {
    .indexNews{background-size: 50%;height: 120px;}
    .indexNews__wrapper{flex-direction: column;align-items: flex-start;line-height: 1.5em;width: 90%;}
    .newsTitle{border-right:inherit;border-bottom: 1px solid #5e3e25;width: 100%;}
    .newsMore{align-self: flex-end;}
}


/*コンセプト*/

.indexConcept{
    position: relative;
    margin-bottom: 70px;
}

.indexConcept__text{
    text-align: center;
    font-size: 1.5em;
    line-height: 2em;
    margin: 1em;
}

.indexConcept__list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 57%;
    margin: 40px auto;
}

.listItems{
    display: block;
    margin: 1em;
}

.listItems p{
    background-image: url(../img/arrow_a.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    font-size: 1.2em;
    padding-left: 20px;
}

.indexConcept::before{
    content: "";
    position: absolute;
    top: -150px;
    left: 800px;
    display: inline-block;
    background-image: url(../img/pointImg-02.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -10;
    width: 400px;
    height: 400px;
}

.indexConcept::after{
    content: "";
    position: absolute;
    top: 250px;
    right: 800px;
    display: inline-block;
    background-image: url(../img/pointImg-03.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -10;
    width: 300px;
    height: 300px;
}

/*コラム*/

.indexColumn--backColor{
    position: relative;
    z-index: -20;
    background-color: #ffffff;
    background-image:url(../img/section__bg.png);
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    height: 70%;
}

.indexColumn{
    margin-bottom: 20px;
}

.indexColumn__title{
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    padding: 40px 0;
}

.indexColumn__inner{
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 940px;
    margin: 0 auto;
}

.columnUnit{
    display: block;
    padding: 0 3%;
    border-right: 1px solid #5e3e25;
    font-size: 1.2em;
    line-height: 1.5em;
}

.columnUnit:last-child{
    border-right: none;
    padding-right: 0;
}

.columnUnit--link{
    display: flex;
    align-items: center;
}

.columnUnit--link:hover{
    opacity: 0.7;
}

.columnUnit__img img{
    width: 100%;
}

.columnUnit__lead--date{
    margin-left: 5%;
}
@media screen and (max-width: 939px) {
    .indexColumn__inner{width: 100%;}
}

/* Extra small devices (portrait phones, less than 576px) */
/*iPhoneX縦 / iPhoine6.7.8Plus縦 / iPhoine6.7.8縦 / iPhone5.SE縦横*/
@media screen and (max-width: 575px) {
    .indexColumn--backColor{background-size: 50%;}
    .indexColumn__inner{flex-direction: column;}
    .columnUnit{padding: 16px;}
    .columnUnit:last-child{padding-right: 16px;}
    .columnUnit--link{justify-content: center;}
    .columnUnit__img{min-width: 40px;max-width: 60px;}
    .columnUnit__lead{width: 320px;margin-left: 5px;}
}


/*問い合わせ*/

.indexContact{
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 3em;
    background-color:rgba(94, 62, 37, 0.8);
    height: 105px;
}

.indexContact__inner{
    display: flex;
    justify-content: space-around;
    font-size: 20px;
    color: #ffffff;
    width: 760px;
}

.indexContact__inner a{
    color: #ffffff;
}

.indexContact__inner a:hover{
    color: #d4c7bd;
}

/* Extra small devices (portrait phones, less than 576px) */
/*iPhoneX縦 / iPhoine6.7.8Plus縦 / iPhoine6.7.8縦 / iPhone5.SE縦横*/
@media screen and (max-width: 575px) {
    .indexContact__inner{flex-direction: column;font-size: 14px;width: 70%;}
}


/*フッター*/

.indexFooter{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 96px;
}

.indexFooter__copyright{
    padding: 8px;
}

.indexFooter__nav{
    display: flex;
    justify-content: flex-end;
    padding: 8px;
}

.footerNav{
    margin-right: 10px;
}

.footerNav:last-child{
    margin-right: 0;
}

/* Extra small devices (portrait phones, less than 576px) */
/*iPhoneX縦 / iPhoine6.7.8Plus縦 / iPhoine6.7.8縦 / iPhone5.SE縦横*/
@media screen and (max-width: 575px) {
    .indexFooter{flex-direction: column;justify-content: center;margin-bottom: 50px;}
}