@charset "utf-8";
/*共通設定*/
*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

a:hover {
    opacity: 0.8;
}

body {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.05em;
}

img {
    max-width: 100%;
}

.wrap {
    position: relative;
    overflow: hidden;
}

.parent {
    padding: 0 5vw;
}

.child {
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
}

.tb-br,
.sp-br {
    display: none;
}

.pc-br {
    display: block;
}

.h2-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    line-height: 1.5;
}

.h2-title small {
    color: #0066CB;
    font-size: 16px;
}
/*終わり*/


/*<header class="header">*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 80px;
    padding: 16px 5vw;
    background-color: rgba(255,255,255,0.8);
}

.header-inner {
    max-width: 1200px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo-wrap {
    display: inline-block;
}

.header-logo {
    display: block;
    max-width: 240px;
}

.header-ul {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
}

.header-ul li a small {
    font-size: 12px;
    color: #0066CB;
}
/*終わり*/


/*<section class="fv">*/
.fv {
    position: relative;
    width: 100%;
    height: 100vh;
}

.slide-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: slider-1 24s linear infinite;
}

.slide-image:nth-child(1) {
    background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(../img/fv_01.webp);
}

.slide-image:nth-child(2) {
    background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(../img/fv_02.webp);
    animation-delay: 6s;
}

.slide-image:nth-child(3) {
    background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(../img/fv_01.webp);
    animation-delay: 12s;
}

.slide-image:nth-child(4) {
    background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(../img/fv_02.webp);
    animation-delay: 18s;
}

@keyframes slider-1 {
    0% {
        opacity: 0;
    }

    4.16% {
        opacity: 1;
    }

    23.33% {
        opacity: 1;
    }

    31.66% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.fv-in {
    position: relative;
    max-width: 1200px;
    height: 100%;
}

.fv-txt-wrap {
    position: absolute;
    top: calc(50% + 40px);
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-weight: 600;
}

.fv-txt-01,
.fv-txt-06 {
    font-size: 20px;
}

.blue-back-txt {
    background-color: rgba(0,102,203,0.6);
    padding: 0px 16px;
    font-size: 32px;
}
/*終わり*/


/*<section class="company">*/
.company {
    padding: 120px 5vw;
    background-color: #FBFBFB;
}

.company-wrap {
    margin-top: 80px;
}

.company-h3 {
    font-size: 24px;
}

.company-h3::before {
    content: "";
    border-left: solid 5px #0066CB;
    padding-right: 8px;
}

.company-dl {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.company-dl dt {
    width: 20%;
    padding: 12px;
    border-top: solid 1px #BBDDFF;
    font-weight: 600;
}

.company-dl dd {
    width: 80%;
    padding: 12px;
    border-top: solid 1px #BBDDFF;
}

.company-dl .last-dt,
.company-dl .last-dd {
    border-bottom: solid 1px #BBDDFF;
}
/*終わり*/


/*<section class="product">*/
.product {
    padding: 120px 5vw;
}

.product-flex {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.product-img-wrap {
    width: 45%;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-dl {
    width: 53%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-dl dt {
    font-weight: 600;
    color: #0066CB;
    padding-top: 12px;
    border-top: solid 1px #BBDDFF;
}

.product-dl dd {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 12px;
}

.product-dl .last-dd {
    border-bottom: solid 1px #BBDDFF;
}
/*終わり*/


/*<div class="map-wrap">*/
.map-wrap {
    width: 100%;
    height: 360px;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*終わり*/


/*<footer class="footer">*/
.footer {
    background-color: #338DE6;
    color: #fff;
    padding: 16px 5vw 8px 5vw;
}

.footer-in {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.copyright {
    font-size: 12px;
}
/*終わり*/


/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/
    .pc-br,
    .sp-br {
        display: none;
    }

    .tb-br {
        display: block;
    }
/*終わり*/  
  

/*<section class="fv">*/
    .fv {
        height: 60vh;
    }

    .fv-txt-01,
    .fv-txt-06 {
        font-size: clamp(calc(18px), calc(20 / 1024 * 100vw), 20px);
    }

    .blue-back-txt {
        font-size: clamp(calc(24px), calc(32 / 1024 * 100vw), 32px);
    }
/*終わり*/ 


/*<section class="company">*/
    .company {
        padding: clamp(calc(80px), calc(120 / 1024 * 100vw), 120px) 5vw;
    }

    .company-dl dt {
        width: 25%;
    }

    .company-dl dd {
        width: 75%;
    }
/*終わり*/ 


/*<section class="product">*/
    .product {
        padding: clamp(calc(80px), calc(120 / 1024 * 100vw), 120px) 5vw;
    }

    .product-flex {
        flex-direction: column;
        gap: 40px;
    }

    .product-img-wrap {
        width: 100%;
        height: 280px;
    }

    .product-dl {
        width: 100%;
    }
/*終わり*/ 


/*<div class="map-wrap">*/
    .map-wrap {
        height: 280px;
    }
/*終わり*/
}
  
  
/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
    .pc-br,
    .tb-br {
        display: none;
    }

    .sp-br {
        display: block;
    }

    .h2-title {
        font-size: clamp(calc(24px), calc(32 / 599 * 100vw), 32px);
    }

    .h2-title small {
        font-size: clamp(calc(14px), calc(16 / 599 * 100vw), 16px);
    }
/*終わり*/  


/*<header class="header">*/
    .header {
        height: auto;
    }

    .header-logo {
        max-width: 200px;
    }

    .header-site-menu {
        display: none;
    }
/*終わり*/  


/*<section class="fv">*/
    .fv {
        height: 70vh;
    }

    .fv-txt-01,
    .fv-txt-06 {
        font-size: clamp(calc(14px), calc(18 / 599 * 100vw), 18px);
    }

    .blue-back-txt {
        font-size: clamp(calc(20px), calc(24 / 599 * 100vw), 24px);
    }
/*終わり*/  


/*<section class="company">*/
    .company {
        padding: clamp(calc(64px), calc(80 / 599 * 100vw), 80px) 5vw;
    }

    .company-h3 {
        font-size: clamp(calc(20px), calc(24 / 599 * 100vw), 24px);
    }

    .company-dl {
        flex-direction: column;
    }

    .company-dl dt {
        padding-bottom: 0;
        width: 100%;
    }

    .company-dl dd {
        width: 100%;
        border-top: none;
        font-size: 14px;
    }

    .company-dl .last-dt {
        border-bottom: none;
    }

/*終わり*/ 


/*<section class="product">*/
    .product {
        padding: clamp(calc(64px), calc(80 / 599 * 100vw), 80px) 5vw;
    }

    .product-flex {
        gap: 24px;
    }

    .product-img-wrap {
        height: 200px;
    }

    .product-dl dd {
        font-size: 14px;
    }
/*終わり*/ 


/*<div class="map-wrap">*/
    .map-wrap {
        height: 260px;
    }
/*終わり*/


/*<footer class="footer">*/
    .footer-logo {
        max-width: 200px;
    }

    .footer-txt-wrap {
        font-size: 14px;
    }

    .copyright {
        font-size: 10px;
    }
/*終わり*/

}