@charset "utf-8";

/* header */
/*========= 上部固定させるためのCSS ===============*/
#header {
    height: 8rem;
    /*高さ指定*/
    width: 100dvw;
    /*横幅指定*/
    /*以下はレイアウトのためのCSS*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fefcfa;
    color: #fff;
    text-align: center;
    padding-left: 4.8rem;
    border-bottom: 0.1rem solid #1c1b1a;
}

/*JSを使いfixedクラスが付与された際の設定*/
#header.fixed {
    position: fixed;
    /*fixedを設定して固定*/
    z-index: 999;
    /*最前面へ*/
    top: 0;
    /*位置指定*/
    left: 0;
    /*位置指定*/
}


/*========= 以下は検証用のレイアウトのためのCSS ===============*/
/* 中央のグロナビ */
nav ul#g-navi {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul#g-navi li a {
    text-decoration: none;
    color: #1c1b1a;
    padding: 0 2.8rem;
}

nav ul#g-navi li a {
    display: block;
    text-justify: inter-ideograph;
    font-size: 1.6rem;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: #1c1b1a;
    overflow-wrap: break-word;
    /* max-width: 720px; */
    font-feature-settings: "palt";
    text-transform: uppercase;
}

/* コンバージョンボタン */
nav ul#conversion {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul#conversion li a {
    display: flex;
    justify-content: center;
    /*左右中央揃え*/
    align-items: center;
    /*上下中央揃え*/
    text-decoration: none;
    width: 19.4rem;
    height: 8rem;
    text-justify: inter-ideograph;
    font-size: 1.4rem;
    font-family: "noto-sans-cjk-jp", sans-serif;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.05em;
    /* color: #1c1b1a; */
    overflow-wrap: break-word;
    max-width: 720px;
    font-feature-settings: "palt";
    text-transform: uppercase;
}

/* 追記 */
#header{
    position: relative;
    /* z-index: 200; */
    width: calc(100vw - calc(100vw - 100%));
}

nav ul#g-navi li ul.service-nav-wrap a{
    padding: 1.6rem;
}

/* スマホ版 */
@media screen and (max-width:480px) {


    #header {
        height: 6.4rem;
        padding-left: 3rem;
    }


}