@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP:wght@400;700&family=Roboto&display=swap');

/* common-css */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

input::placeholder {
    color: #ccc;
}

input::-ms-input-placeholder {
    color: #ccc;
}

input:-ms-input-placeholder {
    color: #ccc;
}

html {
    overflow-x: hidden;
}

body {
    min-width: 1200px;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    line-height: 1.75;
    color: #1D1D1D;
    letter-spacing: .08em;
    font-family: 'Roboto', 'Noto Sans JP', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.mincho {
    font-family: 'Roboto', 'Noto Serif JP', 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, MS明朝, serif;
}

.wrap {
    max-width: 1344px;
    margin: 0 auto;
}

a {
    transition: .4s;
    text-decoration: none;
}

a:hover {
    opacity: .6;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.ps-re {
    position: relative;
    z-index: 0;
}

.ps-ab {
    position: absolute;
}

.link-btn a {
    color: #fff;
    display: block;
    max-width: 336px;
    width: 100%;
    border-radius: 28px;
    font-size: 14px;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 0;
}

.link-btn a::before,
.link-btn a::after {
    content: "";
    border-radius: 28px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .4s;
    z-index: -1;
}

.link-btn a::before {
    background: -moz-linear-gradient(right, #ffc8ba 0%, #e07575 100%);
    background: -webkit-linear-gradient(right, #ffc8ba 0%, #e07575 100%);
    background: linear-gradient(to left, #ffc8ba 0%, #e07575 100%);
}

.link-btn a::after {
    opacity: 0;
    background: -moz-linear-gradient(right, #ffe5de 0%, #d65151 100%);
    background: -webkit-linear-gradient(right, #ffe5de 0%, #d65151 100%);
    background: linear-gradient(to left, #ffe5de 0%, #d65151 100%);
}

.link-btn a:hover {
    opacity: 1;
}

.link-btn a:hover::after {
    opacity: 1;
}

.link-btn a span {
    display: block;
    padding: 16px 28px;
}

.link-btn a span::before {
    content: "";
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 24px;
    pointer-events: none;
    background: url(img/btn-arrow.svg) no-repeat center center / contain;
    width: 15px;
    height: 14px;
}

/* リンクボタン隠しておく */
.hidden {
    visibility: hidden;
}

/* フェードイン */
.fadein {
    opacity: 0.1;
    transform: translate(0, 50px);
    transition: all 1500ms;
}

.fadeinr {
    opacity: 0.1;
    transform: translate(50px, 0);
    transition: all 1500ms;
}

.fadeinb {
    opacity: 0.1;
    transform: translate(0, -50px);
    transition: all 1500ms;
}

.fadeinl {
    opacity: 0.1;
    transform: translate(-50px, 0);
    transition: all 1500ms;
}

.fadeino {
    opacity: 0.1;
    transition: all 1500ms;
}

.ts1 {
    transition-delay: 300ms;
}

.ts2 {
    transition-delay: 600ms;
}

.ts3 {
    transition-delay: 900ms;
}

.ts4 {
    transition-delay: 1200ms;
}

.fadein.scrollin,
.fadeinr.scrollin,
.fadeinb.scrollin,
.fadeinl.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}

.fadeino.scrollin {
    opacity: 1;
}

@supports (-ms-ime-align:auto) {
    .fadein {
        opacity: 1;
        transform: inherit;
        transition: inherit;
    }

    .fadeinr {
        opacity: 1;
        transform: inherit;
        transition: inherit;
    }

    .fadeinb {
        opacity: 1;
        transform: inherit;
        transition: inherit;
    }

    .fadeinl {
        opacity: 1;
        transform: inherit;
        transition: inherit;
    }

    .fadeino {
        opacity: 1;
        transition: inherit;
    }

    .fadein.scrollin,
    .fadeinr.scrollin,
    .fadeinb.scrollin,
    .fadeinl.scrollin {
        opacity: 1;
        transform: inherit;
    }

    .fadeino.scrollin {
        opacity: 1;
    }
}


/* HEADER */
#header {
    padding: 52px 7.448vw 52px 5.104vw;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background: none;
}

#header .menu ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#header .menu ul li:first-child {
    margin-right: 97px;
}

#header .menu ul li img {
    vertical-align: middle;
}


/* FOOTER */
#footer {
    margin-top: 288px;
    padding-top: 72px;
    position: relative;
    z-index: 0;
    background: url(img/footer-bg.png) no-repeat center center / cover;
}

#footer img.ps-ab {
    right: 0;
    top: -90px;
    transform: translateX(-50%);
}

#footer .text-box {
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
    margin-bottom: 32px;
}

#footer .text-box .text-img {
    margin-bottom: 45px;
    text-align: center;
}

#footer .text-box .footer-logo {
    margin-bottom: 18px;
    text-align: center;
}

#footer .text-box .text {
    letter-spacing: 0.12em;
    text-align: center;
}

#footer .text-box .text span {
    letter-spacing: 0.04em;
}

#footer .copyright-text {
    text-align: center;
    padding: 32px 24px 32px 0;
    font-size: 12px;
    letter-spacing: 0.4em;
    font-family: 'Noto Serif JP', 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, MS明朝, serif;
}

#footer .text-box .text br {
    display: block;
}

#footer .text-box .text br.s-up {
    display: none;
}


/* MV */
.mv {
    padding-top: 192px;
    z-index: 0;
    position: relative;
}

.mv::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 90%;
    height: 80%;
    background: url(img/mv-bg.png) no-repeat center center / cover;
}

.mv-text-box {
    position: absolute;
    top: 18vw;
    left: 7.5vw;
}

.mv img.ps-ab {
    width: 13.95%;
    bottom: 3%;
    left: 23%;
    z-index: 1;
}

.mv-text {
    font-size: 1.458vw;
    letter-spacing: 0.2em;
    line-height: 2;
}

.mv-slider-wrap {
    width: 70%;
    margin-left: auto;
}

.mv .scroll {
    position: absolute;
    bottom: 17%;
    left: 4.68vw;
}

.mv .scroll .scroller {
    width: 1px;
    height: 72px;
    position: relative;
    overflow: hidden;
    margin: 16px auto 0;
}

.mv .scroll .scroller span {
    position: absolute;
    left: 0;
    height: 50%;
    width: 100%;
    background-color: #1D1D1D;
    animation: scroll 2s ease infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(200%);
    }
}


/* SECTION 01 */
.sec01 {
    padding: 91px 0 120px;
    position: relative;
    z-index: 0;
}

.sec01::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url(img/sec01-bg.png) no-repeat center center / cover;
    z-index: -1;
}

.sec01 .flex {
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

.sec01 .img {
    position: relative;
}

.sec01 .img img.ps-ab {
    left: 100px;
    bottom: -340px;
}

.sec01 .text-box {
    width: 46.4%;
}

.sec01 .text-box .text.top {
    font-size: 24px;
    line-height: 2;
    letter-spacing: 0.12em;
    margin-bottom: 42px;
}

.sec01 .text-box .text:not(.top) {
    line-height: 2.125;
}

.sec01 .wrap>img.ps-ab {
    bottom: -350px;
    right: 0;
    transform: translateX(360px);
}


/* SECTION 02 */
.sec02 {
    padding-top: 192px;
}

.sec02 .text-img {
    margin-bottom: 33px;
}

.sec02 .flex .box {
    width: 28.572%;
    margin-right: 7.142%;
}

.sec02 .flex .box:nth-of-type(3n) {
    margin-right: 0;
}

.sec02 .flex .box:nth-of-type(n + 4) {
    margin-top: 192px;
}

.sec02 .flex .box .text-box {
    background-color: #fff;
    margin-top: -48px;
    position: relative;
    z-index: 1;
    margin-left: 24px;
    padding-left: 24px;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 527px);
}

.sec02 .flex .box.adjust .text-box {
    height: calc(100% - 308px);
}

.sec02 .flex .box .text-box .item-name-box .vender {
    font-size: 14px;
    letter-spacing: 0.12em;
    margin-bottom: 3px;
    font-family: 'Noto Serif JP', 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, MS明朝, serif;
}

.sec02 .flex .box .text-box .item-name-box .item-name {
    margin-bottom: 11px;
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 1.555;
    font-family: 'Noto Serif JP', 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, MS明朝, serif;
}

.sec02 .flex .box .text-box .item-name-box .price {
    letter-spacing: 0.04em;
    color: #C65A5A;
}

.sec02 .flex .box .text-box .item-name-box .price small {
    font-size: 14px;
    letter-spacing: 0.04em;
}

.sec02 .flex .box .text-box .text {
    margin: 30px 0 32px;
}

.sec02 .flex .box .text-box .link-btn {
    margin-top: auto;
}

@media screen and (min-width: 992px) {
    .sec02 .flex .box:last-child {
        margin-right: 0;
        width: 100%;
    }

    .sec02 .flex .box:last-child .text-box {
        height: auto;
        display: block;
        width: 65.25%;
        padding: 0;
        margin: 0;
        background-color: transparent;
    }

    .sec02 .flex .box:last-child {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}

.sec02 img.ps-ab.n1 {
    top: 800px;
    left: 0;
    transform: translateX(-330px);
}

.sec02 img.ps-ab.n2 {
    bottom: 150px;
    right: 0;
    transform: translateX(385px);
}

@media screen and (max-width: 1400px) {
    .wrap {
        max-width: 1200px;
    }

    /* SECTON 01 */
    .sec01 .wrap>img.ps-ab {
        transform: translateX(130px);
    }

    /* SECTION 02 */
    .sec02 .flex .box .text-box {
        min-height: calc(100% - 464px);
    }

    .sec02 .flex .box.adjust .text-box {
        min-height: calc(100% - 280px);
    }

    .sec02 .flex .box:last-child .text-box {
        min-height: auto;
        width: 61%;
    }

    .sec02 img.ps-ab.n2 {
        transform: translateX(140px);
    }
}

@media screen and (max-width: 991px) {
    body {
        min-width: 320px;
    }

    .wrap {
        padding: 0 20px;
    }

    /* HEADER */
    #header {
        padding: 20px;
    }


    /* FOOTER */
    #footer {
        margin-top: 150px;
    }

    #footer img.ps-ab {
        left: auto;
        right: 0;
        transform: translateX(80px);
    }

    #footer .copyright-text {
        padding: 14px 20px 18px;
    }


    /* MV */
    .mv {
        padding-top: 127px;
        margin-bottom: 42px;
    }

    .mv .scroll {
        display: none;
    }

    .mv-text-box {
        position: relative;
        top: auto;
        left: auto;
        padding-left: 20px;
        margin-bottom: 21px;
    }

    .mv-slider-wrap {
        width: 100%;
        padding-left: 20px;
    }

    .mv-text {
        font-size: 32px;
    }

    .mv::before {
        width: 100%;
    }

    .mv img.ps-ab {
        width: 202px;
        top: 255px;
        left: auto;
        right: -60px;
        bottom: auto;
    }


    /* SECTION 01 */
    .sec01 {
        padding: 0 0 120px;
    }

    .sec01 .text-box {
        width: 100%;
        margin-bottom: 42px;
    }

    .sec01 .img {
        width: 100%;
        text-align: center;
    }

    .sec01 .img img.ps-ab {
        left: 57%;
        transform: translateX(-50%);
        bottom: -210px;
        width: 350px;
    }

    .sec01::before {
        top: auto;
        bottom: 0;
        height: 40%;
        width: 100%;
    }

    .sec01 .wrap>img.ps-ab {
        transform: translateX(50px);
        width: 280px;
    }


    /* SECTION 02 */
    .sec02 img.ps-ab.n2 {
        display: none;
    }

    .sec02 .flex .box {
        width: 48%;
        margin-right: 4%;
    }

    .sec02 .flex .box:nth-of-type(3n) {
        margin-right: 4%;
    }

    .sec02 .flex .box:nth-of-type(4),
    .sec02 .flex .box:nth-of-type(6) {
        margin-right: 4% !important;
    }

    .sec02 .flex .box:nth-of-type(5) {
        margin-right: 0 !important;
    }

    .sec02 .flex .box:nth-of-type(2n) {
        margin-right: 0;
    }

    .sec02 .flex .box:nth-of-type(n + 3) {
        margin-top: 160px;
    }

    .sec02 .flex .box:nth-of-type(3) {
        margin-right: 52%;
    }

    .sec02 .flex .box:last-child {
        width: 48%;
        margin-right: 0;
    }

    .sec02 .flex .box:last-child .text-box {
        width: auto;
    }
}


@media screen and (max-width: 767px) {

    /* HEADER */
    #header {
        display: block;
        text-align: center;
        padding: 29px 0 0;
    }

    #header .header-logo img {
        width: 173px;
    }

    #header .menu {
        display: none;
    }


    /* FOOTER */
    #footer {
        margin-top: 144px;
        background: url(img/footer-bg-sp.png) no-repeat center center / cover;
    }

    #footer img.ps-ab {
        width: 140px;
        top: -40px;
        transform: translateX(30px);
    }

    #footer .text-box {
        max-width: 230px;
    }

    #footer .text-box .text-img {
        margin-bottom: 28px;
    }

    #footer .text-box .text-img img {
        width: 112px;
    }

    #footer .text-box .footer-logo img {
        width: 136px;
    }

    #footer .text-box .text {
        font-size: 14px;
        text-align: left;
    }

    #footer .text-box .text span {
        font-size: 16px;
    }

    #footer .text-box .text br {
        display: block;
    }

    #footer .text-box .text br.s-up {
        display: block;
    }


    /* MV */
    .mv-text {
        font-size: 18px;
    }

    .mv img.ps-ab {
        width: 150px;
        top: 205px;
        right: -45px;
    }

    .mv::before {
        background: url(img/mv-bg-sp.png) no-repeat center center / cover;
    }


    /* SECTION 01 */
    .sec01 {
        padding: 0 0 120px;
    }

    .sec01::before {
        background: url("img/sec01-bg-sp.png") center center / cover no-repeat;
    }

    .sec01 .text-box .text.top {
        font-size: 17px;
        margin-bottom: 22px;
    }

    .sec01 .text-box .text:not(.top) {
        font-size: 14px;
    }

    .sec01 .img img.ps-ab {
        width: 266px;
        bottom: -245px;
    }

    .sec01 .wrap>img.ps-ab {
        width: 230px;
        bottom: -250px;
    }


    /* SECTION 02 */
    .sec02 .text-img img {
        width: 91px;
    }

    .sec02 {
        padding-top: 96px;
    }

    .sec02 .flex .box {
        width: 100% !important;
        margin-right: 0 !important;
        margin-bottom: 64px;
        margin-top: 0 !important;
    }

    .sec02 .flex .box:last-child {
        margin-bottom: 0;
    }

    .sec02 .flex .box .thumb {
        text-align: center;
    }

    .sec02 .flex .box .thumb img {
        width: 247px;
    }

    .sec02 .flex .box .text-box {
        min-height: auto;
        margin-top: 18px;
        margin-left: 0;
        padding: 0;
    }

    .sec02 .flex .box .text-box .text {
        font-size: 13px;
        margin: 19px 0 28px;
    }

    .sec02 .flex .box .text-box .item-name-box .vender {
        font-size: 12px;
    }

    .sec02 .flex .box:nth-of-type(4),
    .sec02 .flex .box:nth-of-type(6) {
        margin-right: 0 !important;
    }

    .sec02 .flex .box .text-box .link-btn {
        text-align: center;
    }
}
