/* サイト全体に関わるCSS */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700;900&family=Noto+Serif+JP:wght@400;700;900&display=swap');

:root {
    --PrimaryColor: #333;
    --SecondaryColor: #999;
    --LightGray1: #eee;
    --LightGray2: #e3e3e3;
    --Blue: #334bb5;
    --Blue1: #ebedf8;
    --Blue2: #d6dbf0;
    --Blue3: #c2c9e9;
    --Blue4: #adb7e1;
    --Blue5: #99a5da;
    --Blue6: #8593d3;
    --Blue7: #7081cb;
    --Blue8: #5c6fc4;
    --Blue9: #475dbc;
    --Blue11: #2e44a3;
    --Blue12: #293c91;
    --Blue13: #24357f;
    --Blue14: #1f2d6d;
    --Blue15: #1a265b;
    --Blue16: #141e48;
    --Blue17: #0f1736;
    --Blue18: #0a0f24;
    --Blue19: #050812;
    /* ナビゲーション */
    --NavIconColor: #555; 
    --NavLabelColor: #777;
    /* タイトル */
    --H2Color: #555;
    --H3Color: #777;
    --H4Color: #777;
    --H2Color: var(--Blue14);
    --H3Color: #4d5271;
    /* 新規知財相談 */
    --ListCardClient: #fff;
    --ListCardPatentAttorney: #fff;
    /* ボタン */
    --PrimaryButtonColor: var(--Blue);
    /* Notice */
    --NoticeColor: #b51919;
    --SubTextColor: #777;
}

* {
    font-family: 'Noto Sans JP', sans-serif;
    box-sizing: border-box;
}

/* h1要素のスタイル・リセット */
h1 {
    margin: 0;
    padding: 0;
}

h2.SectionHeading {
    width: 100%;
    padding: 0 10px 10px 5px;
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
    color: var(--H2Color);
    border-bottom: 5px solid #ffffffaa;
}

h3.SectionHeading {
    width: 100%;
    padding: 0 10px 0 5px;
    color: var(--H3Color);
}

h4.SectionHeading {
    width: 100%;
    padding: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    font-size: 15px;
    color: var(--H4Color);
    font-weight: normal;
}

/* フォーム */

input[type="text"],
input[type="email"],
input[type="password"]
{
    width: 100%;
    font-size: 15px;
    padding: 5px 10px;
}

textarea {
    width: 100%;
    padding: 5px 10px;
    font-size: 15px;
    resize: none;
}

select {
    width: 100%;
    padding: 5px;
    /* Safari対応 */
    /* appearance: menulist-button;
    height: 35px; */
}

/* ボタン */

.Button {
    padding: 10px 20px;
    font-size: 15px;
    color: #fff;
    border: 1px solid;
    background-color: var(--PrimaryButtonColor);
    border-radius: 5px;
    width: fit-content;
    margin: auto;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.Button.LargeButton {
    width: 100%;
    text-align: center;
}

.Button.LightButton {
    color: var(--PrimaryButtonColor);
    background-color: transparent;
}

.Button.NoticeButton {
    color: var(--NoticeColor);
}

.Button.LeftAligned {
    margin: unset;
}

.Button[disabled] {
    cursor: not-allowed;
    opacity: 0.7;
}

.UnderlinedButton {
    padding: 3px 5px;
    font-size: 15px;
    border: none;
    width: fit-content;
    color: var(--PrimaryButtonColor);
    background-color: transparent;
    text-decoration: underline;
}