@charset "UTF-8";

/* 定義 */
:root {
    --yellow: #FFE800;
    --white: #FFF;
    --dark-gray: #3E3A39;
    --light-gray: #EEEEEF;
    --gray: #595757;
}

/* 共通 */
html {
    background-color: var(--yellow);
}

body {
    /* background: url("../images/sp/img_bg.svg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 60%;
    font-family: 'Noto Sans JP', sans-serif; */
    /* background-attachment: fixed; */
}

.modal-bg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #000;
    opacity: .7;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 200;
    transition: .3s ease all;
}

.c-modal {
    /* display: none; */
    position: fixed;
    width: 89.3%;
    height: auto;
    max-height: 80%;
    min-height: 450px;
    background-color: var(--white);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px 16px 88px;
    z-index: 300;
    opacity: 0; /* 初期状態を透明に */
    visibility: hidden; /* 初期状態を非表示に */
    transition: opacity 0.3s ease, visibility 0.3s ease; /* トランジションを追加 */
}

.c-modal_headding {
    width: 58.6%;
    min-width: 220px;
    height: 40px;
    line-height: 40px;
    font-weight: bold;
    color: var(--white);
    background-color: var(--dark-gray);
    text-align: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%);
}

.c-modal_close {
    width: 105px;
    height: 34px;
    background-color: var(--light-gray);
    font-weight: bold;
    text-align: center;
    border-radius: 105px;
    position: relative;
    text-align: left;
    padding-left: 16px;
    display: block;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.c-modal_close::after {
    content: url("../images/sp/ico_close.svg");
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

.c-modal.is-modal_open {
    opacity: 1; /* 表示時に不透明に */
    visibility: visible; /* 表示時に可視に */
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0);
    z-index: 200; /* モーダルより下に配置 */
    transition: opacity 0.3s ease, visibility 0.3s ease; 
    opacity: 0; /* 初期状態では透明 */
    visibility: hidden; /* 初期状態では非表示 */
}

.modal-overlay.is-modal_open {
    /* display: block; */
    opacity: .7; /* 表示時に不透明に */
    visibility: visible; /* 表示時に可視に */
}

.c-content_box {
    position: relative;
    width: 89%;
    margin: 0 auto 32%;
    background-color: var(--white);
    padding: 16px 16px 30px;
}

.c-content_box::before {
    content: "";
    position: absolute;
    top: 99.5%;
    left: 50%;
    transform: translateX(-50%);
    background: url("../images/sp/deco_section_last.svg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100%;
    width: 100%;
    aspect-ratio: 100 / 11.97;
}

.c-content_box_headding {
    width: 58.6%;
    min-width: 220px;
    max-width: 360px;
    height: 40px;
    line-height: 40px;
    font-weight: bold;
    color: var(--white);
    background-color: var(--dark-gray);
    text-align: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%);
}

.under-yellow {
    background: linear-gradient(transparent 50%, var(--yellow) 0%);
    display: inline;
    padding: 0px 2px 1px;
    font-weight: bold;
}

/* header */
header {
    width: 100%;
    height: 100%;
    background: linear-gradient(-80deg, var(--dark-gray) 0%, var(--dark-gray) 50%, var(--gray) 50%, var(--gray) 100%);
    padding-top: 170px;
    position: fixed;
    z-index: 500;
    left: 100%;
    transition: .3s all ease;
}

.header.active {
    left: 0;
}

.header_list {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    white-space: nowrap;
}

.header_list_item {
    text-align: center;
    color: #fff;
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 50px;
}

.header_buttonlist {
    position: absolute;
    display: flex;
    width: 89.3%;
    justify-content: center;
    gap: 5%;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
}

.header_buttonlist_item {
    width: 47.8%;
    max-width: 320px;
    height: 65px;
    background: linear-gradient(-80deg, var(--light-gray) 0%, var(--light-gray) 50%, #fff 50%, #fff 100%);
    border-radius: 65px;
    color: #000;
    text-align: center;
    line-height: 65px;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 3px;
}

.header_toggle {
    position: fixed;
    width: 75px;
    height: 70px;
    cursor: pointer;
    /* background:#fff; */
    right: 0;
    top: 0;
    z-index: 999;
}

.header_toggle span {
    display: inline-block;
    transition: all .3s;
    position: absolute;
    right: 0;
    background-color: #000;
    width: 45px;
    height: 10px;
  }

.header_toggle span:nth-of-type(1) {
    top: 20px;
    right: 16px; 
}

.header_toggle span:nth-of-type(2) {
    top: 40px;
    right: 16px; 
}

/*activeクラスが付与されると線が回転して×に*/

.header_toggle.active span:nth-of-type(1) {
    /* top: 20px;
    left: 16px; */
    transform: translateY(10px) rotate(-45deg);
    background-color: #fff;
}

.header_toggle.active span:nth-of-type(2) {
    /* top: 32px;
    left: 16px; */
    transform: translateY(-10px) rotate(45deg);
    background-color: #fff;
}


main {
    background: url("../images/sp/img_bg.svg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 60%;
    font-family: 'Noto Sans JP', sans-serif;
    /* background-attachment: fixed; */
}

/* hero */
.hero {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero_copy {
    width: 86.7%;
    max-width: 500px;
    display: block;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

/* mission */
.mission_statement_headding {
    font-size: 30px;
    font-weight: bold;
}

.mission_statement_text {
    margin-top: 30px;
}

.mission_qa {
    margin-top: 48px;
}

.mission_qa_content {
    margin-top: 30px;
}

.mission_qa_headding {
    width: 73.3%;
    min-width: 290px;
    max-width: 360px;
    font-weight: bold;
    color: var(--white);
    background-color: var(--dark-gray);
    padding: 12px 15px;
    margin-left: -26px;
}

.mission_qa_text {
    margin-top: 20px;
}

.mission_qa_button {
    width: 105px;
    height: 34px;
    background-color: var(--yellow);
    font-weight: bold;
    text-align: center;
    border-radius: 105px;
    position: relative;
    text-align: left;
    padding-left: 16px;
    float: right;
    margin-top: 10px;
}

.mission_qa_button::after {
    content: url("../images/sp/ico_plus.svg");
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

.mission_qa_modal.is-modal_open {
    opacity: 1; /* 表示時に不透明に */
    visibility: visible; /* 表示時に可視に */
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0);
    z-index: 200; /* モーダルより下に配置 */
    transition: opacity 0.3s ease, visibility 0.3s ease; 
    opacity: 0; /* 初期状態では透明 */
    visibility: hidden; /* 初期状態では非表示 */
}

.modal-overlay.is-modal_open {
    /* display: block; */
    opacity: .7; /* 表示時に不透明に */
    visibility: visible; /* 表示時に可視に */
}

.mission_qa_modal.is-modal_open + .modal-overlay.is-modal_open {
    display: block;
}

/* message */
.message {
    width: 89%;
    /* height: 380px;  */
    height: auto;
    padding-bottom: 0;
    transition: .3s ease all;
}

.message.is-accordion_open {
    height: auto;
}

.message_inner {
    position: relative;
}

.message_headding {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 100%;
    right: -13px;
    top: 32px;
}

.message_headding_text {
    font-size: 18px;
    font-weight: bold;    
}

.message_headding_img {
    width: 130px;
}

.message_inner_text {
    margin-top: 168px;
    height: 108px;
    overflow-y: hidden;
    transition: .3s ease all;
}

.message.is-accordion_open .message_inner_text {
    height: auto;
}

.message_inner_text_readmore {
    width: 304px;
    max-width: 360px;
    height: auto;
    margin: 30px auto 0;
    display: block;
}

.message_inner_text_readmore:hover {
    cursor: pointer;
}

/* voice */
.voice {
    padding: 16px 12px 30px;
}

.voice_stafflist {
    margin-top: 24px;
}

.voice_stafflist_item, .voice_stafflist_item_modal_headcontent {
    display: flex;
    gap: 10px;
    font-weight: bold;
    align-items: flex-start;
    margin-bottom: 20px;
}

.voice_stafflist_item_content {
    width: 100%;
}

.voice_stafflist_item_img {
    width: 78px;
}

.voice_stafflist_item:last-child {
    margin-bottom: 0;
}

.voice_stafflist_item_headding {
    margin-bottom: 4px;
}

.voice_stafflist_item_button {
    width: 105px;
    height: 34px;
    background-color: var(--yellow);
    font-weight: bold;
    text-align: center;
    border-radius: 105px;
    position: relative;
    text-align: left;
    padding-left: 16px;
    float: right;
    margin-top: 10px;
}

.voice_stafflist_item_button::after {
    content: url("../images/sp/ico_plus.svg");
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

/* .voice_stafflist_item_modal {
    position: fixed;
    width: 89.3%;
    height: auto;
    min-height: 450px;
    background-color: var(--white);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px 16px 88px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
} */

.voice_stafflist_item_modal::after {
    content: url("../images/sp/deco_modal_last.svg");
    position: absolute;
    top: 99.9%;
    right: 15%;
    width: 18.5%;
    height: auto;
}

.voice_stafflist_item_modal_text_wrap {
    height: calc(80dvh - 280px);
    overflow-y: scroll;
    padding: 16px;
    background: #f6f6f6;
}

.voice_stafflist_item_modal_text {
    font-weight: normal;
}

.voice_stafflist_item_modal.is-modal_open + .modal-overlay.is-modal_open {
    display: block;
}

/* job */
.job {
    padding: 30px 0 0;
    margin-bottom: 20%;
}

.job_list_item {
    margin-top: 20px;
    padding: 0 12px 20px;
    border-bottom: 1px solid var(--light-gray);
    position: relative;
}

.job_list_item_header {
    font-size: 20px;
    position: relative;
}

.job_list_item_header:hover {
    cursor: pointer;
}

.job_list_item_header::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    background: url("../images/sp/ico_arrow.svg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100%;
    width: 28px;
    height: 18px;
    /* aspect-ratio: 100 / 11.97; */
}

.job_list_item_header.is-open::after {
    transform: translateY(-50%) rotate(180deg);
}

.job_list_item_body {
    width: 100%;
    height: auto;
    overflow-y: hidden;
    transition: .3s ease all;
}

.job_list_item_body img {
    width: 100%;
    height: auto;
    margin-top: 30px;
}

.job_list_item_body_copy {
    text-align: center;
    font-weight: normal;
    font-size: 20px;
    margin: 30px auto 35px;
    padding: 1rem;
    position: relative;
}

.job_list_item_body_copy .under-yellow {
    font-weight: normal;
}

.job_list_item_body_copy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url("../images/sp/deco_joblist_left.svg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100%;
    width: 25px;
    height: 25px;
}

.job_list_item_body_copy::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background: url("../images/sp/deco_joblist_right.svg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100%;
    width: 25px;
    height: 25px;
}

.job_list_item_body_dl,
.job_modal_dl,
.information_dl {
    margin-bottom: 30px;
}

.job_list_item_body_dd_list_item {
    position: relative;
    padding-left: 1.5em;
    margin-top: 10px;
}

.job_list_item_body_dd_list_item::before {
    content: "▶";
    font-size: 14px;
    position: absolute;
    left: 1px;
    color: var(--yellow);
}

.job_button {
    width: 135px;
    height: 34px;
    background-color: var(--yellow);
    font-weight: bold;
    text-align: center;
    border-radius: 105px;
    position: relative;
    text-align: left;
    padding-left: 16px;
    margin: 30px auto 0;
    display: block;
}

.job_button::after {
    content: url("../images/sp/ico_plus.svg");
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

.job_modal {
    min-height: auto;
}

.job_modal_body {
    padding-top: 48px;
}

.job_modal_img {
    width: 89.1%;
    max-width: 320px;
    height: auto;
    display: block;
    margin: 0 auto 30px;
}

.banner_area {
    width: 89.3%;
    margin: 0 auto 24%;
}

.banner_area img {
    width: 100%;
}

.information {
    padding-top: 50px;
    padding-bottom: 20px;
}

.to_top {
    width: 225px;
    max-width: 320px;
    height: 45px;
    background: linear-gradient(-80deg, var(--dark-gray) 0%, var(--dark-gray) 50%, var(--gray) 50%, var(--gray) 100%);
    border-radius: 65px;
    color: #fff;
    text-align: center;
    line-height: 45px;
    font-size: 16px;
    letter-spacing: 3px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
}

footer {
    width: 100%;
    height: 375px;
    background-color: #000;
    padding-top: 72px;
    position: relative;
}

.footer_privacy_policy {
    color: #fff;
    font-weight: normal;
    text-decoration: underline;
    text-align: center;
    display: block;
    margin: 0 auto 18px;
}

.footer_copyright {
    color: var(--yellow);
    font-size: 10px;
    font-weight: normal;
    text-align: center;
    display: block;
    margin: 0 auto;
}

.footer_buttonlist {
    position: fixed;
    display: flex;
    width: 89.3%;
    justify-content: center;
    gap: 5%;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    z-index: 100;
}

.footer_buttonlist_item {
    width: 47.8%;
    max-width: 320px;
    height: 65px;
    background: linear-gradient(-80deg, var(--dark-gray) 0%, var(--dark-gray) 50%, var(--gray) 50%, var(--gray) 100%);
    border-radius: 65px;
    color: #fff;
    text-align: center;
    line-height: 65px;
    font-size: 20px;
    letter-spacing: 3px;
}

.p-inquiry {
    background: linear-gradient(-80deg, var(--dark-gray) 0%, var(--dark-gray) 50%, var(--gray) 50%, var(--gray) 100%);
}

.form {
    width: 100%;
    height: auto;
    padding: 40px 0;
}

form {
    color: var(--white);
    width: 335px;
    margin: 0 auto;
    font-size: 16px;
}

form .item_block {
    margin-bottom: 20px;
}

form label {
    display: block;
    width: 100%;
    margin-bottom: 8px;
}

form label::after {
    content: "必須";
    background: #5FD07F;
    font-size: 12px;
    padding: 5px 8px;
    border-radius: 8px;
    vertical-align: middle;
    margin-left: 8px;
}

form .inputs {
    background: var(--white);
    border: #c5c5c5 1px solid;
    width: 100%;
    padding: 4px 8px;
    color: #444;
}

form textarea.inputs {
    min-height: 230px;
}

form .inputs::placeholder {
    color: #cfcfcf;
}

@media screen and (min-width:641px){
    body {
        min-width: 860px;
        overflow-x: hidden;
    }
    
    .sp {
        display: none!important;
    }

    .c-content_box {
        width: 780px;
        padding: 40px 40px 0;
        margin-bottom: 120px;
    }

    .c-content_box::before {
        content: "";
        position: absolute;
        top: 99.5%;
        left: 50%;
        transform: translateX(-50%);
        background: url("../images/deco_section_last.svg");
        background-repeat: no-repeat;
        background-position: center top;
        background-size: 100%;
        width: 100%;
        height: 40px;
        /* aspect-ratio: 100 / 11.97; */
    }

    .c-content_box_headding {
        width: 220px;
        height: 40px;
    }

    .c-modal {
        width: 780px;
        padding: 40px;
        padding-bottom: 114px;
    }

    .c-modal_close {
        bottom: 40px;
    }

    main {
        background: url("../images/img_bg.png");
        background-repeat: repeat;
        background-position: center top;
        background-size: 100%;
    }

    .header {
        width: 395px;
    }

    .header.active {
        left: 100%;
        transform: translateX(-100%);
    }

    .banner_area {
        width: 335px;
        margin-bottom: 80px;
    }

    .hero {
        width: 100%;
        height: 100%;
        position: relative;
    }
    
    .hero_copy {
        width: 86.7%;
        min-width: 720px;
        max-width: 1000px;
        display: block;
        position: absolute;
        transform: translate(-50%, -50%);
        top: 50%;
        left: 50%;
    }

    .mission_qa {
        padding-bottom: 40px;
    }

    .mission_qa_headding {
        width: 745px;
        max-width: inherit;
        margin-left: -45px;
    }

    .mission_qa_content {
        margin-top: 40px;
    }

    .message_headding {
        display: block;
        position: static;
        margin-top: 43px;
    }

    .message_headding_text {
        font-size: 22px;
    }

    .message_headding_img {
        position: absolute;
        width: 150px;
        height: 150px;
        right: 40px;
        top: 40px;
    }

    .message_inner_text {
        margin-top: 42px;
    }

    .voice_stafflist {
        padding-bottom: 20px;
    }

    .voice_stafflist_item {
        gap: 40px;
        height: 100px;
        position: relative;
        margin-bottom: 40px;
    }

    .voice_stafflist_item_img {
        width: 100px;
    }

    .voice_stafflist_item_content {
        width: 420px;
    }

    .c-modal .voice_stafflist_item_content {
        width: 100%;
    }

    .voice_stafflist_item_button {
        position: absolute;
        right: 0;
        bottom: 0;
    }

    .voice_stafflist_item_modal_text_wrap {
        height: auto;
    }

    .job {
        margin-bottom: 70px;
    }

    .job_list_item_body img {
        width: 305px;
        margin: 30px auto;
        display: block;
    }

    .job_list_item_body_copy {
        padding: 30px;
    }

    .information {
        padding-top: 50px;
        padding-bottom: 30px;
    }

    .footer_buttonlist_item {
        width: 240px;
    }
}

@media screen and (max-width:640px){
    .sp {
        display: inline;
    }
    .pc {
        display: none!important;
    }
}