/* --------------------
 Shop
-------------------- */
.shop {
    padding: 0 0 80px;
}

@media (min-width: 768px) {
    .shop {
        padding: 0 0 100px;
    }
}

.overview {
    margin: 0 0 80px;
    padding: 0;
}

@media (min-width: 768px) {
    .overview {
        margin: 0 0 100px;
        padding: 8px 0 0;
    }
}

.overview-container {
    margin: 0 auto;
    max-width: calc(var(--container-width) + var(--c-pad)*2);
    padding: 0 var(--c-pad);
    width: 100%;
}

.overview__content {
    max-width: 1080px;
}

.overview__content p {
    font-size: var(--fs14);
    font-weight: 300;
    letter-spacing: 0.067em;
    line-height: 1.9;
    margin: 0;
}

@media (min-width: 768px) {
    .overview__content p {
        font-size: var(--fs16);
    }
}

@media (min-width: 992px) {
    .overview__content p {
        font-size: var(--fs18);
    }
}

.product {
    margin: 0 0 80px;
}

@media (min-width: 768px) {
    .product {
        margin: 0 0 100px;
    }
}

.product-container {
    margin: 0 auto;
    max-width: calc(var(--container-width) + var(--c-pad)*2);
    padding: 0 var(--c-pad);
    width: 100%;
}

.product__item-wrapper {
    align-items: flex-start;
    display: flex;
    flex-flow: row wrap;
    gap: 30px 24px;
    justify-content: center;  /* 商品が複数になったらflex-start */
    margin: 0 auto;
    max-width: 1000px;
}

@media (min-width: 768px) {
    .product__item-wrapper {
        gap: 60px 40px;
    }
}

@media (min-width: 992px) {
    .product__item-wrapper {
        gap: 60px;
    }
}

@media (min-width: 1240px) {
    .product__item-wrapper {
        gap: 60px 96px;
    }
}

.product__item {
    flex: 0 0 calc(50% - 12px);
}

@media (min-width: 768px) {
    .product__item {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (min-width: 992px) {
    .product__item {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (min-width: 1240px) {
    .product__item {
        flex: 0 0 calc(50% - 48px);
    }
}

.product__item__link {
    color: inherit;
    display: block;
    position: relative;
    text-decoration: none;
    width: 100%;
}

.product__item__link__fig {
    overflow: hidden;
    position: relative;
}

.product__item__link__fig img {
    transition: transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) 0s, opacity 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    width: 100%;
    will-change: transform;
}

.product__item__link__title {
    align-items: center;
    bottom: 10px;
    color: var(--color-white);
    display: flex;
    flex-flow: row nowrap;
    font-size: var(--fs12);
    font-weight: 500;
    justify-content: flex-start;
    left: -12px;
    letter-spacing: 0.1em;
    line-height: 1.4;
    margin: 0;
    max-width: 294px;
    min-height: 30px;
    padding: 4px 10px 4px 12px;
    position: absolute;
    right: 0;
    text-align: left;
    top: auto;
    width: 100%;
    z-index: 1;
}

@media (min-width: 768px) {
    .product__item__link__title {
        font-size: var(--fs16);
        letter-spacing: 0.2em;
        padding: 4px 18px 4px 12px;
        width: calc(100% - 20px);
    }
}

@media (min-width: 1240px) {
    .product__item__link__title {
        bottom: 20px;
        font-size: var(--fs19);
        min-height: 35px;
        padding: 4px 22px 4px 18px;
    }
}

.product__item__link__title:before {
    background-color: var(--color-theme);
    bottom: 0;
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    content: "";
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

@media (min-width: 768px) {
    .product__item__link__title:before {
        -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
    }
}

.product__item__link__title:after {
    background-color: #001522;
    bottom: auto;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    content: "";
    display: block;
    height: 7px;
    left: 0;
    position: absolute;
    right: auto;
    top: -6px;
    width: 12px;
    z-index: 1;
}

.product__item__link__title span {
    display: block;
    padding: 0 16px 0 0;
    position: relative;
    width: 100%;
}

@media (min-width: 768px) {
    .product__item__link__title span {
        padding: 0 21px 0 0;
    }
}

.product__item__link__title span:after {
    background-color: #ffffff;
    bottom: 0;
    content: "";
    display: block;
    height: 12px;
    margin: auto 0;
    -webkit-mask-image: url(../images/icons/icon-black-double-angle-right.svg);
    mask-image: url(../images/icons/icon-black-double-angle-right.svg);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    position: absolute;
    right: 0;
    top: 0;
    width: 12px;
}

@media (min-width: 768px) {
    .product__item__link__title span:after {
        height: 15px;
        width: 15px;
    }
}

.product__item__link:focus .product__item__link__fig img {
    opacity: 0.65;
    transform: scale(1.05);
}

@media (hover: hover) and (pointer: fine) {
    .product__item__link:hover .product__item__link__fig img {
        opacity: 0.65;
        transform: scale(1.05);
    }
}

.flow {
    margin: 0 0 80px;
}

@media (min-width: 768px) {
    .flow {
        margin: 0 0 100px;
    }
}

.flow-container {
    margin: 0 auto;
    max-width: calc(var(--container-width) + var(--c-pad)*2);
    padding: 0 var(--c-pad);
    width: 100%;
}

.flow__item-wrapper {
    align-items: flex-start;
    display: flex;
    flex-flow: row wrap;
    gap: 100px 50px;
    justify-content: flex-start;
    margin: 0 auto;
    max-width: 1000px;
}

@media (min-width: 768px) {
    .flow__item-wrapper {
        flex-wrap: nowrap;
    }
}

@media (min-width: 1240px) {
    .flow__item-wrapper {
        gap: 60px;
    }
}

.flow__item {
    flex: 0 0 100%;
    position: relative;
}

@media (min-width: 768px) {
    .flow__item {
        flex: 0 0 calc(33.33333% - 33.33333px);
    }
}

@media (min-width: 1240px) {
    .flow__item {
        flex: 0 0 calc(33.33333% - 40px);
    }
}

.flow__item:after {
    background-image: url(../images/pages/shop/shop-flow-angle-right.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: -24px;
    content: "";
    display: block;
    height: 52px;
    left: 0;
    margin: auto;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: auto;
    transform: translateY(52px) rotate(90deg);
    width: 34px;
    z-index: 1;
}

@media (min-width: 768px) {
    .flow__item:after {
        display: none;
    }
}

.flow__item__icon {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    margin: 0 0 20px;
    position: relative;
    text-align: center;
}

@media (min-width: 768px) {
    .flow__item__icon {
        height: 96px;
    }
}

.flow__item__icon:after {
    background-image: url(../images/pages/shop/shop-flow-angle-right.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: -9px;
    content: "";
    display: none;
    height: 52px;
    left: auto;
    margin: auto;
    pointer-events: none;
    position: absolute;
    right: -8px;
    top: 0;
    transform: translateX(100%);
    width: 34px;
    z-index: 1;
}

@media (min-width: 768px) {
    .flow__item__icon:after {
        display: block;
    }
}

@media (min-width: 1240px) {
    .flow__item__icon:after {
        right: -13px;
    }
}

.flow__item__title {
    align-items: flex-start;
    border-bottom: 1px solid var(--color-theme);
    display: flex;
    flex-flow: row nowrap;
    font-size: var(--fs18);
    font-weight: 400;
    gap: 12px;
    justify-content: center;
    letter-spacing: 0.1em;
    line-height: 1.2;
    margin: 0 0 10px;
    padding: 0 0 8px;
    text-align: left;
}

@media (min-width: 1240px) {
    .flow__item__title {
        font-size: var(--fs20);
    }
}

.flow__item__title > em {
    color: var(--color-theme);
    display: block;
    flex: 0 0 auto;
    font-size: var(--fs32);
    font-style: normal;
    font-weight: 400;
    margin: 0;
}

@media (min-width: 1240px) {
    .flow__item__title > em {
        font-size: var(--fs40);
    }
}

.flow__item__title > em ._dot {
    color: var(--color-text);
    font-size: var(--fs18);
    font-weight: 400;
}

@media (min-width: 1240px) {
    .flow__item__title > em ._dot {
        font-size: var(--fs20);
    }
}

.flow__item__title > span {
    display: block;
    flex: 0 1 auto;
    padding: 14px 0 0;
}

@media (min-width: 1240px) {
    .flow__item__title > span {
        padding: 20px 0 0;
    }
}

.flow__item__content p {
    font-size: var(--fs14);
    font-weight: 300;
    letter-spacing: 0.067em;
    line-height: 2;
    margin: 0;
}

@media (min-width: 768px) {
    .flow__item__content p {
        font-size: var(--fs16);
    }
}

.flow__item:has(.flow__item__content + .flow__item__action) .flow__item__content {
    margin: 0 0 20px;
}

.flow__item__action a {
    align-items: center;
    background-color: var(--color-white);
    border: 1px solid var(--color-theme);
    border-radius: 30px;
    color: var(--color-theme);
    display: flex;
    flex-flow: row nowrap;
    font-size: var(--fs16);
    font-weight: 500;
    height: 30px;
    justify-content: center;
    letter-spacing: 0.2em;
    line-height: 1.2;
    margin: 0 auto;
    max-width: 260px;
    padding: 0 36px;
    position: relative;
    text-decoration: none;
    transition: background-color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) 0s, color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    width: 100%;
}

@media (min-width: 768px) {
    .flow__item__action a {
        font-size: var(--fs18);
        padding: 0 40px;
    }
}

.flow__item__action a:after {
    background-color: var(--color-theme);
    bottom: 0;
    content: "";
    display: block;
    height: 16px;
    margin: auto 0;
    -webkit-mask-image: url(../images/icons/icon-black-external-link.svg);
    mask-image: url(../images/icons/icon-black-external-link.svg);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    position: absolute;
    right: 16px;
    top: 0;
    transition: background-color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    width: 16px;
}

@media (min-width: 768px) {
    .flow__item__action a:after {
        right: 12px;
    }
}

.flow__item__action a:focus {
    background-color: var(--color-theme);
    color: var(--color-white);
}

.flow__item__action a:focus:after {
    background-color: var(--color-white);
}

@media (hover: hover) and (pointer: fine) {
    .flow__item__action a:hover {
        background-color: var(--color-theme);
        color: var(--color-white);
    }

    .flow__item__action a:hover:after {
        background-color: var(--color-white);
    }
}

.flow__item:last-child:after {
    display: none;
}

.flow__item:last-child .flow__item__icon:after {
    display: none;
}

@media (max-width: 767px) {
    .flow__item--01 img {
        width: 84px;
    }
}

@media (max-width: 767px) {
    .flow__item--02 img {
        width: 87px;
    }
}

@media (max-width: 767px) {
    .flow__item--03 img {
        width: 87px;
    }
}

.faq {
    margin: 0 0 80px;
}

@media (min-width: 768px) {
    .faq {
        margin: 0 0 100px;
    }
}

.faq-container {
    margin: 0 auto;
    max-width: calc(var(--container-width) + var(--c-pad)*2);
    padding: 0 var(--c-pad);
    width: 100%;
}

.faq__item-wrapper {
    margin: 0 auto;
    max-width: 1000px;
    width: 100%;
}

.faq__item__title {
    align-items: center;
    border-bottom: 1px solid #777777;
    cursor: pointer;
    display: flex;
    flex-flow: row nowrap;
    gap: 8px;
    justify-content: flex-start;
    margin: 0;
    padding: 16px 0 16px 8px;
    transition: background-color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}

@media (min-width: 768px) {
    .faq__item__title {
        gap: 16px;
        padding: 24px 0 24px 24px;
    }
}

.faq__item__title__label {
    color: var(--color-theme);
    display: block;
    flex: 0 0 24px;
    font-family: var(--ff-serif);
    font-size: var(--fs28);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 0;
    transform: translateY(-0.15em);
}

@media (min-width: 768px) {
    .faq__item__title__label {
        flex: 0 0 30px;
        font-size: var(--fs34);
    }
}

.faq__item__title__text {
    display: block;
    flex: 1 1 auto;
    font-size: var(--fs14);
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.6;
    margin: 0;
    padding: 0 37px 0 0;
    position: relative;
}

@media (min-width: 768px) {
    .faq__item__title__text {
        font-size: var(--fs16);
        padding: 0 52px 0 0;
    }
}

.faq__item__title__text:after {
    background-image: url(../images/pages/shop/shop-faq-angle-right.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    content: "";
    display: block;
    height: 20px;
    margin: auto 0;
    position: absolute;
    right: 12px;
    top: 0;
    transition: transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    width: 13px;
}

@media (min-width: 768px) {
    .faq__item__title__text:after {
        height: 24px;
        right: 20px;
        width: 16px;
    }
}

.faq__item__title:focus {
    background-color: rgba(var(--color-theme-rgb), 0.075);
}

@media (hover: hover) and (pointer: fine) {
    .faq__item__title:hover {
        background-color: rgba(var(--color-theme-rgb), 0.075);
    }
}

.faq__item__contents {
    align-items: flex-start;
    background-color: var(--color-white);
    border-bottom: 1px solid #777777;
    display: none;
    flex-flow: row nowrap;
    gap: 8px;
    justify-content: flex-start;
    margin: 0;
    padding: 16px var(--c-pad) 16px 8px;
}

@media (min-width: 768px) {
    .faq__item__contents {
        gap: 16px;
        padding: 24px 40px 24px 24px;
    }
}

.faq__item__contents__label {
    display: block;
    flex: 0 0 24px;
    font-family: var(--ff-serif);
    font-size: var(--fs28);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 0;
    transform: translateY(-0.15em);
}

@media (min-width: 768px) {
    .faq__item__contents__label {
        flex: 0 0 30px;
        font-size: var(--fs34);
    }
}

.faq__item__contents__content {
    flex: 1 1 auto;
    max-width: 820px;
}

.faq__item__contents__content p {
    font-size: var(--fs14);
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.6;
    margin: 0 0 2em;
}

@media (min-width: 768px) {
    .faq__item__contents__content p {
        font-size: var(--fs16);
    }
}

.faq__item__contents__content p:last-child {
    margin-bottom: 0;
}

.faq__item.-active .faq__item__title {
    background-color: rgba(var(--color-theme-rgb), 0);
}

.faq__item.-active .faq__item__title__text:after {
    transform: rotate(90deg);
}

.other {
    padding: 80px 0 0;
    position: relative;
}

@media (min-width: 768px) {
    .other {
        padding: 100px 0 0;
    }
}

.other:before {
    border-top: 1px solid var(--color-theme);
    content: "";
    display: block;
    height: 1px;
    left: var(--c-pad);
    margin: 0 auto;
    max-width: var(--container-width);
    position: absolute;
    right: var(--c-pad);
    top: 0;
    width: auto;
}

.other-container {
    margin: 0 auto;
    max-width: calc(var(--container-width) + var(--c-pad)*2);
    padding: 0 var(--c-pad);
    width: 100%;
}

.other__item-wrapper {
    align-items: flex-start;
    display: flex;
    flex-flow: row wrap;
    gap: 60px 40px;
    justify-content: center;
    margin: 0 auto;
    max-width: 1000px;
}

@media (min-width: 768px) {
    .other__item-wrapper {
        flex-wrap: nowrap;
    }
}

.other__item {
    flex: 0 0 100%;
}

@media (min-width: 768px) {
    .other__item {
        flex: 0 1 340px;
    }
}

.other__item__icon {
    margin: 0 0 16px;
    text-align: center;
}

.other__item__icon img {
    width: 68px;
}

@media (min-width: 768px) {
    .other__item__icon img {
        width: 84px;
    }
}