body {
    color: #2b3d46;
    font-family: "Hiragino Mincho ProN", YuMincho, serif;
    /* フォントを指定 */
}

h2 {
    color: #f24b40;
    font-family: "Playfair Display", YuMincho, serif;
    /* フォントを指定 */
    font-size: 80px;
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 50px;
}

/*エントリーとコンタクトの仮の部分*/
.sample {
    background-color: #2b3d46;
    width: 80%;
    height: 1000px;
    margin: 0 auto;
    margin-bottom: 50px;
    color: #f0f0f0;
    text-align: center;
}



/*ヘッダー*/
header {
    color: white;
    background-color: #f24b40;
}

.header_container {
    height: 80px;
    display: flex;
    align-items: center;
}


/*ロゴ*/
.header_container img {
    height: 50px;
    margin-left: 20px;
}

/*ナビゲーション*/
.nav_header {
    margin-left: auto;
}

.nav_header ul {
    font-size: 20px;
    display: flex;
    align-items: center;
    margin-right: 40px;
}

.nav_header li+li {
    margin-left: 20px;
}




/*スライドショー*/
.slides video {
    width: 100%;
}





/*ABOUT*/
.about img {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
}


/*SERVICE*/

.service_container {
    margin: 0 15px;
}

.service_container_1,
.service_container_2 {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.service_innner_left1 img,
.service_innner_right1 img,
.service_innner_left2 img,
.service_innner_right2 img {
    width: 100%;
}

.service_innner_right1,
.service_innner_right2 {
    margin-left: 40px;
    position: relative;
}

.service_innner_left1,
.service_innner_left2 {
    position: relative;
    margin-bottom: 30px;
}

.absolute {
    position: absolute;
    left: 0px;
    top: 0px;
}

.service_innner_left1:hover img:nth-of-type(1),
.service_innner_left2:hover img:nth-of-type(1),
.service_innner_right1:hover img:nth-of-type(1),
.service_innner_right2:hover img:nth-of-type(1) {
    opacity: 0;
}

.service_innner_left1 p,
.service_innner_left2 p,
.service_innner_right1 p,
.service_innner_right2 p {
    margin-top: 10px;
    font-size: 20px;
}



/*company*/
.company img {
    margin-top: 50px;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

/*フッター*/
.footer {
    background-color: #2b3d46;
    height: 100px;
    color: white;
    font-size: 20px;
    text-align: center;
    padding-top: 20px;
    font-family: 'ヒラギノ角ゴ Pro',
        'ヒラギノ角ゴ',
        'Hiragino Kaku Gothic Pro',
        'メイリオ',
        'ＭＳ Ｐゴシック',
        sans-serif;

    p {
        margin-top: 15px;
    }
}

/*advertisement.html*/
.advertisement {

    h3 {
        text-align: center;
        font-size: 80px;
        margin: 50px auto;
    }

    p {
        text-align: center;
        font-size: 40px;
        margin-bottom: 70px;
    }

    img {
        max-width: 100%;
        margin: 0 auto;
        margin-bottom: 30px;

    }
}

/*influencer.html*/
.influencer {
    img {
        max-width: 100%;
        margin: 0 auto;
    }
}

/*共通のリンクボタンリンクボタン*/
.link {
    text-align: center;
    color: white;
    background-color: #f24b40;
    font-size: 30px;
    margin: 30px 200px 50px 200px;
    padding: 10px;
}

/*recruit-1.htmlとrecruit-22.html*/
.btn {
    text-align: center;
    margin: 50px;
    display: flex;
    justify-content: center;
}

.btn-1,
.btn-2,
.btn-3,
.btn-4 {
    font-size: 22px;
    padding: 20px;
    border-radius: 15px;
    width: 600px;
}

.btn-1,
.btn-4 {
    color: #f24b40;
    background-color: #fddaa3;
    margin-left: 15px;
}

.btn-2,
.btn-3 {
    background-color: #f2f2f2;
    margin-left: 15px;
}

.recruit-photo {

    img {
        max-width: 100%;
        margin: 0 auto;
    }
}






/*ハンバーガーメニュー*/

/* Nav items */
.menu {
    list-style: none;
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    margin-top: 52px;
    padding: 0 0 300px 0;
    background-color: #f24b40;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transform: scale(1, 0);
    transform-origin: top;
    z-index: 1;
}

/* Hamburger menu button */
.menu-btn:checked~.menu {
    transform: scale(1, 1);
    transform-origin: top;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger menbu text */
.menu a {
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 20px;
    text-transform: capitalize;
    color: white;
    opacity: 0;
    transition: 0.5s;
}

.menu li {
    padding: 15px 0;
    margin: 0 54px;
    opacity: 0;
    transition: 0.5s;
}

.menu-btn:checked~.menu a,
.menu-btn:checked~.menu li {
    opacity: 1;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.menu-btn {
    display: none;
}

.menu-icon {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 24px 14px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.navicon {
    background: white;
    display: block;
    height: 3px;
    width: 26px;
    position: relative;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background: white;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
    top: 9px;
}

.navicon:after {
    bottom: 9px;
}

/* Hamburger Menu Animation Start */
.menu-btn:checked~.menu-icon .navicon:before {
    transform: rotate(-45deg);
}

.menu-btn:checked~.menu-icon .navicon:after {
    transform: rotate(45deg);
}

.menu-btn:checked~.menu-icon:not(.steps) .navicon:before {
    top: 0;
}

.menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
    bottom: 0;
}

.menu-btn:checked~.menu-icon .navicon {
    background: rgba(0, 0, 0, 0);
    transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger Menu Animation End */






/*レスポンシブデザインデザイン*/

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
    display: block !important;
}

.sp {
    display: none !important;
}

@media only screen and (max-width: 750px) {

    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }

    h2 {
        font-size: 50px;
    }

    /*ヘッダー*/
    .nav_header {
        display: none;
    }

    .header_container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 60px;
        padding: 0 10px;
        position: relative;

    }

    .hamburger {
        cursor: pointer;
        width: 50px;
        text-align: left;
    }

    .logo {
        position: absolute;
        left: 45%;
        transform: translateX(-50%);
        font-weight: bold;
    }


    /*SERVICE*/
    .service_container_1,
    .service_container_2 {
        display: block;
        margin: 30px;
    }

    .service_innner_right1,
    .service_innner_right2 {
        margin-left: 0;

    }

    .service_innner_left1 img,
    .service_innner_right1 img,
    .service_innner_left2 img,
    .service_innner_right2 img {
        width: 100%;
    }

    .service_innner_left1 p,
    .service_innner_left2 p,
    .service_innner_right1 p,
    .service_innner_right2 p {
        text-align: center;
        font-size: 12px;
    }


    /*フッター*/
    .footer {
        height: 70px;
        font-size: 15px;
        padding-top: 15px;

        p {
            margin-top: 10px;
        }
    }

    /*共通のリンクボタンリンクボタン*/
    .link {
        margin: 30px;
    }

    /*recruit-1.htmlとrecruit-22.html*/
    .btn {
        text-align: center;
        margin: 50px;
        display: flex;
        justify-content: center;
    }

    /*advertisement.html*/
    .advertisement {

        h3,
        p {
            display: none;
        }
    }

    /*recruit-1.htmlとrecruit-22.html*/
    .btn {
        flex-direction: column;
    }

    .btn-1,
    .btn-2,
    .btn-3,
    .btn-4 {
        font-size: 15px;
        padding: 20px;
        border-radius: 15px;
        width: 100%;
        margin: 0;
    }

    .btn-1,
    .btn-3 {
        margin-bottom: 20px;
    }



}