@charset "utf-8";

/* Header.
*********************************************************************************/
#header {
    align-items: center;
    background: rgba(51, 51, 51, .9);
    color:#fff;
    display: flex!important;
    height: 70px;
    justify-content: space-between;
    padding: 20px;
    text-align: center;
    transition: all 0.5s 1s ease-in-out;
    width: 100%;
    z-index: 999;
}

#header h1 {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}
#header p {
    margin-right: 20px;
    min-width: 240px;
    width: calc((100% / 2) - 20px);
}
    @media screen and (max-width: 768px) {
        #header p {
            max-width: initial;
            min-width: 250px;
        }
    }
#header h1 img {
    filter: brightness(2.5);
    max-width: 80px;
}
#header nav {
    display: block;
    min-width: 420px;
    width: calc(100% / 2);
}
    @media screen and (max-width: 768px) {
        #header nav {
            display: none;
        }
    }

    @media screen and (max-width: 768px) {
        #header.nav_Open nav {
            background-color: initial;
            display: block;
            height: 100vh;
            overflow-y: auto;
            position: absolute;
            top: 70px;
            left: 0;
            transition: all 0.6s;
            width: 100%;
            z-index: 200;
        }
    }
#header nav ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
    @media screen and (max-width: 768px) {
        #header nav ul {
            align-items: center;
            flex-direction: column;
            justify-content: space-between;
            padding: 0;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
    }
#header nav ul li {
    margin-right: 2%;
}
    @media screen and (max-width: 768px) {
        #header nav  ul li {
            margin: 0 0 30px 0;
            padding: 0;
        }
    }
#header nav ul li:last-child {
    margin-right: 0;
}
#header nav ul li a {
    color: #fff;
    text-decoration: none;
}
    @media screen and (max-width: 768px) {
        #header nav ul li a {
            display: inline-block;
            padding: 0 15px;
            position: relative;
            transition: 0.5s;
        }
    }
    @media screen and (max-width: 768px) {
        #header nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            border-bottom: solid 1px #fff;
            transition: 0.5s;
        }
    }
    @media screen and (max-width: 768px) {
        #header nav ul li a:hover::after {
            width: 100%;
        }
    }

    @media screen and (max-width: 768px) {
        .toggle_Btn {
            height: 44px;
            position: relative;
            width: 44px;
        }
        /* bager menu */
        #header .nav_Btn {
            cursor: pointer;
            height: 44px;
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            width: 44px;
            z-index: 300;
        }
        #nav_Btn span {
            background-color: #fff;
            height: 2px;
            position: absolute;
            left: 5px;
            transition: all 0.6s;
            width: 34px;
        }
        #nav_Btn span:nth-child(1) {
            top: 10px;
        }
        #nav_Btn span:nth-child(2) {
            top: 21px;
        }
        #nav_Btn span:nth-child(3) {
            top: 32px;
        }
        .nav_Bg {
            background-color: #000;
            cursor: pointer;
            height: calc(100vh - 70px);
            opacity: 0;
            position: fixed;
            top: 70px;
            left: 0;
            transition: all 0.6s;
            visibility: hidden;
            width: 100vw;
            z-index: 100;
        }

        .nav_Open .nav_Bg {
            opacity: 0.8;
            visibility: visible;
        }
        .nav_Open #nav_Btn span:nth-child(1) {
            transform: rotate(45deg);
            top: 20px;
        }
        .nav_Open #nav_Btn span:nth-child(2) {
            width: 0;
            left: 50%;
        }
        .nav_Open #nav_Btn span:nth-child(3) {
            transform: rotate(-45deg);
            top: 20px;
        }
    }





/* Components.
*********************************************************************************/
.inner {
    margin: auto;
    max-width: 1200px;
    padding: 0 24px;
}
    @media screen and (max-width: 768px) {
        .inner {
            padding: 0 3%;
        }
    }
section {
    padding: 100px 0;
}
    @media screen and (max-width: 768px) {
        section {
            padding: 80px 0;
        }
    }
section p:not(:last-of-type),
section p:not(:only-of-type) {
    margin-bottom: 24px;
}

.flex_Box {
    display: flex;
}
.bg_Color._white {
    background-color: #fff;
}
.bg_Color._gray {
    background-color: #e3e3e3;
}
.int_Btn {
    background-color: rgba(213, 233, 255, 0.004);
    border-radius: 50px;
    box-shadow: 10px 10px 20px rgba(176, 193, 219, 0.6), -7px -7px 16px -5px rgba(255, 255, 255, 0.8);
    width: fit-content;
}
.int_Btn a {
    display: block;
    font-size: 18px;
    font-size: 1.8rem;
    padding: 10px 50px;
    text-decoration: none;
}
h2 {
    font-size: 26px;
    font-size: 2.6rem;
    margin-bottom: 32px;
}
h3 {
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 32px;
}
img {
    width: 100%;
}

.fadeIn {
    animation-name: fadeInAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity:0;
    position: fixed;
    top: 0
}
@keyframes fadeInAnime{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Main Visual.
*********************************************************************************/
#hero_Header {
    height: 100vh;
    padding-top: 0;
    position: relative;
}
#hero_Header .full_Slider ul {
    overflow: hidden;
    padding: 0;
}
#hero_Header .full_Slider ul li span {
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    height: 100vh;
    width: auto;
}
#hero_Header .full_Slider ul li span.mv-01 {
    /* background-image: url("https://placehold.jp/30/999999/ffffff/2560x600.png?text=Hero+Header"); */
    background-image: url("../images/mv/main_visual.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* #hero_Header .full_Slider ul li span.mv-02 {
    background-image: url("https://placehold.jp/30/999999/ffffff/2560x600.png?text=Hero+Header");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
#hero_Header .full_Slider ul li span.mv-03 {
    background-image: url("https://placehold.jp/30/999999/ffffff/2560x600.png?text=Hero+Header");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
} */

#hero_Header .hero_Header_Catch {
    max-width: 90vw;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
#hero_Header .hero_Header_Catch h1 {
    color: #666;
    font-family: 'Bacasime Antique', 'Sawarabi Gothic', 'Sawarabi Mincho', sans-serif, serif;
    font-size: 40px;
    letter-spacing: 0;
    line-height: 1.6;
    margin: 0 auto 90px;
    text-align: center;
}
        @media screen and (max-width: 480px) {
            #hero_Header .hero_Header_Catch h1 {
                font-size: 16px;
                font-size: 1.6rem;
            }
        }
/* スクロールダウン */
#hero_Header .container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

#hero_Header .field {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 200px;
}

#hero_Header .mouse {
    height: 70px;
    position: relative;
    width: 36px;
}
#hero_Header .mouse::before {
    content: '';
    width: 12px;
    height: 12px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #666;
    border-radius: 50%;
    opacity: 1;
    animation: wheel 2s infinite;
    -webkit-animation: wheel 2s infinite;
}


@keyframes wheel {
to {
opacity: 0;
top: 60px;
}
}

@-webkit-keyframes wheel {
to {
opacity: 0;
top: 60px;
}
}
.no_Scroll {
    overflow: hidden;
}

/* Section.
*********************************************************************************/

/* aboutUs */
#aboutUs {
    padding-bottom: 0;
}
#aboutUs .inner {
    padding: 0 24px 100px;
}
    @media screen and (max-width: 768px) {
        #aboutUs .inner {
            padding: 0 24px 80px;
        }
    }
#aboutUs .feature figure {
    float: right;
    margin: 0 0 32px 64px;
}
    @media screen and (max-width: 768px) {
        #aboutUs .feature figure {
            float: none;
            margin: 0 0 32px 0;
        }
    }
#aboutUs .feature figure img {
    max-width: 450px;
}
    @media screen and (max-width: 768px) {
        #aboutUs .feature figure img {
            max-width: initial;
        }
    }
#aboutUs .feature p.bold {
    margin-bottom: 24px;
}
#aboutUs .int_Btn {
    margin-top: 50px;
    margin-left: auto;
}
#aboutUs .parallax-Bg {
    background-attachment: fixed;
    background-image: url('https://placehold.jp/24/cccccc/ffffff/2500x500.png?text=here is images');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 550px;
}

/* #service */
#service {
    padding: 150px 3%;
}
#service h2 {
    position: relative;
    text-align: center;
}
#service h2::before {
    background-image: url("../images/common/icon/icon_home.svg");
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: block;
    height: 40px;
    margin: auto;
    padding-bottom: 72px;
    width: 40px;
}
#service p {
    text-align: center;
}
#service .flex_Box {
    flex-direction: column;
    margin-top: 40px;
}
    @media screen and (max-width: 768px) {
        #service .flex_Box {
            flex-direction: column;
        }
    }
#service dl {
    background-color: rgba(213, 233, 255, 0.004);
    border-radius: 15px;
    box-shadow: 10px 10px 20px rgba(176, 193, 219, 0.6), -7px -7px 16px -5px rgba(255, 255, 255, 0.8);
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 40px 3%;
    width: 100%;
}
#service .flex_Box dl dt {
    color: #999;
    margin-bottom: 16px;
}
#service .flex_Box dl dd {
    align-items: center;
    color: #666;
    display: inline-flex;
    flex-direction: row;
    justify-content: space-between;
}
#service .flex_Box dl dd figure {
    width: 20%;
}
#service .flex_Box dl dd figure img {
    max-width: 140px;
}
#service .flex_Box dl dd p {
    text-align: left;
}
#service .int_Btn {
    margin-top: 32px;
    margin-left: auto;
}
#service .int_Btn a {
    color: #999;
}

/* company */
#company .company_Info {
    padding: 32px 0 48px;
}
#company .company_Info table {
    margin: auto;
    max-width: 800px;
}
#company .company_Info table tr {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    position: relative;
    width: 100%;
}
#company .company_Info table tr::after {
    border-bottom: solid 1px #999;
    content: '';
    display: block;
    height: 1px;
    margin: 8px 0;
    position: absolute;
    bottom: 1px;
    width: 100%;
    z-index: 2;
}
#company .company_Info table tr:nth-child(odd) th {

}
#company .company_Info table th {
    min-width: 120px;
    margin-right: 24px;
    position: relative;
}
#company .company_Info table th span {
    position: relative;
    z-index: 3;
}
#company .company_Info table th::after {
    background-color: #e3e3e3;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 10px;
    width: 100%;
    z-index: 1;
}
#company .company_Info table th,
#company .company_Info table td {
    display: inline-flex;
    flex-direction: column;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 6px 6px 10px;
}

#company table caption {
    margin-bottom: 32px;
}
#company table caption .logo {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 24px;
}
    @media screen and (max-width: 768px) {
    }
#company table caption .logo img {
    max-width: 80px;
}
#company .flex_Box {
    padding: 0;
}
    @media screen and (max-width: 768px) {
        #company .flex_Box {
            flex-direction: column;
        }
    }
#company .flex_Box .lay_Card {
    background-color: rgba(213, 233, 255, 0.004);
    box-shadow: 10px 10px 20px rgba(176, 193, 219, 0.6), -7px -7px 16px -5px rgba(255, 255, 255, 0.8);
    display: inline-flex;
    flex-direction: column;
    margin-right: 16px;
    width: calc((100% / 3) - 16px);
}
    @media screen and (max-width: 768px) {
        #company .flex_Box .lay_Card {
            align-items: center;
            flex-direction: row;
            margin: 0 0 24px 0;
            width: 100%;
        }
    }
#company .flex_Box .lay_Card .head_Cont .icon {
    background-color: #fff;
}
#company .flex_Box .lay_Card .head_Cont .ttl {
    padding: 16px 3%;
    text-align: center;
}
#company .flex_Box .lay_Card .body_Cont {
    padding: 0 3% 24px;
}
#company .flex_Box .lay_Card .body_Cont .txt {

}
#company .flex_Box .lay_Card .body_Cont .int_Btn {
    margin: 30px auto 16px;
}
#company .parallax-Bg {
    background-attachment: fixed;
    background-image: url('https://placehold.jp/24/eeeeee/666666/2500x500.png?text=here is images');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
    margin-bottom: 100px;
}
    @media screen and (max-width: 768px) {
        #company .parallax-Bg {
            margin-bottom: 80px;
        }
    }

/* news */
#news .flex_Box {
    margin-top: 40px;
}
    @media screen and (max-width: 768px) {
        #news .flex_Box {
            flex-direction: column;
        }
    }
#news h2,
#news h3 {
    text-align: center;
}
#news p {
    text-align: center;
}
#news .flex_Box {
    flex-wrap: wrap;
}
#news .flex_Box dl {
    display: inline-flex;
    flex-direction: column;
    margin-bottom: 24px;
    width: calc((100% / 3) - 16px);
}
    @media screen and (max-width: 768px) {
        #news .flex_Box dl {
            width: 100%;
        }
    }
#news .flex_Box dl:nth-last-child(-n+3) {
    margin-bottom: 0;
}
    @media screen and (max-width: 768px) {
        #news .flex_Box dl:nth-last-child(-n+3) {
            margin-bottom: 24px;
        }
    }

#news .flex_Box dl:not(:last-of-type),
#news .flex_Box dl:not(:only-of-type) {
    margin-right: 16px;
}
    @media screen and (max-width: 768px) {
        #news .flex_Box dl:not(:last-of-type),
        #news .flex_Box dl:not(:only-of-type) {
            margin-right: 0;
        }
    }
    @media screen and (max-width: 768px) {
        #news .flex_Box dl:not(:last-of-type),
        #news .flex_Box dl:not(:only-of-type) {
            margin-bottom: 16px;
        }
    }
#news .flex_Box dl dt {
    height: calc(100% / 2);
    position: relative;
}
#news .flex_Box dl dt span {
    background-color: #666;
    color: #fff;
    font-size: 14px;
    font-size: 1.4rem;
    padding: 3px 16px;
    position: absolute;
    top: 0;
    right: 0;
}
#news .flex_Box dl dt img {
    aspect-ratio: 16 / 9;
}
#news .flex_Box dl dd {
    color: #999;
    padding: 16px 3%;
}
#news .flex_Box dl dd span {
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
    margin-top: 24px;
}
#news .flex_Box dl dd .int_Btn {
    margin: 30px auto 16px;
}
/* search Form.　*/
#news .search_Box {
    margin: auto;
    max-width: 600px;
}


/* Contact Form.
*********************************************************************************/
#contact h2,
#contact h3 {
    text-align: right;
}
#contact .flex_Box {
    align-items: center;
    justify-content: center;
}
    @media screen and (max-width: 768px) {
        #contact .flex_Box {
            flex-direction: column-reverse;
        }
    }
#contact .social {
    padding: 0 3%;
    width: calc(100% / 2);
}
    @media screen and (max-width: 768px) {
        #contact .social {
            width: 100%;
        }
    }
#contact .social ul {
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
}
    @media screen and (max-width: 768px) {
        #contact .social ul {
            flex-direction: row;
        }
    }
#contact .social ul li {
    background-color: rgba(51, 51, 51, .9);
    border-radius: 360px;
    margin-bottom: 24px;
}
#contact .social ul li:not(:last-child) {
    margin-right: 16px;
}
#contact .social ul li a {
    display: block;
    padding: 24px;
    position: relative;
}
#contact .social ul li img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
}
#contact .social p {
    padding: 8px 0 32px;
    text-align: center;
}
#contact #contact_Form {
    background-color: rgba(51, 51, 51, .9);
    width: calc(100% / 2);
}
    @media screen and (max-width: 768px) {
        #contact #contact_Form {
            margin-bottom: 24px;
            width: 100%;
        }
    }
#contact #contact_Form p {
    color: #fff;
    padding: 24px 3%;
}
#contact #contact_Form img {

}
#contact #contact_Form .privacy p {
    text-align: center;
}
#contact #contact_Form .privacy .int_Btn {
    box-shadow: 10px 10px 20px rgba(176, 193, 219, 0.3), -7px -7px 16px -5px rgba(255, 255, 255, 0.2);
    margin: 0 auto 35px;
    padding: 0 3%;
}


/* footer.
*********************************************************************************/

footer .copyright {
    margin: 0;
    padding: 16px 0;
    text-align: center;
}
footer .copyright span {
    color: #999;
}



