@charset "utf-8";

.-red,
.-red a {
    color: #e40000;
}

.marker {
    background-image: linear-gradient(transparent 70%, #ffec04 70%, #ffec04 100%);
}

.point_number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    width: calc(71/12*1em);
    height: calc(34/12*1em);
    background-color: #fef1f8;
    border: 2px solid #333;
}

.point_number b {
    font-size: calc(18/12*1em);
    font-weight: bold;
	margin-left: calc(2/12*1em);
}

/* header・footer */
.header_upper-logo img:nth-of-type(1),
.header_upper-nav {
    display: none;
}

footer {
    margin-top: 0;
}

/* mv */
.mv { 
    margin: 0 auto;
    padding-bottom: 1px;
    width:100%;
}

.mv h1 {
    background: #F0A0C8;
    text-align: center;
}

.mv_note {
    margin: 40px auto 0;
    width: 1200px; 
}

.mv_note ul {
    margin-top: 16px;
}

.mv_note li {
    color: #666666;
    font-size: 14px;
    line-height: calc(21/14);
    padding-left: 1.3em;
    text-indent: -1.3em;
}

/* point */
.point {
    padding: 64px 0 120px;
    background-image: linear-gradient(#ffffff 150px, #fef1f8 150px, #fef1f8 100%);
}

/* point_menu */
.menu_title {
    color: var(--color-main);
    font-size: 40px;
    font-weight: bold;
    line-height: calc(48/40);
    width: 1200px;
    margin: 0 auto;
}

.point_menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 0;
    margin: 24px auto 0;
    background: var(--color-main);
}

.point_menu li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: calc(24/16);
    width: 224px;
    height: 120px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: var(--box-shadow-general);
}

.point_menu li a::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 10%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-top: 2px solid #333;
    border-left: 2px solid #333;
    transform: translate(-50%, -50%) rotate(225deg);
}

.point_menu .point_number {
    position: absolute;
    top: -18px;
    left: 50%;
    font-size: 12px;
    box-shadow: 2px 2px 0 0 #000;
    transform: translate(-50%, 0);
}

.point_menu .point_text {
    font-weight: bold;
    line-height: calc(24/16);
    transition: 0.3s ease-out;
}

.point_menu li a:hover .point_text {
    opacity: 0.6;
}

/* point_plan common */
.point section {
    width: 1200px;
    padding: 40px;
    margin: 64px auto 0;
    background-color: #ffffff;
}

.point section + section {
    margin: 40px auto 0;
}

.point section h4 {
    font-size: 32px;
    font-weight: bold;
    margin-top: 64px;
}

.point section#point5 h4 {
    color: var(--color-main);
    text-align: center;
}

.point [data-hover="button"] {
    margin-top: 40px;
}

.point_title .point_number {
    font-size: 16px;
    box-shadow: 4px 4px 0 0 #000;
}

.point_title strong {
    display: block;
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
    margin-top: 19px;
}

.point .annotation {
    margin-top: 40px;
}

.point .annotation dt {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    line-height: calc(64/24);
    padding-left: 40px;
    background-color: #f2f2f2;
    cursor: pointer;
}

.point .annotation dt::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 40px;
    width: 15px;
    height: 15px;
    border-top: 2px solid #333;
    border-left: 2px solid #333;
    transform: translate(0, -60%) rotate(225deg);
}

.point .annotation dt.open::after {
    transform: translate(0, -10%) rotate(45deg);
}

.point .annotation dd {
    display: none;
    line-height: 1.5;
    padding: 40px;
    border-bottom: 1px solid #888;
}

.point .annotation_blackCircle,
.point .annotation_asterisk li,
.point .annotation_star li,
.point ul.annotation_markNone li {
    text-indent: -1.25em;
    padding-left: 1.25em;
}

.annotation a {
    text-decoration: underline;
}

.point .annotation_indent {
    padding-left: 1.25em;
}

.point .annotation_blackCircle {
    margin-top: 24px;
}

.point .annotation_markNone + .annotation_asterisk,
.point p.annotation_markNone + ul.annotation_markNone,
.point ul.annotation_markNone + p.annotation_markNone,
.point p.annotation_markNone + .annotation_star {
    margin-top: 14px;
}

.point .annotation_blackCircle::before {
    content: "● ";
}

.point .annotation_asterisk {
    color: #666;
    font-size: 14px;
}

.point > .annotation_asterisk {
    width: 1200px;
    margin: 40px auto 0;
}

.point .annotation_asterisk li::before {
    content: "※ ";
}

.point .annotation_star {
    font-size: 14px;
}

.point .annotation_star li::before {
    content: "★ ";
}

.point_note {
    color: #666;
    font-size: 14px;
    margin-top: 16px;
}

.point_note li {
    text-indent: -2.5em;
    padding-left: 2.5em;
}

.point_plan {
    display: flex;
    justify-content: space-between;
    margin-top: 64px;
    padding: 40px 0 40px 40px;
    border: 1px solid #888;
}

.point_title + .point_plan {
    margin-top: 40px;
}

#point1 .point_plan {
    padding-right: 90px;
}

#point2 .point_plan:nth-of-type(1) {
    padding-right: 70px;
}

#point2 .point_plan:nth-of-type(2) {
    padding-right: 210px;
}

.point_plan h3 {
    color: var(--color-main);
    font-size: 32px;
    font-weight: bold;
    line-height: 1.2;
}

.point_plan h3 span {
    font-weight: bold;
}

.point_plan h3 .catchCopy {
    display: block;
    font-size: 20px;
    line-height: 1.5;
}

.point_plan h3 .number {
    font-size: 48px;
}

.point_plan h3 .unit {
    font-size: 40px;
}

.point_plan-text p {
    font-weight: bold;
}

.point_plan-price + p {
    margin-top: 26px;
}

.point_plan-price {
    display: flex;
    align-items: baseline;
}

.point_plan-price .main,
.point_plan-price .main *,
.point_plan-price .tax,
.point_plan-price .discount {
    color: #e40000;
    font-weight: bold;
}

.point_plan-price .main {
    font-size: 26px;
    line-height: 1;
    margin-top: 12px;
}

.point_plan-price .main sup,
.point_plan-price .tax {
    font-size: 22px;
}

.point_plan-price .main span,
.point_plan-price .discount {
    font-size: 51px;
}

.point_plan-price .tax,
.point_plan-price .discount {
    margin-left: 12px;
}

.point_tokuten {
    margin-top: 24px;
}

.point_tokuten li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px 24px 80px;
    border: 2px solid #e3007f;
}

.point_tokuten li + li {
    margin-top: 16px;
}

.point_tokuten li:nth-of-type(1) {
    background: url(/img/pc/uqmobile/uqmobile/202509/point1_bkpoint.png) no-repeat top left / 60px auto;
}

.point_tokuten li:nth-of-type(2) {
    background: url(/img/pc/uqmobile/uqmobile/202509/point2_bkpoint.png) no-repeat top left / 60px auto;
}

.point_tokuten li:nth-of-type(3) {
    background: url(/img/pc/uqmobile/uqmobile/202509/point3_bkpoint.png) no-repeat top left / 60px auto;
}

.point_tokuten li h5,
.point_tokuten li h5 span {
    font-weight: bold;
}

.point_tokuten li h5 span {
    display: inline-block;
    color: var(--color-main);
    font-size: 24px;
    margin-top: 12px;
}

.point_tokuten li h5 span sup {
    font-size: 14px;
    vertical-align: super;
}

.point_tokuten-text {
    min-width: 520px;
}

.point_tokuten-text .note {
    color: #666;
    font-size: 14px;
    text-indent: -1.25em;
    padding-left: 1.25em;
    margin-top: 16px;
}

.plan_target {
    margin-top: 16px;
}

.plan_target span {
    display: block;
    font-weight: bold;
}

#point1 .point_chart {
    width: 550px;
}

#point3 .point_chart {
    width: 540px;
}

#point4 .point_chart {
    width: 800px;
    margin: 0 auto;
}

.point_chart-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.point_chart-text,
.point_chart-text span,
.point_chart-text small {
    font-weight: bold;
}

.point_chart-text {
    font-size: 20px;
}

.point_chart-text span {
    color: var(--color-main);
}

.point_chart-text small {
    display: block;
    color: #666;
    font-size: 16px;
    margin-top: 5px;
}

#point3 .point_chart-text {
    text-align: center;
    height: 96px;
}

#point3 .point_chart-text span {
    font-size: 24px;
}

#point4 .point_chart-text {
    text-align: center;
}

.point_chart img {
    display: block;
    width: fit-content;
    margin: 24px auto 0;
}

.point_chart-price,
.point_chart-price span {
    font-weight: bold;
}

.point_chart-price {
    font-size: 20px;
    text-align: center;
    margin-top: 12px;
}

.point_chart-price span {
    font-size: 40px;
    padding: 0 5px 0 10px;
}

.point_chart-price small {
    font-size: 16px;
}

.point_chart-table {
    width: 100%;
    border: 5px solid var(--color-main);
    border-top: none;
    border-collapse: unset;
}

.point_chart-table tr:nth-of-type(n + 2) {
    display: flex;
}

.point_chart-table th {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    line-height: calc(63/24);
    background-color: var(--color-main);
}

.point_chart-table td {
    display: inline-flex;
    align-items: center;
    height: 53px;
}

.point_chart-table tr:nth-child(n + 3) {
    border-top: 1px solid #888;
}

.point_chart-table td:nth-of-type(1) {
    font-weight: bold;
    padding-left: 20px;
    width: calc(100% - 145px);
}

.point_chart-table td:nth-of-type(1) span {
    font-size: 14px;
}

.point_chart-table td:nth-of-type(1) span::before {
    content:"……";
    color: #ccc;
    padding: 5px;
}

.point_chart-table td:nth-of-type(2),
.point_chart-table td:nth-of-type(2) b {
    font-weight: bold;
}

.point_chart-table td:nth-of-type(2) {
    justify-content: end;
    font-size: 14px;
    text-align: right;
    width: 145px;
    padding-right: 25px;
}

.point_chart-table td:nth-of-type(2) b {
    font-size: 20px;
    padding-right: 4px;
}

.point_link-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.point_link-wrapper a {
    text-decoration: underline;
}

.point_leadText,
.point_leadText span.point_leadText-mobileColor {
    color: var(--color-main);
    font-weight: bold;
}

.point_leadText-mobileColor + span,
.point_leadText span.point_leadText-note {
    margin-top: 12px;
}

.point_leadText {
    font-size: 32px;
    text-align: center;
    padding: 24px 0;
    margin-top: 40px;
    border-top: 1px solid #888;
    border-bottom: 1px solid #888;
}

.point_leadText span {
    display: block;
    color: #333;
    font-size: 16px;
}

.point_leadText span.point_leadText-note {
    color: #666;
}

#point5 > *:not(.point_title):not(.point_leadText):not(.main-btn) {
    display: block;
    width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#point5 img,
#point5 img + *:not(img) {
    margin-top: 16px;
}

#point5 img + img {
    margin-top: 0;
}