@charset "utf-8";

body {
    overflow-x: hidden;
    font-size: 18px;
    line-height: 2.4;
    font-family: "Noto Sans JP", "Helvetica Neue", Helvetica, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Arial, "Yu Gothic", Meiryo, sans-serif;
    color: #333;
}

h2 {
    font-size: 32px;
}

h2 span {
    background: linear-gradient(transparent 70%, #f6e024 40%);
    padding: 0 10px;
}

p {
    font-size: 20px;
    line-height: 2.4;
}

img {
    width: 100%;
    vertical-align: bottom;
}

section {
    padding: 6em 0;
}

.inner {
    width: 1200px;
    max-width: 94%;
    margin: 0 auto;
}

.fadein {
    opacity: 0;
    transform: translate(0, 80px);
    transition: all 1500ms;
}

.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);

}

.scalein {
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
    opacity: 0;
    transform: scale(1.2) translate(0, 0);
}

.scalein.scrollin {
    opacity: 1;
    transform: scale(1) translate(0, 0);
}

/* アニメーション前の状態 */
.fade-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.6s ease, transform 0.8s ease;
    transition-delay: 0.5s;
}

/* 画面内に入ったら付くクラス */
.fade-left.show {
    opacity: 1;
    transform: translateX(0);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, 0.7);
    opacity: 0;
    transition: opacity 1.2s ease;
}

header.show {
    opacity: 1;
}

.header_inner {
    max-width: 94%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.logo img {
    height: 50px;
    width: auto;
    margin: 10px 0;
}

nav .menu {
    display: flex;
    list-style: none;
    margin: 15px 0;
    width: 800px;
    justify-content: space-between;
}

nav .menu li {
    margin: 0 15px;
    line-height: 40px;
}

.menu li a {
    display: block;
    text-decoration: none;
    color: #080a52;
    font-weight: 600;
    font-family: "Lato";
}

.menu-button {
    display: none;
    /* PCでは非表示 */
    width: 40px;
    height: 30px;
    background: none;
    border: none;
    position: relative;
    cursor: pointer;
}

/* ハンバーガーメニューの3本線 */
.menu-button span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: #222;
    position: absolute;
    left: 0;
    transition: 0.3s;
}

.menu-button span:nth-child(1) {
    top: 0;
}

.menu-button span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-button span:nth-child(3) {
    bottom: 0;
}

/* ハンバーガーメニューをクリックで「×」に変える */
.menu-button.open span:nth-child(1) {
    top: 50%;
    transform: rotate(45deg);
}

.menu-button.open span:nth-child(2) {
    opacity: 0;
    /* 真ん中の線を非表示 */
}

.menu-button.open span:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg);
}

section#fv {
    height: 100vh;
    width: 100vw;
    padding: 0;
}

section#fv img {
    height: 100%;
    object-fit: cover;
}

.catch {
    position: absolute;
    bottom: 10%;
    font-size: 45px;
    font-weight: 600;
    text-align: center;
    line-height: 1;
}

.catch span {
    display: inline-block;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.8);
    text-align: center;
    letter-spacing: 5px;
    padding: 5px 15px;
    border-radius: 5px;
    margin-top: 25px;
    line-height: 1.6;
}

.catch {
    position: absolute;

    left: 0;
    transform: translate(-50%, 10%);
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: revealText 1s ease-out forwards;
    color: #080a52;
}

.main_copy {
    position: absolute;
    top: 33%;
    background: rgba(246, 224, 36, 0.7);
    font-weight: 600;
    font-size: 60px;
    line-height: 1.6;
    text-align: center;
    width: 100%;
    padding: 20px 10px;
    color: #222;
    animation: fadeInMain 2.5s ease-out forwards;
}

@keyframes fadeInMain {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes revealText {
    0% {
        opacity: 0;
        transform: translate(100%, 10%) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translate(0%, 10%) scale(1);
    }
}

.entry_box_cover {
    position: absolute;
    top: 15%;
    display: flex;
    flex-wrap: wrap;
    width: 800px;
    justify-content: space-between;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeInPage 2s ease-out forwards;
    max-width: 94%;
}

@keyframes fadeInPage {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.entry__box {
    width: 30%;
    background: #080a52;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    border-radius: 10px;
    line-height: 1.6;
    padding: 10px 0;
}

#point {
    padding-bottom: 0;
}

.point_box {
    display: flex;
    margin-bottom: 6em;
    justify-content: space-between;
}

.point_box_img {
    width: 40%;
}

.point_box_img img {
    border-radius: 15px;
}

.point_box_text {
    width: 55%;
    padding-top: 20px;
}

.point_box_h {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 1em;
    line-height: 1.8;
}

i.fa-solid.fa-check {
    color: #080a52;
}

.point_text {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    background: #080a52;
    color: #fff;
    padding: 3em 0;
}

#recruitment {
    position: relative;
    min-height: 100vh;
    /* セクション全体をカバー */
    background-image: url('https://fuyouhinkaisyuu-ihinseiri-kataduke-24h-ok.com/lp/img/recruitment.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#recruitment h2 {
    position: relative;
    padding: 0.5em 0.5em 0.5em 1.5em;
    line-height: 1.4;
    color: #080a52;
    margin-bottom: 20px;
}

#recruitment h2:before {
    font-family: "Font Awesome 5 Free";
    /*忘れずに*/
    content: "\f138";
    /*アイコンのユニコード*/
    font-weight: 900;
    position: absolute;
    /*絶対位置*/
    font-size: 1em;
    /*サイズ*/
    left: 0.25em;
    /*アイコンの位置*/
    top: 0.5em;
    /*アイコンの位置*/
    color: #080a52;
    /*アイコン色*/
}

.recruitment_box {
    background: rgba(255, 255, 255, 0.8);
    padding: 50px;
    box-sizing: border-box;
    width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    max-width: 100%;
}

.recruitment_box dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.recruitment_box dl>dt,
.recruitment_box dl>dt+dd {
    border-top: 1px solid #080a52;
}

.recruitment_box dt {
    width: 200px;
    border-bottom: 1px solid #080a52;
    padding: 15px;
    font-weight: 600;
    color: #080a52;
    display: flex;
    align-items: center;
}

.recruitment_box dd {
    width: calc(100% - 230px);
    border-bottom: 1px solid #080a52;
    padding: 15px;
}

.recruitment_box dd ul {
    list-style-position: inside;
}

.recruitment_box dd ul.lsn {
    list-style: none;
}

.recruitment_box dd span {
    background: #f6e024;
    font-weight: 600;
    padding: 0 5px;
}

#bosyu h2 {
    text-align: center;
}

#bosyu p {
    text-align: center;
    margin-bottom: 3em;
    margin-top: 2em;
}

.box27 {
    position: relative;
    padding: 0.8em 1.5em;
    border: solid 3px #080a52;
    width: 800px;
    margin: 6em auto 0;
    border-radius: 0 10px 10px 10px;
    max-width: 100%;
}

.box27 ul {
    list-style-position: inside;
    margin-bottom: 1em;
}

.box27 .box-title {
    position: absolute;
    display: inline-block;
    top: -50px;
    left: -3px;
    padding: 0 20px;
    height: 50px;
    line-height: 50px;
    font-size: 30px;
    background: #080a52;
    color: #ffffff;
    font-weight: bold;
    border-radius: 10px 10px 0 0;
}

.box27 p {
    margin: 0;
    padding: 0;
}

.bosyu_h {
    font-size: 20px;
}

.bosyu_h span {
    background: #f6e024;
    font-weight: 600;
    padding: 0 5px;
}

#review {
    /* background: #080a52; */
    background: linear-gradient(135deg,
            #080a52 0%,
            #12145e 40%,
            rgba(8, 10, 82, 0.8) 70%,
            #080a52 100%);
}

#review h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 2em;
}

.review_box {
    display: flex;
    width: 800px;
    margin: 0 auto;
    justify-content: space-between;
    max-width: 100%;
}

.review_box_img {
    width: 300px;
    height: 300px;
    aspect-ratio: 1 / 1;
}

.review_box_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.review_box_text {
    width: calc(100% - 340px);
    color: #fff;
}

#employee {
    /* セクション全体をカバー */
    background-image:
        linear-gradient(rgba(255, 255, 255, .5), rgba(255, 255, 255, .8)),
        /* thin white */
        url('https://fuyouhinkaisyuu-ihinseiri-kataduke-24h-ok.com/lp/img/bg.webp');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

#employee h2 {
    text-align: center;
}

#employee ul {
    width: 800px;
    max-width: 100%;
    margin: 3em auto;
    list-style: none;
    font-size: 20px;
}

#employee ul li {
    position: relative;
    padding-left: 1.5em;
}

#employee ul li .fa-square-check {
    font-size: 24px;
    color: #080a52;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -10px;
}

.employee_box {
    width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    max-width: 100%;

}

.employee_box_h {
    text-align: center;
    background: #080a52;
    font-weight: 600;
    font-size: 26px;
    color: #fff;
    border-radius: 20px 20px 0 0;
}

#employee .employee_box ul {
    background: #fff;
    margin: 0;
    padding: 20px;
    border-radius: 0 0 20px 20px;
    border: 3px solid #080a52;
}

#contact {
    background: #eee;
}

#contact p {
    text-align: center;
    margin: 4em 0;
}

#contact h2 {
    font-weight: 600;
    text-align: center;
}

.contact {
    display: flex;
    justify-content: space-between;
    width: 1000px;
    margin: 0 auto;
    max-width: 100%;

}

.contact_box {
    width: 30%;
}

.contact_box a {
    display: block;
    text-align: center;
    line-height: 1;
    background: #00B900;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    padding: 22px 0;
    width: auto;
    transition: 0.6s;
    filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.6));
    position: relative;
}

.contact_box a .fa-circle-chevron-right {
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -9px;
}

.contact_box.tel a {
    background: #f6960e;
}

.contact_box.mail a {
    background: #ff1b02;
}

.contact_box a:hover {
    opacity: 0.6;
}

.pagetop {
    cursor: pointer;
    position: fixed;
    right: 30px;
    bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: .3s;
    color: #080a52;
    background: #fff;
    border: 2px solid #080a52;

    /*   デフォルトは非表示 */
    opacity: 0;
}

.pagetop:hover {
    box-shadow: 0 0 10px #080a52;
}

footer {
    padding-bottom: 122px;
}

footer p {
    display: block;
    background: #080a52;
    color: #fff;
    text-align: center;
    font-size: 12px;
    line-height: 50px;
}

.footer_contact {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 30px 6%;
    background: rgba(255, 255, 255, 0.7);
    opacity: 0;
}

.sp_on {
    display: none;
}

@media (max-width: 979px) {
    header {
        opacity: 1;
        height: 60px;
    }

    p {
        font-size: 17px;
    }

    .logo img {
        height: 40px;
        vertical-align: top;
    }

    nav ul.menu {
        display: none;
        /* デフォルトは非表示 */
        /* flex-direction: column;*/
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(67, 60, 55, 0.6);
        padding: 20px 0;
        height: 100vh;
        display: block;
        opacity: 0;
        /* 透明 */
        overflow: hidden;
        /* 非表示の部分を隠す */
        transition: opacity 0.7s ease-out;
        pointer-events: none;
        /* クリックできないように */
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        box-sizing: border-box;
    }

    nav ul.menu li {
        text-align: center;
        padding: 10px 0;
    }

    nav ul.menu li a {
        color: #fff;
        font-size: 16px;
        line-height: 30px;
    }

    .menu-button {
        display: block;
        /* スマホでは表示 */
        z-index: 11;
    }

    /* メニューが開いたとき */
    nav ul {
        padding: 40px 0 140px;
        box-sizing: border-box;
    }

    h2 {
        font-size: 24px;
    }

    nav ul.open {
        opacity: 1;
        pointer-events: auto;
        overflow-y: auto;
    }

    .menu-button {
        position: absolute;
        right: 10px;
        top: 15px;
    }

    .menu-button.open span {
        background-color: #fff;
    }

    section {
        padding: 3em 0;
    }

    .entry__box {
        font-size: 16px;
        padding: 5px 0;
        width: 31%;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 2;
    }

    .catch {
        font-size: 20px;
        line-height: 1.6;
    }

    .catch span {
        font-size: 15px;
        margin-top: 15px;
        line-height: 1.6;
        width: 80%;
        margin: 15px auto 0;
    }

    .main_copy {
        font-size: 30px;
        top: 40%;
    }

    .sp_on {
        display: block;
    }

    .point_box {
        margin-bottom: 6em;
        flex-wrap: wrap;
    }

    .point_box_text {
        width: 100%;
        display: contents;
    }

    .point_box_h {
        font-size: 30px;
        order: 1;
        margin-bottom: 0.5em;
        font-size: 24px;
    }

    .point_box_img {
        width: 100%;
        margin-top: 10px;
        order: 2;
    }

    .point_box_text p {
        order: 3;
    }

    .point_box {
        margin-bottom: 3em;
    }

    .point_text {
        font-size: 26px;
        padding: 1.5em 0;
    }

    .point_text>div {
        max-width: 90%;
        margin: 0 auto;
    }

    .recruitment_box {
        padding: 25px;
    }

    .recruitment_box dl {
        font-size: 16px;
    }

    .recruitment_box dt {
        width: 100px;
    }

    .recruitment_box dd {
        width: calc(100% - 120px);
        border-bottom: 1px solid #080a52;
        padding: 15px;
        line-height: 1.8;
    }

    .box27 .box-title {
        font-size: 22px;
    }

    .box27 ul {
        font-size: 17px;
    }

    .bosyu_h {
        font-size: 18px;
    }

    .review_box_text {
        width: calc(100% - 170px);
    }

    .review_box_img {
        width: 150px;
        height: 150px;
    }

    #employee ul {
        font-size: 17px;
        margin: 1.5em auto;
    }

    .employee_box_h {
        font-size: 19px;
    }

    #employee .employee_box ul {
        padding: 10px 5px;
    }

    .contact {
        flex-wrap: wrap;
    }

    .contact_box {
        width: 80%;
        margin: 0 auto 30px;
    }

    #contact p {
        margin: 2em 0;
    }

    .pagetop {
        right: 15px;
        bottom: 80px;
        width: 44px;
        height: 44px;
    }

    footer {
        padding-bottom: 73px;
    }

    .footer_contact {
        padding: 15px 10px;
    }

    .footer_contact .contact_box {
        margin-bottom: 0;
        font-size: 13px;
        width: 32%;
    }

    .footer_contact .contact_box a {
        padding: 15px 0;
    font-size: 12px;

    }

    .footer_contact .contact_box a .fa-circle-chevron-right {
        position: absolute;
        right: 5px;
        top: 50%;
        margin-top: -6px;
    }
}