@charset "utf-8";

html {
    max-width: 100%;
    /* nav要素が右スクロールで見えてしまう現象を解決 */
    overflow-x: hidden;
}

body {
    font-family: 'Noto Sans JP', "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    text-align: center;
    box-sizing: border-box;


    /* スマホ画面でのスクロールを解決 */
}

a {
    text-decoration: none;
}

a:hover {
    transition: 0.5s;
}

img {
    width: 100%;
}

ol,
ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0;
}

.hero {
    width: 100%;
    margin-bottom: 0px;
}

.hero-image {
    width: 100%;
}

.main {
    max-width: 1300px;
    width: 100%;
    padding: 2% 2%;
    margin: 0 auto;
}


/* ============================
ヘッダー
============================ */

.header {
    margin: 0px;
    padding: 1% 2%;
    background-color: #074097;
    position: fixed;
    border-top: 1px solid #074097;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
    height: 75px;
}

.header-wrapper {
    max-width: 1500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: inherit;
    margin-right: auto;
    margin-left: auto;
    padding: 0 20px;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}


.header-h1 {
    margin: 0px;
    align-items: center;
    width: 18%;
}

.header-image {
    width: 100%;
}

@media screen and (max-width: 700px) {
    .header-h1 {
        width: 35%;
    }
}

/* ============================
ヘッダーのボタン
============================ */

.hamburger-button {
    position: relative;
    appearance: none;
    border: none;
    background-color: #074097;
    width: 50px;
    cursor: pointer;
    height: 65px;
    border: 0;
    padding: 0;
    margin: 0;
}

.hamburger-button:hover {
    cursor: pointer;
}

.hamburger-button span,
.hamburger-button span::after,
.hamburger-button span::before {
    position: absolute;
    display: block;
    background-color: #fff;
    content: "";
    height: 3px;
    width: 100%;
    z-index: 9999;
    transition: 0.5s
}

.hamburger-button span::after {
    bottom: -12px;
}

.hamburger-button span::before {
    top: -12px;
}

.hamburger-button.open span {
    background-color: transparent;
    transition: 0.5s
}

.hamburger-button.open span::after {
    transform: rotate(-45deg);
    bottom: 0;
    transition: 0.5s
}

.hamburger-button.open span::before {
    transform: rotate(45deg);
    top: 0;
    transition: 0.5s
}

@media screen and (max-width: 700px) {

    .hamburger-button span,
    .hamburger-button span::after,
    .hamburger-button span::before {
        height: 2.5px;
    }

    .hamburger-button span::after {
        bottom: -10px;
    }

    .hamburger-button span::before {
        top: -10px;
    }

    .hamburger-button {
        width: 40px;
    }
}

/* ============================
ヘッダーのナビゲーション
============================ */

.nav {
    display: block;
    position: fixed;
    background-color: #074197;
    border: 1px solid #fff;
    border-right: transparent;
    height: 100vh;
    width: 70%;
    top: 75px;
    right: -100%;
    padding: 10% 0;
    transition: 0.5s;
}

.nav.open {
    /* display: block; */
    /* transform: translateX(40%); */
    right: 0;
    transition: 0.5s;
}

.nav-list {
    text-align: left;
}

.nav-item {
    font-weight: bold;
    margin-bottom: 20px;
    border-bottom: 1px solid #fff;
}

.nav-link {
    display: block;
    color: #fff;
    font-size: min(2.7vw, 28px);
    padding: 2.5% 10%;
}

.nav-link:hover {
    background-color: #fff;
    color: #074097;
}

@media screen and (max-width: 700px) {
    .nav {
        padding: 5% 0;
    }

    .nav-item {
        margin-bottom: 15px;
    }

    .nav-link {
        font-size: min(4vw, 45px);
    }
}


/* ============================
ヒーロー
============================ */

.hero {
    margin-top: 75px;
    width: 100%;
}

/* ============================
キャンペーン
============================ */

.section {
    width: 100%;
    background-color: #eaeef8;
    background-image: linear-gradient(90deg, #1f7d98, #fff, #b87520);
    padding: 2rem;
    margin-bottom: 2rem;
}

.section-headline {
    color: #fff;
    background-color: #e50012;
    font-size: min(3.5vw, 45px);
    padding: 1rem 0;
    margin-top: 0px;
    margin-bottom: 2rem;
}

.camp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.camp-item:nth-child(1) {
    width: 100%;
}

.camp-item:nth-child(2) {
    width: 100%;
}

.camp-item {
    margin-bottom: 1rem;
}

.camp-item.ori {
    width: 49%;
    margin-bottom: 0px;
}

.camp-item:last-child {
    margin-bottom: 0px;
}

.careful {
    font-size: min(1.8vw, 17px);
    margin-bottom: 0px;
    text-align: left;
}

.careful.white {
    color: #fff;
}

.docomo-link {
    width: 100%;
    display: block;
    padding: 2%;
    border-radius: 50px;
    color: #fff;
    background-color: #074097;
    font-weight: bold;
    font-size: min(3.5vw, 45px);
    margin: 0.5rem auto;
    box-shadow: #011b43 3px 3px 0px;
    transition: .4s;
}

.docomo-link:hover {
    box-shadow: 0px 0px 0px;
    transition: .4s;
}



@media screen and (max-width: 750px) {
    .section {
        padding: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .section-headline {
        font-size: min(4vw, 45px);
        padding: 0.5rem 0;
        margin-bottom: 0.5rem;
    }

    .camp-item:nth-child(1) {
        width: 100%;
    }

    .camp-item:nth-child(2) {
        width: 100%;
    }

    .camp-item {
        margin-bottom: 0.5rem;
    }
}

/* ============================
つるやガチャ
============================ */
.gacha {
    width: 100%;
    background-color: #eaeef8;
    margin-bottom: 2rem;
}

.gacha>div {
    padding: 2rem;
}

.gacha:hover {
    /* padding: 1.15% 4.35%; */
    /* opacity: 0.6;
    transition: .2s; */
}

.gacha-link {
    display: block;
}

/* .gacha-link:hover {
    padding: 1%;
} */
.gacha-image {
    width: 100%;
    border-radius: 10px;
    box-shadow:
        4px 4px 4px rgb(0 0 0 / 24%);
    transition: .2s;
}

.gacha-image:hover {
    opacity: 0.6;
    transition: .2s;
}

/* .gacha-image:hover {
    transform: translate(0px, -12px);
    opacity: 0.6;

} */

@media screen and (max-width: 750px) {
    .gacha {
        margin-bottom: 0.5rem;
    }

    .gacha>div {
        padding: 0.5rem;
    }
}


/* ============================
掲載商品一覧
============================ */

.prod-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.prod-tab-item {
    width: 25%;
    font-weight: bold;
    font-size: min(2.7vw, 35px);
    background-color: #a1cdf3;
    color: #444;
    border: solid 3px #a1cdf3;
    padding: 0.5rem 0;
    border-bottom: none;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.prod-tab-item.bottom {
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top: none;
    border-bottom: solid 3px #a1cdf3;
}

.prod-tab-item:hover {
    cursor: pointer;
}

.prod-tab-item.active {
    background-color: #ffffffb8;
    border:  #ffffffb8;
    border-bottom: solid 3px #ffffffb8;
    color: #444;
}

.prod-tab-item.bottom.active {
    background-color: #a1cdf3;
    color: #444;
}

.product {
    background-color: #ffffffb8;
    padding: 2rem;
}

.prod-panel {
    display: none;
}

.prod-panel.active {
    display: block;
}

.prod-panel-item {
    width: 100%;
    margin-bottom: 2rem;
}

.prod-panel-item:nth-child(4)>div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.prod-panel-item:last-child {
    margin-bottom: 0;
}

.panel-image {
    width: 100%;
}

.panel-image-fe {
    width: 49%;
}

.online-link {
    display: block;
    color: #fff;
    background-color: #074097;
    font-size: min(2.0vw, 20px);
    font-weight: bold;
    padding: 1rem 0;
    width: 90%;
    border-radius: 30px;
    margin: 1.5rem auto 0;
    transition: 0.5s;
}

.online-link:hover {
    color: #074097;
    background-color: #fff;
}


@media screen and (max-width: 700px) {
    .prod-tab {
        gap: 0.3rem;
    }

    .prod-tab-item {
        width: 25%;
        font-size: min(3.2vw, 45px);
        border: solid 1.5px #a1cdf3;
        border-bottom: none;
        padding: 0.3rem 0;
    }

    .product {
        padding: 0.7rem;
    }

    .prod-panel-item {
        width: 100%;
        margin-bottom: 1rem;
    }

    .prod-panel-item:nth-child(4)>div {
        flex-direction: column;
        gap: 0.5rem;
    }

    .panel-image-fe {
        width: 100%;
    }

    .online-link {
        font-size: min(3.8vw, 45px);
        padding: 0.5rem 0;
        margin: 0.7rem auto 0;
    }
}

/* ============================
YouTube動画
============================ */


.movie {
    width: 100%;
    /* padding-bottom: 2rem; */
}

.movie-wrap {
    width: 100%;
    max-width: calc(810px + 8rem);
    /* padding: 0 2rem; */
    margin: 0 auto;
    border-radius: 10px;
}

.movie-iframeWrap {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.35%;
}

.movie-iframeWrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 767px) {
    .movie {
        padding-bottom: 0.5rem;
    }

    .movie-wrap {
        max-width: 100%;
    }
}

/* ============================
地域限定商品
============================ */

.area {
    margin: 2rem 0 0;
}

.area-image {}

.area-tab {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
}

.area-tab-item {
    width: 25%;
    font-weight: bold;
    font-size: min(2.7vw, 35px);
    background-color: #fff;
    color: #ffffff76;
    padding: 0.5rem 0;
    border-bottom: none;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    cursor: pointer;
}

.area-tab-item:nth-child(1) {
    background-color: #dd5b55;
    border: solid 3px #dd5b55;
}

.area-tab-item:nth-child(2) {
    background-color: #e6b919;
    border: solid 3px #e6b919;
}

.area-tab-item:nth-child(3) {
    background-color: #6db442;
    border: solid 3px #6db442;
}

.area-tab-item:nth-child(4) {
    background-color: #5a9ad3;
    border: solid 3px #5a9ad3;
}

/* activeクラスを追加 */
.area-tab-item.active {
    color: #fff;
}


.area-contents {}

.area-panel {
    display: none;
    padding: 2rem;
}

.area-panel:nth-child(1) {
    background-color: #dd5b55;
}

.area-panel:nth-child(2) {
    background-color: #e6b919;
}

.area-panel:nth-child(3) {
    background-color: #6db442;
}

.area-panel:nth-child(4) {
    background-color: #5a9ad3;
}

/* activeクラスを追加 */
.area-panel.active {
    display: block;
}

@media screen and (max-width: 700px) {
    .area {
        margin: 0.5rem 0;
    }

    .area-tab {
        gap: 0.5rem;
    }

    .area-tab-item {
        width: 25%;
        font-size: min(3vw, 45px);
        padding: 0.3rem 0;
        border-bottom: none;
    }

    .area-panel {
        padding: 0.7rem;
    }
}


/* ============================
新製品クラブ
============================ */

.section.secound {
    background-color: #e50012;
    padding: 1rem 2rem 2rem;
    margin-bottom: 2rem;
}

.section-headline.secound {
    margin-bottom: 1rem;
}

.club-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.club-item {
    width: 48.5%;
}

.club-item:nth-child(1) {
    margin-bottom: 1rem;
}

.club-item:nth-child(2) {
    margin-bottom: 1rem;
}

@media screen and (max-width: 700px) {
    .section.secound {
        padding: 0.5rem 1rem 1rem;
        margin-bottom: 2rem;
    }

    .section-headline.secound {
        margin-bottom: 0.5rem;
    }

    .club-list {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .club-item {
        width: 100%;
        margin-bottom: 1rem;
    }

    .club-item:nth-child(4) {
        margin-bottom: 0;
    }

}



/* ============================
店舗一覧
============================ */

.shop {
    width: 100%;
    margin: 4rem auto 8rem;
    text-align: center;
}

.shop>div {
    /* width: 80%; */
    display: flex;
    text-align: center;
    justify-content: center;
}

.shop-link {
    text-align: center;
    width: 80%;
    color: #fff;
    background-color: #e31616;
    font-weight: bold;
    font-size: min(3.5vw, 40px);
    padding: 1.2% 4%;
    border-radius: 50px;
}

.shop-link:hover {
    opacity: 0.7;
}

.shop-link>span:hover {
    transform: translate(5px, 0px);
}

@media screen and (max-width: 700px) {
    .shop {
        margin: 2rem auto 4rem;
    }

    .shop-link {
        font-size: min(4vw, 45px);
        padding: 1.2% 4%;
    }
}



/* ============================
dポイント規約
============================ */


.point {
    max-width: 1300px;
    width: 100%;
    padding: 2% 2%;
    margin: 0 auto;
    text-align: left;
}

.point>p {
    font-size: min(1.8vw, 15px);
    margin-bottom: 0px;
    text-align: left;

}




/* ============================
フッター
============================ */
.footer {
    text-align: center;
    background-color: #7c7c7c;
    margin-top: 20px;
    padding: 5%;
}

.footer>div {
    width: 15%;
    text-align: center;
    margin: 0px auto;
}

.logo-link:hover {
    opacity: 0.7;
}

.footer-list {
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0;
}

.footer-item {
    width: 8%;
}

.footer-link:hover {
    opacity: 0.7;
}

.sns-logo {
    width: 100%;
}

.policy-link {
    color: #fff;
    font-size: 1.2vw;
}

.policy-link:hover {
    opacity: 0.7;
}

.footer-p02 {
    color: #fff;
    font-size: 1.2vw;
}

@media screen and (max-width: 650px) {
    .footer>div {
        width: 30%;
    }

    .footer-item {
        width: 14%;
    }

    .policy-link {
        font-size: 2vw;
    }

    .footer-p02 {
        font-size: 2vw;
    }
}