@charset "utf-8";
/** ------ 背景の設定 ------ **/
#main_page {
    background-image: url("../images/background_1920-1280.jpg"); /* 画像ファイルの指定 */
    background-position: center; /* 天地左右の中央に配置 */
    background-repeat: no-repeat; /* 繰り返し表示しない */
    background-attachment: fixed; /* 背景が動かないように固定 */
    background-size: cover; /* 表示するコンテナの大きさに基づいて、背景画像を調整 */
    height: 1295px;
    z-index: 0;
}
#main_page .transparent_background {
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border: hidden;
    padding: 0;
}

@media screen and (max-width: 480px) {
    /** ------ 背景の設定 ------ **/
    #main_page {
        background-image: url("../images/background_720-1280.jpg"); /* 画像ファイルの指定 */
        background-position: center top;
        background-size: 100%;
    }

    #main_page,
    #main_page .transparent_background {
        height: 1050px;
    }
}
/** ------ タイトルの設定 ------ **/
#main_page #main_title {
    margin-top: 20px;
}

#main_page #sub_title {
    font-family: "游ゴシック", "ヒラギノ明朝 ProN", sans-serif;
    font-size: 40px;
    color: #008000;
    text-shadow: 3px 3px 2px #ffffff;
}

/** ------ トップページ挨拶文の設定 ------ **/
#main_page #greetings {
    margin: 60px auto 20px;
    text-align: left;
    font-weight: bold;
    max-width: 600px;
}

/** ------ メインメニューに関する設定 ------ **/
#main_menu_area {
    width: 100% !important;
    margin: auto;
    padding: 0;
    text-align: center;
}
#main_menu_area #main_menu {
    margin: auto;
    text-align: center;
}
#main_menu tr td {
    padding: 25px;
}
#main_menu tr td a {
    display: flex;
    font-family: "游ゴシック", "ヒラギノ明朝 ProN", sans-serif;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.7);
    background-blend-mode: lighten;
    width: 300px;
    height: 150px;
    font-size: xx-large;
    margin: auto;
    justify-content: center;
    align-items: center;
    color: #000000;
}
#main_menu tr td a:hover{
    background-color: rgba(0,0,0);
    color: #FFFFFF;
    text-shadow:  2px  2px 10px #777 ,
    -2px  2px 10px #777 ,
    2px -2px 10px #777 ,
    -2px -2px 10px #777;
}
#main_menu tr td a.corporate_philosophy_image_s {
    background-image: url("../images/corporate_philosophy_image_s.jpg"); /* 画像ファイルの指定 */
}
#main_menu tr td a.care_image_s {
    background-image: url("../images/care_image_s.jpg"); /* 画像ファイルの指定 */
}
#main_menu tr td a.recruit_image_s {
    background-image: url("../images/recruit_image_s.jpg"); /* 画像ファイルの指定 */
}
#main_menu tr td a.office_image_s {
    background-image: url("../images/office_image_s.jpg"); /* 画像ファイルの指定 */
}
#main_menu tr td a.president_image_s {
    background-image: url("../images/president_image_s.jpg"); /* 画像ファイルの指定 */
}
#main_menu tr td a.inquiry_image_s {
    background-image: url("../images/inquiry_image_s.jpg"); /* 画像ファイルの指定 */
}
@media screen and (max-width: 480px) {
    /** ------ メインメニューに関する設定 ------ **/
    #main_menu tr td {
        width: 120px;
        padding: 5px;
    }
    #main_menu tr td a {
        width: 110px;
        height: 100px;
        font-size: large;
        background-color: rgba(0,0,0);
        color: #ffffff;
        text-shadow:  2px  2px 10px #777 ,
        -2px  2px 10px #777 ,
        2px -2px 10px #777 ,
        -2px -2px 10px #777;
    }
}

