/*
    Mobile // Smartphone + landscape
    screen and (min-width: 560px) and (max-width: 960px)

*/
/*----------------------------------------------------------
    Fonts Custom//Base
----------------------------------------------------------*/
h1.corp-name {
    padding: 1em 0 2em 0;
}
    h1.corp-name img {
        width: 85px;
    }
/*===========================================================
	Header
============================================================*/
#index-head {
    z-index: 99;
    height: 848px;
}
#logo-area {
    z-index: 98;
    bottom: 48px;
    height: 170px;
}
.index-head-menu ul,
.lower-head-menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.lower-head-menu {
    width: calc(100% - 400px);
    margin: 0;
    padding: 0;
}
    .lower-head-menu ul {
        padding: 0;
        margin: 0;
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-end;
    }
            .lower-head-menu ul li a,
            .lower-head-menu ul li a:hover {
                color: #202449;
                text-decoration: none;
            }
/*===========================================================
	Navigation
============================================================*/
/*----------------------------------------------------------
    Drawer
----------------------------------------------------------*/
.index-head-menu,
.lower-head-menu {
    position: absolute;
    z-index: 99;
    right: 0;
    height: 1000px;
}

/* :::::: toggle button :::::: */
#drawer {
	display: none;
}
label {
	cursor: pointer;
	position: fixed;
}
.open {
    z-index: 99;
	top: 8px;
	right: 8px;
	width: 48px;
	height: 48px;
	border-radius: 48px;
	background: #202449;
	transition: background .6s, transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
    .open::before,
    .open::after {
        content: "";
    }
    .open span,
    .open::before,
    .open::after {
        content: "";
        position: absolute;
        top: calc(50% - 1px);
        left: 30%;
        width: 40%;
        border-bottom: 2px solid white;
        transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    .open::before {
        transform: translateY(-8px);
    }
    .open::after {
        transform: translateY(8px);
    }
.close {
    z-index: 1;
    inset: 0;
    pointer-events: none;
    transition: background .6s;
}
#drawer:checked + .open {
	background: #cc1b56;
	transform: translateX(-280px);
}
#drawer:checked + .open span {
	transform: scaleX(0);
}
#drawer:checked + .open::before {
	transform: rotate(135deg) scaleX(1.2);
}
#drawer:checked + .open::after {
	transform: rotate(-135deg) scaleX(1.2);
}
#drawer:checked ~ .close {
    z-index: 1;
	pointer-events: auto;
	background: rgba(0,0,0,.3);
}

/* :::::: drawer menu :::::: */
.menu {
    z-index: 5;
	position: fixed;
	overflow: auto;
	right: 0;
	height: 100%;
	margin: 0;
	padding: 10px;
	box-sizing: border-box;
    background: #202449;
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.index-head-menu .menu {
	top: 0;
    width: 280px;
    transform: translateX(140%);
}
.lower-head-menu .menu {
    top: 0;
    width: 280px;
    transform: translateX(100%);
}

.menu ul {
    justify-content: center;
    flex-direction: column;
	margin: 0;
	padding: 0;
}
    .lower-head-menu .menu ul li {
        padding: 1em;
    }

    .menu li {
        width: 90%;
        line-height: 1.4;
        border-top: #b1b1b1 1px solid;
    }
    .menu li:first-child {
        border-top: none
    }
        .menu a {
            display: block;
            color: white;
            text-decoration: inherit;
            transition: background .6s;
        }
        .menu a:hover {
            background: #6f7189;
        }
    #drawer:checked ~ .menu {
        transform: none;
    }
/*===========================================================
	Main Visual
============================================================*/
#main-visual {
    height: 800px;
}
.item-comment {
    bottom: 200px;
    min-width: 40%;
    padding: 1em 2em 1em 4em;
    border-radius: 50px 0 0 50px;
}
/*===========================================================
	Main//Index
    layerは三角の重なり順を決めるclass
    shadow-filterはClip-pathエリアに対する共通ドロップシャドウ
============================================================*/
main.index-main {
    margin: 0 auto;
    padding: 0 0 100px 0;
}
.inner {
    width: 100%;
}

#greetring-area {
    width: 95%;
    margin: 0 auto;
    padding: 1em;
    box-sizing: border-box;
}
.greeting div {
    width: 100%;
    margin-left: 0.5em;
}
#recommend-area {
    width: 95%;
    margin:0 auto;
    padding-top: 200px;
    background-image: url('images/white-back.jpg');
    background-repeat: repeat;
    clip-path: polygon(100% 0, 100% 90%, 50% 100%, 0% 90%, 0 0);
}
    .recommend {
        flex-direction:row
    }
    .recommend a {
        width: 33%;
    }
    .banner {
        flex-direction: row;
    }
        .banner img {
            width: 100%;
            margin-bottom: 1em;
        }
        .banner a {
            width: 49%;
        }
        .left-img,
        .right-img {
            z-index: 99;
            position: relative;
            width: 100%;
            height: 500px;
        }
        .left-img img,
        .right-img img {
            width: 255px;
            /* height: 500px; */
        }
            .left-img {
                top: -168px;
                left: 0;
            }
            .right-img {
                top: -1278px;
                right: 0;
                text-align: right;
            }
            #order-area {
                height: 590px;
                padding: 0 0 3em 0;
                background:
                    url('../images/green-back.jpg') repeat-x top center;
                clip-path: polygon(100% 0, 100% 70%, 50% 100%, 0% 70%, 0 0);
            }
            .order img {
                width: 254px;
                height: 254px;
            }
            #order-button {
                top: -130px;
                padding: 2em 0;
            }
            #notice-area {
                top: -130px;
            }
            .notice h2 {
                width: 20%;
                text-align: center;
            }
            .notice-list {
                width: 70%;
                align-items: center;
            }
            .notice-list dt {
                width: 30%;
                padding: 0.5em 0;
            }
            .notice-list dd {
                width: 70%;
                padding: 0.5em 0;
            }
            #info-area {
                bottom: 920px;
                left: 50%;
                transform: translateX(-50%);
                width: 960px;
                height: 500px;
            }
                .info {
                    height: 400px;
                }
#order-button a {
    width: 90%;
    margin: 0 auto;
}
#info-area .inner img {
    width: 75%;
    margin: 0 12%;
}
/*===========================================================
	Footer
============================================================*/
a.totop {
    z-index: 95;
    right: 15px;
    bottom: 15px;
}
footer {
    margin: 100px auto 0 auto;
    clip-path: polygon(50% 20%, 100% 0, 100% 100%, 0 100%, 0 0);
}
.add-area h2 img {
    width: 350px;
}
/*===========================================================
	Lower
============================================================*/
/*----------------------------------------------------------
    Header//Lower
----------------------------------------------------------*/
.contents {
    width: 90%;
}