@charset "utf-8";
/*---------------------------------------------------------------------
PC Style
pc.css
-----------------------------------------------------------------------
Copyright 2025 (c) linkpath Allrights Reserved.
Created: linkpath
Coding: Hinako Hayashi
Last Update: 2025.06.12
---------------------------------------------------------------------*/
/*===========================================================
    common
===========================================================*/
/* article */
article:not(.article-view) {
    padding: 7.5em 0;
}

/* section-title */
.section-title {
    letter-spacing: 0.2em;
    line-height: 1.25em;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}
.section-title.center {
    margin: 0 auto;
}
.section-title.add-border {
    padding-bottom: 2.5em;
}
.section-title.add-border::before {
    content: "";
    width: 1px;
    height: 1.5em;
    position: absolute;
    bottom: 0.5em;
    left: 50%;
    transform: translateX(-50%);
}
.section-title.add-border.accent::before {
    background: var(--color-accent);
}
.section-title.add-border.base::before {
    background: var(--color-base);
}
.section-title.add-border::after {
    content: "";
    width: 1px;
    height: 0.5em;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.section-title.add-border.accent::after {
    background: var(--color-accent__transparent);
}
.section-title.add-border.base::after {
    background: var(--color-base__transparent);
}

.title-shop {
    line-height: 1.5em;
    margin: 0 0 auto 0;
}
.title-small {
    line-height: 1.25em;
    margin: 1em 0;
}
.title-en {
    font-weight: 300;
    padding-top: 3em;
    margin: 0.5em 0 auto 0;
    position: relative;
}
.title-en::before {
    content: "";
    width: 1px;
    height: 2em;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.title-en.accent::before {
    background: var(--color-accent);
}
.title-en.base::before {
    background: var(--color-base);
}

.title-img {
    width: 2.25em;
    height: auto;
    position: absolute;
    z-index: -1;
}

/*===========================================================
    font-size
===========================================================*/
.section-title {
    font-size: 375%;
}
.flow-item dt {
    font-size: 300%;
}
.brand-item div h3 {
    font-size: 200%;
}
.info-content h2 {
    font-size: 160%;
}
.article-view__first p,
.article-view__first p span,
.product-price {
    font-size: 150%;
}
.product-name,
.news-title,
.column-slide h3 {
    font-size: 130%;
}
.brand-item div span {
    font-size: 110%;
}
.title-small {
    font-size: 70%;
}
.product-price span,
.info-content h2 span {
    font-size: 60%;
}
.title-shop {
    font-size: 50%;
}
.title-en {
    font-size: 40%;
}

/*===========================================================
    article-view
===========================================================*/
/* article-view__first */
.article-view__first {
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 3em 0;
    padding-top: 6em;
}
.article-view__first h2 {
    height: 40vh;
    height: 40svh;
}
.article-view__first h2 img {
    width: auto;
    height: 100%;
    filter: drop-shadow(2px 2px 2px var(--color-black__transparent));
}
.article-view__first p {
    text-align: center;
    letter-spacing: 0.05em;
    text-indent: 0.05em;
    text-shadow: 2px 2px 2px var(--color-accent__transparent);
}

.article-view__first p span {
    letter-spacing: 0.125em;
    text-indent: 0.125em;
    line-height: 2em;
    display: block;
}

/*===========================================================
    product-section
===========================================================*/
/* section-title */
.product-section .title-img {
    top: 0.5em;
    left: -0.5em;
}

/* product-slider */
.product-slider {
    padding: 0 1em;
    padding-top: 5em;
}
.product-slide {
    display: flex;
    flex-direction: column;
    gap: 0.75em;
    transition: all 0.3s;
}
.product-slide:hover {
    transform: translateY(-5px);
}
.product-img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-name {
    line-height: 1.5em;
    padding-top: 0.5em;
}
.product-variation {
    line-height: 1em;
}
.product-price {
    line-height: 1em;
    display: flex;
    align-items: flex-end;
    gap: 0.25em;
}
.product-price .en {
    line-height: 1em;
}
.product-price .tax {
    border-radius: 100px;
    border: solid 1px var(--color-accent);
    padding: 0.05em 1em;
    padding-top: 0.25em;
}
/* slider-btn */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.slider-btn__prev {
    left: 0;
}
.slider-btn__next {
    right: 0;
}

/* link-btn */
.product-section .link-btn {
    margin-top: 5em;
}

/*===========================================================
    news-section
===========================================================*/
.news-section {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 3em;
    padding: 7.5em 0;
    position: relative;
}

/* news-section__title */
.news-section__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 10em;
    left: 0;
}
.news-section__title p {
    text-align: center;
    line-height: 2em;
    white-space: nowrap;
    padding-top: 3em;
    z-index: 2;
}
/* section-title */
.news-section .title-img {
    left: -1em;
    bottom: -1em;
}

/* news-content */
.news-content {
    max-width: 50em;
    min-width: 30em;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2em;
    padding-right: 3em;
}
.news-item {
    display: flex;
    flex-direction: column;
    border-bottom: solid 1px var(--color-accent);
    padding: 0 2em;
    padding-bottom: 2em;
}
.news-item .show-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news-item.is-active .show-content {
    padding-bottom: 2em;
}
.news-item .show-content__text {
    display: flex;
    flex-direction: column-reverse;
    gap: 0.5em;
}

.news-item .hide-content a {
    margin-top: 2em;
    transition: all 0.3s;
}
.news-item .hide-content a:hover {
    opacity: 0.6;
}

/* link-btn */
.news-section .link-btn {
    position: absolute;
    bottom: 0;
    right: clamp(5%, calc((100% - 1350px) / 2), 9999px);
}

/*===========================================================
    brand-section
===========================================================*/
.brand-section {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 3em;
    position: relative;
}
/* brand-section__title */
.brand-section__title {
    position: sticky;
    top: 20%;
    left: 0;
}
.brand-section__title p {
    text-align: center;
    line-height: 2em;
    white-space: nowrap;
    padding-top: 3em;
}
/* section-title */
.brand-section__title {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.brand-section .section-title {
    padding-top: 1em;
}
.brand-section .title-small {
    margin: 0 0 auto 0;
    margin-top: -1em;
}
.brand-section .title-en {
    margin-top: -1.25em;
}
.brand-section .title-img {
    opacity: 0.5;
}

/* brand-content */
.brand-content {
    max-width: 47em;
    min-width: 27em;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2em;
}
.brand-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    aspect-ratio: 1.91 / 1;
    background-size: cover;
    background-position: center;
    background-color: var(--color-accent__transparent);
    background-blend-mode: multiply;
    padding: 2em;
}
.brand-item:hover {
    opacity: 0.8;
}
.brand-item__sasanishiki { background-image: url(/html/user_data/assets/img/top/brand/img_1.webp);}
.brand-item__hitomebore { background-image: url(/html/user_data/assets/img/top/brand/img_2.webp);}
.brand-item__haenuki { background-image: url(/html/user_data/assets/img/top/brand/img_3.webp);}
.brand-item__koshihikari { background-image: url(/html/user_data/assets/img/top/brand/img_4.webp);}
.brand-item__tsuyahime { background-image: url(/html/user_data/assets/img/top/brand/img_5.webp);}

.brand-item div {
    text-shadow: 2px 2px 2px var(--color-accent__transparent);
    display: flex;
    flex-direction: column-reverse;
    gap: 0.75em;
}
.brand-item div h3 {
    font-weight: 300;
    letter-spacing: 0.1em;
    line-height: 1em;
}
.brand-item div span {
    letter-spacing: 0.1em;
}
.brand-item p {
    text-shadow: 2px 2px 2px var(--color-accent__transparent);
    display: flex;
    align-items: center;
    gap: 2em;
    margin-bottom: -0.5em;
}

/* link-btn */
.brand-section .link-btn {
    margin-top: 3em;
}

/*===========================================================
    flow-section
===========================================================*/
/* section-title */
.flow-section .section-title {
    padding-top: 1em;
}
.flow-section .title-small {
    margin: 0 0 auto 0;
    margin-top: -1em;
}
.flow-section .title-img {
    top: 0;
    right: -1.5em;
}

/* flow-content */
.flow-content {
    max-width: 1080px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    margin: 0 auto;
    margin-top: 5em;
}
.flow-item {
    width: calc(100% / 4 - 3em / 4);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.flow-item dt {
    width: 2em;
    height: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-bottom: -0.5em;
    position: relative;
    z-index: 2;
}
.flow-item dt::before {
    content: "";
    width: 200%;
    height: 1px;
    background: var(--color-accent);
    position: absolute;
    top: 50%;
    right: -200%;
    transform: translateY(-50%);
    z-index: -1;
}
.flow-item:last-of-type dt::before {
    content: none;
}
.flow-item dt span::before,
.flow-item dt span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: -1;
}
.flow-item dt span::before {
    width: 90%;
    height: 90%;
    background: var(--color-accent);
}
.flow-item dt span::after {
    width: 100%;
    height: 100%;
    border: solid 1px var(--color-accent)
}
.flow-item dd {
    text-align: center;
}
.flow-item dd img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
}
.flow-item dd span {
    width: fit-content;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    line-height: 1em;
    display: block;
    border-radius: 100px;
    padding: 0.5em 2em;
    margin: 0 auto;
    margin-top: 1em;
}

/* link-btn */
.flow-section .link-btn {
    margin-top: 5em;
}

/*===========================================================
    column-section
===========================================================*/
.column-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3em;
    padding-bottom: 7.5em;
    position: relative;
}
/* column-section__title */
.column-section__title p {
    text-align: center;
    line-height: 2em;
    white-space: nowrap;
    padding-top: 3em;
}
/* section-title */
.column-section__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: clamp(5%, calc((100% - 1350px) / 2), 9999px);
}
.column-section .section-title {
    padding-top: 1em;
}
.column-section .title-small {
    margin: 0 0 auto 0;
    margin-top: -1em;
}
.column-section .title-en {
    margin-top: -1.25em;
}
.column-section .title-img {
    opacity: 0.5;
}

/* column-slider */
.column-slider {
    max-width: 1080px;
    width: 95%;
    margin: 0;
}
.column-slide {
    position: relative;
}
.column-slide img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.column-slide h3 {
    width: 17em;
    letter-spacing: 0.01em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
    padding: 0.5em 1em;
    position: absolute;
    left: 0;
    bottom: 0;
}
.column-slider .slider-info {
    margin-top: 2em;
}

/* link-btn */
.column-section .link-btn {
    position: absolute;
    bottom: 0;
    right: clamp(5%, calc((100% - 1350px) / 2), 9999px);
}

/*===========================================================
    info-section
===========================================================*/
.info-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 5em;
    padding-top: 7.5em;
}
/* info-content */
.info-content {
    width: calc(50% - 5em);
    display: flex;
    flex-direction: column;
    gap: 2em;
    border-top: solid 1px var(--color-base);
    padding: 0 2em;
    padding-top: 2em;
}
.info-content h2 {
    font-weight: 300;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 2em;
}
.info-content h2 span {
    letter-spacing: 0.05em;
    padding-left: 1.25em;
    position: relative;
}
.info-content h2 span::before {
    content: "";
    width: 1em;
    height: 1px;
    background: var(--color-base);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.info-content ul li a {
    line-height: 2em;
    display: flex;
    align-items: center;
    gap: 1em;
    padding-left: 0.75em;
    position: relative;
}
.info-content ul li a::before {
    content: "";
    width: 0.5em;
    height: 0.5em;
    border-radius: 50%;
    background: var(--color-base);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.info-content p {
    line-height: 2em;
}

/* link-btn */
.info-content .link-btn {
    margin-top: 2em;
}

/*===========================================================
    img-box
===========================================================*/
.img-box {
    height: 40vh;
    height: 40svh;
}