@charset "utf-8";


/*
 base
*/
body{
    font-family: 'Noto Sans JP', "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #123;
}
label,input,textarea,select,button{
    cursor: pointer;
}
button{
    border: 0;
}
/*
 section 
*/
.section{
    padding: 30px 15px;
}

.section.section-secoundary{
    background-color: aliceblue;
}

.section-headline{
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    margin: 0 0 40 0px;
}

.section-button{
    margin-top: 40px;
    text-align: center;
}
@media screen and (max-width: 768px){
    .section{
        padding: 20px 10px;
    }
    .section-headline{
        font-size: 30px;
        margin: 0 0 20px;
    }
    .section-button{
        margin: 20px 0 0;
    }
}


/*
header
*/
.header{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    background-color: #e6e6e6;
}
.header-logo{
    margin: 0;
}
.header-logo > a {
    display: block;
    color: #333;
    text-decoration: none;
    display: flex;
    
}
/* .header-nav{} */
.header-navlist{
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-navitem > a{
    display: block;
    padding: 10px;
    color: #123;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: border-color .25s;
}
.header-navitem > a:hover {
    border-bottom: 2px solid #333; 
}
@media screen and (max-width: 768px){
    .header{
        font-size: 12px;
        z-index: 10;
        background-color: #e6e6e6;
    }
}

/*
hero
*/
.hero{
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.hero > strong{
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 120px;
    font-weight: bold;
    color: #444;
    display: block;
    width: 100%;
    text-align: center;
}
.hero > video{
    z-index: 1;
    position: absolute;
    width: auto;
    height: 150%;
}
.hero-particles{
    position: absolute;
    width: 100%;
    z-index: 2;
    height: 100%;
}

@media screen and (max-width: 768px){
    .hero > strong{
        font-size: 50px;
    }
}

/*
about
*/
.about{
    margin: 0;
    display: flex;
}

.about-caption{
    padding-left: 40px;
}

.about-headline{
    margin: 0 0 40px;
    font-size: 30px;
}
@media screen and (max-width: 768px){
    .about{
        display: block;
    }
    .about-image{
        max-width: 100%;
        margin-bottom: 20px;
    }
    .about-headline{
        font-size: 20px;
        text-align: center;
    }
}
/*
grig
*/
.grid{
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.grid-item{
    list-style: none;
}

.grid-col-2 > .grid-item{
    width: 50%;
}

.grid-col-3 > .grid-item{
    width: 33%;
}

.grid-col-4 > .grid-item{
    width: 25%;
}
@media screen and (max-width: 768px){
    .grid{
        display: block;
    }
    .grid-col-2 > .grid-item,
    .grid-col-3 > .grid-item,
    .grid-col-4 > .grid-item{
        width: 100%;
        margin: 20px 0;
    }
}

/* カウンター部分のスタイル */
#visitor-counter-container {
    text-align: center;  /* カウンター全体を中央揃え */
    padding: 20px;       /* カウンター周辺の余白 */
    background-color: #f0f0f0;  /* カウンター部分の背景色 */
    border-radius: 10px; /* カウンター部分の角を丸く */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  /* 影を付けて立体感を出す */
    margin: 20px auto;   /* セクション全体にマージンを設定 */
    max-width: 300px;    /* 最大幅を300pxに制限 */
}

#visitor-counter {
    font-weight: bold;    /* カウンターの数字を太字に */
    font-size: 32px;      /* カウンターの数字を大きく表示 */
    color: #0066cc;       /* カウンターの数字を青色に */
}

#visitor-counter-text {
    font-size: 16px;      /* 「現在の訪問者数」のテキストサイズ */
    color: #333;          /* テキストカラーをやや濃いグレーに */
    margin-bottom: 10px;  /* 数字との間に余白を追加 */
}

/* スマホ用のスタイル調整 */
@media screen and (max-width: 768px) {
    #visitor-counter-container {
        padding: 15px;      /* スマホでは余白を少し減らす */
        margin: 10px auto;  /* 上下のマージンを狭くする */
        max-width: 90%;     /* スマホでは画面の90%幅にする */
    }

    #visitor-counter {
        font-size: 28px;    /* 数字のフォントサイズを少し小さく */
    }

    #visitor-counter-text {
        font-size: 14px;    /* テキストのサイズを少し小さく */
    }
}

/* recommend */

.recommend{
    text-align: center;
    padding: 0 15px;
}

.recommend-headline{
    font-weight: bold;
    margin: 0 0 20px;
}

.recommend-img{
    margin: 0 0 20px;
}

.recommend-discription{
    text-align: left;
}

/*
card
*/

.card{
    padding: 0 10px;
}
.card-link{
    display: block;
    color:#123;
    text-decoration: none;
    position: relative;
    transition: background-color .25s;
}
.card-link:hover{
    background-color: #eee;
}
.card-label{
    position: absolute;
    left: 0;
    top: 0;
    background-color: aliceblue;
    color: black;
    display: block;
    padding: 5 10px;
    font-size: 12px;
}
.card-img{
    width: 100%;
    height: auto;
}
.card-info{
    padding: 5px 10px;

}

.card-headline{
    margin: 0;
}
.card-description{
    margin: 0;
}

/*
avatar
*/
.avatar{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: start;
    padding: 10px;
}
.avatar-name{
    font-weight: bold;
    padding: 10px;
}
.avatar-img{
    margin: 0;
    border-radius: 50%;
    overflow: hidden;
}

/*
button
*/

.button{
    display: inline-block;
    color: #fff;
    font-weight: bold;
    background-color: #123;
    text-align: center;
    padding: 15px 60px;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 5px 5px 0 #bbb;
    transition: box-shadow .25s;
}
.button:hover{
    box-shadow: 0 0 0 #bbb;
}
.button.button-submission{
    background-color: lightblue;
}


/* 
select, input, radio, textarea
*/
.select{
    border-radius: 5px;
    padding: 10px;
    border: 1px solid #ccc;
    min-width: 500px;
}
.input{
    border-radius: 5px;
    padding: 10px;
    border: 1px solid #ccc;
    min-width: 500px;
}
.radio{
    margin: 0 10px;
}
.textarea{
    border-radius: 5px;
    padding: 10px;
    border: 1px solid #ccc;
    min-width: 500px;
    min-height: 100px;
}

@media screen and (max-width: 768px){
    .select,
    .input,
    .textarea{
        min-width: auto;
        width: 100%;
    }

}


/*
form
*/
/* .from{} */
.form-table{
    margin: 0 auto;
}
.form-table th{
    padding: 10px;
    text-align: left;
}
.form-table td{
    padding: 10px;
}
.form-button{
    margin: 20px;
    text-align: center;
}
@media screen and (max-width: 768px){
    .form-table,
    .form-table tbody,
    .form-table tr,
    .form-table th,
    .form-table td{
        display: block;
    }

}

/*
works
*/
.works{
    margin: 40px 0;
    padding: 20px;
    text-align: center;
}
.works > img{
    margin: 10px;
}
@media screen and (max-width: 768px){
    .works{
        margin: 20px 0;
        padding: 10px;
    }
    .works > img {
        width: 100px;
        margin: 5px;
    }
}

/*
footer
*/

.footer{
    background-color: #666;
    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%;
}
.footer-maplogo {
    font-size: 25px;
    font-weight: bold;
}
.footer-maplogo > svg {
    /* fill: transparent; */
    margin-right: 10px;
}
.footer-mapaddress{
    font-style: normal;
}
.footer-mapaddress > 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;
    }
}


