:root {
    --color-bg-base: #f5f5f1;
    --color-text-base: #222;
    --color-gray: #7e7e7e;
    --color-gray-02: #eaebe8;
    --color-gray-03: #eeeeea;
    --color-white: #fff;
    --color-main: #3e4d5c;
    --color-pink: #D66161;
    --color-pink-02: #e87a7a;
    --color-blue: #53687e;
    --color-blue-02: #a9bcd0;
    --color-price-red: #d84b3e;
    --font-base: "Noto Sans JP", serif;
    --font-serif: "Shippori Mincho", serif;
    --padding-inline-base: clamp(16px, 3vw, 40px);
}

body {
    color: var(--color-text-base);
    font-family: var(--font-base);
    letter-spacing: 0.03em;
}

.front_page {
    overflow-x: hidden;
}

.ec-layoutRole {
    background: var(--color-bg-base);
}

.ec-layoutRole .ec-layoutRole__contents {
    max-width: 1240px;
}

.ec-role {
    max-width: none;
    padding-inline: var(--padding-inline-base);
}

.ec-productRole .ec-productRole__price {
    margin-bottom: 2rem;
}

.ec-favoriteRole .ec-favoriteRole__item .ec-closeBtn--circle {
    z-index: 1;
}

/*ボタン*/
.ec-inlineBtn--top,
.ec-blockBtn--action,
.ec-inlineBtn--action {
    background: var(--color-pink);
    border-color: var(--color-pink);
}

.ec-inlineBtn--top:hover,
.ec-inlineBtn--top:active,
.ec-inlineBtn--top:focus,
.ec-blockBtn--action:hover,
.ec-inlineBtn--action:hover {
    background: var(--color-pink-02);
    border-color: var(--color-pink-02);
}

.ec-blockBtn--action:disabled,
.ec-blockBtn--action.disabled {
    background: var(--color-main);
    border-color: var(--color-main);
}

.ec-blockBtn--cancel,
.ec-inlineBtn--cancel {
    background: var(--color-white);
    border-color: currentColor;
    color: var(--color-main);
}

.ec-blockBtn--cancel:hover,
.ec-inlineBtn--cancel:hover,
.ec-blockBtn--cancel:disabled,
.ec-blockBtn--cancel.disabled {
    background: var(--color-blue-02);
    border-color: var(--color-blue-02);
    color: var(--color-main);
}

.ec-guest .ec-guest__actions a,
.ec-totalBox .ec-totalBox__btn a {
    color: var(--color-main);
}

/*カートのバッジ、価格の文字色*/
.ec-productRole .ec-productRole__price,
.ec-cartRole .ec-cartRole__totalAmount,
.ec-required {
    color: var(--color-price-red);
}

.ec-cartNavi .ec-cartNavi__badge {
    background: var(--color-price-red);
}

/*ログインフォームのボックス色、注文ページのラベル色*/
.ec-login,
.ec-guest,
.ec-cartHeader .ec-cartHeader__label,
.ec-rectHeading h2,
.ec-totalBox {
    background: var(--color-gray-03);
}

/*商品ページのリンク文字色*/
a,
.ec-topicpath,
.ec-productRole .ec-productRole__category a,
.ec-link,
.ec-zipInputHelp span {
    color: var(--color-main);
    transition: opacity 0.2s;
}

a:hover,
.ec-topicpath:hover,
.ec-productRole .ec-productRole__category a:hover,
.ec-link:hover {
    color: var(--color-blue);
    opacity: 0.85;
}

/*ドロワー*/
.ec-headerNavSP,
.ec-drawerRoleClose {
    color: var(--color-white);
    background: var(--color-main);
}

.ec-drawerRole {
    background: var(--color-main);
}

.ec-drawerRole .ec-headerSearch,
.ec-drawerRole .ec-headerCategoryArea .ec-headerCategoryArea__heading,
.ec-drawerRole .ec-headerCategoryArea .ec-itemNav__nav li a {
    background: var(--color-bg-base);
    border-color: var(--color-white);
}

.ec-drawerRole .ec-headerLinkArea {
    background: none;
}

.ec-drawerRole .ec-headerLinkArea .ec-headerLink__list,
.ec-drawerRole .ec-headerLinkArea .ec-headerLink__item {
    border-color: var(--color-white);
}

/*ヘッダー*/
.u-header_bottom_margin {
    margin-bottom: clamp(2rem, 6.4vw, 4rem);
}

.ec-headerSearch .ec-headerSearch__category .ec-select.ec-select_search {
    background: var(--color-main);
    border: none;
}

.ec-headerNaviRole {
    flex-direction: column;
    flex-wrap: wrap;
    padding: 0;
    max-width: none;
}

.headerNaviRole__top {
    width: 100%;
    padding: 10px 20px;
    background: var(--color-main);
    color: var(--color-white);
    font-size: 14px;
    line-height: 1.6;
}

.headerNaviRole__text {
    width: 87%;
}
@media only screen and (min-width: 768px) {
    .headerNaviRole__text {
        width: 100%;
        text-align: center;
    }
}

.ec-headerNavSP {
    left: auto;
    right: 20px;
    z-index: 1;
}

.ec-overlayRole {
    z-index: 2;
}

.ec-headerNaviRole__bottom {
    display: flex;
    align-items: center;
    width: 100%;
    padding: clamp(10px, 2.6vw, 26px) var(--padding-inline-base);
}

.ec-headerNaviRole__logo {
    margin: 0;
    margin-right: auto;
}

.ec-headerNaviRole__logo-link {
    display: grid;
    grid-template-columns: max-content;
    align-items: center;
}
@media only screen and (min-width: 1024px) {
    .ec-headerNaviRole__logo-link {
        grid-template-columns: 46px max-content;
        column-gap: 10px;
    }
}

.ec-headerNaviRole__logo span {
    color: var(--color-main);
    font-family: var(--font-serif);
    line-height: 1.6;
}

.ec-headerNaviRole__logomark {
    grid-row: 1 / 3;
    display: none;
}
@media only screen and (min-width: 1024px) {
    .ec-headerNaviRole__logomark {
        display: block;
    }
}

.ec-headerNaviRole__logomark img {
    display: block;
}

.ec-headerNaviRole__logotype-head {
    grid-column: 2;
    font-size: clamp(15px, 2.5vw, 20px);
}

.ec-headerNaviRole__logotype-foot {
    grid-column: 2;
    font-size: clamp(13px, 2vw, 16px);
    margin-left: 0.2em;
    letter-spacing: 0.2em;
}

.ec-headerNav .ec-headerNav__itemIcon {
    margin-right: 0;
    margin-left: clamp(15px, 2.3vw, 20px);
}

.ec-headerNav .ec-headerNav__itemIcon,
.ec-cartNavi__icon {
    color: var(--color-main);
}

@media only screen and (min-width: 768px) {
    .ec-cartNavi {
        min-width: unset;
        height: auto;
        padding: 10px 0 0 20px;
        background: transparent;
        border-radius: unset;
    }
    .ec-cartNavi .ec-cartNavi__badge {
        position: absolute;
        left: 60%;
        top: -10px;
    }
    .ec-cartNaviIsset {
        width: 45vw;
        max-width: 400px;
    }
}

/* トップページ MV */
.ec-sliderRole {
    margin-bottom: 0;
}

.main_visual {
    height: 82vh;
    margin-inline: calc(50% - 50vw);
}

.main_visual .slick-list {
    height: 100%;
}

.main_visual .slick-slide {
    height: 82vh;
}

.main_visual .slick-slide__itemImage {
    height: 88%;
}

.main_visual .slick-slide img {
    height: 100%;
    object-fit: cover;
}

.main_visual .slick-slide__itemText {
    padding: 1rem var(--padding-inline-base);
    color: var(--color-text-base);
    font-family: var(--font-serif);
    line-height: 1.6;
}

.main_visual .slick-slide__itemText--gray {
    margin-right: 0.8em;
    color: var(--color-gray);
    letter-spacing: 0.1em;
}

.main_visual .slick-slide__itemText span {
    margin-left: 0.5em;
    margin-right: 0.8em;
    font-size: 0.8em;
}

.main_visual.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.main_visual .slick-dots {
    bottom: calc((100vh / 844) * 88);
}

.main_visual .slick-dots li button:before {
    width: 8px;
    height: 8px;
}

@media only screen and (min-width: 1200px) {
    .main_visual {
        height: 88vh;
    }
    .main_visual .slick-slide {
        height: 88vh;
    }

    .main_visual .slick-slide__itemImage {
        height: 100%;
    }

    .main_visual .slick-slide__itemText {
        position: absolute;
        top: 80px;
        right: 0;
        text-align: right;
    }

    .main_visual .slick-dots {
        display: flex;
        flex-direction: column;
        width: fit-content;
        height: fit-content;
        top: 50%;
        right: 40px;
        transform: translateY(-50%);
    }
}

/* トップページ セクションタイトル */
.ec-secHeading {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-main);
}

.ec-secHeading .ec-secHeading__en {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
}

.ec-secHeading .ec-secHeading__ja {
    font-size: 1rem;
}

@media only screen and (min-width: 768px) {
    .ec-secHeading {
        flex-direction: column;
        margin-bottom: 40px;
    }
}

/*新着情報*/
.ec-newsRole {
    max-width: 864px;
    margin-inline: auto;
}

.ec-newsRole .ec-newsRole__news {
    border: none;
    background: var(--color-white);
    padding: clamp(1rem, 2vw, 20px);
}

.ec-newsRole .ec-newsRole__newsHeading {
    cursor: auto;
    align-items: center;
    line-height: 2;
}

.ec-newsRole .ec-newsRole__newsDate {
    margin: 0;
    color: var(--color-gray);
    font-size: 1rem;
    font-weight: 500;
}

.ec-newsRole .ec-newsRole__newsTitle {
    margin: 0;
    color: var(--color-text-base);
    font-size: 1rem;
    font-weight: 500;
}

/*アバウトセクション*/
.ec-eyecatchRole {
    gap: clamp(24px, 4vw, 80px);
    padding-top: 80px;
}

.ec-eyecatchRole .ec-eyecatchRole__intro {
    color: var(--color-main);
}

.ec-eyecatchRole .ec-eyecatchRole__introTitle {
    font-family: var(--font-serif);
    font-size: clamp(30px, 4vw, 40px);
    font-weight: 500;
    line-height: 1.6;
}

.ec-eyecatchRole .ec-eyecatchRole__introDescription {
    margin-bottom: clamp(32px, 4vw, 40px);
    font-weight: 300;
}

.ec-eyecatchRole .ec-eyecatchRole__image {
    width: auto;
    margin-inline: calc(50% - 50vw);
    margin-bottom: 0;
}

.ec-eyecatchRole .ec-eyecatchRole__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
}

.ec-eyecatchRole .ec-eyecatchRole__linkImage {
    width: 223px;
}

.ec-eyecatchRole .ec-eyecatchRole__linkText {
    width: 100%;
}

.ec-eyecatchRole .ec-eyecatchRole__linkEnText {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.ec-eyecatchRole .ec-eyecatchRole__linkjaText {
    display: flex;
    gap: 1rem;
    font-size: clamp(14px, 4vw, 1rem);
    line-height: 1.6;
}

.ec-eyecatchRole .ec-eyecatchRole__linkArrow {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 0;
    transition: transform 0.2s;
}

.ec-eyecatchRole .ec-eyecatchRole__linkArrow::after {
    content: "";
    position: absolute;
    right: -10px;
    z-index: -1;
    width: 26px;
    aspect-ratio: 1;
    background: var(--color-gray-02);
    border-radius: 50%;
    transition: opacity 0.2s;
}

.ec-eyecatchRole .ec-eyecatchRole__link:hover .ec-eyecatchRole__linkArrow {
    transform: translateX(0.5rem);
}

.ec-eyecatchRole .ec-eyecatchRole__linkArrow::after {
    opacity: 0;
}

.ec-eyecatchRole .ec-eyecatchRole__link:hover .ec-eyecatchRole__linkArrow::after {
    opacity: 1;
}

@media only screen and (min-width: 768px) {
    .ec-eyecatchRole {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        width: min(93vw, 1580px);
    }

    .ec-eyecatchRole .ec-eyecatchRole__intro {
        padding-right: 0;
    }
    .ec-eyecatchRole .ec-eyecatchRole__image {
        order: 0;
        flex-shrink: 0;
        width: min(45%, 830px);
        margin-inline: auto;
    }

    .ec-eyecatchRole .ec-eyecatchRole__introDescription {
        padding-left: 1.3rem;
    }

    .ec-eyecatchRole .ec-eyecatchRole__link {
        flex-direction: row;
        align-items: flex-end;
        padding-left: 1.3rem;
    }
}

/*商品一覧セクション*/
.ec-newItemRole .ec-newItemRole__list {
    gap: clamp(2rem, 6.4vw, 4rem);
}

.ec-newItemRole .ec-newItemRole__listItem {
    width: 100%;
    margin: 0;
    color: var(--color-text-base);
    font-family: var(--font-serif);
}

.ec-newItemRole .ec-newItemRole__listItem:nth-child(odd) {
    margin: 0;
}

.ec-newItemRole .ec-newItemRole__listItemLink {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 26px;
    transition: background-color 0.2s;
}

.ec-newItemRole .ec-newItemRole__listItem:not(:first-child) .ec-newItemRole__listItemLink {
    color: var(--color-text-base);
}

.ec-newItemRole .ec-newItemRole__listItemImage {
    grid-column: 1 / 3;
    aspect-ratio: 350 / 200;
    border-radius: 4px;
    overflow: hidden;
}

.ec-newItemRole .ec-newItemRole__listItemImage img {
    height: 100%;
    transition: transform 0.2s;
}

.ec-newItemRole .ec-newItemRole__listItemTitle {
    grid-column: 1 / 3;
    margin-top: 0.8em;
    font-size: clamp(1rem, 2.3vw, 18px);
    font-weight: 500;
}

.ec-newItemRole .ec-newItemRole__listItemPrice {
    font-size: 1rem;
}

.ec-newItemRole .ec-newItemRole__listItemText--gray {
    color: var(--color-gray);
    letter-spacing: 0.1em;
}

.ec-newItemRole .ec-newItemRole__listItem span {
    margin-left: 0.5em;
    font-size: 0.8em;
}

.ec-newItemRole__listItemFavorite button {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
}

.ec-newItemRole .ec-newItemRole__listItemLink:hover {
    background: var(--color-gray-03);
    opacity: 1;
    color: var(--color-text-base);
}

.ec-newItemRole .ec-newItemRole__listItemLink:hover .ec-newItemRole__listItemImage img {
    transform: scale(1.02);
}

@media only screen and (min-width: 768px) {
    .ec-newItemRole .ec-newItemRole__list {
        flex-wrap: wrap;
    }

    .ec-newItemRole .ec-newItemRole__listItem:not(:last-of-type) {
        margin-right: 0;
    }
}

@media only screen and (min-width: 1024px) {
    .ec-newItemRole .ec-newItemRole__listItemLink {
        padding: 24px;
    }
}

/* フッター */
.ec-footerRole {
    width: min(100%, 1760px);
    margin-inline: auto;
    padding-inline: var(--padding-inline-base);
    background: transparent;
    border-top: none;
}

.ec-footerRole .ec-footerRole__inner {
    max-width: none;
    margin: 0;
    padding: clamp(10px, 5vw, 50px) 0 5rem;
    border-top: 1px solid var(--color-main);
}

.ec-footerTitle__logoLink {
    display: block;
    width: fit-content;
    margin-inline: auto;
    padding: 12px 0;
}

.ec-footerTitle__logotype-head {
    font-family: var(--font-serif);
    font-size: clamp(20px, 2.4vw, 24px);
}

.ec-footerTitle__logotype-foot {
    margin-left: 0.6em;
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.8vw, 18px);
    letter-spacing: 0.05em;
}

.ec-footerNavi .ec-footerNavi__link a {
    color: var(--color-text-base);
    padding: 12px 0;
    border-bottom: none;
    text-align: left;
    font-size: 1rem;
}

.ec-footerNavi .ec-footerNavi__link img {
    width: fit-content;
    height: 1em;
}

.ec-footerRole__column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: clamp(1rem, 5vw, 50px);
}

.ec-footerRole .ec-sliderRole {
    width: auto;
    margin-inline: calc(50% - 50vw);
    padding-inline: 0;
}

.ec-footerRole__map {
    width: 100%;
    height: 340px;
}

.ec-footerRole__bottom {
    margin-top: 1rem;
}

.ec-footer__shopTitle a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 0;
    font-family: var(--font-serif);
    font-size: 24px;
}

.ec-footerRole .ec-footer__shopTitle img {
    width: 35px;
}

.ec-footer__address {
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 500;
}

.ec-footerTitle__copyright {
    margin-top: 1.5rem;
    text-align: center;
}

@media only screen and (min-width: 768px) {
    .ec-footerNavi {
        display: flex;
        flex-wrap: wrap;
        column-gap: 1.5rem;
        text-align: left;
    }

    .ec-footerTitle__logoLink {
        margin-left: 0;
    }

    .ec-footerNavi .ec-footerNavi__link a {
        margin: 0;
        text-decoration: none;
    }

    .ec-footerNavi .ec-footerNavi__link a:hover {
        text-decoration: underline;
    }
}

@media only screen and (min-width: 1024px) {
    .ec-footerRole__column {
        flex-direction: row;
    }

    .ec-footerRole .ec-sliderRole {
        flex-shrink: 0;
        width: 60%;
        margin-inline: 0;
    }

    .ec-footerRole__map {
        height: auto;
    }

    .ec-footerRole__bottom {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        column-gap: 1rem;
    }

    .ec-footerTitle__copyright {
        margin-top: 0;
        margin-left: auto;
    }
}