@charset "utf-8";

/* リセットｃｓｓ */
*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

body {
    font-family: sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: #333;
    line-height: 1;
}

a {
    color: #333;
}

li {
    list-style: none;
}



/* headerのcss */
header {
    width: 100vw;
    height: 100px;
    text-align: center;
    position: relative;
}

.header-inner {
    width: 100vw;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    margin: 0 auto;
}

.header-logo {
    height: 100%;
    position: absolute;
    left: 20px;
}

.header-logo img {
    height: 100%;
    width: 135px;
}

.form-area {
    position: absolute;
    top: 20px;
    right: 350px;

}

/*フォーム全体を中央へ*/
#form1 {
    display: flex;
    justify-content: center;
    height: 50px;
}

/*入力フォーム*/
#sbox2 {
    width: 380px;
    padding: 0 15px;
    border-radius: 4px 0 0 4px;
    background: transparent;
    /*背景カラー透明*/
    border: 2px solid #333;
    /*枠線の指定*/
    border-right: none;
    /*枠線の右側だけ削除*/
    outline: 0;
}

/*検索ボタン*/
#sbtn2 {
    width: 50px;
    border-radius: 0 4px 4px 0;
    background: #333;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

#sbtn2:hover {
    background: #333;
}

.icon button,
.icon a {
    display: block;
    height: 70px;
    width: 70px;
    margin-right: 30px;
    cursor: pointer;
}

.icon {
    position: relative;
    padding-top: 15px;
}

.icon .iro {
    position: absolute;
    top: 15px;
    left: 0;
    color: #333;
}






/* footerの設定 */
footer {
    background-color: rgb(255, 175, 222);
    margin-top: 60px;
    display: inline-block;
    width: 100vw;
    border-radius: 80% / 50% 50% 0 0;
}

.footerinner {
    display: flex;
    width: 75%;
    margin: 70px auto 0;
    justify-content: space-around;

}

.footerinner ul {
    margin-top: 20px;
}

.footerinner ul li {
    margin-top: 7px;
}

footer img {
    margin-top: 30px;

}