@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;700&display=swap");


/**************************************************/
/* リセット */
/**************************************************/
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
    border: 0;
    font: inherit;
    font-size: 100%;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}

html {
    line-height: 1;
    scroll-behavior: smooth;
}

html {
    font-size: 62.5%;
}

img {
    max-width: 100%;
    height: auto;
    border: none;
    vertical-align: bottom;
}

a {
    text-decoration: underline;
    color: inherit;
    cursor: pointer;
}

em {
    font-style: normal;
}

ol,
ul {
    list-style: none;
}

li,
dd {
    list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
    display: block;
}

/**************************************************/
/* 色設定（変数） */
/**************************************************/

:root {
    --color-bg: #ffffff;
    --color-bgnote: #eeeeee;
    --color-bgsub: #f4f4f4;
    --color-text: #222222;
    --color-strong: #ffff00;
    --color-notes: #555555;
    --color-inactive: #cccccc;
    --color-link: #1762f1;
    --color-footerlink: #0066ff;
    --color-auorange: #eb5505;
    --color-kddiblue: #0e0d6a;
}



/**************************************************/
/* 基本クラス */
/**************************************************/

body {
    color: var(--color-text);
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 2em;
    line-height: 1.75;
    box-sizing: border-box;
    background-color: var(--color-bg);
    /*  background-image: url("../img/back-bk.png"); */
    /*  background-size: cover; */
}

/* ---------- PC・SPの表示・非表示処理 ---------- */

.none_sp {
    display: block;
}

.none_pc {
    display: none;
}


@media screen and (max-width: 767px) {
    .none_sp {
        display: none;
    }

    .none_pc {
        display: block;
    }
}

/* ---------- au PAY ヘッダー ---------- */

header {
    padding: 5px;
    border-bottom: #CCCCCC 1px solid;
    text-align: center;
}

header img {
    margin: 4px 10px;
    max-width: 120px
}

/* ---------- 全体設定 ---------- */

#wrap {
    max-width: 960px;
    margin: 0 auto;
}

h3 {
    font-size: 200%;
    font-weight: 800;
    text-align: center;
    text-decoration: underline;
    text-decoration-thickness: 0.5em;
    text-decoration-color: rgb(from var(--color-link) r g b / 0.3);
    text-underline-offset: -0.2em;
    text-decoration-skip-ink: none;
    padding: 0.5em;
    margin-top: 1em;
}

@media screen and (max-width: 767px) {
    h3 {
        font-size: 160%;
    }
}

@media screen and (max-width: 767px) {
    .inner {
        margin: auto 10px;
    }
}

strong {
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1.1em;
    text-decoration-color: rgb(from var(--color-strong) r g b / 0.5);
    text-underline-offset: -0.9em;
    text-decoration-skip-ink: none;
}

ul {
    margin-bottom: 1.5em;
}

li.notes {
    color: var(--color-notes);
    font-size: 80%;
    line-height: 1.5;
    margin-bottom: 0.5em;
    padding-left: 1em;
    text-indent: -1em;
}

li.notes::before {
    content: "※" !important;
}

/* ---------- flex処理 ---------- */

.flex {
    width: 100%;
    padding: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    text-align: center
}

.flex>* {
    text-align: center
}

/* ---------- リンクボタン ---------- */

.btn_link span {
    display: block;
    max-width: 640px;
    width: 100%;
    text-align: center;
    font-size: 1em;
    margin: 0 auto;
}

.btn_link span a {
    display: block;
    position: relative;
    background: var(--color-link);
    color: var(--color-bg);
    border: var(--color-link) solid 0.2em;
    text-decoration: none;
    font-weight: 600;
    padding: 1em 2em 1em 1em;
    -moz-border-radius: 2em;
    border-radius: 2em;
    box-sizing: border-box;
    transition: 0.2s cubic-bezier(0.37, 0, 0.63, 1);
}

.btn_link span a:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 0.7em;
    width: 0.7em;
    height: 0.7em;
    margin: -0.3em 0.8em 0 0;
    border-top: solid 0.15em var(--color-bg);
    border-right: solid 0.15em var(--color-bg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media screen and (min-width: 767px) {
    .btn_link span a:hover {
        box-sizing: border-box;
        color: var(--color-link);
        background: var(--color-bg);
        border: var(--color-link) solid 0.2em;
        letter-spacing: 0.15em;
        font-weight: 700;
    }
}

/* ---------- 重要インフォメーション（早期終了など） ---------- */

#information {
    padding: 5px;
    text-align: center;
    border-bottom: var(--color-bg) 4px solid;
    background: #C50018;
}

#information p {
    color: #FFFFFF;
    font-size: 1em;
    font-weight: 700;
}

/* ---------- メインビジュアル早期終了表示 ---------- */

.end {
    background-color: #000000;
    position: relative
}

.end img {
    filter: alpha(opacity=40);
    -moz-opacity: 0.4;
    opacity: 0.4
}

.endtxt {
    display: inline-block;
    color: #FFFFFF;
    font-size: 3em;
    font-weight: bold;
    letter-spacing: 0.25em;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    margin: -1.6em 0 0 -50%
}

@media screen and (max-width: 767px) {
    .endtxt {
        font-size: 1.5em;
    }
}

/* ---------- メインビジュアル下コメント ---------- */

.addcomment {
    width: 100%;
    text-align: center;
    color: var(--color-auorange);
    font-weight: 600;
    font-size: 1.25em;
    line-height: 1.5em;
    margin-top: 1em;
}

.addcomment::before {
    content: "＼";
    font-size: 1.5em;
    font-weight: 300;
}

.addcomment::after {
    content: "／";
    font-size: 1.5em;
    font-weight: 300;
}

.addcomment em {
    font-size: 1.5em;
}

@media screen and (max-width: 767px) {
    .addcomment {
        position: relative;
        font-size: 0.75em;
    }

    .addcomment::before {
        position: absolute;
        top: 25%;
        left: 10px;
        font-size: 2.5em;
    }

    .addcomment::after {
        position: absolute;
        top: 25%;
        right: 10px;
        font-size: 2.5em;
    }
}


/* ---------- キャンペーン内容・還元内容 ---------- */

.cp_spec {
    text-align: center;
}

/* ---------- 還元上限 ---------- */

.cp_limit {
    text-align: center;
}

/* ---------- 還元残高の確認方法 ---------- */

.cp_remainder {
    text-align: center;
}

ol.cp_remainder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 1em 0 1em;
    background: var(--color-bgsub);
    border-radius: 0.5em;
}

.remainder_steps {
    width: 320px;
    font-size: 0.75em;
    padding: 1em 0 1em;
}

.remainder_steps span {
    font-size: 2em;
    font-weight: 700;
    line-height: 1.0;
}

.remainder_steps_img {
    margin: 0.5em 0 0.5em;
    width: 320px;
    height: 400px;
    position: relative;
}

.remainder_steps_screen {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.remainder_steps_arrow {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    /* --color-linkに適用したカラーコードをジェネレーターにかけて記述する */
    filter: brightness(0) saturate(100%) invert(30%) sepia(95%) saturate(3709%) hue-rotate(215deg) brightness(97%) contrast(95%);
}

@media screen and (max-width: 767px) {
    ol.cp_remainder {
        flex-wrap: nowrap;
        justify-content: left;
        overflow-x: scroll;
    }

    .remainder_steps {
        min-width: 320px;
    }
}

/* ---------- 対象店舗 ---------- */

.guide {
    text-align: center;
}

.guide_movie {
    margin-top: 15px !important;
    text-align: center;
}

/* ---------- キャンペーン期間 ---------- */

.cp_date {
    text-align: center;
}

/* ---------- 還元について ---------- */

.cp_return {
    text-align: center;
}

/* ---------- 同時開催中のキャンペーン ---------- */

.more {
    text-align: center;
}

.more_brandlist {
    text-align: center;
}

ul.more_brandlist {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

ul.more_brandlist li {
    box-sizing: border-box;
    width: 230px;
    margin: 0 5px 10px;
    padding: 1em 0;
    background: var(--color-bg);
    border-radius: 0.5em;
    border: var(--color-bgnote) 2px solid;
}

ul.more_brandlist li img {
    width: 75%;
}

ul.more_brandlist li p {
    margin-top: 0.5em;
    height: 2em;
    align-content: center;
    line-height: 1;
}

ul.more_brandlist li a {
    text-align: center;
    display: block;
    margin: 0.5em 12.5% 0;
    padding: 0.5em;
    font-size: 0.75em;
    align-content: center;
    color: var(--color-bg);
    line-height: 1.1;
    text-decoration: none;
    border-radius: 2em;
    transition: 0.2s cubic-bezier(0.37, 0, 0.63, 1);
    background-color: var(--color-link);
    border: var(--color-link) solid 0.2em;
}

ul.more_brandlist li i {
    display: none;
}

ul.more_brandlist li.tba {}

ul.more_brandlist li.tba img {
    opacity: 0.5;
}

ul.more_brandlist li.tba p {
    color: var(--color-inactive);
}

ul.more_brandlist li.tba a {
    display: none;
}

ul.more_brandlist li.tba i {
    display: block;
    margin: 0.5em 12.5% 0;
    padding: 0.5em;
    font-size: 0.75em;
    align-content: center;
    color: var(--color-bg);
    line-height: 1.1;
    font-style: normal;
    text-decoration: none;
    border-radius: 2em;
    transition: 0.2s cubic-bezier(0.37, 0, 0.63, 1);
    background-color: var(--color-inactive);
    border: var(--color-inactive) solid 0.2em;
}

ul.more_brandlist li.tba i:before {
    white-space: pre;
    content: "準備中\A";
    font-size: 100%;
}

ul.more_brandlist li.tba i:after {
    content: "開始までお待ちください";
    font-size: 75%;
}


@media screen and (max-width: 767px) {
    ul.more_brandlist li {
        width: calc(50% - 10px);
    }

    ul.more_brandlist li a {
        font-size: 0.6em;
    }

    ul.more_brandlist li.tba i {
        font-size: 0.6em;
    }

    ul.more_brandlist li.tba i:after {
        content: "お待ちください";
    }

}

@media screen and (min-width: 767px) {
    ul.more_brandlist li a:hover {
        box-sizing: border-box;
        color: var(--color-link);
        background: var(--color-bg);
        border: var(--color-link) solid 0.2em;
        letter-spacing: 0.15em;
        font-weight: 700;
    }
}

/* ---------- お問い合わせ窓口 ---------- */

.cp_inquiry {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.5em;
}

.cp_inquiry th {
    width: 5em;
    text-align: right;
}

.cp_inquiry th::after {
    content: "：";
}

.cp_inquiry td {
    width: auto;
    text-align: left;
}

.cp_inquiry span.notes {
    display: block;
    color: var(--color-notes);
    font-size: 80%;
    line-height: 1.5;
    margin-bottom: 0.5em;
    padding-left: 1em;
    text-indent: -1em;
}

.cp_inquiry span.notes::before {
    content: "※" !important;
}

/* ---------- キャンペーン注意事項・au PAY ご利用条件 ---------- */

.ui_accordion {
    max-width: 960px;
    margin-bottom: 1em;
    border-radius: 2em;
    background-color: var(--color-bgnote);
}

.ui_accordion summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    font-weight: 700;
    cursor: pointer;
    transition-duration: 0.2s;
}

.ui_accordion summary::-webkit-details-marker {
    display: none;
}

.ui_accordion summary::before,
.ui_accordion summary::after {
    width: 3px;
    height: .9em;
    border-radius: 5px;
    background-color: var(--color-text);
    content: '';
}

.ui_accordion summary::before {
    position: absolute;
    right: 2em;
    rotate: 90deg;
}

.ui_accordion summary::after {
    transition: rotate .3s;
}

.ui_accordion[open] summary::after {
    rotate: 90deg;
}

.ui_accordion p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: var(--color-text);
    transition: transform 0.2s, opacity .5s;
}

.ui_accordion[open] p {
    transform: none;
    opacity: 1;
}

@media screen and (min-width: 767px) {
    .ui_accordion summary:hover {
        /*    letter-spacing: 0.15em;   */
    }
}

.cp_cautions {
    padding: 1em 2em 2em;
    background-color: var(--color-bgnote);
    border-radius: 2em;
    font-size: 80%;
}

.cp_cautions li {
    color: var(--color-notes);
    margin-top: 0.25em;
    padding-left: 1em;
    text-indent: -1em;
}

.cp_cautions li::before {
    content: "・";
}

.cp_cautions li ul li::before {
    content: "└";
}

/* ---------- ライセンス ---------- */

.license {
    margin-top: 1em;
    padding: 1em 2em;
    border: var(--color-notes) solid 2px;
    border-radius: 2em;
    font-size: 80%;
}

.license li {
    margin-top: 0.25em;
    padding-left: 1em;
    text-indent: -1em;
}

.license li::before {
    content: "●";
}

/* ---------- 自治体関連ページリンク ---------- */

.to_aupayinfo {
    margin-bottom: 2em;
}

@media screen and (max-width: 767px) {
    .to_aupayinfo {
        font-size: 80%;
    }
}

.to_dominanttop {
    margin-bottom: 2em;
}

@media screen and (max-width: 767px) {
    .to_dominanttop {
        font-size: 80%;
    }
}

.pr_banner_area {
    text-align: center;
    margin: 0 auto;
}

/* ---------- 関連施策リンク ---------- */

.relatedlink {
    display: block;
    text-align: center;
    margin: 3em auto 2em;
    padding: 1.5em;
    background: var(--color-bg);
    border-radius: 0.5em;
    border: var(--color-bgnote) 2px solid;
}

.relatedlink p {
    color: var(--color-link);
    font-weight: 700;
    line-height: 1.2em;
}

.relatedlink p em {
    font-size: 1.5em;
}

@media screen and (max-width: 767px) {
    .relatedlink {
        padding: 1em;
    }

    .relatedlink p {
        font-size: 75%;
        line-height: 1.5em;
    }
}

.relatedlink a {
    display: block;
    width: fit-content;
    box-sizing: border-box;
    border: var(--color-bg) solid 0.2em;
    margin: 0 auto;
    transition: 0.2s cubic-bezier(0.37, 0, 0.63, 1);
}

@media screen and (max-width: 767px) {
    .relatedlink a {
        border: none;
    }
}

@media screen and (min-width: 767px) {
    .relatedlink a:hover {
        box-sizing: border-box;
        border: var(--color-link) solid 0.2em;
    }
}


/**************************************************/
/* アプリ訴求 */
/**************************************************/

.apps_dl {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: 10;
    text-align: center;
    background: rgb(from var(--color-auorange) r g b / 0.9);
    color: var(--color-bg);
}

.apps_dl p {
    width: 100%;
    font-size: 85%;
    padding: 1em 1em 0.5em;
}

.apps_dl ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.apps_dl ul li {
    width: 50%;
    text-align: center;
    padding: 0 0 0 1em;

}

@media screen and (min-width: 767px) {
    .apps_dl ul li {
        text-align: right;
        padding: 0 0.5em 0 0;
    }
}

.apps_dl ul li:last-child {
    width: 50%;
    text-align: center;
    padding: 0 2em 0 0;

}

@media screen and (min-width: 767px) {
    .apps_dl ul li:last-child {
        text-align: left;
        padding: 0 0 0 0.5em;
    }
}

.apps_dl ul li a img {
    height: 2.5em;
    margin: 0;
}





/**************************************************/
/* フッター */
/**************************************************/


#footer {
    padding: 20px 0 180px;
    width: 100%;
    line-height: 1.2em;
    text-align: center;
    font-size: 70%;
    color: var(--color-text);
    background: var(--color-bgsub);
    overflow: hidden;
    border-top: 1px solid #EBEBEB;
}

ul#footerNav {
    margin: 5px auto 10px;
    text-align: center;
}

ul#footerNav li {
    display: inline-block;
    padding: 0 1em 0 0;
    background: url(../img/icon_blank_g.png) no-repeat right 10%;
    line-height: 1;
}

ul#footerNav li a {
    color: var(--color-footerlink);
}

ul#footerNav li a:visited {
    color: var(--color-footerlink);
}

ul#footerNav li a:hover,
ul#footerNav li a:active {
    color: var(--color-link);
    text-decoration: underline;
}