/*
feature
*/
.feature{
    text-align: center;
    padding: 10px;
}
.feature-headline{
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 10px;
}
.feature-img{
    width: 210px;
    height: 210px;
    margin: 0 0 0px;

}
.feature-discription{
    text-align: left;
    margin: 0;
}
.feature .grid{
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
/*
grid
*/
.grid{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
}
.grid-item{
    margin: 0 10px;
    list-style: none;
}

/*
.grid-col-2 > .grid-item{
    display: flex;
    justify-content: center;
    width:50%;
}
*/

.grid-col-3 > .grid-item{
    display: flex;
    justify-content: center;
    gap: 16px;
    width:33.3%;
    min-width: 300px;
    margin: 20px 0;
}

/*
.grid-col-4 > .grid-item{
    display: flex;
    justify-content: center;
    width:25%;
}
*/

/*
blog
*/
.card{
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(4px);
    width: 100%;
}
.card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(0, 195, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(0, 195, 255, 0.1);
}
.card-link{
    display: block;
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: background-color 0.5s ease;
}
.card-link:hover{
    background-color: rgba(255, 255, 255, 0.08);
}
.card-label{
    position: absolute;
    top: 0%;
    left: 0px;
    background-color: rgba(152, 233, 246, 0.7);
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    width: 50px;
    height: auto;
}
.card-image{
    width: 100%;
    height: auto;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 8px;
}
.card-dt{
    display: flex;
    width: 85%;
    max-width: 220px;
    margin: 0 auto;
}
.works-card > .card-time{
    display: block;
    width: 75%;
    max-width: 220px;
    margin: 0 auto;
}
.card-info{
    flex: 1;
    padding-left: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.works .card{
    display: flex;
    flex-direction: column; 
    width: 100%;
}
.card-title{
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}
.card-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    margin: 8px 0;
    background: linear-gradient(90deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.card-discription{
    margin: 0;
}         
.writer{
    display: flex;
    flex-direction: row-reverse;
    justify-content: start;
    align-items: center;
    margin-left: 12px;
}
.writer-name{
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    margin-left: 10px;
}
.writer-icon{
    margin-left: 3px;
    border-radius: 50%;
    overflow: hidden;
}

.button{
    display: inline-block;
    font-weight: bold;
    padding: 12px 32px;
    background: linear-gradient(90deg, #4f8cff 0%, #8ec0f5 100%);
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 30px;
    box-shadow: 0 4px 16px rgba(79, 140, 255, 0.15), 0 1.5px 4px rgba(0,0,0,0.08);
    font-size: 1.1em;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s, transform 0.15s;
    outline: none;
}
.button:hover{
    background: linear-gradient(90deg, #8ec0f5 0%, #4f8cff 100%);
    box-shadow: 0 8px 24px rgba(79, 140, 255, 0.22), 0 2px 8px rgba(0,0,0,0.10);
    transform: translateY(-2px) scale(1.04);
}
.button.button-submit{
    background: linear-gradient(90deg, #8ec0f5 0%, #4f8cff 100%);
    color: #fff;
}
/*
form
*/
.form-table{
    margin: 0 auto;
}
.form-table th{
    text-align: left;
    padding: 10px;
}
.form-table td{
    padding: 10px;
}
.form-buttonn{
    margin-top: 20px;
    text-align: center;
    border: 0;
}
.select{
    border-radius: 5px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    min-width: 500px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #fff;
}
.input{
    border-radius: 5px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    min-width: 500px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #fff;
}
.radio{
    margin: 0 10px;
}
.textarea{
    border-radius: 5px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    min-width: 500px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #fff;
}
.select::placeholder,
.input::placeholder,
.textarea::placeholder{
    color: rgba(255, 255, 255, 0.75);
}
/* 
sns 
*/
.sns{
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;  
    width: 100%;
    justify-content: flex-end;
}
.access .logo img{
    display: block;
    height: 50px;
    width: auto;
}
.sns-icons{
    display: flex;
    align-items: center;
    gap: 10px;
}
.sns img{
    width: 50px;
    height: 50px;
    margin: 0;
}

.footer-line{
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}
.footer-copy{
    display: block;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* レスポンシブ */
@media (max-width: 768px){
    .footer{
        padding: 40px 15px;
    }
    .footer-content{
        flex-direction: column;
        gap: 30px;
    }
    .info{
        flex-direction: column;
        text-align: center;
    }
    .info img{
        max-width: 200px;
    }
    .address-section{
        width: 100%;
    }
    .footer-social{
        width: 100%;
    }
}