/* ----------------------------------------- */
/* ホーム専用スタイル */
/* ----------------------------------------- */

/* ----------------------------------------- */
/* ヘッダー ホーム専用 start */
/* ----------------------------------------- */
/* メッセージ*/
.top_img {
    width: 100vw;
    height: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.top_phone_img {
    /* width: 100%;
    height: 810px;
    min-height: 810px;
    margin: 0;
    padding: 0; */

    width: 100vw;
    height: 100%;
    background-size: cover; /* 画像が画面全体に広がる */
    background-position: center; /* 画像が中央に位置する */
    background-repeat: no-repeat; /* 画像が繰り返されないようにする */
}

#header_title {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#header_title p {
    font-size: 5.5vw;
    font-weight: bold;
    text-shadow: 5px 5px 3px white;
    color: black;
}

#header_subtitle {
    position: absolute;
    top: 55%;
    left: 55%;
    transform: translate(-55%, -55%);
}

#header_subtitle p {
    font-size: 3.4vw;
    font-weight: bold;
    width: 100vw;
    text-align: center;
    text-shadow: 5px 5px 3px white;
    color: black;
}

@media screen and (max-width:600px) {
    #header_title p {
        font-size: 12.5vw;
    }

    #header_subtitle p {
        font-size: 6.0vw;
    }
    #header_subtitle {
        position: absolute;
        top: 60%;
        left: 60%;
        transform: translate(-60%, -60%);
    }
}

/* ボトム部分 */
#header_bottom {
    width: 100%;
    height: 5.5vw;
    top: 100%;
    transform: translateY(-100%);
    position: absolute;
    background: rgba(77, 77, 77, 0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

#header_bottom_content {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

#header_bottom_text {
    margin-right: 3%;
}

#header_bottom_text p {
    font-size: 1.3vw;
}

@media screen and (max-width:600px) {
    #header_bottom {
        top: 100%;
        transform: translateY(-100%);
        position: absolute;
        background: rgba(77, 77, 77, 0.7);
        height: 23vw;
    }

    #header_bottom_text p {
        font-size: 3vw;
    }
}

/* ボタン */
#header_bottom_button {
    width: 12vw;
    height: 3.5vw;
    background-color: #FFE55E;
    color: black;
    text-align: center;
    vertical-align: middle;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#header_bottom_button:hover {
    background-color: #a2913e;
    margin-top: 5px;
}

#header_bottom_button p {
    font-size: 1.4vw;
    font-weight: 500;
    margin-right: 3%;
}

#header_bottom_button img {
    width: 2vw;
    height: 2vw;
}

@media screen and (max-width:600px) {
    #header_bottom_button {
        width: 24vw;
        height: 10.5vw;
    }

    #header_bottom_button p {
        font-size: 3vw;
    }

    #header_bottom_button img {
        width: 3vw;
        height: 3vw;
    }
}

/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */
/* ヘッダー ホーム専用 end */
/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */


/* ----------------------------------------- */
/* ホーム start */
/* ----------------------------------------- */
/* 共通 */
.home_section_title {
    color: black;
    font-size: 3.5vw;
    font-weight: 800;
    text-align: center;
    line-height: 3.8vw;
}

@media screen and (max-width:600px) {
    .home_section_title {
        font-size: 6.0vw;
        line-height: 6.3vw;
    }
}

.home_section_subtitle {
    color: black;
    font-size: 1.5vw;
    font-weight: 500;
    text-align: center;
}

@media screen and (max-width:600px) {
    .home_section_subtitle {
        font-size: 3.0vw;
    }
}

/* 会社概要 タイトル部 */
#section_company {
    width: 100%;
    height: auto;
    box-shadow: 2px 2px 10px gray;
    padding-top: 5vh;
}

@media screen and (max-width:600px) {
    #section_company {
        padding-top: 3vw;
    }
}

#section_company_header {
    width: 100%;
    height: 12vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background-color: #CEF7FF; */
}

@media screen and (max-width:600px) {
    #section_company_header {
        height: 20vw;
    }
}

/* 会社概要 コンテンツ */
#section_company_content {
    width: 100%;
    height: 40vw;
    background-color: white;
    display: flex;
}

@media screen and (max-width:600px) {
    #section_company_content {
        height: auto;
        flex-direction: column;
    }
}

#section_company_content_img_area {
    width: 50%;
}

@media screen and (max-width:600px) {
    #section_company_content_img_area {
        width: 100%;
    }
}

#section_company_content_img_area img {
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%;
    height: 40vw;
}

#section_company_content_text_area {
    width: 50%;
    height: 100%;
    color: black;
    display: flex;
    align-items: center;
}

@media screen and (max-width:600px) {
    #section_company_content_text_area {
        width: 100vw;
    }
    #section_company_content_img_area img {
        height: 60vw;
    }
}

#section_company_content_text_container {
    width: 90%;
    height: auto;
    margin: 0 auto;
    vertical-align: middle;
}

@media screen and (max-width:600px) {
    #section_company_content_text_container {
        width: 80%;
        margin-top: 3vw;
    }
}

#section_company_text_title {
    font-size: 2.3vw;
    font-weight: 500;
    margin-bottom: 2vh;
}

@media screen and (max-width:600px) {
    #section_company_text_title {
        font-size: 5.5vw;
        margin-bottom: 2.5vw;
    }
}

#section_company_text1 {
    font-size: 1.7vw;
    margin-bottom: 2vh;
}

#section_company_text2 {
    font-size: 0.9vw;
    margin-bottom: 2vh;
}

@media screen and (max-width:600px) {
    #section_company_text1 {
        font-size: 3.0vw;
        margin-bottom: 2.5vw;
    }

    #section_company_text2 {
        font-size: 1.9vw;
        padding-bottom: 4.5vw;
    }
}

/* ホーム サービス */
#section_service {
    width: 100%;
    height: auto;
    padding-top: 5vh;
}

@media screen and (max-width:600px) {
    #section_service {
        padding-top: 3vw;
    }
}

#section_service_header {
    width: 100%;
    height: 12vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:600px) {
    #section_service_header {
        height: 20vw;
    }
}

#section_service_content {
    width: 100%;
    height: 30vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:600px) {
    #section_service_content {
        justify-content: start;
        width: auto;
        height: 55vw;
        padding-top: 1.5vw;
    }
}

#section_service_content .container {
    width: 80%;
    height: 100%;
    display: flex;
    justify-content: space-between;
}

#section_service_content .service_card {
    width: 30%;
    height: 90%;
    box-shadow: 1px 1px 3px grey;
    background-color: white;
    color: black;
}

@media screen and (max-width:600px) {
    #section_service_content .container {
        width: 100%;
        height: 55vw;
        overflow: hidden;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        /*スクロールバー非表示（IE・Edge）*/
        -ms-overflow-style: none;
        /*スクロールバー非表示（Firefox）*/
        scrollbar-width: none;
    }

    /*スクロールバー非表示（Chrome・Safari）*/
    #section_service_content .container::-webkit-scrollbar {
        display: none;
    }


    #section_service_content .service_card {
        width: 140vw;
        height: 50vw;
        margin-left: 5vw;
    }

    #section_service_content .service_card:nth-child(3) {
        margin-right: 5vw;
    }
}

#section_service_content .service_card img {
    width: 100%;
    height: 57%;
}

@media screen and (max-width:600px) {
    #section_service_content .service_card img {
        height: 60%;
    }
}

#section_service_content .service_card .service_card_title {
    text-align: center;
    font-size: 1.5vw;
    font-weight: 700;
    margin: 4% 0;
}

@media screen and (max-width:600px) {
    #section_service_content .service_card .service_card_title {
        font-size: 2.8vw;
    }
}

#section_service_content .service_card .service_card_text {
    text-align: center;
    font-size: 0.9vw;
}

@media screen and (max-width:600px) {
    #section_service_content .service_card .service_card_text {
        font-size: 1.7vw;
        margin: 0 3vw;
    }
}


/* ホーム Aceess */
#section_access {
    width: 100%;
    height: auto;
    padding-top: 5vh;
}

@media screen and (max-width:600px) {
    #section_access {
        padding-top: 3vw;
    }
}

#section_access_header {
    width: 100%;
    height: 12vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background-color: #CEF7FF; */
}

@media screen and (max-width:600px) {
    #section_access_header {
        height: 20vw;
    }
}

#section_access_content {
    width: 100%;
    height: 40vw;
}

@media screen and (max-width:600px) {
    #section_access_content {
        height: 88vw;
    }
}

#section_access_content .access_card {
    width: 70%;
    height: 30vw;
    box-shadow: 1px 1px 3px grey;
    background-color: white;
    display: flex;
    margin: 0 auto;
}

@media screen and (max-width:600px) {
    #section_access_content .access_card {
        width: 80%;
        height: 80vw;
        flex-direction: column;
    }
}

.access_map_area {
    width: 50%;
    height: 30vw;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width:600px) {
    .access_map_area {
        width: 100%;
        height: 40vw;
    }
}

.access_map {
    width: 32vw;
    height: 25vw;
    border: 0;
    margin: 2.5vw;
    box-shadow: 2px 2px 10px gray;
}

@media screen and (max-width:600px) {
    .access_map {
        width: 80%;
        height: 45vw;
        margin-left: 10%;
    }
}

#section_access_text_area {
    width: 45%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5%;
}

@media screen and (max-width:600px) {
    #section_access_text_area {
        width: 100%;
    }
}

#section_access_text_container {
    width: 80%;
    height: auto;
}

@media screen and (max-width:600px) {
    #section_access_text_container {
        width: 60%;
    }
}

.section_access_text {
    font-size: 1.1vw;
    margin-bottom: 2vh;
}

@media screen and (max-width:600px) {
    .section_access_text {
        font-size: 2.2vw;
        margin-bottom: 2vw;
    }

    .section_access_text:nth-child(1) {
        margin-top: 2vh;
    }
}

.section_access_text span {
    font-weight: 700;
}

/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */
/* ホーム end */
/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */