@charset "UTF-8";

/* ＝＝＝＝＝＝CSSコピー上部＝＝＝＝＝ */
html {
    font-size: 100%;
}

/* フォントを決める */
body {
    font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", sans-serif;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

/* デザイン */
header,
footer {
    background-color: #6EDBC8;
}

.h_container,
.wraper {
    width: 80%;
    margin: 0 auto;
}


/* ヘッダー */

header {
    position: sticky;
    z-index: 99999;
    top: 0;
}

.h_container {
    height: 120px;
    display: flex;
    justify-content: space-between;
}

.logo {
    width: 90px;
}

.pc_nav ul {
    display: flex;
    gap: 35px;
}

.pc_nav {
    margin-top: 46.5px;
    margin-bottom: 46.5px;
}

.pc_nav a {
    color: #fff;
}

.pc_nav a:hover {
    color: #f2d6a3
}

/* ＝＝＝＝＝＝CSSコピー上部ここまで＝＝＝＝＝ */




/* タイトル＆スライダー */


.tp_container {
    height: 675px;
    overflow: hidden;
}

.topslide img {
    height: 100%;
    width: 100%;
    object-fit: cover;

}

.slick-track {
    display: flex;
}

.slick-slide {
    height: 675px;
}

.tp_container {
    position: relative;
}

.tp_container h1 {
    margin-top: 50px;
    position: absolute;
    top: -1px;
}


/* メイン */
.main_home {
    text-align: center;

}

.main_home h2 {
    margin-bottom: 60px;
}



/* 世界の朝ごはん */
.worldbf {
    background-color: #BDE1DA;
}

.worldbf h2 img {
    margin-top: 100px;
}

.worldbf ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
}

/* TOPICS */
.topics {
    background-image: url(../image/bg_top.png);
    background-size: cover;
    background-position: 0 -180px;
    padding-bottom: 100px;
}

.topics img {
    margin-top: 100px;
}

.topics ul {
    width: 500px;
    margin: 0 auto;
}

.topics ul li {
    display: flex;
    padding: 25px 0;
    border-bottom: 2px solid #282929
}

.topics ul li a {
    position: relative;
    display: flex;
    padding-right: 30px;
}

.topics ul li p {
    padding-left: 60px;
}

/* EVENTフォトスペース */
/* .event {
    margin-top: 100px;
} */

/* 物販 */
.sell {
    margin-top: 100px;
    background-image: url(../image/home-back-botom.png);
    background-size: cover;
}

.sell img {
    width: 809px;
    margin-bottom: 129px;
}




/* ＝＝＝＝＝＝CSSコピー下部＝＝＝＝＝ */
/* 国旗 */
.flag_home {
    background-color: #BDE1DA;
}

.flag img {
    width: 100%;
    margin: 0 auto;
    display: block;
}


/* フッター */


footer ul {
    display: flex;
    justify-content: center;
    gap: 36px;
}

footer img {
    object-fit: contain;
}

footer ul li {
    margin-top: 35px;
}

footer small {
    display: flex;
    justify-content: center;
    margin-top: 5px;
    padding: 30px 0;
    color: #fff;
}



/* 上へ戻るボタン */
.go-top a::before {
    content: "";
    color: #CCBB70;
    /* ボタンの場所を指定 */
    display: inline-block;
    border-width: 3px 0 0 3px;
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    position: relative;
    bottom: 60px;
    left: 40px;
    position: absolute;

}

.go-top {
    position: fixed;
    bottom: 0px;
    right: 0px;
    background-image: url(../image/back_to_top.png);
    background-position: center;
    background-size: contain;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.go-top a {
    color: #CCBB70;
    display: block;
    /* なんかこれ追加しないとdisplayが効かない；； */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ＝＝＝＝＝＝CSSコピー下部ここまで＝＝＝＝＝ */




/* レスポンシブ */
/* PC用 */
@media(min-width:769px) {
    .sp-only {
        display: none;
    }
}

/* スマホ用 */
@media(max-width:768px) {
    .pc-only {
        display: none;
    }

    body {
        font-size: 0.875rem;
    }



    /* ＝＝＝＝＝＝CSSコピーメディアクエリ＝＝＝＝＝ */
    /* ハンバーガーメニュー */
    /* 閉じているとき */
    header nav {
        background-color: #6EDBC8;
        position: fixed;
        top: 47px;
        bottom: 0;
        right: -100%;
        left: 100%;
        transition: transform 0.5s ease-in-out;
        padding-top: 80px;
        height: 480px;
    }

    /* 開いているとき */

    body.open nav {
        transform: translateX(-100%);
    }

    nav ul {
        background-color: #6EDBC8;
        font-size: 1.3rem;
        list-style: none;
        height: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    nav ul a {
        color: #fff;
    }

    nav ul a:hover {
        color: #f2d6a3;
    }

    .pc_nav {
        z-index: 10000;
    }

    /* ハンバーガーボタン */
    .hum-button {
        width: 50px;
        height: 50px;
        /* border: 1px solid currentColor; */
        margin-top: 24px;
    }

    .hum-button-line {
        display: flex;
        height: 1px;
        width: 30px;
        background-color: currentColor;
        margin: auto;
        position: relative;
        color: #fff;
        /* ポジション基準 */
    }

    .hum-button-line::before,
    .hum-button-line::after {
        display: block;
        content: '';
        height: 100%;
        width: 100%;
        background-color: currentColor;
        position: absolute;
        /* ポジション動かしたい方 */
    }

    .hum-button-line::before {
        top: -8px;
    }

    .hum-button-line::after {
        top: 8px;
    }

    /* ↓メニューが開いている状態のとき */
    body.open .hum-button-line {
        background-color: transparent;
        /* ↑背景が透明ということ */
    }

    body.open .hum-button-line::before {
        transform: rotate(45deg);
        top: 0;
    }

    body.open .hum-button-line::after {
        transform: rotate(-45deg);
        top: 0;
    }

    /* ＝＝＝＝＝＝CSSコピーメディアクエリここまで＝＝＝＝＝ */


    /* デザイン */
    .h_container,
    .wraper {
        width: 90%;
        margin: 0 auto;
    }

    /* タイトル＆スライダー */

    .tp_container {
        height: 452px;
        overflow: hidden;
    }

    .slick-slide {
        height: 452px;
    }

    .tp_container h1 {
        margin-top: 70px;
        position: absolute;
        top: -1px;
    }

    .title {
        width: 350px;
    }

    /* ヘッダー */
    .h_container {
        height: 100px;
        display: flex;
        justify-content: space-between;
    }

    .logo {
        width: 75px;
    }



    /* メイン */
    main {
        text-align: center;

    }

    main h2 {
        margin-bottom: 30px;
    }



    /* 世界の朝ごはん */
    .worldbf {
        background-color: #BDE1DA;
    }

    .worldbf h2 img {
        margin-top: 50px;
    }

    .worldbf ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }

    /* TOPICS */
    .topics {
        background-image: url(../image/bg_top.png);
        background-size: cover;
        background-position: 0 -180px;
        padding-bottom: 100px;
        font-size: 0.875rem;
    }

    .topics img {
        margin-top: 100px;
    }

    .topics ul {
        width: 90%;
        margin: 0 auto;
    }

    .topics ul li {
        display: flex;
        padding: 25px 0;
        border-bottom: 2px solid #282929;
        text-align: left;

    }

    .topics ul li a {
        position: relative;
        display: flex;
        padding-right: 15px;
    }

    .topics ul li p {
        padding-left: 25px;

    }

    /* 物販 */
    .sell {
        margin-top: 100px;
        background-image: url(../image/home-back-botom.png);
        background-size: cover;
    }

    .sell img {
        width: 809px;
        margin-bottom: 100px;
    }




}