@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-movie
------------------------------------------------------------------*/
.home-hero-movie{
    height: 100vh;
    height: 100svh;
    min-height: 700px;
    overflow: hidden;
}
.home-hero-movie::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
    content: "";
    z-index: 1;
}
.home-hero-movie video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:575px){
    .home-hero-movie{
        min-height: 540px;
    }
}
@media print{
    .home-hero-movie{
        height: 700px;
    }
}
/*  home-hero-detail
------------------------------------------------------------------*/
.home-hero-detail{
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 0 40px 40px;
    z-index: 2;
}
@media screen and (max-width:767px){
    .home-hero-detail{
        padding: 0 4vw 50px;
    }
}
/*  home-hero-title
------------------------------------------------------------------*/
.home-hero-title{
    margin-bottom: .1em;
    font-family: var(--en-font);
    font-size: 150px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.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:1399px){
    .home-hero-title{
        font-size: 10vw;
    }
}
@media screen and (max-width:767px){
    .home-hero-title{
        font-size: 19vw;
    }
}
/*  home-hero-caption
------------------------------------------------------------------*/
.home-hero-caption{
    opacity: 0;
    font-size: 2.25rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
    letter-spacing: .1em;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width:1399px){
    .home-hero-caption{
        font-size: 2.5vw;
    }
}
@media screen and (max-width:767px){
    .home-hero-caption{
        font-size: 5vw;
    }
}

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

/*  home-about
------------------------------------------------------------------*/
.home-about{
    position: relative;
    padding: 180px 0 230px;
    background: url(../images/home/about-bg.jpg) no-repeat center / cover;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-about{
        padding: 120px 0 200px;
    }
}
@media screen and (max-width:575px){
    .home-about{
        padding: 80px 0 180px;
    }
}
/*  home-about-caption
------------------------------------------------------------------*/
.home-about-caption{
    margin-bottom: .5em;
    font-family: var(--en-font);
    font-size: 5.625rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 1;
}
@media screen and (max-width:1399px){
    .home-about-caption{ font-size: 5rem;}
}
@media screen and (max-width:991px){
    .home-about-caption{ font-size: 4.5rem;}
}
@media screen and (max-width:767px){
    .home-about-caption{ font-size: 4rem;}
}
@media screen and (max-width:575px){
    .home-about-caption{ font-size: 3.5rem;}
}
/*  home-about-text
------------------------------------------------------------------*/
.home-about-text{
    margin-bottom: 60px;
    font-size: 1.125rem;
    color: #fff;
    text-align: center;
}
@media screen and (max-width:1399px){
    .home-about-text{
        margin-bottom: 60px;
        font-size: 1rem;
    }
}
@media screen and (max-width:991px){
    .home-about-text{
        margin-bottom: 40px;
        font-size: .875rem;
    }
}
@media screen and (max-width:767px){
    .home-about-text{
        text-align: left;
    }
}

/*------------------------------------------------------------------
  home-service
------------------------------------------------------------------*/

/*  home-service
------------------------------------------------------------------*/
.home-service{
    position: relative;
    padding: 150px 0;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-service{
        padding: 120px 0;
    }
}
@media screen and (max-width:991px){
    .home-service{
        padding: 100px 0;
    }
}
@media screen and (max-width:575px){
    .home-service{
        padding: 80px 0;
    }
}
/*  home-service-inner
------------------------------------------------------------------*/
.home-service-inner{
    display: flex;
    justify-content: space-between;
    column-gap: 60px;
}
@media screen and (max-width:1199px){
    .home-service-inner{
        flex-direction: column;
    }
}
/*  home-service-contents
------------------------------------------------------------------*/
.home-service-contents{
    width: 1000px;
}
@media screen and (max-width:1199px){
    .home-service-contents{
        width: 100%;
    }
}
/*  home-service-list
------------------------------------------------------------------*/
.home-service-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 72px;
}
@media screen and (max-width:1199px){
    .home-service-list{
        grid-template-columns: repeat(3,1fr);
        column-gap: 20px;
    }
}
@media screen and (max-width:767px){
    .home-service-list{
        grid-template-columns: 1fr;
        row-gap: 50px;
    }
}
/*  home-service-list-item
------------------------------------------------------------------*/
.home-service-list-item .head{
    display: flex;
    align-items: center;
    column-gap: 12px;
    margin-bottom: 20px;
    font-family: var(--en-font);
    font-size: .875rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}
.home-service-list-item .head::after{
    display: block;
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #00c0fa 0%, #015eea 100%);
    content: "";
}
.home-service-list-item .body{
    display: flex;
    justify-content: space-between;
    column-gap: 40px;
}
.home-service-list-item .title{
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}
.home-service-list-item .text{
    margin-bottom: 20px;
    line-height: 1.8;
}
.home-service-list-item .view{
    position: relative;
    display: block;
    width: fit-content;
    padding: .75em 3em;
    border: 1px solid var(--primary-color);
    border-radius: 2em;
    font-family: var(--en-font);
    font-size: .75rem;
    color: var(--primary-color);
    text-align: center;
    line-height: 1;
    transition: .2s ease-out;
    z-index: 1;
}
.home-service-list-item .view::after{
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: bold;
    transition: .2s ease-out;
    z-index: 1;
}
.home-service-list-item .image{
    width: 288px;
    flex-shrink: 0;
}
.home-service-list-item .image img{
    width: 100%;
    height: auto;
}
@media (hover:hover) {
    .home-service-list-item .view:hover{
        background: var(--primary-color);
        color: #fff;
    }
    .home-service-list-item .view:hover::after{
        right: .5em;
    }
}
@media screen and (max-width:1399px){
    .home-service-list-item .head{
        margin-bottom: 16px;
        font-size: .75rem;
    }
    .home-service-list-item .title{
        font-size: 1.75rem;
    }
}
@media screen and (max-width:1199px){
    .home-service-list-item .head{
        column-gap: 4px;
    }
    .home-service-list-item .head::before{
        display: block;
        flex: 1;
        height: 2px;
        background: linear-gradient(90deg, #00c0fa 0%, #015eea 100%);
        content: "";
    }
    .home-service-list-item .body{
        flex-direction: column-reverse;
        row-gap: 30px;
    }
    .home-service-list-item .title{
        font-size: 1.5rem;
        text-align: center;
    }
    .home-service-list-item .view{
        margin: 0 auto;
    }
    .home-service-list-item .image{
        width: 100%;
    }
}

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

/*  home-products
------------------------------------------------------------------*/
.home-products{
    position: relative;
    padding: 150px 0;
    background: url(../images/home/products-bg.jpg) no-repeat center / cover;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-products{
        padding: 120px 0;
    }
}
@media screen and (max-width:991px){
    .home-products{
        padding: 100px 0;
    }
}
@media screen and (max-width:575px){
    .home-products{
        padding: 80px 0;
    }
}
/*  home-products-text
------------------------------------------------------------------*/
.home-products-text{
    margin-bottom: 50px;
    font-size: 1.125rem;
    color: #fff;
    text-align: center;
}
@media screen and (max-width:1399px){
    .home-products-text{
        margin-bottom: 40px;
        font-size: 1rem;
    }
}
@media screen and (max-width:991px){
    .home-products-text{
        margin-bottom: 30px;
        font-size: .875rem;
    }
}
@media screen and (max-width:767px){
    .home-products-text{
        text-align: left;
    }
}


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

/*  home-topics
------------------------------------------------------------------*/
.home-topics{
    position: relative;
    padding: 150px 0;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-topics{
        padding: 120px 0;
    }
}
@media screen and (max-width:991px){
    .home-topics{
        padding: 100px 0;
    }
}
@media screen and (max-width:767px){
    .home-topics{
        padding: 80px 0;
    }
}
/*  home-topics-head
------------------------------------------------------------------*/
.home-topics-head{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    column-gap: 30px;
    margin-bottom: 50px;
}
@media screen and (max-width:991px){
    .home-topics-head{
        flex-direction: column;
        align-items: initial;
        row-gap: 30px;
    }
}
/*  home-topics-category-list
------------------------------------------------------------------*/
.home-topics-category-list{
    display: flex;
    gap: 8px;
}
@media screen and (max-width:991px){
    .home-topics-category-list{
        display: grid;
        grid-template-columns: repeat(4,1fr);
        gap: 8px;
    }
}
@media screen and (max-width:767px){
    .home-topics-category-list{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:575px){
    .home-topics-category-list{
        grid-template-columns: repeat(2,1fr);
    }
}
/*  home-topics-category-btn
------------------------------------------------------------------*/
.home-topics-category-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5em 2em;
    background: #ccc;
    border-radius: 2em;
    font-size: .875rem;
    color: #666;
    text-align: center;
    line-height: 1.2;
    transition: .2s ease-out;
}
.home-topics-category-btn.active{
    background: var(--primary-color);
    color: #fff;
}
/* ホバー時動作 */
@media (hover:hover) {    
    .home-topics-category-btn:hover{
        background: var(--accent-color);
        color: #fff;
    }
}
@media (hover:none) {    
    .home-topics-category-btn:active{
        background: var(--accent-color);
        color: #fff;
    }
}
@media screen and (max-width:991px){
    .home-topics-category-btn{
        padding: 1em;
        font-size: .75rem;
    }
}
/*  home-topics-list
------------------------------------------------------------------*/
.home-topics-list{
    display: none;
    max-height: 700px;
    padding-right: 12px;
    margin-right: -12px;
    overflow: auto;
}
.home-topics-list.is-show{
    display: block;
}
@media screen and (max-width:575px){
    .home-topics-list{
        max-height: 500px;
    }
}
/*  home-topics-list-item
------------------------------------------------------------------*/
.home-topics-list-item{
    border-bottom: 1px solid #ccc;
}
.home-topics-list-item:first-of-type{
    border-top: 1px solid #ccc;
}
.home-topics-list-item .head{
    position: relative;
    padding: 36px 70px 36px 0;
    cursor: pointer;
    z-index: 1;
}
.home-topics-list-item .body{
    display: none;
}
.home-topics-list-item .body-inner{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 32px;
    padding-bottom: 36px;
    z-index: 1;
}
.home-topics-list-item .captions{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 10px;
    margin-bottom: 12px;
}
.home-topics-list-item .new{
    font-family: var(--en-font);
    font-weight: bold;
    color: var(--red-color);
    line-height: 1;
}
.home-topics-list-item .date{
    font-family: var(--en-font);
    color: #515860;
    line-height: 1;
}
.home-topics-list-item .category{
    padding: .5em 2em;
    border: 1px solid var(--primary-color);
    border-radius: 2em;
    font-size: .75rem;
    color: var(--primary-color);
    line-height: 1;
}
.home-topics-list-item .title{
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.5;
    transition: .2s ease-out;
}
.home-topics-list-item .arrow{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid #515860;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    color: #515860;
    transition: .2s ease-out;
}
.home-topics-list-item .arrow::after{
    content: "\f107";
    font-family: "Font Awesome 6 Free";
}
.home-topics-list-item .arrow.open::after{
    content: "\f106";
}
.home-topics-list-item .photos{
    display: flex;
    column-gap: 20px;
}
.home-topics-list-item .photos figure{
    width: 100%;
    max-width: 240px;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}
.home-topics-list-item .photos figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-topics-list-item .files{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-topics-list-item .head:hover .arrow{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }    
}
@media (hover:none) {
    .home-topics-list-item .head:active .arrow{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }    
}
@media screen and (max-width:1399px){
    .home-topics-list-item .head{
        padding: 24px 60px 24px 0;
    }
    .home-topics-list-item .body{
        padding-bottom: 24px;
    }
    .home-topics-list-item .captions{
        column-gap: 12px;
        row-gap: 8px;
    }
    .home-topics-list-item .new{
        font-size: .875rem;
    }
    .home-topics-list-item .date{
        font-size: .875rem;
    }
    .home-topics-list-item .category{
        font-size: .625rem;
    }
    .home-topics-list-item .title{
        font-size: 1.125rem;
    }
    .home-topics-list-item .arrow{
        width: 40px;
        height: 40px;
        font-size: 10px;
    }
}
@media screen and (max-width:991px){
    .home-topics-list-item .title{
        font-size: 1rem;
    }
}
@media screen and (max-width:575px){
    .home-topics-list-item .head{
        padding: 20px 48px 20px 0;
    }
    .home-topics-list-item .body{
        padding-bottom: 20px;
    }
    .home-topics-list-item .captions{
        margin-bottom: 8px;
    }
    .home-topics-list-item .new{
        font-size: .75rem;
    }
    .home-topics-list-item .date{
        font-size: .75rem;
    }
    .home-topics-list-item .title{
        font-size: .875rem;
    }
    .home-topics-list-item .arrow{
        width: 32px;
        height: 32px;
    }
    .home-topics-list-item .photos{
        column-gap: 8px;
    }
    .home-topics-list-item .photos figure{
        max-width: initial;
    }
    .home-topics-list-item .files{
        display: grid;
        grid-template-columns: 1fr;
    }
}


/*/////////////////////////////////////////////////////////////////
  service.html
/////////////////////////////////////////////////////////////////*/

/*  service-item
------------------------------------------------------------------*/
.service-item{
    margin-bottom: 60px;
}
.service-item:last-of-type{
    margin-bottom: 0;
}


/*/////////////////////////////////////////////////////////////////
  coastal_shipping.html
/////////////////////////////////////////////////////////////////*/

/*  coastal_shipping-table
------------------------------------------------------------------*/
.coastal_shipping-table{
    display: grid;
    grid-template-columns: auto 1fr auto 1fr;
}
.coastal_shipping-table dt,
.coastal_shipping-table dd{
    padding: .75em 1em;
    line-height: 1.5;
    border-bottom: 1px solid #bec8d3;
}
.coastal_shipping-table dt{
    background: var(--primary-color);
    color: #fff;
}
.coastal_shipping-table dd{
    background: var(--primary-light-color);
}
@media screen and (max-width:767px){
    .coastal_shipping-table{
        grid-template-columns: auto 1fr;
    }
}

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

/*  products-slider
------------------------------------------------------------------*/
.products-slider{
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
    z-index: 1;
}
.products-slider .swiper-slide{
    width: 100% !important;
}
.products-slider .swiper-slide a{
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #efefef;
}
.products-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*  products-thumb-slider
------------------------------------------------------------------*/
.products-thumb-slider{
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.products-thumb-slider .swiper-slide{
    width: 48px;
    aspect-ratio: 1 / 1;
    filter: brightness(0.3);
    cursor: pointer;
}
.products-thumb-slider .swiper-slide.swiper-slide-thumb-active{
    filter: brightness(1);
}
.products-thumb-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:575px){
    .products-thumb-slider .swiper-slide{
        width: 48px;
    }
}
/*  products-slider-button
------------------------------------------------------------------*/
.products-slider-button-prev,
.products-slider-button-next{
    position: absolute;
    top: 50%;
    width: 24px;
    aspect-ratio: 1 / 1;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
    color: #fff;
    transition: .2s ease-out;
    cursor: pointer;
    z-index: 2;
}
.products-slider-button-prev.swiper-button-disabled,
.products-slider-button-next.swiper-button-disabled{
    background: #ccc;
    color: #777;
    pointer-events: none;
}
.products-slider-button-prev{
    left: 4px;
}
.products-slider-button-prev::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "\f104";
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: bold;
}
.products-slider-button-next{
    right: 4px;
}
.products-slider-button-next::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: bold;
}
/* ホバー時動作 */
@media (hover:hover) {
    .products-slider-button-prev:hover,
    .products-slider-button-next:hover,
    .products-slider-button-prev:active,
    .products-slider-button-next:active{
        background: var(--accent-color);
        border-color: var(--accent-color);
        color: #fff;
    }
    .products-slider-button-prev:active,
    .products-slider-button-next:active{
        transform: scale(0.8) translateY(-50%);
    }
}
@media (hover:none) {
    .products-slider-button-prev:active,
    .products-slider-button-next:active{
        background: var(--accent-color);
        border-color: var(--accent-color);
        color: #fff;
        transform: scale(0.8) translateY(-50%);
    }
}


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

/*  company-map
------------------------------------------------------------------*/
.company-map{
    aspect-ratio: 500 / 429;
    overflow: hidden;
}
.company-map iframe{
    width: 100%;
    height: 100%;
}
@media screen and (max-width:575px){
    .company-map{
        height: auto;
        aspect-ratio: 4 / 3;
    }
}

/*/////////////////////////////////////////////////////////////////
  recruit.html
/////////////////////////////////////////////////////////////////*/

/*  recruit-slider-wrapper
------------------------------------------------------------------*/
.recruit-slider-wrapper{
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    overflow: hidden;
    z-index: 1;
}
/*  recruit-slider
------------------------------------------------------------------*/
.recruit-slider{
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
    z-index: 1;
}
.recruit-slider .swiper-slide a{
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #efefef;
}
.recruit-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*  recruit-thumb-slider
------------------------------------------------------------------*/
.recruit-thumb-slider{
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.recruit-thumb-slider .swiper-slide{
    width: 86px;
    aspect-ratio: 1 / 1;
    filter: brightness(0.3);
    cursor: pointer;
}
.recruit-thumb-slider .swiper-slide.swiper-slide-thumb-active{
    filter: brightness(1);
}
.recruit-thumb-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:575px){
    .recruit-thumb-slider .swiper-slide{
        width: 48px;
    }
}
/*  recruit-slider-button
------------------------------------------------------------------*/
.recruit-slider-button-prev,
.recruit-slider-button-next{
    position: absolute;
    top: 50%;
    width: 36px;
    aspect-ratio: 1 / 1;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
    color: #fff;
    transition: .2s ease-out;
    cursor: pointer;
    z-index: 2;
}
.recruit-slider-button-prev.swiper-button-disabled,
.recruit-slider-button-next.swiper-button-disabled{
    background: #ccc;
    color: #777;
    pointer-events: none;
}
.recruit-slider-button-prev{
    left: 4px;
}
.recruit-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;
}
.recruit-slider-button-next{
    right: 4px;
}
.recruit-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) {
    .recruit-slider-button-prev:hover,
    .recruit-slider-button-next:hover,
    .recruit-slider-button-prev:active,
    .recruit-slider-button-next:active{
        background: var(--accent-color);
        border-color: var(--accent-color);
        color: #fff;
    }
    .recruit-slider-button-prev:active,
    .recruit-slider-button-next:active{
        transform: scale(0.8) translateY(-50%);
    }
}
@media (hover:none) {
    .recruit-slider-button-prev:active,
    .recruit-slider-button-next:active{
        background: var(--accent-color);
        border-color: var(--accent-color);
        color: #fff;
        transform: scale(0.8) translateY(-50%);
    }
}


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

/*  contact-tel-box
------------------------------------------------------------------*/
.contact-tel-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 30px 16px;
    background: var(--primary-light-color);
    text-align: center;
}
.contact-tel-box .title{
    margin-bottom: 16px;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1;
}
.contact-tel-box .num{
    display: grid;
    grid-template-columns: repeat(2,auto);
    align-items: baseline;
    row-gap: 4px;
    margin-bottom: 16px;
    font-family: var(--en-font);
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}
.contact-tel-box .num dt{
    font-size: 1.25rem;
}
.contact-tel-box .num dd{
    font-size: 1.75rem;
}
.contact-tel-box .time{
    font-size: .875rem;
    line-height: 1;
}
@media screen and (max-width:575px){
    .contact-tel-box .title{
        font-size: 1.125rem;
    }
    .contact-tel-box .num{
        font-size: 1.5rem;
    }
    .contact-tel-box .time{
        font-size: .75rem;
    }
}