/* ========================================
     common
 ========================================= */
 :root {
    --header: 60px;
    --header-pc: 100px;
    --bg-color: #42625F;/* ここでメインカラーの変更可 */
}

html {
    font-size: 62.5%;
    width: 100%;
    /* height: 100%; */
    box-sizing: border-box;
    /* background-image: url("img/common/miyukino_background.png"); */
    background-image: url("../img/top/top-img.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.9);
    background-blend-mode: lighten;
    overflow: hidden;
    scroll-padding-top: 160px;
    /* scroll-padding-top: 500px; */
}

body {
    color: #333333 !important;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif !important;
    font-weight: 500 !important;
    font-size: 1.6em !important;
    line-height: 2.4rem !important;
    max-width: 1920px !important;
    width: 100% !important;
    margin: 0 auto !important;
    box-shadow: 0 1.9px 2.5px rgba(0, 0, 0, 0.057), 0 5px 6.1px rgba(0, 0, 0, 0.076), 0 10.1px 11.4px rgba(0, 0, 0, 0.086), 0 19.2px 19.8px rgba(0, 0, 0, 0.092), 0 38.4px 34.8px rgba(0, 0, 0, 0.1), 0 101px 74px rgba(0, 0, 0, 0.13) !important;
    overflow: hidden ;
    border: none !important;
    padding: 0px 0px !important;
    overflow: hidden;
    /* color: #333333;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: 500;
    font-size: 1.6em;
    line-height: 2.4rem;
    max-width: 1920px;
    margin: 0 auto;
    box-shadow:
        0 1.9px 2.5px rgba(0, 0, 0, 0.057),
        0 5px 6.1px rgba(0, 0, 0, 0.076),
        0 10.1px 11.4px rgba(0, 0, 0, 0.086),
        0 19.2px 19.8px rgba(0, 0, 0, 0.092),
        0 38.4px 34.8px rgba(0, 0, 0, 0.1),
        0 101px 74px rgba(0, 0, 0, 0.13);
    overflow: hidden; */
}

section h2 {
    font-size: 2.4rem;
}

.none {
    display: none;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

/* 個別ページ上部のラベル */
.page-title-h1 {
    font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
    font-weight: normal;
    font-size: 4.0rem;
    width: 100%;
    height: 120px;
    color: #ffffff;
    background-color: var(--bg-color);

    display: flex;/* 上下中央揃えにするためのflex */
    align-items: center;        /* 縦中央 */
    justify-content: center;    /* 横中央 */

    text-align: center;
    margin: 0 0 30px;
    padding: 0;
}

@media screen and (max-width:767px) {
    html {
        scroll-padding: 0px;
        overflow: visible;
    }
    body{
        overflow: visible;
    }
    .page-title-h1 {
        font-size: 1.8rem;
        height: 40px;
    }
}
