@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;
    z-index: 1;
}
/*  home-hero-slider
------------------------------------------------------------------*/
.home-hero-slider .swiper-slide{
    background: #fff;
    overflow: hidden;
}
.home-hero-slider .swiper-slide::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, 0) 100%);
    content: "";
    z-index: 1;
}
.home-hero-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1399px){
    .home-hero-slider .swiper-slide{
        height: 550px;
    }
}
@media screen and (max-width:767px){
    .home-hero-slider .swiper-slide{
        height: initial;
        aspect-ratio: 9 / 10;
    }
}
/*  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;
    left: 4vw;
    bottom: 4vw;
    z-index: 2;
}
@media screen and (max-width:1399px){
    .home-hero-detail{
        bottom: 50px;
    }
}
@media screen and (max-width:767px){
    .home-hero-detail{
        position: absolute;
        bottom: 50%;
        left: 0;
        transform: translateY(50%);
        width: 100%;
        padding: 0 4vw;
        text-align: center;
    }
}
@media print{
    .home-hero-detail{
        bottom: 30px;
        left: 30px;
    }
}
/*  home-hero-title-en
------------------------------------------------------------------*/
.home-hero-title{
    margin-bottom: .35em;
    font-size: max(3.5rem,3.75vw);
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
    --letter-spacing: .05em;
}
.home-hero-title .wrap{
    display: block;
    width: fit-content;
    overflow: hidden;
}
.home-hero-title .inner{
    display: block;
    transform: translateY(100%);
    animation: homeHeroTitleEn .5s forwards .4s ease-out;
}
@keyframes homeHeroTitleEn {
    from{
        transform: translateY(100%);
    }
    to{
        transform: translateY(0);
    }
}
@media screen and (max-width:767px){
    .home-hero-title .wrap{
        width: auto;
    }
    .home-hero-title{
        font-size: 10vw;
    }
}
/*  home-hero-text
------------------------------------------------------------------*/
.home-hero-text{
    opacity: 0;
    font-family: var(--en-font);
    font-size: max(.9375vw,.875rem);
    color: #fff;
    letter-spacing: 0;
    animation: homeHeroTitle .8s forwards .4s ease-out;
}
@keyframes homeHeroTitle {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
@media screen and (max-width:767px){
    .home-hero-text{
        font-size: max(2.3vw, .75rem);
    }
}

/*------------------------------------------------------------------
  home-about
------------------------------------------------------------------*/

/*  home-about-card
------------------------------------------------------------------*/
.home-about-card{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    padding: 30px 12px;
    background: #fff;
    text-align: center;
    transition: .2s ease-out;
    z-index: 1;
}
.home-about-card .image{
    --image-size: 80px;
    width: var(--image-size);
    height: var(--image-size);
    margin-bottom: 18px;
    line-height: 1;
}
.home-about-card .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.home-about-card .title{
    margin-bottom: 20px;
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.2;
    transition: .2s ease-out;
}
.home-about-card .view{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    aspect-ratio: 1 / 1;
    margin-top: auto;
    font-size: 12px;
    color: var(--primary-color);
    line-height: 1;
    transition: .2s ease-out;
    z-index: 1;
}
.home-about-card .view::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    content: "";
    transition: .2s ease-out;
    z-index: -1;
}
/* ホバー時動作 */
.home-about-card:hover{
    background: var(--primary-light-color);
}
.home-about-card:hover .title{
    color: var(--primary-color);
}
.home-about-card:hover .view{
    color: #fff;
}
.home-about-card:hover .view::after{
    transform: scale(.9);
    background: var(--primary-color);
}
@media screen and (max-width:991px){
    .home-about-card{
        padding: 20px 12px;
    }
    .home-about-card .image{
        --image-size: 60px;
        margin-bottom: 12px;
    }
    .home-about-card .title{
        margin-bottom: 16px;
        font-size: 1rem;
    }
}
@media screen and (max-width:575px){
    .home-about-card .image{
        --image-size: 50px;
    }
    .home-about-card .title{
        margin-bottom: 12px;
        font-size: 0.875rem;
    }
    .home-about-card .view{
        width: 28px;
        font-size: 10px;
    }
}
@media screen and (max-width:374px){
    .home-about-card .image{
        --image-size: 40px;
    }
    .home-about-card .title{
        font-size: 0.75rem;
    }
}

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


/*  home-news-contents
------------------------------------------------------------------*/
.home-news-contents{
    display: none;
    margin-bottom: 40px;
}
.home-news-contents.active{
    display: block;
}


/*------------------------------------------------------------------
  home-hanpu
------------------------------------------------------------------*/

/*  home-hanpu-list
------------------------------------------------------------------*/
.home-hanpu-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    column-gap: 30px;
    row-gap: 40px;
    margin-bottom: 40px;
}
@media screen and (max-width:1399px){
    .home-hanpu-list{
        column-gap: 20px;
    }
}
@media screen and (max-width:1199px){
    .home-hanpu-list{
        column-gap: 10px;
        row-gap: 30px;
    }
}
@media screen and (max-width:767px){
    .home-hanpu-list{
        grid-template-columns: repeat(2,1fr);
        margin-bottom: 30px;
    }
}
/*  home-hanpu-card
------------------------------------------------------------------*/
.home-hanpu-card{
    display: block;
}
.home-hanpu-card .image{
    aspect-ratio: 1 / 1.414;
    margin-bottom: 20px;
    border: 1px solid #eee;
    overflow: hidden;
}
.home-hanpu-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.home-hanpu-card .title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-bottom: 8px;
    overflow: hidden;
    line-height: 1.4;
    transition: .2s ease-out;
}
.home-hanpu-card .category{
    font-size: .75rem;
    color: var(--primary-color);
    line-height: 1.2;
}
@media (hover:hover) {
    .home-hanpu-card:hover .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
    .home-hanpu-card:hover .title{
        color: var(--primary-color);
    }
}
@media screen and (max-width:767px){
    .home-hanpu-card .image{
        margin-bottom: 16px;
    }
    .home-hanpu-card .title{
        margin-bottom: 6px;
    }
}

/*/////////////////////////////////////////////////////////////////
  news.html
/////////////////////////////////////////////////////////////////*/

/*  news-category-list
------------------------------------------------------------------*/
.news-category-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    margin-bottom: 40px;
}
@media screen and (max-width:767px){
    .news-category-list{
        grid-template-columns: repeat(2,1fr);
        gap: 8px;
        margin-bottom: 30px;
    }
}
/*  news-category-btn
------------------------------------------------------------------*/
.news-category-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3.5em;
    padding: 0 1em;
    background: #e0e0e0;
    transition: .2s ease-out;
    font-size: 0.875rem;
    color: #666;
    text-align: center;
    line-height: 1;
}
/* アクティブ時動作 */
.news-category-btn.active{
    background: var(--primary-color);
    color: #fff;
    pointer-events: none;
}
/* ホバー時動作 */
@media (hover:hover) {
    .news-category-btn:hover{
        background: var(--sub-color);
        color: #fff;
    }
}
@media (hover:none) {
    .news-category-btn:active{
        background: var(--sub-color);
        color: #fff;
    }
}
@media screen and (max-width:991px){
    .news-category-btn{
        font-size: 0.75rem;
    }
}

/*  news-list
------------------------------------------------------------------*/
.news-list{
    border-top: 1px solid #ccc;
}
.news-list > li{
    line-height: 1;
}
/*  news-list-item
------------------------------------------------------------------*/
.news-list-item{
    position: relative;
    width: 100%;
    display: block;
    padding: 20px 62px 20px 10px;
    border-bottom: 1px solid #ccc;
    transition: .2s ease-out;
}
.news-list-item .detail{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 8px;
    margin-bottom: 12px;
}
.news-list-item .new{
    font-size: .875rem;
    font-weight: bold;
    color: var(--red-color);
}
.news-list-item .date{
    font-size: .875rem;
    color: #666;
}
.news-list-item .category{
    display: block;
    padding: 0.2em 1em;
    border: 1px solid var(--primary-color);
    background: #fff;
    font-size: .75rem;
    color: var(--primary-color);
}
.news-list-item .title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    line-height: 1.4;
    transition: .2s ease-out;
}
.news-list-item .view{
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    color: var(--primary-color);
    transition: .3s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    a.news-list-item:hover{
        background: var(--primary-light-color);
        border-color: var(--primary-color);
    }
    a.news-list-item:hover .title{
        color: var(--primary-color);
    }
    a.news-list-item:hover .view{
        transform: translateY(-50%) scale(0.8);
        background: var(--primary-color);
        color: #fff;
    }
}
@media screen and (max-width:991px){
    .news-list-item{
        padding: 16px 0;
    }
    .news-list-item .detail{
        margin-bottom: 8px;
        column-gap: 10px;
    }
    .news-list-item .new{
        font-size: .75rem;
    }
    .news-list-item .date{
        font-size: .75rem;
    }
    .news-list-item .view{
        display: none;
    }
}
@media screen and (max-width:374px){
    .news-list-item .category{
        font-size: .625rem;
    }
}

/*  news-container
------------------------------------------------------------------*/
.news-container{
    max-width: 1000px;
    padding: 0 60px;
    margin: 0 auto;
}
@media screen and (max-width:991px){
    .news-container{
        padding: 0 6vw;
    }
}

/*  news-detail
------------------------------------------------------------------*/
.news-detail{
    display: flex;
    align-items: center;
    column-gap: 12px;
    margin-bottom: 12px;
}
.news-detail .new{
    font-size: .875rem;
    color: var(--red-color);
    line-height: 1;
}
.news-detail .date{
    font-size: .875rem;
    color: #666;
    line-height: 1;
}
.news-detail .category{
    display: inline-block;
    font-size: .875rem;
    color: var(--primary-color);
    line-height: 1;
}
@media screen and (max-width:575px){
    .news-detail{
        column-gap: 8px;
        margin-bottom: 4px;
    }
    .news-detail .date{
        font-size: .75rem;
    }
    .news-detail .category{
        font-size: .75rem;
    }
}

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

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

/*/////////////////////////////////////////////////////////////////
  workshop.html
/////////////////////////////////////////////////////////////////*/

/*  workshop-contents
------------------------------------------------------------------*/
.workshop-contents{
    margin-bottom: 20px;
}
.workshop-contents:last-of-type{
    margin-bottom: 0;
}
@media screen and (max-width:991px){
    .workshop-contents{
        margin-bottom: 12px;
    }
}
/*  workshop-title
------------------------------------------------------------------*/
.workshop-title{
    position: relative;
    display: flex;
    align-items: center;
    column-gap: .5em;
    padding: .75em 1em;
    background: var(--primary-light-color);
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.2;
    cursor: pointer;
    z-index: 1;
}
.workshop-title::before{
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    color: var(--sub-color);
}
.workshop-title .toggle{
    position: relative;
    flex-shrink: 0;
    width: 5em;
    padding: .75em 0;
    margin-left: auto;
    font-size: .875rem;
    background: var(--primary-color);
    font-weight: normal;
    color: #fff;
    text-align: center;
    line-height: 1;
    transition: .2s ease-out;
    z-index: 1;
}
.workshop-title .toggle::after{
    content: "詳細";
}
.workshop-title.open .toggle::after{
    content: "閉じる";
}
@media (hover:hover) {
    .workshop-title:hover .toggle{
        background: var(--sub-color);
    }
}
@media screen and (max-width:1199px){
    .workshop-title{
        font-size: 1rem;
    }
    .workshop-title .toggle{
        font-size: .75rem;
    }
}
@media screen and (max-width:991px){
    .workshop-title{
        padding: .75em .5em;
        font-size: .875rem;
    }
    .workshop-title .toggle{
        font-size: .625rem;
    }
}
@media screen and (max-width:767px){
    .workshop-title .toggle{
        width: 4em;
    }
}
/*  workshop-detail
------------------------------------------------------------------*/
.workshop-detail{
    display: none;
    padding: 30px;
    border: 1px solid #aaa;
    border-top-color: transparent;
}
@media screen and (max-width:767px){
    .workshop-detail{
        padding: 20px;
    }
}


/*/////////////////////////////////////////////////////////////////
  hanpu.html
/////////////////////////////////////////////////////////////////*/

/*  hanpu-list
------------------------------------------------------------------*/
.hanpu-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    column-gap: 30px;
    row-gap: 40px;
    margin-bottom: 60px;
}
@media screen and (max-width:1199px){
    .hanpu-list{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:991px){
    .hanpu-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:767px){
    .hanpu-list{
        column-gap: 20px;
        row-gap: 30px;
        margin-bottom: 40px;
    }
}
@media screen and (max-width:575px){
    .hanpu-list{
        column-gap: 10px;
    }
}
/*  hanpu-cart-btn
------------------------------------------------------------------*/
.hanpu-cart-btn{
    position: relative;
    display: inline-block;
    padding: 1.25em 3em;
    background: var(--red-color);
    text-align: center;
    color: #fff;
    line-height: 1.2;
    transition: .2s;
    z-index: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .hanpu-cart-btn:hover{ background: var(--sub-color);}
}
@media screen and (max-width:767px){
    .hanpu-cart-btn{ width: 100%;}
}
/*  hanpu-card
------------------------------------------------------------------*/
.hanpu-card{
    display: flex;
    flex-direction: column;
}
/*  hanpu-card-image
------------------------------------------------------------------*/
.hanpu-card-image{
    margin-bottom: 12px;
    aspect-ratio: 1 / 1.414;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}
.hanpu-card-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*  hanpu-card-title
------------------------------------------------------------------*/
.hanpu-card-title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 8px;
    font-weight: bold;
    line-height: 1.4;
}
/*  hanpu-card-detail
------------------------------------------------------------------*/
.hanpu-card-detail{
    width: 100%;
    margin-bottom: 1em;
}
.hanpu-card-detail th,
.hanpu-card-detail td{
    padding: .5em 0;
    border-bottom: 1px dashed #ccc;
    font-size: .75rem;
    color: #555;
    line-height: 1.2;
}
.hanpu-card-detail th{
    padding-right: 1em;
    font-weight: normal;
    white-space: nowrap;
}
.hanpu-card-detail td{
    text-align: right;
}
@media screen and (max-width:767px){
    .hanpu-card-detail{
        display: none;
    }
}
/*  hanpu-card-price
------------------------------------------------------------------*/
.hanpu-card-price{
    width: 100%;
    margin-bottom: 8px;
}
.hanpu-card-price th,
.hanpu-card-price td{
    padding-bottom: .5em;
    font-size: .875rem;
    font-weight: normal;
    line-height: 1.2;
}
.hanpu-card-price th{
    padding-right: .5em;
}
.hanpu-card-price td{
    text-align: right;
    white-space: nowrap;
}
.hanpu-card-price td small{
    font-size: .75rem;
    font-feature-settings: "palt";
}
.hanpu-card-price .special{
    color: var(--red-color);
}
@media screen and (max-width:991px){
    .hanpu-card-price th,
    .hanpu-card-price td{
        font-size: .75rem;
    }
    .hanpu-card-price td small{
        font-size: .625rem;
    }
}
/*  hanpu-card-cart
------------------------------------------------------------------*/
.hanpu-card-cart{
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 12px;
    margin-top: auto;
    margin-bottom: 12px;
}
@media screen and (max-width:767px){
    .hanpu-card-cart{
        display: none;
    }
}
/*  hanpu-card-cart-num
------------------------------------------------------------------*/
.hanpu-card-cart-num{
    position: relative;
    display: flex;
    font-size: .875rem;
}
.hanpu-card-cart-num .minus{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    background: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    cursor: pointer;
    user-select: none;
    font-family: var(--en-font);
}
.hanpu-card-cart-num .plus{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    background: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    cursor: pointer;
    user-select: none;
    font-family: var(--en-font);
}
.hanpu-card-cart-num input{
    width: 40px;
    padding: 0;
    text-align: center;
    border-radius: initial;
}
.hanpu-card-cart-num input::-webkit-inner-spin-button,
.hanpu-card-cart-num input::-webkit-outer-spin-button{
    -webkit-appearance: none;
}
/*  hanpu-card-cart-btn
------------------------------------------------------------------*/
.hanpu-card-cart-btn{
    position: relative;
    display: block;
    padding: .75em;
    background: var(--accent-color);
    transition: .2s ease-out;
    font-size: .875rem;
    text-align: center;
    line-height: 1;
    z-index: 1;
}
.hanpu-card-cart-btn::before{
    margin-right: 5px;
    content: "\f07a";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
}
/* ホバー時動作 */
@media (hover:hover) {
    .hanpu-card-cart-btn:hover{
        background: var(--sub-color);
        color: #fff;
    }
}
/*  hanpu-card-detail-btn
------------------------------------------------------------------*/
.hanpu-card-detail-btn{
    position: relative;
    display: block;
    padding: 1em;
    background: var(--primary-color);
    transition: .2s ease-out;
    font-size: .875rem;
        color: #fff;
    text-align: center;
    line-height: 1;
    z-index: 1;
}
.hanpu-card-detail-btn::before{
    margin-right: 5px;
    content: "\f15c";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .hanpu-card-detail-btn:hover{
        background: var(--sub-color);
    }
}
@media screen and (max-width:767px){
    .hanpu-card-detail-btn{
        margin-top: auto;
        font-size: .75rem;
    }
}


/*  hanpu-contents-detail
------------------------------------------------------------------*/
.hanpu-contents-detail{
    width: 100%;
    margin-bottom: 20px;
}
.hanpu-contents-detail th,
.hanpu-contents-detail td{
    padding: 1em 0;
    border-bottom: 1px dashed #ccc;
    font-size: .875rem;
    color: #555;
    line-height: 1.2;
}
.hanpu-contents-detail th{
    padding-right: 1em;
    font-weight: normal;
    white-space: nowrap;
}
.hanpu-contents-detail td{
    text-align: right;
}
/*  hanpu-contents-price
------------------------------------------------------------------*/
.hanpu-contents-price{
    width: 100%;
    margin-bottom: 20px;
}
.hanpu-contents-price th,
.hanpu-contents-price td{
    padding-bottom: .5em;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.2;
}
.hanpu-contents-price th{
    padding-right: .5em;
}
.hanpu-contents-price td{
    text-align: right;
    white-space: nowrap;
}
.hanpu-contents-price td small{
    font-size: .75rem;
    font-feature-settings: "palt";
}
.hanpu-contents-price .special{
    color: var(--red-color);
}
/*  hanpu-contents-cart
------------------------------------------------------------------*/
.hanpu-contents-cart{
    display: flex;
    justify-content: flex-end;
    column-gap: 12px;
    margin-top: auto;
    margin-bottom: 12px;
}
@media screen and (max-width:767px){
    .hanpu-contents-cart{
        display: grid;
        grid-template-columns: auto 1fr;
    }
}
/*  hanpu-contents-cart-num
------------------------------------------------------------------*/
.hanpu-contents-cart-num{
    position: relative;
    display: flex;
}
.hanpu-contents-cart-num .minus{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    background: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    cursor: pointer;
    user-select: none;
    font-family: var(--en-font);
}
.hanpu-contents-cart-num .plus{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    background: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    cursor: pointer;
    user-select: none;
    font-family: var(--en-font);
}
.hanpu-contents-cart-num input{
    width: 40px;
    padding: 0;
    text-align: center;
    border-radius: initial;
}
.hanpu-contents-cart-num input::-webkit-inner-spin-button,
.hanpu-contents-cart-num input::-webkit-outer-spin-button{
    -webkit-appearance: none;
}
/*  hanpu-contents-cart-btn
------------------------------------------------------------------*/
.hanpu-contents-cart-btn{
    position: relative;
    display: block;
    padding: 1em 2em;
    background: var(--accent-color);
    transition: .2s ease-out;
    text-align: center;
    line-height: 1;
    z-index: 1;
}
.hanpu-contents-cart-btn::before{
    margin-right: 5px;
    content: "\f07a";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
}
/* ホバー時動作 */
@media (hover:hover) {
    .hanpu-contents-cart-btn:hover{
        background: var(--sub-color);
        color: #fff;
    }
}

/*  hanpu-slider
------------------------------------------------------------------*/
.hanpu-slider{
    position: relative;
    margin-bottom: 10px;
    z-index: 1;
}
.hanpu-slider .swiper-slide{
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #fff;
}
.hanpu-slider .swiper-slide a{
    display: block;
    height: 100%;
}
.hanpu-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*  hanpu-thumb-slider
------------------------------------------------------------------*/
.hanpu-thumb-slider{
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.hanpu-thumb-slider .swiper-wrapper{
    justify-content: center;
}
.hanpu-thumb-slider .swiper-slide{
    width: calc(20% - 4px);
    aspect-ratio: 1 / 1;
    filter: brightness(0.3);
    cursor: pointer;
}
.hanpu-thumb-slider .swiper-slide.swiper-slide-thumb-active{
    filter: brightness(1);
}
.hanpu-thumb-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;

}
/*  hanpu-slider-button
------------------------------------------------------------------*/
.hanpu-slider-button-prev,
.hanpu-slider-button-next{
    position: absolute;
    top: 50%;
    width: 28px;
    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;
}
.hanpu-slider-button-prev.swiper-button-disabled,
.hanpu-slider-button-next.swiper-button-disabled{
    border-color: #ccc;
    color: #ccc;
    pointer-events: none;
}
.hanpu-slider-button-prev{
    left: 4px;
}
.hanpu-slider-button-prev::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "\f104";
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: bold;
}
.hanpu-slider-button-next{
    right: 4px;
}
.hanpu-slider-button-next::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: bold;
}
/* ホバー時動作 */
@media (hover:hover) {
    .hanpu-slider-button-prev:hover,
    .hanpu-slider-button-next:hover,
    .hanpu-slider-button-prev:active,
    .hanpu-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
    .hanpu-slider-button-prev:active,
    .hanpu-slider-button-next:active{
        transform: scale(0.8) translateY(-50%);
    }
}
@media (hover:none) {
    .hanpu-slider-button-prev:active,
    .hanpu-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
        transform: scale(0.8) translateY(-50%);
    }
}

/*/////////////////////////////////////////////////////////////////
  member.html
/////////////////////////////////////////////////////////////////*/

/*  member-contents
------------------------------------------------------------------*/
.member-contents{
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px dashed #ccc;
}
/*  member-contents-detail
------------------------------------------------------------------*/
.member-contents-detail{
    display: flex;
    align-items: center;
    column-gap: 12px;
    margin-bottom: 12px;
}
.member-contents-detail .new{
    font-size: .875rem;
    color: var(--red-color);
    line-height: 1;
}
.member-contents-detail .date{
    font-size: .875rem;
    color: #666;
    line-height: 1;
}
.member-contents-detail .category{
    display: inline-block;
    font-size: .875rem;
    color: var(--primary-color);
    line-height: 1;
}
@media screen and (max-width:575px){
    .member-contents-detail{
        column-gap: 8px;
        margin-bottom: 4px;
    }
    .member-contents-detail .date{
        font-size: .75rem;
    }
    .member-contents-detail .category{
        font-size: .75rem;
    }
}

/*/////////////////////////////////////////////////////////////////
  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: #efefef;
    text-align: center;
}
.contact-tel-box .title{
    margin-bottom: 5px;
    font-size: 1.375rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.4;
}
.contact-tel-box .num{
    margin-bottom: 5px;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
}
.contact-tel-box .num span{
    font-size: 1.75em;
    letter-spacing: 0;
}
.contact-tel-box .time{
    font-size: 0.875rem;
    line-height: 1.4;
}
@media screen and (max-width:1199px){
    .contact-tel-box .num{
        font-size: 1.125rem;
    }
}
@media screen and (max-width:767px){
    .contact-tel-box{
        padding: 24px 16px;
    }
}
@media screen and (max-width:575px){
    .contact-tel-box .num{
        font-size: 1rem;
    }
    .contact-tel-box .title{
        font-size: 1.25rem;
    }
    .contact-tel-box .time{
        font-size: 0.75rem;
    }
}
@media screen and (max-width:350px){
    .contact-tel-box .num{
        font-size: .875rem;
    }
    .contact-tel-box .title{
        font-size: 1.125rem;
    }
}

.form-error{
    position: relative;
    padding-left: 1.25em;
    margin-top: 5px;
    color: var(--red-color);
}
.form-error::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "\f057";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
}