@charset "utf-8";
/*
Theme Name: 株式会社 オレズ
Author: yuta.s
Author URI: https://addone-works.com
Description:株式会社 オレズのテーマ
version: 1.0.0
*/

/*common
-----------------------------------------------------------------------------------------*/

/*header
-----------------------------------------------------------------------------------------*/
.header_bg {
    background-color: rgb(249, 209, 226);
    height: 100vh;
    width: 100%;
    border-radius: 0 0 100px 100px;
}

.step_box_wrepper {
    display: flex;
    align-items: flex-end;
    width: 30%;
    height: 35vh;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.step_box {
    display: inline-block;
    width: 33.3%;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.7);
}

.step_box.left {
    animation: image_anime 5s infinite alternate, left_height 1s ease-in forwards;
    background-size: cover;
}

.step_box.center {
    animation: center_height 1s ease-in forwards;
}

.step_box.right {
    animation: right_height 1s ease-in forwards;
}

@keyframes left_height {
    0% {
        height: 0;
    }

    100% {
        height: 50%;
    }
}

@keyframes center_height {
    0% {
        height: 0;
    }

    100% {
        height: 75%;
    }
}

@keyframes right_height {
    0% {
        height: 0;
    }

    100% {
        height: 100%;
    }
}

@keyframes image_anime {
    0% {
        background-image: url(./images/top1.jpg);
    }

    50% {
        background-image: url(./images/top2.jpg);
    }

    100% {
        background-image: url(./images/top3.jpg);
    }
}

h1 {
    position: absolute;
    top: 55%;
    left: 50%;
}

h1 span {
    font-size: 80%;
}

.header_bg .font_katyou {
    position: absolute;
    left: 20%;
    bottom: -8%;
    font-size: 250%;
    rotate: -15deg;
}

.header_bg .font_katyou p {
    padding: 8px 0;
}

header {
    background-color: rgb(255, 248, 251);
}

.logo {
    width: 100px;
    position: fixed;
    left: 10px;
    top: 10px;
    z-index: 99999;
}

.link_box {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    border-radius: 10px;
    z-index: 9999;
}

.link_box i {
    font-size: 300%;
    margin: 0 15px;
    color: rgb(161, 62, 105);
}

.link_box p {
    color: rgb(161, 62, 105);
    font-size: 80%;
    margin-top: 20px;
}

ul.drawer-menu {
    display: inline-block;
    white-space: nowrap;
    margin-top: 80px;
}

.drawer-menu li {
    padding: 8% 0;
    border-bottom: 2px solid rgb(228, 190, 190);
}

a.drawer-menu-item {
    font-size: 150%;
    color: rgb(106, 0, 0);
}

/* ドロワーメニューの背景色 */
nav.drawer-nav {
    background: linear-gradient(to bottom, rgb(255, 248, 251), rgb(255, 255, 255));
    background: -webkit-linear-gradient(top, rgb(255, 248, 251), rgb(255, 255, 255));
    background: -moz-linear-gradient(top, rgb(255, 248, 251), rgb(255, 255, 255));
}

/* ドロワーメニュー開いた時の幅 */
.drawer--right.drawer-open .drawer-nav {
    width: 50%;
}

/* ハンバーガーアイコンのサイズ */
button.drawer-hamburger {
    width: 3%;
}

/* ハンバーガーアイコンの位置 */
button.drawer-hamburger {
    top: 1% !important;
    right: 2% !important;
}

.sp-navigation {
    z-index: 999999;
}

/* ハンバーガーアイコンの色 */
.drawer-hamburger-icon,
.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
    background-color: rgb(106, 0, 0) !important;
}

.logolink:hover{
    opacity: unset;
}

/*footer
-----------------------------------------------------------------------------------------*/
footer {
    padding: 10px 0;
}

@media screen and (max-width:1023px) {
    .header_bg {
        border-radius: 0 0 30px 30px;
    }

    .step_box_wrepper {
        width: 50%;
        height: 25vh;
    }

    h1 {
        position: absolute;
        top: 35%;
        left: 5%;
        font-size: 150%;
    }

    .header_bg .font_katyou {
        position: absolute;
        left: 5%;
        bottom: -10%;
        font-size: 160%;
        rotate: -15deg;
    }

    .link_box {
        padding: 10px 0;
        position: fixed;
        bottom: 0;
        right: 0;
        border-radius: 0;
        width: 100%;
    }

    .link_box i {
        font-size: 200%;
        margin: 10px 20px;
    }

    .link_box p {
        margin: 5px 0;
    }

    ul.drawer-menu {
        margin-top: 40px;
    }

    a.drawer-menu-item {
        font-size: 110%;
    }

    /* ドロワーメニュー開いた時の幅 */
    .drawer--right.drawer-open .drawer-nav {
        width: 100%;
    }

    /* ハンバーガーアイコンのサイズ */
    button.drawer-hamburger {
        width: 10%;
    }

    /*footer
-----------------------------------------------------------------------------------------*/
    footer {
        padding: 10px 0 110px;
    }
}