@charset "UTF-8";
/*====================================================================================================

　CSS構成

　//絶対に変更しないCSS
　- reset.css           全てのブラウザ固有CSSをリセットするCSS。基本触らないこと。
　- bootstrap.min.css   Bootstrapコンポーネントを利用するためのCSS。基本触らないこと。
　- all.min.css         Font Awesome を利用するためのCSS。基本触らないこと。
　- aos.css             AOSを利用するためのCSS。基本触らないこと。

　//基本的には変更しないCSS
　- base.css            基本の文字設定や、Webフォントの読み込みなど。基本触らなくてもOK。

　//メインで利用しているCSS
　- common.css          ヘッダー、フッター、下層ページのタイトルなど、共通ページレイアウトを記載したCSS
　- stlye.css           各ページ固有のレイアウトを記載したCSS

　//補助的に利用しているCSS
　- module.css          見出しやリスト、テーブルなど、共通利用できるパーツをまとめたCSS
　- utility.css         マージンやパディング、文字サイズや文字色など、補助的に利用できるCSS

====================================================================================================*/



/*/////////////////////////////////////////////////////////////////
  index.html
/////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------
  home-hero
------------------------------------------------------------------*/

/*  home-hero
------------------------------------------------------------------*/
.home-hero{
    position: relative;
    overflow: hidden;
    margin-bottom: 100px;
    z-index: 1;
}
@media screen and (max-width:991px){
    .home-hero{
        margin-bottom: 80px;
    }
}
@media screen and (max-width:767px){
    .home-hero{
        margin-bottom: 60px;
    }
}
/*  home-hero-slider
------------------------------------------------------------------*/
.home-hero-slider{
    position: relative;
    z-index: 1;
}
.home-hero-slider .swiper-slide{
    height: 100vh;
    min-height: 700px;
    background: #fff;
    overflow: hidden;
}
.home-hero-slider .swiper-slide::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .2;
    content: "";
    z-index: 1;
}
.home-hero-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1199px){
    .home-hero-slider .swiper-slide{
        height: calc(100vh - 60px);
        min-height: 600px;
    }
}
/*  home-hero-slider-image
------------------------------------------------------------------*/
.home-hero-slider-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    opacity: 0;
    animation: homeHeroSlide 1s ease-out forwards;
}
@keyframes homeHeroSlide {
    from{
        opacity: 0;
        transform: scale(1.1);
    }
    to{
        opacity: 1;
        transform: scale(1);
    }
}
/*  home-hero-detail
------------------------------------------------------------------*/
.home-hero-detail{
    position: absolute;
    top: max(18vh,120px);
    right: 5vw;
    z-index: 2;
}
@media screen and (max-width:1199px){
    .home-hero-detail{
        top: max(12vh,60px);
    }
}
/*  home-hero-detail-wrapper
------------------------------------------------------------------*/
.home-hero-detail-wrapper{
    display: flex;
    flex-direction: row-reverse;
}
/*  home-hero-catch
------------------------------------------------------------------*/
.home-hero-catch{
    font-family: "ShipporiMincho";
    font-size: max(11vh,80px);
    color: #fff;
    line-height: 1.4;
    white-space: nowrap;
    writing-mode: vertical-rl;
    letter-spacing: 0;
}
/*  home-hero-title
------------------------------------------------------------------*/
.home-hero-title{
    margin-right: .5em;
    font-family: "ShipporiMincho";
    font-size: max(3.6vh,1.5rem);
    color: #fff;
    line-height: 1.4;
    white-space: nowrap;
    writing-mode: vertical-rl;
}
.home-hero-title .block{
    display: block;
    letter-spacing: 0.05em;
}
.home-hero-title .block + .block{
    margin-right: .25em;
}
.home-hero-title .block:nth-of-type(2){
    margin-top: 3em;
}

/*------------------------------------------------------------------
  home-pickup
------------------------------------------------------------------*/

/*  home-pickup
------------------------------------------------------------------*/
.home-pickup{
    position: relative;
    z-index: 2;
}
.home-pickup::after{
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-15%);
    width: 60%;
    max-width: 493px;
    aspect-ratio: 493 / 326;
    background: url(../images/common/treat-cloud01.png) no-repeat center / cover;
    content: "";
    z-index: -1;
}
/*  home-pickup-wrapper
------------------------------------------------------------------*/
.home-pickup-wrapper{
    display: flex;
    column-gap: 60px;
}
@media screen and (max-width:1399px){
    .home-pickup-wrapper{
        column-gap: 40px;
    }
}
@media screen and (max-width:1199px){
    .home-pickup-wrapper{
        column-gap: 30px;
    }
}
@media screen and (max-width:767px){
    .home-pickup-wrapper{
        flex-direction: column;
        align-items: center;
    }
}
/*  home-pickup-detail
------------------------------------------------------------------*/
.home-pickup-detail{
    flex: 1;
}
/*  home-pickup-ranking
------------------------------------------------------------------*/
.home-pickup-ranking{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 40px;
    margin-bottom: 70px;
}
@media screen and (max-width:1599px){
    .home-pickup-ranking{
        column-gap: 30px;
        margin-bottom: 60px;
    }
}
@media screen and (max-width:1399px){
    .home-pickup-ranking{
        column-gap: 20px;
        margin-bottom: 50px;
    }
}
@media screen and (max-width:1199px){
    .home-pickup-ranking{
        column-gap: 12px;
        margin-bottom: 40px;
    }
}
@media screen and (max-width:767px){
    .home-pickup-ranking{
        grid-template-columns: 1fr;
        row-gap: 40px;
        max-width: 450px;
    }
}
@media screen and (max-width:575px){
    
}
/*  home-pickup-ranking-card
------------------------------------------------------------------*/
.home-pickup-ranking-card{
    position: relative;
    --base-letter-spacing: .12em;
    z-index: 1;
}
.home-pickup-ranking-card .num{
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-30%,-30%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    aspect-ratio: 1 / 1;
    padding-bottom: .15em;
    background: var(--accent-color);
    border-radius: 50%;
    font-size: 1.75rem;
    color: #fff;
    line-height: 1;
    letter-spacing: 0;
    z-index: 1;
}
.home-pickup-ranking-card .image{
    aspect-ratio: 3 / 2;
    margin-bottom: 24px;
    overflow: hidden;
}
.home-pickup-ranking-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.home-pickup-ranking-card .caption{
    padding: 0 28px;
    margin-bottom: 8px;
    line-height: 1.2;
    transition: .2s ease-out;
}
.home-pickup-ranking-card .detail{
    display: flex;
    flex-wrap: wrap;
    row-gap: 8px;
    padding: 0 28px;
}
.home-pickup-ranking-card .title{
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.2;
    transition: .2s ease-out;
}
.home-pickup-ranking-card .price{
    margin-left: auto;
    font-size: 1.125rem;
    color: #555;
    line-height: 1.2;
    transition: .2s ease-out;
}
.home-pickup-ranking > li:nth-of-type(2) > .home-pickup-ranking-card .num{
    background: #afafb0;
}
.home-pickup-ranking > li:nth-of-type(3) > .home-pickup-ranking-card .num{
    background: #ac6b24;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-pickup-ranking-card:hover .image img{
        transform: scale(1.1);
        filter: brightness(.5);
    }
    .home-pickup-ranking-card:hover .caption{
        color: var(--primary-bright-color);
    }
    .home-pickup-ranking-card:hover .title{
        color: var(--primary-bright-color);
    }
    .home-pickup-ranking-card:hover .price{
        color: var(--primary-bright-color);
    }
}
@media screen and (max-width:1599px){
    .home-pickup-ranking-card .num{
        width: 52px;
        font-size: 1.5rem;
    }
    .home-pickup-ranking-card .image{
        margin-bottom: 20px;
    }
    .home-pickup-ranking-card .caption{
        padding: 0 12px;
        font-size: .875rem;
    }
    .home-pickup-ranking-card .detail{
        padding: 0 12px;
    }
    .home-pickup-ranking-card .title{
        font-size: 1rem;
    }
    .home-pickup-ranking-card .price{
        font-size: 1rem;
    }
}
@media screen and (max-width:1399px){
    .home-pickup-ranking-card .num{
        width: 44px;
        font-size: 1.25rem;
    }
    .home-pickup-ranking-card .image{
        margin-bottom: 16px;
    }
    .home-pickup-ranking-card .caption{
        padding: 0 4px;
        font-size: .8125rem;
    }
    .home-pickup-ranking-card .detail{
        padding: 0 4px;
    }
    .home-pickup-ranking-card .title{
        font-size: .9125rem;
    }
    .home-pickup-ranking-card .price{
        font-size: .9125rem;
    }
}
@media screen and (max-width:1199px){
    .home-pickup-ranking-card .num{
        width: 32px;
        font-size: 1.125rem;
    }
    .home-pickup-ranking-card .image{
        margin-bottom: 16px;
    }
    .home-pickup-ranking-card .caption{
        padding: 0;
        font-size: .75rem;
    }
    .home-pickup-ranking-card .detail{
        padding: 0;
    }
    .home-pickup-ranking-card .title{
        font-size: .875rem;
    }
    .home-pickup-ranking-card .price{
        font-size: .875rem;
    }
}
@media screen and (max-width:767px){
    .home-pickup-ranking-card .num{
        width: 44px;
        font-size: 1.25rem;
    }
    .home-pickup-ranking-card .image{
        margin-bottom: 16px;
    }
    .home-pickup-ranking-card .caption{
        font-size: .875rem;
    }
    .home-pickup-ranking-card .title{
        font-size: 1rem;
    }
    .home-pickup-ranking-card .price{
        font-size: 1rem;
    }
}

/*------------------------------------------------------------------
  home-special
------------------------------------------------------------------*/

/*  home-special-box
------------------------------------------------------------------*/
.home-special-box{
    position: relative;
    padding: 40px 30px;
    background: var(--primary-color);
    text-align: center;
    z-index: 1;
}
.home-special-box::before{
    position: absolute;
    top: 10px;
    left: 10px;
    transform: rotate(180deg);
    width: 33px;
    aspect-ratio: 1 / 1;
    background: url(../images/common/btn-treat.png) no-repeat center / contain;
    content: "";
    z-index: 1;
}
.home-special-box::after{
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 33px;
    aspect-ratio: 1 / 1;
    background: url(../images/common/btn-treat.png) no-repeat center / contain;
    content: "";
    z-index: 1;
}
@media screen and (max-width:767px){
    .home-special-box{
        padding: 30px 16px;
    }
}
/*  home-special-box-text
------------------------------------------------------------------*/
.home-special-box-text{
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
    --base-letter-spacing: .05em;
}
@media screen and (max-width:767px){
    .home-special-box-text{
        font-size: 1rem;
    }
}

/*------------------------------------------------------------------
  home-gift
------------------------------------------------------------------*/

/*  home-gift
------------------------------------------------------------------*/
.home-gift{
    position: relative;
    padding-top: 200px;
    z-index: 1;
}
.home-gift::before{
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(-40%);
    width: 60%;
    max-width: 746px;
    aspect-ratio: 746 / 347;
    background: url(../images/common/treat-cloud02.png) no-repeat center / cover;
    content: "";
    z-index: -1;
}
.home-gift::after{
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(10%);
    width: 60%;
    max-width: 880px;
    aspect-ratio: 880 / 473;
    background: url(../images/common/treat-cloud03.png) no-repeat center / cover;
    content: "";
    z-index: -1;
}
@media screen and (max-width:1399px){
    .home-gift{
        padding-top: 180px;
    }
}
@media screen and (max-width:1199px){
    .home-gift{
        padding-top: 150px;
    }
}
@media screen and (max-width:991px){
    .home-gift{
        padding-top: 120px;
    }
}
@media screen and (max-width:767px){
    .home-gift{
        padding-top: 100px;
    }
}
@media screen and (max-width:575px){
    .home-gift{
        padding-top: 80px;
    }
}
/*  home-gift-wrapper
------------------------------------------------------------------*/
.home-gift-wrapper{
    display: flex;
    flex-direction: row-reverse;
    column-gap: 60px;
}
@media screen and (max-width:1399px){
    .home-gift-wrapper{
        column-gap: 40px;
    }
}
@media screen and (max-width:1199px){
    .home-gift-wrapper{
        column-gap: 60px;
    }
}
@media screen and (max-width:991px){
    .home-gift-wrapper{
        column-gap: 40px;
    }
}
@media screen and (max-width:767px){
    .home-gift-wrapper{
        flex-direction: column;
        align-items: center;
        row-gap: 30px;
    }
}
/*  home-gift-titlearea
------------------------------------------------------------------*/
.home-gift-titlearea{
    display: flex;
    flex-direction: row-reverse;
    column-gap: 30px;
}
/*  home-gift-text
------------------------------------------------------------------*/
.home-gift-text{
    font-family: "ShipporiMincho";
    writing-mode: vertical-rl;
}
/*  home-gift-list
------------------------------------------------------------------*/
.home-gift-list{
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 80px;
}
/*  home-gift-item
------------------------------------------------------------------*/
.home-gift-item{
    display: flex;
    align-items: flex-start;
    column-gap: 60px;
}
.home-gift-item:nth-of-type(even){
    flex-direction: row-reverse;
}
.home-gift-item .image{
    width: 100%;
    aspect-ratio: 23 / 15;
    overflow: hidden;
}
.home-gift-item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-gift-item .detail{
    flex-shrink: 0;
    max-width: 300px;
}
.home-gift-item .titlearea{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 8px;
    margin-bottom: 40px;
}
.home-gift-item .title{
    font-family: "ShipporiMincho";
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.2;
    --base-letter-spacing: 0;
}
.home-gift-item .caption{
    flex-shrink: 0;
    padding: .5em .75em;
    background: #777777;
    font-family: "ShipporiMincho";
    font-size: .75rem;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    --base-letter-spacing: 0;
}
.home-gift-item .set{
    margin-bottom: 40px;
}
.home-gift-item .set-title{
    width: fit-content;
    padding: .3em .75em;
    margin-bottom: 12px;
    border: 1px solid var(--black-color);
    line-height: 1;
}
.home-gift-item .set-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: .5em;
    line-height: 1.2;
}
@media screen and (max-width:1399px){
    .home-gift-item{
        column-gap: 40px;
    }
}
@media screen and (max-width:1199px){
    .home-gift-item,
    .home-gift-item:nth-of-type(even){
        flex-direction: column;
        row-gap: 30px;
    }
    .home-gift-item .detail{
        max-width: initial;
    }
}
@media screen and (max-width:767px){
    .home-gift-item{
        flex-direction: column;
        row-gap: 20px;
    }
    .home-gift-item .titlearea{
        margin-bottom: 20px;
    }
    .home-gift-item .title{
        font-size: 1.25rem;
    }
    .home-gift-item .set{
        margin-bottom: 20px;
    }
}
@media screen and (max-width:575px){
    .home-gift-item .title{
        font-size: 1.125rem;
    }
}


/*------------------------------------------------------------------
  home-products
------------------------------------------------------------------*/

/*  home-products
------------------------------------------------------------------*/
.home-products{
    position: relative;
    padding: 200px 0;
    z-index: 1;
}
.home-products::after{
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateY(20%);
    width: 80%;
    max-width: 1246px;
    aspect-ratio: 1246 / 362;
    background: url(../images/common/treat-cloud04.png) no-repeat center / cover;
    content: "";
    z-index: -1;
}
@media screen and (max-width:1399px){
    .home-products{
        padding: 150px 0;
    }
}
@media screen and (max-width:1199px){
    .home-products{
        padding: 120px 0;
    }
}
@media screen and (max-width:991px){
    .home-products{
        padding: 100px 0;
    }
}
@media screen and (max-width:767px){
    .home-products{
        padding: 80px 0;
    }
}
@media screen and (max-width:575px){
    .home-products{
        padding: 60px 0;
    }
}
/*  home-products-wrapper
------------------------------------------------------------------*/
.home-products-wrapper{
    display: flex;
    column-gap: 60px;
}
@media screen and (max-width:1399px){
    .home-products-wrapper{
        column-gap: 40px;
    }
}
@media screen and (max-width:1199px){
    .home-products-wrapper{
        column-gap: 30px;
    }
}
@media screen and (max-width:575px){
    .home-products-wrapper{
        flex-direction: column;
        align-items: center;
    }
}
/*  home-products-list
------------------------------------------------------------------*/
.home-products-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
    flex: 1;
}
@media screen and (max-width:1599px){
    .home-products-list{
        gap: 30px;
    }
}
@media screen and (max-width:1399px){
    .home-products-list{
        gap: 20px;
    }
}
@media screen and (max-width:1199px){
    .home-products-list{
        gap: 12px;
    }
}
@media screen and (max-width:991px){
    .home-products-list{
        grid-template-columns: repeat(2,1fr);
        gap: 30px;
    }
}
@media screen and (max-width:575px){
    .home-products-list{
        gap: 12px;
    }
}
/*  home-products-card
------------------------------------------------------------------*/
.home-products-card{
    display: block;
}
.home-products-card .image{
    aspect-ratio: 5 / 4;
    overflow: hidden;
}
.home-products-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease-out;
}
.home-products-card .title{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.5em;
    padding: 0 1em;
    background: var(--primary-color);
    font-size: 1.125rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    transition: .2s ease-out;
    z-index: 1;
}
.home-products-card .title::after{
    position: absolute;
    bottom: 3px;
    right: 3px;
    content: "";
    width: 33px;
    height: 33px;
    content: "";
    background: url(../images/common/btn-treat.png) no-repeat center / contain;
    z-index: 1;
}
@media screen and (max-width:1599px){
    .home-products-card .title{
        font-size: 1rem;
    }
}
@media screen and (max-width:1399px){
    .home-products-card .title{
        font-size: .875rem;
    }
}
@media screen and (max-width:767px){
    .home-products-card .title{
        font-size: .75rem;
    }
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-products-card:hover .image img{
        transform: scale(1.2);
        filter: brightness(.6);
    }
    .home-products-card:hover .title{
        background: var(--primary-bright-color);
    }
}
@media (hover:none) {
    .home-products-card:active .image img{
        transform: scale(1.2);
        filter: brightness(.6);
    }
    .home-products-card:active .title{
        background: var(--primary-bright-color);
    }
}

/*------------------------------------------------------------------
  home-topics
------------------------------------------------------------------*/

/*  home-topics
------------------------------------------------------------------*/
.home-topics{
    position: relative;
    display: grid;
    grid-template-columns: 64% 36%;
    z-index: 2;
}
@media screen and (max-width:1199px){
    .home-topics{
        display: block;
    }
}

/*------------------------------------------------------------------
  home-blog
------------------------------------------------------------------*/

/*  home-blog
------------------------------------------------------------------*/
.home-blog{
    padding: 100px 80px;
    background: #454545;
}
@media screen and (max-width:1599px){
    .home-blog{
        padding: 80px 60px;
    }
}
@media screen and (max-width:1399px){
    .home-blog{
        padding: 80px 40px;
    }
}
@media screen and (max-width:1199px){
    .home-blog{
        padding: 80px 60px;
    }
}
@media screen and (max-width:991px){
    .home-blog{
        padding: 80px 6vw;
    }
}
@media screen and (max-width:767px){
    .home-blog{
        padding: 60px 6vw;
    }
}
/*  home-blog-slider
------------------------------------------------------------------*/
.home-blog-slider{
    position: relative;
    overflow: hidden;
    padding-bottom: 60px;
    z-index: 1;
}
.home-blog-slider .swiper-slide{
    height: auto;
}
.home-blog-slider .next,
.home-blog-slider .prev{
    position: absolute;
    bottom: 0;
    cursor: pointer;
    transition: .2s ease-out;
}
.home-blog-slider .next{
    right: 0;
}
.home-blog-slider .prev{
    left: 0;
}
.home-blog-slider .next.swiper-button-disabled,
.home-blog-slider .prev.swiper-button-disabled{
    filter: brightness(.4);
    pointer-events: none;
}
/*  home-blog-card
------------------------------------------------------------------*/
.home-blog-card{
    display: block;
    height: 100%;
    background: #fff;
}
.home-blog-card .image{
    aspect-ratio: 3 / 2;
    overflow: hidden;
}
.home-blog-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease-out;
}
.home-blog-card .body{
    padding: 24px 20px 30px;
}
.home-blog-card .date{
    margin-bottom: 12px;
    font-size: .875rem;
    color: #555;
    line-height: 1;
}
.home-blog-card .title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-bottom: 16px;
    overflow: hidden;
    font-weight: bold;
    line-height: 1.28;
    transition: .2s ease-out;
}
.home-blog-card .text{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-size: .875rem;
    line-height: 1.28;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-blog-card:hover .image img{
        transform: scale(1.2);
        filter: brightness(.6);
    }
    .home-blog-card:hover .title,
    .home-blog-card:hover .text{
        color: var(--primary-color);
    }
}
@media (hover:none) {
    .home-blog-card:active .image img{
        transform: scale(1.2);
        filter: brightness(.6);
    }
    .home-blog-card:active .title,
    .home-blog-card:active .text{
        color: var(--primary-color);
    }
}
@media screen and (max-width:1599px){
    .home-blog-card .body{
        padding: 20px 16px 24px;
    }
}
@media screen and (max-width:991px){
    .home-blog-card .body{
        padding: 16px 12px 20px;
    }
    .home-blog-card .date{
        margin-bottom: 8px;
        font-size: .75rem;
    }
    .home-blog-card .title{
        margin-bottom: 8px;
    }
    .home-blog-card .text{
        font-size: .75rem;
    }
}

/*------------------------------------------------------------------
  home-news
------------------------------------------------------------------*/

/*  home-news
------------------------------------------------------------------*/
.home-news{
    padding: 100px 80px;
    background: var(--primary-color);
}
@media screen and (max-width:1599px){
    .home-news{
        padding: 80px 60px;
    }
}
@media screen and (max-width:1399px){
    .home-news{
        padding: 80px 40px;
    }
}
@media screen and (max-width:1199px){
    .home-news{
        padding: 80px 60px;
    }
}
@media screen and (max-width:991px){
    .home-news{
        padding: 80px 6vw;
    }
}
@media screen and (max-width:767px){
    .home-news{
        padding: 60px 6vw;
    }
}
/*  home-news-list
------------------------------------------------------------------*/
.home-news-list{
    margin-bottom: 60px;
}
@media screen and (max-width:991px){
    .home-news-list{
        margin-bottom: 40px;
    }
}
@media screen and (max-width:767px){
    .home-news-list{
        margin-bottom: 30px;
    }
}
/*  home-news-item
------------------------------------------------------------------*/
.home-news-item{
    display: block;
    padding: 24px 16px;
    border-bottom: 1px solid #fff;
    transition: .2s ease-out;
}
.home-news-item .detail{
    display: flex;
    align-items: center;
    column-gap: 12px;
    margin-bottom: 16px;
}
.home-news-item .new{
    padding: .25em .5em;
    background: #fff;
    font-family: "ShipporiMincho";
    font-size: .75rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: 0;
}
.home-news-item .date{
    font-size: .875rem;
    color: #fff;
    line-height: 1;
}
.home-news-item .title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #fff;
    line-height: 1.28;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-news-item:hover{
        background: var(--primary-bright-color);
    }
}
@media (hover:none) {
    .home-news-item:active{
        background: var(--primary-bright-color);
    }
}
@media screen and (max-width:1399px){
    .home-news-item {
        padding: 20px 8px;
    }
    .home-news-item .detail{
        column-gap: 8px;
        margin-bottom: 12px;
    }
    .home-news-item .date{
        font-size: .75rem;
    }
    .home-news-item .title{
        font-size: .875rem;
    }
}

/*------------------------------------------------------------------
  home-commitment
------------------------------------------------------------------*/

/*  home-commitment
------------------------------------------------------------------*/
.home-commitment{
    position: relative;
    padding: 200px 0 240px;
    z-index: 1;
}
.home-commitment::before{
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-20%);
    width: 60%;
    max-width: 696px;
    aspect-ratio: 696 / 370;
    background: url(../images/common/treat-cloud05.png) no-repeat center / cover;
    content: "";
    z-index: -1;
}
.home-commitment::after{
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateY(20%);
    width: 70%;
    max-width: 984px;
    aspect-ratio: 984 / 406;
    background: url(../images/common/treat-cloud06.png) no-repeat center / cover;
    content: "";
    z-index: -1;
}
@media screen and (max-width:1399px){
    .home-commitment{
        padding: 150px 0 180px;
    }
}
@media screen and (max-width:1199px){
    .home-commitment{
        padding: 120px 0;
    }
}
@media screen and (max-width:991px){
    .home-commitment{
        padding: 0 0 60px;
    }
}
@media screen and (max-width:767px){
    .home-commitment{
        padding-bottom: 40px;
    }
}
/*  home-commitment-wrapper
------------------------------------------------------------------*/
.home-commitment-wrapper{
    display: flex;
}
@media screen and (max-width:991px){
    .home-commitment-wrapper{
        display: block;
    }
}
/*  home-commitment-image
------------------------------------------------------------------*/
.home-commitment-image{
    position: relative;
    z-index: 1;
}
.home-commitment-image::after{
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background: #9e4a4a;
    content: "";
    z-index: -1;
}
.home-commitment-image .inner{
    height: 100%;
    overflow: hidden;
}
.home-commitment-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:991px){
    .home-commitment-image{
        height: 300px;
        margin-bottom: 40px;
    }
    .home-commitment-image::after{
        display: none;
    }
}
/*  home-commitment-detail
------------------------------------------------------------------*/
.home-commitment-detail{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    width: 890px;
    padding: 40px 90px;
    z-index: 1;
}
@media screen and (max-width:1599px){
    .home-commitment-detail{
        width: 780px;
        padding: 40px 60px;
    }
}
@media screen and (max-width:1399px){
    .home-commitment-detail{
        width: 640px;
        padding: 40px 60px;
    }
}
@media screen and (max-width:1199px){
    .home-commitment-detail{
        width: 610px;
        padding: 40px 50px;
    }
}
@media screen and (max-width:991px){
    .home-commitment-detail{
        width: 100%;
        padding: 0 6vw;
    }
}
/*  home-commitment-detail-image
------------------------------------------------------------------*/
.home-commitment-detail-image{
    position: absolute;
    bottom: -40px;
    right: 5vw;
    z-index: 1;
}
.home-commitment-detail-image::after{
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background: #9e4a4a;
    content: "";
    z-index: -1;
}
@media screen and (max-width:1599px){
    .home-commitment-detail-image{
        right: 3vw;
        width: 180px;
    }
    .home-commitment-detail-image::after{
        top: 12px;
        left: 12px;
    }
}
@media screen and (max-width:1399px){
    .home-commitment-detail-image{
        width: 120px;
    }
    .home-commitment-detail-image::after{
        top: 8px;
        left: 8px;
    }
}
@media screen and (max-width:991px){
    .home-commitment-detail-image{
        display: none;
    }
}

/*/////////////////////////////////////////////////////////////////
  about.html
/////////////////////////////////////////////////////////////////*/

/*  about-map
------------------------------------------------------------------*/
.about-map{
    height: 360px;
    margin-bottom: 30px;
}
.about-map iframe{
    width: 100%;
    height: 100%;
}
@media screen and (max-width:767px){
    .about-map{
        height: auto;
        aspect-ratio: 4 / 3;
    }
}


/*/////////////////////////////////////////////////////////////////
  topics.html
/////////////////////////////////////////////////////////////////*/

/*  topics-category-list
------------------------------------------------------------------*/
.topics-category-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin-bottom: 10px;
}
@media screen and (max-width:767px){
    .topics-category-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .topics-category-list{
        gap: 4px;
    }
}
/*  topics-category-btn
------------------------------------------------------------------*/
.topics-category-btn{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 3.5em;
    padding: 0 1em;
    background: #fff;
    text-align: center;
    font-size: .875rem;
    line-height: 1.2;
    transition: .2s ease-out;
    z-index: 1;
}
.topics-category-btn.active{
    background: var(--primary-color);
    color: #fff;
    pointer-events: none;
}
@media (hover:hover) {
    .topics-category-btn:hover{
        background: var(--accent-color);
        color: #fff;
    }
}
@media screen and (max-width:575px){
    .topics-category-btn{
        font-size: .75rem;
    }
}

/*  topics-container
------------------------------------------------------------------*/
.topics-container{
    max-width: 1000px;
    padding: 0 60px;
    margin: 0 auto;
}
@media screen and (max-width:991px){
    .topics-container{
        padding: 0 6vw;
    }
}
/*  topics-list
------------------------------------------------------------------*/
.topics-list{
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 40px;
}
/*  topics-list-item
------------------------------------------------------------------*/
.topics-list-item{
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
    --letter-spacing: 0;
    line-height: 1;
    transition: .2s ease-out;
}
.topics-list-item .date{
    flex-shrink: 0;
    font-family: var(--en-font);
    color: #555;
}
.topics-list-item .category{
    flex-shrink: 0;
    width: 11em;
    padding: .25em .5em;
    border: 1px solid var(--primary-color);
    font-size: .75rem;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.2;
}
.topics-list-item .title{
    display: -webkit-box;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    line-height: 1;
    transition: .2s ease-out;
}
.topics-list-item .new{
    display: inline-block;
    margin-right: 1em;
    font-family: var(--en-font);
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 0;
}
.topics-list-item .arrow{
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    font-size: 10px;
    color: var(--primary-color);
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .topics-list-item:hover::after{
        width: 100%;
    }
    .topics-list-item:hover .title{
        color: var(--primary-color);
    }
    .topics-list-item:hover .arrow{
        transform: scale(.8);
        background: var(--primary-color);
        color: #fff;
    }
}
@media screen and (max-width:991px){
    .topics-list-item{
        flex-wrap: wrap;
        column-gap: 10px;
        row-gap: 8px;
        padding: 16px 0;
        border-bottom: 1px dashed #b5a3a0;
    }
    .topics-list-item .date{
        font-size: .75rem;
    }
    .topics-list-item .category{
        width: auto;
    }
    .topics-list-item .arrow{
        display: none;
    }
}
@media screen and (max-width:575px){
    .topics-list-item .title{
        -webkit-line-clamp: 2;
        line-height: 1.4;
    }
}
/*  topics-detail
------------------------------------------------------------------*/
.topics-detail{
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.topics-detail .date{
    font-size: .875rem;
}
.topics-detail .category{
    display: inline-block;
    padding: .25em 1em;
    border: 1px solid var(--primary-color);
    font-size: .75rem;
    color: var(--primary-color);
    letter-spacing: 0;
    line-height: 1;
}
/*  topics-slider
------------------------------------------------------------------*/
.topics-slider{
    position: relative;
    margin-bottom: 10px;
    z-index: 1;
}
.topics-slider .swiper-slide{
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #fff;
}
.topics-slider .swiper-slide a{
    display: block;
    height: 100%;
}
.topics-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*  topics-thumb-slider
------------------------------------------------------------------*/
.topics-thumb-slider{
    position: relative;
    margin-bottom: 60px;
    overflow: hidden;
    z-index: 1;
}
.topics-thumb-slider .swiper-wrapper{
    justify-content: center;
}
.topics-thumb-slider .swiper-slide{
    width: 80px;
    aspect-ratio: 1 / 1;
    filter: brightness(0.3);
    cursor: pointer;
}
.topics-thumb-slider .swiper-slide.swiper-slide-thumb-active{
    filter: brightness(1);
}
.topics-thumb-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:991px){
    .topics-thumb-slider{
        margin-bottom: 40px;
    }
}
/*  topics-slider-button
------------------------------------------------------------------*/
.topics-slider-button-prev,
.topics-slider-button-next{
    position: absolute;
    top: 50%;
    width: 36px;
    aspect-ratio: 1 / 1;
    background: #fff;
    border: 1px solid #333;
    border-radius: 50%;
    transform: translateY(-50%);
    color: #333;
    transition: .2s ease-out;
    z-index: 2;
}
.topics-slider-button-prev.swiper-button-disabled,
.topics-slider-button-next.swiper-button-disabled{
    border-color: #ccc;
    color: #ccc;
    pointer-events: none;
}
.topics-slider-button-prev{
    left: -18px;
}
.topics-slider-button-prev::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "\f104";
    font-family: "Font Awesome 6 Free";
    font-size: 0.75rem;
    font-weight: bold;
}
.topics-slider-button-next{
    right: -18px;
}
.topics-slider-button-next::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: 0.75rem;
    font-weight: bold;
}
/* ホバー時動作 */
@media (hover:hover) {
    .topics-slider-button-prev:hover,
    .topics-slider-button-next:hover,
    .topics-slider-button-prev:active,
    .topics-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
    .topics-slider-button-prev:active,
    .topics-slider-button-next:active{
        transform: scale(0.8) translateY(-50%);
    }
}
@media (hover:none) {
    .topics-slider-button-prev:active,
    .topics-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
        transform: scale(0.8) translateY(-50%);
    }
}


/*/////////////////////////////////////////////////////////////////
  products.html
/////////////////////////////////////////////////////////////////*/

/*  products-topics-box
------------------------------------------------------------------*/
.products-topics-box{
    padding: 30px;
    background: var(--primary-color);
    border-radius: 4px;
}
@media screen and (max-width:767px){
    .products-topics-box{
        padding: 24px 12px;
    }
}
/*  products-topics-list
------------------------------------------------------------------*/
.products-topics-list{
    display: grid;
    grid-template-columns: 1fr;
}
/*  products-topics-list-item
------------------------------------------------------------------*/
.products-topics-list-item{
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 16px;
    padding: 12px;
    border-bottom: 1px solid #db9898;
    --letter-spacing: 0;
    line-height: 1;
    transition: .2s ease-out;
}
.products-topics-list-item .date{
    flex-shrink: 0;
    font-family: var(--en-font);
    font-size: .875rem;
    color: #eee;
}
.products-topics-list-item .title{
    width: 100%;
    font-size: .875rem;
    color: #fff;
    line-height: 1.28;
    transition: .2s ease-out;
}
.products-topics-list-item .arrow{
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    aspect-ratio: 1 / 1;
    background: #fff;
    border-radius: 50%;
    font-size: 10px;
    color: var(--primary-color);
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .products-topics-list-item:hover{
        background: var(--primary-bright-color);
    }
    .products-topics-list-item:hover .arrow{
        transform: scale(.8);
    }
}
@media (hover:none) {
    .products-topics-list-item:active{
        background: var(--primary-bright-color);
    }
    .products-topics-list-item:active .arrow{
        transform: scale(.8);
    }
}
@media screen and (max-width:991px){
    .products-topics-list-item{
        flex-wrap: wrap;
        column-gap: 10px;
        row-gap: 8px;
        padding: 12px 8px;
    }
    .products-topics-list-item .date{
        font-size: .75rem;
    }
    .products-topics-list-item .arrow{
        display: none;
    }
}

/*  products-category-list
------------------------------------------------------------------*/
.products-category-list{
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 12px;
    flex: 1;
}
@media screen and (max-width:1199px){
    .products-category-list{
        grid-template-columns: repeat(5,1fr);
    }
}
@media screen and (max-width:991px){
    .products-category-list{
        grid-template-columns: repeat(4,1fr);
    }
}
@media screen and (max-width:767px){
    .products-category-list{
        gap: 8px;
    }
}
@media screen and (max-width:575px){
    .products-category-list{
        grid-template-columns: repeat(2,1fr);
    }
}
/*  products-category-card
------------------------------------------------------------------*/
.products-category-card{
    display: block;
}
.products-category-card .image{
    aspect-ratio: 5 / 4;
    overflow: hidden;
}
.products-category-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease-out;
}
.products-category-card .title{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.5em;
    padding: 0 .5em;
    background: var(--primary-color);
    font-size: .875rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    --base-letter-spacing: 0;
    transition: .2s ease-out;
    z-index: 1;
}
.products-category-card .title::after{
    position: absolute;
    bottom: 3px;
    right: 3px;
    content: "";
    width: 33px;
    height: 33px;
    content: "";
    background: url(../images/common/btn-treat.png) no-repeat center / contain;
    z-index: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .products-category-card:hover .image img{
        transform: scale(1.2);
        filter: brightness(.6);
    }
    .products-category-card:hover .title{
        background: var(--primary-bright-color);
    }
}
@media (hover:none) {
    .products-category-card:active .image img{
        transform: scale(1.2);
        filter: brightness(.6);
    }
    .products-category-card:active .title{
        background: var(--primary-bright-color);
    }
}
@media screen and (max-width:767px){
    .products-category-card .title{
        font-size: .75rem;
    }
}
@media screen and (max-width:575px){
    .products-category-card{
        display: flex;
    }
    .products-category-card .image{
        aspect-ratio: 1 / 1;
        width: 48px;
        flex-shrink: 0;
    }
    .products-category-card .title{
        justify-content: initial;
        width: 100%;
        height: auto;
        text-align: left;
    }
    .products-category-card .title::after{
        width: 24px;
        height: 24px;
    }
}
/*  products-sort
------------------------------------------------------------------*/
.products-sort{
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 10px;
}
/*  products-sort-num
------------------------------------------------------------------*/
.products-sort-num{
    margin-right: auto;
    --base-letter-spacing: 0;
}
@media screen and (max-width:991px){
    .products-sort-num{
        font-size: .875rem;
    }
}
/*  products-sort-title
------------------------------------------------------------------*/
.products-sort-title{
    font-size: .875rem;
    --base-letter-spacing: 0;
}
@media screen and (max-width:991px){
    .products-sort-title{
        font-size: .75rem;
    }
}
/*  products-sort-select
------------------------------------------------------------------*/
.products-sort-select{
    padding: .3em .5em;
    width: 150px;
    font-size: .875rem;
    --base-letter-spacing: 0;
}
@media screen and (max-width:991px){
    .products-sort-select{
        width: 110px;
        font-size: .75rem;
    }
}
/*  products-item-list
------------------------------------------------------------------*/
.products-item-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    column-gap: 30px;
    row-gap: 50px;
    flex: 1;
}
@media screen and (max-width:1399px){
    .products-item-list{
        column-gap: 20px;
        row-gap: 40px;
    }
}
@media screen and (max-width:1199px){
    .products-item-list{
        column-gap: 12px;
        row-gap: 36px;
    }
}
@media screen and (max-width:991px){
    .products-item-list{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:767px){
    .products-item-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .products-item-list{
        
    }
}
/*  products-item-forms
------------------------------------------------------------------*/
.products-item-forms{
    display: flex;
    flex-direction: column;
}
/*  products-item-card
------------------------------------------------------------------*/
.products-item-card{
    display: block;
    margin-bottom: 20px;
}
.products-item-card .image{
    aspect-ratio: 3 / 2;
    overflow: hidden;
    margin-bottom: 12px;
}
.products-item-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease-out;
}
.products-item-card .title{
    margin-bottom: 8px;
    font-family: "ShipporiMincho";
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.28;
    --base-letter-spacing: 0;
    transition: .2s ease-out;
}
.products-item-card .price{
    line-height: 1;
    --base-letter-spacing: 0;
    transition: .2s ease-out;
}
@media screen and (max-width:1399px){
    .products-item-card .title{
        font-size: 1rem;
    }
    .products-item-card .price{
        font-size: .875rem;
    }
}
@media screen and (max-width:575px){
    .products-item-card{
        margin-bottom: 12px;
    }
    .products-item-card .title{
        margin-bottom: 4px;
        font-size: .875rem;
    }
    .products-item-card .price{
        font-size: .75rem;
    }
}
/* ホバー時動作 */
@media (hover:hover) {
    .products-item-card:hover .image img{
        transform: scale(1.2);
        filter: brightness(.6);
    }
    .products-item-card:hover .title{
        color: var(--primary-color);
    }
    .products-item-card:hover .price{
        color: var(--primary-color);
    }
}
@media (hover:none) {
    .products-item-card:active .image img{
        transform: scale(1.2);
        filter: brightness(.6);
    }
    .products-item-card:active .title{
        color: var(--primary-color);
    }
    .products-item-card:active .price{
        color: var(--primary-color);
    }
}
/*  products-item-buynum
------------------------------------------------------------------*/
.products-item-buynum{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 10px;
    padding-bottom: 4px;
    margin-top: auto;
    margin-bottom: 10px;
    border-bottom: 1px dashed #aaa;
}
.products-item-buynum .title{
    flex-shrink: 0;
    font-size: .875rem;
    font-weight: bold;
    line-height: 1;
    white-space: nowrap;
}
.products-item-buynum .num-wrapper{
    display: flex;    
    align-items: center;
    column-gap: 4px;
}
.products-item-buynum .plus-btn,
.products-item-buynum .minus-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #ccc;
    border: 1px solid #eee;
    border-radius: 2px;
    font-size: 12px;
}
.products-item-buynum input{
    width: 50px;
    height: 32px;
    padding: 4px;
    text-align: center;
}
.products-item-buynum input::-webkit-outer-spin-button,
.products-item-buynum input::-webkit-inner-spin-button{
    -webkit-appearance: none;
    -moz-appearance: textfield;
    margin: 0;
}
@media screen and (max-width:991px){
    .products-item-buynum .title{
        font-size: .75rem;
    }
    .products-item-buynum input{
        width: 40px;
        padding: 2px;
    }
}
@media screen and (max-width:575px){
    .products-item-buynum .num-wrapper{
        column-gap: 2px;
    }
    .products-item-buynum .plus-btn,
    .products-item-buynum .minus-btn{
        width: 28px;
        height: 28px;
    }
    .products-item-buynum input{
        width: 32px;
        height: 28px;
    }
}
/*  products-item-cart-btn
------------------------------------------------------------------*/
.products-item-cart-btn{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 3.25em;
    padding: 0 1em;
    background: var(--primary-color);
    font-size: .875rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    transition: .2s ease-out;
    --base-letter-spacing: 0;
    z-index: 1;
}
.products-item-cart-btn img{
    width: 1.75em;
    height: auto;
}
.products-item-cart-btn::after{
    position: absolute;
    bottom: 3px;
    right: 3px;
    content: "";
    width: 33px;
    height: 33px;
    content: "";
    background: url(../images/common/btn-treat.png) no-repeat center / contain;
    z-index: 1;
}
.products-item-cart-btn.disabled{
    background: #999;
    pointer-events: none;
}
.products-item-cart-btn.disabled::after{
    display: none;
}
/* ホバー時動作 */
@media (hover:hover) {
    .products-item-cart-btn:hover{
        background: var(--primary-bright-color);
    }
}
@media (hover:none) {
    .products-item-cart-btn:active{
        background: var(--primary-bright-color);
    }
}
@media screen and (max-width:1399px){
    .products-item-cart-btn{
        font-size: .875rem;
    }
}
@media screen and (max-width:575px){
    .products-item-cart-btn{
        font-size: .75rem;
    }
    .products-item-cart-btn::after{
        width: 24px;
        height: 24px;
    }
}
/*  products-slider
------------------------------------------------------------------*/
.products-slider{
    position: relative;
    margin-bottom: 10px;
    z-index: 1;
}
.products-slider .swiper-slide{
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #fff;
}
.products-slider .swiper-slide a{
    display: block;
    height: 100%;
}
.products-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*  products-thumb-slider
------------------------------------------------------------------*/
.products-thumb-slider{
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.products-thumb-slider .swiper-wrapper{
    justify-content: center;
}
.products-thumb-slider .swiper-slide{
    aspect-ratio: 1 / 1;
    filter: brightness(0.3);
    cursor: pointer;
}
.products-thumb-slider .swiper-slide.swiper-slide-thumb-active{
    filter: brightness(1);
}
.products-thumb-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*  products-slider-button
------------------------------------------------------------------*/
.products-slider-button-prev,
.products-slider-button-next{
    position: absolute;
    top: 50%;
    width: 36px;
    aspect-ratio: 1 / 1;
    background: #fff;
    border: 1px solid #333;
    border-radius: 50%;
    transform: translateY(-50%);
    color: #333;
    transition: .2s ease-out;
    z-index: 2;
}
.products-slider-button-prev.swiper-button-disabled,
.products-slider-button-next.swiper-button-disabled{
    border-color: #ccc;
    color: #ccc;
    pointer-events: none;
}
.products-slider-button-prev{
    left: -18px;
}
.products-slider-button-prev::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "\f104";
    font-family: "Font Awesome 6 Free";
    font-size: 0.75rem;
    font-weight: bold;
}
.products-slider-button-next{
    right: -18px;
}
.products-slider-button-next::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: 0.75rem;
    font-weight: bold;
}
/* ホバー時動作 */
@media (hover:hover) {
    .products-slider-button-prev:hover,
    .products-slider-button-next:hover,
    .products-slider-button-prev:active,
    .products-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
    .products-slider-button-prev:active,
    .products-slider-button-next:active{
        transform: scale(0.8) translateY(-50%);
    }
}
@media (hover:none) {
    .products-slider-button-prev:active,
    .products-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
        transform: scale(0.8) translateY(-50%);
    }
}
/*  products-detail-head
------------------------------------------------------------------*/
.products-detail-head{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 12px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #aaa;
}
/*  products-detail-name
------------------------------------------------------------------*/
.products-detail-name{
    font-family: "ShipporiMincho";
    font-size: 1.875rem;
    font-weight: bold;
    line-height: 1.5;
    --base-letter-spacing: 0;
}
@media screen and (max-width:1399px){
    .products-detail-name{ font-size: 1.625rem;}
}
@media screen and (max-width:991px){
    .products-detail-name{ font-size: 1.5rem;}
}
@media screen and (max-width:767px){
    .products-detail-name{ font-size: 1.375rem;}
}
@media screen and (max-width:575px){
    .products-detail-name{ font-size: 1.25rem;}
}
@media screen and (max-width:374px){
    .products-detail-name{ font-size: 1.125rem;}
}
/*  products-detail-pricie
------------------------------------------------------------------*/
.products-detail-price{
    margin-left: auto;
    font-family: "ShipporiMincho";
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
    --base-letter-spacing: 0;
}
@media screen and (max-width:991px){
    .products-detail-price{
        font-size: 1.375rem;
    }
}
@media screen and (max-width:767px){
    .products-detail-price{
        font-size: 1.25rem;
    }
}
@media screen and (max-width:575px){
    .products-detail-price{
        font-size: 1.125rem;
    }
}
/*  products-detail-forms
------------------------------------------------------------------*/
.products-detail-forms{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 12px;
    margin-bottom: 40px;
}
/*  products-detail-nums
------------------------------------------------------------------*/
.products-detail-nums{
    display: flex;
    align-items: center;
    column-gap: 4px;
}
.products-detail-nums .title{
    letter-spacing: 0;
    line-height: 1;
}
.products-detail-nums .num-wrapper{
    display: flex;    
    align-items: center;
    column-gap: 4px;
}
.products-detail-nums .plus-btn,
.products-detail-nums .minus-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #ccc;
    border: 1px solid #eee;
    border-radius: 2px;
    font-size: 12px;
}
.products-detail-nums input{
    width: 50px;
    height: 32px;
    padding: .5em;
    text-align: center;
    line-height: 1;
}
.products-detail-nums input::-webkit-inner-spin-button,
.products-detail-nums input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
    -moz-appearance:textfield;
}
/*  products-detail-cart
------------------------------------------------------------------*/
.products-detail-cart{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 2.5em;
    background: var(--primary-color);
    font-size: .875rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    transition: .2s ease-out;
    --base-letter-spacing: 0;
    z-index: 1;
}
.products-detail-cart img{
    width: 1.75em;
    height: auto;
}
.products-detail-cart::after{
    position: absolute;
    bottom: 3px;
    right: 3px;
    content: "";
    width: 33px;
    height: 33px;
    content: "";
    background: url(../images/common/btn-treat.png) no-repeat center / contain;
    z-index: 1;
}
@media screen and (max-width:767px){
    .products-detail-cart{
        width: 100%;
    }
}


/*/////////////////////////////////////////////////////////////////
  ranking.html
/////////////////////////////////////////////////////////////////*/

/*  ranking-list
------------------------------------------------------------------*/
.ranking-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 60px;
}
/*  ranking-item
------------------------------------------------------------------*/
.ranking-item{
    display: flex;
    align-items: flex-start;
    column-gap: 40px;
}
.ranking-item .image{
    width: 240px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.ranking-item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ranking-item .detail{
    flex: 1;
}
.ranking-item .title{
    display: flex;
    align-items: center;
    column-gap: .25em;
    margin-bottom: 12px;
    font-family: "ShipporiMincho";
    font-size: 1.5rem;
    font-weight: bold;
    --base-letter-spacing: 0;
    line-height: 1.28;
}
.ranking-item .title .num{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75em;
    aspect-ratio: 1 / 1;
    background: var(--black-color);
    border-radius: 50%;
    font-family: "ZenKakuGothicAntique";
    font-size: .75em;
    color: #fff;
}
.ranking-item:nth-of-type(1) .title .num{
    width: 2.5em;
    background: var(--accent-color);
}
.ranking-item:nth-of-type(2) .title .num{
    width: 2.5em;
    background: #afafb0;
}
.ranking-item:nth-of-type(3) .title .num{
    width: 2.5em;
    background: #ac6b24;
}
@media screen and (max-width:991px){
    .ranking-item{
        column-gap: 30px;
    }
    .ranking-item .image{
        width: 200px;
    }
    .ranking-item .title{
        font-size: 1.25rem;
    }
}
@media screen and (max-width:767px){
    .ranking-item .image{
        width: 150px;
    }
}
@media screen and (max-width:575px){
    .ranking-item{
        display: block;
    }
    .ranking-item .image{
        width: 100%;
        aspect-ratio: 16 / 9;
        margin-bottom: 20px;
    }
}


/*/////////////////////////////////////////////////////////////////
  shop.html
/////////////////////////////////////////////////////////////////*/

/*  shop-category-list
------------------------------------------------------------------*/
.shop-category-list{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 10px;
}
@media screen and (max-width:1199px){
    .shop-category-list{
        grid-template-columns: repeat(4,1fr);
    }
}
@media screen and (max-width:767px){
    .shop-category-list{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:575px){
    .shop-category-list{
        grid-template-columns: repeat(2,1fr);
        gap: 8px;
    }
}
/*  shop-map
------------------------------------------------------------------*/
.shop-map{
    height: 300px;
}
.shop-map iframe{
    width: 100%;
    height: 100%;
}
@media screen and (max-width:767px){
    .shop-map{
        height: auto;
        aspect-ratio: 4 / 3;
    }
}

/*/////////////////////////////////////////////////////////////////
  order.html
/////////////////////////////////////////////////////////////////*/

.order-freedial{
    display: inline-flex;
    align-items: center;
    column-gap: 8px;
    font-family: "ShipporiMincho";
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
    --base-letter-spacing: 0;
}
.order-freedial .icon{
    width: 2em;
}
@media screen and (max-width:767px){
    .order-freedial{
        font-size: 1.5rem;
    }
}

/*  noshi-sample
------------------------------------------------------------------*/
.noshi-sample{
    width: 150px;
    margin: 0 auto;
}

/*/////////////////////////////////////////////////////////////////
  payment.html
/////////////////////////////////////////////////////////////////*/

/*  payment-list
------------------------------------------------------------------*/
.payment-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.payment-list > li{
    height: 50px;
}
.payment-list > li > img{
    width: auto;
    height: 100%;
}
@media screen and (max-width:991px){
    .payment-list > li{
        height: 40px;
    }
}
@media screen and (max-width:575px){
    .payment-list > li{
        height: 32px;
    }
}

/*/////////////////////////////////////////////////////////////////
  shipping.html
/////////////////////////////////////////////////////////////////*/

/*  reito-table
------------------------------------------------------------------*/
.reito-table > tbody > tr > th,
.reito-table > tbody > tr > td{
    padding-bottom: 12px;
}
.reito-table > tbody > tr > th{
    padding-right: 8px;
    white-space: nowrap;
}
/*  reito-list
------------------------------------------------------------------*/
.reito-list{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    line-height: 1;
}
.reito-list li{
    padding: 0.4em 0.75em;
    background: #e0e0e0;
    font-size: .875rem;
}
@media screen and (max-width:991px){
    .reito-list li{
        font-size: .75rem;
    }
}
/*  delivery-table
------------------------------------------------------------------*/
.delivery-table{
    width: 100%;
    margin-bottom: 12px;
}
.delivery-table > thead > tr > th,
.delivery-table > tbody > tr > th,
.delivery-table > tbody > tr > td{
    padding: 1em;
    border: 1px solid #aaa;
    vertical-align: middle;
    line-height: 1.4;
    --base-letter-spacing: 0;
}
.delivery-table > thead > tr > th{
    background: var(--black-color);
    color: #fff;
    text-align: center;
    vertical-align: middle;
}
.delivery-table > tbody > tr > th{
    background: #e0e0e0;
    white-space: nowrap;
    text-align: center;
}
.delivery-table > tbody > tr > td{
    background: #fff;
}
.delivery-table > tbody > tr > td:nth-of-type(2){
    text-align: center;
}
@media screen and (max-width:575px){
    .delivery-table > thead > tr > th,
    .delivery-table > tbody > tr > th,
    .delivery-table > tbody > tr > td{
        padding: .5em 1em;
        font-size: .75rem;
    }
}
/*  postage-table
------------------------------------------------------------------*/
.postage-table{
    width: 100%;
}
.postage-table > thead > tr > th,
.postage-table > tbody > tr > th,
.postage-table > tbody > tr > td{
    padding: 1em;
    border: 1px solid #aaa;
    vertical-align: middle;
    line-height: 1.4;
    --base-letter-spacing: 0;
}
.postage-table > thead > tr > th{
    background: var(--black-color);
    color: #fff;
    text-align: center;
    vertical-align: middle;
}
.postage-table > tbody > tr > th{
    background: #e0e0e0;
    white-space: nowrap;
    text-align: center;
}
.postage-table > tbody > tr > td{
    background: #fff;
}
.postage-table > tbody > tr > td:nth-of-type(2){
    text-align: center;
    white-space: nowrap;
}
@media screen and (max-width:575px){
    .postage-table > thead > tr > th,
    .postage-table > tbody > tr > th,
    .postage-table > tbody > tr > td{
        padding: .5em 1em;
        font-size: .75rem;
    }
}
/*/////////////////////////////////////////////////////////////////
  faq.html
/////////////////////////////////////////////////////////////////*/

/*  faq-area
------------------------------------------------------------------*/
.faq-area{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
}
/*  faq-item
------------------------------------------------------------------*/
.faq-item dt{
    --toggle: "＋";
    position: relative;
    padding: 1em 2.5em;
    background: #fff;
    border: 1px solid #e0e0e0;
    font-weight: bold;
    line-height: 1.7;
    cursor: pointer;
    z-index: 1;
}
.faq-item dt::before{
    position: absolute;
    top: .25em;
    left: .5em;
    content: "Q";
    font-size: 1.5em;
    color: var(--primary-color);
    z-index: 1;
}
.faq-item dt::after{
    position: absolute;
    top: .35em;
    right: .5em;
    content: var(--toggle);
    font-size: 1.5em;
    z-index: 1;
}
.faq-item dd{
    position: relative;
    display: none;
    padding: 1em;
    background: #fff;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    line-height: 1.7;
    z-index: 1;
}

/*/////////////////////////////////////////////////////////////////
  law.html
/////////////////////////////////////////////////////////////////*/

.law-freedial{
    display: inline-flex;
    align-items: center;
    column-gap: 8px;
    font-family: "ShipporiMincho";
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1;
    --base-letter-spacing: 0;
}
.law-freedial .icon{
    width: 2em;
}
/*  law-mail-btn
------------------------------------------------------------------*/
.law-mail-btn{
    display: inline-block;
    padding: .75em 2em;
    background: var(--primary-color);
    font-size: .875rem;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    --base-letter-spacing: 0;
    transition: .2s;
}
.law-mail-btn::before{
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    content: "\f0e0";
}
/* ホバー時動作 */
@media (hover:hover) {
    .law-mail-btn:hover{
        background: var(--primary-bright-color);
    }
}

/*/////////////////////////////////////////////////////////////////
  contact.html
/////////////////////////////////////////////////////////////////*/

/*  contact-tel-box
------------------------------------------------------------------*/
.contact-tel-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 30px 20px;
    background: #fff;
    text-align: center;
}
.contact-tel-box .title{
    margin-bottom: 12px;
    font-family: "ShipporiMincho";
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.4;
    --base-letter-spacing: 0;
}
.contact-tel-box .num{
    margin-bottom: 16px;
    font-family: "ShipporiMincho";
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    --base-letter-spacing: 0;
}
.contact-tel-box .time{
    font-size: 0.875rem;
    line-height: 1.4;
    --base-letter-spacing: 0;
}
@media screen and (max-width:767px){
    .contact-tel-box{
        padding: 24px 16px;
    }
    .contact-tel-box .title{
        margin-bottom: 8px;
        font-size: 1.25rem;
    }
    .contact-tel-box .num{
        font-size: 2rem;
    }
    .contact-tel-box .time{
        font-size: .75rem;
    }
}
@media screen and (max-width:575px){
    .contact-tel-box .title{
        font-size: 1.125rem;
    }
    .contact-tel-box .num{
        margin-bottom: 12px;
        font-size: 1.75rem;
    }
}
@media screen and (max-width:350px){
    .contact-tel-box .title{
        font-size: 1.125rem;
    }
    .contact-tel-box .num{
        font-size: 1.5rem;
    }
}

/*/////////////////////////////////////////////////////////////////
  login.html
/////////////////////////////////////////////////////////////////*/

/*  login-box
------------------------------------------------------------------*/
.login-box{
    height: 100%;
    border: 1px solid #aaa;
    background: #fff;
}
.login-box .title{
    padding: 1em;
    background: var(--black-color);
    font-family: "ShipporiMincho";
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 1.4;
}
.login-box .body{
    padding: 30px 16px;
    text-align: center;
}
@media screen and (max-width:575px){
    .login-box .title{
        font-size: 1rem;
    }
    .login-box .body{
        padding: 20px 12px;
    }
}

/*/////////////////////////////////////////////////////////////////
  mypage.html
/////////////////////////////////////////////////////////////////*/


/*  mypage-titleaera
------------------------------------------------------------------*/
.mypage-titleaera{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #aaa;
    margin-bottom: 40px;
}
@media screen and (max-width:767px){
    .mypage-titleaera{
        margin-bottom: 30px;
    }
}
/*  mypage-name
------------------------------------------------------------------*/
.mypage-name{
    font-family: "ShipporiMincho";
    font-size: 1.875rem;
    font-weight: bold;
    line-height: 1.2;
}
@media screen and (max-width:1399px){
    .mypage-name{ font-size: 1.75rem;}
}
@media screen and (max-width:991px){
    .mypage-name{ font-size: 1.5rem;}
}
@media screen and (max-width:767px){
    .mypage-name{ font-size: 1.25rem;}
}
@media screen and (max-width:575px){
    .mypage-name{ font-size: 1.125rem;}
}
@media screen and (max-width:374px){
    .mypage-name{ font-size: 1rem;}
}
/*  mypage-logout
------------------------------------------------------------------*/
.mypage-logout{
    display: inline-block;
    padding: .75em 1.5em;
    background: var(--black-color);
    border-radius: 2.5em;
    text-align: center;
    font-size: .875rem;
    color: #fff;
    line-height: 1.3;
    --base-letter-spacing: 0;
    transition: .2s;
}
/* ホバー時動作 */
@media (hover:hover) {
    .mypage-logout:hover{
        background: var(--primary-color);
    }
}
@media (hover:none) {
    .mypage-logout:active{
        background: var(--primary-color);
    }
}
@media screen and (max-width:767px){
    .mypage-logout{
        font-size: .75rem;
    }
}
/*  mypage-history-table-wrapper
------------------------------------------------------------------*/
.mypage-history-table-wrapper{
    max-height: 400px;
    margin-right: -10px;
    padding-right: 10px;
    margin-bottom: 30px;
    overflow-y: auto;
}
.mypage-history-table-wrapper::-webkit-scrollbar{
    width: 5px;
}
.mypage-history-table-wrapper::-webkit-scrollbar-track{
    background: #fff;
}
.mypage-history-table-wrapper::-webkit-scrollbar-thumb{
    background: var(--black-color);
}
/*  mypage-history-table
------------------------------------------------------------------*/
.mypage-history-table{
    width: 100%;
    --base-letter-spacing: 0;
}
.mypage-history-table > thead > tr > th,
.mypage-history-table > tbody > tr > td{
    padding: 10px;
    border: 1px solid #aaa;
    line-height: 1.4;
    vertical-align: middle;
    text-align: center;
}
.mypage-history-table > thead > tr > th{
    background: var(--black-color);
    color: #fff;
    text-align: center;
}
.mypage-history-table > tbody > tr > td{
    background: #fff;
}
@media screen and (max-width:575px){
    .mypage-history-table > thead > tr > th,
    .mypage-history-table > tbody > tr > td{
        font-size: .75rem;
    }
}
/*  mypage-profile
------------------------------------------------------------------*/
.mypage-profile{
    width: 100%;
    border-top: 1px dashed #ccc;
}
.mypage-profile th,
.mypage-profile td{
    padding: .5em;
    border-bottom: 1px dashed #ccc;
    line-height: 1.4;
    --base-letter-spacing: 0;
}
.mypage-profile th{
    white-space: nowrap;
}
@media screen and (max-width:575px){
    .mypage-profile th,
    .mypage-profile td{
        font-size: .8125rem;
    }
}

/*  mypage-profile-titleaera
------------------------------------------------------------------*/
.mypage-profile-titleaera{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
@media screen and (max-width:767px){
    .mypage-profile-titleaera{
        margin-bottom: 12px;
    }
}
/*  mypage-profile-edit
------------------------------------------------------------------*/
.mypage-profile-edit{
    display: inline-block;
    padding: .75em 1.5em;
    background: var(--black-color);
    border-radius: 2.5em;
    text-align: center;
    font-size: .875rem;
    color: #fff;
    line-height: 1.3;
    --base-letter-spacing: 0;
    transition: .2s;
}
/* ホバー時動作 */
@media (hover:hover) {
    .mypage-profile-edit:hover{
        background: var(--primary-color);
    }
}
@media (hover:none) {
    .mypage-profile-edit:active{
        background: var(--primary-color);
    }
}
@media screen and (max-width:767px){
    .mypage-profile-edit{
        font-size: .75rem;
    }
}

/*  mypage-buy-history-titleaera
------------------------------------------------------------------*/
.mypage-buy-history-titleaera{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
@media screen and (max-width:767px){
    .mypage-buy-history-titleaera{
        margin-bottom: 20px;
    }
}
/*  mypage-buy-history-receipt
------------------------------------------------------------------*/
.mypage-buy-history-receipt{
    display: inline-block;
    padding: .75em 2em;
    background: var(--primary-color);
    border-radius: 2.5em;
    text-align: center;
    color: #fff;
    line-height: 1.3;
    --base-letter-spacing: 0;
    transition: .2s;
}
.mypage-buy-history-receipt::before{
    display: inline-block;
    margin-right: .5em;
    content: "";
    width: 1em;
    height: 1em;
    background: url(../img/pdf.gif) no-repeat center / contain;
    transition: .2s;
}
/* ホバー時動作 */
@media (hover:hover) {
    .mypage-buy-history-receipt:hover{
        background: var(--primary-bright-color);
    }
}
@media (hover:none) {
    .mypage-buy-history-receipt:active{
        background: var(--primary-bright-color);
    }
}
@media screen and (max-width:767px){
    .mypage-buy-history-receipt{
        padding: .4em 1.25em;
    }
}
/*  mypage-buy-history-detail
------------------------------------------------------------------*/
.mypage-buy-history-detail{
    display: grid;
    grid-template-columns: 120px 1fr 120px 1fr;
    margin-bottom: 30px;
}
.mypage-buy-history-detail dt,
.mypage-buy-history-detail dd{
    padding: .75em;
    --base-letter-spacing: 0;
    line-height: 1.2;
}
.mypage-buy-history-detail dt{
    background: var(--black-color);
    color: #fff;
    text-align: center;
}
.mypage-buy-history-detail dd{
    background: #fff;
}
@media screen and (max-width:767px){
    .mypage-buy-history-detail{
        grid-template-columns: auto 1fr;
    }
    .mypage-buy-history-detail dt,
    .mypage-buy-history-detail dd{
        border-bottom: 1px solid #ccc;
    }
}

/*  mypage-buy-history
------------------------------------------------------------------*/
.mypage-buy-history{
    width: 100%;
    margin-bottom: 20px;
    --base-letter-spacing: 0;
}
.mypage-buy-history > thead > tr > th,
.mypage-buy-history > tbody > tr > td{
    padding: 1em .5em;
    vertical-align: middle;
    border-bottom: 1px solid #aaa;
    line-height: 1.2;
}
.mypage-buy-history > thead > tr > th{
    background: var(--black-color);
    color: #fff;
    text-align: center;
}
.mypage-buy-history .price{
    font-family: "ShipporiMincho";
    text-align: center;
    white-space: nowrap;
}
.mypage-buy-history .num{
    text-align: center;
    white-space: nowrap;
}
@media screen and (max-width:767px){
    .mypage-buy-history{    
        font-size: .75rem;
    }
}
/*  mypage-buy-history-price
------------------------------------------------------------------*/
.mypage-buy-history-price{
    display: grid;
    grid-template-columns: auto 1fr;
    row-gap: 12px;
    max-width: 400px;
    margin-left: auto;
    font-family: "ShipporiMincho";
    line-height: 1.2;
    --base-letter-spacing: 0;
}
.mypage-buy-history-price dt{
    font-weight: normal;
    padding-right: 12px;
}
.mypage-buy-history-price dd{
    text-align: right;
}
.mypage-buy-history-price .discount{
    color: var(--primary-color);
    font-weight: bold;
}
.mypage-buy-history-price .total{
    font-size: 1.5rem;
    font-weight: bold;
}
@media screen and (max-width:991px){
    .mypage-buy-history-price{
        row-gap: 8px;
    }
    .mypage-buy-history-price .total{
        font-size: 1.125rem;
    }
}

/*  mypage-shipping
------------------------------------------------------------------*/
.mypage-shipping{
    width: 100%;
}
.mypage-shipping > thead > tr > th,
.mypage-shipping > tbody > tr > td{
    padding: .5em;
    border: 1px solid #ccc;
    line-height: 1.4;
    vertical-align: middle;
    --base-letter-spacing: 0;
}
.mypage-shipping > thead > tr > th{
    background: var(--black-color);
    color: #fff;
    text-align: center;
}
.mypage-shipping > tbody > tr > td{
    background: #fff;
}
.mypage-shipping > tbody > tr > td:nth-of-type(1),
.mypage-shipping > tbody > tr > td:nth-of-type(3),
.mypage-shipping > tbody > tr > td:nth-of-type(4){
    text-align: center;
}
.mypage-shipping > tbody > tr > td:nth-of-type(3),
.mypage-shipping > tbody > tr > td:nth-of-type(4){
    white-space: nowrap;
}
@media screen and (max-width:575px){
    .mypage-shipping > thead > tr > th,
    .mypage-shipping > tbody > tr > td{
        font-size: .75rem;
    }
}

/*  mypage-shipping-titleaera
------------------------------------------------------------------*/
.mypage-shipping-titleaera{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
@media screen and (max-width:767px){
    .mypage-shipping-titleaera{
        margin-bottom: 12px;
    }
}
/*  mypage-shipping-edit
------------------------------------------------------------------*/
.mypage-shipping-edit{
    display: inline-block;
    padding: .75em 1.5em;
    background: var(--primary-color);
    border-radius: 2.5em;
    text-align: center;
    font-size: .875rem;
    color: #fff;
    line-height: 1.3;
    --base-letter-spacing: 0;
    transition: .2s;
}
/* ホバー時動作 */
@media (hover:hover) {
    .mypage-shipping-edit:hover{
        background: var(--primary-bright-color);
    }
}
@media (hover:none) {
    .mypage-shipping-edit:active{
        background: var(--primary-bright-color);
    }
}
@media screen and (max-width:767px){
    .mypage-shipping-edit{
        font-size: .75rem;
    }
}
/*  mypage-point-caption
------------------------------------------------------------------*/
.mypage-point-caption{
    margin-bottom: 10px;
    line-height: 1.5;
    letter-spacing: 0;
}
.mypage-point-caption .limit{
    font-weight: bold;
    color: #ff0000;
}
/*  mypage-point-table
------------------------------------------------------------------*/
.mypage-point-table{
    width: 100%;
    margin-bottom: 30px;
}
.mypage-point-table > thead > tr > th,
.mypage-point-table > tbody > tr > td{
    padding: 1em;
    border: 1px solid #ccc;
    font-size: .875rem;
    line-height: 1.2;
    text-align: center;
    vertical-align: middle;
}
.mypage-point-table > thead > tr > th{
    background: var(--black-color);
    color: #fff;
}
.mypage-point-table > tbody > tr > td{
    background: #fff;
}
@media screen and (max-width:991px){
    .mypage-point-table > thead > tr > th,
    .mypage-point-table > tbody > tr > td{
        padding: .5em;
        font-size: .75rem;
    }
}