@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{
    height: calc(100vh - 100px);
    background: #fff;
    overflow: hidden;
}
.home-hero-slider .swiper-slide::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    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: 600px;
    }
}
@media screen and (max-width:767px){
    .home-hero-slider .swiper-slide{
        height: auto;
        aspect-ratio: 4 / 3;
    }
}
/*  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: 5vw;
    bottom: 10vh;
    z-index: 2;
}
@media screen and (max-width:1199px){
    .home-hero-detail{
        bottom: 60px;
    }
}
@media screen and (max-width:767px){
    .home-hero-detail{
        bottom: 50%;
        left: 0;
        transform: translateY(50%);
        width: 100%;
        padding: 0 4vw;
        text-align: center;
    }
}
/*  home-hero-title
------------------------------------------------------------------*/
.home-hero-title{
    font-size: 3.75rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.6;
}
@media screen and (max-width:1199px){
    .home-hero-title{
        font-size: 3rem;
    }
}
@media screen and (max-width:767px){
    .home-hero-title{
        font-size: 7vw;
    }
}


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

/*  home-about
------------------------------------------------------------------*/
.home-about{
    padding: 150px 0;
}
@media screen and (max-width:1399px){
    .home-about{
        padding: 120px 0;
    }
}
@media screen and (max-width:991px){
    .home-about{
        padding: 80px 0;
    }
}
@media screen and (max-width:767px){
    .home-about{
        padding: 60px 0;
    }
}
/*  home-about-partners
------------------------------------------------------------------*/
.home-about-partners{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    max-width: 660px;
}
.home-about-partners > li{
    padding: .7em 1em;
    background: var(--black-color);
    font-size: 1.25rem;
    color: #fff;
    text-align: center;
    line-height: 1;
}
@media screen and (max-width:1199px){
    .home-about-partners > li{
        font-size: 1.125rem;
    }
}
@media screen and (max-width:991px){
    .home-about-partners{
        gap: 5px;
    }
    .home-about-partners > li{
        font-size: 1rem;
    }
}
@media screen and (max-width:575px){
    .home-about-partners{
        grid-template-columns: repeat(2,1fr);
    }
    .home-about-partners > li{
        font-size: .875rem;
    }
}

/*------------------------------------------------------------------
  home-kodawari
------------------------------------------------------------------*/

/*  home-kodawari
------------------------------------------------------------------*/
.home-kodawari{
    position: relative;
    padding-top: 180px;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-kodawari{
        padding-top: 150px;
    }
}
@media screen and (max-width:991px){
    .home-kodawari{
        padding-top: 120px;
    }
}
@media screen and (max-width:767px){
    .home-kodawari{
        padding-top: 0;
    }
}
/*  home-kodawari-image
------------------------------------------------------------------*/
.home-kodawari-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.home-kodawari-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:767px){
    .home-kodawari-image{
        position: relative;
        height: auto;
        aspect-ratio: 16 / 9;
        margin-bottom: 50px;
    }
}
/*  home-kodawari-box
------------------------------------------------------------------*/
.home-kodawari-box{
    position: relative;
    width: fit-content;
    padding: 150px 120px 80px 0;
    background: #fff;
    z-index: 1;
}
.home-kodawari-box::after{
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100%;
    background: #fff;
    content: "";
    z-index: -1;
}
@media screen and (max-width:1399px){
    .home-kodawari-box{
        padding: 120px 60px 60px 0;
    }
}
@media screen and (max-width:991px){
    .home-kodawari-box{
        padding: 100px 60px 60px 0;
    }
}
@media screen and (max-width:767px){
    .home-kodawari-box{
        width: auto;
        padding: 0;
    }
}
/*  home-kodawari-list
------------------------------------------------------------------*/
.home-kodawari-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 50px;
    margin-bottom: 50px;
}
@media screen and (max-width:1399px){
    .home-kodawari-list{
        row-gap: 40px;
        margin-bottom: 40px;
    }
}
@media screen and (max-width:991px){
    .home-kodawari-list{
        row-gap: 30px;
        margin-bottom: 30px;
    }
}
@media screen and (max-width:767px){
    .home-kodawari-list{
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}
/*  home-kodawari-list-item
------------------------------------------------------------------*/
.home-kodawari-list-item .title{
    margin-bottom: .5em;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5;
}
@media screen and (max-width:1399px){
    .home-kodawari-list-item .title{
        font-size: 1.375rem;
    }
}
@media screen and (max-width:991px){
    .home-kodawari-list-item .title{
        font-size: 1.25rem;
    }
}
@media screen and (max-width:767px){
    .home-kodawari-list-item .title{
        font-size: 1.125rem;
    }
}


/*------------------------------------------------------------------
  home-links
------------------------------------------------------------------*/

/*  home-links
------------------------------------------------------------------*/
.home-links{
    padding: 80px 0 150px;
}
@media screen and (max-width:1399px){
    .home-links{
        padding: 70px 0 120px;
    }
}
@media screen and (max-width:991px){
    .home-links{
        padding: 60px 0 80px;
    }
}
@media screen and (max-width:767px){
    .home-links{
        padding: 60px 0;
    }
}
/*  home-links-list
------------------------------------------------------------------*/
.home-links-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 60px;
}
@media screen and (max-width:1599px){
    .home-links-list{
        column-gap: 40px;
    }
}
@media screen and (max-width:1399px){
    .home-links-list{
        column-gap: 30px;
    }
}
@media screen and (max-width:991px){
    .home-links-list{
        column-gap: 20px;
    }
}
@media screen and (max-width:767px){
    .home-links-list{
        grid-template-columns: 1fr;
        row-gap: 20px;
    }
}
@media screen and (max-width:575px){
    .home-links-list{
        row-gap: 10px;
    }
}
/*  home-links-list-item
------------------------------------------------------------------*/
.home-links-list-item{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    height: 240px;
    padding: 0 40px 0 60px;
}
.home-links-list-item .image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
    z-index: -1;
}
.home-links-list-item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .4;
    transition: .2s ease-out;
}
.home-links-list-item .title{
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    line-height: 1;
}
.home-links-list-item .arrow{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: 1px solid #fff;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-links-list-item:hover .image img{
        transform: scale(1.1);
        opacity: .6;
    }
    .home-links-list-item:hover .arrow{
        transform: scale(.8);
        background: var(--primary-color);
        border-color: var(--primary-color);
    }
}
@media screen and (max-width:1599px){
    .home-links-list-item{
        height: 210px;
        padding: 0 30px 0 50px;
    }
    .home-links-list-item .title{
        font-size: 1.75rem;
    }
    .home-links-list-item .arrow{
        width: 70px;
        height: 70px;
        font-size: 18px;
    }
}
@media screen and (max-width:1399px){
    .home-links-list-item{
        height: 180px;
        padding: 0 20px 0 40px;
    }
    .home-links-list-item .title{
        font-size: 1.5rem;
    }
    .home-links-list-item .arrow{
        width: 60px;
        height: 60px;
        font-size: 16px;
    }
}
@media screen and (max-width:1199px){
    .home-links-list-item{
        height: 150px;
        padding: 0 20px 0 30px;
    }
    .home-links-list-item .title{
        font-size: 1.375rem;
    }
    .home-links-list-item .arrow{
        width: 48px;
        height: 48px;
        font-size: 12px;
    }
}
@media screen and (max-width:991px){
    .home-links-list-item{
        height: 120px;
        padding: 0 12px 0 24px;
    }
    .home-links-list-item .title{
        font-size: 1.25rem;
    }
    .home-links-list-item .arrow{
        width: 40px;
        height: 40px;
        font-size: 10px;
    }
}
@media screen and (max-width:575px){
    .home-links-list-item{
        height: 90px;
        padding: 0 12px 0 24px;
    }
    .home-links-list-item .title{
        font-size: 1.125rem;
    }
}


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

/*  home-topics
------------------------------------------------------------------*/
.home-topics{
    padding: 150px 0;
    background: url(../images/common/bg-flower.jpg) repeat;
}
@media screen and (max-width:1399px){
    .home-topics{
        padding: 120px 0;
    }
}
@media screen and (max-width:991px){
    .home-topics{
        padding: 80px 0;
    }
}
@media screen and (max-width:767px){
    .home-topics{
        padding: 60px 0;
    }
}
/*  home-topics-head
------------------------------------------------------------------*/
.home-topics-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}
@media screen and (max-width:575px){
    .home-topics-head{
        display: block;
        margin-bottom: 30px;
        text-align: center;
    }
}
/*  home-topics-contents
------------------------------------------------------------------*/
.home-topics-contents{
    display: none;
}
.home-topics-contents.is-show{
    display: block;
}
@media screen and (max-width:575px){
    .home-topics-contents{
        margin-bottom: 30px;
    }
}


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

/*  home-products
------------------------------------------------------------------*/
.home-products{
    padding: 120px 0;
}
@media screen and (max-width:1399px){
    .home-products{
        padding: 100px 0;
    }
}
@media screen and (max-width:991px){
    .home-products{
        padding: 80px 0;
    }
}
@media screen and (max-width:767px){
    .home-products{
        padding: 60px 0;
    }
}


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

/*  topics-category-list
------------------------------------------------------------------*/
.topics-category-list{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}
@media screen and (max-width:991px){
    .topics-category-list{
        gap: 4px;
    }
}
@media screen and (max-width:575px){
    .topics-category-list{
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }
}
/*  topics-category-btn
------------------------------------------------------------------*/
.topics-category-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5em;
    padding: 0 2em;
    background: #fff;
    border: 1px solid #aaa;
    font-size: .875rem;
    text-align: center;
    line-height: 1;
    transition: .2s ease-out;
}
/* アクティブ時動作 */
.topics-category-btn.active{
    background: var(--black-color);
    border-color: var(--black-color);
    color: #fff;
    pointer-events: none;
}
/* ホバー時動作 */
@media (hover:hover) {
    .topics-category-btn:hover{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
}
@media (hover:none) {
    .topics-category-btn:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
}
@media screen and (max-width:991px){
    .topics-category-btn{
        font-size: .75rem;
    }
}
@media screen and (max-width:575px){
    .topics-category-btn{
        padding: 0 .5em;
    }
}

/*  topics-list
------------------------------------------------------------------*/
.topics-list{
    
}
/*  topics-list-item
------------------------------------------------------------------*/
.topics-list-item{
    position: relative;
    display: flex;
    align-items: flex-start;
    column-gap: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #aaa;
    transition: .2s ease-out;
}
.topics-list-item .image{
    width: 120px;
    height: 120px;
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
}
.topics-list-item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.topics-list-item .body{
    padding-top: 8px;
}
.topics-list-item .detail{
    display: flex;
    align-items: center;
    column-gap: 16px;
    margin-bottom: 8px;
}
.topics-list-item .new{
    font-size: .875rem;
    color: #cc0000;
    line-height: 1;
}
.topics-list-item .date{
    font-size: .875rem;
    line-height: 1;
}
.topics-list-item .category{
    font-size: .875rem;
    color: var(--primary-color);
    line-height: 1;
}
.topics-list-item .title{
    margin-bottom: 12px;
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.4;
}
.topics-list-item .text{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: .875rem;
    color: #555;
    line-height: 1.5;
}
/* ホバー時動作 */
@media (hover:hover) {
    a.topics-list-item:hover{
        background: var(--primary-light-color);
        border-color: var(--primary-color);
    }
    a.topics-list-item:hover .image img{
        transform: scale(1.1);
        opacity: .8;
    }
}
@media screen and (max-width:991px){
    .topics-list-item{
        column-gap: 20px;
        padding: 12px 0;
    }
    .topics-list-item .image{
        width: 100px;
        height: 100px;
    }
    .topics-list-item .new{
        font-size: .75rem;
    }
    .topics-list-item .date{
        font-size: .75rem;
    }
    .topics-list-item .category{
        font-size: .75rem;
    }
    .topics-list-item .title{
        margin-bottom: 8px;
        font-size: 1rem;
    }
    .topics-list-item .text{
        font-size: .75rem;
    }
}
@media screen and (max-width:767px){
    .topics-list-item{
        column-gap: 10px;
        padding: 8px 0;
    }
    .topics-list-item .image{
        width: 60px;
        height: 60px;
    }
    .topics-list-item .body{
        padding-top: 4px;
    }
    .topics-list-item .detail{
        margin-bottom: 4px;
    }
    .topics-list-item .title{
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        margin-bottom: 4px;
        font-size: .875rem;
    }
}
/*  topics-detail-article
------------------------------------------------------------------*/
.topics-detail-article{
	padding: 60px 0;
}
/*  topics-detail-container
------------------------------------------------------------------*/
.topics-detail-container{
    max-width: 1000px;
    padding: 0 60px;
    margin: 0 auto;
}
@media screen and (max-width:991px){ 
    .topics-detail-container{
        padding: 0 6vw;
    }
}
@media print{ 
    .topics-detail-container{
        padding: 0 15px !important;
    }
}
/*  topics-detail-category
------------------------------------------------------------------*/
.topics-detail-category {
	margin-bottom: 8px;
    font-size: .875rem;
	color: var(--primary-color);
    line-height: 1;
    text-align: center;
}
@media screen and (max-width:991px){
	.topics-detail-category {
		font-size: .75rem;
	}
}
/*  topics-detail-title
------------------------------------------------------------------*/
.topics-detail-title {
	margin-bottom: 10px;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.5;
	text-align: center;
}
@media screen and (max-width:991px){
	.topics-detail-title {
		font-size: 1.5rem;
	}
}
@media screen and (max-width:767px){
	.topics-detail-title {
		font-size: 1.375rem;
	}
}
@media screen and (max-width:575px){
	.topics-detail-title {
		font-size: 1.25rem;
	}
}
/*  topics-detail-date
------------------------------------------------------------------*/
.topics-detail-date {
	margin-bottom: 40px;
	color: #555;
	line-height: 1;
	text-align: center;
}
@media screen and (max-width:991px){
	.topics-detail-date {
		font-size: .875rem;
	}
}
/*  topics-detail-slider
------------------------------------------------------------------*/
.topics-detail-slider{
    position: relative;
    margin-bottom: 10px;
    z-index: 1;
}
.topics-detail-slider .swiper-slide a{
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #efefef;
}
.topics-detail-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*  topics-detail-thumb-slider
------------------------------------------------------------------*/
.topics-detail-thumb-slider{
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    z-index: 1;
}
.topics-detail-thumb-slider .swiper-slide{
    aspect-ratio: 1 / 1;
    filter: brightness(0.3);
    cursor: pointer;
}
.topics-detail-thumb-slider .swiper-slide.swiper-slide-thumb-active{
    filter: brightness(1);
}
.topics-detail-thumb-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*  topics-detail-slider-button
------------------------------------------------------------------*/
.topics-detail-slider-button-prev,
.topics-detail-slider-button-next{
    position: absolute;
    top: 50%;
    width: 36px;
    aspect-ratio: 1 / 1;
    background: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    transition: .2s ease-out;
    z-index: 2;
}
.topics-detail-slider-button-prev.swiper-button-disabled,
.topics-detail-slider-button-next.swiper-button-disabled{
    border-color: #ccc;
    color: #ccc;
    pointer-events: none;
}
.topics-detail-slider-button-prev{
    left: -18px;
}
.topics-detail-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-detail-slider-button-next{
    right: -18px;
}
.topics-detail-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-detail-slider-button-prev:hover,
    .topics-detail-slider-button-next:hover,
    .topics-detail-slider-button-prev:active,
    .topics-detail-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
    .topics-detail-slider-button-prev:active{
        transform: scale(0.8) translateY(-50%) rotate(180deg);
    }
    .topics-detail-slider-button-next:active{
        transform: scale(0.8) translateY(-50%);
    }
}
@media (hover:none) {
    .topics-detail-slider-button-prev:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
        transform: scale(0.8) translateY(-50%) rotate(180deg);
    }
    .topics-detail-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
        transform: scale(0.8) translateY(-50%);
    }
}


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

/*  products-category-list
------------------------------------------------------------------*/
.products-category-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-bottom: 50px;
}
@media screen and (max-width:1599px){
    .products-category-list{
        gap: 10px;
    }
}
@media screen and (max-width:1199px){
    .products-category-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .products-category-list{
        gap: 4px;
    }
}
/*  products-category-btn
------------------------------------------------------------------*/
.products-category-btn{
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #aaa;
    transition: .2s ease-out;
}
.products-category-btn .image{
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    margin-right: 20px;
    overflow: hidden;
}
.products-category-btn .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.products-category-btn .title{
    flex: 1;
    margin-right: 12px;
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.2;
    transition: .2s ease-out;
}
.products-category-btn .arrow{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border: 1px solid #888;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 10px;
    transition: .2s ease-out;
}
/* アクティブ時動作 */
.products-category-btn.active{
    background: var(--primary-light-color);
    border-color: var(--primary-color);
    color: var(--primary-color);
    pointer-events: none;
}
/* ホバー時動作 */
@media (hover:hover) {
    .products-category-btn:hover{
        background: var(--primary-light-color);
        border-color: var(--primary-color);
        color: var(--primary-color);
    }
    .products-category-btn:hover .arrow{
        transform: scale(.8);
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
}
@media (hover:none) {
    .products-category-btn:active{
        background: var(--primary-light-color);
        border-color: var(--primary-color);
        color: var(--primary-color);
    }
    .products-category-btn:active .arrow{
        transform: scale(.8);
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
}
@media screen and (max-width:1599px){
    .products-category-btn .image{
        width: 80px;
        height: 80px;
        margin-right: 12px;
    }
    .products-category-btn .title{
        margin-right: 8px;
        font-size: 1rem;
    }
    .products-category-btn .arrow{
        margin-right: 8px;
    }
}
@media screen and (max-width:991px){
    .products-category-btn .image{
        width: 60px;
        height: 60px;
    }
    .products-category-btn .title{
        font-size: .875rem;
    }
    .products-category-btn .arrow{
        width: 28px;
        height: 28px;
    }
}
@media screen and (max-width:575px){
    .products-category-btn .image{
        width: 48px;
        height: 48px;
    }
    .products-category-btn .title{
        font-size: .75rem;
    }
    .products-category-btn .arrow{
        display: none;
    }
}

/*  products-list
------------------------------------------------------------------*/
.products-list{
    display: grid;
    grid-template-columns: repeat(6,1fr);
    column-gap: 30px;
    row-gap: 40px;
}
@media screen and (max-width:1399px){
    .products-list{
        column-gap: 20px;
        row-gap: 30px;
    }
}
@media screen and (max-width:1199px){
    .products-list{
        grid-template-columns: repeat(5,1fr);
    }
}
@media screen and (max-width:991px){
    .products-list{
        grid-template-columns: repeat(4,1fr);
    }
}
@media screen and (max-width:767px){
    .products-list{
        grid-template-columns: repeat(3,1fr);
        column-gap: 12px;
        row-gap: 24px;
    }
}
@media screen and (max-width:575px){
    .products-list{
        column-gap: 8px;
    }
}
/*  products-list-card
------------------------------------------------------------------*/
.products-list-card{
    display: block;
}
.products-list-card .image{
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 16px;
}
.products-list-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.products-list-card .category{
    margin-bottom: 8px;
    font-size: .75rem;
    color: var(--primary-color);
    line-height: 1;
}
.products-list-card .title{
    margin-bottom: 8px;
    font-weight: bold;
    line-height: 1.2;
    transition: .2s ease-out;
}
.products-list-card .price{
    font-size: .875rem;
    color: #555;
    line-height: 1;
}
.products-list-card .price .tax{
    font-size: .75rem;
}
/* ホバー時動作 */
@media (hover:hover) {
    .products-list-card:hover .image img{
        transform: scale(1.1);
        opacity: .8;
    }
    .products-list-card:hover .title,
    .products-list-card:hover .price{
        color: var(--primary-color);
    }
}
@media (hover:none) {
    .products-list-card:active .image img{
        transform: scale(1.1);
        opacity: .8;
    }
    .products-list-card:active .title,
    .products-list-card:active .price{
        color: var(--primary-color);
    }
}
@media screen and (max-width:1399px){
    .products-list-card .image{
        margin-bottom: 8px;
    }
    .products-list-card .category{
        margin-bottom: 6px;
    }
    .products-list-card .title{
        margin-bottom: 6px;
        font-size: .875rem;
    }
    .products-list-card .price{
        font-size: .75rem;
    }
    .products-list-card .price .tax{
        font-size: .625rem;
    }
}
@media screen and (max-width:575px){
    .products-list-card .title{
        font-size: .8125rem;
    }
}
/*  products-detail-article
------------------------------------------------------------------*/
.products-detail-article{
	padding: 60px 0;
}
/*  products-detail-container
------------------------------------------------------------------*/
.products-detail-container{
    max-width: 1220px;
    padding: 0 60px;
    margin: 0 auto;
}
@media screen and (max-width:991px){ 
    .products-detail-container{
        padding: 0 6vw;
    }
}
@media print{ 
    .products-detail-container{
        padding: 0 15px !important;
    }
}
/*  products-detail-category
------------------------------------------------------------------*/
.products-detail-category {
	margin-bottom: 8px;
    font-size: .875rem;
	color: var(--primary-color);
    line-height: 1;
}
@media screen and (max-width:767px){
	.products-detail-category {
		font-size: .75rem;
        text-align: center;
	}
}
/*  products-detail-title
------------------------------------------------------------------*/
.products-detail-title {
	margin-bottom: 12px;
	font-size: 1.75rem;
	font-weight: bold;
	line-height: 1.5;
}
@media screen and (max-width:991px){
	.products-detail-title {
		font-size: 1.5rem;
	}
}
@media screen and (max-width:767px){
	.products-detail-title {
		font-size: 1.375rem;
        text-align: center;
	}
}
@media screen and (max-width:575px){
	.products-detail-title {
		font-size: 1.25rem;
	}
}
/*  products-detail-price
------------------------------------------------------------------*/
.products-detail-price {
	margin-bottom: 20px;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--red-color);
	line-height: 1;
}
@media screen and (max-width:991px){
	.products-detail-price {
		font-size: 1.125rem;
	}
}
@media screen and (max-width:767px){
	.products-detail-price {
        text-align: center;
	}
}
/*  products-detail-slider
------------------------------------------------------------------*/
.products-detail-slider{
    position: relative;
    margin-bottom: 10px;
    z-index: 1;
}
.products-detail-slider .swiper-slide a{
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #efefef;
}
.products-detail-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*  products-detail-thumb-slider
------------------------------------------------------------------*/
.products-detail-thumb-slider{
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.products-detail-thumb-slider .swiper-slide{
    aspect-ratio: 1 / 1;
    filter: brightness(0.3);
    cursor: pointer;
}
.products-detail-thumb-slider .swiper-slide.swiper-slide-thumb-active{
    filter: brightness(1);
}
.products-detail-thumb-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*  products-detail-slider-button
------------------------------------------------------------------*/
.products-detail-slider-button-prev,
.products-detail-slider-button-next{
    position: absolute;
    top: 50%;
    width: 36px;
    aspect-ratio: 1 / 1;
    background: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    transition: .2s ease-out;
    z-index: 2;
}
.products-detail-slider-button-prev.swiper-button-disabled,
.products-detail-slider-button-next.swiper-button-disabled{
    border-color: #ccc;
    color: #ccc;
    pointer-events: none;
}
.products-detail-slider-button-prev{
    left: -18px;
}
.products-detail-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-detail-slider-button-next{
    right: -18px;
}
.products-detail-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-detail-slider-button-prev:hover,
    .products-detail-slider-button-next:hover,
    .products-detail-slider-button-prev:active,
    .products-detail-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
    .products-detail-slider-button-prev:active{
        transform: scale(0.8) translateY(-50%) rotate(180deg);
    }
    .products-detail-slider-button-next:active{
        transform: scale(0.8) translateY(-50%);
    }
}
@media (hover:none) {
    .products-detail-slider-button-prev:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
        transform: scale(0.8) translateY(-50%) rotate(180deg);
    }
    .products-detail-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
        transform: scale(0.8) translateY(-50%);
    }
}


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

/*  about-factory-step
------------------------------------------------------------------*/
.about-factory-step{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    column-gap: 50px;
}
@media screen and (max-width:1399px){
    .about-factory-step{
        column-gap: 30px;
    }
}
@media screen and (max-width:991px){
    .about-factory-step{
        column-gap: 12px;
    }
}
@media screen and (max-width:767px){
    .about-factory-step{
        grid-template-columns: repeat(2,1fr);
        column-gap: 20px;
        row-gap: 30px;
    }
}
/*  about-factory-step-item
------------------------------------------------------------------*/
.about-factory-step-item .image{
    margin-bottom: 20px;
}
.about-factory-step-item .num{
    margin-bottom: 8px;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    line-height: 1;
}
.about-factory-step-item .text{
    line-height: 1.7;
}
@media screen and (max-width:1399px){
    .about-factory-step-item .num{
        font-size: 1.125rem;
    }
    .about-factory-step-item .text{
        font-size: .875rem;
    }
}
@media screen and (max-width:575px){
    .about-factory-step-item .image{
        margin-bottom: 16px;
    }
    .about-factory-step-item .num{
        font-size: 1rem;
    }
    .about-factory-step-item .text{
        font-size: .75rem;
    }
}


/*/////////////////////////////////////////////////////////////////
  company.html
/////////////////////////////////////////////////////////////////*/

/*  company-greeting
------------------------------------------------------------------*/
.company-greeting{
    padding: 150px 0;
    background: url(../images/company-philosophy-bg.jpg) no-repeat center / cover;
}
@media screen and (max-width:1399px){
    .company-greeting{
        padding: 120px 0;
    }
}
@media screen and (max-width:991px){
    .company-greeting{
        padding: 80px 0;
    }
}
@media screen and (max-width:767px){
    .company-greeting{
        padding: 60px 0;
    }
}
/*  company-greeting-title
------------------------------------------------------------------*/
.company-greeting-title{
    margin-bottom: 1em;
    font-size: 2.5rem;
    color: #fff;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
}
@media screen and (max-width:991px){
    .company-greeting-title{
        font-size: 2rem;
    }
}
@media screen and (max-width:575px){
    .company-greeting-title{
        font-size: 1.75rem;
    }
}
/*  company-greeting-text
------------------------------------------------------------------*/
.company-greeting-text{
    font-size: 1.125rem;
    color: #fff;
    text-align: center;
    line-height: 2.5;
}
@media screen and (max-width:991px){
    .company-greeting-text{
        font-size: 1rem;
    }
}
@media screen and (max-width:767px){
    .company-greeting-text{
        text-align: left;
    }
}
@media screen and (max-width:575px){
    .company-greeting-text{
        font-size:.875rem;
        line-height: 2;
    }
}

/*  company-philosophy-title
------------------------------------------------------------------*/
.company-philosophy-title{
    margin-bottom: 1em;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
}
@media screen and (max-width:575px){
    .company-philosophy-title{
        font-size: 2rem;
    }
}
/*  company-philosophy-text
------------------------------------------------------------------*/
.company-philosophy-text{
    font-size: 1.5rem;
    text-align: center;
}
@media screen and (max-width:575px){
    .company-philosophy-text{
        font-size: 1.125rem;
    }
}

/*  company-access-map
------------------------------------------------------------------*/
.company-access-map{
    height: 400px;
    margin-bottom: 20px;
}
.company-access-map iframe{
    width: 100%;
    height: 100%;
}
@media screen and (max-width:575px){
    .company-philosophy-text{
        font-size: 1.125rem;
    }
}


/*/////////////////////////////////////////////////////////////////
  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;
    }
}