/* ************************************************************* */
/* 特別な指定がない場合、すべてのFontを Noto Sans JP にするための要素 */
/* ************************************************************* */

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

html,
body {
    font-family: 'Noto Sans JP', sans-serif;
    overflow-x: hidden; /* ← left/right scroll fix */
}

/* ************************************************* */
/* ヘッダーをモバイル版とPC版で分けて表示するためのベース */
/* ************************************************* */

/* モバイル版で表示 */
header-global-nav {
    display: none;
}

header-global-nav-mob {
    display: block;
}

/* PC版で表示 */
@media (min-width: 768px) {
    header-global-nav {
        display: block;
    }

    header-global-nav-mob {
        display: none;
    }
}

/* ********************************** */
/* 画面背景を利用するときのためのクラス名 */
/* ********************************** */

.img-background {
    background-color: #f5edd4;
    background-image:
        url(/img/background/background-white.svg),
        url(/img/background/background-brown.svg);
    background-position: left top, right top;
    background-repeat: repeat-y, repeat-y;
}

/* ************************************************** */
/* 各種画面のトップのTitleのデザインを共通化するための要素 */
/* ************************************************** */

.title {
    font-size: 40px;
    text-align: center;
    padding: 20px;
    margin: 30px auto;
    background-color: #CC9D2D;
    font-weight: 700;
    color: #FFF;
    font-family: 'Noto Sans JP', sans-serif;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 600px) {
    .title {
        font-size: 28px;
        padding: 20px;
        margin-top: 50px;
    }
}


/* ============================================ */

.slide-wrapper {
    width: 100% !important;
    display: flex !important;
    background-color: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden !important;
}

.slide-inner {
    width: 100% !important;
    overflow: hidden !important;
}

.slide {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    height: auto !important;
}

.box1,
.box2 {
    width: 50% !important;
    flex: 0 0 50% !important;
    overflow: hidden;
    display: block;
    min-width: 0;
}

.box1 a,
.box2 a {
    display: block;
    width: 100%;
}

.box1 picture,
.box2 picture {
    display: block;
    width: 100%;
}

.box1 .banner-img,
.box2 .banner-img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover;
}

/* Slider OFF */
.prev,
.next,
.indicator {
    display: none !important;
}

/* Mobile: Image1 ue / Image2 shita */
@media screen and (max-width: 767px) {
    .slide {
        flex-direction: column !important;
        height: auto !important;
    }

    .box1,
    .box2 {
        width: 100% !important;
        flex: 0 0 100% !important;
        height: auto !important;
    }

    .box1 .banner-img,
    .box2 .banner-img {
        width: 100% !important;
        height: auto !important;
    }
}