@charset "UTF-8";

*{box-sizing: border-box;}
body{
    font-family: 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','MS ゴシック',sans-serif;
    background-color: #FAF3DF;
}

#header {
    /* background-color: rgb(248, 235, 215); */
    height: 100px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

/* ^^^^^^^^^^^^^^^^^ナビゲーション ^^^^^^^^^^^^^^^^^^^^^^^*/

.nav ul{

    display:flex;
    justify-content: space-between;
    margin-top: 80px;
    padding-right: 50px;
    width: 100%;
}

#navArea {
    display: none;
}

@media(max-width:839px){
    #navArea {
        display: block;
    }
}

@media(max-width:839px){
    .nav ul{
        display:none;
    }
}

nav li {
    white-space: nowrap;
    margin-left: 91px;
}

.nav li a {
    color: #2D1F05;
    height: 24px;
    font-size: 1.25rem;
    font-family:  'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','MS ゴシック',sans-serif;
}



/*^^^^^^^^^^^^^^^^^^^^ ここからハンバーガーメニュー^^^^^^^^^^^^^^^^^^ */
@media(max-width:839px){
    #navArea nav{
        display: block;
        width: 220px;
        position: fixed;
        background-color: #dbcb55;
        top: 0;

        right: -300px;
        /* left: 0; */
        bottom: 0;
        transition: all 0.3s;
        z-index: 2;
        opacity: 0;
    }
}

@media(max-width:839px){
    .open#navArea nav{
    display: block;
    z-index: 2;
    /* left: 0; */
    right: 0;
    opacity: 1;
}
}

#navArea nav .inner{
    padding: 40px 25px;
    margin-top: 7rem;
}

#navArea nav .inner ul{
    margin: 0;
    padding: 0;
}

#navArea nav .inner ul li {
    margin: 0;
    border-bottom: 1px solid #2D1F05;
}

#navArea nav .inner ul li a {
    display: block;
    color: #2D1F05;
    font-size: 14px;
    padding: 1rem;
    transition-duration: 0.2s;
}

#navArea nav .inner ul li a:hover {
    background-color: rgb(253, 255, 230);
}


/* ^^^^^^^^^^^^^^^^^^^トグルボタン^^^^^^^^^^^^^^^^^^^^ */
.toglbtn {
    display: block;
    position: fixed;
    top: 50px;
    right: 30px;
    width: 30px;
    height: 30px;
    z-index: 3;
    cursor: pointer;
}

.toglbtn span {
    position: absolute;
    display: block;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #2D1F05;
    transition: all 0.5s;
    border-radius: 4px;
}

.toglbtn span:nth-child(1){
    top: 4px;
}

.toglbtn span:nth-child(2){
    top: 14px;
}

.toglbtn span:nth-child(3){
    bottom: 4px;
}

.open .toglbtn span{
    background-color: #fff;
}

.open .toglbtn span:nth-child(1){
    transform: translateY(10px) rotate(-315deg);
}

.open .toglbtn span:nth-child(2){
    opacity: 0;
}

.open .toglbtn span:nth-child(3){
    transform: translateY(-10px) rotate(315deg);
}

#mask {
    display: none;
    transition: all 0.5s;
}

.open #mask{
    display: block;
    background-color: #2D1F05;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    opacity: 0.8;
    cursor: pointer;
}

/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^以上ハンバーガーメニュー^^^^^^^^^^^^^^^ */





/* ^^^^^^^^^^^^^^^^^^^小ロゴ ^^^^^^^^^^^^^^^^^^^^^^^*/
#logo img{
    margin-top: 50px;
    margin-left: 50px;
    margin-right: auto;
    /* background-color: aliceblue; */
    width: 98px;
    height: 64px;
    display: block;
    position: fixed;
}
@media(max-width:1000px) {
/* @media(max-width:971px) { */
    #logo img{
        margin-left: 40px;
        display: block;
        position: fixed;
    }
}

@media(max-width:839px){
    #logo img{
        margin-left: 10px;
        margin-top: 40px;
        display: block;
        position: fixed;
    }
}


/* main部分^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ */
.title{
    font-size: 1.5rem;
    text-align: center;
    color: #2D1F05;
    margin: 100px auto 0;
}
.wrapper{
    border-radius: 34px;
    margin: 50px 3rem 48px;
}
@media(max-width:768px){
    .wrapper{
        margin: 50px 0 3rem;
    }
}

.luce{
    background-color: #aca976;
    color: #faf3df;
}
.ohana{
    background-color: #f3d2a7;
    color: #684404;
}


.inner{
    display: flex;
    padding: 6rem 4.75rem;
    justify-content: space-evenly;
}
@media(max-width:768px){
    .inner{
        display: flex;
        padding: 6rem 1.5rem;
        justify-content: space-evenly;
        flex-direction: column;
}
}

.inner img{
    max-width: 35rem;
}
@media(max-width:1440px){
    .inner img{
            max-width: 32.5rem;    /* 32.5rem=520px */
    }
}
@media(max-width:600px){
    .inner img{
            max-width: 20rem;
    }
}

@media(max-width:1440px){
    .left{
        display: none;
    }
}

.all{
    display: none;
}
@media(max-width:1440px){
    .all{
        display: block;
    }
}
@media(max-width:768px){
    .all{
        width: 20rem;
    }
}

.right_side{
    max-width: 35rem;    /* 35rem=560px */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
@media(max-width:1440px){
    .right_side p{
        width: 32.5rem;        /* 32.5rem=520px */
    }
}
@media(max-width:768px){
    .right_side p {
        width: 20rem;
    }
}



/* ルチェーーーーーーーーーーーーーーーーーーー */
.luce_text h1{
    font-size: 1.5rem;
    margin: 59px 0 30px;
}
.luce_text span{
    font-size: 1.25rem;
    /* border-bottom: 2.5px solid; */
}
.luce_text p{
    line-height: normal;
    margin: 10px 0 40px;
}
.luce img{
    box-shadow: 5px 7px 11px #7D7B5F;
}

/* レイオハナーーーーーーーーーーーーーーーー */

.ohana_text h1{
    font-size: 1.5rem;
    margin: 59px 0 30px;
}
.ohana_text span{
    font-size: 1.25rem;
    /* border-bottom: 2.5px solid; */
    margin-bottom: 23px;
}
.ohana_text p{
    line-height: normal;
    margin: 10px 0 40px;
}
.ohana img{
    box-shadow: 5px 7px 11px #CCB597;
}


/* バナーーーーーーーーーーーーーーーーーーーー */
.banner{
    display: flex;
    flex-direction: column;
}

.banner_inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    /* padding-bottom: 50px; */
}
.banner_inner img{
    margin-bottom: 2rem;
    height: 243px;
}
@media(max-width:768px){
    .banner_inner img{
        width:320px;
        height: auto;
    }
}


.totop img{
    right: 10%;
    bottom: 10%;
    margin-left: 80%;
}
    
@media(max-width:1000px) {
    .totop img{
        right: 8%;
        width: 80px;
        margin-left: 75%;
    }
}
