@charset "UTF-8";

/*---------- グローバル ----------*/
* {
    box-sizing: border-box;
}
.container {
    width: 960px;
    margin: 0 auto;
}
@media screen and (max-width: 640px) {
    .container {
        width: 90%;
    }
}
@media screen and (min-width: 641px) {
    section {
        min-width: 960px;
    }
}

a.ar_link {
    text-decoration: underline;
    color: #333;
}
.ta_l {
    text-align: left !important;
}
.ta_c {
    text-align: center !important;
}

.asterisk li {
    text-indent: -1.3em;
    padding-left: 1.3em;
    font-size: 0.8em;
    line-height: 1.3;
}
.asterisk li::before {
    content: "※";
    padding-right: 0.3em;
}

.white {
    color: #fff !important;
}
.yellow {
    color: #ff0 !important;
}
.pink {
    color: #e62e8b !important;
}

.bg_glay {
    background: #e8e8e8;
}
/*---------- header ----------*/
.header_logo {
    padding: 0.5em 0;
}
@media screen and (max-width: 640px) {
    .header_logo img {
        width: 45vw;
    }
}

/*---------- main ----------*/
#main h1 {
    position: absolute;
    text-indent: -9999px;
}
@media screen and (min-width: 641px) {
    #main {
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: hidden;
    }
}

/*---------- campaign ----------*/
/* タイトル */
.campaign_box {
    background: var(--maincolor);
    padding: 2rem 0;
}
.campaign_box h2 {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: end;
    font-size: 1.3em;
    letter-spacing: 3px;
    line-height: 1.2;
    color: #fff;
}
.campaign_box h2 strong{
    font-size: 1.7em;
}
@media screen and (max-width: 640px) {
    .campaign_box h2 {
        width: 100%;
        font-size: 2.4vw;
        line-height: 1.5;
        letter-spacing: 1px;
    }
    .campaign_box h2 .title_r .zoryo {
        margin-top: 0;
        font-size: 2.3em;
        vertical-align: bottom;
        line-height: 1.2;
    }
    .campaign_box h2:before,
    .campaign_box h2:after {
        border: 1px solid #1f5cc9;
    }
}

/*---------- feature ----------*/
.obi_box {
    border: 3px solid var(--maincolor);
    background: #fff;
    margin: 2rem 0;
}
.obi_box .obi_title {
    position: relative;
    color: #fff;
    background: var(--maincolor);
    text-align: center;
    font-size: 1.7em;
    font-weight: bold;
    letter-spacing: 3px;
    padding: 1em;
    line-height: 0.8;
}
.obi_box .obi_title * {
    font-weight: bold;
}
.obi_box .obi_title.fukidashi:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    border: 15px solid transparent;
    border-top: 15px solid var(--maincolor);
    transform: translateX(-50%);
}
.obi_box .obi_title .ta_r {
    position: relative;
    left: 18%;
    font-size: 0.6em;
    font-weight: normal;
    letter-spacing: 2px;
}
@media screen and (max-width: 640px) {
    .obi_box {
        border-width: 2px;
    }
    .obi_box .obi_title {
        font-size: 1.3em;
        padding: 0.5em;
        letter-spacing: 1px;
        line-height: 1.2;
    }
    .obi_box .obi_title.fukidashi:after {
        border: 8px solid transparent;
        border-top: 8px solid var(--maincolor);
    }
}
.feature_list_box {
    display: flex;
    padding: 0 2rem;
}
.feature_list_box img {
    width: 225px;
    padding-top: 1.5rem;
}
.feature_txt {
    color: var(--maincolor);
    font-size: 1.2em;
    font-weight: bold;
    line-height: 1.7;
    letter-spacing: 2px;
    flex: 1;
    padding: 3rem 0 0 5rem;
}
.feature_txt * {
    font-weight: bold;
}
.feature_txt.ta_c {
    text-align: center;
    padding: 2rem 0 0;
}
@media screen and (max-width: 640px) {
    .feature_list_box {
        align-items: end;
        padding: 0 1em;
    }
    .feature_list_box img {
        max-width: 20%;
        max-height: 80px;
        width: auto;
        height: auto;
        padding: 0;
    }
    .feature_txt {
        padding: 1.5rem 0 1rem 2rem;
        letter-spacing: 0;
        line-height: 1.4;
        font-size: 1.1em;
    }
}

.recharge_step_box {
    margin: 0 2.5rem;
}
@media screen and (max-width: 640px) {
    .recharge_step_box {
        margin: 0 1.5rem;
    }
}

/* リチャージ手順 */
.recharge_step {
    display: flex;
    padding: 1rem 1.5rem;
}
.recharge_step li {
    position: relative;
    width: calc(100% / 3);
}
.recharge_step li .step_circle {
    position: relative;
    left: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #fff;
    background: var(--maincolor);
    border-radius: 50em;
    padding-top: 10px;
    transform: translateX(-50%);
}
.recharge_step li .step_no {
    display: block;
    font-size: 1.8em;
    font-weight: bold;
}
.recharge_step li img {
    display: inline-block;
    position: relative;
    left: 50%;
    height: 125px;
    margin: 1em 0;
    transform: translateX(-50%);
}
.recharge_step li p:not(.step_circle) {
    line-height: 1.4;
    padding: 0 2em;
}
.recharge_step li:not(:last-of-type):after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 15px solid var(--maincolor);
}
@media screen and (max-width: 640px) {
    .recharge_step {
        display: block;
        padding: 1rem 0 0;
    }
    .recharge_step li {
        width: 100%;
        background: #f1f5f7;
        border-radius: 5px;
        margin-bottom: 2rem;
        padding: 1rem 0;
    }
    .recharge_step li:last-of-type {
        margin-bottom: 0;
    }
    .recharge_step li:not(:last-of-type):after {
        content: "";
        position: absolute;
        top: unset;
        bottom: -2rem;
        left: 50%;
        margin-left: -8px;
        border: 8px solid transparent;
        border-top: 8px solid var(--maincolor);
    }
    .recharge_step li p:not(.step_circle) {
        text-align: center;
    }
}

/* ピンクボタン */
.btn_list {
    display: flex;
    margin: 2rem 0;
}
.btn_list > li {
    width: calc(100% / 3);
}
.btn_list > li:not(:last-of-type) {
    margin-right: 10px;
}
a.pink_grade_btn {
    position: relative;
    display: block;
    font-size: 1.3em;
    letter-spacing: 1px;
    line-height: 1.2;
    background: linear-gradient(90deg, #e7198c, #bf0c86);
    color: #fff;
    border: 1px solid #bc0782;
    border-radius: 3px;
    box-shadow: 0 1px #f38dc6 inset, 0 1px 2px #c0c0c0;
    padding: 1em 1em 1em 3em;
}
a.pink_grade_btn:before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    transform: rotate(45deg) translateY(-50%);
}
a.pink_grade_btn:hover{
    text-decoration: none;
    opacity: 0.7;
}
.btn_list a.pink_grade_btn {
    display: flex;
    justify-content: space-between;
    padding: 0.6em 0.8em 0.6em 3em;
}
.btn_list a.pink_grade_btn p {
    font-size: 0.8em;
    letter-spacing: 2px;
    text-align: center;
}
.btn_list a.pink_grade_btn p * {
    letter-spacing: 0;
}
.btn_list a.pink_grade_btn p strong {
    font-size: 1.2em;
}
.btn_list a.pink_grade_btn p .small {
    font-size: 0.8em;
    display: inline-block;
    margin-top: 7px;
}
.btn_list a.pink_grade_btn img {
    height: 60px;
    width: auto;
}
@media screen and (max-width: 640px) {
    .btn_list {
        display: block;
    }
    .btn_list > li {
        width: 90%;
        margin: 0 auto 1rem !important;
    }
    .btn_list a.pink_grade_btn {
        align-items: center;
        padding: 0.3em 0.8em 0.3em 3em;
    }
    .btn_list a.pink_grade_btn p {
        margin-top: 5px;
    }
    .btn_list a.pink_grade_btn p .small {
        margin-top: 0;
    }
    .btn_list li:not(:last-of-type) a.pink_grade_btn img {
        margin-right: 10px;
    }
}

/*---------- 商品紹介 ----------*/
.headline {
    color: var(--maincolor);
    font-size: 1.7em;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}
@media screen and (max-width: 640px) {
    .headline {
        font-size: 4.8vw;
        letter-spacing: 1px;
    }
}
#showcase {
    padding: 3rem 0;
}
#showcase .obi_box {
    padding: 3rem 2rem;
}
@media screen and (max-width: 640px) {
    #showcase .obi_box {
        padding: 1.5rem 1.2rem;
    }
}
.sub_txt {
    padding: 1rem 2rem;
    line-height: 1.5;
}
@media screen and (max-width: 640px) {
    .sub_txt {
        padding: 1rem 0;
    }
}
.price_list {
    border-top: 2px solid var(--maincolor);
    margin: 1rem 0 3rem;
}
.price_list li {
    display: flex;
    align-items: center;
    padding: 1.5em;
    border-bottom: 1px solid var(--maincolor);
}
.price_list li:last-of-type {
    border-bottom-width: 2px;
}
.gb_box {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 1.5em;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 600;
    line-height: 0.6;
    letter-spacing: 1.5px;
    color: #fff;
    background: #f06fb7;
    padding-top: 0.5em;
    margin-right: 1em;
}
@media screen and (max-width: 640px) {
    .price_list {
        margin: 0 0 1.5rem;
    }
    .price_list li{
        padding: 1rem 0;
    }
    .gb_box {
        flex-shrink: 0;
        font-size: 2em;
        margin-right: 0.5em;
    }
}
.unit {
    font-size: 0.5em;
}
.price_table .unit {
    font-size: 0.7em;
}
.price_table {
    width: 100%;
    table-layout: fixed;
}
@media screen and (min-width: 641px) {
    .price_table tbody {
        display: flex;
        align-items: end;
    }
    .price_table tr:nth-of-type(1) {
        width: 35%
    }
    .price_table tr:nth-of-type(2) {
        width: 45%
    }
    .price_table tr:nth-of-type(3) {
        width: 20%
    }
}
.price_table .thin_txt {
    font-size: 1rem;
    font-weight: normal;
    padding: 0 0.5em 0 0;
}
.price_table td p {
    font-size: 2em;
    font-weight: bold;
}
.price_table td p * {
    font-weight: bold;
}
.price_table .dataup {
    display: flex;
    align-items: baseline;
}
.price_table .before_gb {
    position: relative;
    width: 65px;
    font-size: 1.2em;
    text-align: center;
    margin-right: 0.3em;
}
.price_table .before_gb:before {
    position: absolute;
    content: "";
    display: block;
    transform: translateX(-50%) rotate(-12deg);
    background-color: #ff0000;
    width: 83%;
    height: 1px;
    top: 40%;
    left: 50%;
}
.price_table .after_gb {
    position: relative;
    width: 110px;
    text-align: center;
    padding-top: 3px;
}
.price_table .after_gb:before {
    content: "キャンペーン中なら";
    position: absolute;
    top: -1em;
    left: 50%;
    width: 9em;
    font-size: 0.45em;
    font-weight: normal;
    transform: translateX(-50%);
}
@media screen and (max-width: 640px) {
    .price_table tbody {
        display: block;
    }
    .price_table .thin_txt {
        font-size: 10px;
        line-height: 1.3;
        padding-top: 0.5em;
        padding-bottom: 0.5em;
        width: 35%;
    }
    .price_table tr {
        display: flex;
        align-items: center;
    }
    .price_table tr:nth-of-type(2) {
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }
    .price_table tr td, .price_table tr th {
        padding: 0.5rem 0;
    }
    .price_table tr td {
        width: 65%;
    }
    .price_table td:has(.dataup) {
        vertical-align: bottom;
    }
    .price_table td p {
        line-height: 1;
    }
    .price_table .before_gb {
        width: 15vw;
        margin-right: 0;
    }
    .price_table .after_gb {
        width: 25vw;
        padding-top: 13px;
    }
    .price_table .after_gb:before {
        top: 0;
        font-size: 10px;
    }
}
#showcase .pink_grade_btn {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}
@media screen and (max-width: 640px) {
    #showcase .pink_grade_btn {
        width: 100%;
        font-size: 1em;
        padding: 0.5em 0.5em 0.5em 3em;
    }
}

/*---------- ご購入店舗 ----------*/
#shoplist {
    border-bottom: 1px solid #ccc;
}
.shoplist_flex {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
}
.shoplist_flex .nihon {
    position: absolute;
    bottom: 0.5em;
}
.shop_box {
    position: relative;
    left: calc(159px);
    width: calc(100% - (159px + 3rem));
    margin-left: 3rem;
}
.shop_box li {
    display: flex;
    align-items: center;
    gap: 1em;
}

.shop_box li .shop_logo {
    width: 210px;
    flex-shrink: 0;
    text-align: center;
}
.shop_box li .shop_logo img {
    max-width: 100%;
    height: auto;
}
.shop_box li .shop_logo img {
    padding: 1.5em 0;
}

.shop_box li p {
    flex: 1;
    margin: 0;
    font-size: 1.2em;
    letter-spacing: 3px;
    color: var(--maincolor);
}

.shop_box li a.ar_link {
    width: 210px;
    text-decoration: none;
    font-size: 1.2em;
}

@media screen and (max-width: 640px) {
    .shoplist_flex {
        padding: 0 1rem;
    }
    .shop_box {
        margin: 0;
        width: 100%;
    }
    .shop_box li {
        padding: 1em 0;
    }
    .shop_box li p,
    .shop_box li a.ar_link {
        font-size: 1em;
        letter-spacing: 0;
    }
    .shop_box li a.ar_link {
        width: 50%;
    }
}

/*---------- キャンペーン概要 ----------*/
#summary {
    padding: 3rem 0;
    border-bottom: 1px solid #ccc;
}
.gaiyo_table th {
    color: var(--maincolor);
    text-align: center;
    width: 30%;
    border-right: 1px solid var(--maincolor);
    vertical-align: middle;
    letter-spacing: 0.2em;
    font-weight: bold;
}
.gaiyo_table th, .gaiyo_table td {
    padding: 0.5em 1em;
    border-top: 1px solid var(--maincolor);
}
@media screen and (max-width: 640px) {
    .gaiyo_table, .gaiyo_table th, .gaiyo_table td {
        display: block;
        width: 100%;
        border: 0;
    }
    .gaiyo_table {
        border-top: 1px solid var(--maincolor);
    }
    .gaiyo_table tr {
        border-bottom: 1px solid var(--maincolor);
    }
    .gaiyo_table th, .gaiyo_table td {
        padding: 0;
    }
    .gaiyo_table th {
        font-size: 1.2em;
        text-align: left;
        letter-spacing: 0;
        padding-top: 1rem;
        margin-bottom: -0.5em;
    }
}

/*---------- what? ----------*/
#what {
    padding: 3rem 0;
}
.what_list {
    display: flex;
    border: 2px solid var(--maincolor);
    margin-top: 1em;
}
.what_list li {
    width: calc(100% / 3);
    display: flex;
    justify-content: space-between;
    border-right: 1px solid var(--maincolor);
    padding: 1em;
}
.what_list li:last-of-type {
    border: none;
}
.what_list li p {
    line-height: 1.5;
    font-size: 1.1em;
    font-weight: bold;
}
.what_list li p a {
    font-weight: normal;
    font-size: 0.8em;
    letter-spacing: 0;
}
.what_list li > img {
    max-width: 110px;
    max-height: 110px;
    width: auto;
    height: auto;
}
@media screen and (max-width: 640px) {
    #what .sub_txt.ta_c {
        text-align: left !important;
        padding-top: 0;
    }
    .what_list {
        display: block;
    }
    .what_list li {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--maincolor);
        align-items: center;
    }
    .what_list li > img {
        max-width: 26vw;
    }
    .what_list li:not(:last-of-type) > img {
        margin-right: 3.5%;
    }
}


/*---------- よくあるご質問 ----------*/
#faq {
    padding: 3rem 0;
}
dl dt, dl dd {
    padding: 3px 0 30px 40px;
    line-height: 1.5;
}
dl dt {
    background-image: url(/campaign/lawson/images/pic_Q.png);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 2px 0;
}
dl dd {
    background-image: url(/campaign/lawson/images/pic_A.png);
    background-repeat: no-repeat;
    background-size: 23px;
}
#faq dd:last-of-type {
    padding-bottom: 0;
}

/*---------- お問い合わせ ----------*/
#contact {
    padding: 3rem 0;
    text-align: left;
}
#contact h2 {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 0.5em;
}
#contact p {
    line-height: 1.5;
}