﻿/* ========================================
   リセットベーススタイル
   ======================================== */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    line-height: 1.6;
}

body {
    color: #3d3333;
    background-color: #fff;
}

#wContents{
    width: 100%;
   font-family: "Noto Sans JP", "Noto Sans", sans-serif;
}

/* ========================================
   共通コンポーネント
   ======================================== */

/* ボタンコンポーネント */
.btn {
    width: 400px;
    height: 60px;
    flex-shrink: 0;
    padding: 1.25rem 2rem;
    align-items: center;
    justify-content: center;
    border: none;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: .01em;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
}

a.btn__theme-primary:link,
a.btn__theme-primary,
.btn__theme-primary {
    background: #F6A307;
    color: #fff;
    text-decoration:none;
    border: 2px solid #FFF;
    box-shadow: 5px 8px 0px #C48104;
}

a.btn__theme-primary:hover,
.btn__theme-primary:hover {
    box-shadow: 0 4px 12px rgba(196, 129, 4, 0.3);
}

.btn__text {
    margin-right: 0.5rem;
}

.btn__arrow {
    width: 22px;
    height: 20px;
    margin: auto;
    position: absolute;
    top: 1px;
    right: 41px;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width:767px) {
    .btn {
        width: 326px;
        height: 48px;
        flex-shrink: 0;
        padding: 1rem 2rem;
        font-size: 2rem;
    }

    .btn__arrow {
        width: 14px;
        height: 18px;
        right: 30px;
    }

    .btn__arrow svg {
        width: 14px;
    }
}

/* セクションタイトル */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #d80b24;
    text-align: center;
    margin-bottom: 2rem;
}

/* アイコン付きタイトル */
.title-with-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.title-icon {
    width: 3rem;
    height: 3rem;
    background-color: #d80b24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ========================================
   メインビジュアルセクション (.mv)
   ======================================== */
.mv {
    display: flex;
    align-items: center;
}

.mv__container {
    max-width: 950px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: flex-start;
}

.mv__content {
    z-index: 2;
}

.mv__title {
    margin-bottom: 0;
}

.mv__title-text {
    height: 87px;
    padding-top: 32px;
    margin-bottom: 6px;
    font-size: 3.3rem;
    font-weight: 600;
    color: #3d3333;
    vertical-align: middle;
    line-height: 1;
    position: relative;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.mv__title-text:after {
    content: "";
    width: 57.943px;
    height: 87px;
    margin: -32px 0 0;
    background: url(../images/illustration.svg) 0 0 no-repeat;
    display: block;
}

.mv__title-main {
    font-size: 4.5rem;
    font-weight: 700;
    color: #d80b24;
    line-height: 1.2;
    position: relative;
    background: linear-gradient(transparent 70%, #FBE4E4 0%);
    display: inline;
}
/*
.mv__title-main:after {
    content: "";
    width: 100%;
    height: 20px;
    margin: 0;
    background: #FBE4E4;
    position: absolute;
    right: 0;
    bottom: -4px;
    display: block;
    z-index: -1;
}*/

.mv__illustration {
    display: inline-block;
    margin-left: 1rem;
}

.mv__illustration-img {
    width: 3rem;
    height: auto;
}

.mv__description {
    margin-bottom: 2rem;
}

.mv__description-text {
    line-height: 2.1;
    letter-spacing: 0;
    color: #3d3333;
    font-weight: 400;
}

.mv__description-highlight {
    color: #d80b24;
    font-weight: 600;
}

.mv__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mv__phone-group {
    width: 100%;
    max-width: 475px;
    position: relative;
}

.mv__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mv__logo-img {
    width: 60px;
    height: 60px;
}

/* ========================================
   サービス特典セクション (.service)
   ======================================== */
.service {
    width: 100%;
    padding: 0;
    background-color: #fff;
}

.service__container {
    max-width: 950px;
    margin: 0 auto;
    padding: 65px 0;
    background-color: #fff;
    border-radius: 30px;
    z-index: 3;
    position: relative;
}

.service__header {
    margin-bottom: 64px;
    text-align: center;
    position: relative;
}

.service__header:after {
    content: "";
    width: 100%;
    height: 380px;
    background-color: #d80b24;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.service__title {
    margin: 0 auto;
    padding: 64px 0 0;
    background-color: #d80b24;
    position: relative;
    z-index: 2;
}

.service__title-text {
    margin: 0 auto;
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    display: inline-block;
}

.service__title-main {
    width: fit-content;
    /* min-height: 87px; */
    margin: -12px auto 0;
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    position: relative;
    justify-content: center;
    align-items: flex-end;
    display: flex;
}

.service__title-main .large {
    font-size: 6.4rem;
    font-weight: 700;
}

.service__title-main:after {
    content: "";
    width: 57.943px;
    height: 87px;
    margin: 0 0 -5px 12px;
    background: url(../images/illustration_wh.svg) 0 0 no-repeat;
    display: block;
}

.service__rank-area {
    width: 100%;
    max-width: 950px;
    padding: 0 0 50px;
    margin: 0 auto 60px;
    position: relative;
}

.service__rank-area::before {
    content: "";
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, #D80B24, #D80B24 3px, transparent 0px, transparent 1px);
    background-size: 6px 2px;
    background-repeat: repeat-x;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.service__rank-header {
    position: relative;
    z-index: 2;
}

.service__title-area {
    margin: 0 auto 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 19px;
}

.service__icon {
    width: 63px;
    height: 63px;
    font-family: "Noto Sans";
    color: #fff;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1;
    background-color: #d80b24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service__rank-title,
.service__title-area [class *=-title] {
    font-size: 3.2rem;
    font-weight: 700;
    color: #d80b24;
    z-index: 2;
    position: relative;
}

.service__rank-description {
    max-width: 820px;
    margin: 0 auto 2rem;
}

.service__description-text {
    font-size: 1.8rem;
    line-height: 1.9;
    margin: 0 auto 15px;
}

.service__description-highlight {
    color: #d80b24;
    font-weight: 700;
}

.service__description-small {
    font-size: 1.4rem;
    display: block;
}

.service__link,
.service__link:visited,
.service__link:active,
.service__link:hover,
.service__link:link {
    font-size: 1.8rem;
    color: #d80b24;
    text-decoration: underline;
    font-weight: 500;
}

.service__link:after {
    content: "";
    height: calc(15px / 2 * tan(60deg));
    width: 18px;
    margin: 0 0 0 8px;
    position: relative;
    background: #d80b24;
    -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    display: inline-block;
}

/* ランク別特典エリア */
.service__rank-list {
    width: 100%;
    max-width: 780px;
    padding: 0;
    margin: -140px auto 32px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: flex-end;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

/*767px*/
@media (max-width: 767px) {
    .service__rank {
        margin: 0;
    }

    .service__rank-list {
        margin: 0 auto;
    }

    .service__rank-list {
        width: 848px;
    }
}

/* SP--------------------------------------------*/


.service__rank {
    width: calc(100% / 5);
    max-width: 140px;
    height: 611px;
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-end;
    align-content: flex-end;
    justify-content: flex-start;
    align-items: flex-start;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    flex-flow: row wrap;
    position: relative;
}

.service__rank_platinum:before {
    content: "";
    width: 60px;
    height: 46px;
    margin: 0 auto;
    background: url(../images/platinum_icon.png) 0 0 no-repeat;
    background-size: 60px;
    position: absolute;
    top: -30px;
    right: -10px;
    display: block;
}

.service-rank-col {
    width: 100%;
    height: 100%;
    color: #fff;
}

.service__rank-badge {
    width: 81.42857142857143%;
    margin: 12px auto 0;
    font-size: 1.4rem;
    line-height: 150%;
    text-align: center;
    font-weight: 600;
    color: var(--rank-color);
    background: #FFF;
}

.service__rank_gold .service__rank-badge,
.service__rank_silver .service__rank-badge {
    margin-top: 19px;
}

.service__rank_bronze .service__rank-badge {
    margin-top: 21px;
}

.service__rank_regular .service__rank-badge {
    margin-top: 27px;
}

.service-rank-col .service-rank-cnt {
    height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    align-content: space-between;
    justify-content: center;
    flex-flow: row wrap;
}

.service__rank_regular .service-rank-col .service-rank-cnt {
    align-content: center;
}

.service__rank-benefit-value span {
    font-size: 9rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.service__rank_gold .service__rank-benefit-value span {
    font-size: 7.5rem;
}

.service__rank_silver .service__rank-benefit-value span {
    font-size: 5.5rem;
}

.service__rank_bronze .service__rank-benefit-value span {
    font-size: 4.8rem;
}

.service__rank-benefit-value span.middle {
    font-size: 3.2rem;
    font-weight: 600;
}


.service__rank dt {
    width: 100%;
    height: 43px;
    margin: 0;
    background: var(--rank-color);
}

.service__rank_regular.service__rank dt {
    height: 53px;
}

.service__rank dt .small {
    margin: 0;
    font-size: 11px;
    text-align: center;
}

.service__rank dd:last-child {
    width: 100%;
    height: 132px;
    margin: 0;
    font-size: 1.6rem;
    line-height: 140%;
    font-weight: 500;
    text-align: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    position: relative;
    border-top: solid 14px #fff;
}

.service__rank dd {
    width: 100%;
    margin: 0;
    background: var(--rank-color);
}

.service__rank_regular dd:nth-of-type(1) {
    height: 31.914893617021278%;
    max-height: 195px;
}

.service__rank_bronze dd:nth-of-type(1) {
    height: 44.02618657937807%;
    max-height: 269px;
}

.service__rank_silver dd:nth-of-type(1) {
    height: 54.173486088379704%;
    max-height: 331px;
}

.service__rank_gold dd:nth-of-type(1) {
    height: 61.702127659574465%;
    max-height: 377px;
}

.service__rank_platinum dd:nth-of-type(1) {
    height: 71.52209492635025%;
    max-height: 437px;
}

.service__rank dd .price {
    margin: 0 auto;
    font-size: 1.6rem;
    text-align: center;
    letter-spacing: -0.04em;
    line-height: 1.2;
    display: block;
}

.service__rank dd .price p {
    margin: 4px auto 0;
    text-align: center;
    letter-spacing: -0.04em;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    align-content: center;
    position: relative;
}

.service__rank dd .price p .sub-txt {
    font-size: 1.3rem;
    letter-spacing: 0;
    position: absolute;
    top: 3px;
    right: 3px;
}

.service__rank dd .price p span.price-nom02 {
    font-size: 4.8rem;
    font-weight: 500;
}

.service__rank dd .price p span.price-off {
    font-size: 3.2rem;
    font-weight: 500;
    font-family: 'Noto Sans';
}

.service__rank span.price-txt {
    font-size: 4rem;
    letter-spacing: -0.02em;
    font-family: 'Noto Sans';
}

.service__rank span.tilda {
    font-size: 2.4rem;
}

.service__rank span.price-nom {
    font-size: 3.5rem;
    /* letter-spacing: -0.02em; */
    font-weight: 600;
    font-family: 'Noto Sans';
}

.service__rank-condition-wrap {
    width: 100%;
    margin: 0 auto 0;
    text-align: center;
}

.service__rank-condition {
    width: 100%;
    margin: 15px auto 0;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
}

.service__rank_platinum .service__rank-condition {
    margin-top: 38px;
}

.service__rank_gold .service__rank-condition,
.service__rank_silver .service__rank-condition {
    margin-top: 24px;
}

.service__rank_bronze .service__rank-condition {
    margin-top: 20px;
}

.service__rank-condition+svg {
    margin: 28px auto 0;
}

.service__rank_gold .service__rank-condition+svg {
    margin: 14px auto 0;
}

.service__rank_silver .service__rank-condition+svg {
    margin: 7px auto 0;
}

.service__rank_bronze .service__rank-condition+svg {
    margin: 0 auto;
}

.service__rank_regular .service__rank-condition {
    margin: 0 auto 0;
}

.service__rank-benefit {
    width: 100%;
    padding: 0 0 32px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: space-between;
    flex-flow: row wrap;
}

.service__rank_platinum .service__rank-benefit {
    height: 197px;
}

.service__rank_gold .service__rank-benefit {
    height: 176px;
}

.service__rank_silver .service__rank-benefit {
    height: 151px;
}

.service__rank_bronze .service__rank-benefit {
    height: 125px;
}

.service__rank_regular .service__rank-benefit {
    height: 176px;
}

.service__rank-benefit-text {
    margin: 0 auto 23px;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
    text-align: center;
}

.service__rank_silver .service__rank-benefit-text {
    margin: 0 auto 19px;
}

.service__rank_bronze .service__rank-benefit-text {
    margin: 0 auto 6px;
}

/*
.service__rank-benefit-cap {
    width: 120px;
    min-height: 29px;
    margin: 0 auto 23px;
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-align: center;
    border-radius: 18px;
    border: solid 2px #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
*/
.service__rank_gold .service__rank-benefit-cap {
    margin-bottom: 22px;
}

.service__rank_silver .service__rank-benefit-cap {
    margin-bottom: 19px;
}

.service__rank_bronze .service__rank-benefit-cap {
    margin-bottom: 9px;
}

.service__rank-benefit-value {
    margin: 0 auto;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-family: 'Noto Sans';
    line-height: 1;
    display: block;
    text-align: center;
}

.service__rank-benefit-note {
    font-size: 0.625rem;
    opacity: 0.9;
}

.service__rank-coupon {}

.service__rank-coupon-plus {
    width: 30px;
    height: 30px;
    margin: 0 auto;
    position: absolute;
    top: -22px;
    left: 0;
    right: 0;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: flex-start;
    align-content: center;
    justify-content: center;
    font-size: 3.6rem;
    font-weight: 400;
    line-height: 2.6rem;
    vertical-align: middle;
    color: var(--rank-color);
}

.service__rank-coupon-text {
    font-size: 1.2rem;
    line-height: 1.3;
}

.service__note {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.4;
}

/* 初回限定特典エリア */
.service__welcome-area {
    padding: 0 0 90px;
    margin: 0 auto 60px;
    position: relative;
}

.service__welcome-area::before {
    content: "";
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, #D80B24, #D80B24 3px, transparent 0px, transparent 1px);
    background-size: 6px 2px;
    background-repeat: repeat-x;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.service__welcome-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 auto 20px;
}

.service__welcome-icon {
    width: 4rem;
    height: 4rem;
    background-color: #d80b24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.service__welcome-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d80b24;
}

.service__welcome-description {
    max-width: 820px;
    margin: 0 auto 2rem;
}

.service__welcome-text {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service__welcome-note {
    font-size: 1.2rem;
}

.service__welcome-coupons {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 57px;
    margin-bottom: 29px;
    position: relative;
}

.service__welcome-coupon {
    width: 100%;
    height: 155px;
    border-radius: 10px;
    padding: 0 22px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service__welcome-coupon_500 {
    max-width: 383px;
    justify-content: center;
    background: linear-gradient(135deg, #d80b24 0%, #b5091f 100%);
    color: #fff;
}

.service__welcome-coupon_500 .service__welcome-coupon-condition {
    font-size: 2.1rem;
}

.service__welcome-coupon_10up {
    /* width: 100%; */
    max-width: 382px;
    padding-top: 28px;
    background-color: #fff;
    border: 2px solid #d80b24;
    color: #d80b24;
    justify-content: flex-start;
}

.service__welcome-coupon-amount {
    margin: -4px 0 0;
    font-weight: 700;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: flex-end;
    align-content: center;
}

.service__welcome-coupon-amount .nom {
    font-size: 10rem;
    line-height: 90px;
    letter-spacing: -.02em;
}

.service__welcome-coupon-amount .txt {
    font-size: 3.6rem;
    line-height: 3.6rem;
}

.service__welcome-coupon-amount .txt .large {
    margin-left: 8px;
    font-size: 5rem;
    line-height: 3.6rem;
}

.service__welcome-coupon-plus {
    width: 30px;
    height: 30px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #d80b24;
    border-radius: 50%;
    display: block;
}

.service__welcome-coupon-plus::before {
    content: "+";
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: block;
    color: #fff;
    font-size: 3.6rem;
    line-height: 26px;
    text-align: center;
    font-weight: 500;
}

.service__welcome-coupon-text {
    padding-bottom: 2px;
    margin-bottom: 16px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #FFF;
    line-height: 1.8;
    background: #d80b24;
}

.service__welcome-coupon-condition {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.02em;
    white-space: nowrap;
}

.service__welcome-note-bottom {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.2rem;
}

/* スタンプカードエリア */
.service__stamp-area {
    padding-bottom: 60px;
    margin: 0 auto 60px;
    position: relative;
}

.service__stamp-area::before {
    content: "";
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, #D80B24, #D80B24 3px, transparent 0px, transparent 1px);
    background-size: 6px 2px;
    background-repeat: repeat-x;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.service__stamp-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service__stamp-icon {
    width: 4rem;
    height: 4rem;
    background-color: #d80b24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.service__stamp-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d80b24;
}

.service__stamp-description {
    max-width: 820px;
    margin: 0 auto 2rem;
}

.service__stamp-text {
    margin: 0 0 62px;
    font-size: 1.8rem;
    line-height: 1.6;
}

.service__stamp-card_print,
.service__stamp-card_mario {
    max-width: 820px;
    margin: 0 auto;
}

.service__stamp-card_print {
    margin-bottom: 56px;
}

.service__stamp-card-header {
    width: 100%;
    margin-bottom: 11px;
    position: relative;
    display: block;
}

.service__stamp-card-title {
    color: #3D3333;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 35px;
}

.service__stamp-card-title img {
    width: 67px;
    margin: 0 7px 0 -6px;
}

.service__stamp-card-banner {
    min-width: 387px;
    height: 59px;
    padding: 0 0 17px;
    background: #fff;
    border: solid 3px #3D3333;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    vertical-align: bottom;
    position: absolute;
    top: 10px;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    align-content: center;
}

.service__stamp-card-banner:before,
.service__stamp-card-banner:after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.service__stamp-card-banner:after {
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #FFF;
    border-width: 13px;
    margin-left: -13px;
}

.service__stamp-card-banner:before {
    border-color: rgba(0, 0, 0, 0);
    border-top-color: #3D3333;
    border-width: 16px;
    margin-left: -16px;
}

.service__stamp-card-banner-text {
    font-size: 2.4rem;
}

.service__stamp-card-banner-text-heightlight {
    color: #D80B24;
    font-size: 2.4rem;
    position: relative;
    z-index: 2;
}

.service__stamp-card-banner-text-heightlight:after {
    content: "";
    width: 100%;
    height: 10px;
    display: block;
    background: #FFF200;
    position: absolute;
    bottom: -5px;
    left: 0;
    z-index: -1;
}

.service__stamp-card-content {
    padding: 16px;
    margin-bottom: 20px;
    border-radius: 20px;
    background: #D80B24;
    color: #fff;
    text-align: center;
    display: block;
}

.service__stamp-card_mario .service__stamp-card-content {
    padding: 21px 0 23px;
    background: #ED7987;
}

.service__stamp-card-stamps {
    width: fit-content;
    margin: 0 auto;
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(5, 1fr);
}

.service__stamp-card-stamps_mario {
    max-width: 733px;
    gap: 30px;
    grid-template-columns: repeat(6, 1fr);
}

.service__stamp-card-stamp {
    max-width: 127px;
    position: relative;
}

.service__stamp-card_mario .service__stamp-card-stamp {
    min-width: 97px;
    padding-right: 0;
}

.service__stamp-card-stamp:after {
    content: "";
    height: calc(11px / 2 * tan(60deg));
    width: 14px;
    margin: auto;
    position: absolute;
    top: 94px;
    right: -21px;
    background: #FFF;
    -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    display: inline-block;
}

.service__stamp-card_mario .service__stamp-card-stamp:after {
    top: 84px;
    right: -23px;
}

.service__stamp-card_mario .service__stamp-card-stamp:nth-last-of-type(2) .service__stamp-card-stamp-off,
.service__stamp-card_mario .service__stamp-card-stamp:last-child .service__stamp-card-stamp-off {
    color: #FFF200;
}

.service__stamp-card-stamp:last-child:after {
    content: none;
}

.service__stamp-card-stamp .service__stamp-card-stamp-cap {
    margin: 0 auto 5px;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    position: relative;
    display: block;
}

.service__stamp-card_mario .service__stamp-card-stamp-cap {
    margin: 0 auto 17px;
}

.service__stamp-card-stamp .service__stamp-card-stamp-cap:after {
    content: "";
    width: 100%;
    height: 11px;
    margin: 10px auto 0;
    background: url(../images/fuki.svg) center bottom no-repeat;
    display: block;
}

.service__stamp-card_mario .service__stamp-card-stamp-cap:after {
    width: 97px;
}

.service__stamp-card-stamp .service__stamp-card-stamp-off {
    margin: 0 auto;
    font-family: "Noto Sans";
    color: #FFF;
    letter-spacing: -0.05em;
    font-size: 6rem;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    position: relative;
    display: block;
}

.service__stamp-card-stamp .service__stamp-card-stamp-off span {
    font-size: 4rem;
    letter-spacing: 0;
}

.service__stamp-card-stamp-number {
    font-size: 2.4rem;
}

.service__stamp-card-stamp-img {}

.service__stamp-card-note {
    font-size: 1.2rem;
    color: #3D3333;
    font-weight: 400;
}

/* 保証エリア */
.service__warranty-area {
    padding-bottom: 60px;
    margin: 0 auto 60px;
    position: relative;
}

.service__warranty-area::before {
    content: "";
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, #D80B24, #D80B24 3px, transparent 0px, transparent 1px);
    background-size: 6px 2px;
    background-repeat: repeat-x;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.service__warranty-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service__warranty-icon {
    width: 4rem;
    height: 4rem;
    background-color: #d80b24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.service__warranty-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d80b24;
}

.service__warranty-description {
    max-width: 820px;
    margin: 0 auto;
}

.service__warranty-text {
    margin: 0 auto 50px;
    font-size: 1.8rem;
    letter-spacing: 0;
    line-height: 1.85;
}

.service__warranty-steps {
    max-width: 873px;
    margin: 0 auto;
}

.service__warranty-steps-title {
    max-width: 430px;
    margin: 0 auto 102px;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0;
    color: #3d3333;
    text-align: center;
}

.service__warranty-steps-title:after {
    content: "";
    width: 100%;
    height: 2px;
    margin: 17px auto 0;
    background: #3d3333;
    display: block;
}

.service__warranty-steps-list {
    width: fit-content;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 11px;
}

.service__warranty-step {
    padding: 32px 16px 25px;
    text-align: center;
    background: #f2f2f2;
    position: relative;
}

.service__warranty-step-number {
    width: 74px;
    height: 74px;
    padding: 10px 0 0;
    margin: 0 auto;
    font-family: "Noto Sans";
    color: #3D3333;
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: absolute;
    top: -37px;
    left: 0;
    right: 0;
    background-color: #f2f2f2;
    border-radius: 50%;
    z-index: -1;
}

.service__warranty-step p {
    margin: 0 auto;
    padding: 0 .5em;
    color: #3D3333;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.4;
}

.service__warranty-step:nth-of-type(3) p {
    margin-top: 8px;
}

.service__warranty-step:nth-of-type(3) p+p {
    margin-top: 18px;
    font-size: 1.2rem;
    line-height: 1.6;
}

.service__warranty-img {
    margin: 0 auto 11px;
}


/* 受付エリア */
.service__reception-area {
    margin: 0 auto 60px;
    position: relative;
}

.service__reception-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service__reception-icon {
    width: 4rem;
    height: 4rem;
    background-color: #d80b24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.service__title-area .service__reception-title {
    font-size: 2.8rem;
}

.service__reception-description {
    max-width: 820px;
    margin: 0 auto 50px;
}

.service__reception-text {
    margin: 0 auto;
    font-size: 1.8rem;
    line-height: 1.85;
    letter-spacing: 0;
}

.service__reception-steps-title {
    max-width: 430px;
    margin: 0 auto 68px;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0;
    color: #3d3333;
    text-align: center;
}

.service__reception-steps-title:after {
    content: "";
    width: 100%;
    height: 2px;
    margin: 17px auto 0;
    background: #3d3333;
    display: block;
}

.service__reception-steps-list {
    width: fit-content;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service__reception-step {
    max-width: 247px;
    padding: 32px 20px 25px;
    text-align: center;
    background: #f2f2f2;
    position: relative;
}

.service__reception-step:last-child {
    padding-top: 0;
    padding-bottom: 37px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.service__reception-step-number {
    width: 74px;
    height: 74px;
    padding: 10px 0 0;
    margin: 0 auto;
    font-family: "Noto Sans";
    color: #3D3333;
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: absolute;
    top: -37px;
    left: 0;
    right: 0;
    background-color: #f2f2f2;
    border-radius: 50%;
    z-index: -1;
}

.service__reception-step p {
    margin: 0 auto;
    padding: 0 .5em;
    color: #3D3333;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.4;
}

.service__reception-img {
    width: 100%;
    height: auto;
    margin: 0 auto 19px;
}

.service__reception-step-text {
    font-size: 1.2rem;
    line-height: 1.4;
}

.service__cta {
    margin: 0 uto;
    text-align: center;
}

/* ========================================
   利用方法ガイドセクション (.guide)
   ======================================== */
.guide {
    margin: 0 auto;
    padding: 0 0 60px;
}

.guide__container {
    margin: 0 auto;
    padding: 0;
}

.guide__header {
    padding-top: 90px;
    margin: 0 auto 85px;
    text-align: center;
    position: relative;
}

.guide__header:after {
    content: "";
    width: 100%;
    height: 380px;
    background-color: #d80b24;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.guide__title {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
}

.guide__steps {
    max-width: 950px;
    margin: 0 auto;
    padding: 65px 0 0;
    margin-bottom: 120px;
    background-color: #fff;
    border-radius: 30px;
    z-index: 3;
    position: relative;
}

.guide__step {
    width: 100%;
    max-width: 686px;
    height: 100%;
    margin: 0 auto 10px;
    padding: 0;
    color: #3d3333;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.guide__step:before {
    content: "";
    width: 16px;
    height: 16px;
    display: block;
    background: #d80b24;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    left: 45px;
    z-index: -1;
}

.guide__step:after {
    content: "";
    width: 3px;
    height: 100%;
    display: block;
    background: #d80b24;
    position: absolute;
    bottom: 0;
    left: 52px;
    z-index: -1;
}

.guide__step:last-child:before,
.guide__step:last-child:after {
    content: none;
}

.guide__step-number {
    width: 104px;
    height: 104px;
    background-color: #d80b24;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Noto Sans";
    color: #fff;
    font-weight: 600;
    position: relative;
}

.guide__step-number-text {
    font-size: 2.4rem;
    line-height: 1;
}

.guide__step-number-value {
    font-size: 5.8rem;
    line-height: .8;
}

.guide__step-content {
    width: calc(100% - 132px);
    margin: 27px 0 0 28px;
}

.guide__step-title {
    margin-bottom: 20px;
    font-size: 3.2rem;
    font-weight: 600;
    color: #3d3333;
}

.guide__step:nth-of-type(1) .guide__step-title {
    margin-bottom: 40px;
    letter-spacing: 0;
}

.guide__step-description {
    margin: 0 0 9px;
    font-size: 1.6rem;
    line-height: 2.1;
    letter-spacing: 0;
}

.guide__step:nth-of-type(3) .guide__step-description {
    margin: 0 0 17px;
}

.guide__step img {
    margin: auto;
    display: block;
}

.guide__step:first-child img {
    max-width: 446px;
    margin-left: -12px;
}

.guide__step:nth-of-type(2) img {
    max-width: 240px;
    margin-bottom: 56px;
}

.guide__step:nth-of-type(3) img {
    max-width: 240px;
    margin: 0 0 0 88px;
}

.guide__step-images {
    width: fit-content;
    margin-left: -20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.guide__cta {
    text-align: center;
}


/* ========================================
   公式LINEの便利な機能 (.convenience)
   ======================================== */
.convenience {
    width: 100%;
    padding: 80px 0 80px 0;
    background-color: #d80b24;
}

.convenience__container {
    max-width: 950px;
    margin: 0 auto;
    padding: 65px 0;
    background-color: #fff;
    border-radius: 30px;
}

.convenience__header {
    text-align: center;
}

.convenience__title {
    font-size: 4rem;
    font-weight: 700;
    color: #d80b24;
}

.convenience__description-text{
    font-size: 1.8rem;
    line-height: 1.9;
    margin: 20px auto 20px;
    text-align: center;
}

.convenience_icon {
    display: inline-flex;
}

.convenience_icon img {
    padding: 30px;
}

.convenience_icon a {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.convenience_icon a:hover {
    opacity: 0.5;
}


/* ========================================
   注意事項セクション (.notice)
   ======================================== */
.notice {
    padding: 100px 0;
    color: #fff;
    background-color: #d80b24;
}

.notice__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.notice__header {
    margin-bottom: 49px;
    text-align: center;
}

.notice__title {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
}

.notice__content {
    margin-bottom: 3rem;
}

.notice__text {
    max-width: 820px;
    margin: 0 auto 49px;
}

.notice__text-item {
    margin: 0 0 10px;
    font-size: 1.4rem;
    line-height: 1.6;
}

.notice__contact {
    max-width: 820px;
    margin: 0 auto;
}

.notice__contact-title {
    margin-bottom: 69px;
    color: #FFF;
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-align: center;
}

.notice__contact-list {
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
    color: #3d3333;
}

.notice__contact-item {
    padding: 40px 24px;
    background-color: #fff;
}

.notice__contact-item-title {
    font-size: 2rem;
    font-weight: 700;
    color: #3d3333;
    margin-bottom: 0.5rem;
}

.notice__contact-item-subtitle {
    margin-bottom: 2px;
    font-size: 1.4rem;
    letter-spacing: 1.1px;
}

.notice__contact-item dl {
    margin: 0 0 5px;
    display: table;
}

.notice__contact-item dt {
    padding-right: 15px;
    font-size: 1.4rem;
    display: table-cell;
}

.notice__contact-item dd {
    display: table-cell;
}

.notice__contact-item-phone {
    font-family: "Noto Sans";
    font-size: 3.2rem;
    font-weight: 600;
}
.notice__contact-item-phone a:link,
.notice__contact-item-phone a:hover,
.notice__contact-item-phone a:visited,
.notice__contact-item-phone a {
    color:#3d3333;
    text-decoration:none;
}

.notice__contact-item-time {
    font-family: "Noto Sans";
    font-size: 2rem;
}

.notice__contact-item-time span {
    font-size: 1.4rem;
}

.notice__contact-item-note {
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 1.1px;
}

.notice__contact-item-note a {
    color: #3d3333;
    text-decoration: underline;
}

.notice__contact-note {
    font-size: 1.4rem;
    color: #fff;
}

/* ========================================
レスポンシブデザイン
   ======================================== */

@media (min-width: 768px) {
    .mv {
        margin: 30px auto 95px;
    }

    .mv__content {
        padding-top: 22px;
        order: 1;
    }

    .mv__visual {
        order: 2;
    }

    .mv__title-area {
        margin-bottom: 35px;
    }

    .mv__description-text {
        font-size: 1.8rem;
    }

    .mv__cta {
        margin-top: 2rem;
    }

    .service__warranty-steps-list,.service__reception-steps-list {
        transform: unset!important;
    }
    
    .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction, .swiper-button-next, .swiper-button-prev, .service__reception-step:nth-of-type(n+4), .service__warranty-step:nth-of-type(n+5){
        display:none;
    }
    .notice__contact-item-phone a:link,
    .notice__contact-item-phone a:hover,
    .notice__contact-item-phone a:visited,
    .notice__contact-item-phone a {
    pointer-events: none;
    }
}



/* タブレット (767px以下) */
@media (max-width: 767px) {
    .mv {
        margin: 30px auto 49px;
    }

    .mv__container {
        grid-template-columns: 1fr;
        gap: 14px;
        text-align: center;
    }

    .mv__title-area {
        margin-bottom: 10px;
    }

    .mv__title {
        text-align: center;
    }

    .mv__title-text {
        width: fit-content;
        height: unset;
        padding-top: 24px;
        margin: 0 auto 15px;
        font-size: 2rem;
        letter-spacing: 0;
        justify-content: center;
    }

    .mv__title-text:after {
        content: none;
    }

    .mv__title-text:before {
        content: "";
        width: 32px;
        height: 48px;
        margin: 0;
        background: url(../images/illustration.svg) 0 0 no-repeat;
        background-size: 32px;
        display: block;
        position: absolute;
        left: -38px;
        top: 0;
    }

    .mv__description {
        margin-bottom: 14px;
    }

    .mv__description-text {
        margin: 0 28px;
        font-size: 1.4rem;
    }

    .mv__title-main {
        font-size: 3rem;
        letter-spacing: 0;
        padding: 0;
        background: linear-gradient(transparent 60%, #FBE4E4 0%);
    }

    .mv__phone-group {
        width: calc(100% - 26px);
    }

    .mv__phone {
        width: 150px;
        height: 225px;
    }

    .mv__cta {
        margin-top: 14px;
    }

/* ========================================
   サービス特典セクション (.service)
   ======================================== */
.service {
    width: 100%;
    padding: 0;
    background-color: #fff;
}

.service__container {
    max-width: unset;
    padding: 70px 0;
}

.service__header {
    margin-bottom: 46px;
}

.service__header:after {
    content: "";
    width: 100%;
    height: 380px;
    background-color: #d80b24;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.service__title {
    padding: 53px 0 0;
}

.service__title-text {
    font-size: 1.6rem;
}

.service__title-main {
    margin: -12px auto 0;
    font-size: 2.4rem;
    letter-spacing: 0;
}

.service__title-main .large {
    font-size: 4.8rem;
    line-height: 40px;
}

.service__title-main:after {
    content: "";
    margin: 0 0 -16px 6px;
}

.service__rank-area {
    max-width: unset;
    padding: 0 20px 30px;
}

.service__rank-area::before {
    content: "";
    width: calc(100% - 44px);
    margin: 0 auto;
}

.service__rank-header {
    position: relative;
    z-index: 2;
}

.service__title-area {
    margin: 0 auto 20px;
    gap: 13px;
}

.service__icon {
    width: 43px;
    height: 43px;
    font-size: 2.4rem;
}

.service__rank-title,
.service__title-area [class *=-title] {
    font-size: 2.4rem;
    letter-spacing: 0;
}

.service__rank-description {
    max-width: unset;
    margin: 0 auto 2rem;
}

.service__description-text {
    font-size: 1.4rem;
    line-height: 1.8;
    letter-spacing:0;
    margin: 0 auto 5px;
}

.service__description-highlight {
    color: #d80b24;
}

.service__description-small {
    font-size: 1rem;
}

.service__link,
.service__link:visited,
.service__link:active,
.service__link:hover,
.service__link:link {
    font-size: 1.6rem;
    color: #d80b24;
    text-decoration: underline;
    font-weight: 500;
}

.service__link:after {
    content: "";
    height: calc(12px / 2 * tan(60deg));
    width: 13px;
    margin: 0 0 0 6px;
    -ms-transform: rotate(90deg);
}

/* ランク別特典エリア */
.service__rank-list {
    max-width: unset;
    padding: 0;
    margin: 0 auto;
    flex-flow: row wrap;
    position: relative;
}

.service__rank {
    margin: 0;
}

.service__rank-list {
    margin: 0 auto;
}

.service__rank-list {
    width: 100%;
}



.service__rank {
    width: 100%;
    max-width: unset;
    height: 110px;
    margin: 0 0 15px;
    padding: 35px 0 0;
    position: relative;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-end;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    flex-flow: nowrap;
    position: relative;
    background: var(--rank-color);
}

.service__rank_platinum{
    order:1;
    align-items: center;
}
.service__rank_gold{
    width: 93.71428571428572%;
    order:2;
    align-items: center;
}
.service__rank_silver{
    width: 84%;
    order:3;
    align-items: center;
}
.service__rank_bronze{
    width: 74%;
    order:4;
    align-items: center;
}
.service__rank_regular{
    width: 50%;
    order:5;
    align-items: center;
}
.service__rank_platinum:before {
    content:none;
}
.service-rank-col {
    width: auto;
    height: unset;
    margin: 0;
    vertical-align: middle;
    display: table;
    table-layout: fixed;
}

.service__rank-badge {
    width: calc(100% - 24px);
    margin: 8px auto 0;
    padding: 3px 0;
    display: block;
}

.service__rank-badge span{
    position:relative;
}
    
.service__rank-badge span:before {
    content: "";
    width: 27px;
    height: 19px;
    margin: 0 auto;
    background: url(../images/platinum_icon_sp.png) 0 0 no-repeat;
    background-size: 27px;
    position: absolute;
    top:0;
    left:-32px;
    display: block;
}
    
.service__rank_gold .service__rank-badge,
.service__rank_silver .service__rank-badge ,
.service__rank_bronze .service__rank-badge ,
.service__rank_regular .service__rank-badge {
    margin-top:8px;
}

.service-rank-col .service-rank-cnt {
    height: 100%;
    vertical-align: middle;
    display: table;
    table-layout: fixed;
}

.service__rank-benefit-value span {
    font-size: 5rem;
    font-weight: 600;
    letter-spacing: 0em;
    display: block;
}

.service__rank_gold .service__rank-benefit-value span {
    font-size: 4.5rem;
}

.service__rank_silver .service__rank-benefit-value span {
    font-size: 3.5rem;
}

.service__rank_bronze .service__rank-benefit-value span {
    font-size: 2.5rem;
}

.service__rank-benefit-value span.middle {
    font-size: 2.4rem;
}

.service__rank_gold .service__rank-benefit-value span.middle {
    font-size: 2.2rem;
}

.service__rank_silver .service__rank-benefit-value span.middle {
    font-size: 1.8rem;
}

.service__rank_bronze .service__rank-benefit-value span.middle {
    font-size: 1.8rem;
}

.service__rank dt {
    height: 35px;
    margin: 0;
    background: var(--rank-color);
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.service__rank_regular.service__rank dt {
    height: unset;
}

.service__rank dt .small {
    margin: 0;
    font-size: 11px;
    text-align: center;
}

.service__rank dd:last-child {
    width: unset;
    height: 75px;
    margin: 0;
    font-size: 1.6rem;
    padding: 0 0 0 17px;
    position: relative;
    border-top: none;
    justify-content: flex-start;
    align-items: center;
    white-space: nowrap;
}
    
.service__rank_regular dd:last-child {
    padding: 0;
    margin: 0;
}
    
.service__rank dd {
    width: 100%;
    margin: 0;
    padding-left: 12px;
    padding-right: 5px;
    background: transparent;
    display: flex;
}

.service__rank_regular dd:nth-of-type(1),
.service__rank_bronze dd:nth-of-type(1),
.service__rank_silver dd:nth-of-type(1),
.service__rank_gold dd:nth-of-type(1),
.service__rank_platinum dd:nth-of-type(1) {
    width: fit-content;
    height: 75px;
    max-height: unset;
    margin-right: 3px;
    padding-top: 16px;
}

.service__rank_regular dd:nth-of-type(1) {
    padding-right: 0;
    margin-right: 0;
}

.service__rank dd.arrow {
    width: auto;
    margin: 0;
    display: table-cell;
    background: transparent;
}
    
.service__rank dd .price {
    margin: 0;
    font-size: 2rem;
    letter-spacing: -0.02em;
    line-height: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-flow: row wrap;
    position: relative;
}

.service__rank_silver dd .price,
.service__rank_bronze dd .price {
    font-size:1.6rem;
}
    
.service__rank_regular dd .price {
    width: 60px;
    margin: 0;
    font-size: 1rem;
    justify-content: flex-end;
}
.service__rank_regular dd .price>span {
    margin: 0;
    font-size: 1rem;
    text-align: right;
}
.service__rank dd .price p {
    width: 60px;
    margin: -1.5em 0 0;
    flex-flow: row wrap;
    position: relative;
}

.service__rank dd .price p .sub-txt {
    width: 100%;
    margin: 2px 0 0;
    font-size: 1rem;
    letter-spacing: 0;
    position: relative;
    top: unset;
    right: unset;
    order: 3;
}

.service__rank dd .price p span.price-nom02 {
    font-size: 3.2rem;
    order: 1;
}

.service__rank dd .price p span.price-off {
    font-size: 1.4rem;
    order: 2;
}

.service__rank span.price-txt {
    font-size: 2.4rem;
}

.service__rank span.tilda {
    font-size: 2.4rem;
}

.service__rank span.price-nom {
    font-size: 3rem;
}

.service__rank_silver span.price-nom,
.service__rank_bronze span.price-nom {
    font-size: 2.5rem;
}
    
.service__rank span.small {
    margin: 0 0 0 2px;
    font-size: 1.2rem;
    display: inline-block;
    white-space: nowrap;
    text-align: left;
    line-height: 1.1;
}
    
.service__rank_silver span.small,
.service__rank_bronze span.small {
    font-size: 1rem;
    margin: 0 0 0 1px;
}
    
.service__rank span.small+br {
    display:none;
}

.service__rank-condition-wrap {
    width: fit-content;
    margin: 0;
    vertical-align: middle;
    text-align: center;
    display: table-cell;
}

.service__rank-condition {
    width: 100%;
    margin: 15px auto 0;
    font-size: 1.3rem;
    text-align: left;
    vertical-align: middle;
    position: relative;
    display: table;
}

.service__rank_bronze .service__rank-condition,
.service__rank_regular .service__rank-condition{
    font-size: 1rem;
}

.service__rank_platinum .service__rank-condition,
.service__rank_gold .service__rank-condition,
.service__rank_silver .service__rank-condition,
.service__rank_bronze .service__rank-condition {
    margin-top: unset;
    white-space: nowrap;
}
    
.service-rank-col .arrow{
    margin: 0;
    display: table-cell;
    vertical-align: middle;
}
    
.service-rank-col .arrow:after{
    content:"";
    width:28px;
    height: 100%;
    margin: 0 2px;
    display:block;
    background: url(../images/arrow-1.svg) center center no-repeat;
    background-size:28px;
}

.service__rank_bronze .service-rank-col .arrow:after{
    content:"";
    width: 20px;
    margin: 0 auto;
    background: url(../images/arrow-1.svg) right center no-repeat;
    background-size: 20px;
}
    
.service__rank_regular .service-rank-col .arrow:after{
    content:"";
    width: 20px;
    height: 10px;
    margin: auto;
    background-size: 20px;
}
    
.service__rank-condition+svg,
.service__rank_gold .service__rank-condition+svg,
.service__rank_gold .service__rank-condition+svg,
.service__rank_silver .service__rank-condition+svg,
.service__rank_bronze .service__rank-condition+svg {
    margin: 0;
    display: none;
}

.service__rank_regular .service__rank-condition {
    margin: 0 auto 0;
    white-space: nowrap;
}

.service__rank-benefit {
    width: fit-content;
    padding: 0;
    display: table-cell;
    position: relative;
}

.service__rank_platinum .service__rank-benefit ,
.service__rank_gold .service__rank-benefit,
.service__rank_silver .service__rank-benefit,
.service__rank_bronze .service__rank-benefit,
.service__rank_regular .service__rank-benefit {
    height: unset;
}

.service__rank-benefit-text {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 500;
    position: absolute;
    top: 5px;
    right: 0;
}

.service__rank_gold .service__rank-benefit-text {
    font-size: 1.2rem;
}

.service__rank_silver .service__rank-benefit-text,
.service__rank_bronze .service__rank-benefit-text  {
    font-size: 1rem;
}

.service__rank_silver .service__rank-benefit-text {
    margin: 0 auto 19px;
}

.service__rank_gold .service__rank-benefit-cap {
    margin-bottom: 22px;
}

.service__rank_silver .service__rank-benefit-cap {
    margin-bottom: 19px;
}

.service__rank_bronze .service__rank-benefit-cap {
    margin-bottom: 9px;
}

.service__rank-benefit-value {
    margin: 0;
    padding-top: 3px;
    line-height: 38px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    align-content: center;
    white-space: nowrap;
    text-align: left;
}

.service__rank-benefit-note {
    font-size: 0.625rem;
    opacity: 0.9;
}

.service__rank-coupon-plus {
    width: 15px;
    height: 15px;
    margin: auto;
    top: 0;
    left: 0px;
    right: unset;
    bottom: 0;
    align-content: center;
    align-items: center;
}
    
.service__rank-coupon-plus span{
    font-size: 2rem;
    margin: -2px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.service__rank-coupon-text {
    font-size: 1.2rem;
    line-height: 1.3;
}

.service__note {
    max-width: unset;
    font-size: 1.2rem;
}

/* 初回限定特典エリア */
.service__welcome-area {
    padding: 0 0 90px;
    margin: 0 auto 60px;
    position: relative;
}

.service__welcome-area::before {
    content: "";
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, #D80B24, #D80B24 3px, transparent 0px, transparent 1px);
    background-size: 6px 2px;
    background-repeat: repeat-x;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.service__welcome-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 auto 20px;
}

.service__welcome-icon {
    width: 4rem;
    height: 4rem;
    background-color: #d80b24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.service__welcome-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d80b24;
}

.service__welcome-description {
    max-width: 820px;
    margin: 0 auto 2rem;
}

.service__welcome-text {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service__welcome-note {
    font-size: 1.2rem;
}

.service__welcome-coupons {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 57px;
    margin-bottom: 29px;
    position: relative;
}

.service__welcome-coupon {
    width: 100%;
    height: 155px;
    border-radius: 10px;
    padding: 0 22px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service__welcome-coupon_500 {
    max-width: 383px;
    justify-content: center;
    background: linear-gradient(135deg, #d80b24 0%, #b5091f 100%);
    color: #fff;
}

.service__welcome-coupon_500 .service__welcome-coupon-condition {
    font-size: 2.1rem;
}

.service__welcome-coupon_10up {
    max-width: 382px;
    padding-top: 28px;
    background-color: #fff;
    border: 2px solid #d80b24;
    color: #d80b24;
    justify-content: flex-start;
}

.service__welcome-coupon-amount {
    margin: -4px 0 0;
    font-weight: 700;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: flex-end;
    align-content: center;
}

.service__welcome-coupon-amount .nom {
    font-size: 10rem;
    line-height: 90px;
    letter-spacing: -.02em;
}

.service__welcome-coupon-amount .txt {
    font-size: 3.6rem;
    line-height: 3.6rem;
}

.service__welcome-coupon-amount .txt .large {
    margin-left: 8px;
    font-size: 5rem;
    line-height: 3.6rem;
}

.service__welcome-coupon-plus {
    width: 30px;
    height: 30px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #d80b24;
    border-radius: 50%;
    display: block;
}

.service__welcome-coupon-plus::before {
    content: "+";
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: block;
    color: #fff;
    font-size: 3.6rem;
    line-height: 26px;
    text-align: center;
    font-weight: 500;
}

.service__welcome-coupon-text {
    padding-bottom: 2px;
    margin-bottom: 16px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #FFF;
    line-height: 1.8;
    background: #d80b24;
}

.service__welcome-coupon-condition {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.02em;
    white-space: nowrap;
}

.service__welcome-note-bottom {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.2rem;
}

/* スタンプカードエリア */
.service__stamp-area {
    padding: 0 20px 50px;
    margin: 0 auto 60px;
    position: relative;
}

.service__stamp-area::before {
    content: "";
    width: calc(100% - 44px);
    margin: 0 auto;
}

.service__stamp-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service__stamp-icon {
    width: 4rem;
    height: 4rem;
    background-color: #d80b24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.service__stamp-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d80b24;
}

.service__stamp-description {
    max-width: 820px;
    margin: 0 auto 2rem;
}

.service__stamp-text {
    margin: 0 0 62px;
    font-size: 1.4rem;
}

.service__stamp-card_print,
.service__stamp-card_mario {
    max-width: 820px;
    margin: 0 auto;
}

.service__stamp-card_print {
    margin-bottom: 56px;
}

.service__stamp-card-header {
    width: 100%;
    margin-bottom: 18px;
    position: relative;
    display: block;
}

.service__stamp-card-title {
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 8px;
    display: grid;
    grid-template-columns: 67px auto;
    align-items: center;
}

.service__stamp-card-title img {
    width: 67px;
    margin: 0 7px 0 -6px;
}

.service__stamp-card-banner {
    min-width: unset;
    height: auto;
    min-height: 59px;
    margin: 0 auto;
    padding: 7px 0 10px;
    line-height: 1.2;
    position: relative;
    top: unset;
    left: 0;
    right: 0;
    display: block;
    text-align: center;
}

.service__stamp-card-banner:before,
.service__stamp-card-banner:after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.service__stamp-card-banner:after {
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #FFF;
    border-width: 13px;
    margin-left: -13px;
}

.service__stamp-card-banner:before {
    border-color: rgba(0, 0, 0, 0);
    border-top-color: #3D3333;
    border-width: 16px;
    margin-left: -16px;
}

.service__stamp-card-banner-text {
    font-size: 2.4rem;
}

.service__stamp-card-banner-text-heightlight {
    margin: 0 auto;
    display: table;
    font-weight: 700;
}

.service__stamp-card-banner-text-heightlight:after {
    content: "";
    bottom: 5px;
}

.service__stamp-card-content {
    padding: 16px 0;
    margin-bottom: 20px;
    border-radius: 20px;
    background: #D80B24;
    color: #fff;
    text-align: center;
    display: block;
}

.service__stamp-card_mario .service__stamp-card-content {
    padding: 21px 0 23px;
    background: #ED7987;
}

.service__stamp-card-stamps {
    max-width: 292px;
    width: 83.42857142857143%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 19px 34px;
    place-content: center;
    place-items: center;
    grid-template-columns: repeat(2, 1fr)!important;
}

.service__stamp-card-stamps_mario {
    max-width: 733px;
    width: fit-content;
    gap: 21px 56px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.service__stamp-card-stamp {
    max-width: 129px;
    width: 44.178082191780824%;
}

.service__stamp-card-stamp:last-child {
    margin:auto;
}
.service__stamp-card_mario .service__stamp-card-stamp {
    min-width: 97px;
    width: auto;
    padding-right: 0;
}

.service__stamp-card-stamp:after {
    content: "";
    height: 19px;
    width: 34px;
    margin: auto;
    position: absolute;
    top: 94px;
    right: -34px;
    /* background: #FFF; */
    -webkit-clip-path: unset;
    clip-path: unset;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    display: inline-block;
    background: url(../images/arrow.svg) center center no-repeat;
    background-size: 16.5px;
}
    
.service__stamp-card-stamp:last-child:after {
    content: "";
    right: unset;
    left: -46px;
}

.service__stamp-card_mario .service__stamp-card-stamp:after {
    width: 56px;
    right: -56px;
}
.service__stamp-card-stamp:nth-of-type(2n):after {
    content: none;
}
.service__stamp-card-stamp .service__stamp-card-stamp-cap {
    margin: 0 auto 5px;
    letter-spacing: 0;
}

.service__stamp-card_mario .service__stamp-card-stamp-cap {
    margin: 0 auto 17px;
}

.service__stamp-card-stamp .service__stamp-card-stamp-cap:after {
    content: "";
    width: 100%;
    height: 11px;
    margin: 10px auto 0;
    background: url(../images/fuki.svg) center bottom no-repeat;
    display: block;
}

.service__stamp-card_mario .service__stamp-card-stamp-cap:after {
    width: 97px;
}

.service__stamp-card-stamp .service__stamp-card-stamp-off {
    margin: 0 auto;
    font-family: "Noto Sans";
    color: #FFF;
    letter-spacing: -0.05em;
    font-size: 6.4rem;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    position: relative;
    display: block;
}

.service__stamp-card-stamp .service__stamp-card-stamp-off span {
    font-size: 4rem;
    letter-spacing: 0;
}

.service__stamp-card-stamp-img {
    width: 100%;
}

.service__stamp-card-note {
    font-size: 1.2rem;
    color: #3D3333;
    font-weight: 400;
}

/* 保証エリア */
.service__warranty-area {
    padding: 0 20px 35px;
    margin: 0 auto 60px;
    position: relative;
}

.service__warranty-area::before {
    content: "";
    width: calc(100% - 44px);
    margin: 0 auto;
}

.service__warranty-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service__warranty-icon {
    width: 4rem;
    height: 4rem;
    background-color: #d80b24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.service__warranty-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d80b24;
}

.service__warranty-description {
    max-width: unset;
    margin: 0 auto 33px;
}

.service__warranty-text {
    margin: 0 auto;
    font-size: 1.4rem;
}

.service__warranty-steps {
    max-width: unset;
}

.service__warranty-steps-title {
    max-width: unset;
    margin: 0 auto 84px;
}

.service__warranty-steps-title:after {
    content: "";
    width: 100%;
    height: 2px;
    margin: 17px auto 0;
    background: #3d3333;
    display: block;
}

.service__warranty-steps-list {
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: unset;
}

.service__warranty-step {
    width: 85.42857142857143%;
    height: 100%;
    min-height: 610px;
    max-width: 299px;
    margin: 0 auto;
    padding: 45px 23px 25px;
    text-align: center;
    background: #f2f2f2;
    position: relative;
}

.service__warranty-step-number {
    width: 105px;
    height: 105px;
    padding: 22px 0 0;
    font-size: 2.4rem;
    top: -53px;
}

.service__warranty-step:nth-of-type(3) p {
    margin-top: 8px;
}

.service__warranty-step p+p {
    margin-top: 18px;
    font-size: 1.2rem;
    line-height: 1.6;
}

.service__warranty-img {
    margin: 0 auto 11px;
    width: 100%;
}


/* 受付エリア */
.service__reception-area {
    padding: 0 20px 0;
    margin: 0 auto 40px;
    position: relative;
}
    
.service__reception-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service__reception-icon {
    width: 4rem;
    height: 4rem;
    background-color: #d80b24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.service__title-area .service__reception-title {
    font-size: 2.4rem;
}

.service__reception-description {
    max-width: unset;
    margin: 0 auto 33px;
}

.service__reception-text {
    margin: 0 auto;
    font-size: 1.4rem;
    line-height: 1.85;
    letter-spacing: 0;
}

.service__reception-steps-title {
    max-width: 430px;
    margin: 0 auto 84px;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0;
    color: #3d3333;
    text-align: center;
}

.service__reception-steps-title:after {
    content: "";
    width: 100%;
    height: 2px;
    margin: 17px auto 0;
    background: #3d3333;
    display: block;
}

.service__reception-steps-list {
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: unset;
}

.service__reception-step {
    width: 85.42857142857143%;
    max-width: 299px;
    height: 100%;
    min-height: 610px;
    margin: 0 auto;
    padding: 45px 23px 25px;
    text-align: center;
    background: #f2f2f2;
    position: relative;
}

.service__reception-step-number {
    width: 105px;
    height: 105px;
    padding: 22px 0 0;
    top: -53px;
}

.service__reception-step:last-child {
    padding-top: 0;
    padding-bottom: 37px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.service__reception-step p {
    margin: 0 auto;
    padding: 0 .5em;
    color: #3D3333;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.4;
}

.service__reception-img {
    width: 100%;
    height: auto;
    margin: 0 auto 19px;
}

.swiper-pagination {
    margin-top: 39px;
    position: relative;
    bottom: 0;
}

.swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: #d9d9d9;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #949494;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 6px;
}

.swiper-button-next, .swiper-button-prev {
    color: #949494;
}

.swiper-button-next{
}

.swiper-button-prev {
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 2.8rem;
    font-weight: bold;
}

.service__reception-step-text {
    font-size: 1.2rem;
    line-height: 1.4;
}


.service__cta {
    margin: 0 uto;
    text-align: center;
}

/* ========================================
   利用方法ガイドセクション (.guide)
   ======================================== */
.guide {
    margin: 0 auto;
    padding: 0 0 60px;
}

.guide__container {
    margin: 0 auto;
    padding: 0;
}

.guide__header {
    padding-top: 89px;
    margin: 0 auto 35px;
    text-align: center;
    position: relative;
}

.guide__header:after {
    content: "";
    width: 100%;
    height: 380px;
    background-color: #d80b24;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.guide__title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
}

.guide__steps {
    max-width: unset;
    margin: 0 auto;
    padding: 75px 20px 0;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 30px;
    z-index: 3;
    position: relative;
}

.guide__step {
    margin: 0 auto 26px;
}

.guide__step:before {
    content: "";
    left: 22px;
}

.guide__step:after {
    content: "";
    left: 29px;
    z-index: -1;
}

.guide__step:last-child:before,
.guide__step:last-child:after {
    content: none;
}

.guide__step-number {
    width: 60px;
    height: 60px;
}

.guide__step-number-text {
    font-size: 1.6rem;
    line-height: 1;
}

.guide__step-number-value {
    font-size: 2.4rem;
    line-height: .8;
}

.guide__step-content {
    width: calc(100% - 75px);
    margin: 8px 0 36px 0;
}

.guide__step-title {
    margin: 0 0 8px 14px;
    font-size: 2rem;
}
    
.guide__step:nth-of-type(1) .guide__step-title {
    margin-bottom: 40px;
    letter-spacing: 0;
}

.guide__step-description {
    margin: 0 0 13px 14px;
    font-size: 1.4rem;
    line-height: 1.8;
    letter-spacing: 0;
}

.guide__step:nth-of-type(3) .guide__step-description {
    margin: 0 0 17px 14px;
}

.guide__step img {
    width: 100%;
    margin: auto;
    display: block;
}

.guide__step:first-child img {
    max-width: 303px;
    margin-left: unset;
}

.guide__step:nth-of-type(2) img {
    max-width: 159px;
    margin-bottom: 0;
}
    
.guide__step:nth-of-type(2) img:nth-of-type(2) {
    margin-left: -2px;
}

.guide__step:nth-of-type(3) img {
    max-width: 157px;
    margin: 0 auto;
}

.guide__step:nth-of-type(3) .guide__step-image{
    margin-left: -22px;
}
    
.guide__step-images,
.guide__step-image{
    margin-left: -19px;
    gap: 0;
}

.guide__cta {
    text-align: center;
}

/* ========================================
   公式LINEの便利な機能 (.convenience)
   ======================================== */
   .convenience {
    width: 100%;
    padding: 80px 0 80px 0;
    background-color: #d80b24;
}

.convenience__container {
    max-width: 90%;
    margin: 0 auto;
    padding: 40px 20px 40px 20px;
    background-color: #fff;
    border-radius: 30px;
}

.convenience__header {
    text-align: center;
}

.convenience__title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #d80b24;
}

.convenience__description-text{
    font-size: 1.4rem;
    line-height: 1.9;
    margin: 20px auto 20px;
    text-align: center;
}

.convenience_icon {
    display: inline-flex;
}

.convenience_icon img {
    padding: 10px;
}

/* ========================================
   注意事項セクション (.notice)
   ======================================== */
.notice {
    padding: 77px 0;
    color: #fff;
    background-color: #d80b24;
}

.notice__container {
    max-width: unset;
    padding: 0 22px;
}

.notice__header {
    margin-bottom: 32px;
}

.notice__title {
    font-size: 2.4rem;
}

.notice__content {
    margin-bottom: 3rem;
}

.notice__text {
    max-width: unset;
    margin: 0 auto 30px;
}

.notice__text-item {
    margin: 0 0 10px;
    font-size: 1.4rem;
    line-height: 1.6;
}

.notice__contact {
    max-width: 820px;
    margin: 0 auto;
}

.notice__contact-title {
    margin-bottom: 25px;
}

.notice__contact-list {
    margin-bottom: 30px;
    display: block;
}

.notice__contact-item {
    padding: 20px;
    margin: 0 auto 18px;
    background-color: #fff;
}

.notice__contact-item-title {
    margin-bottom: 0.5rem;
}

.notice__contact-item-subtitle {
    margin-bottom: 2px;
    font-size: 1.3rem;
    letter-spacing: .5px;
}

.notice__contact-item dl {
    margin: 0 0 5px;
    display: table;
}

.notice__contact-item dt {
    padding-right: 15px;
    font-size: 1.4rem;
    white-space: nowrap;
}

.notice__contact-item dd {
    display: table-cell;
}

.notice__contact-item-phone {
    letter-spacing: 0;
    white-space: nowrap;
}

.notice__contact-item-time {
    font-family: "Noto Sans";
    font-size: 2rem;
}

.notice__contact-item-time span {
    display: block;
}

.notice__contact-item-note {
    margin: 10px auto 0;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 1.1px;
}

.notice__contact-note {
    margin-bottom:17px;
    font-size: 1.4rem;
    color: #fff;
}
}


/* スマートフォン (380px以下)*/
@media (max-width: 380px){
.service__stamp-card-stamps {
    gap: 19px 9.714285714285714%;
}

.service__stamp-card-stamp:after {
    content: "";
    width: 23.28767123287671%;
    margin: auto;
    position: absolute;
    top: 94px;
    right: -23.28767123287671%;
    background: url(../images/arrow.svg) center center no-repeat;
    /* background-size: 26.356589147286826%; */
}

.service__stamp-card-stamps_mario{
    gap: 21px 56px;
}
}

/* スマートフォン (375px以下)*/
@media (max-width: 374px){
.service__rank-condition {
    font-size: 1.2rem;
}
.service__rank dd .price p span.price-nom02 {
    font-size: 3.2rem;
    order: 1;
}
.service__rank dd .price p span.price-off {
    font-size: 1.4rem;
    order: 2;
}
.service__rank span.price-txt {
    font-size: 2rem;
}
.service__rank span.tilda {
    font-size: 2rem;
}
.service__rank-benefit-value span {
    font-size: 4.5rem;
    letter-spacing: 0em;
}
.service__rank_gold .service__rank-benefit-value span {
    font-size: 3.5rem;
}
.service__rank_silver .service__rank-benefit-value span {
    font-size: 2.5rem;
}
.service__rank_bronze .service__rank-benefit-value span {
    font-size: 2.4rem;
}
.service__rank-benefit-value span.middle {
    font-size: 2.2rem;
}
.service__rank_gold .service__rank-benefit-value span.middle {
    font-size: 1.8rem;
}
.service__rank_silver .service__rank-benefit-value span.middle {
    font-size: 1.6rem;
}
.service__rank-benefit-text {
    font-size: 1.2rem;
}
.service__rank_gold .service__rank-benefit-text {
    font-size: 1rem;
}
.service__rank_silver .service__rank-benefit-text,
.service__rank_bronze .service__rank-benefit-text  {
    font-size: .9rem;
}

.service__rank_bronze .service__rank-benefit-value span.middle {
    font-size: 1.8rem;
}
.service__rank dd .price {
    font-size: 1.6rem;
}
.service__rank span.small {
    font-size: 1rem;
}
.service__rank_silver dd .price,
.service__rank_bronze dd .price {
    font-size:1.4rem;
}
.service__rank span.price-nom {
    font-size: 2.5rem;
}
.service__rank_silver span.price-nom,
.service__rank_bronze span.price-nom {
    font-size: 2rem;
}
.service__rank_regular dd .price>span {
    font-size: .9rem;
}
.service__rank dd .price p {
    margin: -1em 0 0;
}
}





/*Color*/
.service__rank_platinum,
.platinum {
    /* color: #8dbfe8; */
    /* background:#8dbfe8; */
    --rank-color: #8dbfe8;
    --rank-color-dark: #6ba3d1;
}

.service__rank_gold,
.gold {
    /* color: #f2ac3c; */
    /* background:#f2ac3c; */
    --rank-color: #f2ac3c;
    --rank-color-dark: #e0992a;
}

.service__rank_silver,
.silver {
    /* color: #949494; */
    /* background:#949494; */
    --rank-color: #949494;
    --rank-color-dark: #7a7a7a;
}

.service__rank_bronze,
.bronze {
    /* color: #c4956c; */
    /* background:#c4956c; */
    --rank-color: #c4956c;
    --rank-color-dark: #a67c52;
}

.service__rank_regular,
.regular {
    /* color: #ff9494; */
    /* background:#ff9494; */
    --rank-color: #ff9494;
    --rank-color-dark: #ff7a7a;
}