@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;
    max-width: 1920px;
    margin: 0 auto 150px;
    padding-left: 120px;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-hero{
        margin-bottom: 120px;
    }
}
@media screen and (max-width:991px){
    .home-hero{
        padding-left: 80px;
        margin-bottom: 80px;
    }
}
@media screen and (max-width:575px){
    .home-hero{
        padding-left: 0;
        margin-bottom: 60px;
    }
}
@media print{
    .home-hero{
        padding-left: 60px;
    }
}
/*  home-hero-slider
------------------------------------------------------------------*/
.home-hero-slider{
    max-width: 1700px;
    margin-left: auto;
}
.home-hero-slider .swiper-slide{
    background: #fff;
    overflow: hidden;
}
@media screen and (max-width:1399px){
    .home-hero-slider .swiper-slide{
        height: 600px;
    }
}
@media screen and (max-width:991px){
    .home-hero-slider .swiper-slide{
        height: 500px;
    }
}
@media screen and (max-width:575px){
    .home-hero-slider .swiper-slide{
        height: calc(100vh - 60px);
        height: calc(100svh - 60px);
        min-height:480px;
    }
}
@media print{
    .home-hero-slider .swiper-slide{
        height: 500px;
    }
    .home-hero-slider .swiper-slide img{
        width: auto;
        height: 500px;
    }
}
/*  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);
    }
}
@media print{
    .home-hero-slider-image{
        width: auto;
        height: 500px;
    }
}
/*  home-hero-detail
------------------------------------------------------------------*/
.home-hero-detail{
    position: absolute;
    left: min(3vw,70px);
    bottom: min(5.2vw,100px);
    z-index: 2;
}
@media screen and (max-width:1399px){
    .home-hero-detail{
        left: 30px;
        bottom: 60px;
    }
}
@media screen and (max-width:575px){
    .home-hero-detail{
        left: 16px;
    }
}
@media print{
    .home-hero-detail{
        left: 0;
    }
}
/*  home-hero-treat
------------------------------------------------------------------*/
.home-hero-treat{
    position: relative;
    width: clamp(600px,41.66vw,800px);
    z-index: 1;
}
@media screen and (max-width:991px){
    .home-hero-treat{
        width: 500px;
    }
}
@media screen and (max-width:575px){
    .home-hero-treat{
        width: 90vw;
    }
}
/*  home-hero-title
------------------------------------------------------------------*/
.home-hero-title{
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: .5em;
    margin-top: -10px;
    font-size: clamp(36px,2.5vw,48px);
    font-weight: bold;
    color: #fff;
    line-height: 1;
    z-index: 2;
}
.home-hero-title .wrap{
    position: relative;
    display: block;
    width: fit-content;
    padding: .25em;
    overflow: hidden;
    animation: hero-title-wrap .05s .85s forwards;
}
.home-hero-title .wrap::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    content: "";
    z-index: 1;
    animation: hero-title-wrap-after 1s .4s forwards;
}
.home-hero-title .wrap .inner{
    opacity: 0;
    animation: hero-title-inner .05s .85s forwards;
}
@media screen and (max-width:991px){
    .home-hero-title{
        font-size: 30px;
    }
}
@media screen and (max-width:767px){
    .home-hero-title{
        font-size: min(6.5vw, 30px);
    }
}
@media print{
    .home-hero-title{
        font-size: 30px;
    }
    .home-hero-title .wrap{
        background: linear-gradient(0deg, #f772d1 0%, #c872f2 100%);
    }
    .home-hero-title .wrap::after{
        display: none;
    }
    .home-hero-title .wrap .inner{
        opacity: 1;
    }
}
/* アニメーション */
@keyframes hero-title-wrap {
    from{ background: transparent;}
    to{ background: linear-gradient(0deg, #f772d1 0%, #c872f2 100%);}
}
@keyframes hero-title-wrap-after {
    0%{ width: 0; left: 0;}
    40%{ width: 100%; left: 0;}
    50%{ width: 100%; left: 0;}
    100%{ width: 100%; left: 100%;}
}
@keyframes hero-title-inner {
    from{ opacity: 0;}
    to{ opacity: 1;}
}

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

/*  home-about-wrapper
------------------------------------------------------------------*/
.home-about-wrapper{
    display: flex;
    max-width: 1920px;
    margin: 0 auto;
}
@media screen and (max-width:767px){
    .home-about-wrapper{
        flex-direction: column-reverse;
        padding: 0 6vw;
        row-gap: 40px;
    }
}
/*  home-about-detail
------------------------------------------------------------------*/
.home-about-detail{
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 100px;
}
@media screen and (max-width:1399px){
    .home-about-detail{
        padding: 40px 60px;
    }
}
@media screen and (max-width:1199px){
    .home-about-detail{
        width: 50%;
    }
}
@media screen and (max-width:991px){
    .home-about-detail{
        padding: 20px 40px;
    }
}
@media screen and (max-width:767px){
    .home-about-detail{
        width: 100%;
        padding: 0;
    }
}
@media print{
    .home-about-detail{
        width: 50%;
        padding: 20px;
    }
    .home-about-detail br{
        display: none !important;
    }
}
/*  home-about-image
------------------------------------------------------------------*/
.home-about-image{
    overflow: hidden;
}
.home-about-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1199px){
    .home-about-image{
        width: 50%;
    }
}
@media screen and (max-width:767px){
    .home-about-image{
        width: 100%;
    }
}
@media print{
    .home-about-image{
        width: 50%;
    }
}

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

/*  home-service-link
------------------------------------------------------------------*/
.home-service-link{
    display: block;
}
.home-service-link .image{
    margin-bottom: 24px;
    overflow: hidden;
}
.home-service-link .image img{
    transition: .2s ease-out;
}
.home-service-link .title{
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.2;
    transition: .2s ease-out;
}
.home-service-link .title::before{
    flex-shrink: 0;
    width: .6em;
    aspect-ratio: 1 / 1;
    background: var(--primary-color);
    border-radius: 50%;
    content: "";
    transition: .2s ease-out;
}
.home-service-link .title::after{
    position: relative;
    right: 5px;
    flex: 1;
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-size: .8em;
    font-weight: bold;
    color: var(--primary-color);
    text-align: right;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-service-link:hover .image img{
        transform: scale(1.1);
        filter: brightness(.5);
    }
    .home-service-link:hover .title::before{
        background: var(--accent-color);
        transform: scale(1.5);
    }
    .home-service-link:hover .title::after{
        right: 0;
        color: var(--accent-color);
    }
}
@media screen and (max-width:1399px){
    .home-service-link .image{
        margin-bottom: 20px;
    }
    .home-service-link .title{
        column-gap: 8px;
        font-size: 1.125rem;
    }
}
@media screen and (max-width:767px){
    .home-service-link .image{
        margin-bottom: 16px;
    }
    .home-service-link .title{
        column-gap: 4px;
        font-size: 1rem;
    }
}
@media screen and (max-width:575px){
    .home-service-link .image{
        aspect-ratio: 7 / 3;
    }
    .home-service-link .image img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

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

/*  home-links
------------------------------------------------------------------*/
.home-links{
    position: relative;
    display: block;
    height: 100%;
    padding-bottom: 60px;
}
.home-links .image{
    margin-bottom: 24px;
    overflow: hidden;
}
.home-links .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.home-links .title{
    display: flex;
    align-items: baseline;
    column-gap: 15px;
    margin-bottom: 16px;
    line-height: 1;
}
.home-links .title .en{
    font-family: var(--en-font);
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}
.home-links .title .jp{
    font-size: 1rem;
    font-weight: bold;
}
.home-links .view{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding-right: 6px;
    font-family: var(--en-font);
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    transition: .2s ease-out;
}
.home-links .view::before{
    flex: 1;
    height: 1px;
    margin-right: 20px;
    background: #ccc;
    content: "";
    transition: .2s ease-out;
}
.home-links .view i{
    position: relative;
    right: 0;
    margin-left: 8px;
    transition: .2s ease-out;
}
@media (hover:hover) {
    .home-links:hover .image img{
        transform: scale(1.1);
        filter: brightness(.5);
    }
    .home-links:hover .view{
        color: var(--accent-color);
    }
    .home-links:hover .view::before{
        background-color: var(--accent-color);
    }
    .home-links:hover .view i{
        right: -4px;
        color: var(--accent-color);
    }
    
}
@media screen and (max-width:991px){
    .home-links{
        padding-bottom: 40px;
    }
    .home-links .image{
        margin-bottom: 16px;
    }
    .home-links .title{
        column-gap: 8px;
        margin-bottom: 12px;
    }
    .home-links .title .en{
        font-size: 2.5rem;
    }
    .home-links .title .jp{
        font-size: .875rem;
    }
    .home-links .view{
        font-size: .875rem;
    }
}


/*/////////////////////////////////////////////////////////////////
  business.html
/////////////////////////////////////////////////////////////////*/

.business-roseberry-box{
    height: 100%;
    padding: 30px;
    background: #ffe7ec;
}
.business-roseberry-box .image{
    height: 120px;
    padding: 12px 20px;
    margin-bottom: 20px;
    background: #fff;
}
.business-roseberry-box .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.business-roseberry-box .title{
    margin-bottom: 8px;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
}
.business-roseberry-box .text{
    line-height: 1.7;
}
@media screen and (max-width:1199px){
    .business-roseberry-box .image{
        height: 100px;
        margin-bottom: 16px;
    }
    .business-roseberry-box .title{
        font-size: 1.125rem;
    }
}
@media screen and (max-width:575px){
    .business-roseberry-box{
        padding: 20px 12px;
    }
    .business-roseberry-box .image{
        height: 80px;
    }
    .business-roseberry-box .title{
        font-size: 1rem;
    }
    .business-roseberry-box .text{
        font-size: .75rem;
    }
}


/*/////////////////////////////////////////////////////////////////
  works.html
/////////////////////////////////////////////////////////////////*/

.works-table{
    width: 100%;
}
.works-table > tbody > tr > th,
.works-table > tbody > tr > td{
    padding: 1em .5em;
    border: 1px solid #ccc;
    vertical-align: middle;
    text-align: center;
    line-height: 1.4;
}
.works-table > tbody > tr > th{
    background: var(--primary-color);
    color: #fff;
}
@media screen and (max-width:575px){
    .works-table > tbody > tr > th,
    .works-table > tbody > tr > td{
        font-size: .75rem;
    }
}


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

/*  company-map
------------------------------------------------------------------*/
.company-map{
    height: 300px;
    margin-bottom: 20px;
}
.company-map iframe{
    width: 100%;
    height: 100%;
}
/*  company-access-box
------------------------------------------------------------------*/
.company-access-box{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    row-gap: 30px;
    padding: 30px;
    background: #efefef;
}
@media screen and (max-width:575px) {
    .company-access-box{
        justify-content: center;
    }
}

/*  company-access-list
------------------------------------------------------------------*/
.company-access-list{
    display: flex;
    flex-direction: column;
    row-gap: .5em;
    line-height: 1.5;
}
.company-access-list > li{
    position: relative;
    padding-left: 1.25em;
}
.company-access-list > li > i{
    position: absolute;
    top: .3em;
    left: 0;
    color: var(--primary-color);
}


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

/*  recruit-welfare
------------------------------------------------------------------*/
.recruit-welfare{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-bottom: 20px;
}
@media screen and (max-width:1399px){
    .recruit-welfare{
        gap: 10px;
    }
}
@media screen and (max-width:1199px){
    .recruit-welfare{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:991px){
    .recruit-welfare{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .recruit-welfare{
        gap: 4px;
    }
}
/*  recruit-welfare-item
------------------------------------------------------------------*/
.recruit-welfare-item{
    padding: 30px 15px;
    background: #fff;
    border-radius: 10px;
    text-align: center;
}
.recruit-welfare-item .image{
    width: 70px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 20px;
}
.recruit-welfare-item .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.recruit-welfare-item .title{
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.2;
}
@media screen and (max-width:991px){
    .recruit-welfare-item{
        display: flex;
        align-items: center;
        column-gap: 10px;
        padding: 10px;
    }
    .recruit-welfare-item .image{
        width: 40px;
        margin: initial;
    }
    .recruit-welfare-item .title{
        font-size: 1rem;
        text-align: left;
    }
}
@media screen and (max-width:767px){
    .recruit-welfare-item{
        display: flex;
        align-items: center;
        column-gap: 8px;
        padding: 8px;
        border-radius: 4px;
    }
    .recruit-welfare-item .image{
        width: 24px;
        margin: initial;
    }
    .recruit-welfare-item .title{
        font-size: 0.875rem;
    }
}

/*  recruit-entry
------------------------------------------------------------------*/
.recruit-entry{
    display: flex;
    align-items: center;
    max-width: 600px;
    padding: 10px 16px 10px 10px;
    margin: 0 auto;
    column-gap: 16px;
    border: 1px solid #ccc;
    overflow: hidden;
    transition: .2s ease-out;
}
.recruit-entry .image{
    flex-shrink: 0;
    width: 100px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.recruit-entry .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.recruit-entry .detail{
    width: 100%;
}
.recruit-entry .caption{
    margin-bottom: 8px;
    font-family: var(--en-font);
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}
.recruit-entry .title{
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}
.recruit-entry .arrow{
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    aspect-ratio: 1 / 1;
    border: 1px solid #aaa;
    border-radius: 50%;
    font-size: 10px;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .recruit-entry:hover{
        background: var(--primary-light-color);
        border-color: var(--primary-color);
    }
    .recruit-entry:hover .image img{
        transform: scale(1.1);
        filter: brightness(.7);
    }
    .recruit-entry:hover .arrow{
        transform: scale(.8);
        background: var(--primary-color);
        color: #fff;
    }
}
@media screen and (max-width:575px){
    .recruit-entry{
        padding: 8px 12px 8px 8px;
        column-gap: 12px;
    }
    .recruit-entry .image{
        width: 60px;
    }
    .recruit-entry .caption{
        margin-bottom: 4px;
        font-size: .875rem;
    }
    .recruit-entry .title{
        font-size: 1.125rem;
    }
    .recruit-entry .arrow{
        width: 32px;
    }
}

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