@charset "utf-8";




/* 
Base style
 */
body{
  /* font-family: "Noto Sans JP", serif"Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif; */
  font-size: 15px;
  line-height: 1.5;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
label, input, textarea, select, button{
    cursor: pointer
}
button{
    border: 0;
}


/* 
content
*/
.contents{
    width: 100%;
    display: flex;
    justify-content: space-between;
    left: 0;
}
.FLMBASE-logo{
    margin: 30px;
    font-weight: bold;
    font-size: 50px;
    letter-spacing: .1em;
}

.FLMBASE-logo > a{
    text-decoration: none;
    display: block;
    color: #000000;
}
/* .header-nav{} */
.contents-navlist{
    margin: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* .contents-navitem{} */
.contents-navitem > a{
    display: block;
    padding: 10px;
    margin-top: 30px;
    color: #000000;
    text-decoration: none;
    position: relative;
    background-image: linear-gradient(0deg, #beff0d, #beff0d);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 0 55%; /* '50%'の部分にマーカーの太さを記入 */
    transition: all .3s ease-in-out; /* マーカーを引く速度を調整 */
    font-weight: bold;
}
.contents-navitem > a:hover {
    background-size: 100% 55%; /* '50%'の部分は上で設定した太さに合わせる */
}


@media screen and (max-width: 768px){
    .FLMBASE-logo {
        font-size: 25px;
        margin: 0px;
        margin-left: 15px;
    }
    .contents-navlist {
        margin: 0px;
        margin-right: 15px;
    }
    .contents-navitem > a {
        font-size: 10px;
        padding: 5px;
        margin-top: 13px;
    }
}

/* 
hero
 */

 .hero {
   width: 100vw;
   height: 80vh;
   position: relative;
   overflow: scroll;
 }

 @media screen and (max-width: 768px){
 .hero {
   width: 100vw;
   height: 80vh;
   position: relative;
   overflow: scroll;
}
 }





/* 
smallinfo
 */

.smallinfo {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
 }

.smallinfo-copy {
    display: block;
    margin-left: 30px;
    padding-top: 40px;
}

.smallinfo-address {
    margin-top: 20px;
    margin-right: 70px;
}
.smallinfo-address > a {
    /* text-decoration: none; */
    color: #000000;
}

@media screen and (max-width: 768px){
    .smallinfo {
        font-size: 10px;
    }
    .smallinfo-copy {
        display: none;
    }
    .smallinfo-address {
        margin: 0px;
        padding-top: 20px;
        margin-left: 20px;
        font-size: 10px;
        font-weight: 500;
        margin-bottom: 0px;
    }
}


 /* 
about 
 */
.about{
    margin: 250px 0px 0px 200px;
    }
.about-headline{
    margin: 20 0 0px;
    font-size: 50px;
    letter-spacing: 0.1em
    }
.about-description{
    margin-top: 40px;
    font-size: 20px;
    font-weight: 500;
}
.FLMBASE-watermark {
    display: block;
    text-align: center;
    padding-left: 0px;
    font-weight: bold;
    font-size: 380px;
    white-space:nowrap;
    width: 100%;
    overflow:hidden;
    color: #eeeeee;
    margin-left: 0px;
    
}

    
@media screen and (max-width: 768px){
    .about {
        margin: 0px;
        margin-left: 20px;
        margin-top: 170px;
    }
    .about-headline {
        font-size: 30px;
    }
    
    .about-headline > span {
        display: inline-block;

    }
    .about-description {
        font-size: 13px;
    }
    .FLMBASE-watermark {
        padding-left: 0px;
        font-weight: bold;
        font-size: 77px;
        white-space:nowrap;
        width: 100%;
        overflow:hidden;
        color: #eeeeee;
    }
}

 


 
/* 
Button
*/
.section-button {
    text-align: left;
    margin: 0;
    padding-top: 20px;
}
.button{
    display: inline-block;
    color: #fff;
    font-weight: bold;
    background: #000000;
    text-align: center;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 50px;
    transition: box-shadow .25s;
    font-size: 12px;
}
.button:hover{
    background: #beff0d;
    color: #000000;
}


@media screen and (max-width: 768px){
    .button {
        padding: 20px 30px;
    }
}



/*
footer
*/

.footer{
    background-color: #333;
    color: #fff;
    
}
.footer-map{
    margin: 0;
    padding: 40px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-map > iframe{
    width: 60%;
}
.footer-mapinfo{
    width: 40%;
    padding: 15px;
}
.footer-icon{
    width: 50px;
    height: 50px;
}
.footer-maplogo{
    font-size: 25;
    font-weight: bold;
    margin-right: 10px;
}

.footer-mappaddress {
    font-style: normal;
}
.footer-mappaddress > a{
    color: #fff;
}
.footer-line{
    border-color: #444;
}
.footer-copy{
    display: block;
    text-align: center;
    padding: 10px;
}


@media screen and (max-width: 768px){
    .footer-map{
        padding: 15px;
        display: block;
    }
    .footer-map > iframe{
        width: 100%;
        height: 200px;
    }
    .footer-mapinfo{
        width: 100%;
        text-align: center;
    }
}
