:root{
    --red:#e60012;
    --dark:#222;
    --gray:#f5f5f5;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


html{
    scroll-behavior:smooth;
}

body{
    font-family: "Noto Sans JP", sans-serif;
    color:#333;
    line-height:1.8;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:min(1100px,90%);
    margin:auto;
}
.container_full{
    margin:auto;
}

.header{
    position:fixed;
    top:0;
    width:100%;
    background:#fff;
    border-bottom:1px solid #ddd;
    z-index:100;
}

.header .container{
    height:70px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height:50px;
    width:auto;
}

nav ul{
    display:flex;
    gap:30px;
    list-style:none;
}

nav a{
    color:#333;
    font-weight:bold;
}

.mv{
    position:relative;
    height:80vh;
    overflow:hidden;
}

.mv-video{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;
}
.overlay{
    position:absolute;
    inset:0;
    background:rgba(255,255,255,.55);
}

.mv-text{
    width: 100%;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    z-index:2;
}
.mv p{
    font-weight: 900;
    font-size: 1.5rem;
}
.mv h1{
    font-size:3.5rem;
    margin-bottom:20px;
}

.notice{
    background:var(--red);
    color:#fff;
    text-align:center;
    padding:20px;
    font-weight:bold;
}

section{
    padding:100px 0;
}

h2{
    text-align:center;
    margin-bottom:60px;
    position:relative;
    font-size: 2rem;
}

h2::after{
    content:"";
    width:60px;
    height:2px;
    background:var(--red);
    position:absolute;
    left:50%;
    bottom:-15px;
    transform:translateX(-50%);
}

.feature{
    background:#f7f7f7;
}

.circle-list{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}

.circle{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #222;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
}

.point_bar{
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
}


.point{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
    margin-bottom:80px;
}

.reverse{
    direction:rtl;
}

.reverse *{
    direction:ltr;
}

.point-image{
    position:relative;
}

.point-label{
    position:absolute;
    top:20px;
    left:0;
    background:var(--red);
    color:#fff;
    padding:10px 20px;
    font-weight:bold;
}

.point.reverse .point-content{
    padding-left: 50px;
}
.point-content h3{
    color: var(--red);
    font-size: 2rem;
}
.point-content p{
    margin-bottom: 10px;
}
.point-disc01{
    font-weight: 900;
    font-size: 1.2em;
}
.point-disc02{
    font-weight: 900;
}
.point-disc03{
    
}

.facility{
    background:#f7f7f7;
}

.facility-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.card{
    background:#fff;
    border-top:4px solid var(--red);
    padding:30px;
    text-align:center;
    margin: 15px;
}
.card h3{
    color: var(--red);
    font-size: 1.5rem;
}
.card span{
    background-color: var(--red);
    color: white;
}
.company-wrap{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

table{
    width:100%;
    border-collapse:collapse;
}

th,
td{
    border:1px solid #ddd;
    padding:15px;
}

iframe{
    width:100%;
    height:350px;
    border:none;
}

.contact{
    background:#f7f7f7;
    text-align:center;
}

.contact-btns{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.contact-btns a{
    background:#222;
    color:#fff;
    padding:15px 30px;
}

.footer{
    background:#222;
    color:#fff;
    text-align:center;
    padding:30px;
}

@media(max-width:768px){

    nav{
        display:none;
    }

    .mv h1{
        font-size:2rem;
    }

    .point,
    .company-wrap{
        grid-template-columns:1fr;
    }

    .facility-grid{
        grid-template-columns:1fr 1fr;
    }

}