/*
Theme Name: habakiri Child
Theme URI: http://habakiri.2inc.org/en/
Template: habakiri
Author: inc2734
Author URI: http://2inc.org
Description: Habakiri is the simple theme based on Bootstrap 3. This theme's goal is to create a responsive, bootstrap based WordPress theme quickly. The design is very simple, easy to create of child theme. Features are, 100% responsive layouts, the Glyphicons, Genericons, Font Awesome icons, 7 page templates, 8 header design patterns, many color settings, a lot of hooks, related posts, minified CSS and JavaScript, Sass and PHP Class in functions.php.
Tags: white,fixed-layout,fluid-layout,responsive-layout,one-column,two-columns,left-sidebar,right-sidebar,editor-style,sticky-post,microformats,featured-images,custom-colors,custom-menu,custom-background,custom-colors
Version: 2.5.2.1647322909
Updated: 2024-03-18 10:41:49

*/

/* .............................

    index

 ............................. */
/*
    base
    btn
    form

    header

    site-branding , page-header
    
    footer

    breadcrumbs

    404

    01. page-home
    MV
    ABOUT
    SERVICE
    RECRUIT
    COMPANY
    CONTACT

    02. page-service

    03. page-recruit
    recruit-flow
    recruit-job
    recruit-form

    04. page-recruit_confirm

    05. page-recruit_complete

    06. page-company
    company-message
    company-about
    company-access

    07. page-contact

    08. page-contact_confirm

    09. page-contact_complete

    10. page-privacy

 */

/* ------------------------------------------------------------------------------------
  base
------------------------------------------------------------------------------------ */

:root {
    --main-color: #FFBC00;
    --sub-color: #FF003B;
    --bg-color: #EEEEEE;
}

body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 40px;
    color: #000;
    background-color: var(--bg-color);
    overflow-x: hidden;
}


img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

a[href^="tel:"] {
    pointer-events: none;
}


/* fontsize */
h1 {
    font-size: 30px;
}

h2 {
    font-size: 25px;
    margin-bottom: 40px;
}

h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
}


a:hover {
    opacity: 0.5;
    text-decoration: none;
}

.responsive-nav-contents {
    box-shadow: none;
}

.view_pc {
    display: block;
}

.view_sp {
    display: none;
}

.view_1236 {
    display: none;
}

@media screen and (max-width: 1236px) {
  .view_pc {
        display: none;
    }

    .view_1236 {
        display: block;
    }
}

@media screen and (max-width: 768px) {

    .view_pc {
        display: none;
    }

    .view_sp {
        display: block;
    }

    a[href^="tel:"] {
        pointer-events: auto;
    }

}



/* ------------------------------------------------------------------------------------
btn
------------------------------------------------------------------------------------ */

/* 共通ボタン */

.button {
    width: 30%;
    display: block;
    line-height: 50px;
    text-align: center;
    text-indent: .2em;
    text-decoration: none;
    padding: 1px;
    background: #FF9200;
    color: #fff;
    border: solid 2px #FF9200;
    font-weight: bold;
}

a.button:hover {
    background: #fff;
    color: var(--main-color);
    opacity: 1;
    border: solid 2px var(--main-color);
}

i.fa-solid.fa-chevron-right {
    margin-left: 10px;
}

@media screen and (max-width: 768px) {

    .button {
        width: 80%;
    }

}

/* ------------------------------------------------------------------------------------
form
------------------------------------------------------------------------------------ */

.form_contain {
    margin: 0 auto;
    width: 100%;
}

.btn_unit_area {
    margin: 2rem 0;
}

.btn_unit {
    text-align: center;
    margin: 0 auto;
    width: 100%;
    width: calc(90% / 2);
}

.form_btn.submit_btn._btn {
    display: block;
    width: 200px;
    line-height: 55px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    letter-spacing: .2em;
    text-indent: .2em;
    text-decoration: none;
    position: relative;
    background: var(--sub-color);
    color: #fff;
    border: solid 2px var(--sub-color);
    margin: 5.6rem auto 0;
}

.mw_wp_form .error {
    text-align: left;
    margin: 0 auto 0 0;
}

.mw_wp_form .horizontal-item+.horizontal-item {
    margin-left: 0 !important;
}

.form_table {
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.mwform-radio-field-text {
    font-size: 16px;
    margin-left: 10px;
}

.form_table .entry_class,
.form_table .entry_job {
    width: fit-content;
}

.form_table input,
.form_table textarea {
    height: 100%;
    width: 100%;
    border: solid 1px #B7B7B7;
    border-radius: 0;
    margin: 0;
}

.form_table input:focus-visible,
.form_table textarea:focus-visible {
    outline: 1px solid #000;
    border-radius: 0px;
}

input:focus-visible {
    outline: 2px solid var(--sub-color);
    border-radius: 50px;
}

.form_contain {
    margin-top: 40px;
}

.form_table tr {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
}

.form_table th.form_th {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin: 0 auto 10px 0;
}

.form_table td.form_td {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center;
    margin: 0 auto 0 0;
    width: 100%;
}

.form_table td.form_td-radio {
    flex-direction: row;
    flex-wrap: wrap;
}

.form_table th.required::after {
    content: "必須";
    display: inline-block;
    width: 45px;
    border-radius: 0;
    text-align: center;
    line-height: 25px;
    font-size: 16px;
    color: #fff;
    background: var(--sub-color);
    margin-left: 10px;
}

.form_table td.form_td textarea {
    width: 100%;
    resize: vertical;
    padding: 10px;
    border-radius: 0;
}


input[type="submit"] {
    display: block;
    width: 200px;
    line-height: 55px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    letter-spacing: .2em;
    text-indent: .2em;
    text-decoration: none;
    position: relative;
    background: var(--sub-color);
    color: #fff;
    border: solid 2px var(--sub-color);
    margin: 5.6rem auto 0;
}

.form_btn.submit_btn._btn {
    display: block;
    width: 200px;
    line-height: 55px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    letter-spacing: .2em;
    text-indent: .2em;
    text-decoration: none;
    position: relative;
    background: var(--sub-color);
    color: #fff;
    border: solid 2px var(--sub-color);
    margin: 5.6rem auto 0;
}

.mwform-checkbox-field label,
.mwform-radio-field label {
    font-weight: normal;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    margin-right: 20px;
}

.mw_wp_form input[type="file"] {
    padding: 5px 30px 5px 5px;
}

td.td_file {
    position: relative;
}

span.mwform-file-delete {
    position: absolute;
    top: 6%;
    right: 2%;
}

@media screen and (max-width: 1236px) {

    table.form_table tr {
        display: flex;
        flex-direction: column;
    }

    table.form_table th.form_th {
        margin: 0;
    }

    table.form_table td.form_td {
        width: 100%;
    }

    .mw_wp_form input[type="file"] {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {

    .form_btn.submit_btn._btn,
    input[type="submit"] {
        width: 100%;
        margin: 0;
        border-radius: 0;
    }

    .form_btn.submit_btn._btn {
        width: 100%;
        margin: 0;
        border-radius: 0;
    }

}

/* ------------------------------------------------------------------------------------
header.php
------------------------------------------------------------------------------------ */

#header-wrapper {
    width: 90%;
    margin: 0 auto 1%;
}

#header-wrapper .container {
    width: 100%;
    background: var(--bg-color);
}

#header-wrapper .header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header-wrapper .header__content .header__col {
    width: 100%;
}

#header-wrapper .header__content .header__col:first-child {
    margin: 10px 0;
}


#header-wrapper a.header_logo_link {
    display: flex;
    justify-content: left;
    align-items: center;
    width: fit-content;
}

#header-wrapper h1.header_logo_ttl {
    margin: 0 0 0 20px;
    font-weight: bold;
    color: #000;
}

#header-wrapper .col-xs-10.col-md-4.header__col img {
    width: 120px;
}


#global-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 30px 20px 15px;
    background: #fff;
    border-radius: 15px;
    position: fixed;
    width: 46.3%;
    top: 20px;
    margin: auto;
    z-index: 99;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.35);
}

#global-nav ul li {
    list-style: none;
    text-align: center;
    width: calc(88% / 6);
    margin: 0 1%;
    text-align: center;
    font-size: 15px;
}

#global-nav ul li a {
    color: #000;
    font-size: 15px;
}

#header-wrapper .header_sns_img {
    width: 40px;
    margin: 0 auto;
}

#global-nav .nav_contact a {
    display: block;
    text-align: center;
    letter-spacing: .1em;
    text-indent: .2em;
    text-decoration: none;
    position: relative;
    background: var(--sub-color);
    color: #fff;
    border: solid 2px var(--sub-color);
    padding: 3px 5px;
    font-weight: bold;
    margin-left: 20px;
    width: max-content;
}


#global-nav .nav_contact a:hover {
    background: #fff;
    color: var(--sub-color);
    opacity: 1;
    border: solid 2px var(--sub-color);
}


#global-nav .nav_contact .fa-envelope:before {
    margin-right: 10px;
}

@media screen and (max-width: 1236px) {

    #header-wrapper {
        width: 90%;
    }

    #header-wrapper .header_sns_img {
        width: 40px;
        padding: 20px 0;
    }

    #global-nav .nav_contact a {
        background: none;
        color: #000;
        border: none;
        margin: 0 auto;
    }

    #global-nav .nav_contact a:hover {
        background: none;
        color: #000;
        border: none;
        opacity: 0.5;
        text-decoration: none;
    }

    #global-nav ul {
        width: 90%;
    }
}

@media screen and (max-width: 768px) {

    #header-wrapper .container {
        padding: 0;
        margin: 10px 0;
    }

    #header-wrapper .header__content .header__col {
        width: 90%;
    }

    #header-wrapper .header__content .header__col:last-child {
        width: fit-content;
    }

    #header-wrapper h1.header_logo_ttl {
        margin: 0 0 0 10px;
        font-size: 18px;
    }

    #header-wrapper .col-xs-10.col-md-4.header__col img {
        width: 80px;
    }
}

/*--------------------------------------------------------------
 site-branding , page-header
--------------------------------------------------------------*/
.site-branding {
    padding: 20px 0;
    margin: 0 auto;
}

.site-branding a {
    font-size: 40px;
}

.site-branding__heading {
    font-size: 40px;
}

.page-header {
    width: 100%;
    background-image: url(../../uploads/2024/12/page-header.jpg);
    background-size: cover;
}

.page-header_ttl {
    text-align: center;
}


/* ------------------------------------------------------------------------------------
footer
------------------------------------------------------------------------------------ */

#footer_wrapper {
    background: #B7B7B7;
    border-radius: 80px 80px 0 0;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.35);
}

#footer_wrapper .footer_company_wrap {
    padding: 5% 0 20px;
}

#footer_wrapper .footer_company_img {
    width: 30%;
}

#footer_wrapper .footer_company_img img {
    border-radius: 50%;
}

#footer_wrapper .footer_company_contain {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    margin: 0 auto 5%;
}

#footer_wrapper .footer_company_box {
    width: 50%;
}

#footer_wrapper .footer_menu {
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 40%;
}

#footer_wrapper .footer_menu li {
    list-style: none;
}


#footer_wrapper .footer_menu li a {
    color: #000;
    line-height: 80px;
    font-size: 18px;
    font-weight: 500;
}

#footer_wrapper .footer_contact_ttl {
    font-size: 25px;
}

#footer_wrapper .footer_contact_address {
    font-size: 18px;
    line-height: 40px;
}

#footer_wrapper .footer_contact_address span {
    font-weight: bold;
}

#footer_wrapper .footer_contact_mail {
    overflow-wrap: anywhere;
}

#footer_wrapper .footer_contact {
    line-height: 40px;
}

#footer_wrapper .footer_contact th {
    font-size: 18px;
}

#footer_wrapper .footer_contact td {
    font-size: 18px;
    padding-left: 30px;
}

#footer_wrapper .footer_sns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin-top: -12px;
}

#footer_wrapper .btn-sns {
    display: block;
    position: relative;
    width: 60px;
    height: 60px;
    padding: 6px 12px;
    border-radius: 50%;
    color: rgba(255, 255, 255, 1);
    transition: 0.5s;
}

#footer_wrapper .btn-sns-instagram {
    background: rgba(255, 255, 255, 1);
    margin-bottom: 40px;
}

#footer_wrapper .btn-sns-instagram::after {
    position: absolute;
    top: 50%;
    left: 50%;
    font-weight: 400;
    font-size: 18px;
    transform: translate(-50%, -50%);
    content: url(/../../uploads/2024/08/instagram_logo.png);
}


#footer_wrapper .sns_copyright p {
    text-align: center;
}

@media screen and (max-width: 1236px) {
    #footer_wrapper .footer_bg {
        border-radius: 40px 40px 0 0;
    }

    #footer_wrapper .footer_menu {
        width: 100%;
        margin-bottom: 40px;
        border-top: solid #fff 1px;
        border-bottom: solid #fff 1px;
        padding: 40px 0;
        justify-content: flex-start;
    }

    #footer_wrapper .footer_menu ul {
        padding: 0;
    }

    #footer_wrapper .footer_menu ul:last-child {
        margin-left: 30px;
    }

    #footer_wrapper .footer_menu li a {
        font-size: 18px;
        line-height: 40px;
    }

    #footer_wrapper .footer_company_contain {
        flex-direction: column;
        width: 80%;
        margin: 0 auto 10%;
    }

    #footer_wrapper .footer_company_box {
        width: 100%;
        margin-bottom: 40px;
    }


    #footer_wrapper .footer_contact td {
        padding-left: 30px;
    }

    #footer_wrapper .footer_contact_address {
        line-height: 40px;
        margin-bottom: 40px;
        border-bottom: solid #fff 1px;
        padding-bottom: 40px;
    }

    #footer_wrapper .btn-sns {
        width: 70px;
        height: 70px;
        padding: 12px 15px 0;
    }
}

/* ------------------------------------------------------------------------------------
 breadcrumbs
------------------------------------------------------------------------------------ */

.breadcrumbs {
    margin: 20px auto 30px;
    font-size: 18px;
    width: 70%;
    color: #777;
}


@media screen and (max-width: 768px) {
    .breadcrumbs {
        width: 90%;
    }
}

/* ------------------------------------------------------------------------------------

404

------------------------------------------------------------------------------------ */
#error-wrapper {
    width: 80%;
    margin: 0 auto 10%;
    padding: 5%;
    background: #fff;
    border-radius: 20px;
}

h2.error_ttl {
    margin-bottom: 30px;
    text-align: left;
}

p.error_txt:first-child {
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {

    #error-wrapper {
        width: 90%;
    }

    h2.error_ttl {
        text-align: left;
    }
}

/* ------------------------------------------------------------------------------------

01. page-home

------------------------------------------------------------------------------------ */
/*--------------------------------------------------------------
 MV
--------------------------------------------------------------*/

#main-wrapper .mv {
    height: 85vh;
    width: 100%;
    position: relative;
}


@-webkit-keyframes mv_ttl {
    0% {
        left: 0;
        right: auto;
        width: 0;
    }

    50% {
        left: 0;
        right: auto;
        width: 100%;
    }

    51% {
        left: auto;
        right: 0;
        width: 100%;
    }

    100% {
        left: 0;
        right: 0;
        width: 100%;
    }
}

@keyframes mv_ttl {
    0% {
        left: 0;
        width: 0;
    }

    50% {
        left: 0;
        width: 100%;
    }

    51% {
        left: 0;
        width: 100%;
    }

    100% {
        left: 0;
        width: 100%;
    }
}

@-webkit-keyframes mv_ttl_span {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

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

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#main-wrapper .mv_ttl.move span {
    -webkit-animation: mv_ttl_span 0s ease .5s 1 normal forwards;
    animation: mv_ttl_span 0s ease .5s 1 normal forwards;
}

#main-wrapper .mv_ttl.move span::before {
    -webkit-animation: mv_ttl 2s ease 0s 1 normal forwards;
    animation: mv_ttl 2s ease 0s 1 normal forwards;
}

#main-wrapper .mv::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 85%;
    height: 85vh;
    border-radius: 0 40px 40px 0;
    background-image: url(../../uploads/2025/01/mv.jpeg);
    background-size: cover;
    background-position: bottom;
    vertical-align: middle;
}

#main-wrapper .mv_wrap {
    background: #fff;
    padding: 10px;
    border-radius: 20px;
    margin: 0 0 0 auto;
    z-index: 2;
    position: absolute;
    bottom: 20px;
    right: 10px;
}

#main-wrapper .mv_contain {
    background: #EEEEEE;
    padding: 30px 0;
    border-radius: 20px;
    width: 400px;
}

#main-wrapper p.mv_contact_txt {
    text-align: center;
    font-weight: bold;
    line-height: normal;
    margin-bottom: 20px;
}

#main-wrapper .mv_contact_txt span {
    font-size: 26px;
}

#main-wrapper .mv_contact_box {
    margin-bottom: 20px;
}

#main-wrapper .mv_contact_tel-btn_txt {
    text-align: center;
    font-size: 20px;
}

#main-wrapper .mv_contact_tel-btn {
    display: block;
    width: auto;
    line-height: 55px;
    font-size: 38px;
    text-align: center;
    letter-spacing: .1em;
    text-indent: .2em;
    text-decoration: none;
    position: relative;
    color: var(--main-color);
    margin: 0 auto;
    font-weight: bold;
}

#main-wrapper .mv_contact_tel-btn:hover {
    opacity: 0.5;
    color: var(--main-color);
}

#main-wrapper .mv_contact_contact-btn {
    display: block;
    width: fit-content;
    line-height: 55px;
    font-size: 18px;
    text-align: center;
    letter-spacing: .1em;
    text-indent: .2em;
    text-decoration: none;
    position: relative;
    background: var(--sub-color);
    color: #fff;
    border: solid 2px var(--sub-color);
    padding: 0 10%;
    font-weight: bold;
    margin: 0 auto;
}

#main-wrapper .mv_contact_contact-btn:hover {
    background: #fff;
    color: var(--sub-color);
    opacity: 1;
    border: solid 2px var(--sub-color);
}

#main-wrapper .mv_ttl_wrap {
    width: fit-content;
    margin: 0 0 0 auto;
    position: absolute;
    top: 12%;
    right: 20%;
}

#main-wrapper .mv_ttl {
    margin: 0;
}

#main-wrapper .mv_ttl span {
    position: relative;
    font-size: 40px;
    color: #fff;
    line-height: 1.8;
    padding: 0 0.5em;
}

#main-wrapper .mv_ttl span::before {
    content: "";
    position: absolute;
    display: inline-block;
    background-image: linear-gradient(90deg, rgba(255, 0, 59, 0.9), rgba(255, 188, 0, 0.9));
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    z-index: -1;
    transform: skew(-15deg);
}



@media screen and (max-width: 768px) {
    #main-wrapper .mv {
        height: 65vh;
        width: 90%;
        margin: 0 auto 20%;
    }

    #main-wrapper .mv::before {
        width: 100%;
        height: 65vh;
        border-radius: 20px;
    }

    #main-wrapper .mv_ttl span {
        font-size: 30px;
    }

    #main-wrapper .mv_ttl_wrap {
        top: 1%;
        right: 5%;
    }
}

/*--------------------------------------------------------------
 ABOUT
--------------------------------------------------------------*/

#main-wrapper .home-about {
    position: relative;
    padding-bottom: 10%;
}

#main-wrapper .home-about::before {
    content: "";
    position: absolute;
    border-color: transparent #D6D6D6 transparent transparent;
    border-style: solid;
    border-width: 300px 100vw 0 0;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
}

#main-wrapper .home-about_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 10% auto 0;
    padding: 5% 5%;
    background: #fff;
    border-radius: 20px;
}


#main-wrapper .home-about_wrap {
    width: calc(95% / 2);
}

#main-wrapper .home-about_wrap img {
    margin: 0 auto;
    width: 100%;
}

#main-wrapper .home-about_contain {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

#main-wrapper .home-about_question {
    position: relative;
    padding: 0.8rem 0 2rem;
    margin-bottom: 50px;
    border-bottom: 3px solid;
    color: #000;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
}

#main-wrapper .home-about_question:before,
#main-wrapper .home-about_question:after {
    position: absolute;
    top: 100%;
    left: 50%;
    content: "";
    height: 0;
    width: 0;
}

#main-wrapper .home-about_question:before {
    border: 14px solid;
    border-color: transparent;
    border-top-color: #000;
    margin-left: -14px;
}

#main-wrapper .home-about_question:after {
    border: 10px solid;
    border-color: transparent;
    border-top-color: #fff;
    margin-left: -10px;
}

#main-wrapper .home-about_caption01 {
    font-size: 20px;
    margin-right: 15%;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: center;
}

#main-wrapper .home-about_caption02_pc {
    position: relative;
    margin: 0 10px 0 0;
    padding: 20px 10px;
    width: fit-content;
    color: #fff;
    background: var(--sub-color);
    font-weight: bold
}

#main-wrapper .home-about_caption02_pc::before {
    content: "";
    position: absolute;
    top: 85%;
    left: 90%;
    margin-top: -15px;
    border: 10px solid transparent;
    border-left: 20px solid var(--sub-color);
}

#main-wrapper .home-about_caption03 {
    width: 78%;
    font-size: 30px;
    font-weight: bold;
    margin: 0;
    line-height: 50px;
}

#main-wrapper .home-about_caption03 span {
    background: var(--main-color);
    color: #fff;
    padding: 5px 10px;
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 0;
}

#main-wrapper .home-about_caption03 br {
    display: block;
    content: "";
    margin: 20px 0;
}

#main-wrapper .home-about_txt {
    text-align: left;
}

@media screen and (max-width: 1393px) {

    #main-wrapper .home-about {
        padding: 8% 0 15%;
        flex-direction: column;
        width: 90%;
        margin: 0 auto 20%;
    }

    #main-wrapper .home-about_wrap {
        width: 100%;
    }

    #main-wrapper .home-about_inner {
        display: block;
        width: 100%;
    }

    #main-wrapper .home-about_contain {
        flex-direction: column;
        width: fit-content;
        margin: 0 auto 40px;
    }

    #main-wrapper .home-about_caption01 {
        margin-right: 0;
    }

    #main-wrapper .home-about_caption02_pc {
        display: none;
    }

    #main-wrapper .home-about_caption02_sp {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
        padding: 10px 0 5px;
        width: fit-content;
        margin: 0 auto 0 0;
    }

    #main-wrapper .home-about_caption02_sp div {
        font-weight: bold;
    }

    #main-wrapper .home-about_caption02_sp::before {
        content: "";
        width: 25px;
        height: 2px;
        transform: rotate(60deg);
        box-sizing: border-box;
        background-color: var(--sub-color);
    }

    #main-wrapper .home-about_caption02_sp::after {
        content: "";
        width: 25px;
        height: 2px;
        transform: rotate(-60deg);
        box-sizing: border-box;
        background-color: var(--sub-color);
    }

    #main-wrapper p.home-about_caption03 {
        width: fit-content;
        font-size: 35px;
        margin: 0 auto 0 0;
    }

    #main-wrapper p.home-about_caption03 br {
        margin: 0;
    }

    #main-wrapper p.home-about_txt {
        text-align: left;
        margin-bottom: 40px;
    }
}

/*--------------------------------------------------------------
 SERVICE
--------------------------------------------------------------*/
#main-wrapper .home-service {
    width: 80%;
    margin: 10% auto;
    padding: 10% 5% 5%;
    background: #fff;
    border-radius: 20px;
    position: relative;
    z-index: 0;
}

#main-wrapper .home-service_ttl {
    text-align: center;
    position: absolute;
    top: -50px;
    left: 0;
    margin: 0 auto;
    width: 100%;
    font-weight: bold;
    font-size: 50px;
    color: #fff;
    letter-spacing: 0.5rem;
}

#main-wrapper .home-service_ttl::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translateY(-50%) translateX(-50%) skew(-15deg);
    -webkit-transform: translateY(-50%) translateX(-50%) skew(-15deg);
    color: #fff;
    background-image: -webkit-gradient(linear, left top, right top, from(#FF003B), to(#FFBC00));
    background-image: -webkit-linear-gradient(left, #FF003B 0%, #FFBC00 100%);
    background-image: linear-gradient(to right, #FF003B 0%, #FFBC00 100%);
    width: 30%;
    height: 7rem;
}

#main-wrapper .home-service_ttl::after {
    content: "事業案内";
    position: absolute;
    bottom: -50px;
    text-align: center;
    left: 0;
    margin: 0 auto;
    width: 100%;
    font-size: 25px;
    color: #000;
}

#main-wrapper .home-service_contain {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

#main-wrapper .home-service_box {
    width: calc(95% / 3);
}

#main-wrapper .home-service_box_img img {
    margin-bottom: 20px;
    width: 100%;
    height: 300px;
}

#main-wrapper .home-service_box_ttl {
    font-size: 20px;
    margin-bottom: 20px;
}

#main-wrapper .home-service a.button {
    margin: 5% auto 0;
}


@media screen and (max-width: 1236px) {
    #main-wrapper .home-service {
        width: 90%;
        margin-bottom: 20%;
    }

    #main-wrapper .home-service_ttl {
        top: -40px;
    }

    #main-wrapper .home-service_ttl::before {
        width: 70%;
    }

    #main-wrapper .home-service_box:last-child {
        margin-bottom: 0;
    }

    #main-wrapper .home-service_box_img img {
        margin-bottom: 10px
    }

    #main-wrapper .home-service_box_ttl {
        margin: 0 0 10px;
    }
}

@media screen and (max-width: 768px) {
    #main-wrapper section.home-service {
        padding: 30% 0 15%;
    }

    #main-wrapper .home-service_contain {
        flex-direction: column;
    }

    #main-wrapper .home-service_box {
        width: 90%;
        margin: 0 auto 10%;
    }

}


/*--------------------------------------------------------------
 RECRUIT
--------------------------------------------------------------*/
#main-wrapper .home-recruit {
    width: 100%;
    margin: 0 auto 10%;
    padding: 10% 0;
    background-image: url(../../uploads/2024/12/home-recruit_img.jpg);
    position: relative;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: cover;
}

#main-wrapper .home-recruit::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .6);
    z-index: -1;
}


#main-wrapper .home-recruit_ttl {
    text-align: center;
    position: absolute;
    top: -50px;
    left: 0;
    margin: 0 auto;
    width: 100%;
    font-weight: bold;
    font-size: 50px;
    color: #fff;
    letter-spacing: 0.5rem;
}

#main-wrapper .home-recruit_ttl::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translateY(-50%) translateX(-50%) skew(-15deg);
    -webkit-transform: translateY(-50%) translateX(-50%) skew(-15deg);
    color: #fff;
    background-image: -webkit-gradient(linear, left top, right top, from(#FF003B), to(#FFBC00));
    background-image: -webkit-linear-gradient(left, #FF003B 0%, #FFBC00 100%);
    background-image: linear-gradient(to right, #FF003B 0%, #FFBC00 100%);
    width: 30%;
    height: 7rem;
}

#main-wrapper .home-recruit_ttl::after {
    content: "採用情報";
    position: absolute;
    bottom: -50px;
    text-align: center;
    left: 0;
    margin: 0 auto;
    width: 100%;
    font-size: 25px;
    color: #000;
}

#main-wrapper .home-recruit_wrap {
    text-align: center;
    width: 80%;
    margin: 0 auto;
}

#main-wrapper .home-recruit_caption {
    font-size: 30px;
    margin-bottom: 40px;
}


#main-wrapper .home-recruit_wrap .button {
    margin: 10% auto 0;
}

@media screen and (max-width: 768px) {
    #main-wrapper .home-recruit {
        width: 100%;
        padding: 30% 0 15%;
        margin-bottom: 20%;
    }

    #main-wrapper .home-recruit_ttl {
        top: -40px;
    }

    #main-wrapper .home-recruit_ttl::before {
        width: 70%;
    }

    #main-wrapper .home-recruit_caption {
        width: 90%;
        margin: 0 auto 40px;
        font-size: 20px;
    }

    #main-wrapper .home-recruit_txt {
        width: 90%;
        margin: 0 auto 40px;
    }

}

/*--------------------------------------------------------------
 COMPANY
--------------------------------------------------------------*/
#main-wrapper section.home-company {
    width: 80%;
    margin: 0 auto 10%;
    padding: 10% 5% 5%;
    background: #fff;
    border-radius: 20px;
    position: relative;
    z-index: 0;
}


#main-wrapper h2.home-company_ttl {
    text-align: center;
    position: absolute;
    top: -50px;
    left: 0;
    margin: 0 auto;
    width: 100%;
    font-weight: bold;
    font-size: 50px;
    color: #fff;
    letter-spacing: 0.5rem;
}

#main-wrapper h2.home-company_ttl::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translateY(-50%) translateX(-50%) skew(-15deg);
    -webkit-transform: translateY(-50%) translateX(-50%) skew(-15deg);
    color: #fff;
    background-image: -webkit-gradient(linear, left top, right top, from(#FF003B), to(#FFBC00));
    background-image: -webkit-linear-gradient(left, #FF003B 0%, #FFBC00 100%);
    background-image: linear-gradient(to right, #FF003B 0%, #FFBC00 100%);
    width: 30%;
    height: 7rem;
}

#main-wrapper h2.home-company_ttl::after {
    content: "会社情報";
    position: absolute;
    bottom: -50px;
    text-align: center;
    left: 0;
    margin: 0 auto;
    width: 100%;
    font-size: 25px;
    color: #000;
}

#main-wrapper .home-company-greeting_contain {
    margin-bottom: 40px;
}

#main-wrapper .home-company-access_contain {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

#main-wrapper .home-company-access_box {
    width: calc(95%/2);
    margin: 0 auto;
}

#main-wrapper .home-company-access_box img {
    width: 100%;
}

#main-wrapper p.home-company-access_box_name {
    bottom: 0;
    margin-top: 20px;
}

#main-wrapper .home-company-access_contain iframe {
    width: calc(100%/2);
}

#main-wrapper p.home-company-access_subttl {
    width: fit-content;
    background: #707070;
    color: #fff;
    padding: 0 10px;
    font-size: 20px;
}

#main-wrapper p.home-company-access_name {
    font-size: 25px;
}

#main-wrapper p.home-company-access_address {
    line-height: 50px;
}

#main-wrapper section.home-company a.button {
    margin: 10% auto 0;
}


@media screen and (max-width: 1236px) {

    #main-wrapper section.home-company {
        width: 90%;
        margin-bottom: 20%;
    }


    #main-wrapper h2.home-company_ttl {
        top: -40px;
    }

    #main-wrapper h2.home-company_ttl::before {
        width: 70%;
    }

    #main-wrapper .home-company-greeting_contain {
        width: 90%;
        margin: 0 auto 40px;
    }

    #main-wrapper .home-company-access_contain {
        flex-direction: column;
    }

    #main-wrapper .home-company-access_box {
        width: 90%;
        margin: 0 auto;
    }

    #main-wrapper p.home-company-access_box_txt {
        line-height: 30px;
        margin-bottom: 40px;
    }

    #main-wrapper p.home-company-access_box_name {
        position: static;
        margin-bottom: 40px;
    }

    #main-wrapper .home-company-access_contain iframe {
        width: 90%;
        margin: 0 auto;
    }

    #main-wrapper p.home-company-access_address {
        line-height: 30px;
        margin-bottom: 40px;
    }

}

@media screen and (max-width: 768px) {
    #main-wrapper section.home-company {
        padding: 30% 0 15%;
    }
}

/*--------------------------------------------------------------
 CONTACT
--------------------------------------------------------------*/
#main-wrapper section.home-contact {
    width: 80%;
    margin: 0 auto 10%;
    padding: 8% 5%;
    background: var(--main-color);
    border-radius: 20px;
    position: relative;
}


#main-wrapper h2.home-contact_ttl {
    text-align: center;
    position: absolute;
    top: -50px;
    left: 0;
    margin: 0 auto;
    width: 100%;
    font-weight: bold;
    font-size: 50px;
    color: #000;
}

#main-wrapper h2.home-contact_ttl::after {
    content: "お問い合わせ";
    position: absolute;
    bottom: -50px;
    text-align: center;
    left: 0;
    margin: 0 auto;
    width: 100%;
    font-size: 25px;
    color: #000;
}

#main-wrapper h4.home-contact_caption {
    text-align: center;
    font-size: 30px;
    margin-bottom: 40px;
    font-weight: normal;
}

#main-wrapper p.home-contact_subttl {
    text-align: center;
    margin-bottom: 40px;
}


#main-wrapper .home-contact_btn_contain {
    /*display: flex;
    justify-content: space-between;
    align-items: start;
    width: 80%;*/
    margin: 0 auto 40px;
    width: fit-content;
}

#main-wrapper .home-contact_box {
    width: calc(95%/2);
    margin: 0 auto;
}

#main-wrapper .home-contact_tel-btn {
    display: block;
    width: 100%;
    line-height: 40px;
    font-size: 25px;
    text-align: center;
    letter-spacing: .1em;
    text-indent: .2em;
    text-decoration: none;
    position: relative;
    background: #1D1D1D;
    color: #fff;
    border: solid 2px #1D1D1D;
    margin: 0 auto;
    padding: 15px 20px;
    font-weight: bold;
}

#main-wrapper a.home-contact_tel-btn:hover {
    background: #fff;
    color: #1D1D1D;
    opacity: 1;
    border: solid 2px #1D1D1D;
}

#main-wrapper .home-contact_tel-btn .fa-solid {
    margin-right: 10px;
}

#main-wrapper p.home-contact_tel-btn_txt {
    text-align: center;
    margin-top: 20px;
}

#main-wrapper .home-contact_contact-btn {
    display: block;
    /*width: calc(96%/2);*/
    line-height: 40px;
    text-align: center;
    letter-spacing: .1em;
    text-indent: .2em;
    text-decoration: none;
    position: relative;
    background: var(--sub-color);
    color: #fff;
    border: solid 2px var(--sub-color);
    padding: 15px 20px;
    font-weight: bold;
    width: auto;
}


#main-wrapper a.home-contact_contact-btn:hover {
    background: #fff;
    color: var(--sub-color);
    opacity: 1;
    border: solid 2px var(--sub-color);
}

#main-wrapper .home-contact_contact-btn .fa-envelope:before {
    margin-right: 10px;
}

#main-wrapper p.home-contact_area_subttl {
    width: fit-content;
    background: #707070;
    color: #fff;
    padding: 5px 10px;
    font-size: 20px;
    margin: 0 auto 10px;
}

#main-wrapper .home-contact_area_contain {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    width: 70%;
    margin: 0 auto;
}

#main-wrapper p.home-contact_area_txt {
    text-align: center;
}


@media screen and (max-width: 1236px) {

    #main-wrapper section.home-contact {
        width: 90%;
        margin-bottom: 20%;
    }

    #main-wrapper h2.home-contact_ttl {
        top: -40px;
    }


    #main-wrapper p.home-contact_subttl {
        text-align: left;
        margin-bottom: 40px;
    }

    #main-wrapper h4.home-contact_caption {
        font-size: 25px;
    }

    #main-wrapper .home-contact_wrap {
        width: 90%;
        margin: 0 auto;
    }

    #main-wrapper .home-contact_btn_contain {
        flex-direction: column;
        width: 100%;
    }

    #main-wrapper .home-contact_box {
        margin-bottom: 20px;
        width: 90%;
    }

    #main-wrapper .home-contact_tel-btn {
        display: block;
        width: 100%;
        line-height: inherit;
    }


    #main-wrapper p.home-contact_tel-btn_txt {
        text-align: center;
        margin-top: 10px;
    }

    #main-wrapper .home-contact_contact-btn {
        display: block;
        margin: 0 auto;
        line-height: inherit;
        /*width: 90%;*/
        width: fit-content;
    }

    #main-wrapper .home-contact_area_contain {
        width: 100%;
    }


    #main-wrapper p.home-contact_area_txt {
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    #main-wrapper section.home-contact {
        padding: 150px 0 15%;
    }
}



/* ------------------------------------------------------------------------------------

02. page-service

------------------------------------------------------------------------------------ */

#service-wrapper .service {
    padding: 5% 0;
}

#service-wrapper .service_inner {
    width: 80%;
    margin: 0 auto;
    padding: 5%;
    background: #fff;
    border-radius: 20px;
}

#service-wrapper .service:nth-of-type(2) {
    position: relative;
}

#service-wrapper .service:nth-of-type(2)::before {
    content: "";
    position: absolute;
    border-color: transparent transparent transparent #D6D6D6;
    border-style: solid;
    border-width: 300px 0 0 100vw;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
}

#service-wrapper .service .service_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

#service-wrapper .service .service_ttl {
    position: relative;
    padding: 1.5rem;
}

#service-wrapper .service .service_ttl::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 90%;
    border-radius: 3px;
    background: linear-gradient(to bottom, #FF003B 0%, #FFBC00 100%);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}


#service-wrapper .service .service_img {
    width: calc(90%/2);
}

#service-wrapper .service_img img {
    width: 100%;
    height: 300px;
}

#service-wrapper .service .service_txt {
    width: calc(90% / 2);
}

@media screen and (max-width: 768px) {
    #service-wrapper .service .service_wrap {
        flex-direction: column;
    }

    #service-wrapper .service_inner {
        width: 90%;
    }

    #service-wrapper .service .service_img {
        width: 100%;
    }

    #service-wrapper .service .service_img img {
        width: -webkit-fill-available;
    }

    #service-wrapper .service .service_txt {
        width: 100%;
    }


}


/* ------------------------------------------------------------------------------------

03. page-recruit

------------------------------------------------------------------------------------ */

/*--------------------------------------------------------------
 recruit-flow
--------------------------------------------------------------*/

.recruit-flow {
    width: 80%;
    margin: 0 auto 10%;
    padding: 5% 5%;
    background: #fff;
    border-radius: 20px;
}

.recruit-flow_wrap {
    margin: 0 auto;
    width: 100%;
}

.recruit_ttl {
    position: relative;
    padding: 1.5rem;
}

.recruit_ttl::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 90%;
    border-radius: 3px;
    background: linear-gradient(to bottom, #FF003B 0%, #FFBC00 100%);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.recruit-flow_contain {
    text-align: center;
    color: #fff;
    background: var(--main-color);
    margin-bottom: 40px;
    padding: 0.2px 0px;
    font-weight: bold;
    position: relative;
}

.recruit-flow_contain::after {
    position: absolute;
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border: 4px solid;
    border-color: transparent transparent var(--main-color) var(--main-color);
    transform: rotate(-45deg);
    position: absolute;
    bottom: -20px;
    right: 48%;
}

.recruit-flow_contain:last-child::after {
    content: none;
}

.recruit-flow_caption {
    width: auto;
    text-align: left;
    margin-left: 15px;
    color: #fff;
    font-weight: bold;
    padding: 10px 0 5px;
}

.recruit-flow_txt {
    text-align: left;
    color: #000;
    background: #fff;
    padding: 10PX;
    font-weight: normal;
    margin: 3px;
}

@media screen and (max-width: 1236px) {
    .recruit-flow {
        width: 90%;
    }

}

/*--------------------------------------------------------------
 recruit-job
--------------------------------------------------------------*/

section.recruit-job {
    width: 80%;
    margin: 0 auto 10%;
    padding: 5% 5%;
    background: #fff;
    border-radius: 20px;
}

.recruit-job_wrap {
    margin-bottom: 40px;
}

.recruit-job_wrap:last-of-type {
    margin-bottom: 0;
}

table.recruit-job_table {
    width: 100%;
    margin: 0 auto;
}

table.recruit-job_table th {
    color: #fff;
    border: 1px solid #383838;
    border-bottom: 1px solid #fff;
    background: #383838;
    width: 30%;
    padding: 10px 15px;
    text-align: center;
    font-weight: normal;
}

table.recruit-job_table tr:last-child th {
    border-bottom: 1px solid #383838;
}

table.recruit-job_table td {
    border: 1px solid #383838;
    background: #fff;
    padding: 10px 15px;
    text-align: center;
}

table.recruit-job_table td br {
    margin: 0 0 5px 0;
}

@media screen and (max-width: 1236px) {

    section.recruit-job {
        width: 90%;
    }

    table.recruit-job_table {
        width: 100%;
        font-size: 16px;
        margin-bottom: 0;
        flex-direction: column;
    }

    table.recruit-job_table tr {
        display: flex;
        flex-direction: column;
    }

    table.recruit-job_table th {
        border-bottom: none;
        width: 100%;
    }

    table.recruit-job_table:nth-child(1) tr:last-child th {
        border-bottom: 1px solid #fff;
    }

    table.recruit-job_table:nth-child(2) tr:first-child td {
        border-top: none;
    }
}

/*--------------------------------------------------------------
 recruit-form
--------------------------------------------------------------*/

section.recruit-form {
    width: 80%;
    margin: 0 auto 10%;
    padding: 5%;
    background: #fff;
    border-radius: 20px;
}

@media screen and (max-width: 1236px) {

    section.recruit-form {
        width: 90%;
    }

}

/* ------------------------------------------------------------------------------------

04. page-recruit_confirm

------------------------------------------------------------------------------------ */
section.recruit-confirm {
    width: 70%;
    margin: 0 auto 10%;
    padding: 5% 5%;
    background: #fff;
    border-radius: 20px;
}

section.recruit-confirm .form_table tr {
    width: 80%;
}

section.recruit-confirm .btn_unit_area {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 2rem auto;
}

section.recruit-confirm .form_table td.form_td-radio {
    flex-direction: column;
}

@media screen and (max-width: 1236px) {

    section.recruit-confirm {
        width: 90%;
    }

    section.recruit-confirm .form_table tr {
        width: 100%;
    }

}

/* ------------------------------------------------------------------------------------

05. page-recruit_complete

------------------------------------------------------------------------------------ */
section.recruit-complete {
    width: 70%;
    margin: 0 auto 10%;
    padding: 5% 5%;
    background: #fff;
    border-radius: 20px;
}

section.recruit-complete table.form_table td.form_td-radio {
    flex-direction: column;
}

@media screen and (max-width: 1236px) {
    section.recruit-complete {
        width: 90%;
    }

}

/* ------------------------------------------------------------------------------------

06. page-company

------------------------------------------------------------------------------------ */

/*--------------------------------------------------------------
 company-message
--------------------------------------------------------------*/
#company-wrapper .company-message {
    width: 80%;
    margin: 0 auto 10%;
    padding: 5%;
    background: #fff;
    border-radius: 20px;
}

#company-wrapper .company_ttl {
    position: relative;
    padding: 1.5rem;
}

#company-wrapper .company_ttl::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 90%;
    border-radius: 3px;
    background: linear-gradient(to bottom, #FF003B 0%, #FFBC00 100%);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

#company-wrapper .company-message_contain {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

#company-wrapper .company-message_box {
    width: calc(95% / 2);
}

@media screen and (max-width: 768px) {
    #company-wrapper .company-message {
        width: 90%;
    }
}

/*--------------------------------------------------------------
 company-about
--------------------------------------------------------------*/

#company-wrapper .company-about {
    position: relative;
    padding-bottom: 5%;
}

#company-wrapper .company-about::before {
    content: "";
    position: absolute;
    border-color: transparent transparent transparent #D6D6D6;
    border-style: solid;
    border-width: 300px 0 0 100vw;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
}

#company-wrapper .company-about_inner {
    width: 80%;
    margin: 0 auto;
    padding: 5%;
    background: #fff;
    border-radius: 20px;
}

#company-wrapper .company-about_table {
    width: 100%;
    margin: 0 auto;
}

#company-wrapper .company-about_table th {
    color: #fff;
    border: 1px solid var(--main-color);
    border-bottom: 1px solid #fff;
    background: var(--main-color);
    width: 30%;
    padding: 10px 15px;
    text-align: center;
}

#company-wrapper .company-about_table tr:last-child th {
    border-bottom: 1px solid var(--main-color);
}

#company-wrapper .company-about_table td {
    border: 1px solid var(--main-color);
    background: #fff;
    padding: 10px 15px;
    text-align: left;
}

#company-wrapper .company-about_table td br {
    margin: 0 0 5px 0;
}

@media screen and (max-width: 768px) {
    #company-wrapper .company-about_inner {
        width: 90%;
    }

    #company-wrapper .company-message {
        width: 90%;
    }

    #company-wrapper .company-message_contain {
        flex-direction: column;
    }

    #company-wrapper .company-message_box {
        width: 100%;
    }

    #company-wrapper .company-about_table {
        width: 100%;
        font-size: 16px;
        flex-direction: column;
        margin-bottom: 0;
    }

    #company-wrapper .company-about_table tr {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    #company-wrapper .company-about_table th {
        width: 100%;
        border-bottom: none;
    }

    #company-wrapper .company-about_table td {
        width: 100%;
    }

    #company-wrapper .company-about_table:nth-child(1) tr:last-child th {
        border-bottom: 1px solid #fff;
    }

    #company-wrapper .company-about_table:nth-child(2) tr:first-child th {
        border-top: none;
    }
}

/*--------------------------------------------------------------
 .company-access
--------------------------------------------------------------*/

#company-wrapper .company-access {
    width: 80%;
    margin: 5% auto 10%;
    padding: 5%;
    background: #fff;
    border-radius: 20px;
}

#company-wrapper .company-access_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

#company-wrapper .company-access_subttl {
    width: fit-content;
    background: #707070;
    color: #fff;
    padding: 0 10px;
    font-size: 20px;
}


@media screen and (max-width: 768px) {
    #company-wrapper .company-access {
        width: 90%;
    }

    #company-wrapper .company-access_wrap {
        flex-direction: column;
    }
}

/* ------------------------------------------------------------------------------------

07. page-contact

------------------------------------------------------------------------------------ */

#contact-wrapper .contact {
    width: 80%;
    margin: 0 auto 10%;
    padding: 5%;
    background: #fff;
    border-radius: 20px;
}

@media screen and (max-width: 768px) {

    section.contact-confirm {
        width: 90%;
    }

}

/* ------------------------------------------------------------------------------------

08. page-contact_confirm

------------------------------------------------------------------------------------ */
section.contact-confirm {
    width: 70%;
    margin: 0 auto 10%;
    padding: 5% 5%;
    background: #fff;
    border-radius: 20px;
}

section.contact-confirm .form_table tr {
    width: 80%;
}

section.contact-confirm .btn_unit_area {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 2rem auto;
}

section.contact-confirm .form_table td.form_td-radio {
    flex-direction: column;
}

@media screen and (max-width: 1236px) {

    section.contact-confirm {
        width: 90%;
    }

    section.contact-confirm .form_table tr {
        width: 100%;
    }

}

/* ------------------------------------------------------------------------------------

09. page-contact_complete

------------------------------------------------------------------------------------ */

section.contact-complete {
    width: 70%;
    margin: 0 auto 10%;
    padding: 5% 5%;
    background: #fff;
    border-radius: 20px;
}


@media screen and (max-width: 1236px) {

    section.contact-complete {
        width: 90%;
    }

}

/* ------------------------------------------------------------------------------------

10. page-privacy

------------------------------------------------------------------------------------ */

/*--------------------------------------------------------------
 個人情報保護方針
--------------------------------------------------------------*/

.privacy_main {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 0;
    z-index: -2;
    height: 100vh;
}

.privacy_main_ttl {
    width: 100%;
    text-align: center;
    font-size: 55px;
    padding: 250px 0 200px;
    color: #fff;
    z-index: 1;
    line-height: 55px;
    letter-spacing: 10px;
    text-shadow: 1px 3px 3px #000;
}

.privacy_main_ttl span {
    font-size: 40px;
    letter-spacing: 1px;
}

section.privacy {
    width: 70%;
    margin: 0 auto 10%;
    padding: 5% 5%;
    background: #fff;
    border-radius: 20px;
}

.privacy_wrap {
    margin-bottom: 5%;
}

.privacy_wrap:last-of-type {
    margin-bottom: 10%;
}

.privacy_no {
    display: flex;
    justify-content: left;
    align-items: baseline;
    margin-bottom: 20px;
}

.privacy_no h2 {
    font-size: 25px;
    margin-bottom: 0;
}

.privacy_no p {
    font-size: 25px;
    font-weight: 700;
    margin-top: 23px;
    margin-bottom: 0;
}

.privacy_contain {
    padding-left: 50px;
}

.privacy_contain p br {
    margin: 0 0 10px;
}

.privacy_contain ul {
    padding-left: 0px;
}

.privacy_contain li {
    list-style: none;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {

    .privacy_main_ttl {
        padding: 150px 0;
        font-size: 40px;
    }

    section.privacy {
        width: 90%;
    }

    .privacy_no h2,
    .privacy_no p {
        font-size: 20px;

    }

    .privacy_contain p,
    .privacy_contain li {
        font-size: 16px;
    }

    .privacy_contain {
        padding-left: 35px;
    }

}