@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Gothic&display=swap');

body{
    font-family: 'Sawarabi Gothic', sans-serif;
}

.nowrap{
    white-space: nowrap;
}

#btn-scroll{
    position: fixed;
    bottom:1rem;
    right: 1rem;
}

#fixed-header{
    top: 0;
    left:0;
    position: fixed;
    width: 100%;
    background-color: red;
    vertical-align: middle;
}

#nav {
    list-style: none;
    padding: 0;
    margin: 1rem;
    text-align: right;
}

#nav li {
    width: auto;
    text-align: center;
    display: inline-block;
}

#nav li a {
    text-decoration: none;
    color: #000;
}

.ls-none{
    list-style: none;
    padding-left: 0;
}

.current{
    font-weight: bold;
}

.list-merit{
    counter-reset: li;
    list-style: none;
    padding-left: 0;
}

.list-merit li{
	margin-left: 5rem;
	text-indent: -5.5rem;
}

.list-merit li::before{
    margin-right: 1rem;
    font-weight: bold;
    counter-increment: li;
    content: 'メリット'counter(li);
}

.link-border{
    border-radius: 45px 15px 45px 15px;
    position: relative;
    height: 180px;
}

.link-bg{
    background-position: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:rgba(243, 241, 233, 0.5);
    background-blend-mode:lighten;
}

.link-bg-fill-white{
    background-color:  rgba( 255, 255, 255, 0.18 );
    border-radius: 45px 15px 45px 15px;
    height: 88%;
    width: 92%;
    display: flex;
    flex-flow: column;
    justify-content: space-around;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.link-bg-top{
    background-color:white;
    padding:0.65rem;
    margin:0.5rem;
    border-radius: 15px;
    text-align: center;
    width: 80%;
}

.link-bg-top a{
    text-decoration: none;
}

.link-bg-top a:hover{
    opacity: 0.8;
    color:orange;
}


.bg-sky1{
    background-image: URL(../imgs/sky-1.webp);
}
.bg-sky2{
    background-image: URL(../imgs/sky-2.webp);
}
.bg-sky3{
    background-image: URL(../imgs/sky-3.webp);
}
.bg-sky4{
    background-image: URL(../imgs/sky-4.webp);
}

.row-eq-height{
    flex-wrap: wrap;
}

@media (max-width: 768px) { 
    #nav {
        text-align: center;
        margin: 0;
        padding-left: 0;
    }
    .list-merit li{
        padding-left: 0;
    }
    .list-merit li{
        text-indent: initial;
        margin-left: initial;
        text-indent: initial;
    }
}