@charset "UTF-8";

:root {
    --gothic: "Noto Sans JP", sans-serif;
    --mincho: "Noto Serif JP", serif;
}

html {
    overflow-y: scroll;
    font-size: 62.5%;
}

body {
    min-width: 1200px;
}

dl,
ul,
ol,
figure {
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 640px) {
    html {
        min-height: 100vh;
    }

    body {
        min-width: inherit;
    }

    img {
        width: 100%;
        height: auto;
    }
}

/* link
--------------------------------------------------*/
a {
    color: inherit;
}

a:link,
a:active,
a:visited {
    text-decoration: none;
}

@media print, screen and (min-width: 641px) {
    a[href^="tel:"] {
        pointer-events: none;
        display: inline-block;
    }

    a {
        transition: 0.3s;
    }

    a:hover {
        opacity: 0.7;
    }

    a,
    a * {
        outline: none;
    }
}

/* --------------------------------------------------
display
-------------------------------------------------- */
@media screen and (max-width: 640px) {
    .pc {
        display: none;
    }
}

@media print, screen and (min-width: 641px) {
    .sp {
        display: none;
    }
}

/* --------------------------------------------------
cleafix
-------------------------------------------------- */
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

/* --------------------------------------------------
align
-------------------------------------------------- */
.ta_l {
    text-align: left;
}

.ta_c {
    text-align: center;
}

.ta_r {
    text-align: right;
}

/* --------------------------------------------------
layout / style
-------------------------------------------------- */
.l-main {
    padding-bottom: 0;
    background-color: #fff;
    display: block;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.618;
    color: #3d3d3d;
    letter-spacing: 0;
    word-wrap: break-word;
    word-break: break-all;
    font-feature-settings: "palt" 1;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    line-break: strict;
    overflow-wrap: break-word;
}

.wrap {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

@media screen and (max-width: 640px) {
    .wrap {
        width: calc(100% - 60px);
        max-width: inherit;
        margin: auto;
    }
}

@media print, screen and (min-width: 641px) {
    .l-footer .c-contentWidth {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
}

.l-main *,
.l-main *:before,
.l-main *:after {
    box-sizing: border-box;
}

.l-main h2 {
    margin: 0;
}

.l-main img,
.l-main picture {
    max-width: 100%;
    height: auto;
    display: block;
}

.section {
    padding: 100px 0;
}

@media screen and (max-width: 640px) {
    .section {
        padding: 64px 0;
    }
}

.inner {
    margin-right: auto;
    margin-left: auto;
}

.w960 {
    width: 960px;
}

.w1040 {
    width: 1040px;
}

.w1147 {
    width: 1147px;
}

.w1200 {
    width: 1200px;
}

.w1218 {
    width: 1218px;
}

.w1300 {
    width: 1300px;
}

.w1370 {
    width: 1370px;
}

.w1400 {
    width: 1400px;
}

.w1600 {
    width: 1600px;
    /* @media screen and (max-width: 1260px) {
        width: calc(100% - 40px);
    } */
}

@media screen and (max-width: 1260px) {
    .w960,
    .w1040,
    .w1147,
    .w1200,
    .w1218,
    .w1300,
    .w1370,
    .w1400,
    .w1600 {
        width: calc(100% - 40px);
    }
}
/* @media screen and (max-width: 1260px) {
    .w960,
    .w1040,
    .w1147,
    .w1200,
    .w1218,
    .w1300,
    .w1370,
    .w1400 {
        width: calc(100% - 40px);
    }

    .w1600 {
        width: calc(100% - 40px);
    }
} */

/* --------------------------------------------------
共通animation
-------------------------------------------------- */
.js-fadein {
    opacity: 0;
    transition: transform 3s;
}

.is-fadein {
    -webkit-animation: fadeIn 0.8s forwards;
    animation: fadeIn 0.8s forwards;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.js-fadeup {
    opacity: 0;
    transition: transform 3s;
}

.is-fadeup {
    -webkit-animation: fadeUp 0.8s forwards;
    animation: fadeUp 0.8s forwards;
}

@-webkit-keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(80px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(80px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.js-fadedown {
    opacity: 0;
    transition: transform 3s;
}

.is-fadedown {
    opacity: 0;
    transition: transform 3s;
    -webkit-animation: fadeDown 0.8s forwards;
    animation: fadeDown 0.8s forwards;
}

@-webkit-keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-80px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-80px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes fadeup {
    0% {
        opacity: 0;
        transform: translateY(80px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeup {
    0% {
        opacity: 0;
        transform: translateY(80px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.js-fadeleft {
    opacity: 0;
    transition: transform 3s;
}

.is-fadeleft {
    -webkit-animation: fadeLeft 0.8s forwards;
    animation: fadeLeft 0.8s forwards;
}

@-webkit-keyframes fadeLeft {
    0% {
        opacity: 0;
        transform: translateX(-80px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    0% {
        opacity: 0;
        transform: translateX(-80px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.js-faderight {
    opacity: 0;
    transition: transform 3s;
}

.is-faderight {
    -webkit-animation: fadeRight 0.8s forwards;
    animation: fadeRight 0.8s forwards;
}

@-webkit-keyframes fadeRight {
    0% {
        opacity: 0;
        transform: translateX(80px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeRight {
    0% {
        opacity: 0;
        transform: translateX(80px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.js-zoomin {
    opacity: 0;
    transition: transform 3s;
}

.is-zoomin {
    -webkit-animation: zoomIn 3s forwards;
    animation: zoomIn 3s forwards;
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(1.025, 1.025);
    }

    100% {
        opacity: 1;
        transform: scale(1, 1);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(1.025, 1.025);
    }

    100% {
        opacity: 1;
        transform: scale(1, 1);
    }
}

.js-zoomout {
    opacity: 0;
    transition: transform 0.8s;
}

.is-zoomout {
    -webkit-animation: zoomOut 0.8s forwards;
    animation: zoomOut 0.8s forwards;
}

@-webkit-keyframes zoomOut {
    0% {
        opacity: 0;
        transform: scale(0.9, 0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1, 1);
    }
}

@keyframes zoomOut {
    0% {
        opacity: 0;
        transform: scale(0.9, 0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1, 1);
    }
}

.js-rotate {
    opacity: 0;
    transition: transform 0.8s;
    transform-origin: center center;
}

.is-rotate {
    -webkit-animation: rotate 2s 0.6s ease forwards infinite;
    animation: rotate 2s 0.6s ease forwards infinite;
}

@-webkit-keyframes rotate {
    0% {
        opacity: 0;
        transform: rotate(0);
    }

    100% {
        opacity: 1;
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        opacity: 0;
        transform: rotate(0);
    }

    100% {
        opacity: 1;
        transform: rotate(360deg);
    }
}

.js-rotate02 {
    transition: transform 0.8s;
    transform-origin: center center;
}

.is-rotate02 {
    -webkit-animation: rotate02 8s 3s ease forwards infinite;
    animation: rotate02 8s 3s ease forwards infinite;
}

@-webkit-keyframes rotate02 {
    0% {
        opacity: 1;
        transform: rotate(0);
    }

    25% {
        opacity: 0.7;
    }

    70% {
        opacity: 1;
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate02 {
    0% {
        opacity: 1;
        transform: rotate(0);
    }

    25% {
        opacity: 0.7;
    }

    70% {
        opacity: 1;
    }

    100% {
        transform: rotate(360deg);
    }
}

.js-loop {
    opacity: 0;
    transition: transform 0.8s;
}

.is-loop {
    -webkit-animation: loop 4s 0s linear infinite;
    animation: loop 4s 0s linear infinite;
}

@-webkit-keyframes loop {
    0% {
        opacity: 0;
        transform: translate(0, 200%);
    }

    100% {
        opacity: 1;
        transform: translate(0, -200%);
    }
}

@keyframes loop {
    0% {
        opacity: 0;
        transform: translate(0, 200%);
    }

    100% {
        opacity: 1;
        transform: translate(0, -200%);
    }
}

.js-loop02 {
    opacity: 0;
    transition: transform 0.8s;
}

.is-loop02 {
    -webkit-animation: loop02 4s 2s linear infinite;
    animation: loop02 4s 2s linear infinite;
}

@-webkit-keyframes loop02 {
    0% {
        opacity: 0;
        transform: translate(0, 200%);
    }

    100% {
        opacity: 1;
        transform: translate(0, -200%);
    }
}

@keyframes loop02 {
    0% {
        opacity: 0;
        transform: translate(0, 200%);
    }

    100% {
        opacity: 1;
        transform: translate(0, -200%);
    }
}

.js-loop03 {
    opacity: 0;
    transition: transform 0.8s;
}

.is-loop03 {
    -webkit-animation: loop03 3s 2s linear infinite;
    animation: loop03 3s 2s linear infinite;
}

@-webkit-keyframes loop03 {
    0% {
        opacity: 0;
        transform: translate(0, 200%);
    }

    100% {
        opacity: 1;
        transform: translate(0, -200%);
    }
}

@keyframes loop03 {
    0% {
        opacity: 0;
        transform: translate(0, 200%);
    }

    100% {
        opacity: 1;
        transform: translate(0, -200%);
    }
}

/*================================================================
# menu
================================================================ */
#menu {
    cursor: pointer;
    position: fixed;
    right: 16px;
    left: 9px;
    bottom: 20px;
    z-index: 10;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 13px;
    padding-right: 13px;
    background-color: #ebebeb;
    border: solid 1px #d6d6d6;
    border-radius: 3px;

    @media screen and (max-width: 640px) {
        z-index: 9999;
    }
}

#menu.is-small {
    margin-right: 0;
    margin-left: auto;
    width: 48px;
    height: 48px;
}

#menu.hidden {
    display: none !important;
}

#menu:not(.is-open) > span:before {
    content: "";
    display: block;
    position: absolute;
    right: 13px;
    bottom: 21px;
    width: 19px;
    height: 11px;
    border-top: solid 1px #445394;
    border-bottom: solid 1px #445394;
}

#menu:not(.is-open) > span:after {
    content: "";
    display: block;
    position: absolute;
    right: 13px;
    bottom: 26px;
    width: 19px;
    height: 1px;
    background-color: #445394;
}

#menu.is-open > span:before,
#menu.is-open > span:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 27px;
    right: 12px;
    width: 19px;
    height: 1px;
    background-color: #445394;
    transform: rotate(45deg);
}

#menu.is-open > span:after {
    transform: rotate(-45deg);
}

#menu ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: fit-content;
}

#menu span > span:after {
    content: "MENU";
    position: absolute;
    right: 7px;
    bottom: 2px;
    z-index: 1;
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 0.06em;
    color: #185d82;
}

#menu.is-open span > span:after {
    content: "CLOSE";
    right: 5px;
}

#menu.is-small ul {
    display: none;
}

#menu li {
    display: inline-block;
    font-family: "Noto Serif JP";
    font-weight: 400;
    font-size: 11px;
    line-height: 25px;
    letter-spacing: 0.1em;
    color: #000000;
}

#menu.is-open li {
    line-height: 23px;
}
#menu.is-open li.start-line,
#menu.is-open li.end-line {
    position: relative;
    margin-top: 10px;
    padding-top: 10px;
}
#menu.is-open li.start-line:before,
#menu.is-open li.end-line:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: calc(100vw - 56px);
    height: 1px;
    background-color: #adadad;
    pointer-events: none;
}
#menu.is-open li.start-line {
    margin-top: 5px;
    padding-top: 14px;
    /* &:after{
  	position: absolute;
  	top: 15px;
  	left: 0;
  	z-index: 1;
  	pointer-events: none;
  	display: block;
  	content: "2024S/S プランプ ブライト ライン";
  	font-family: 'Noto Serif JP';
  	font-weight: 400;
  	font-size: 10px;
  	line-height: 25px;
  	letter-spacing: 0.1em;
  	color: #000000;
  } */
}
#menu.is-open li.start-line:before {
    top: 5px;
}

#menu:not(.is-open) li:not(.active) {
    display: none;
}

.common-btn.type01 {
    text-align: center;
}
.common-btn.type01 .cover {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 202px;
    height: 34px;
    font-family: "Noto Serif JP";
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: #000000;
    border: 1px solid #000000;
    border-radius: 36px;
}
@media (hover: hover) and (pointer: fine) {
    .common-btn.type01 .cover {
        transition:
            ease 0.25s color,
            ease 0.25s background-color;
    }
    .common-btn.type01 .cover:hover {
        opacity: 1;
        color: #fff;
        /* background-color: #7d828f; */
        /* border-color: #7d828f; */
        background-color: #000;
        border-color: #000;
    }
}

/* --------------------------------------------------------------- */
/* COMMON PARTS */
/* --------------------------------------------------------------- */

.pc-off {
    display: none;

    @media screen and (max-width: 640px) {
        display: flex !important;
    }
}

.sp-off {
    display: flex;

    @media screen and (max-width: 640px) {
        display: none !important;
    }
}

.label {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 3px 0;
    padding-left: 6px;
    width: 74px;
    gap: 10px;
    background: #8abce0;
    border-radius: 17px;
    margin-bottom: 10px;

    & span {
        font-family: "Noto Sans JP";
        font-style: normal;
        font-weight: 350;
        font-size: 16px;
        /* line-height: 29px; */
        text-align: center;
        letter-spacing: 0.35em;
        color: #ffffff;
    }
    @media screen and (max-width: 640px) {
        margin-left: -4px;
        padding: 2px 0 2px 0.35em;
        width: 58px;
        border-radius: 12.9524px;
        box-sizing: border-box;

        & span {
            font-size: 12px;
        }
    }
}

.mini-text {
    font-size: 14px;

    @media screen and (max-width: 640px) {
    }
}

.mini-text-num {
    font-size: 8px;

    @media screen and (max-width: 640px) {
    }
}

.mini-note {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 180%;
    display: flex;
    align-items: center;
    letter-spacing: 0.1em;
    color: #676767;
    text-shadow: 0px 0px 1px #ffffff;

    @media screen and (max-width: 640px) {
        font-size: 12px;
        line-height: 19px;
    }
}

.common-section-title {
    font-family: "Cormorant";
    font-style: normal;
    font-weight: 300;
    font-size: 105.895px;
    line-height: 128px;
    text-align: center;
    color: #66869f;
    opacity: 0.66;
    padding-bottom: 97px;

    @media screen and (max-width: 640px) {
        font-size: 61.8947px;
        line-height: 75px;
        padding-bottom: 40px;
    }
}

.common-button {
    position: relative;
    font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    /* line-height: 31px; */
    leading-trim: both;
    text-edge: cap;
    text-align: center;
    letter-spacing: 0.2em;
    color: #535353;
    border: 1px solid #000;
    box-sizing: border-box;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 35px;
    border: 1px solid #000000;
    border-radius: 32px;
    /* transition: all 0.3s ease; */
    transition: 0.3s background;
    margin: auto;
    cursor: pointer;
    margin-top: 25px;
    margin-bottom: 35px;

    .dli-arrow-right {
        display: inline-block;
        vertical-align: middle;
        color: #535353;
        line-height: 1;
        position: relative;
        width: 20px;
        height: 1px;
        background: currentColor;
        transition: all 0.3s ease;
    }

    .dli-arrow-right::before {
        content: "";
        width: 0.5rem;
        height: 0.5rem;
        border: 0.1em solid currentColor;
        border-left: 0;
        border-bottom: 0;
        transform: rotate(45deg);
        transform-origin: top right;
        position: absolute;
        /* top: 50%; */
        top: 45%;
        right: -0.05em;
        box-sizing: border-box;
    }

    &:hover {
        background: #535353;
        color: #fff;

        .dli-arrow-right {
            color: #fff;
            background-color: currentColor;
        }
    }

    @media screen and (max-width: 640px) {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

/* --------------------------------------------------------------- */
/* MAIN */
/* --------------------------------------------------------------- */

/* #contents {
    background: url(../img/main-bg.png);
    background-attachment: fixed;
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    background-size: 100% 100%;
    margin-top: -124px;

    @media screen and (max-width: 640px) {
        background: url(../img/main-bg-sp.png);
        margin-top: 0;
        background-attachment: fixed;
        position: relative;
        z-index: 1;
        overflow: hidden;
        background-size: 100%;
    }
} */

#contents {
    position: relative;
    /* z-index: 0; */
    overflow: hidden;
    width: 100%;
    margin-top: -124px;
}

#contents::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url(../img/main-bg.png) center / cover no-repeat;
    z-index: -1;
}

@media screen and (max-width: 640px) {
    #contents {
        margin-top: -60px;
    }

    #contents::before {
        background: url(../img/main-bg-sp.png) center / cover no-repeat;
    }
}

/* --------------------------------------------------------------- */
/* FV */
/* --------------------------------------------------------------- */

.fv-cover {
    width: 100%;
    position: relative;
    z-index: 0;

    & img {
        width: 100%;
    }

    @media screen and (max-width: 640px) {
    }
}

/* --------------------------------------------------------------- */
/* SECTION 1 */
/* --------------------------------------------------------------- */

.section-1 {
    /* padding-top: 155px; */
    padding-top: 50px;

    @media screen and (max-width: 640px) {
        /* padding-top: 100px; */
        padding-top: 50px;
        padding-bottom: 98px;
        .w1218 {
            width: calc(100% - 60px);
        }

        .common-section-title {
            font-size: 40px;
            line-height: 50px;
        }
    }
}

.sec1-container {
    display: flex;
    gap: 210px;

    @media screen and (max-width: 640px) {
        flex-direction: column;
        gap: 30px;
    }
}

.sec1-left {
    width: 515px;
    font-family: "Noto Serif JP";
    font-style: normal;
    font-weight: 400;
    font-size: 38px;
    line-height: 182%;
    letter-spacing: 0.32em;
    color: #535353;

    @media screen and (max-width: 640px) {
        width: 100%;
        font-size: 24px;
        line-height: 164%;
    }
}

.sec1-right {
    width: 509px;
    display: flex;
    flex-direction: column;

    & span {
        padding-bottom: 45px;
        font-family: "Noto Sans JP";
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 231%;
        letter-spacing: 0.06em;
        color: rgba(0, 0, 0, 0.63);
    }

    .sec1-right-award {
        display: flex;
        gap: 45px;
        align-items: center;
        padding-top: 10px;

        .voce-img {
            height: 209px;
            transition: 0.3s opacity;

            &:hover {
                opacity: 0.6;
            }
        }

        .maquia-img {
            height: 182.75px;
        }
    }

    @media screen and (max-width: 640px) {
        width: 100%;

        & span {
            font-size: 16px;
            line-height: 200%;
            padding-bottom: 30px;
        }

        .sec1-right-award {
            gap: 35px;
            margin: auto;
            padding-top: 0;

            .voce-img {
                width: 101px;
                height: 147px;
            }

            .maquia-img {
                width: 126.25px;
                height: 134.92px;
            }
        }
    }
}

/* --------------------------------------------------------------- */
/* SECTION 2 */
/* --------------------------------------------------------------- */

.section-2 {
    background: url("../img/sec2-cover.png");
    /* background-size: 100% 100%; */
    background-size: 100% auto;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0;
    padding-top: 280px;
    padding-bottom: 117px;

    @media screen and (max-width: 640px) {
        background: url("../img/sec2-cover-sp.png");
        padding-top: 90px;
        background-repeat: no-repeat;
        background-size: cover !important;
        padding-bottom: 135px;
    }
}

.sec2-top {
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;

    @media screen and (max-width: 640px) {
        flex-direction: column;
        gap: 0;
        padding-bottom: 30px;
    }
}

.sec2-top-left {
    width: 660px;
    aspect-ratio: 1 / 1;
    background-image: url(../img/bubble.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    /* background-size: 100% 100%; */
    /* padding-top: 130px; */
    /* padding-bottom: 140px; */

    @media screen and (max-width: 640px) {
        width: 125vw;

        /* width: 150%; */
        /* padding-top: 110px; */
        /* padding-bottom: 110px; */
    }
}

.sec2-blue-title {
    font-family: "Noto Serif JP";
    font-style: normal;
    font-weight: 500;
    font-size: 26px;
    line-height: 145%;
    text-align: center;
    letter-spacing: 0.62em;
    color: #66869f;
    padding-bottom: 14px;
    margin-bottom: 32px;
    margin-left: 15px;
    position: relative;

    /* border-bottom: 1px solid #66869f; */

    &::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 15px;
        height: 1px;
        background: #66869f;
    }

    @media screen and (max-width: 640px) {
        font-size: 19.8095px;
        line-height: 145%;
        padding-bottom: 10px;
        margin-bottom: 26px;
        margin-left: 9px;
    }
}

.sec2-title {
    font-family: "Noto Serif JP";
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 173%;
    text-align: center;
    letter-spacing: 0.31em;
    color: #535353;
    padding-bottom: 18px;

    @media screen and (max-width: 640px) {
        font-size: 21px;
        line-height: 150%;
    }
}

.sec2-desc {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 207%;
    text-align: center;
    letter-spacing: 0.06em;
    color: #535353;

    @media screen and (max-width: 640px) {
        font-size: 14px;
        line-height: 180%;
    }
}

.sec2-top-right {
    width: 660px;
    aspect-ratio: 1 / 1;
    background-image: url("../img/bubble.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 0;

    /* background-size: 100% 100%; */
    /* padding-top: 130px; */
    /* padding-bottom: 140px; */

    @media screen and (max-width: 640px) {
        width: 125vw;
        top: 0;

        /* width: 150%; */
        /* padding-top: 115px; */
        /* padding-bottom: 115px; */
    }
}

.sec2-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;

    @media screen and (max-width: 640px) {
    }
}

.sec2-bottom-big {
    font-family: "Noto Serif JP";
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 173%;
    text-align: center;
    letter-spacing: 0.44em;
    color: #535353;
    margin-bottom: 14px;

    @media screen and (max-width: 640px) {
        font-size: 20px;
        line-height: 171%;
    }
}

.sec2-bottom-small {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 19px;
    display: flex;
    align-items: center;
    text-align: center;
    letter-spacing: 0.1em;
    color: #676767;
    text-shadow: 0px 0px 1px #ffffff;

    @media screen and (max-width: 640px) {
        font-size: 12px;
        line-height: 14px;
    }
}

/* --------------------------------------------------------------- */
/* SECTION 3 */
/* --------------------------------------------------------------- */

.section-3 {
    padding-top: 111px;

    .mini-note {
        padding-top: 40px;
        display: flex;
        justify-content: center;
    }

    @media screen and (max-width: 640px) {
        padding-top: 65px;
        padding-bottom: 40px;
    }
}

.sec3-box {
    display: flex;
    gap: 140px;

    .mini-note {
        padding-bottom: 65px;
    }

    @media screen and (max-width: 640px) {
        flex-direction: column;
        gap: 0;
        /* display: contents; */

        .mini-note {
            font-size: 12px;
            line-height: 19px;
            padding-bottom: 25px;
            margin: auto;
            text-align: center;
        }
    }
}

.sec3-box-left {
    display: flex;
    gap: 50px;
    width: 593px;

    @media screen and (max-width: 640px) {
        flex-direction: column;
        /* display: contents; */
        width: 100%;
        order: 1;
        gap: 0;
    }
}

.sec3-award {
    padding-top: 50px;
    width: 118px;

    & img {
        width: 100%;
    }

    @media screen and (max-width: 640px) {
        width: 100%;
        order: 2;
        padding-bottom: 65px;

        & img {
            width: 89%;
            display: flex;
            margin: auto;
        }
    }
}

.sec3-product-box {
    display: flex;
    flex-direction: column;

    @media screen and (max-width: 640px) {
        order: 1;
    }
}

.sec3-product-img {
    width: 411px;
    padding-bottom: 10px;

    & img {
        width: 100%;
    }

    @media screen and (max-width: 640px) {
        width: 100%;
        display: flex;

        & img {
            width: 216px;
            /* height: 311px; */
            height: auto;
            margin: auto;
        }
    }
}

.sec3-product-intro {
    display: flex;
    flex-direction: column;

    @media screen and (max-width: 640px) {
    }
}

.sec3-brand-name {
    font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 31px;
    leading-trim: both;
    text-edge: cap;
    text-align: center;
    letter-spacing: 0.2em;
    color: #535353;
    padding-bottom: 5px;

    @media screen and (max-width: 640px) {
        font-size: 12px;
    }
}

.sec3-product-name {
    font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    leading-trim: both;
    text-edge: cap;
    text-align: center;
    letter-spacing: 0.2em;
    color: #535353;
    padding-bottom: 10px;

    @media screen and (max-width: 640px) {
        font-size: 16px;
    }
}

.sec3-product-price {
    font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 39px;
    leading-trim: both;
    text-edge: cap;
    text-align: center;
    letter-spacing: 0.14em;
    color: #535353;
    padding-bottom: 10px;

    @media screen and (max-width: 640px) {
        font-size: 12px;
    }
}

.sec3-product-tag {
    box-sizing: border-box;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 3px 8px;
    gap: 10px;
    border: 1px solid #535353;
    font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    /* line-height: 19px; */
    leading-trim: both;
    text-edge: cap;
    letter-spacing: 0.14em;
    color: #535353;
    margin: auto;
    margin-bottom: 15px;

    @media screen and (max-width: 640px) {
        padding: 0 7px;
    }
}

.sec3-product-note {
    font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 31px;
    leading-trim: both;
    text-edge: cap;
    text-align: center;
    letter-spacing: 0.2em;
    color: #535353;

    @media screen and (max-width: 640px) {
        font-size: 12px;
    }
}

.sec3-box-right {
    width: 650px;
    display: flex;
    flex-direction: column;
    padding-top: 20px;

    .mini-note {
        justify-content: left;
    }

    @media screen and (max-width: 640px) {
        width: 100%;
        display: contents;
        padding-top: 0;

        .mini-note {
            padding-top: 0;
        }
    }
}

.sec3-box-text {
    @media screen and (max-width: 640px) {
        order: 0;
    }
}

.sec3-box-right-title {
    font-family: "Noto Serif JP";
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 173%;
    letter-spacing: 0.44em;
    color: #535353;
    padding-bottom: 10px;

    .mini-text {
        position: relative;
        top: -14px;
        font-size: 16px;
        letter-spacing: 0.4em;
    }

    @media screen and (max-width: 640px) {
        font-size: 26px;
        line-height: 160%;
        padding-bottom: 20px;
        text-align: center;

        .mini-text {
            top: -7px;
        }
    }
}

.sec3-box-right-desc {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 210%;
    letter-spacing: 0.08em;
    color: rgba(0, 0, 0, 0.63);
    padding-bottom: 40px;

    .mini-text-num {
        font-size: 12px;
        position: relative;
        top: -5px;
    }

    @media screen and (max-width: 640px) {
        font-size: 16px;
        line-height: 231%;
        text-align: center;
        padding-bottom: 20px;
    }
}

.texture-exp-box {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 20px;

    @media screen and (max-width: 640px) {
        order: 6;
        gap: 40px;
    }
}

.texture-exp {
    display: flex;
    gap: 25px;

    @media screen and (max-width: 640px) {
    }
}

.texture-exp-img {
    & img {
        width: 117px;
    }

    @media screen and (max-width: 640px) {
        & img {
            width: 92px;
        }
    }
}

.texture-exp-desc {
    display: flex;
    flex-direction: column;

    @media screen and (max-width: 640px) {
    }
}

.texture-exp-desc-title {
    font-family: "Noto Serif JP";
    font-style: normal;
    font-weight: 500;
    font-size: 21.8844px;
    line-height: 148%;
    letter-spacing: 0.44em;
    color: #535353;
    padding-bottom: 10px;

    @media screen and (max-width: 640px) {
        font-size: 17.9229px;
        letter-spacing: 0.27em;
    }
}

.texture-exp-desc-text {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 184%;
    letter-spacing: 0.08em;
    color: rgba(0, 0, 0, 0.63);

    @media screen and (max-width: 640px) {
        font-size: 14px;
        line-height: 171%;
        letter-spacing: 0.06em;
    }
}

.sec3-box-right-mini-note {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 180%;
    text-align: right;
    letter-spacing: 0.1em;
    color: #535353;

    @media screen and (max-width: 640px) {
        order: 6;
        margin-top: 15px;
    }
}

.htu-box {
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid #f4fafe;
    box-shadow: 0px 0px 22.4px 4px rgba(184, 209, 220, 0.34);
    border-radius: 8px;
    padding: 43px 0;
    margin-top: 100px;
    margin-bottom: 80px;

    @media screen and (max-width: 640px) {
        margin-top: 52px;
        padding: 43px 35px;
        margin-bottom: 65px;
    }
}

.htu-title {
    font-family: "Cormorant";
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 39px;
    text-align: center;
    letter-spacing: 0.03em;
    color: #535353;
    padding-bottom: 16px;

    @media screen and (max-width: 640px) {
        padding-bottom: 25px;
        font-size: 25.9429px;
        line-height: 31px;
    }
}

.htu-exp-box {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;

    @media screen and (max-width: 640px) {
        flex-direction: column;
        gap: 22px;
    }
}

.htu-exp-box-left {
    & img {
        width: 114px;
    }

    @media screen and (max-width: 640px) {
    }
}

.htu-exp-box-right {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 184%;
    letter-spacing: 0.08em;
    color: rgba(0, 0, 0, 0.63);

    @media screen and (max-width: 640px) {
        font-size: 14.6286px;
    }
}

/* .cotton-box {
    box-sizing: border-box;
    background: url("../img/file.png");
    padding: 46px 0;
    padding-bottom: 60px;
    background-size: 100% 100%;

    @media screen and (max-width: 640px) {
        background: url("../img/file-sp.png");
        background-repeat: no-repeat;
        background-size: 100% 100%;
        padding-top: 21px;
        padding-bottom: 46px;
        padding-left: 30px;
        padding-right: 30px;
    }
} */

.cotton-box {
    position: relative;
    box-sizing: border-box;
    padding: 46px 0 60px;

    &::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url("../img/file.png") center / contain no-repeat;
        z-index: -1;
    }

    @media (max-width: 640px) {
        padding: 21px 30px 46px;

        &::before {
            background-image: url("../img/file-sp.png");
        }
    }
}

.cotton-box-titles {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    margin-bottom: 48px;

    @media screen and (max-width: 640px) {
        margin-bottom: 30px;
    }
}

.cotton-box-title-1 {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 180%;
    text-align: center;
    letter-spacing: 0.08em;
    color: #535353;

    .mini-text {
        font-size: 10px;
        position: relative;
        top: -2px;
    }

    @media screen and (max-width: 640px) {
        font-size: 12px;
        line-height: 150%;
    }
}

.cotton-box-title-2 {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 180%;
    text-align: center;
    letter-spacing: 0.3em;
    color: #535353;
    padding-bottom: 8px;
    border-bottom: 2px dotted black;

    @media screen and (max-width: 640px) {
        font-size: 18px;
    }
}

.cotton-product-box {
    display: flex;
    justify-content: center;
    gap: 160px;
    margin-bottom: 59px;

    @media screen and (max-width: 640px) {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }
}

.cp-pink {
    display: flex;
    flex-direction: column;

    .cp-product-left {
        & img {
            width: 130px;
        }
    }

    @media screen and (max-width: 640px) {
        .cp-product-left {
            width: 105px;
            display: flex;
            margin: auto;

            & img {
                width: 105px;
            }
        }
    }
}

.cp-common-title {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 180%;
    text-align: center;
    letter-spacing: 0.08em;
    color: #535353;
    margin-bottom: 27px;

    @media screen and (max-width: 640px) {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

.cp-product {
    display: flex;
    gap: 19px;
    justify-content: center;

    @media screen and (max-width: 640px) {
    }
}

.cp-product-right {
    display: flex;
    flex-direction: column;

    @media screen and (max-width: 640px) {
    }
}

.cp-brand-name {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #535353;
    opacity: 0.79;
    margin-bottom: 5px;

    @media screen and (max-width: 640px) {
        font-size: 12px;
        line-height: 150%;
    }
}

.cp-product-name {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-decoration-line: underline !important;
    color: #535353;
    opacity: 0.79;
    margin-bottom: 13px;
    transition: 0.3s opacity;

    &:hover {
        opacity: 0.6;
        text-decoration: none !important;
    }

    @media screen and (max-width: 640px) {
        font-size: 14px;
    }
}

.cp-product-price {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #535353;
    opacity: 0.79;

    @media screen and (max-width: 640px) {
        font-size: 12px;
    }
}

.cp-blue {
    display: flex;
    flex-direction: column;

    .cp-product-left {
        & img {
            width: 95px;
        }
    }

    @media screen and (max-width: 640px) {
        .cp-product-left {
            width: 105px;
            display: flex;
            margin: auto;

            & img {
                width: 79px;
                margin: auto;
            }
        }
    }
}

.certified-box {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;

    @media screen and (max-width: 640px) {
        align-items: flex-start;
        gap: 23px;
    }
}

.certified-box-left {
    & img {
        width: 106px;
    }

    @media screen and (max-width: 640px) {
        & img {
            width: 93px;
        }
    }
}

.certified-box-right {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 180%;
    letter-spacing: 0.08em;
    color: #535353;

    @media screen and (max-width: 640px) {
        font-size: 12px;
        line-height: 185%;
    }
}

/* --------------------------------------------------------------- */
/* SECTION 4 */
/* --------------------------------------------------------------- */

.section-4 {
    background: url("../img/lineup-bg.png");
    /* background-size: 100% 100%; */
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
    padding-top: 375px;

    .common-section-title {
        padding-bottom: 60px;
    }

    @media screen and (max-width: 640px) {
        background: url("../img/lineup-bg-sp.png");
        padding-top: 65px;
        background-size: 100% 100%;
        background-repeat: no-repeat;

        .common-section-title {
            padding-bottom: 55px;
        }
    }
}

#line-up {
    display: none;
    @media screen and (max-width: 640px) {
        display: flex;
        padding-top: 100px;
    }
}

.lineup-tag-box {
    display: flex;
    gap: 10px;
    margin: auto;
    justify-content: center;
    margin-bottom: 90px;

    @media screen and (max-width: 640px) {
        flex-wrap: wrap;
        gap: 10px;
        padding-bottom: 50px;
        margin-bottom: 0;
    }
}

.lineup-tag {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 22px;
    gap: 24px;
    border-radius: 32px;
    text-decoration: none;
    font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    /* line-height: 32px; */
    color: #8e8e8e;
    border: 1px solid #8e8e8e;
    transition: all 0.3s ease;
    cursor: pointer;

    & a {
    }

    &:hover {
        background: #8e8e8e;
        color: #ffffff;
    }

    @media screen and (max-width: 640px) {
        padding: 4px 16px;
        font-size: 12px;
    }
}

.lineup-product-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 90px;
    scroll-margin-top: 120px;

    @media screen and (max-width: 640px) {
        padding-bottom: 45px;
    }
}

.swiper-pb {
    @media screen and (max-width: 640px) {
        padding-bottom: 60px !important;
    }
}

.lineup-product-main-title {
    font-family: "Noto Serif JP";
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 173%;
    text-align: center;
    letter-spacing: 0.44em;
    color: #535353;
    border-bottom: 1px solid currentColor;
    padding-bottom: 10px;
    margin-bottom: 50px;

    @media screen and (max-width: 640px) {
        padding-bottom: 10px;
        margin-bottom: 45px;
        font-size: 22px;
    }
}

.lineup-product-box {
    display: flex;
    gap: 100px;

    @media screen and (max-width: 640px) {
        flex-direction: column;
        width: 100%;
    }
}

.lup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 590px;

    @media screen and (max-width: 640px) {
        width: 100%;
    }
}

.lup-tag {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 1px 17px;
    background: #66869f;
    border-radius: 3px;
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 217%;
    text-align: center;
    letter-spacing: 0.08em;
    color: #ffffff;
    margin-bottom: 20px;

    .mini-text {
        font-size: 11px;
        position: relative;
        top: -2px;
    }

    @media screen and (max-width: 640px) {
        font-size: 12px;
    }
}

.lup-text {
    font-family: "Noto Serif JP";
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 181%;
    text-align: center;
    letter-spacing: 0.08em;
    color: rgba(0, 0, 0, 0.63);
    margin-bottom: 15px;
    height: 108.61px;

    .mini-text {
        position: relative;
        top: -5px;
    }

    @media screen and (max-width: 640px) {
        font-size: 17px;
        height: auto;
    }
}

.text-01,
.text-02 {
    height: 150px;
}

.text-03,
.text-04 {
    height: 123.5px;
}

.text-09,
.text-10 {
    height: 147px;

    @media screen and (max-width: 640px) {
        height: auto;
    }
}

.lup-img-05-text {
    height: auto;

    @media screen and (max-width: 640px) {
        /* height: auto; */
    }
}

.lup-product {
    margin-bottom: 40px;
    height: 309px;
    display: flex;
    align-items: center;

    & img {
        /* width: 262px; */
        height: 309px;
    }

    .lup-img-01 {
        position: relative;
        left: -50px;
    }

    .lup-img-02 {
        position: relative;
        left: -18px;
    }

    .lup-img-03 {
        position: relative;
        left: -22px;
    }

    .lup-img-04 {
        position: relative;
        left: -20px;
    }

    .lup-img-05 {
        height: 309px;
        position: relative;
        left: -6px;
    }

    .lup-img-06 {
        position: relative;
        left: -23px;
    }

    .lup-img-07 {
        position: relative;
        left: -28px;
    }

    .lup-img-08 {
        height: 236px;
        position: relative;
        left: -22px;
    }

    .lup-img-09 {
        position: relative;
        left: 5px;
    }
    .lup-img-10 {
        width: 206px;
        height: 236px;
    }

    .lup-product-09,
    .lup-product-10 {
        margin-bottom: 15px;
    }

    @media screen and (max-width: 640px) {
        display: flex;
        margin: auto;
        margin-bottom: 25px;
        justify-content: center;
        /* width: 100%; */

        & img {
            /* width: 262px; */
            /* width: 80%; */
            /* height: 307px; */
            /* height: auto; */

            display: block;
            width: 80%;
            height: auto;
            /* max-width: 262px; */
            object-fit: cover;
        }

        .lup-img-01 {
            width: 60%;
            left: -38px;
        }

        .lup-img-02 {
            left: -13px;
        }

        .lup-img-03 {
            left: -20px;
        }

        .lup-img-04 {
            left: -17px;
        }

        .lup-img-05 {
        }

        .lup-img-06 {
            left: -20px;
        }

        .lup-img-07 {
            width: 60%;
        }

        .lup-img-08 {
            display: block;
            width: 66%;
            height: auto;
            /* max-width: 262px; */
            object-fit: cover;
        }
    }
}

/* SP: クレンジング・洗顔・スペシャルの商品画像の高さをPC同様に統一 */
@media screen and (max-width: 640px) {
    #cleansing .lup-product,
    #face-wash .lup-product,
    #special .lup-product {
        height: 260px;
    }
    #cleansing .lup-product img,
    #face-wash .lup-product img,
    #special .lup-product img {
        /* width: auto; */
        max-width: 80%;
        /* height: 260px; */
        object-fit: contain;
    }
}

.lup-info {
    display: flex;
    flex-direction: column;

    .mini-note {
        margin: auto;
        font-size: 12px;
        text-align: center;
    }

    .lup-product-note {
        margin-bottom: 7px;
    }

    @media screen and (max-width: 640px) {
        .common-button {
            margin-top: 15px;
            margin-bottom: 15px;
        }
    }
}

.info-910 {
    height: 170px;
    display: flex;
    flex-direction: column;

    @media screen and (max-width: 640px) {
        height: auto;
    }
}

.lup-info-text {
    height: 128px;

    @media screen and (max-width: 640px) {
        height: auto;
    }
}

.lup-info-img-07 {
    display: flex;
    flex-direction: column;
    /* height: 184px; */
    height: 222px;

    @media screen and (max-width: 640px) {
        height: auto;
    }
}

.lup-brand-name {
    font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 31px;
    leading-trim: both;
    text-edge: cap;
    text-align: center;
    letter-spacing: 0.2em;
    color: #535353;

    @media screen and (max-width: 640px) {
    }
}

.lup-title {
    font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    leading-trim: both;
    text-edge: cap;
    text-align: center;
    letter-spacing: 0.2em;
    color: #535353;
    margin-bottom: 15px;

    @media screen and (max-width: 640px) {
        letter-spacing: 0.18em;
        margin-bottom: 10px;
        line-height: 29px;
    }
}

.lup-price {
    font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 30px;
    leading-trim: both;
    text-edge: cap;
    text-align: center;
    letter-spacing: 0.14em;
    color: #535353;

    @media screen and (max-width: 640px) {
    }
}

.lup-product-tag {
    box-sizing: border-box;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0.5px 8px;
    gap: 10px;
    border: 1px solid #535353;
    font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    /* line-height: 19px; */
    leading-trim: both;
    text-edge: cap;
    letter-spacing: 0.14em;
    color: #535353;
    margin: auto;
    margin-top: 5px;
    margin-bottom: 10px;

    @media screen and (max-width: 640px) {
    }
}

.lup-product-note {
    font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 25px;
    leading-trim: both;
    text-edge: cap;
    text-align: center;
    letter-spacing: 0.2em;
    color: #535353;

    .mini-text {
        font-size: 12px;
        position: relative;
        top: -2px;
    }

    .mini-note {
        display: flex;
        justify-content: center;
    }

    @media screen and (max-width: 640px) {
        letter-spacing: 0.15em;

        .mini-text {
            font-size: 10px;
        }
    }
}

.pn-09,
.pn-10 {
    /* height: 102.5px; */
    height: 145px;

    @media screen and (max-width: 640px) {
        height: auto;
    }
}

/* --------------------------------------------------------------- */
/* SECTION 5 */
/* --------------------------------------------------------------- */

.section-5 {
    padding-top: 144px;
    padding-bottom: 30px;

    .inner {
        position: relative;
    }

    .common-section-title {
        letter-spacing: 0.04em;
        color: #66869f;
    }

    @media screen and (max-width: 640px) {
        padding-top: 82px;
        padding-bottom: 76px;
    }
}

.limited-title-small {
    font-family: "Noto Serif JP";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 213%;
    text-align: center;
    letter-spacing: 0.06em;
    color: #535353;

    @media screen and (max-width: 640px) {
        font-size: 16px;
        line-height: 180%;
    }
}

.limited-title-big {
    font-family: "Noto Serif JP";
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 120%;
    text-align: center;
    letter-spacing: 0.44em;
    color: #535353;
    padding-top: 15px;

    & span {
        font-size: 26px;
    }

    @media screen and (max-width: 640px) {
        font-size: 26px;
        line-height: 160%;
        padding-top: 15px;
        padding-bottom: 24px;

        & span {
            font-size: 20px;
        }
    }
}

.release-date-img {
    @media screen and (max-width: 640px) {
        text-align: right;
        /* position: relative; */
        /* right: 0; */
    }
}

.release-date {
    position: absolute;
    top: -80px;
    left: -80px;
    width: 166px;

    @media screen and (max-width: 640px) {
        position: static;
        /* top: 0;
        left: auto;
        right: 20px; */
        width: 100px;
    }
}

.limited-product-container {
    display: flex;
    gap: 45px;
    align-items: center;
    padding-top: 55px;

    @media screen and (max-width: 640px) {
        flex-direction: column;
        margin-top: 10px;
        gap: 15px;
        padding-top: 0;
    }
}

.lp-left {
}

.lp-right {
    display: flex;
    flex-direction: column;

    .common-button {
    }

    @media screen and (max-width: 640px) {
    }
}

.lp-brand-name {
    font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 31px;
    leading-trim: both;
    text-edge: cap;
    text-align: center;
    letter-spacing: 0.2em;
    color: #535353;

    @media screen and (max-width: 640px) {
    }
}

.lp-product-name {
    font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    leading-trim: both;
    text-edge: cap;
    text-align: center;
    letter-spacing: 0.2em;
    color: #535353;
    margin-bottom: 20px;

    @media screen and (max-width: 640px) {
        font-size: 16px;
        margin-bottom: 10px;
        letter-spacing: 0.2rem;
    }
}

.lp-price {
    font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 39px;
    leading-trim: both;
    text-edge: cap;
    text-align: center;
    letter-spacing: 0.14em;
    color: #535353;

    @media screen and (max-width: 640px) {
    }
}

.section-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;

    @media screen and (max-width: 640px) {
        margin-bottom: 20px;
    }
}

.section-divider-title {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 213%;
    letter-spacing: 0.06em;
    color: #535353;

    @media screen and (max-width: 640px) {
    }
}

.section-divider-line {
    flex: 1;
    height: 1px;
    background-color: #a6a6a6;

    @media screen and (max-width: 640px) {
    }
}

.limited-product-content {
    display: flex;
    gap: 150px;

    @media screen and (max-width: 640px) {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
}

.lpc-left {
    & ul {
        margin-top: 35px;

        & li {
            font-family: "Noto Sans JP";
            font-style: normal;
            font-weight: 400;
            font-size: 14px;
            line-height: 180%;
            letter-spacing: 0.1em;
            color: rgba(130, 130, 130, 0.63);
        }
    }

    @media screen and (max-width: 640px) {
        display: contents;

        & ul {
            margin-top: 10px;
            order: 1;
        }
    }
}

.lpc-common-content {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding-bottom: 15px;

    @media screen and (max-width: 640px) {
        gap: 5px;
    }
}

.blue-list {
    margin-top: 12px;

    @media screen and (max-width: 640px) {
        width: 8px;
        margin-top: 12px;
    }
}

.lpc-list {
    display: flex;
    flex-direction: column;

    & p {
        font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 28px;
        leading-trim: both;
        text-edge: cap;
        letter-spacing: 0.14em;
        color: #535353;
    }

    .mini-note {
        font-size: 12px;
    }

    @media screen and (max-width: 640px) {
        width: 100%;
        & p {
            line-height: 25px;
            font-feature-settings: "palt" on;
        }
    }
}

.lpc-list-tag {
    box-sizing: border-box;
    /* display: inline-flex; */
    /* flex-direction: row; */
    /* justify-content: center; */
    /* align-items: center; */
    padding: 2px 8px;
    gap: 10px;
    border: 1px solid #535353;
    font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    /* line-height: 19px; */
    leading-trim: both;
    text-edge: cap;
    letter-spacing: 0.14em;
    color: #535353;
    margin: auto;
    margin-left: 20px;
    margin-bottom: 5px;

    @media screen and (max-width: 640px) {
        display: inline-flex;
        padding: 0.5px 8px;
        margin-left: 0;
        line-height: 19px;
    }
}

#milk-campaign {
    padding-top: 140px;

    @media screen and (max-width: 640px) {
        padding-top: 100px;
    }
}

.milk-campaign {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid #f4fafe;
    box-shadow: 0px 0px 22.4px 4px rgba(184, 209, 220, 0.34);
    border-radius: 255px;
    position: relative;
    padding: 89px 0;
    padding-bottom: 68px;
    /* margin-top: 140px; */

    @media screen and (max-width: 640px) {
        box-sizing: border-box;
        border-radius: 46px;
        /* margin-top: 57px; */
        padding: 77px 0;
        padding-bottom: 45px;
        background-color: rgb(255, 255, 255);
        background-color: rgba(255, 255, 255, 0.9);
        forced-color-adjust: none;
    }
}

.release-date-start {
    position: absolute;
    top: -130px;
    width: 166px;
    left: 45px;

    @media screen and (max-width: 1670px) {
        top: -185px;
    }

    @media screen and (max-width: 640px) {
        width: 100px;
        right: -25px;
        left: unset;
        top: -130px;
    }
}

.milk-campaign-title {
    display: flex;
    padding-bottom: 50px;
    margin: auto;
    width: 473px;

    @media screen and (max-width: 640px) {
        padding-bottom: 25px;
        width: 100%;
    }
}

.mc-title-small {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 213%;
    text-align: center;
    letter-spacing: 0.06em;
    color: #535353;

    @media screen and (max-width: 640px) {
        font-size: 14px;
        line-height: 195%;
        padding-bottom: 14px;
    }
}

.mc-title-big {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 213%;
    text-align: center;
    letter-spacing: 0.06em;
    color: #535353;

    @media screen and (max-width: 640px) {
        font-size: 16px;
        line-height: 157%;
    }
}

.milk-campaign-product {
    display: flex;
    gap: 110px;
    padding-top: 40px;

    @media screen and (max-width: 640px) {
        flex-direction: column;
        gap: 0;
    }
}

.mcp-left {
    display: flex;
    flex-direction: column;
    width: 340px;
    align-items: center;

    & img {
        width: 288px;
    }

    .mini-note {
    }

    @media screen and (max-width: 640px) {
        width: 100%;

        & img {
            width: 220px;
            position: relative;
            left: 15px;
        }

        .mini-note {
            font-size: 12px;
            line-height: 19px;
        }
    }
}

.mcp-tag {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 1px 17px;
    background: #66869f;
    border-radius: 3px;
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 217%;
    text-align: center;
    letter-spacing: 0.08em;
    color: #ffffff;
    margin: auto;
    margin-bottom: 20px;

    @media screen and (max-width: 640px) {
        font-size: 12px;
        margin-bottom: 25px;
        margin-top: 10px;
    }
}

.mcp-left-content {
    font-family: "Noto Serif JP";
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 177%;
    text-align: center;
    letter-spacing: 0.08em;
    color: rgba(0, 0, 0, 0.63);
    margin-bottom: 15px;

    .mini-text {
        font-size: 12px;
        position: relative;
        top: -4px;
    }

    @media screen and (max-width: 640px) {
        font-weight: 500;
        font-size: 16px;
        line-height: 173%;
        letter-spacing: 0.07em;

        .mini-text {
            font-size: 12px;
            position: relative;
            top: -2px;
        }
    }
}

.mcp-list {
    display: flex;
    gap: 1px;
    margin-bottom: 20px;

    & p {
        font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 28px;
        leading-trim: both;
        text-edge: cap;
        letter-spacing: 0.14em;
        color: #535353;

        & span {
            text-decoration: underline;
        }
    }

    .lpc-list-tag {
        display: inline-flex;
        margin-left: 0;
        margin-bottom: 0;
    }

    .mini-note {
        font-size: 12px;
    }

    @media screen and (max-width: 640px) {
        flex-direction: column;

        & p {
            & span {
                font-feature-settings: "palt" on;
            }
        }

        .lpc-list-tag {
            margin-top: 5px;
        }
    }
}

.mcp-right {
    padding-top: 30px;

    .section-divider {
        margin-bottom: 25px;
    }

    @media screen and (max-width: 640px) {
        width: 100%;

        .section-divider {
        }

        .section-divider-title {
            font-size: 16px;
            line-height: 213%;
        }
    }
}

.mcp-right-img {
    padding-bottom: 25px;
    padding-top: 20px;

    @media screen and (max-width: 640px) {
    }
}

.mcp-right-content {
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
    gap: 15px;

    & span {
        font-family: "Noto Sans JP";
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 160%;
        letter-spacing: 0.06em;
        color: #535353;
    }

    @media screen and (max-width: 640px) {
        padding-bottom: 30px;
    }
}

.mcp-info {
    display: flex;
    flex-direction: column;

    & span {
        font-family: "Noto Serif JP";
        font-style: normal;
        font-weight: 600;
        font-size: 17px;
        line-height: 165%;
        letter-spacing: 0.18em;
        background: linear-gradient(90.44deg, #3553a0 2.1%, #9cb1d8 134.88%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
    }

    .mini-note {
        font-size: 12px;
        color: #535353;
    }

    .mini-text {
        font-size: 12px;
        position: relative;
        top: -4px;
    }

    @media screen and (max-width: 640px) {
    }
}

.mcp-btn {
    display: table;
    margin-top: 40px;

    @media screen and (max-width: 640px) {
        margin-top: 25px;
    }
}

.mcp-mini-note {
    display: flex;
    flex-direction: column;
    gap: 10px;

    @media screen and (max-width: 640px) {
        text-align: center;
    }
}

.mcp-mini-list {
    font-size: 12px;
    @media screen and (max-width: 640px) {
        line-height: 180%;
        text-align: center;
        letter-spacing: 0.06em;
    }
}

/* --------------------------------------------------------------- */
/* SECTION 6 */
/* --------------------------------------------------------------- */

.section-6 {
    background: url("../img/concept-bg.png");
    /* background-size: 100% 100%; */
    background-size: auto;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding-top: 340px;
    padding-bottom: 116px;

    .common-section-title {
        font-size: 114px;
        text-align: left;
        padding-bottom: 35px;
    }

    @media screen and (max-width: 1260px) {
        background-size: 100% 100%;
    }

    @media screen and (max-width: 1079px) {
        background-size: 100% 100%;
    }

    @media screen and (max-width: 640px) {
        background: url("../img/concept-bg-sp.png");
        background-size: 100% 100%;
        padding-top: 80px;
        padding-bottom: 63px;

        .common-section-title {
            font-size: 61.89px;
            text-align: center;
            padding-bottom: 20px;
            color: #ffffff;
        }
    }
}

.concept-container {
    width: 545px;

    .mini-note {
        color: rgba(0, 0, 0, 0.63);
        text-shadow: none !important;
    }

    @media screen and (max-width: 640px) {
        width: 100%;
        padding-top: 180%;
    }
}

.concept-toha {
    font-family: "Noto Serif JP";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0.46em;
    color: #535353;
    padding-bottom: 10px;

    @media screen and (max-width: 640px) {
        font-size: 16px;
        line-height: 180%;
        text-align: center;
        letter-spacing: 0.06em;
    }
}

.concept-title {
    font-family: "Noto Serif JP";
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 165%;
    letter-spacing: 0.44em;
    color: #535353;
    padding-bottom: 44px;

    @media screen and (max-width: 640px) {
        font-size: 24px;
        line-height: 160%;
        text-align: center;
        padding-bottom: 45px;
    }
}

.concept-desc {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 231%;
    letter-spacing: 0.08em;
    color: rgba(0, 0, 0, 0.63);
    padding-bottom: 30px;

    .mini-text {
        font-size: 11px;
        position: relative;
        top: -4px;
    }

    @media screen and (max-width: 640px) {
        font-size: 16px;
    }
}

/* --------------------------------------------------------------- */
/* SECTION 7 */
/* --------------------------------------------------------------- */

.section-7 {
    padding-top: 94px;
    padding-bottom: 130px;

    .common-section-title {
        padding-bottom: 60px;
        font-size: 114px;
        /* line-height: 138px; */
        color: #66869f;
        opacity: 0.66;
    }

    @media screen and (max-width: 640px) {
        padding-top: 65px;
        padding-bottom: 73px;

        .common-section-title {
            font-size: 61.89px;
            padding-bottom: 40px;
            font-weight: 300;
            font-size: 61.8947px;
            line-height: 56px;
            opacity: 0.66;
        }
    }
}

.plump-line-container {
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid #f4fafe;
    box-shadow: 0px 0px 22.4px 4px rgba(184, 209, 220, 0.34);
    border-radius: 8px;
    padding: 69px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 75px;

    .mini-note {
        color: rgba(130, 130, 130, 0.63);
    }

    @media screen and (max-width: 640px) {
        padding: 62px 20px;
        padding-bottom: 50px;
        margin-bottom: 58px;
        background: rgba(255, 255, 255, 0.52);
        box-shadow: 0px 0px 22.4px 4px rgba(184, 209, 220, 0.34);

        .mini-note {
            font-size: 13px;
            line-height: 180%;
            text-align: center;
            /* display: none; */
        }
    }
}

.plump-line-eng-title {
    font-family: "Cormorant";
    font-style: normal;
    font-weight: 400;
    font-size: 19.5882px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.03em;
    color: #66869f;

    @media screen and (max-width: 640px) {
        font-size: 17.5882px;
        line-height: 21px;
    }
}

.plump-line-jp-title {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 500;
    font-size: 23px;
    line-height: 231%;
    text-align: center;
    letter-spacing: 0.08em;
    color: rgba(0, 0, 0, 0.63);

    @media screen and (max-width: 640px) {
        font-size: 21px;
        line-height: 231%;
    }
}

.plump-line-img {
    width: 520px;
    padding: 20px 0;

    @media screen and (max-width: 640px) {
        width: 271px;
    }
}

.plump-detail-title {
    font-family: "Noto Serif JP";
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 173%;
    text-align: center;
    letter-spacing: 0.35em;
    color: #535353;
    padding-bottom: 30px;

    @media screen and (max-width: 640px) {
        /* letter-spacing: 0.33em; */
        font-size: 20px;
        letter-spacing: 0.2em;
    }
}

ruby > rt {
    letter-spacing: 0.2em;
    /* @media screen and (max-width: 640px) {
            position: relative;
            top: 2px;
        } */
}

.plump-detail-desc {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 231%;
    text-align: center;
    letter-spacing: 0.08em;
    color: rgba(0, 0, 0, 0.63);
    padding-bottom: 35px;

    .mini-text {
        font-size: 12px;
        position: relative;
        top: -4px;
    }

    @media screen and (max-width: 640px) {
        font-size: 16px;
        padding-bottom: 30px;

        .mini-text {
            font-size: 12px;
            position: relative;
            top: -2px;
        }
    }
}

.detail-intro-container {
    border: 1px solid #535353;
    border-radius: 8px;
    padding: 41.5px;
    display: flex;
    flex-direction: column;
    align-items: center;

    & .common-button {
        margin-bottom: 0;
    }

    @media screen and (max-width: 640px) {
        padding: 35px;
        padding-bottom: 48px;
    }
}

.detail-intro-text {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 213%;
    text-align: center;
    letter-spacing: 0.08em;
    color: rgba(0, 0, 0, 0.63);

    @media screen and (max-width: 640px) {
        font-size: 16px;
    }
}

/* --------------------------------------------------------------- */
/* SECTION 8 */
/* --------------------------------------------------------------- */

.section-8 {
    background-color: #fff;
    padding-top: 90px;

    @media screen and (max-width: 640px) {
        padding-top: 25px;
    }
}

/* --------------------------------------------------------------- */
/* COMMON BOX */
/* --------------------------------------------------------------- */

.common-box.sample {
    margin: 90px auto;
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: calc(100% - 60px);
    max-width: 1300px;
    height: 288px;
    background: #f9f9f9;
    border: 1px solid #d8d8d8;
}
@media screen and (max-width: 640px) {
    .common-box.sample {
        margin: 50px auto;
        padding: 0;
        width: calc(100% - 40px);
        height: auto;
        box-sizing: border-box;
    }
}
.common-box.sample .box-photo {
    margin-right: 70px;
    width: 144px;
}
@media screen and (max-width: 640px) {
    .common-box.sample .box-photo {
        display: none;
        margin: 0 0 15px;
        width: 100%;
        text-align: center;
    }
    .common-box.sample .box-photo img {
        max-width: 140px;
    }
}
.common-box.sample .box-text {
    /* width: calc(100% - 144px - 70px); */
    max-width: 710px;
}
@media screen and (max-width: 640px) {
    .common-box.sample .box-text {
        width: 100%;
    }
}

.common-box.sample .box-text .text-title {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 0.05em;
    line-height: 1.6;
}
@media screen and (max-width: 640px) {
    .common-box.sample .box-text .text-title {
        margin-bottom: 0;
        padding: 11px;
        color: #fff;
        font-size: 16px;
        text-align: center;
        background: #a4a4a4;
    }
    .common-box.sample .box-text .text-detail {
        padding: 25px 28px 32px;
        background: #f9f9f9;
    }
}
.common-box.sample .box-text .text-detail .btn {
    margin-bottom: 20px;
}
.common-box.sample .box-text .text-detail .btn a {
    display: inline-block;
    transition: ease 0.25s opacity;
}
@media (hover: hover) and (pointer: fine) {
    .common-box.sample .box-text .text-detail .btn a:hover {
        opacity: 0.6;
    }
}
@media screen and (max-width: 640px) {
    .common-box.sample .box-text .text-detail .btn {
        text-align: center;
    }
    .common-box.sample .box-text .text-detail .btn a img {
        width: 133px;
    }
}

.common-box.sample .box-text .common-list.asterisk li {
    font-weight: normal;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1.571;
    color: #000;
}
@media screen and (max-width: 640px) {
    .common-box.sample .box-text .common-list.asterisk li {
        font-size: 12px;
        text-align: center;
    }
}

.common-list.asterisk {
}
.common-list.asterisk li {
    position: relative;
    padding-left: 16px;
    font-size: 14px;
    letter-spacing: 0.03em;
    line-height: 1.86;
    color: #717070;
}
.common-list.asterisk li:before {
    content: "※";
    position: absolute;
    left: 0;
    top: 0;
}
@media screen and (max-width: 640px) {
    .common-list.asterisk li:before {
        display: none;
    }
}

/*================================================================
# links
================================================================ */

#links {
    padding-bottom: 118px;
}

@media screen and (max-width: 640px) {
    #links {
        padding-bottom: 67px;
    }
}

#links .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media screen and (max-width: 640px) {
    #links .wrapper {
        flex-direction: column;
        /* padding-right: 20px; */
        /* padding-left: 20px; */
    }
}

#links .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 29px;
    width: 660px;
}

@media screen and (max-width: 640px) {
    #links .item {
        padding-top: 0;
        padding-bottom: 0;
        width: 100%;
    }
}

#links .item:not(:first-child) {
    border-left: solid 1px #b8b8b8;
}

@media screen and (max-width: 640px) {
    #links .item:not(:first-child) {
        margin-top: 43px;
        padding-top: 40px;
        border-top: solid 1px #b8b8b8;
        border-left: none;
    }
}

#links .item .title {
    margin-bottom: 34px;
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.14em;
    color: #000000;
}

@media screen and (max-width: 640px) {
    #links .item .title {
        margin-bottom: 21px;
        font-size: 16px;
    }
}

#links .item a {
    display: flex;
    align-items: center;
    width: 544px;
}

@media screen and (max-width: 640px) {
    #links .item a {
        width: 100%;
    }
}

@media screen and (max-width: 375px) {
    #links .item a {
        flex-direction: column;
        align-items: center;
    }
}

#links .item a .pht {
    margin-right: 26px;
    width: 236px;
}

@media screen and (max-width: 640px) {
    #links .item a .pht {
        margin-right: 20px;
        width: 149px;
    }
}

@media screen and (max-width: 375px) {
    #links .item a .pht {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

#links .item a .text-area .text {
    font-family: "Noto Sans JP";
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.14em;
    color: #000000;
}

@media screen and (max-width: 640px) {
    #links .item a .text-area .text {
        line-height: 23px;
    }
}

#links .item a .text-area .link {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 19px;
    font-family: "Noto Sans JP";
    font-weight: 400;
    font-size: 12px;
    line-height: 24px;
    letter-spacing: 0.14em;
    color: #000000;
}

@media screen and (max-width: 640px) {
    #links .item a .text-area .link {
        margin-top: 14px;
    }
}

#links .item a .text-area .link::after {
    content: "";
    display: block;
    margin-left: 8px;
    width: 6px;
    height: 6px;
    border-top: solid 1px #000;
    border-right: solid 1px #000;
    transform: rotate(45deg);
}

/*================================================================
# banner
================================================================ */

/* fv-cover in view → display none; section 1 in view → display flex */
.banner {
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 10px;
    z-index: 1000;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.banner.banner-visible {
    display: flex;
    animation: banner-fade-in 0.5s ease forwards;
}
@keyframes banner-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@media screen and (max-width: 640px) {
    .banner {
        bottom: 60px;
        padding: 10px 0;
    }
}

.banner-image {
    width: 400px;
    height: auto;
    /* transition: width 0.3s ease; */
    cursor: pointer;

    @media screen and (max-width: 640px) {
        width: 95%;
        display: flex;
        margin: auto;
    }
}

#banner .small-banner-image {
    display: none;
}

.close-btn {
    position: absolute;
    background: transparent;
    border: none;
    padding: 5px 7px;
    font-size: 16px;
    cursor: pointer;
    /* border-radius: 50%; */
    z-index: 100;
    top: 0;
    right: 11px;
    /* background: #fff; */

    @media screen and (max-width: 640px) {
        top: -22px;
        width: 30px;
    }
}

.close-btn:focus {
    outline: none;
}

.small-banner {
    width: auto;
    padding: 5px;
}

.small-banner .banner-image {
    width: 100px;
}

#banner.small-banner .small-banner-image {
    display: block;
}

#banner.small-banner .banner-image:not(.small-banner-image) {
    display: none;
}

.small-banner .close-btn {
    display: none;
}

.banner-link {
    position: relative;

    & img {
        object-fit: contain;
        width: 100%;
    }
}

@media screen and (max-width: 640px) {
    .lup-swiper-root {
        overflow: hidden;
        width: 100%;
        position: relative;
    }

    .lup-swiper-wrapper {
        display: flex;
        height: auto !important;
    }

    .lup-swiper-slide {
        width: 100%;
        flex-shrink: 0;
    }
}

@media screen and (max-width: 640px) {
    .lup-swiper-arrow {
        position: absolute;
        top: 40%;
        right: 3%;
        width: 28.56px;
        height: 55.76px;
        background: url("../img/right-arrow.png") no-repeat center / contain;
        z-index: 10;
        cursor: pointer;
    }

    .lup-swiper-prev {
        left: 0;
        transform: rotate(180deg);
    }

    .lup-swiper-next {
        /* right: 0; */
    }
}

@media screen and (max-width: 640px) {
    .lup-swiper-prev,
    .lup-swiper-next {
        display: none;
    }
}

.swiper-scrollbar {
    bottom: -20px !important;
}

/* --------------------------------------------------------------- */
/* ANIMATION */
/* --------------------------------------------------------------- */

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s ease-out,
        transform 0.8s ease-out;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
    /* animation: fadeUpFix 0.8s ease-out; */
}

/* @keyframes fadeUpFix {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} */

.slide-target {
    transform: translateY(-100px);
    opacity: 0;
    transition:
        transform 0.8s ease-out,
        opacity 0.8s ease-out;

    &.slide-down {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-target-before {
    &::before {
        transform: translateY(-100px);
        opacity: 0;
        transition:
            transform 0.8s ease-out,
            opacity 0.8s ease-out;
    }

    &.slide-down {
        &::before {
            transform: translateY(0);
            opacity: 1;
        }
    }
}
