*,
:before,
:after {
    box-sizing: border-box;
    border-style: solid;
    border-width: 0;
    min-width: 0
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.15
}

body {
    margin: 0
}

main {
    display: block
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
    margin: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none
}

dt {
    font-weight: 700
}

dd {
    margin-left: 0
}

hr {
    clear: both;
    box-sizing: content-box;
    height: 0;
    color: inherit;
    border-top-width: 1px;
    margin: 0;
    overflow: visible
}

pre {
    font-family: monospace;
    font-size: inherit
}

address {
    font-style: inherit
}

a {
    color: inherit;
    background-color: transparent;
    text-decoration: none
}

abbr[title] {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp {
    font-family: monospace;
    font-size: inherit
}

small {
    font-size: 80%
}

sub,
sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

svg,
img,
embed,
object,
iframe {
    vertical-align: bottom
}

button,
input,
optgroup,
select,
textarea {
    text-align: inherit;
    vertical-align: middle;
    text-transform: inherit;
    color: inherit;
    font: inherit;
    appearance: none;
    background: 0 0;
    border-radius: 0;
    margin: 0;
    padding: 0
}

button {
    cursor: pointer
}

[type=button] {
    cursor: pointer
}

[type=reset] {
    cursor: pointer
}

[type=submit] {
    cursor: pointer
}

button:disabled {
    cursor: default
}

[type=button]:disabled {
    cursor: default
}

[type=reset]:disabled {
    cursor: default
}

[type=submit]:disabled {
    cursor: default
}

:-moz-focusring {
    outline: auto
}

select:disabled {
    opacity: inherit
}

option {
    padding: 0
}

fieldset {
    min-width: 0;
    margin: 0;
    padding: 0
}

legend {
    padding: 0
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type=number]::-webkit-inner-spin-button {
    height: auto
}

[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button
}

[type=number] {
    -moz-appearance: textfield
}

label[for] {
    cursor: pointer
}

details {
    display: block
}

summary {
    display: list-item
}

[contenteditable]:focus {
    outline: auto
}

table {
    border-collapse: collapse;
    border-color: inherit
}

caption {
    text-align: left
}

td,
th {
    vertical-align: top;
    padding: 0
}

th {
    text-align: left;
    font-weight: 700
}

:root {
    --color-primary: #036eb8;
    --color-secondary: #84bae5;
    --color-bg: #f3f3f3;
    --color-text: #222;
    --color-white: #fff;
    --color-black: #000;
    --color-text-sub: #555;
    --color-yellow: #ffe200;
    --color-yellow-dark: #ffe100;
    --color-yellow-light: #ffe83b;
    --color-primary-dark: #405a6c;
    --color-secondary-light: #badbeb
}

body {
    color: var(--color-text);
    background-color: var(--color-bg);
    font-family: Zen Kaku Gothic New, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Segoe UI Variable, Arial, Hiragino Sans, Hiragino Kaku Gothic ProN, Yu Gothic, Meiryo, sans-serif;
    font-size: 1rem
}

.l-content {
    margin-inline: auto;
    position: relative
}

.l-section {
    padding-left: 52.1622%;
    padding-right: 6.14865%
}

@media screen and (min-width:1024px) and (max-width:1279px) {
    .l-section {
        padding-left: 52.1622%;
        padding-right: 6.14865%
    }
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .l-section {
        padding-left: 13.5135%;
        padding-right: 13.5135%
    }
}

@media screen and (max-width:767px) {
    .l-section {
        padding-left: 4.35897%;
        padding-right: 4.35897%
    }
}

.l-footer {
    padding-bottom: 28px;
    padding-right: 3.24324%
}

.l-footer__copy {
    text-align: right;
    letter-spacing: -.01em;
    color: #222;
    font-family: BIZ UDGothic;
    font-size: .75rem;
    font-style: normal;
    font-weight: 700;
    line-height: 131%
}

@media screen and (max-width:767px) {
    .l-footer__copy {
        text-align: center
    }
}

.c-button {
    color: var(--color-bg);
    background-color: var(--color-primary);
    border: 2px solid var(--color-primary);
    cursor: pointer;
    white-space: nowrap;
    border-radius: .25rem;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.5rem;
    font-size: .875rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: all .2s cubic-bezier(0, .3, .355, 1);
    display: inline-flex
}

@media (hover:hover) {
    .c-button:hover {
        opacity: .8
    }
}

.c-button--secondary {
    color: var(--color-primary);
    background-color: transparent
}

@media (hover:hover) {
    .c-button--secondary:hover {
        opacity: 1;
        background-color: var(--color-primary);
        color: var(--color-bg)
    }
}

.c-button--ghost {
    color: var(--color-white);
    border-color: var(--color-white);
    background-color: transparent
}

@media (hover:hover) {
    .c-button--ghost:hover {
        opacity: 1;
        background-color: var(--color-white);
        color: var(--color-black)
    }
}

.c-button--sm {
    padding: .5rem 1rem;
    font-size: .75rem
}

.c-button--lg {
    padding: 1rem 2rem;
    font-size: 1rem
}

.c-button--full {
    width: 100%
}

.c-button[disabled],
.c-button--disabled {
    opacity: .4;
    pointer-events: none;
    cursor: not-allowed
}

.m-card {
    background: var(--color-white);
    border-radius: .5rem;
    overflow: hidden;
    box-shadow: 0 .25rem 1rem rgba(0, 0, 0, .08)
}

.m-card__image {
    aspect-ratio: 16/9
}

@supports not (aspect-ratio:1) {
    .m-card__image {
        padding-top: 56.25%;
        position: relative
    }

    .m-card__image>* {
        object-fit: cover;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0
    }
}

.m-card__image {
    overflow: hidden
}

.m-card__image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all .4s cubic-bezier(0, .3, .355, 1)
}

.m-card__body {
    padding: 1rem 1.25rem
}

@media screen and (min-width:768px) {
    .m-card__body {
        padding: 1.25rem 1.5rem
    }
}

.m-card__meta {
    opacity: .6;
    align-items: center;
    gap: .5rem;
    margin-bottom: .5rem;
    font-size: .75rem;
    display: flex
}

.m-card__title {
    margin-bottom: .5rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5
}

@media screen and (min-width:768px) {
    .m-card__title {
        font-size: 1.125rem
    }
}

.m-card__text {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: .875rem;
    line-height: 1.7;
    display: -webkit-box;
    overflow: hidden
}

.m-card--hover {
    transition: all .3s cubic-bezier(0, .3, .355, 1)
}

@media (hover:hover) {
    .m-card--hover:hover {
        transform: translateY(-.125rem);
        box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .16)
    }

    .m-card--hover:hover .m-card__image img {
        transform: scale(1.04)
    }
}

@media screen and (min-width:768px) {
    .m-card--horizontal {
        align-items: stretch;
        display: flex
    }

    .m-card--horizontal .m-card__image {
        width: 40%;
        aspect-ratio: unset;
        flex-shrink: 0
    }

    .m-card--horizontal .m-card__body {
        flex-direction: column;
        flex: 1;
        justify-content: center;
        display: flex
    }
}

.m-button {
    color: var(--color-primary);
    cursor: pointer;
    border-bottom: 1px solid;
    align-items: center;
    gap: .375rem;
    padding-bottom: .25rem;
    font-size: .875rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex
}

.m-button:after {
    content: "→";
    transition: all .25s cubic-bezier(0, .3, .355, 1);
    display: inline-block
}

@media (hover:hover) {
    .m-button:hover:after {
        transform: translate(.25rem)
    }
}

.m-button--reverse {
    flex-direction: row-reverse
}

.m-button--reverse:after {
    content: "←"
}

@media (hover:hover) {
    .m-button--reverse:hover:after {
        transform: translate(-.25rem)
    }
}

.m-button--sm {
    font-size: .75rem
}

.m-button--lg {
    font-size: 1rem
}

.p-headline {
    z-index: 1;
    padding-top: 14px;
    padding-left: 6.14865%;
    padding-right: 3.89189%;
    position: relative
}

@media screen and (max-width:767px) {
    .p-headline {
        padding-top: 21px;
        padding-left: 4.35897%;
        padding-right: 4.35897%
    }
}

.p-headline__title {
    text-align: center;
    width: 95.473%;
    position: relative
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-headline__title {
        width: 48.8281%
    }
}

@media screen and (max-width:767px) {
    .p-headline__title {
        width: 81.5385%
    }
}

.p-headline__title img {
    width: 100%;
    height: auto
}

.p-headline__logo {
    width: 47px;
    position: absolute;
    top: 23px;
    right: 18px
}

@media screen and (max-width:767px) {
    .p-headline__logo {
        width: 28px
    }
}

.p-headline__logo img {
    width: 100%;
    height: auto
}

.p-content {
    position: relative
}

.p-content__main {
    min-width: 0;
    position: relative
}

.p-lensPin {
    flex-direction: column;
    justify-content: flex-end;
    width: 43.6486%;
    max-width: 820px;
    padding-bottom: 80px;
    display: flex;
    position: absolute;
    left: 6.14865%
}

@media screen and (min-width:1024px) and (max-width:1279px) {
    .p-lensPin {
        width: 41.5541%
    }
}

@media screen and (max-width:767px) {
    .p-lensPin {
        display: none
    }
}

@media screen and (min-width:1024px) {
    .p-lensPin {
        height: calc(100vh - var(--p-headline-height, 0px));
        height: calc(100dvh - var(--p-headline-height, 0px))
    }

    .p-lensPin--pinned {
        height: calc(100vh - var(--p-headline-height, 0px)) !important;
        height: calc(100dvh - var(--p-headline-height, 0px)) !important
    }
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-lensPin {
        display: none
    }
}

.p-lensPin__inner {
    position: relative
}

.p-lensPin__title {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.p-lensPin__title__item {
    z-index: 0;
    opacity: 0;
    filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    transition: opacity .8s cubic-bezier(.01, .08, .07, .94), transform .6s cubic-bezier(.01, .08, .07, .94), filter .8s cubic-bezier(.01, .08, .07, .94);
    display: flex;
    position: absolute;
    inset: 0;
    transform: scale(.99)
}

.p-lensPin__title__item--active {
    z-index: 1;
    pointer-events: auto;
    opacity: 1;
    filter: blur();
    transform: scale(1)
}

.p-lensPin__title__item__text {
    z-index: 2;
    text-align: left;
    letter-spacing: .17em;
    pointer-events: none;
    width: 100%;
    color: var(--color-text);
    justify-content: center;
    align-items: center;
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: 2.22973vw;
    font-style: normal;
    font-weight: 500;
    line-height: 134%;
    display: flex;
    position: relative
}

@media screen and (min-width:1024px) and (max-width:1279px) {
    .p-lensPin__title__item__text {
        font-size: 2.22973vw
    }

    .p-lensPin__title__item__text.Large {
        font-size: 2.7027vw
    }
}

.p-lensPin__title__item__text.Large {
    font-size: 2.7027vw
}

@media screen and (min-width:1480px) {
    .p-lensPin__title__item__text {
        font-size: 2.0625rem
    }

    .p-lensPin__title__item__text.Large {
        font-size: 2.5rem
    }
}

.p-lensPin__title__item__text__inner {
    z-index: 2;
    position: relative
}

.p-lensPin__title__item__text__inner:before {
    z-index: -1;
    content: "";
    filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
    backdrop-filter: blur(17px);
    background: rgba(251, 251, 251, .5);
    width: 120%;
    height: 150%;
    position: absolute;
    top: -25%;
    left: -10%
}

.p-lensPin__title__item__text span {
    display: inline;
    position: relative
}

.p-lensPin__title__item__text span:after {
    content: "";
    background: var(--color-yellow);
    width: 100%;
    max-width: 100%;
    height: 4px;
    display: block;
    position: absolute;
    bottom: -4px;
    left: 0
}

.p-lensPin figure img {
    width: 100%;
    height: auto
}

.p-pinLine {
    z-index: 4;
    align-items: center;
    width: 100vw;
    height: 89px;
    padding-left: 6.1%;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    margin-left: calc(50% - 50vw) !important
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-pinLine {
        display: none
    }
}

@media screen and (max-width:767px) {
    .p-pinLine {
        pointer-events: none;
        width: 100%;
        height: 58px;
        margin-bottom: 36px;
        padding-left: 4.35897%;
        position: relative;
        margin-left: unset !important
    }
}

.p-pinLine.onlyMobile {
    display: none
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-pinLine.onlyMobile {
        z-index: 100;
        opacity: 0;
        width: 100%;
        transition: opacity .3s ease-in-out;
        display: block;
        position: fixed;
        top: 90px;
        left: 0
    }

    .p-pinLine.onlyMobile.p-pinLine--pinned {
        opacity: 1
    }
}

@media screen and (max-width:767px) {
    .p-pinLine.onlyMobile {
        z-index: 100;
        opacity: 0;
        width: 100%;
        transition: opacity .3s ease-in-out;
        display: block;
        position: fixed;
        top: 57px;
        left: 0
    }

    .p-pinLine.onlyMobile.p-pinLine--pinned {
        opacity: 1
    }
}

.p-pinLine.onlyPC {
    z-index: 4;
    pointer-events: none;
    pointer-events: none;
    opacity: 0;
    transition: opacity .35s ease-out, transform .8s cubic-bezier(.04, .47, .21, .95);
    position: fixed;
    top: 90px;
    left: 0;
    transform: translateY(-100%)
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-pinLine.onlyPC {
        display: none
    }
}

@media screen and (max-width:767px) {
    .p-pinLine.onlyPC {
        display: none
    }
}

.p-pinLine.onlyPC.p-pinLine--pinned {
    z-index: 4;
    opacity: 1;
    width: 100vw;
    padding-left: 6.1%;
    position: fixed;
    transform: translateY(0);
    margin-left: calc(50% - 50vw) !important
}

.p-pinLine--pinned {
    left: 0
}

.p-pinLine--pinned .p-pinLine__background {
    z-index: 1;
    filter: blur(2px);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    background: rgba(243, 243, 243, .21);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.p-pinLine__inner {
    z-index: 2;
    align-items: center;
    gap: 0 10px;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative
}

.p-pinLine p {
    width: 370px
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-pinLine p {
        text-align: center;
        width: 67.1875%;
        margin-left: auto;
        margin-right: auto
    }
}

@media screen and (max-width:767px) {
    .p-pinLine p {
        text-align: center;
        width: 77.9487%;
        margin-left: auto;
        margin-right: auto
    }
}

.p-pinLine p img {
    width: 100%;
    height: auto
}

.p-heading {
    box-sizing: border-box;
    width: 50.2027%;
    padding-top: 73px;
    padding-right: unset;
    padding-left: unset;
    margin-left: 49.7973%;
    position: relative
}

@media screen and (min-width:1024px) {
    .p-heading {
        height: calc(100vh - var(--p-headline-height, 0px));
        height: calc(100dvh - var(--p-headline-height, 0px));
        flex-direction: column;
        justify-content: flex-end;
        padding-bottom: 68px;
        display: flex
    }
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-heading {
        width: 100%;
        height: 100%;
        margin-left: unset;
        padding: 70px 13.5135%
    }
}

@media screen and (max-width:767px) {
    .p-heading {
        width: 100%;
        height: 100%;
        margin-left: unset;
        padding: 33px 4.35897% 70px
    }
}

.p-heading__content__inner {
    width: fit-content;
    margin-left: auto;
    margin-right: auto
}

.p-heading__image {
    display: none
}

@media screen and (max-width:767px) {
    .p-heading__image {
        margin-bottom: 30px;
        display: block
    }
}

.p-heading__image img {
    width: 100%;
    height: auto
}

.p-heading__content span {
    letter-spacing: .1em;
    color: var(--color-text);
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: 1.48649vw;
    font-style: normal;
    font-weight: 700;
    line-height: 220%;
    display: block
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-heading__content span {
        text-align: center;
        font-size: 2.14844vw
    }
}

@media screen and (max-width:767px) {
    .p-heading__content span {
        letter-spacing: .08em;
        font-size: 3.84615vw;
        line-height: 220%
    }
}

@media screen and (min-width:1480px) {
    .p-heading__content span {
        font-size: 1.375rem
    }
}

.p-heading__content span:last-child {
    padding-top: 3.45rem
}

@media screen and (max-width:767px) {
    .p-heading__content span:last-child {
        padding-top: 2rem
    }
}

.p-about {
    padding-top: 190px;
    padding-bottom: 250px;
    position: relative
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-about {
        padding-top: 80px;
        padding-bottom: 80px
    }
}

@media screen and (max-width:767px) {
    .p-about {
        padding: 70px 0 67px
    }
}

.p-about__section__title {
    display: none
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-about__section__title {
        text-align: center;
        letter-spacing: .17em;
        color: var(--color-text);
        padding-bottom: 60px;
        font-family: Zen Kaku Gothic New, sans-serif;
        font-size: 2.92969vw;
        font-style: normal;
        font-weight: 500;
        line-height: 134%;
        display: block
    }

    .p-about__section__title span {
        position: relative
    }

    .p-about__section__title span:after {
        content: "";
        background: var(--color-yellow);
        width: 100%;
        max-width: 100%;
        height: 3px;
        position: absolute;
        bottom: -4px;
        left: 0
    }
}

@media screen and (max-width:767px) {
    .p-about__section__title {
        text-align: center;
        letter-spacing: .17em;
        color: var(--color-text);
        font-family: Zen Kaku Gothic New, sans-serif;
        font-size: 1.875rem;
        font-style: normal;
        font-weight: 500;
        line-height: 134%;
        display: block
    }

    .p-about__section__title span {
        position: relative
    }

    .p-about__section__title span:after {
        content: "";
        background: var(--color-yellow);
        width: 100%;
        max-width: 100%;
        height: 3px;
        position: absolute;
        bottom: -4px;
        left: 0
    }
}

.p-about__icon {
    width: 37.7634%;
    max-width: 233px;
    margin-left: auto;
    margin-right: auto;
    display: block
}

@media screen and (max-width:767px) {
    .p-about__icon {
        width: 42.0513%;
        margin-top: 90px
    }
}

.p-about__icon img {
    width: 100%;
    height: auto
}

.p-about__title {
    text-align: center;
    letter-spacing: .17em;
    color: var(--color-black);
    padding-top: 42px;
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: 2.36486vw;
    font-style: normal;
    font-weight: 700;
    line-height: 135%
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-about__title {
        font-size: 3.41797vw
    }
}

@media screen and (max-width:767px) {
    .p-about__title {
        padding-top: 28px;
        font-size: 1.375rem
    }
}

@media screen and (min-width:1480px) {
    .p-about__title {
        font-size: 2.1875rem
    }
}

.p-about__title span {
    color: var(--color-primary)
}

.p-about__description {
    text-align: center;
    letter-spacing: .11em;
    color: var(--color-text);
    padding-top: 24px;
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: 1.01351vw;
    font-style: normal;
    font-weight: 500;
    line-height: 184%
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-about__description {
        font-size: 1.46484vw
    }
}

@media screen and (max-width:767px) {
    .p-about__description {
        text-align: center;
        padding-left: 5.38462%;
        padding-right: 5.38462%;
        font-size: .875rem;
        line-height: 168%
    }
}

@media screen and (min-width:1480px) {
    .p-about__description {
        font-size: .9375rem
    }
}

.p-about__description span {
    color: var(--color-primary)
}

.p-about__content {
    padding-top: 40px
}

@media screen and (max-width:767px) {
    .p-about__content {
        padding-top: 43px
    }
}

.p-about__content__tags {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 15px;
    display: flex
}

@media screen and (max-width:767px) {
    .p-about__content__tags {
        gap: 0 6px
    }
}

.p-about__content__tags__item {
    width: 176px
}

.p-about__content__tags__item dt img,
.p-about__content__tags__item p img {
    width: 100%;
    height: auto
}

.p-about__content__tags__item dd {
    letter-spacing: .04em;
    color: var(--color-text);
    padding-top: 12px;
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: .6875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 164%
}

.p-about__content__tags__item dd span {
    color: var(--color-primary)
}

.p-about__content__notes {
    padding-top: 42px
}

@media screen and (max-width:767px) {
    .p-about__content__notes {
        padding-top: 56px;
        padding-left: 5.38462%;
        padding-right: 5.38462%
    }
}

.p-about__content__notes__item {
    letter-spacing: .03em;
    color: var(--color-text);
    align-items: flex-start;
    gap: 0 8px;
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: .6875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 145%;
    display: flex
}

.p-about__content__notes__item:nth-child(2) {
    padding-top: 14px
}

.p-about__content__notes__item small {
    font-size: .6875rem;
    display: block
}

.p-allLens {
    padding-top: 250px;
    padding-bottom: 100px;
    position: relative
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-allLens {
        padding-top: 80px;
        padding-bottom: 80px
    }
}

@media screen and (max-width:767px) {
    .p-allLens {
        padding-top: 67px;
        padding-bottom: 60px
    }
}

.p-allLens__section__title {
    display: none
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-allLens__section__title {
        text-align: center;
        letter-spacing: .17em;
        color: var(--color-text);
        padding-bottom: 60px;
        font-family: Zen Kaku Gothic New, sans-serif;
        font-size: 2.92969vw;
        font-style: normal;
        font-weight: 500;
        line-height: 134%;
        display: block
    }

    .p-allLens__section__title span {
        position: relative
    }

    .p-allLens__section__title span:after {
        content: "";
        background: var(--color-yellow);
        width: 100%;
        max-width: 100%;
        height: 3px;
        position: absolute;
        bottom: -4px;
        left: 0
    }
}

@media screen and (max-width:767px) {
    .p-allLens__section__title {
        letter-spacing: .17em;
        color: var(--color-text);
        margin-bottom: 82px;
        font-family: Zen Kaku Gothic New, sans-serif;
        font-size: 1.625rem;
        font-style: normal;
        font-weight: 500;
        line-height: 134%;
        display: block
    }

    .p-allLens__section__title span {
        position: relative
    }

    .p-allLens__section__title span:after {
        content: "";
        background: var(--color-yellow);
        width: 100%;
        max-width: 100%;
        height: 3px;
        position: absolute;
        bottom: -4px;
        left: 0
    }
}

.p-allLens__section:last-child {
    padding-top: 138px
}

@media screen and (max-width:767px) {
    .p-allLens__section:last-child {
        padding-top: 0
    }
}

.p-allLens__title {
    text-align: center;
    letter-spacing: .17em;
    color: var(--color-text);
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: 1.82432vw;
    font-style: normal;
    font-weight: 700;
    line-height: 147%;
    position: relative
}

@media screen and (max-width:767px) {
    .p-allLens__title {
        font-size: 1.25rem
    }
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-allLens__title {
        font-size: 2.63672vw
    }
}

.p-allLens__title rt {
    width: .2rem;
    font-size: .540541vw;
    line-height: 100%;
    display: inline-block;
    transform: translateY(-150%)
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-allLens__title rt {
        font-size: .78125vw;
        transform: translateY(-180%)
    }
}

.p-allLens__title rt {
    font-family: Zen Kaku Gothic New, sans-serif;
    font-style: normal;
    font-weight: 500
}

@media screen and (max-width:767px) {
    .p-allLens__title rt {
        font-size: .5rem
    }
}

@media screen and (min-width:1480px) {
    .p-allLens__title {
        font-size: 1.6875rem
    }
}

.p-allLens__title.Small {
    font-size: 1.75676vw
}

@media screen and (max-width:767px) {
    .p-allLens__title.Small {
        padding-top: 64px;
        font-size: 1.3125rem
    }
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-allLens__title.Small {
        font-size: 2.53906vw
    }
}

@media screen and (min-width:1480px) {
    .p-allLens__title.Small {
        font-size: 1.625rem
    }
}

.p-allLens__type__wrapper {
    padding-top: 58px
}

@media screen and (max-width:767px) {
    .p-allLens__type__wrapper {
        padding-top: 48px
    }
}

.p-allLens__type__wrapper:nth-child(3) {
    padding-top: 56px
}

@media screen and (max-width:767px) {
    .p-allLens__type__wrapper:nth-child(3) {
        padding-top: 52px
    }
}

.p-allLens__type__wrapper__title span {
    text-align: center;
    letter-spacing: .04em;
    width: 100%;
    max-width: 272px;
    color: var(--color-primary);
    background: var(--color-yellow);
    border-radius: 40px;
    margin-left: auto;
    margin-right: auto;
    padding: 8px 0 9px;
    font-size: 1.28378vw;
    display: block
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-allLens__type__wrapper__title span {
        font-size: 1.85547vw
    }
}

@media screen and (max-width:767px) {
    .p-allLens__type__wrapper__title span {
        font-size: 1.1875rem
    }
}

.p-allLens__type__wrapper__title span {
    font-family: Zen Kaku Gothic New, sans-serif;
    font-style: normal;
    font-weight: 700
}

@media screen and (min-width:1480px) {
    .p-allLens__type__wrapper__title span {
        font-size: 1.1875rem
    }
}

.p-allLens__type__wrapper__title span ruby {
    text-align: center;
    letter-spacing: .11em;
    color: var(--color-text);
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: .743243vw;
    font-style: normal;
    font-weight: 500;
    line-height: 144%;
    display: block
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-allLens__type__wrapper__title span ruby {
        font-size: 1.07422vw
    }
}

@media screen and (max-width:767px) {
    .p-allLens__type__wrapper__title span ruby {
        font-size: .6875rem
    }
}

@media screen and (min-width:1480px) {
    .p-allLens__type__wrapper__title span ruby {
        font-size: .6875rem
    }
}

.p-allLens__type__wrapper__title small {
    text-align: center;
    letter-spacing: .11em;
    color: var(--color-text);
    padding-top: 13px;
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: 1.01351vw;
    font-style: normal;
    font-weight: 500;
    display: block
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-allLens__type__wrapper__title small {
        font-size: 1.46484vw
    }
}

@media screen and (max-width:767px) {
    .p-allLens__type__wrapper__title small {
        font-size: .9375rem
    }
}

@media screen and (min-width:1480px) {
    .p-allLens__type__wrapper__title small {
        font-size: .9375rem
    }
}

@media screen and (max-width:767px) {
    .p-allLens__type {
        padding-left: 2.05128%;
        padding-right: 2.05128%
    }
}

.p-allLens__type:nth-child(2) {
    padding-top: 20px
}

@media screen and (max-width:767px) {
    .p-allLens__type:nth-child(2) {
        padding-top: 18px
    }
}

.p-allLens__type:nth-child(3) {
    padding-top: 24px
}

@media screen and (max-width:767px) {
    .p-allLens__type:nth-child(3) {
        padding-top: 24px
    }

    .p-allLens__type.Single {
        padding-top: 38px
    }
}

.p-allLens__type__title {
    text-align: center;
    letter-spacing: .11em;
    color: var(--color-text);
    background: #cbdae4;
    border-radius: 2px;
    padding: 4px 0;
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: .8125rem;
    font-style: normal;
    font-weight: 700
}

@media screen and (max-width:767px) {
    .p-allLens__type__title {
        text-align: center
    }
}

.p-allLens__type__itemsNote {
    text-align: center;
    letter-spacing: .11em;
    width: 100%;
    color: var(--color-primary);
    padding-top: 26px;
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: 1.55405vw;
    font-style: normal;
    font-weight: 700;
    line-height: 144%;
    display: block
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-allLens__type__itemsNote {
        font-size: 2.24609vw
    }
}

@media screen and (max-width:767px) {
    .p-allLens__type__itemsNote {
        font-size: 1.1875rem
    }
}

@media screen and (min-width:1480px) {
    .p-allLens__type__itemsNote {
        font-size: 1.4375rem
    }
}

.p-allLens__type__content {
    padding-top: 8px
}

.p-allLens__type__items {
    grid-template-columns: repeat(4, 1fr);
    gap: 33px 7px;
    display: grid
}

@media screen and (max-width:767px) {
    .p-allLens__type__items {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px
    }
}

.p-allLens__type__item {
    background: var(--color-primary);
    border-radius: 6px;
    flex-direction: column;
    height: 100%;
    padding: 15px 0 14px;
    display: flex
}

.p-allLens__type__item figure {
    flex-shrink: 0;
    width: 74%;
    margin: 0 auto
}

.p-allLens__type__item figure img {
    width: 100%;
    height: auto
}

.p-allLens__type__item figcaption {
    text-align: center;
    letter-spacing: .01em;
    color: var(--color-white);
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
    padding: 11px 0 0;
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: .743243vw;
    font-style: normal;
    font-weight: 500;
    line-height: 144%;
    display: flex
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-allLens__type__item figcaption {
        font-size: 1.07422vw
    }
}

@media screen and (max-width:767px) {
    .p-allLens__type__item figcaption {
        font-size: .75rem
    }
}

@media screen and (min-width:1480px) {
    .p-allLens__type__item figcaption {
        font-size: .6875rem
    }
}

.p-allLens__features_items {
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    gap: 7px;
    padding-top: 20px;
    display: grid
}

@media screen and (max-width:767px) {
    .p-allLens__features_items {
        justify-content: center;
        gap: 5px;
        padding-top: 10px;
        padding-left: 2.05128%;
        padding-right: 2.05128%
    }
}

.p-allLens__feature_item {
    background: var(--color-yellow-dark);
    border-radius: 6px;
    padding: 28px 0 24px
}

@media screen and (max-width:767px) {
    .p-allLens__feature_item {
        padding: 16px 10px 12px
    }
}

.p-allLens__feature_item figure {
    flex-shrink: 0;
    width: 94px;
    margin: 0 auto
}

@media screen and (max-width:767px) {
    .p-allLens__feature_item figure {
        width: 55%
    }
}

.p-allLens__feature_item figure img {
    width: 100%;
    height: auto
}

.p-allLens__feature_item figcaption {
    padding-top: 6px
}

@media screen and (max-width:767px) {
    .p-allLens__feature_item figcaption {
        padding-top: 4px
    }
}

.p-allLens__feature_item figcaption dl dt {
    text-align: center;
    letter-spacing: .11em;
    color: #131313;
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: 1.21622vw;
    font-style: normal;
    font-weight: 700;
    line-height: 224%
}

@media screen and (max-width:767px) {
    .p-allLens__feature_item figcaption dl dt {
        font-size: .9375rem
    }
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-allLens__feature_item figcaption dl dt {
        font-size: 1.75781vw
    }
}

@media screen and (min-width:1480px) {
    .p-allLens__feature_item figcaption dl dt {
        font-size: 1.125rem
    }
}

.p-allLens__feature_item figcaption dl dd {
    text-align: center;
    letter-spacing: .11em;
    color: #2e2e2e;
    padding-top: 6px;
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: .878378vw;
    font-style: normal;
    font-weight: 500;
    line-height: 160%
}

@media screen and (max-width:767px) {
    .p-allLens__feature_item figcaption dl dd {
        padding-top: 4px;
        font-size: .6875rem
    }
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-allLens__feature_item figcaption dl dd {
        font-size: 1.26953vw
    }
}

@media screen and (min-width:1480px) {
    .p-allLens__feature_item figcaption dl dd {
        font-size: .8125rem
    }
}

.p-sunProtection {
    padding-top: 100px;
    padding-bottom: 133px
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-sunProtection {
        padding-top: 80px;
        padding-bottom: 80px
    }
}

@media screen and (max-width:767px) {
    .p-sunProtection {
        padding-top: 60px;
        padding-bottom: 66px
    }
}

.p-sunProtection__section__title {
    display: none
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-sunProtection__section__title {
        text-align: center;
        letter-spacing: .17em;
        color: var(--color-text);
        font-family: Zen Kaku Gothic New, sans-serif;
        font-size: 2.83203vw;
        font-style: normal;
        font-weight: 500;
        line-height: 147%;
        display: block
    }

    .p-sunProtection__section__title span {
        position: relative
    }

    .p-sunProtection__section__title span:after {
        content: "";
        background: var(--color-yellow);
        width: 100%;
        max-width: 100%;
        height: 3px;
        position: absolute;
        bottom: -4px;
        left: 0
    }
}

@media screen and (max-width:767px) {
    .p-sunProtection__section__title {
        text-align: center;
        letter-spacing: .17em;
        color: var(--color-text);
        font-family: Zen Kaku Gothic New, sans-serif;
        font-size: 1.5rem;
        font-style: normal;
        font-weight: 500;
        line-height: 147%;
        display: block
    }

    .p-sunProtection__section__title span {
        position: relative
    }

    .p-sunProtection__section__title span:after {
        content: "";
        background: var(--color-yellow);
        width: 100%;
        max-width: 100%;
        height: 3px;
        position: absolute;
        bottom: -4px;
        left: 0
    }
}

.p-sunProtection__title {
    letter-spacing: .11em;
    color: var(--color-text);
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: 1.82432vw;
    font-style: normal;
    font-weight: 700;
    line-height: 204%
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-sunProtection__title {
        padding-top: 62px;
        font-size: 2.63672vw
    }
}

@media screen and (max-width:767px) {
    .p-sunProtection__title {
        text-align: center;
        padding-top: 44px;
        font-size: 1.1875rem;
        line-height: 184%
    }
}

@media screen and (min-width:1480px) {
    .p-sunProtection__title {
        font-size: 1.6875rem
    }
}

.p-sunProtection__list {
    background: url(/cms/contents/lp/spflens/img/note_bg.webp) 50%/100% 100%;
    margin-top: 6px;
    padding: 32px 28px
}

@media screen and (max-width:767px) {
    .p-sunProtection__list {
        margin-top: 20px;
        padding: 38px 28px
    }
}

.p-sunProtection__list__item {
    letter-spacing: .11em;
    color: var(--color-text);
    align-items: center;
    gap: 0 28px;
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: 1.35135vw;
    font-style: normal;
    font-weight: 500;
    line-height: 204%;
    display: flex;
    position: relative
}

@media screen and (max-width:767px) {
    .p-sunProtection__list__item {
        justify-content: center;
        padding-top: 2px;
        font-size: 1rem
    }
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-sunProtection__list__item {
        font-size: 1.95313vw
    }
}

@media screen and (min-width:1480px) {
    .p-sunProtection__list__item {
        font-size: 1.25rem
    }
}

.p-sunProtection__list__item:before {
    content: "";
    background: url(/cms/contents/lp/spflens/img/icon_check.svg) 50%/cover no-repeat;
    width: 21px;
    height: 15px;
    display: block
}

.p-sunProtection__banner {
    width: 100%;
    margin-top: 35px
}

@media screen and (max-width:767px) {
    .p-sunProtection__banner {
        margin-top: 28px
    }
}

.p-sunProtection__banner img {
    width: 100%;
    height: auto
}

.p-recommend {
    padding-top: 133px;
    padding-bottom: 270px
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-recommend {
        padding-top: 80px;
        padding-bottom: 80px
    }
}

@media screen and (max-width:767px) {
    .p-recommend {
        padding-top: 66px;
        padding-bottom: 75px
    }
}

.p-recommend__section__title {
    display: none
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-recommend__section__title {
        text-align: center;
        letter-spacing: .17em;
        color: var(--color-text);
        font-family: Zen Kaku Gothic New, sans-serif;
        font-size: 2.83203vw;
        font-style: normal;
        font-weight: 500;
        line-height: 147%;
        display: block
    }
}

@media screen and (max-width:767px) {
    .p-recommend__section__title {
        text-align: center;
        letter-spacing: .17em;
        color: var(--color-text);
        font-family: Zen Kaku Gothic New, sans-serif;
        font-size: 1.625rem;
        font-style: normal;
        font-weight: 500;
        line-height: 147%;
        display: block
    }
}

.p-recommend__section__title span {
    position: relative
}

.p-recommend__section__title span:after {
    content: "";
    background: var(--color-yellow);
    width: 100%;
    max-width: 100%;
    height: 3px;
    position: absolute;
    bottom: -4px;
    left: 0
}

.p-recommend__list {
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-recommend__list {
        width: 100%;
        padding-top: 35px
    }
}

@media screen and (max-width:767px) {
    .p-recommend__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        width: 100%;
        padding-top: 51px
    }
}

.p-recommend__item {
    border: 1px solid var(--color-primary-dark);
    background: var(--color-secondary-light);
    border-radius: 4px;
    flex-direction: column;
    height: 100%;
    padding: 15px;
    display: flex
}

@media screen and (max-width:767px) {
    .p-recommend__item {
        height: auto;
        padding: 14px 15px 12px
    }
}

.p-recommend__item i img {
    width: 100%;
    height: auto
}

.p-recommend__item span {
    text-align: center;
    letter-spacing: .11em;
    width: 100%;
    color: var(--color-primary);
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    font-size: .878378vw;
    line-height: 164%;
    display: flex
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .p-recommend__item span {
        font-size: 1.26953vw
    }
}

@media screen and (max-width:767px) {
    .p-recommend__item span {
        padding-top: 4px;
        font-size: .875rem;
        line-height: 124%
    }
}

.p-recommend__item span {
    font-family: Zen Kaku Gothic New, sans-serif;
    font-style: normal;
    font-weight: 700
}

@media screen and (min-width:1480px) {
    .p-recommend__item span {
        font-size: .8125rem
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.u-fade-in {
    animation: .8s ease-out forwards fadeIn
}

@media screen and (max-width:1023px) {
    .show-desktop {
        display: none !important
    }
}

@media screen and (min-width:1024px) {
    .no-desktop {
        display: none !important
    }
}

@media screen and (min-width:768px) {
    .show-mobile {
        display: none !important
    }
}

@media screen and (max-width:767px) {
    .no-mobile {
        display: none !important
    }
}

.show-tablet {
    display: none !important
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .show-tablet {
        display: block !important
    }

    .no-tablet {
        display: none !important
    }
}