/* --- 全体ベース --- */
body {
    background-color: #000080;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* --- 検索ボックス（白い箱の外） --- */
.searchbox_outer {
    padding: 20px 15px 5px 15px; /* ここで全体の上の余白を調整 */
    box-sizing: border-box;
}

#search form {
    display: flex;
    position: relative;
    width: 100%;
}

/* メインCSSの干渉をリセットしつつデザイン */
#search form input[type="text"] {
    width: 100% !important;
    float: none !important;
    height: 40px;
    border: none;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    box-sizing: border-box;
    padding: 0 40px 0 15px; /* 右側にアイコン分の隙間 */
    margin: 30px 20px 10px 
}

/* 虫眼鏡アイコン（紺色） */
.search_push {
    position: absolute;
    top: 50px;
    right: 20px;         /* 右端からの距離 */
    transform: translateY(-50%); /* 垂直中央揃え */
    width: 25px;
    height: 25px;
    border: none;
    cursor: pointer;
}

/* --- 内側の白いコンテンツエリア --- */
.inner {
    position: relative;
    width: calc(100% - 30px);
    margin: 15px auto;
    background-color: #fff;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 20px;
    min-height: calc(100vh - 100px); /* 検索窓の高さを引いた分 */
}

/* --- メニュー装飾 --- */
.menubox h2 {
    font-size: 1.1rem;
    color: #333;
    border-bottom: 2px solid #000080;
    padding-bottom: 5px;
    margin: 0 0 15px 0;
}

h3.title_bar {
    font-size: 16px;
    color: #ffffff;
    background: #000080;
    padding: 5px 10px;
    margin: 15px 0 5px 0;
    border-radius: 2px;
}

/* --- ★お問い合わせ・アイコン位置修正 --- */
ul.contact li {
    position: relative;    /* これが重要！アイコンの基準点になります */
    list-style: none;
    font-size: 0.9em;
    line-height: 1.6;
    padding: 1em 0 0 2.5em;  /* アイコンが入る左側のスペースを確保 */
    margin: 1.0em 0 0 0;
}

/* メインCSSで :before が使われている場合の調整 */
ul.contact li:first-child:before {
    top: -0.2em;
}
ul.contact li:before {
    position: absolute;
    top: 0.5em;
    left: 0;
    margin-top: 2px;
}
/*各種サービスの部分*/
.box_service{
    margin: 80px auto;
}
.p_customer_info,
.p_company_info{
    margin: 20px auto;
}
/* レスポンシブ */
@media screen and (max-width: 1280px) {
    .inner {
        width: calc(100% - 40px);
        margin: 20px auto;
    }
}