@charset "utf-8";
body{
    font-family: 'Noto Sans JP', sans-serif;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.header__inner{
    padding: 2rem 2.5rem 0;
    display: flex;
    align-items: center;
}

.header__logo{
    flex-grow:1;
}

.global-nav{
    
}
.global-nav__list ul{
    display: flex;
}
.global-nav__list ul li{
    padding: 0 1.5rem;
}

.key-visual{
    width: 100%;
    height: 100svh;
    position: relative;
}
.catchy{
    font-size: 2.245rem;
    font-weight: bold;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 2.5rem;
    font-family: "Shippori Mincho", serif;
    font-style: normal;
}

#particles-js{
    width: 100%;
    height: 100svh;
}


.content__inner{
    max-width: 1440px;
    margin: 0 auto;
    padding: 90px 1.5rem;
}

.aboutus{
    background-color: #ECF5FF;
}
.aboutus__message{
    font-family: "Shippori Mincho", serif;
    font-style: normal;
    font-size: 1.2rem;
}
.aboutus__message p + p{
    margin-top: 1.5rem;
    font-size: 1rem;
}
.aboutus__message span{
    display: block;
}

.service{
    background-color: #f8f9fa;
}

.service h2{
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: bold;
}

.service__grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service__item{
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service__item:hover{
    transform: translateY(-5px);
}

.service__image{
    margin-bottom: 1rem;
    border-radius: 6px;
    overflow: hidden;
}

.service__image img{
    width: 100%;
    object-fit: contain;
}

.service__item h3{
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.service__item p{
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

.company{
    background-color: #fff;
}

.company h2{
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: bold;
}

.company__table-wrapper{
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.company__table{
    width: 100%;
    border-collapse: collapse;
}

.company__table th,
.company__table td{
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    text-align: left;
    vertical-align: top;
}

.company__table th{
    background-color: #f8f9fa;
    font-weight: bold;
    color: #333;
    width: 25%;
    min-width: 120px;
}

.company__table td{
    color: #666;
    line-height: 1.6;
}

.company__table tr:last-child th,
.company__table tr:last-child td{
    border-bottom: none;
}

.company__table ul{
    margin: 0;
}

.company__table li{
    margin-bottom: 0.5rem;
}

.company__table li:last-child{
    margin-bottom: 0;
}

.contact{
    background-color: #f8f9fa;
}

.contact h2{
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: bold;
}

.contact__form-wrapper{
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 2rem;
}

.form__group{
    margin-bottom: 1.5rem;
}

.form__label{
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.required{
    color: #dc3545;
}

.form__input,
.form__textarea{
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form__input:focus,
.form__textarea:focus{
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

.form__textarea{
    resize: vertical;
    min-height: 120px;
}

.form__submit{
    text-align: center;
    background-color: #4A90E2;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.form__submit:hover{
    background-color: #357abd;
}

.form__submit:active{
    transform: translateY(1px);
}

/* スマホ（〜479px） */
@media (max-width: 479px) {
    .service__grid{
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service__item{
        padding: 1rem;
    }
    
    .service h2{
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .company h2{
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .company__table-wrapper{
        margin: 0 1rem;
    }
    
    .company__table th,
    .company__table td{
        padding: 1rem;
        display: block;
        width: 100%;
    }
    
    .company__table th{
        background-color: #e9ecef;
        border-bottom: none;
        font-size: 0.9rem;
    }
    
    .company__table td{
        border-bottom: 1px solid #e9ecef;
        padding-top: 0.5rem;
    }
    
    .contact h2{
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact__form-wrapper{
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .form__group{
        margin-bottom: 1rem;
    }
    
    .form__input,
    .form__textarea{
        padding: 0.6rem;
        font-size: 16px; /* iOSでズームを防ぐ */
    }
    
    .form__submit{
        padding: 0.8rem 1.5rem;
    }
  }
  
  /* タブレット（480px〜767px） */
  @media (min-width: 480px) and (max-width: 767px) {
    .service__grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
  }
  
  /* ノートPC以上（768px〜） */
  @media (min-width: 768px) {
    /* PC向けスタイル */
  }
  