@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    color: var(--text-color);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: min(16px, 4.1vw);
    font-style: normal;
    font-weight: normal;
    font-feature-settings: 'palt';
    font-display: swap !important;
    letter-spacing: .06em;
    line-height: 2;
    -webkit-text-size-adjust: 100%;
    background: #ffffff;
}

:root {
    --text-color: #000000;
    --red-color: #D00000;
    --yellow-color: #FFF500;
    --navy-color: #003767;
}

.mincho {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
}


/* スクロールフェードイン */

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(.25, 0, .25, 1);
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeUpTrigger {
    opacity: 0;
}


.fixed_girl01 {
    width: min(233px, 21.54vw);
    position: fixed;
    bottom: 40px;
    left: calc((100vw - 750px)/2 + 738px);
    z-index: 10;
}

header {
    margin: 0 auto;
    width: min(750px, 100vw);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
}


header .top_logo {
    display: block;
    width: min(195px, 33.33vw);
    position: absolute;
    top: min(40px, 5vw);
    left: min(40px, 5vw);
}

header > a {
    display: flex;
    padding: 0 0 0 .5em;
    width: min(195px, 27.18vw);
    height: min(70px, 12.82vw);
    background: linear-gradient(180deg, #2AAAAF 70%, #50c3c7 100%);
    border: 1px solid #ffffff;
    border-radius: 2em;
    color: #ffffff;
    font-size: min(24px, 3.59vw);
    font-weight: 700;
    justify-content: center;
    align-items: center;
    transition: .3s;
    position: absolute;
    top: min(20px, 2.5vw);
    right: min(40px, 5vw);
}

header > a::before {
    content: '';
    width: 81.54%;
    height: 57.14%;
    background: linear-gradient(180deg, rgba(255,255,255,.6) 0%, rgba(255,255,255,0) 70%);
    border-radius: 20px;
    position: absolute;
    top: 3px;
    left: 17px;
}

header > a::after {
    content: "▼";
    transform: rotate(-90deg) scaleY(.5);
}

.wrapper {
    margin: 0 auto;
    width: min(750px, 100vw);
    background: #E8F3FD;
    box-shadow: 0 0 6px rgba(0, 0, 0, .2);
    overflow-x: hidden;
}

main {
    position: relative;
    height: 1290px;
    background: url(../images/bg_main.webp) no-repeat 50% 0;
    background-size: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 2s ease-out;
}

/* 最初に表示 */
.show {
    opacity: 1;
    visibility: visible;
}

main > h1 {
    width: min(750px, 100vw);
    height: min(364px, 48.54vw);
    background: url(../images/bg_main_h1.webp) no-repeat 100% 0;
    background-size: 100%;
    position: absolute;
    top: 640px;
    left: 0;
}


main > h1 > * {
    display: block;
    padding: 0 20px 0 0;
    color: #ffffff;
    transform: rotate(-6deg);
}

main > h1 > span {
    color: #000000;
    font-size: min(40px, 6.67vw);
    text-align: right;
    text-shadow: 0 0 .15em #ffffff, 0 0 .15em #ffffff, 0 0 .15em #ffffff, 0 0 .3em #ffffff, 0 0 .3em #ffffff, 0 0 .3em #ffffff, 0 0 .3em #ffffff;
    position: relative;
    top: -.6em;
}

main > h1 > strong {
    font-size: min(44px, 5.64vw);
    font-weight: 600;
    line-height: 1;
    position: relative;
    top: -.325em;
    left: 100px;
}

main > h1 .undiluted {
    position: relative;
    left: -.1em;
}

main > h1 > strong * {
    font-weight: inherit;
}

main > h1 > strong > strong {
    font-size: min(100px, 13.08vw);
    letter-spacing: -.02em;
}

main > h1 > strong > strong > strong {
    font-size: min(112px, 14.62vw);
    letter-spacing: 0;
    position: relative;
    top: .01em;
}

main > h1 > figure {
    padding: 0;
    width: min(312px, 41.5vw);
    font-size: min(22px, 3.08vw);
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
    line-height: 1.5;
    position: absolute;
    top: 50px;
    right: 85px;
}

main > h1 > small {
    font-size: min(30px, 3.85vw);
    position: relative;
    top: -1.1em;
    left: 104px;
}

main > h1 > small span {
    margin: 0 1em;
    color: var(--navy-color);
    font-size: min(34px, 4.36vw);
    position: relative;
    z-index: 1;
}

main > h1 > small span::after {
    content: '';
    margin: auto 0;
    width: 140%;
    height: 110%;
    background: var(--yellow-color);
    transform: skew(-10deg);
    position: absolute;
    top: 0;
    bottom: 0;
    left: -.5em;
    z-index: -1;
}

main > h1 > small span strong {
    font-size: min(47px, 5.9vw);
    position: relative;
    top: .075em;
}


main > h2 {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    position: absolute;
    top: 90px;
    left: 40px;
}

main > h2 > span {
    display: inline-block;
    padding: .6em 0;
    background: linear-gradient(180deg, rgba(18, 48, 103, .8), rgba(217, 145, 189, .8));
    color: #ffffff;
    font-size: min(58px, 7.69vw);
    font-weight: 700;
    white-space: nowrap;
    writing-mode: vertical-rl;
    text-orientation: upright;
    line-height: 1.45;
    letter-spacing: .08em;
    position: relative;
}

main > h2 > span.fst_span {
    padding-bottom: .5em;
    top: 2.25em;
}


main > h2 span strong {
    font-size: min(68px, 8.97vw);
    font-weight: inherit;
}

main .img_series {
    display: block;
    width: min(600px, 87.18vw);
    filter: drop-shadow(.5rem .5rem .25rem rgba(0, 0, 0, .25));
    position: absolute;
    left: 75px;
    bottom: 20px;
}

#intro {
    padding: 0 0 min(230px, 30.77vw);
    background: url(../images/img_hand01.webp) no-repeat 100% 100%;
    background-size: 356px;
}

#intro > h2 {
    font-size: min(32px, 3.85vw);
    text-align: center;
}

#intro > h2 > img {
    display: block;
    margin: 0 auto;
    padding: 0 0 min(26px, 3.08vw);
    width: min(506px, 63.08vw);
    border-bottom: 1px solid #000000;
}

#intro > h2 > span {
    font-size: min(44px, 6.67vw);
}

:is(#intro, #series) > ul {
    display: flex;
    flex-wrap: wrap;
    margin: 1rem auto 0;
    width: min(670px, 90vw);
    color: #ffffff;
    font-size: min(26px, 3.59vw);
    line-height: 2.75;
    justify-content: center;
    gap: .75rem 4%;
}

:is(#intro, #series) > ul li {
    width: 48%;
    background: #8E1C30;
    text-align: center;
}

:is(#intro, #series) > ul li:nth-child(2) {
    background: #3F85D1;
}

:is(#intro, #series) > ul li:nth-child(3) {
    background: #53C0B4;
}

:is(#intro, #series) > ul li:last-child {
    background: #DA5A85;
}

#intro > p {
    margin: 1.5em 0 0;
    font-size: min(26px, 4.62vw);
    text-align: center;
    line-height: 1.75;
    letter-spacing: 0;
}

#intro > .logo_charites {
    display: block;
    margin: 2rem auto 0;
    width: min(200px, 43.08vw);
}

#camp01 {
    margin: -60px 0 0;
    padding: min(120px, 17.18vw) min(20px, 2.5vw) min(130px, 15.38vw);
    background: var(--navy-color);
    border-radius: min(60px, 10.26vw) min(60px, 10.26vw) 0 0;
}

#camp01 > h2 {
    display: flex;
    height: min(62px, 9.23vw);
    color: #ffffff;
    font-size: min(30px, 4.62vw);
    justify-content: flex-end;
    position: relative;
}

#camp01 > h2 span {
    padding: 0 6em 0 2.5em;
    background: #000000;
    clip-path: polygon(13% 0%, 100% 0%, 100% 100%, 0% 100%);
}

#camp01 > h2::after {
    content: '';
    width: min(166px, 22.05vw);
    height: min(144px, 19.23vw);
    background: url(../images/img_sample_s.webp) no-repeat 50% 50%;
    background-size: 100%;
    position: absolute;
    top: -58px;
    right: 8px;
}

#camp01 > .cont_camp01 {
    padding: min(70px, 10.26vw) 0 min(60px, 10.26vw);
    background: #F0F5F8;
    position: relative;
}

#camp01 > .cont_camp01 > strong {
    display: flex;
    flex-wrap: wrap;
    width: min(206px, 27.18vw);
    height: min(206px, 27.18vw);
    border-radius: 50%;
    background: var(--red-color);
    color: #ffffff;
    font-size: min(50px, 6.67vw);
    line-height: 1.1;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -103px;
    left: 0;
}

#camp01 > .cont_camp01 > strong::after {
    content: '！';
    margin: auto;
    font-size: 4em;
    font-weight: 900;
    text-align: center;
    line-height: .925;
    opacity: .35;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

#camp01 > .cont_camp01 > strong sup {
    font-size: 50%;
    position: absolute;
    top: 1.85em;
    right: 1.4em;
}

#camp01 > .cont_camp01 > h2 {
    text-align: center;
    line-height: 1.25;
}

#camp01 > .cont_camp01 > h2 > * {
    display: block;
}

#camp01 > .cont_camp01 > h2 > img {
    margin: 0 auto;
    width: min(240px, 32.05vw);
}

#camp01 > .cont_camp01 > h2 > small {
    margin: .85em 0 .25em;
    font-size: min(32px, 4.62vw);
}

#camp01 > .cont_camp01 > h2 > strong {
    color: var(--red-color);
    font-size: min(60px, 9.49vw);
    font-weight: 700;
}

#camp01 > .cont_camp01 > h2 > strong > span {
    margin: 0 0 0 .25em;
    padding: 0 .25em .1em;
    border: 1px solid;
    border-radius: 50%;
    position: relative;
}

#camp01 > .cont_camp01 > h2 > span {
    font-size: min(46px, 7.18vw);
}

#camp01 > .cont_camp01 > h3 {
    margin: 1.25em auto 0;
    padding: 1em 0 0;
    width: min(574px, 80vw);
    border-top: 1px solid #000000;
    font-size: min(28px, 4.1vw);
    line-height: 1.75;
}

#camp01 > .cont_camp01 > h3 > span {
    display: block;
    padding: 0 0 0 2em;
    position: relative;
}

#camp01 > .cont_camp01 > h3 > span::before {
    content: '';
    width: min(38px, 6.67vw);
    height: min(38px, 6.67vw);
    background: url(../images/icon_check01.svg) no-repeat 50% 50%;
    background-size: 100%;
    position: absolute;
    top: .2em;
    left: 0;
}

#camp01 > .cont_camp01 > figure {
    display: block;
    margin: 0 auto;
    width: min(422px, 82.05vw);
    position: relative;
}

#camp01 > .cont_camp01 > figure span {
    display: flex;
    flex-wrap: wrap;
    width: min(100px, 22.05vw);
    height: min(100px, 22.05vw);
    background: #ffffff;
    border: 1px solid;
    border-radius: 50%;
    color: #5A89B5;
    font-size: min(23px, 4.62vw);
    text-align: center;
    line-height: 1.1;
    letter-spacing: 0;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -40px;
    right: -100px;
}

#camp01 > .cont_camp01 > figure img {
    width: 100%;
}

.btn_apply {
    display: flex;
    flex-wrap: wrap;
    margin: -75px auto 0;
    width: min(670px, 90vw);
    height: min(150px, 20.51vw);
    background: linear-gradient(180deg, #BF609B 70%, #d87ab4 100%);
    border-radius: min(75px, 10.26vw);
    color: #ffffff;
    font-size: min(45px, 6.15vw);
    font-weight: 700;
    text-align: center;
    text-shadow: 0 0 .15em rgba(0, 0, 0, .15);
    line-height: 1.35;
    letter-spacing: 0;
    justify-content: center;
    align-items: center;
    transition: .3s;
    position: relative;
    z-index: 1;
}

.btn_apply02 {
    margin-top: 2rem !important;
    background: linear-gradient(180deg, #2AAAAF 70%, #50c3c7 100%);
    font-size: min(36px, 5.13vw);
}

.btn_apply small {
    display: block;
    font-size: min(23px, 3.59vw);
    font-weight: 500;
    letter-spacing: .04em;
}

.btn_apply::before {
    content: '';
    width: 90%;
    height: 56%;
    background: linear-gradient(180deg, rgba(255, 255, 255, .6) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 60px;
    position: absolute;
    top: min(6px, .77vw);
    left: 5%;
}

.btn_apply strong,
#wpcf7-f11-o1 div.wrap_submit strong {
    display: block;
    margin: auto 0;
    width: min(36px, 4.62vw);
    height: min(36px, 4.62vw);
    border: 1px solid #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 2.5rem;
}

.btn_apply strong::after,
#wpcf7-f11-o1 div.wrap_submit strong::after {
    content: '';
    margin: auto;
    width: .35em;
    height: .35em;
    border-top: .2rem solid #ffffff;
    border-right: .2rem solid #ffffff;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 15%;
    bottom: 0;
    left: 0;
}

.btn_apply.btn_fixed {
    margin: 0 auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
    animation: btn_animation 1.5s infinite;
    position: fixed;
    right: 0;
    left: 0;
    bottom: min(20px, 2.5vw);
    z-index: 10;
}

.btn_apply.btn_fixed.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@keyframes btn_animation {
    0%, 100% { transform: scale(1, 1); }
    10% { transform: scale(1.1, 0.9); } /* 踏ん張る */
    30% { transform: scale(0.9, 1.1); } /* 伸びる */
    50% { transform: scale(1.05, 0.95); } /* 微調整 */
    70% { transform: scale(1, 1); }
}

.note01, .note02 {
    margin: 1em auto 0 !important;
    width: min(670px, 90vw);
    font-size: min(14px, 2.56vw) !important;
    text-shadow: none !important;
    line-height: 1.5;
    letter-spacing: .02em;
}

.note02 {
    color: #ffffff;
}

#thinking01 {
    padding: min(120px, 12.82vw) 0 min(283px, 46.15vw);
    background: url(../images/bg_thinking01-02.webp) no-repeat 50% 100%, url(../images/bg_thinking01-01.webp) no-repeat 50% 0;
    background-size: 100%, 100%;
}

#thinking01 > h2 {
    font-size: min(56px, 7.18vw);
    text-align: center;
    text-stroke: .1em #ffffff;
    -webkit-text-stroke: .1em #ffffff;
    paint-order: stroke;
    line-height: 2.5;
}

#thinking01 > h2 small {
    display: block;
    font-size: min(36px, 4.62vw);
}

#flow > h2 span,
#thinking01 > h2 span {
    position: relative;
}

#flow > h2 span::before,
#thinking01 > h2 span::before {
    content: '';
    margin: 0 auto;
    width: .25em;
    height: .25em;
    background: var(--red-color);
    border-radius: 50%;
    position: absolute;
    top: -.25em;
    right: 0;
    left: 0;
}

#thinking01 > h3 {
    display: flex;
    flex-wrap: wrap;
    margin: 1rem 0 0 min(40px, 5vw);
    padding: 0 0 .2em;
    width: min(278px, 38.46vw);
    height: min(278px, 38.46vw);
    border: 1px solid #000000;
    border-radius: 50%;
    font-size: min(70px, 9.23vw);
    text-align: center;
    line-height: 1.25;
    justify-content: center;
    align-items: center;
}

#thinking01 > h3 strong {
    font-weight: inherit;
    letter-spacing: -.2em;
    position: relative;
    top: -.1em;
}

#thinking01 > h3 small {
    display: block;
    font-size: min(46px, 5.9vw);
}

#thinking01 > h3.navy {
    margin: -70px 0 0 187px;
    width: min(218px, 30.26vw);
    height: min(218px, 30.26vw);
    background: var(--navy-color);
    border: none;
    color: #ffffff;
    font-size: min(54px, 7.69vw);
}

#thinking01 > h3.navy small {
    font-size: min(32px, 4.1vw);
}

#thinking01 > p {
    margin: 2rem 0 0;
    font-size: min(26px, 4.1vw);
    text-align: center;
    text-shadow: 0 0 .15em #ffffff, 0 0 .15em #ffffff, 0 0 .15em #ffffff, 0 0 .3em #ffffff, 0 0 .3em #ffffff, 0 0 .3em #ffffff, 0 0 .3em #ffffff;
    line-height: 1.75;
}

#thinking01 > p span {
    font-size: min(30px, 4.1vw);
}

#thinking01 > p strong {
    font-size: min(40px, 6.41vw);
    font-weight: inherit;
}

#thinking01 > h4,
#thinking02 > h3 {
    margin: 1em 0 0;
    font-size: min(40px, 6.15vw);
    text-align: center;
    text-stroke: .2em #ffffff;
    -webkit-text-stroke: .2em #ffffff;
    paint-order: stroke;
}

ul.ul_pureserum {
    display: flex;
    flex-wrap: wrap;
    margin: 1rem auto 0;
    padding: min(30px, 4.1vw) min(40px, 5vw);
    width: min(670px, 90vw);
    background: rgba(255, 255, 255, .8);
    font-size: min(28px, 4.1vw);
    font-weight: 600;
}

ul.ul_pureserum li {
    padding: .25em 0 0 2.25em;
    width: 100%;
    position: relative;
}

ul.ul_pureserum li:nth-child(2) {
    padding: .25em 0 .25em 2.25em !important;
}

ul.ul_pureserum li::before {
    content: '';
    width: min(50px, 6.41vw);
    height: min(42px, 5.38vw);
    background: url(../images/icon_check02.svg) no-repeat 50% 50%;
    background-size: 100%;
    position: absolute;
    top: .25em;
    left: 0;
}

ul.ul_pureserum li:not(:last-child) {
    padding: 0 0 .25em 2.25em;
    border-bottom: min(3px, .5vw) dotted #a2a2a2;
}

ul.ul_pureserum li:not(:first-child)::before {
    top: .5em;
}

#thinking02 {
    padding: min(80px, 15.38vw) min(40px, 5vw) min(80px, 10.26vw);
    background: #80390A url(../images/bg_thinking02.webp) no-repeat 50% 100%;
    background-size: 100%;
}

#thinking02 > h2 {
    color: #ffffff;
    font-size: min(56px, 7.18vw);
    text-align: center;
    text-shadow: 0 0 .25em rgba(255, 255, 255, .6), 0 0 .3em rgba(255, 255, 255, .6);
}

#thinking02 > p {
    margin: .5em 0 0;
    color: #ffffff;
    font-size: min(26px, 3.59vw);
    text-shadow: 0 0 .25em rgba(255, 255, 255, .6), 0 0 .3em rgba(255, 255, 255, .6);
    line-height: 1.75;
}

#thinking02 ul.ul_gencosme {
    background: #E5D5BA !important;
    color: #482005;
}

#thinking02 ul.ul_gencosme li {
    border-color: #482005;
}

#thinking02 ul.ul_gencosme li::before {
    width: min(37px, 5.13vw);
    height: min(37px, 5.13vw);
    background: url(../images/icon_face01.svg) no-repeat 50% 50%;
    background-size: 100%;
    top: .35em;
}

#thinking02 ul.ul_gencosme li:not(:first-child)::before {
    top: .6em;
}

#thinking02 ul.ul_pureserum {
    background: #ffffff;
}

#thinking02 ul.ul_pureserum + p {
    margin-top: 2em;
}

#thinking02 > h3 {
    color: #ffffff;
    text-stroke: 0;
    -webkit-text-stroke: 0;
}

#thinking02 > h3:nth-of-type(2) {
    color: var(--yellow-color);
}

#thinking02 > h4 {
    margin: 1.5em 0 0;
    color: #ffffff;
    font-size: min(40px, 5.13vw);
    font-weight: 700;
    text-align: center;
    text-shadow: 0 0 .25em rgba(255, 255, 255, .6), 0 0 .3em rgba(255, 255, 255, .6);
    line-height: 1.75;
}

#thinking02 .btn_apply {
    margin-top: 1.5em;
}

#pure_serum {
    padding: min(90px, 10.26vw) 0 min(60px, 10.26vw);
}

#pure_serum > h2 {
    margin: 0 0 1em;
    font-size: min(46px, 7.18vw);
    text-align: center;
    line-height: 1.25;
}

#pure_serum > h2 strong {
    margin-right: .1em;
    font-size: min(66px, 10.26vw);
    font-weight: inherit;
}

#pure_serum > h2 img {
    display: block;
    margin: 0 auto;
    width: min(240px, 32.05vw);
}

#pure_serum .product {
    padding: 0 0 min(80px, 15.38vw);
}

#pure_serum .product > h3 {
    display: flex;
    flex-wrap: wrap;
    padding: .7em 0 .9em;
    height: min(120px, 20.51vw);
    color: #ffffff;
    font-size: min(22px, 3.59vw);
    text-align: center;
    line-height: 1;
    justify-content: center;
    align-items: center;
}

#pure_serum .product > h3 > strong {
    display: block;
    width: 100%;
    font-size: min(40px, 6.15vw);
}

#pure_serum .product.pla100 > h3 {
    background: #8E1C30;
}

#pure_serum .product.hya100 > h3 {
    background: #3F85D1;
}

#pure_serum .product.ela100 > h3 {
    background: #53C0B4;
}

#pure_serum .product.col100 > h3 {
    background: #DA5A85;
}

#pure_serum .product > ul {
    display: flex;
    flex-wrap: wrap;
    margin: min(40px, 5.13vw) auto 0;
    width: min(670px, 90vw);
}

#pure_serum .product > ul > li {
    height: 337px;
}

#pure_serum .product > ul > li:first-child {
    width: 235px;
}

#pure_serum .product > ul > li img {
    display: block;
    margin: 0 0 0 30px;
    height: 100%;
}

#pure_serum .product > ul > li:last-child {
    width: 435px;
}

#pure_serum .product > ul li h4 {
    padding: .5em 0 .5em 1.25em;
    font-size: min(34px, 6.15vw);
    position: relative;
}

#pure_serum .product > ul li h4::before {
    content: '';
    margin: auto 0;
    width: min(30px, 6.15vw);
    height: min(45px, 9.49vw);
    background: url(../images/icon_liquid01.svg) no-repeat 50% 50%;
    background-size: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
}

#pure_serum .product > ul li > ul {
    display: flex;
    background: #ffffff;
}

#pure_serum .product > ul li > ul li:first-child {
    padding: 1.5em 0;
    white-space: nowrap;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

#pure_serum .product > ul li > ul {
    border: 2px solid #8E1C30;
}

#pure_serum .product.hya100 > ul li > ul {
    border-color: #3F85D1;
}

#pure_serum .product.ela100 > ul li > ul {
    border-color: #53C0B4;
}

#pure_serum .product.col100 > ul li > ul {
    border-color: #DA5A85;
}

#pure_serum .product > ul li > ul li:first-child {
    display: flex;
    background: #8E1C30;
    color: #ffffff;
    font-size: min(28px, 5.64vw);
    justify-content: center;
}

#pure_serum .product.hya100 > ul li > ul li:first-child {
    background: #3F85D1;
}

#pure_serum .product.ela100 > ul li > ul li:first-child {
    background: #53C0B4;
}

#pure_serum .product.col100 > ul li > ul li:first-child {
    background: #DA5A85;
}

#pure_serum .product > ul li > ul li:last-child {
    padding: 1.35em 1em 0;
    font-size: min(22px, 4.1vw);
    line-height: 1.75;
}

#pure_serum .product > ul li > ul li:last-child strong {
    padding: 0 0 .25em;
    background: linear-gradient(180deg, transparent 50%, var(--yellow-color) 50%);
    font-size: min(22px, 4.62vw);
}

#pure_serum .product > ul li > ul li:last-child p {
    margin: .5em 0 0;
}

#pure_serum .product .ingre {
    margin: 1.5em auto 0;
    width: min(670px, 90vw);
    font-size: min(20px, 3.59vw);
}

#pure_serum .product .product_note {
    margin: .75em auto 0;
    padding: 1em 1.5em;
    width: min(670px, 90vw);
    background: #ffffff;
    border: 2px solid #8E1C30;
    font-size: min(18px, 3.59vw);
}

#pure_serum .product.hya100 .product_note {
    border-color: #3F85D1;
}

#pure_serum .product.ela100 .product_note {
    border-color: #53C0B4;
}

#pure_serum .product.col100 .product_note {
    border-color: #DA5A85
}

#flow {
    padding: min(120px, 15.38vw) 0 0;
}

#flow > h2 {
    font-size: min(46px, 6.67vw);
    text-align: center;
}

:is(#flow, #voice, #faq) > h3 {
    margin: 0 auto;
    padding: 0 0 .35em;
    width: fit-content;
    border-bottom: min(10px, 1.28vw) solid;
    font-size: min(40px, 5.13vw);
    text-align: center;
}

#flow .flow01 {
    margin: min(70px, 7.69vw) 0 0;
    position: relative;
}

#flow :is(.flow02, .flow03) {
    margin: min(80px, 12.82vw) 0 0;
}

#flow h4 {
    display: flex;
    flex-direction: row-reverse;
    line-height: 1.85;
    align-items: flex-start;
    position: absolute;
    top: 0;
    right: min(40px, 5vw);
    gap: min(15px, 2vw);
    z-index: 1;
}

#flow h4 span {
    padding: .85em 0;
    background: #000000;
    color: #ffffff;
    font-size: min(40px, 5vw);
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: .1em;
}

#flow span small {
    font-size: 90%;
}

#flow img {
    width: min(710px, 90vw);
}

#flow .flow02 {
    text-align: right;
}

#flow .flow03 {
    text-align: center;
}

#flow .flow02 h4 {
    right: auto;
    left: min(40px, 5vw);
}

#flow .flow03 h4 {
    transform: rotate(9deg);
    top: -40px;
    right: 80px;
}

#flow .flow03 h4 span {
    color: var(--yellow-color);
    letter-spacing: .04em;
}

#flow h5 {
    margin: min(80px, 10.26vw) 0 0;
    font-size: min(42px, 5.64vw);
    text-align: center;
}

#flow h5 small {
    font-size: 85%;
}

#series {
    padding: min(90px, 7.69vw) min(40px, 5vw) min(80px, 15.38vw);
    background: url(../images/bg_series.webp) no-repeat 50% 0;
    background-size: 100%;
}

#series > h2 {
    font-size: min(32px, 4.62vw);
    text-align: center;
    line-height: 1.15;
}

#series > h2 > img {
    display: block;
    margin: min(12px, 2.56vw) auto min(20px, 3.59vw);
    padding-bottom: min(24px, 2.56vw);
    width: min(506px, 58.97vw);
    border-bottom: 1px solid #000000;
}

#series > h2 span {
    font-size: min(44px, 6.67vw);
}

#series > ul {
    margin-top: min(50px, 5vw);
}

#series .note03 {
    margin: min(510px, 61.54vw) auto 0;
    width: min(670px, 90vw);
    font-size: min(14px, 2.56vw);
    line-height: 1.5;
    text-align: right;
    letter-spacing: 0;
}

#series .btn_apply {
    margin-top: min(60px, 7.69vw);
}

#voice {
    padding: min(110px, 12.82vw) 0 min(160px, 25.64vw);
    background: url(../images/bg_voice.webp) no-repeat 50% 0;
    background-size: 100%;
}

:is(#voice, #faq) > h2 {
    font-size: min(46px, 6.67vw);
    text-align: center;
}

#voice > p {
    margin: min(90px, 12.82vw) 0 0;
    font-size: min(20px, 4.1vw);
    text-align: center;
    line-height: 1.5;
}

#voice .voice01 {
    margin: min(40px, 5vw) 0 0 min(40px, 5vw);
    padding: 2em 2.5em 3em;
    width: min(710px, 95vw);
    background: #ffffff;
    border-radius: min(20px, 5vw) 0 0 min(20px, 5vw);
}

#voice .voice01 h4 {
    padding: 0 0 0 2.25em;
    font-size: min(20px, 3.59vw);
    position: relative;
}

#voice .voice01 h4::before {
    content: '';
    margin: auto 0;
    width: min(34px, 4.62vw);
    height: min(34px, 4.62vw);
    background: url(../images/icon_person.svg) no-repeat 50% 50%;
    background-size: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
}

#voice .voice01 h5 {
    font-size: min(30px, 5.13vw);
    font-weight: 600;
}

#voice .voice01 p {
    margin: .25em 0 0;
    padding: 0 0 6px;
    font-size: min(24px, 3.59vw);
    background-image: radial-gradient(circle, #B2C0CB 1.5px, transparent 1.5px);
    /* ② 点線のサイズを指定
       横幅：6px（3pxの丸 + 3pxの隙間）
       縦幅：2em（1行の高さと完全に一致させる） */
    background-size: 6px 2em;
    /* ③ ★ここがスマートに消すポイント！
       最初のドットの配置位置を「上から2em（1行分）」下にずらす */
    background-position: 0 3.05em;
    /* ④ 縦横にリピート（ただし③の効果で1行目には表示されない） */
    background-repeat: repeat;
    position: relative;
}

#voice .voice01 p::after {
    content: '';
    width: 100%;
    height: 6px;
    background: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
}

#voice .voice02 {
    margin: min(60px, 10.26vw) min(40px, 5vw) 0 0;
    border-radius: 0 min(20px, 5vw) min(20px, 5vw) 0;
}

#voice .voice03 {
    margin: min(60px, 10.26vw) 0 0 min(40px, 5vw);
}

#voice .voice01 p strong {
    color: var(--red-color);
    font-weight: 600;
}

#faq {
    padding: min(110px, 12.82vw) 0 0;
}

#faq :is(h2, h3) {
    color: var(--navy-color);
}

#faq .cont_faq {
    margin: min(60px, 12.82vw) 0 0;
    padding: min(80px, 15.38vw) 0;
    background: #ffffff;
}

#faq .cont_faq dl {
    line-height: 1.5;
}

#faq .cont_faq dl dt {
    padding: 1em 0 1em min(140px, 16.92vw);
    background: var(--navy-color);
    color: #ffffff;
    font-size: min(32px, 4.62vw);
    font-weight: 500;
    position: relative;
}

#faq .cont_faq dl dt::before,
#faq .cont_faq dl dd::before {
    content: 'Q';
    color: var(--yellow-color);
    font-family: "futura-pt", sans-serif;
    font-size: min(54px, 7.69vw);
    font-weight: 900;
    position: absolute;
    top: .25em;
    left: min(40px, 5vw);
}

#faq .cont_faq dl dd {
    padding: 1.25em 0 1.25em min(140px, 16.92vw);
    font-size: min(26px, 4.1vw);
    position: relative;
}

#faq .cont_faq dl dd::before {
    content: 'A';
    color: var(--navy-color);
    top: .2em;
}

footer {
    padding: min(120px, 23.08vw) min(40px, 5vw) min(180px, 26vw);
/*    padding: min(120px, 23.08vw) min(40px, 5vw) min(120px, 20.51vw); バナーなし*/
    background: var(--navy-color);
    color: #ffffff;
}

footer > img {
    display: block;
    width: min(362px, 62.56vw);
}

footer > h2 {
    margin: .25em 0 0;
    font-size: min(26px, 4.62vw);
    font-weight: 600;
    letter-spacing: .1em;
}

footer > ul {
    display: flex;
    flex-wrap: wrap;
    margin: 2.5rem 0 0;
}

footer > ul li {
    padding: 1.25rem 0;
    border-bottom: 1px solid;
}

footer > ul li:nth-last-child(-n+2) {
    border-bottom: none;
}

footer > ul li:nth-child(2n+1) {
    width: 220px;
    font-size: min(22px, 4.62vw);
    font-weight: 500;
}

footer > ul li:nth-child(2n) {
    width: 450px;
    font-size: min(18px, 3.59vw);
}

footer > .copy {
    margin: min(120px, 25.64vw) 0 0;
    font-family: "futura-pt", sans-serif;
    font-size: min(18px, 3.59vw);
    font-weight: 600;
    text-align: center;
}

#wpfront-scroll-top-container {
    bottom: 20px !important;
}

#wpfront-scroll-top-container img {
    width: min(70px, 12.82vw) !important;
}


/* お問い合わせページ */
.inquiry header {
    display: flex;
    padding: 0 min(40px, 5vw);
    height: min(110px, 14.1vw);
    background: var(--navy-color);
    align-items: center;
    position: relative;
}

.inquiry header img {
    width: min(196px, 33.33vw);
}

.inquiry h1 {
    margin: min(120px, 20.51vw) 0 0;
    font-size: min(24px, 4.62vw);
    text-align: center;
    line-height: 1.25;
}

.inquiry h1 img {
    display: block;
    margin: min(20px, 2.56vw) auto 0;
    padding: 0 0 min(20px, 2.56vw);
    width: min(445px, 60vw);
    border-bottom: 1px solid #000000;
}

.inquiry h1 span {
    display: block;
    margin: min(16px, 2.56vw) 0 0;
    font-size: min(44px, 8.46vw);
}

.inquiry h2.h2_inquiry  {
    margin: min(120px, 17.95vw) 0 0;
    font-size: min(38px, 6.67vw);
    text-align: center;
    letter-spacing: -.03em;
}

#wpcf7-f11-o1 {
    margin: min(30px, 5.13vw) auto min(80px, 15.38vw);
    padding: min(60px, 10.26vw) min(20px, 5vw) min(80px, 12.82vw);
    width: min(710px, 90vw);
    background: #ffffff;
    font-size: min(26px, 4.1vw);
    line-height: 1.5;
}

#wpcf7-f11-o1 dl dt {
    margin: 1em 0 0;
    font-weight: 500;
}

#wpcf7-f11-o1 em {
    margin-left: .5em;
    padding: 0 .5em .1em;
    background: var(--red-color);
    color: #ffffff;
    font-style: normal;
    font-weight: inherit;
}

#wpcf7-f11-o1 dd :is(input, textarea) {
    margin: .5em 0 1em;
    padding: .5em 1em;
    width: 100%;
    height: 3em;
    border: 1px solid #000000;
}

#wpcf7-f11-o1 dd.zip input {
    width: min(260px, 36vw);
}

#wpcf7-f11-o1 dd textarea {
    height: 6em;
}

#wpcf7-f11-o1 p {
    margin: 3em 0 0;
    font-size: min(16px, 3.08vw);
}

#wpcf7-f11-o1 p span {
    display: block;
    padding: 0 0 0 1em;
    text-indent: -1em;
}

.wpcf7-not-valid-tip {
    margin: -.5em 0 1em;
}

.wpcf7-list-item-label > a {
    border-bottom: 1px solid;
}

.wpcf7-list-item {
    margin: 0 !important;
    padding: 0 !important;
}
#wpcf7-f11-o1 dl label input[type=checkbox] {
    position: relative;
}

#wpcf7-f11-o1 dl label input[type=checkbox]::before {
    content: '';
    display: block;
    margin: 0;
    padding: 0;
    width: 1em;
    height: 1em;
    border: 1px solid #000000;
    position: relative;
    top: .35em;
    left: 0;
}

#wpcf7-f11-o1 dl label input[type=checkbox]::after {
    content: '';
    display: block;
    margin: 0;
    padding: 0;
    width: 1.2em;
    height: .8em;
    border-top: min(5px, 1vw) solid #000000;
    border-right: min(5px, 1vw) solid #000000;
    transform: rotate(135deg);
    position: relative;
    top: -.85em;
    left: -.1em;
    opacity: 0;
}

#wpcf7-f11-o1 dl input[type=checkbox]:checked::after {
    opacity: 1;
}

#wpcf7-f11-o1 div.wrap_submit {
    margin: min(40px, 5vw) auto 0;
    padding: 0;
    width: min(590px, 80vw);
    height: min(130px, 17.95vw);
    background: linear-gradient(180deg, #2AAAAF 70%, #50c3c7 100%);
    border: 1px solid #ffffff;
    border-radius: 2em;
    color: #ffffff;
    font-size: min(40px, 5.64vw);
    font-weight: 700;
    text-align: center;
    transition: .3s;
    position: relative;
}

#wpcf7-f11-o1 div.wrap_submit::after {
    content: '';
    margin: 0;
    width: 90%;
    height: 56%;
    background: linear-gradient(180deg, rgba(255, 255, 255, .6) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 60px;
    position: absolute;
    top: min(6px, .77vw);
    left: 5%;
    z-index: 0;
}

#wpcf7-f11-o1 div.wrap_submit input[type='submit'] {
    display: flex;
    margin: 0 auto;
    width: 100% !important;
    min-width: 100% !important;
    height: 100%;
    text-align: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

#wpcf7-f11-o1 .turnstile {
    display: flex;
    margin: 3rem auto 0;
    text-align: center;
    justify-content: center;
}

#zip_count,
#autozip {
    background-color: var(--red-color) !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
}

#zip_count a,
#autozip a {
    color: #ffffff !important;
}



.pc_only {
    display: revert !important;
}

.sp_only {
    display: none !important;
}



@media (any-hover: hover) {

    :is(header > a, .btn_apply):hover,
    #wpcf7-f11-o1 div.wrap_submit:hover {
        filter: brightness(110%) saturate(150%);
    }

}



@media (height < 650px) {

    main {
        background: url(../images/bg_main_sp.webp) no-repeat 50% -2.5vw !important;
        background-size: 100% !important;
    }

    main > h1 {
        top: 76vw !important;
    }

    main > h2 > span.fst_span {
        top: 1.25em;
    }

    main .img_series {
        width: 80vw;
        left: 10vw !important;
        bottom: -2vw !important;
    }

    #intro {
        margin-top: 5vw;
    }

}


@media (750px < width <= 1024px) {


    .fixed_girl01 {
        display: none !important;
    }

}


@media (width < 750px) {

    .fixed_girl01 {
        bottom: 20vw;
        left: -2.2vw;
    }

    .wrapper {
        overflow-x: hidden;
    }

    header > a::before {
        border-radius: 1.25rem;
        top: .77vw;
        left: 9.23%;
    }

    main {
        height: 184.1vw;
        max-height: 100svh;
        background: url(../images/bg_main_sp.webp) no-repeat 50% 0;
        background-size: 100%;
    }


    main > h1 {
        top: 85.38vw;
        left: 0;
    }

    main > h1 > span {
        top: -.9em;
        right: -.5em;
    }

    main > h1 > strong {
        top: -.75em;
        left: 14vw;
    }

    main > h1 > strong > strong {
        letter-spacing: 0;
    }

    main > h1 > figure {
        top: 6vw;
        right: 12vw;
    }

    main > h1 > small {
        top: -1.6em;
        left: 15vw;
    }

    main > h2 {
        top: 12vw;
        left: 5vw;
    }

    main .img_series {
        left: 6vw;
        bottom: 2vw;
    }

    #intro {
        background: url(../images/img_hand01.webp) no-repeat 100% 95%;
        background-size: 40.51vw;
    }

    #intro > h2 > span {
        line-height: 2.5;
    }

    :is(#intro, #series) > ul {
        gap: .3rem 4%;
    }

    #camp01 {
        margin: -10.26vw 0 0;
    }

    #camp01 > .cont_camp01 > strong {
        top: -13.59vw;
    }

    #camp01 > h2::after {
        top: -7vw;
        right: 2vw;
    }

    #camp01 > h2 span {
        padding: 0 5.5em 0 2em;
    }

    #camp01 > .cont_camp01 > figure {
        margin-top: 2rem;
    }

    #camp01 > .cont_camp01 > figure span {
        top: -7vw;
        right: -3vw;
    }

    .btn_apply {
        margin-top: -16vw;
    }

    .btn_apply {
        letter-spacing: 0;
    }

    .btn_apply strong {
        right: 1rem;
    }

    #thinking01 > h2 {
        text-stroke: .2em #ffffff;
        -webkit-text-stroke: .2em #ffffff;
    }

    #thinking01 {
        background: url(../images/bg_thinking01-02.webp) no-repeat 50% 100%, url(../images/bg_thinking01-01sp.webp) no-repeat 50% 0;
        background-size: 100%, 100%;
    }

    #thinking01 > h3.navy {
        margin: -8vw 0 0 19.74vw;
    }

    ul.ul_pureserum li::before {
        top: .3em;
    }

    ul.ul_pureserum li:not(:first-child)::before {
        top: .6em;
    }

    #thinking02 ul {
        margin-top: .25em;
    }

    #pure_serum .product > ul > li {
        width: 100% !important;
        height: auto;
    }

    #pure_serum .product > ul > li img {
        margin: 0 auto;
        width: 21.28vw;
    }

    #pure_serum .product .product_note {
        margin: 1em auto 0;
        line-height: 1.75;
    }

    #flow {
        padding-bottom: 5.13vw;
    }

    #flow .flow03 h4 {
        top: -5.13vw;
        right: 10.26vw;
    }

    #voice .voice01 {
        padding: 2em 1.5em 2em;
    }

    #voice .voice01 p {
        background-image: radial-gradient(circle, #B2C0CB .25vw, transparent .25vw);
        /* ② 点線のサイズを指定
           横幅：6px（3pxの丸 + 3pxの隙間）
           縦幅：2em（1行の高さと完全に一致させる） */
        background-size: 1vw 2em;
        /* ③ ★ここがスマートに消すポイント！
           最初のドットの配置位置を「上から2em（1行分）」下にずらす */
        background-position: 0 3.05em;
        /* ④ 縦横にリピート（ただし③の効果で1行目には表示されない） */
    }

    #faq .cont_faq dl dd::before {
        top: .35em;
    }

    footer > ul li {
        width: 100% !important;
    }

    footer > ul li:nth-child(2n+1) {
        padding-bottom: 0;
        border-bottom: none;
    }

    footer > ul li:nth-child(2n) {
        padding-top: .25em;
    }

    #wpfront-scroll-top-container {
        bottom: 26vw !important;
    }

    #wpcf7-f11-o1 div.wrap_submit strong {
        right: 1.1em;
    }

    .pc_only {
        display: none !important;
    }

    .sp_only {
        display: revert !important;
    }

