body {
    margin: 0;
}

/* ↓タイトルバー↓ */
.taitle_bar {
    position: relative;
}

.taitle_bar img {
    width: 100%;
}

/* PC用のスタイル */
@media screen and (min-width: 900px) {
    .title_img_PC {
        display: block; /* MV_text_areaを表示 */
    }

    .title_img_SP {
        display: none; /* mobile_text_areaを非表示 */
    }
}

/* スマートフォン用のスタイル */
@media screen and (max-width: 899px) {
    .title_img_PC {
        display: none; /* MV_text_areaを非表示 */
    }

    .title_img_SP {
        display: block; /* mobile_text_areaを表示 */
    }
}

.title_bar_recruit {
    position: absolute;
    top: 65%; /* 垂直方向に中央揃え */
    left: 50%; /* 水平方向に中央揃え */
    transform: translate(-50%, -50%); /* 中央に位置調整 */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title_en {
    margin-bottom: 5px; /* 適宜マージンを調整 */
    font-family: "Frank Ruhl Libre", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(12px, 0.7vw, 14px);
    letter-spacing: 7px;
    color: #fff;
}

.underline {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(28px, 1.6vw, 32px);
    letter-spacing: 3px;
    display: inline-block;
    position: relative;
    color: #fff;
}

.underline:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px; /* 下線の上下位置調整 */
    display: inline-block;
    width: 36px; /* 下線の幅 */
    height: 3px; /* 下線の太さ */
    transform: translateX(-50%); /* 位置調整 */
    background-color: #fff; /* 下線の色 */
}
/* ↑タイトルバー↑ */

/* ↓営業職↓ */
.sales_area {
    margin: 4.2% 22% 10%;
    display: flex;
    justify-content: space-between;
}

.sales_title {
    margin-bottom: 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sales_title_en {
    margin-bottom: 5px; /* 適宜マージンを調整 */
    font-family: "Frank Ruhl Libre", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(12px, 0.7vw, 14px);
    letter-spacing: 7px;
    color: #1e5e98;
}

.sales_underline {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(28px, 1.6vw, 32px);
    letter-spacing: 3px;
    display: inline-block;
    position: relative;
    color: #1e1e1e;
}

.sales_underline:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px; /* 下線の上下位置調整 */
    display: inline-block;
    width: 36px; /* 下線の幅 */
    height: 3px; /* 下線の太さ */
    transform: translateX(-50%); /* 位置調整 */
    background-color: #1e5e98; /* 下線の色 */
}

.btn_01 {
    margin-top: 54px;
    text-align: center;
    white-space: nowrap;
}

.detail_btn {
    border-radius: 4px;
    background-color: #1e1e1e;
    padding: 16px 92px;
    text-decoration: none;
    color: white;
    font-family: "Noto Serif JP",serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    transition: .3s;
}

.detail_btn:hover {
    opacity: 0.7;
}

.recruit_tb {
    width: 50%;
    border-collapse:collapse;
    color: #1e1e1e;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px
}

.re_left {
    width: 20%;
    padding: 5% 0;
    border-bottom: solid 1px #1e1e1e;
    white-space: nowrap;
}

.re_right {
    width: 30%;
    padding: 5% 0;
    border-bottom: solid 1px #c6c6c6;
}

/* PC用のスタイル */
@media screen and (min-width: 1200px) {
    .btn_01 {
        display: block;
    }

    .btn_02 {
        display: none;
    }
}

/* スマートフォン用のスタイル */
@media screen and (max-width: 1199px) {
    .sales_area {
        margin: 10% 5% 25%;
        display: block;
    }

    .sales_title {
        margin-bottom: 10%;
    }

    .recruit_tb {
        margin-bottom: 15%;
        width: 100%;
    }

    .re_right {
        padding: 7% 0 7% 3%;
    }

    .btn_01 {
        display: none;
    }

    .btn_02 {
        display: block;
        text-align: center;
    }
}
/* ↑営業職↑ */


/* ↓Q&A↓ */
.qa_back {
    padding: 5% 0 ;
    background-color: #d9d9d9;
}

.qa_area {
    margin: 0 8%;
    padding: 6% 0 8%;
    background-color: #fff;
}

.qa_title {
    margin-bottom: 3%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qa_underline {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(28px, 1.6vw, 32px);
    letter-spacing: 3px;
    display: inline-block;
    position: relative;
    color: #1e1e1e;
}

.qa_underline:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px; /* 下線の上下位置調整 */
    display: inline-block;
    width: 36px; /* 下線の幅 */
    height: 3px; /* 下線の太さ */
    transform: translateX(-50%); /* 位置調整 */
    background-color: #1e5e98; /* 下線の色 */
}

.qa_tb {
    margin: 0 15%;
    border-collapse:collapse;
    background-color: #fff;
}

.qa_tb td {
    padding: 5% 0 5%;
}

.question_no {
    width: 4%;
    vertical-align: top;
    color: #1e1e1e;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    border-bottom: solid 2px #1e1e1e;
}

.question {
    width: 21%;
    vertical-align: top;
    color: #1e1e1e;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    border-bottom: solid 2px #1e1e1e;
}

.answer {
    padding-left: 8% !important;
    padding-right: 8% !important;
    vertical-align: top;
    color: #1e1e1e;
    line-height: 2rem;
    border-bottom: solid 2px #dcdcdc;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px
}

.SP_qa_area_back {
    padding: 10% 0;
    background-color: #dcdcdc;
}

.SP_qa_area {
    padding: 8% 0 0;
    margin: 0 5%;
    background-color: #fff;
}

.SP_qa_title {
    margin-bottom: 9%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ↓アコーディオン↓ */
.toggle03 {
    display: none;
}

.Label03 {
    padding: 0 24px;
    display: flex;
}

.Label03::before{     /*タイトル横の矢印*/
    content:"";
    width: 6px;
    height: 6px;
    border-top: 2px solid #1e1e1e;
    border-right: 2px solid #1e1e1e;
    -webkit-transform: rotate(45deg);
    position: absolute;
    top:calc( 50% - 3px );
    right: 20px;
    transform: rotate(135deg);
}

.Label03,.accordion_content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
}

.toggle03:checked + .Label03 {  /* 開閉時のラベル */
    border-bottom: none;
}

.toggle03:checked + .Label03::before {
    transform: rotate(-45deg) !important;
}

.SP_head_sub_01 {
    margin-right: 5%;
    padding-bottom: 8px;
    width: fit-content;
    color: #1e1e1e;
    font-family: "Noto Serif JP",serif;
    font-weight: 500;
    font-style: normal;
    font-size: 17px;
}

.accordion_content {
    height: 0;
    padding: 0px 40px !important;
    overflow: hidden;
    background-color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 1.5rem;
    border-bottom: solid 1px #1e1e1e;
}

.SP_p_sub_01 {
    margin: 0 0 10% 0;
}

.toggle03:checked + .Label03 + .accordion_content { /*開閉時*/
    height: auto;
    padding:20px ;
    transition: all .3s;
}

.toggle03:checked + .Label03::before {
    transform: rotate(-45deg) !important;
}
/* ↑アコーディオン↑ */


/* PC用のスタイル */
@media screen and (min-width: 1200px) {
    .qa_back {
        display: block;
    }
    
    .SP_qa_area_back {
        display: none;
    }
}

/* スマートフォン用のスタイル */
@media screen and (max-width: 1199px) {
    .qa_back {
        display: none;
    }
    
    .SP_qa_area_back {
        display: block;
    }
}
/* ↑Q&A↑ */