
div.container{
    width: 100%;
    height: 100%;
}
div.main-container{
    width: 94%;
    height: 100%;
    margin: 0 auto;
    padding: 10px;
    border: 5px solid #E94628; /* 囲い線を追加 */
    border-radius: 10px; /* 丸みを帯びたボーダーを作成 */
}

.company-logo img {
    width: auto; 
    height: 80px;
}


.menu-row{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 10px;
}


.main-header{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.main-footer{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-start;
}

.google-search{
    display: flex;
    margin: 20px 10px
}
.google-search a{
    margin: 0 10px;
}

form[name="searchform"] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.search-box {
    padding: 10px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 200px;
}
a:visited {
    color: inherit; /* 親要素の色を継承 */
}

.search-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: lightgrey;
    /* background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%); */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(0,212,255,1) 35%, rgba(9,9,121,1) 100%);
}
