@charset "utf-8";
/*フォント*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&display=swap');
* {box-sizing: border-box;}
img {width: 100%;}
body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 200;
    font-size: 16px;
    line-height: 1.7em;
    background: url(../images/body_bg.jpg);
    color: #EEE;
}
h1 {
    color: #EEE;
    font-weight: normal;
    font-size: 12px;
    padding: 8px;
    line-height: 24x;
}
h2 {
    font-family: "Oswald", sans-serif;
    font-size: 62px;
    line-height: 1.7em;
    color: #AAA5A5;
    text-align: center;
    margin-bottom: 20px;
}
.content {
    display: block;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
.oswald {
    font-family: "Oswald", sans-serif;
}

/* header */
header {position: relative;}
header.content {
    margin-bottom: 120px;
}
.main_mv {
    position: relative;
    width: 100%;
    aspect-ratio: 5/3;
}
.main_mv .mv1 {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.head_logo {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    width: 36%;
}
.head_tel {
    position: fixed;
    top: 0;
    right: 0;
    margin-right: 40px;
    z-index: 999;
}
.head_tel .fas {
    margin-right: 10px;
    font-size: 28px;
}
.head_tel a {
    display: block;
    color: #4E2300;
    background: #FBE80B;
    text-decoration: none;
    font-size: 32px;
    font-weight: 700;
    padding: 15px 20px;
    border-radius: 0 0 10px 10px;
    transition: all .4s ease-out;
}
.head_tel a:hover {
    color: #FBE80B;
    background: #4E2300;
    box-shadow: 0px 6px 18px 0px rgba(255, 255, 255, 0.4);
}

/* main */
.cont_mb {
    margin-bottom: 120px;
}
.cont_flex {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.flex_half {
    width: 48%;
}
.greeting_txt li {
    margin-bottom: 5px;
}
.g_map iframe {
    width: 100%;
    height: 100%;
}
.table_design03 {
    border-collapse: collapse;
    width: 100%;
    max-width: 700px;
}
.table_design03 th, .table_design03 td {
    border-bottom: 2px solid #c1c7c6;
    padding: 1em;
}
.table_design03 th {
    border-bottom: 2px solid #4d9bc1;;
    font-weight: bold;
    text-align: left;
    width: 25%;
    min-width: 4em;
}
.banner a {
    display: block;
    aspect-ratio: 3 / 1;
    width: 100%;
    height: 100%;
    background: #FFF;
    overflow: hidden;
}
.banner a img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all .4s ease-out;
}
.banner a:hover img {
    transform: scale(1.04);
    opacity: 0.8;
}
.banner a:hover {
    box-shadow: 0px 6px 18px 0px rgba(255, 255, 255, 0.4);
} 
footer {
    position: relative;
    width: 100%;
    height: 400px;
    padding-top: 60px;
    background: url(../images/footer_bg.jpg);
    background-size: cover;
    background-position: 50%;
}
footer:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}
.footer_logo {
    position: relative;
    width: 240px;
    margin: 0 auto;
    z-index: 1;
}
small {
    position: relative;
    position: absolute;
    bottom: 5px;
    width: 100%;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    z-index: 1;
}
@media screen and (min-width: 789px) {
    .forSP {
        display: none;
    }
}
@media screen and (max-width: 788px) {
    .forPC {
        display: none;
    }
    .head_tel {
        top: inherit;
        bottom: 0;
        right: 0;
        margin-right: 20px;
    }
    .head_tel .fas {
        margin-right: 5px;
        font-size: 22px;
    }
    .head_tel a {
        display: block;
        color: #4E2300;
        background: #FBE80B;
        text-decoration: none;
        font-size: 24px;
        font-weight: 700;
        padding: 10px 15px;
        border-radius: 10px 10px 0 0;
        transition: all .4s ease-out;
    }
    header.content {
        margin-bottom: 80px;
    }
    .main_mv {
        aspect-ratio: 3/4;
    }
    .head_logo {
        position: absolute;
        top: 60%;
        left: 10%;
        transform: translateY(-50%);
        width: 54%;
    }
    .cont_mb {
        margin-bottom: 80px;
    }
    .cont_flex {
        display: block;
    }
    .flex_half {
        width: 100%;
    }
    .greeting_img {
        margin-bottom: 40px;
    }
    .table_design03 {
        margin-bottom: 40px;
    }
    .g_map iframe {
        width: 100%;
        height: 420px;
    }
    .banner a {
        display: block;
        aspect-ratio: inherit;
        width: 100%;
        height: auto;
        background: #FFF;
        overflow: hidden;
    }
}