@charset "UTF-8";

body {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
    padding-top: 70px;
    z-index: 1;
    background-color: #FFF8DB;
    font-family: '小塚ゴシック Pro', 'Kozuka Gothic Pro', sans-serif;
    letter-spacing: 3px;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

.my_shadow {
    box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
}


.pc {
    max-width: 1280px;
    border-right: 0px solid #1AA0EA;
    border-left: 0px solid #1AA0EA;
    display: block;
    margin: 0 auto;
}


.sp {
    display: none;
}

/* ナビゲーションメニュー */

header {
    background-color: #FED406;
    width: 100%;
    height: 70px;
    position: fixed;
    /* ウィンドウを基準に画面に固定 */
    top: 0;
    /* 上下の固定位置を上から0pxにする */
    left: 0;
    /* 左右の固定位置を左から0pxにする */
    z-index: 2;
}

.my_nav_logo {
    background-image: url(../img/pc_logo.svg);
    background-repeat: no-repeat;
    background-position: center;
}

@media(max-width: 991px) {
    .my_nav_logo {
        background-image: url(../img/sp_logo.svg);
        background-repeat: no-repeat;
        background-position: center;
        width: 50px !important;
    }
}

.contents {
    background-color: #FED406;
    padding-bottom: 9rem;
    border-right: 0.8vw solid #FFF;
    border-left: 0.8vw solid #FFF;
}

@media(max-width: 991px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .contents {
        background-color: #FED406;
        padding-bottom: 6rem;
        border-right: 2.3vw solid #FFF;
        border-left: 2.3vw solid #FFF;
    }
}

/* スライダー */

.contents {
    max-width: 1280px;
    border-right: 0px solid #1AA0EA;
    border-left: 0px solid #1AA0EA;
    margin: 0 auto;
}

.slide_items img,
.slide_items_2 img {
    display: block;
    width: 95%;
    object-fit: cover;
}

/* Q&A */

.qa {
    background-color: #DCF6FF;
    max-width: 1280px;
    border-right: 0px solid #1AA0EA;
    border-left: 0px solid #1AA0EA;
    margin: 0 auto;
}

.contact {
    max-width: 1280px;
    border-right: 0px solid #1AA0EA;
    border-left: 0px solid #1AA0EA;
    margin: 0 auto;
}

/* footer */

footer {
    background-color: #00A0E9;
    color: #FFFFFF;
    max-width: 1280px;
    border-right: 0px solid #1AA0EA;
    border-left: 0px solid #1AA0EA;
    margin: 0 auto;
    font-size: 12px;
}

.mybg_y {
    background-color: #FED406;
    color: #000;
    font-size: 12px;
}


@media(min-width:) {
        {}
}