@charset "utf-8";

/* リセットCSS */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

a, button {
    cursor: revert;
}

ol, ul, menu, summary {
    list-style: none;
}

img {
    max-inline-size: 100%;
    max-block-size: 100%;
}

table {
    border-collapse: collapse;
}

input, textarea {
    -webkit-user-select: auto;
}

textarea {
    white-space: revert;
}

meter {
    -webkit-appearance: revert;
    appearance: revert;
}

:where(pre) {
    all: revert;
    box-sizing: border-box;
}

::placeholder {
    color: unset;
}

:where([hidden]) {
    display: none;
}

:where([contenteditable]:not([contenteditable="false"])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    -webkit-user-select: auto;
}

:where([draggable="true"]) {
    -webkit-user-drag: element;
}

:where(dialog:modal) {
    all: revert;
    box-sizing: border-box;
}

::-webkit-details-marker {
    display: none;
}
/* 以上、リセットCSS */

/* root関数 */
:root {
    --blue400: #1DACCC;
    --gray100: #CCCCCC;
    --gray400: #555555;
    --orange100: #FFECE8;
    --orange400: #EF4823;
}
/* 以上、root関数 */

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
    color: var(--gray400)
}

.pc_bg {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 150vh;
    background-image: url(../images/male_reward_info/pc_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(28,172,204,.25);
    background-blend-mode: overlay;
    z-index: -1;
}

.scroll-infinity_wrap,
.pc_contents {
    display: none;
}

h1 {
    display: block;
    width: 100%;
    height: 50px;
    background-image: url(../../girls/images/logo/logo@3x.png);
    background-repeat: no-repeat;
    background-size: 246px 34px;
    background-position: center;
    text-indent: -9999px;
    background-color: rgba(255, 255, 255, .6);
}

header {
    position: relative;
    padding-top: 16px;
    padding-left: 4vw;
    padding-right: 4vw;
    background-color: rgba(255, 255, 255, .6);
    height: 100%;
}

header > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: calc(100svh - 16px);
}

header > div img.copy {
    width: 100%;
    height: auto;
    margin-bottom: 24px;
}

header > div img.woman {
    display: block;
    margin-top: auto;
    overflow: hidden;
    aspect-ratio: 235 / 227;
}

header img.arrow {
    position: absolute;
    left: 4vw;
    bottom: 40px;
    width: auto;
    height: 68.65px;

}

header img.updown {
    animation-name: UpDown;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
}

@keyframes UpDown {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-16px);
    }
}

.bg_white {
    background-color: #fff;
}

section {
    margin-bottom: 88px;
}

section h2 {
    font-size: 6.5vw;
    padding: 5% 0;
    background-color: var(--blue400);
    text-align: center;
    color: #fff;
    line-height: 1;
    margin-bottom: 40px;
    font-weight: bold;
}

section h3 {
    font-size: 6vw;
    font-weight: bold;
    line-height: 1;
    color: var(--blue400);
    margin-bottom: 24px;
}

section.about > div,
section.flow > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 48px;
}

section.about > div {
    padding-left: 4vw;
    padding-right: 4vw;
}

section.flow > div {
    padding-left: 16px;
    padding-right: 16px;
    margin-right: 4vw;
    margin-left: 4vw;
    padding: 32px 16px;
    border: 2px solid var(--blue400);
    border-radius: 12px;
    position: relative;
}

section.flow > div:not(:last-of-type)::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    bottom: -30px;
    width: 20px;
    height: 20px;
    border-left: 2px solid var(--blue400);
    border-bottom: 2px solid var(--blue400);
}

section.flow > div:first-of-type > p:first-of-type {
    margin-bottom: 24px;
}

section.about > div:last-of-type,
section.flow > div:last-of-type {
    margin-bottom: 0;
}

section.faq dl {
    padding-left: 4vw;
    padding-right: 4vw;
}

section.faq dl dt {
    font-size: 5.3vw;
    font-weight: bold;
    color: var(--blue400);
    padding-left: 1.5em;
    position: relative;
    margin-bottom: 12px;
}

section.faq dl dt::before {
    content: "Q.";
    position: absolute;
    left: 0;
    top: 3px;
}

section.faq dl dd {
    padding-left: 1.5em;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray100);
}

section.faq dl dd:last-of-type {
    border-bottom: none;
}

section.faq dl dd:not(:last-of-type) {
    margin-bottom: 16px;
}

section.caution ul {
    padding-left: 4vw;
    padding-right: 4vw;
}

section.caution ul li {
    padding-left: 1em;
}

section.caution ul li:not(:last-of-type) {
    margin-bottom: 16px;
}

footer {
    font-size: 12px;
    text-align: center;
    padding-bottom: 16px;
}

a.cta_btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    line-height: 1;
    padding: 16px 0;
    width: 296px;
    border: 2px solid var(--orange400);
    background-color: var(--orange400);
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .16);
    cursor: pointer;
}

a.cta_btn::after {
    content: "";
    position: absolute;
    right: 32px;
    top: 50%;
    width: 16px;
    height: 16px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-50%) rotate(-135deg);
}

@media(hover: hover) {
    a.cta_btn:hover {
        color: var(--orange400);
        background-color: #fff;
        box-shadow: none;
        transition: .2s;
    }

    a.cta_btn:hover::after {
        border-left-color: var(--orange400);
        border-bottom-color: var(--orange400);
        transition: .2s;
    }
}

@media(hover: none) {
    a.cta_btn:active {
        color: var(--orange400);
        background-color: #fff;
        box-shadow: none;
    }

    a.cta_btn::after:active {
        border-left-color: var(--orange400);
        border-bottom-color: var(--orange400);
    }
}

img.icon {
    display: block;
    margin-bottom: 24px;
}

.hang {
    padding-left: 1em;
    text-indent: -1em;
}

span.asterisk {
    font-size: 12px;
    vertical-align: top;
}

.cta_area {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta_area > div {
    font-weight: bold;
    text-align: center;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.cta_area > div::before {
    content: "";
    display: block;
    width: 1px;
    height: 42px;
    background-color: var(--orange400);
    transform: rotate(344deg);
}

.cta_area > div::after {
    content: "";
    display: block;
    width: 1px;
    height: 42px;
    background-color: var(--orange400);
    transform: rotate(16deg);
}

.cta_area > div p.cta_comment span.font_color,
.cta_area p.firstBuy span.font_color{
    color: var(--orange400);
}

.cta_area > div p.cta_comment span.font_size {
    font-size: 22px;
}

.cta_area p.firstBuy {
    font-size: 13px;
    margin-bottom: 8px;
}

.cta_area p.firstBuy span.font_color {
    font-weight: bold;
}

.cta_area p.firstBuy span.font_size {
    font-size: 15px;
}

@media (min-width: 768px) {

    .pc_bg .scroll-infinity_wrap .pc_slider_img {
        height: 100vh;
        width: 200vw;
        object-fit: cover;
    }

    main {
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
        box-shadow: 0 0 16px rgba(112,112,112,.7);
    }

    header {
        padding-left: 16px;
        padding-right: 16px;
    }

    header img.arrow {
        left: 32px;
    }

    section h2 {
        font-size: 160%;
        padding: 1em 0;
    }

    section h3 {
        font-size: 140%;
    }

    section.about > div {
        padding-left: 16px;
        padding-right: 16px;
    }

    section.flow > div {
        margin-left: 16px;
        margin-right: 16px;
    }

    section.faq dl {
        padding-left: 16px;
        padding-right: 16px;
    }

    section.faq dl dt {
        font-size: 120%;
    }

    section.caution ul {
        padding-left: 16px;
        padding-right: 16px;
    }



    @keyframes pc_bg_infinity-scroll-left {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-100%);
        }
    } 
    .scroll-infinity_wrap {
        display: flex;
        overflow: hidden;
    }
    
    .scroll-infinity_list {
        flex-shrink: 0;
        display: flex;
        list-style: none;
        padding: 0;
    }
    
    .scroll-infinity_list-left {
        animation: pc_bg_infinity-scroll-left 80s infinite linear 0.5s both;
    }
    
    .scroll-infinity_item {
        width: 100vw;
        overflow: visible;
    }
    
    .scroll-infinity_item > img {
        width: 100%;
        overflow: visible;
    }
}

@media(min-width: 980px) {
    .pc_contents {
        display: block;
    }
    .pc_contents img {
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        right: calc(50% + 225px + 1.63vw);
        width: clamp(233px,-11.762rem + 42.9787vw,738px);
    }
    
    .pc_contents ul {
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        left: calc(50% + 225px + 1.63vw);
        z-index: 100;
    }

    .pc_contents ul li {
        width: clamp(233px, -16.0625rem + 50vw, 296px);
    }
    
    .pc_contents ul li:not(:last-of-type) {
        margin-bottom: 40px;
    }
    
    .pc_contents ul li a {
        display: flex;
        flex-direction: row;
        justify-content: center;
        line-height: 1;
        padding: 16px 0;
        border: 2px solid var(--blue400);
        background-color: var(--blue400);
        color: #fff;
        font-size: 24px;
        font-weight: bold;
        border-radius: 50px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, .16);
        position: relative;
        cursor: pointer;
    }

    .pc_contents ul li a:hover {
        background-color: #fff;
        color: var(--blue400);
        box-shadow: none;
        transition: .2s;
    }

    h1 {
        display: none;
    }

    header {
        padding-top: calc(50px + 16px)
    }

    header > div {
        height: calc(100vh - 50px - 16px);
    }

    header img.arrow {
        bottom: 8px;
    
    }
}

@media(min-width: 1100px) {
    .pc_contents ul li a::after {
        content: "";
        display: block;
        position: absolute;
        right: 32px;
        top: 50%;
        width: 16px;
        height: 16px;
        border-left: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: translateY(-50%) rotate(-135deg);
    }

    .pc_contents ul li a:hover:after {
        border-left-color: var(--blue400);
        border-bottom-color: var(--blue400);
        transition: .2s;
    }
}