@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

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


/*------------------------------------------------------------------
　header
------------------------------------------------------------------*/

/*  header
------------------------------------------------------------------*/
header{
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    width: 100%;
    padding: 15px 50px 15px 40px;
    background: url(../images/common/bg-black.jpg) repeat;
    z-index: 1000;
}
@media screen and (max-width:1399px){
    header{
        padding: 12px 30px 12px 20px;
    }
}
@media screen and (max-width:991px){
    header{
        column-gap: 16px;
        padding: 0 0 0 12px;
    }
}

/*  header-logo
------------------------------------------------------------------*/
.header-logo{
    line-height: 1;
}
@media screen and (max-width:1399px){
    .header-logo{
        width: 320px;
    }
}
@media screen and (max-width:991px){
    .header-logo{
        width: 240px;
    }
}
@media screen and (max-width:575px){
    .header-logo{
        width: 200px;
    }
}

/*  header-hamburger
------------------------------------------------------------------*/
.header-hamburger{
    display: none;
}
@media screen and (max-width:991px){
    .header-hamburger{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 60px;
        aspect-ratio: 1 / 1;
        background: #fff;
        transition: .2s ease-out;
        cursor: pointer;
        z-index: 4;
    }
    .header-hamburger .lines {
        position: relative;
        width: 24px;
        height: 16px;
    }
    .header-hamburger .lines .line {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--primary-color);
        transition: .2s ease-out;
    }
    .header-hamburger .lines .line#line1 {
        top: 0;
    }
    .header-hamburger .lines .line#line2 {
        top: calc(50% - 1px);
    }
    .header-hamburger .lines .line#line3 {
        bottom: 0;
    }
    /* オープン時動作 */
    .header-hamburger.open .lines .line#line1 {
        transform: rotate(-135deg);
        top: 6px !important;
    }
    .header-hamburger.open .lines .line#line2 {
        opacity: 0;
    }
    .header-hamburger.open .lines .line#line3 {
        transform: rotate(135deg);
        top: 6px !important;
    }
}
@media screen and (max-width:575px){
    .header-hamburger{
        width: 50px;
    }
}

/*  header-nav-wrapper
------------------------------------------------------------------*/
.header-nav-wrapper{
    flex-shrink: 0;
}
@media screen and (max-width:991px){
    .header-nav-wrapper{
        position: fixed;
        top: 0;
        left: 100%;
        display: block;
        width: 100%;
        max-width: 280px;
        height: 100vh;    
        padding: 60px 0 100px;
        background: url(../images/common/bg-black.jpg) repeat;
        overflow-y: scroll;
        visibility: hidden;
        opacity: 0;
        transition: .2s ease-out;
        z-index: 3;
    }
    .header-nav-wrapper.open{
        transform: translateX(-100%);
        visibility: visible;
        opacity: 1;
    }
    .header-nav-wrapper::-webkit-scrollbar{
        display: none;
    }
}

/*  header-nav
------------------------------------------------------------------*/
.header-nav{
    display: flex;
    align-items: center;
    column-gap: 50px;
}
@media screen and (max-width:1399px){
    .header-nav{
        column-gap: 40px;
    }
}
@media screen and (max-width:991px){
    .header-nav{
        display: block;
        margin-bottom: 20px;
    }
}

/*  header-nav-item
------------------------------------------------------------------*/
.header-nav-item{
    position: relative;
    display: block;
    padding: 15px 0;
    color: #fff;
    line-height: 1;
    transition: .2s ease-out;
    z-index: 1;
}
.header-nav-item::before{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--accent-color);
    content: "";
    transition: .2s ease-out;
}
/* アクティブ時動作 */
.header-nav-item.active{
    color: var(--accent-color);
}
.header-nav-item.active::before{
    width: 100%;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-nav-item:hover{
        color: var(--accent-color);
    }
    .header-nav-item:hover::before{
        width: 100%;
    }
}
@media screen and (max-width:1399px){
    .header-nav-item{
        
    }
}
@media screen and (max-width:991px){
    .header-nav-item{
        position: relative;
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
        column-gap: .5em;
        height: auto;
        padding: 1.25em 2.5em 1.25em 1em;
        border-bottom: 1px solid #ccc;
        transition: .2s ease-out;
        z-index: 1;
    }
    .header-nav-item::before{
        display: none;
    }
    .header-nav-item::after{
        position: absolute;
        top: 50%;
        right: 1em;
        transform: translateY(-50%);
        width: 1.125em;
        height: 1.125em;
        background: url(../images/common/icon-arrow-white.svg) no-repeat center / contain;
        content: "";
        transition: .2s ease-out;
    }
    /* アクティブ時動作 */
    .header-nav-item.active{
        color: var(--accent-color);
    }
    .header-nav-item.active::after{
        background: url(../images/common/icon-arrow-accent.svg) no-repeat center / contain;
    }
}

/*  header-nav-detail
------------------------------------------------------------------*/
.header-nav-detail{
    display: none;
}
@media screen and (max-width:991px){
    .header-nav-detail{
        display: block;
    }
}
/*  header-nav-logo
------------------------------------------------------------------*/
.header-nav-logo{
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    letter-spacing: 0;
}
/*  header-nav-address
------------------------------------------------------------------*/
.header-nav-address{
    margin-bottom: 12px;
    font-size: .875rem;
    color: #fff;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0;
}
/*  header-nav-map
------------------------------------------------------------------*/
.header-nav-map{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    width: fit-content;
    margin: 0 auto 16px;
    padding: 1em 2em;
    background: var(--accent-color);
    border-radius: 2em;
    font-size: .75rem;
    color: #fff;
    line-height: 1;
}
/*  header-nav-tel
------------------------------------------------------------------*/
.header-nav-tel{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}
.header-nav-tel .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    aspect-ratio: 1 / 1;
    background: var(--accent-color);
    border-radius: 50%;
    font-size: .75rem;
    color: #fff;
}
.header-nav-tel .num{
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: .05em;
}

/*  header-overlay
------------------------------------------------------------------*/
.header-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .8);
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-out;
    z-index: 2;
}
.header-overlay.open{
    opacity: 1;
    visibility: visible;
}




/*------------------------------------------------------------------
  footer
------------------------------------------------------------------*/
footer{
    position: relative;
    padding: 100px 0;
    background: url(../images/common/bg-black.jpg) repeat;
    z-index: 1
}
footer::after{
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    aspect-ratio: 846 / 655;
    background: url(../images/common/mark.png) no-repeat center / cover;
    opacity: .025;
    content: "";
    z-index: -1;
}
@media screen and (max-width:1199px){
    footer{
        padding: 80px 0 30px;
    }
    footer::after{
        bottom: 50%;
        right: 50%;
        transform: translate(50%,50%);
        width: 80%;
        max-width: 500px;
        height: auto;        
    }
}
/*  footer-wrapper
------------------------------------------------------------------*/
.footer-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 60px;
    margin-bottom: 100px;
}
@media screen and (max-width:1199px){
    .footer-wrapper{
        flex-direction: column;
        justify-content: center;
        align-items: initial;
        row-gap: 40px;
        margin-bottom: 80px;
    }
}
/*  footer-logo
------------------------------------------------------------------*/
.footer-logo{
    display: block;
    margin-bottom: 20px;
}
@media screen and (max-width:1199px){
    .footer-logo{
        text-align: center;
    }
}
/*  footer-tel
------------------------------------------------------------------*/
.footer-tel{
    font-size: 1.125rem;
    color: #fff;
    line-height: 1.5;
}
@media screen and (max-width:1399px){
    .footer-tel{
        font-size: 1rem;
    }
}
@media screen and (max-width:1199px){
    .footer-tel{
        text-align: center;
    }
}
@media screen and (max-width:767px){
    
}
/*  footer-nav
------------------------------------------------------------------*/
.footer-nav{
    display: flex;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 20px;
    margin-bottom: 40px;
}
@media screen and (max-width:1399px){
    .footer-nav{
        column-gap: 30px;
        row-gap: 16px;
    }
}
@media screen and (max-width:1199px){
    .footer-nav{
        justify-content: center;
    }
}
@media screen and (max-width:767px){
    .footer-nav{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 8px;
    }    
}
/*  footer-nav-item
------------------------------------------------------------------*/
.footer-nav-item{
    display: block;
    font-size: 1.125rem;
    color: #fff;
    line-height: 1.2;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .footer-nav-item:hover{
        color: var(--accent-color);
    }
}
@media screen and (max-width:1399px){
    .footer-nav-item{
        font-size: 1rem;
    }
}
@media screen and (max-width:767px){
    .footer-nav-item{
        position: relative;
        display: flex;
        align-items: center;
        height: 100%;
        padding: 1em 2em 1em 1em;
        border: 1px solid #aaa;
        font-size: .75rem;
        z-index: 1;
    }
    .footer-nav-item::before{
        display: none;
    }
    .footer-nav-item::after{
        position: absolute;
        top: 50%;
        right: 1em;
        transform: translateY(-50%);
        width: 1.125em;
        height: 1.125em;
        background: url(../images/common/icon-arrow-white.svg) no-repeat center / contain;
        content: "";
    }
}
/*  footer-sns
------------------------------------------------------------------*/
.footer-sns{
    display: flex;
    justify-content: flex-end;
    column-gap: 24px;
    line-height: 1;
}
@media screen and (max-width:1399px){
    .footer-sns{
        column-gap: 16px;
    }
}
@media screen and (max-width:1199px){
    .footer-sns{
        justify-content: center;
    }
}
@media screen and (max-width:767px){
    .footer-sns{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 8px;
    }
}
/*  footer-sns-item
------------------------------------------------------------------*/
.footer-sns-item{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 200px;
    padding: .5em 3em .7em;
    border: 1px solid #aaa;
    font-size: 1.125rem;
    color: #fff;
    transition: .2s ease-out;
}
.footer-sns-item::after{
    position: absolute;
    top: 50%;
    right: .6em;
    transform: translateY(-50%);
    width: 1em;
    height: 1em;
    background: url(../images/common/icon-external-white.svg) no-repeat center / contain;
    content: "";
}
/* ホバー時動作 */
@media (hover:hover) {
    .footer-sns-item:hover{
        color: var(--accent-color);
        border-color: var(--accent-color);
    }
    .footer-sns-item:hover::after{
        background: url(../images/common/icon-external-accent.svg) no-repeat center / contain;
    }
}
@media screen and (max-width:1399px){
    .footer-sns-item{
        font-size: 1rem;
    }
}
@media screen and (max-width:767px){
    .footer-sns-item{
        min-width: initial;
        font-size: .875rem;
    }
}
/*  copyright
------------------------------------------------------------------*/
.copyright{
    font-size: 12px;
    color: #aaa;
    text-align: right;
    line-height: 1.4;
}
@media screen and (max-width:1199px){
    .copyright{
        text-align: center;
    }
}

/*------------------------------------------------------------------
  common contact
------------------------------------------------------------------*/

/*  common-contact
------------------------------------------------------------------*/
.common-contact{
    position: relative;
    padding: 100px 0;
    background: url(../images/home-works.jpg) no-repeat center / cover;
    z-index: 1;
}
.common-contact::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8); /* 黒で90%の不透明度 */
    z-index: 0;
}

@media screen and (max-width:991px){
    .common-contact{
        padding: 80px 0;
    }     
}
@media screen and (max-width:575px){
    .common-contact{
        padding: 60px 0;
    }     
}
/*  common-contact-list
------------------------------------------------------------------*/
.common-contact-list{
    position: relative;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    max-width:900px;
    padding: 20px 0;
    margin: 0 auto;
    z-index: 1;
}
@media screen and (max-width:767px){
    .common-contact-list{
        grid-template-columns: 1fr;
        row-gap: 30px;
        padding: 0;
    }
    .common-contact-list::after{
        display: none;
    }
}
/*  common-contact-box
------------------------------------------------------------------*/
.common-contact-box{
    padding: 0 30px;
    text-align: center;
}
@media screen and (max-width:991px){
    .common-contact-box{
        padding: 0 15px;
        text-align: center;
    }     
}
@media screen and (max-width:767px){
    .common-contact-box{
        padding: 0;
    }     
}
/*  common-contact-icon
------------------------------------------------------------------*/
.common-contact-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2em;
    aspect-ratio: 1 / 1;
    margin: 0 auto 24px;
    border: 1px solid #aaa;
    font-size: 30px;
    color: #fff;
}
@media screen and (max-width:991px){
    .common-contact-icon{
        font-size: 24px;
    }     
}
@media screen and (max-width:767px){
    .common-contact-icon{
        display: none;
    }     
}
/*  common-contact-tel
------------------------------------------------------------------*/
.common-contact-tel{
    margin-bottom: 12px;
    font-family: var(--en-font);
    font-size: 1.5625rem;
    color: #fff;
    line-height: 1;
}
.common-contact-tel .num{
    font-size: 1.6em ;
    --letter-spacing: .025em;
}
@media screen and (max-width:991px){
    .common-contact-tel{
        font-size: 1.25rem;
    }     
}
@media screen and (max-width:767px){
    .common-contact-tel{
        font-size: 1.125rem;
    }     
}
/*  common-contact-time
------------------------------------------------------------------*/
.common-contact-time{
    font-size: 1.125rem;
    color: #fff;
    line-height: 1;
}
@media screen and (max-width:991px){
    .common-contact-time{
        font-size: 1rem;
    }     
}
@media screen and (max-width:767px){
    .common-contact-time{
        font-size: .75rem;
    }     
}
/*  common-contact-mail
------------------------------------------------------------------*/
.common-contact-mail{
    position: relative;
    display: inline-block;
    width: 300px;
    padding: 1em 3em;
    background: #fff;
    font-size: 1.125rem;
    text-align: center;
    color: var(--primary-color);
    line-height: 1.4;
    transition: .2s;
    z-index: 1;
}
.common-contact-mail::after{
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    width: 1.125em;
    height: 1.125em;
    background-image: url(../images/common/icon-arrow-primary.svg);
    background-size: contain;
    content: "";
    transition: .2s;
    z-index: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    /* 通常 */
    .common-contact-mail:hover{
        background: var(--accent-color);
        color: #fff;
    }
    .common-contact-mail:hover::after{
        right: .3em;
        background-image: url(../images/common/icon-arrow-white.svg);
    }
}
@media screen and (max-width:991px){
    .common-contact-mail{
        width: 250px;
        font-size: 1rem;
    }     
}
@media screen and (max-width:767px){
    .common-contact-mail{
        width: fit-content;
    }     
}

/*-----------------------------------------------------------------
  common page
------------------------------------------------------------------*/


/*  page-top
------------------------------------------------------------------*/
.page-top{
    position: relative;
    padding: 150px 20px 120px;
    overflow: hidden;
    background: #333;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .page-top{
        padding: 120px 20px 100px;
    }
}
@media screen and (max-width:991px){
    .page-top{
        padding: 100px 20px 80px;
    }
}
@media screen and (max-width:767px){
    .page-top{
        padding: 80px 20px 70px;
    }
}
/*  page-top-title-en
------------------------------------------------------------------*/
.page-top-title-en{
    position: relative;
    margin-bottom: .2em;
    overflow: hidden;
    font-family: var(--en-font);
    font-size: 64px;
    color: #fff;
    text-align: center;
    line-height: 1;
    --letter-spacing: 0;
    z-index: 3;
}
@media screen and (max-width:1399px){
    .page-top-title-en{ font-size: 72px;}
}
@media screen and (max-width:991px){
    .page-top-title-en{ font-size: 64px;}
}
@media screen and (max-width:767px){
    .page-top-title-en{ font-size: 56px;}
}
@media screen and (max-width:575px){
    .page-top-title-en{ font-size: 48px;}
}
@media screen and (max-width:374px){
    .page-top-title-en{ font-size: 40px;}
}
/*  page-top-title-jp
------------------------------------------------------------------*/
.page-top-title-jp{
    position: relative;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    text-align: center;
    line-height: 1.5;
    z-index: 3;
}
.page-top-title-jp::before,
.page-top-title-jp::after{
    display: inline-block;
    width: 4em;
    height: 1px;
    margin-bottom: .35em;
    background: var(--accent-color);
    content: "";
}
.page-top-title-jp::before{
    margin-right: .5em;
}
.page-top-title-jp::after{
    margin-left: .5em;
}
@media screen and (max-width:1399px){
    .page-top-title-jp{ font-size: 1.375rem;}
}
@media screen and (max-width:991px){
    .page-top-title-jp{ font-size: 1.25rem;}
}
@media screen and (max-width:767px){
    .page-top-title-jp{ font-size: 1rem;}
}
@media screen and (max-width:575px){
    .page-top-title-jp{ font-size: .875rem;}
}

/*  page-top-image
------------------------------------------------------------------*/
.page-top-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}
.page-top-image::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
    opacity: .8;
    content: "";
    z-index: 1;
}
.page-top-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    animation: pageTopImage .8s forwards ease-out;
}
@keyframes pageTopImage {
    from{
        opacity: 0;
        transform: scale(1.1);
    }
    to{
        opacity: 1;
        transform: scale(1);
    }
}

/*------------------------------------------------------------------
  breadcrumb
------------------------------------------------------------------*/
.breadcrumb{
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 10px;
    width: 100%;
    padding: 10px 0;
    font-size: 12px;
    line-height: 1.5;
    z-index: 2;
}
.breadcrumb > li{
    color: #fff;
}
.breadcrumb > li + li::before{
    display: inline-block;
    margin-right: 10px;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
}
.breadcrumb > li > a{
    color: var(--accent-color);
    transition: .2s;
    text-decoration: underline;
}
.breadcrumb > li > a:hover{
    color: hsl(25, 100%, 55%);
}
@media screen and (max-width:767px){
    .breadcrumb{
        font-size: 11px;
    }
}

/*------------------------------------------------------------------
  paging
------------------------------------------------------------------*/
.paging{
    display: flex;
    justify-content: center;
    column-gap: 10px;
}
.paging-text{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #aaa;
    color: #898989;
    transition: .2s ease-out;
}
.paging-text a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 14px;
    transition: .2s ease-out;
}
.paging-text.current{
    background:  var(--primary-color);
    border-color: var(--primary-color);
    color: #fff !important;
    pointer-events: none;
}
/* ホバー時動作 */
@media (hover:hover) {
    .paging-text:hover{
        background:  var(--accent-color);
        border-color: var(--accent-color);
    }
    .paging-text:hover a{
        color:  #fff !important;
    }
}
@media screen and (max-width:767px){
    .paging{
        column-gap: 5px;
    }
    .paging-text{
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

/*------------------------------------------------------------------
  pagetop-btn
------------------------------------------------------------------*/
#pagetop-btn {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 2;
}
#pagetop-btn img:hover {
    animation: rotates 0.7s linear infinite;
}
@keyframes rotates {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}
@media (max-width: 991px) {
    #pagetop-btn img{
        width: 56px;
        height: auto;
    }
}


/*------------------------------------------------------------------
  swiper-slider
------------------------------------------------------------------*/

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

}
/*  swiper-slider-button
------------------------------------------------------------------*/
.swiper-slider-button-prev,
.swiper-slider-button-next{
    position: absolute;
    top: 50%;
    width: 32px;
    aspect-ratio: 1 / 1;
    background: #fff;
    border: 1px solid #333;
    border-radius: 50%;
    transform: translateY(-50%);
    color: #333;
	cursor: pointer;
    transition: .2s ease-out;
    z-index: 2;
}
.swiper-slider-button-prev.swiper-button-disabled,
.swiper-slider-button-next.swiper-button-disabled{
    border-color: #ccc;
    color: #ccc;
    pointer-events: none;
}
.swiper-slider-button-prev{
    left: 5px;
}
.swiper-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;
}
.swiper-slider-button-next{
    right: 5px;
}
.swiper-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) {
    .swiper-slider-button-prev:hover,
    .swiper-slider-button-next:hover,
    .swiper-slider-button-prev:active,
    .swiper-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
    .swiper-slider-button-prev:active,
    .swiper-slider-button-next:active{
        transform: scale(0.8) translateY(-50%);
    }
}
@media (hover:none) {
    .swiper-slider-button-prev:active,
    .swiper-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
        transform: scale(0.8) translateY(-50%);
    }
}