@charset "UTF-8";

.top_fv {
    width: 100%;
    height: 100vh;
    position: relative;
}
.top_fv .container {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 3;
}
.top_fv .container img {
    width: 288px;
    margin: 0 auto;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.65))
}
.top_fv .container h2 {
    font-size: 2rem;
    line-height: 2;
    letter-spacing: .1em;
    color: #fff;
    margin-top: 35px;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.65);
}
.top_fv .bg {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}
.top_fv .bg img {
	width: 100%;
	height: 100%;
 	object-fit: cover;
 	object-position: center;
    position: absolute;
    top: 0; 
    left: 0;
}
.top_fv .bg.active {
    opacity: 0;
}
@media (max-width: 767px) {
    .top_fv {
        height: 100svh;
    }
    .top_fv .container img {
        width: 50%;
        margin: 0 auto;
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.65))
    }
    .top_fv .container h2 {
        font-size: 1.6rem;
    }
}



.page_top {
    background-color: #fff;
    padding: 100px 0 100px;
    box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.15);
}

.page_top .outline {
    
}
.page_top .outline table {
    width: 100%;
    margin-top: 45px;
}
.page_top .outline table th,
.page_top .outline table td {
    letter-spacing: .05em;
    line-height: 1.4;
    padding: 15px 20px;
    text-align: left;
    font-weight: 400;
}
.page_top .outline table th {
    border-top: 2px solid var(--main_color);
    width: 150px;
}
.page_top .outline table td {
    border-top: 2px solid #CECECE;
    width: calc(100% - 150px);
}
.page_top .outline table tr:last-child th {
    border-bottom: 2px solid var(--main_color);
}
.page_top .outline table tr:last-child td {
    border-bottom: 2px solid #CECECE;
}

.page_top .outline table td li + li {
    margin-top: 15px;
}
@media (max-width: 767px) {
    .page_top .outline {
        padding: 0 5%;
    }
    .page_top .outline table th,
    .page_top .outline table td {
        display: block;
    }
    .page_top .outline table th {
        border-top: 2px solid var(--main_color);
        width: 100%;
        background-color: #fcfcfc;
    }
    .page_top .outline table td {
        border-top: 0px solid #CECECE;
        width: 100%;
    }
    .page_top .outline table tr:last-child th {
        border-bottom: 0px solid var(--main_color);
    }
    .page_top .outline table tr:last-child td {
        border-bottom: 0px solid #CECECE;
    }
}




.page_top .contact {
    margin-top: 150px;
}
.page_top .contact * {
    text-align: center;
}
.page_top .contact .thumb {
    width: 60px;
    margin: 0 auto;
}
.page_top .contact h2 {
    margin-top: 30px;
}
.page_top .contact a {
    display: block;
    font-family: var(--font_notoserif);
    font-size: 1.33rem;
    margin-top: 45px;
    letter-spacing: .05em;
    color: #000;
    transition: all .3s ease;
}
.page_top .contact a:hover {
    opacity: 0.5;
}
.page_top .contact p {
    line-height: 2;
    margin-top: 45px;
    letter-spacing: .05em;
}

@media (max-width: 767px) {
    .page_top .contact {
        margin-top: 100px;
        padding: 0 5%;
    }
    .page_top .contact * {
        text-align: center;
    }
    .page_top .contact .thumb {
        width: 15%;
        margin: 0 auto;
    }
    .page_top .contact h2 {
        margin-top: 30px;
    }
    .page_top .contact a {
        display: block;
        font-family: var(--font_notoserif);
        font-size: 1.33rem;
        margin-top: 45px;
        letter-spacing: .05em;
        color: #000;
        transition: all .3s ease;
    }
    .page_top .contact a:hover {
        opacity: 0.5;
    }
    .page_top .contact p {
        line-height: 2;
        margin-top: 45px;
        letter-spacing: .05em;
    }
}

