@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;
    background: url(../images/home-hero-bg.png) no-repeat bottom center / contain;
    z-index: 1;
}
@media screen and (max-width:991px){
    .home-hero{
        margin-top: 20px;
    }
}
@media screen and (max-width:767px){
    .home-hero{
        background: url(../images/home-hero-bg-sp.png) no-repeat bottom center / contain;
    }
}
/*  home-hero-container
------------------------------------------------------------------*/
.home-hero-container{
    padding: 0 2.5vw;
}
@media screen and (max-width:767px){
    .home-hero-container{
        padding: 0 5vw;
    }
}
/*  home-hero-slider
------------------------------------------------------------------*/
.home-hero-slider{
    position: relative;
    width: 80vw;
    max-width: 1600px;
    margin-left: auto;
    z-index: 1;
}
.home-hero-slider .swiper-slide{
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1199px){
    .home-hero-slider{
        width: 90vw;
        height: 500px;
    }
}
@media screen and (max-width:991px){
    .home-hero-slider{
        width: 85vw;
        height: auto;
        aspect-ratio: 5 / 4;
    }
}
@media screen and (max-width:767px){
    .home-hero-slider{
        width: 90%;
        aspect-ratio: 5 / 6;
    }
}
/*  home-hero-slider
------------------------------------------------------------------*/
.home-hero-slider-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: homeHeroImage 1s forwards ease-out;
}
@keyframes homeHeroImage {
    from{
        opacity: 0;
        transform: scale(1.1);
    }
    to{
        opacity: 1;
        transform: scale(1);
    }
}
/*  home-hero-detail
------------------------------------------------------------------*/
.home-hero-detail{
    position: absolute;
    bottom: 0;
    left: 2.5vw;
    z-index: 1;
}
@media screen and (max-width:767px){
    .home-hero-detail{
        position: relative;
        left: 0;
        margin-top: -31vw;
        z-index: 2;
    }
}
/*  home-hero-title
------------------------------------------------------------------*/
.home-hero-title{
    width: 45vw;
    max-width: 900px;
    min-width: 600px;
    margin-bottom: 1vw;
}
@media screen and (max-width:767px){
    .home-hero-title{
        width: 85vw;
        max-width: 500px;
        min-width: initial;
        margin-bottom: 8vw;
    }
}
/*  home-hero-text
------------------------------------------------------------------*/
.home-hero-text{
    width: fit-content;
    padding: 1.5em 1.5em 1.5em 0;
    background: var(--primary-color);
    border-top-right-radius: 20px;
    font-size: clamp(1rem,1.2vw,1.5rem);
    color: #fff;
}
@media screen and (max-width:767px){
    .home-hero-text{
        padding: 1.5em 0;
    }
}
@media screen and (max-width:575px){
    .home-hero-text{
        font-size: .875rem;
    }
}

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

/*  home-about
------------------------------------------------------------------*/
.home-about{
    position: relative;
    padding: 150px 0 20vw;
    background: url(../images/home-about-bg.png) no-repeat bottom center / contain,
                var(--primary-color);
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-about{
        padding: 120px 0 20vw;
    }
}
@media screen and (max-width:1199px){
    .home-about{
        padding: 100px 0 25vw;
    }
}
@media screen and (max-width:991px){
    .home-about{
        padding: 80px 0 20vw;
    }
}
@media screen and (max-width:767px){
    .home-about{
        padding: 40px 0 40vw;
    }
}
/*  home-about-wrapper
------------------------------------------------------------------*/
.home-about-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 60px;
}
@media screen and (max-width:991px){
    .home-about-wrapper{
        column-gap: 40px;
    }
}
@media screen and (max-width:767px){
    .home-about-wrapper{
        flex-direction: column;
        justify-content: initial;
    }
}
/*  home-about-image
------------------------------------------------------------------*/
.home-about-image{
    position: relative;
    flex-shrink: 0;
    z-index: 1;
}
.home-about-image .photo{
    overflow: hidden;
    border-radius: 50px;
}
.home-about-image .treat{
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateY(50%);
    width: 49%;
    z-index: 1;
}
@media screen and (max-width:1199px){
    .home-about-image{
        width: 400px;
    }
}
@media screen and (max-width:991px){
    .home-about-image{
        width: 320px;
    }
}
@media screen and (max-width:767px){
    .home-about-image{
        width: fit-content;
        margin: 0 auto 40px;
    }
    .home-about-image .photo{
        border-radius: 20px;
    }
    .home-about-image .treat{
        transform: translateY(20%);
        width: 40%;
    }
}
/*  home-about-text
------------------------------------------------------------------*/
.home-about-text{
    margin-bottom: 1.5em;
    font-size: 1.125rem;
    color: #fff;
}
.home-about-text:last-of-type{
    margin-bottom: 0;
}
@media screen and (max-width:1199px){
    .home-about-text{
        font-size: 1rem;
    }
}
@media screen and (max-width:991px){
    .home-about-text{
        font-size: .875rem;
    }
}

/*------------------------------------------------------------------
  home-support
------------------------------------------------------------------*/

/*  home-support
------------------------------------------------------------------*/
.home-support{
    position: relative;
    background: url(../images/home-support-bg.png) no-repeat bottom center / contain;
    z-index: 2;
}
@media screen and (max-width:1699px){
    .home-support{
        padding-bottom: 180px;
    }
}
@media screen and (max-width:1399px){
    .home-support{
        padding-bottom: 150px;
    }
}
@media screen and (max-width:1199px){
    .home-support{
        padding-bottom: 120px;
    }
}
@media screen and (max-width:991px){
    .home-support{
        padding-bottom: 100px;
    }
}
@media screen and (max-width:767px){
    .home-support{
        padding-bottom: 70px;
        margin-top: -30vw;
    }
}
/*  home-support-image
------------------------------------------------------------------*/
.home-support-image{
    position: absolute;
    top: -260px;
    right: 0;
    width: 44vw;
    z-index: 1;
}
.home-support-image .photo{
    position: relative;
    clip-path: url(#imageClipLogo);
    overflow: hidden;
    z-index: 1;
}
.home-support-image .photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-support-image .treat{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 70%);
    z-index: 1;
}
@media screen and (max-width:991px){
    .home-support-image{
        position: relative;
        top: initial;
        right: initial;
        width: 100%;
        margin-bottom: 20vw;
    }
}
/*  home-support-detail
------------------------------------------------------------------*/
.home-support-detail{
    position: relative;
    width: 740px;
    z-index: 2;
}
@media screen and (max-width:1199px){
    .home-support-detail{
        width: 640px;
    }
}
@media screen and (max-width:991px){
    .home-support-detail{
        width: 100%;
    }
}
/*  home-support-text
------------------------------------------------------------------*/
.home-support-text{
    margin-bottom: 1.5em;
    font-size: 1.125rem;
}
.home-support-text:last-of-type{
    margin-bottom: 3em;
}
@media screen and (max-width:1199px){
    .home-support-text{
        font-size: 1rem;
    }
}
@media screen and (max-width:991px){
    .home-support-text{
        font-size: .875rem;
    }
}
/*  home-support-btns
------------------------------------------------------------------*/
.home-support-btns{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 20px;
}
.home-support-btns > li > .btn{
    width: 100%;
}
@media screen and (max-width:767px){
    .home-support-btns{
        grid-template-columns: 1fr;
        row-gap: 12px;
    }
    .home-support-btns > li{
        text-align: center;
    }
    .home-support-btns > li > .btn{
        width: auto;
    }
}

/*------------------------------------------------------------------
  home-meronpan
------------------------------------------------------------------*/

/*  home-meronpan
------------------------------------------------------------------*/
.home-meronpan{
    position: relative;
    padding: 150px 0;
    background: var(--light-color);
    z-index: 2;
}
@media screen and (max-width:1399px){
    .home-meronpan{
        padding: 120px 0;
    }
}
@media screen and (max-width:1199px){
    .home-meronpan{
        padding: 100px 0;
    }
}
@media screen and (max-width:991px){
    .home-meronpan{
        padding: 80px 0 60px;
    }
}
@media screen and (max-width:767px){
    .home-meronpan{
        padding: 40px 0 60px;
    }
}
/*  home-meronpan-wrapper
------------------------------------------------------------------*/
.home-meronpan-wrapper{
    display: flex;
    align-items: center;
    column-gap: 70px;
}
@media screen and (max-width:1199px){
    .home-meronpan-wrapper{
        column-gap: 30px;
    }
}
@media screen and (max-width:991px){
    .home-meronpan-wrapper{
        flex-direction: column;
    }
}
/*  home-meronpan-image
------------------------------------------------------------------*/
.home-meronpan-image{
    position: relative;
    flex-shrink: 0;
    width: 590px;
    z-index: 1;
}
.home-meronpan-image .photo{
    position: relative;
    clip-path: url(#imageClipLogo);
    overflow: hidden;
    z-index: 1;
}
.home-meronpan-image .photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-meronpan-image .treat{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30.5%;
    transform: translateY(40%);
    z-index: 1;
}
@media screen and (max-width:1199px){
    .home-meronpan-image{
        width: 480px;
    }
}
@media screen and (max-width:991px){
    .home-meronpan-image{
        width: 100%;
        margin-bottom: 30px;
    }
    .home-meronpan-image .treat{
        transform: translateY(10%);
    }
}
/*  home-meronpan-text
------------------------------------------------------------------*/
.home-meronpan-text{
    margin-bottom: 1.5em;
    font-size: 1.125rem;
}
.home-meronpan-text:last-of-type{
    margin-bottom: 3em;
}
@media screen and (max-width:1199px){
    .home-meronpan-text{
        font-size: 1rem;
    }
}
@media screen and (max-width:991px){
    .home-meronpan-text{
        font-size: .875rem;
    }
}

/*------------------------------------------------------------------
  home-activity
------------------------------------------------------------------*/

/*  home-activity
------------------------------------------------------------------*/
.home-activity{
    position: relative;
    padding-bottom:  140px;
    background: url(../images/home-activity-bg.png) no-repeat bottom center / contain,
                var(--light-color);
    z-index: 2;
}
@media screen and (max-width:1399px){
    .home-activity{
        padding-bottom: 120px;
    }
}
@media screen and (max-width:1199px){
    .home-activity{
        padding-bottom: 100px;
    }
}
@media screen and (max-width:991px){
    .home-activity{
        padding-bottom: 80px;
    }
}
@media screen and (max-width:767px){
    .home-activity{
        padding-bottom: 60px;
        background: url(../images/home-activity-bg-sp.png) no-repeat bottom center / contain,
                    var(--light-color);
    }
}
/*  home-activity-box
------------------------------------------------------------------*/
.home-activity-box{
    padding: 50px;
    background: #fff;
    border-radius: 25px;
}
@media screen and (max-width:991px){
    .home-activity-box{
        padding: 40px;
    }
}
@media screen and (max-width:575px){
    .home-activity-box{
        padding: 30px 24px;
        border-radius: 20px;
    }
}
/*  home-activity-box-inner
------------------------------------------------------------------*/
.home-activity-box-inner{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    column-gap: 50px;
}
@media screen and (max-width:991px){
    .home-activity-box-inner{
        column-gap: 30px;
    }
}
@media screen and (max-width:767px){
    .home-activity-box-inner{
        flex-direction: column;
    }
}
/*  home-activity-image
------------------------------------------------------------------*/
.home-activity-image{
    position: relative;
    width: 510px;
    aspect-ratio: 17 / 15;
    z-index: 1;
}
.home-activity-image .photo01{
    position: absolute;
    top: 20%;
    left: 0;
    width: 58.8%;
    border-radius: 25px;
    overflow: hidden;
    z-index: 2;
}
.home-activity-image .photo02{
    position: absolute;
    top: 0;
    right: 0;
    width: 58.8%;
    border-radius: 25px;
    overflow: hidden;
    z-index: 1;
}
.home-activity-image .treat{
    position: absolute;
    bottom: 0;
    right: 9%;
    width: 40%;
    z-index: 3;
}
@media screen and (max-width:767px){
    .home-activity-image{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        column-gap: 20px;
        aspect-ratio: initial;
        width: auto;
        margin-bottom: 10vw;
    }
    .home-activity-image .photo01{
        position: relative;
        top: initial;
        width: 100%;
        border-radius: 20px;
    }
    .home-activity-image .photo02{
        position: relative;
        width: 100%;
        border-radius: 20px;
    }
    .home-activity-image .treat{
        right: 50%;
        transform: translate(50%, 40%);
        width: 32%;
    }
}
/*  home-activity-detail
------------------------------------------------------------------*/
.home-activity-detail{
    max-width: 580px;
}
/*  home-activity-text
------------------------------------------------------------------*/
.home-activity-text{
    margin-bottom: 1.5em;
    font-size: 1.125rem;
}
.home-activity-text:last-of-type{
    margin-bottom: 3em;
}
@media screen and (max-width:1199px){
    .home-activity-text{
        font-size: 1rem;
    }
}
@media screen and (max-width:991px){
    .home-activity-text{
        font-size: .875rem;
    }
}


/*/////////////////////////////////////////////////////////////////
  oasis.html
/////////////////////////////////////////////////////////////////*/

/*  facility-about-images
------------------------------------------------------------------*/
.facility-about-images{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}
.facility-about-images > figure{
    overflow: hidden;
    border-radius: 30px;
}
.facility-about-images > figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.facility-about-images > figure.vertical{
    grid-row: 1 / 3;
}
@media screen and (max-width:991px){
    .facility-about-images{
        gap: 20px;
    }
    .facility-about-images > figure{
        border-radius: 20px;
    }
}
@media screen and (max-width:575px){
    .facility-about-images{
        gap: 10px;
    }
    .facility-about-images > figure{
        border-radius: 10px;
    }
}

/*/////////////////////////////////////////////////////////////////
  activity.html
/////////////////////////////////////////////////////////////////*/

/*  activity-category-list
------------------------------------------------------------------*/
.activity-category-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    margin-bottom: 60px;
}
@media screen and (max-width:991px){
    .activity-category-list{
        grid-template-columns: repeat(3,1fr);
        margin-bottom: 40px;
    }
}
@media screen and (max-width:767px){
    .activity-category-list{
        grid-template-columns: repeat(2,1fr);
        margin-bottom: 30px;
    }
}
@media screen and (max-width:575px){
    .activity-category-list{
        gap: 8px;
    }
}
/*  activity-category-btn
------------------------------------------------------------------*/
.activity-category-btn{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 3.5em;
    padding: 0 1em;
    border-radius: 2em;
    background: #ccc;
    text-align: center;
    font-size: 1rem;
    line-height: 1.2;
    transition: .2s ease-out;
    z-index: 1;
}
.activity-category-btn.active{
    background: var(--primary-color);
    color: #fff;
    pointer-events: none;
}
@media (hover:hover) {
    .activity-category-btn:hover{
        background: var(--accent-color);
    }
}
@media screen and (max-width:991px){
    .activity-category-btn{
        font-size: .875rem;
    }
}
@media screen and (max-width:575px){
    .activity-category-btn{
        font-size: .75rem;
    }
}

/* activity-list
------------------------------------------------------------------*/
.activity-list{
    border-top: 1px solid #ada39c;
}
/* activity-list-item
------------------------------------------------------------------*/
.activity-list-item{
    position: relative;
    display: block;
    padding: 24px 0;
    border-bottom: 1px solid #ada39c;
    transition: .2s ease-out;
}
.activity-list-item .detail{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 8px;
    margin-bottom: 8px;
}
.activity-list-item .new{
    font-size: 1rem;
    color: var(--red-color);
    letter-spacing: 0;
    line-height: 1;
}
.activity-list-item .date{
    font-size: 1rem;
    color: #615754;
    letter-spacing: 0;
    line-height: 1;
}
.activity-list-item .category{
    padding: .3em 1em;
    background: var(--primary-color);
    border-radius: 4px;
    font-size: .875rem;
    color: #fff;
    letter-spacing: 0;
    line-height: 1;
}
.activity-list-item .title{
    line-height: 1.5;
}
.activity-list-item .view{
    position: relative;
    display: block;
    width: fit-content;
    padding: .75em 2em .75em 1em;
    margin-top: 12px;
    background: var(--accent-color);
    border-radius: 4px;
    font-size: .875rem;
    line-height: 1;
    transition: .2s ease-out;
}
.activity-list-item .view::after{
    position: absolute;
    top: 50%;
    right: .5em;
    transform: translateY(-50%);
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .activity-list-item .view:hover{
        background: var(--primary-color);
        color: #fff;
    }
    .activity-list-item .view:hover::after{
        right: 0;
    }
}
@media (hover:none) {
    .activity-list-item .view:active{
        background: var(--primary-color);
        color: #fff;
    }
    .activity-list-item .view:active::after{
        right: 0;
    }
}
@media screen and (max-width:991px){
    .activity-list-item{
        padding: 20px 0;
    }
    .activity-list-item .detail{
        column-gap: 8px;
        margin-bottom: 6px;
    }
    .activity-list-item .new{
        font-size: .875rem;
    }
    .activity-list-item .date{
        font-size: .875rem;
    }
    .activity-list-item .category{
        font-size: .75rem;
    }
    .activity-list-item .view{
        margin-top: 8px;
        font-size: .75rem;
    }
}

/*  activity-container
------------------------------------------------------------------*/
.activity-container{
    max-width: 1100px;
    padding: 0 60px;
    margin: 0 auto;
}
@media screen and (max-width:991px){
    .activity-container{
        padding: 0 6vw;
    }
}
/*  activity-detail
------------------------------------------------------------------*/
.activity-detail{
    display: flex;
    align-items: center;
    column-gap: 12px;
    margin-bottom: 12px;
}
.activity-detail .new{
    font-size: 1rem;
    color: var(--red-color);
    letter-spacing: 0;
    line-height: 1;
}
.activity-detail .date{
    font-size: 1rem;
    color: #615754;
    letter-spacing: 0;
    line-height: 1;
}
.activity-detail .category{
    padding: .3em 1em;
    background: var(--primary-color);
    border-radius: 4px;
    font-size: .875rem;
    color: #fff;
    letter-spacing: 0;
    line-height: 1;
}
@media screen and (max-width:575px){
    .activity-detail{
        column-gap: 8px;
        margin-bottom: 4px;
    }
    .activity-detail .date{
        font-size: .75rem;
    }
    .activity-detail .category{
        font-size: .75rem;
    }
}
/*  activity-slider
------------------------------------------------------------------*/
.activity-slider{
    position: relative;
    margin-bottom: 10px;
    z-index: 1;
}
.activity-slider .swiper-slide{
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #fff;
}
.activity-slider .swiper-slide a{
    display: block;
    height: 100%;
}
.activity-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*  activity-thumb-slider
------------------------------------------------------------------*/
.activity-thumb-slider{
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    z-index: 1;
}
.activity-thumb-slider .swiper-wrapper{
    justify-content: center;
}
.activity-thumb-slider .swiper-slide{
    width: 80px;
    aspect-ratio: 1 / 1;
    filter: brightness(0.3);
    cursor: pointer;
}
.activity-thumb-slider .swiper-slide.swiper-slide-thumb-active{
    filter: brightness(1);
}
.activity-thumb-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;

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


/*/////////////////////////////////////////////////////////////////
  mahoroba.html
/////////////////////////////////////////////////////////////////*/

/*  oneday-flow
------------------------------------------------------------------*/
.oneday-flow{
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 30px;
    margin-bottom: 40px;
}
@media screen and (max-width:991px){
    .oneday-flow{
        column-gap: 20px;
    }
}
/*  oneday-flow-title
------------------------------------------------------------------*/
.oneday-flow-title{
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--accent-color);
}
@media screen and (max-width:1399px){
    .oneday-flow-title{
        font-size: 1.5rem;
    }
}
@media screen and (max-width:991px){
    .oneday-flow-title{
        font-size: 1.25rem;
    }
}
@media screen and (max-width:767px){
    .oneday-flow-title{
        font-size: 1.125rem;
    }
}
/*  oneday-flow-list
------------------------------------------------------------------*/
.oneday-flow-list{
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 12px;
    z-index: 1;
}
.oneday-flow-list::after{
    position: absolute;
    top: 0;
    left: 2.5em;
    width: 2px;
    height: 100%;
    background: var(--black-color);
    content: "";
    z-index: -1;
}
.oneday-flow-list > li{
    display: grid;
    grid-template-columns: 3em 1fr;
    column-gap: 1em;
    padding: 1em;
    background: #fff;
    border-radius: 10px;
    line-height: 1.5;
}
.oneday-flow-list > li > .time{
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 0;
}

/*  staff-list
------------------------------------------------------------------*/
.staff-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
}
@media screen and (max-width:991px){
    .staff-list{
        
    }
}
/*  staff-box
------------------------------------------------------------------*/
.staff-box{
    display: grid;
    grid-template-columns: 120px 1fr;
    column-gap: 40px;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
}
@media screen and (max-width:991px){
    .staff-box{
        grid-template-columns: 100px 1fr;
        column-gap: 20px;
        padding: 30px 24px;
    }
}
@media screen and (max-width:767px){
    .staff-box{
        grid-template-columns: 1fr;
        row-gap: 20px;
    }
}
/*  staff-box-head
------------------------------------------------------------------*/
@media screen and (max-width:767px){
    .staff-box-head{
        display: grid;
        grid-template-columns: 60px 1fr;
        align-items: center;
        column-gap: 12px;
    }
}
/*  staff-box-photo
------------------------------------------------------------------*/
.staff-box-photo{
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 12px;
    border-radius: 50%;
    overflow: hidden;
}
.staff-box-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:767px){
    .staff-box-photo{
        margin-bottom: 0;
    }
}
/*  staff-box-name
------------------------------------------------------------------*/
.staff-box-name{
    font-size: .875rem;
    font-weight: bold;
    text-align: center;
}
@media screen and (max-width:991px){
    .staff-box-name{
        font-size: .75rem;
    }
}
@media screen and (max-width:767px){
    .staff-box-name{
        font-size: 1rem;
        text-align: left;
    }
}
/*  wide-map
------------------------------------------------------------------*/
.wide-map{
    height: 300px;
}
.wide-map iframe{
    width: 100%;
    height: 100%;
}

/*/////////////////////////////////////////////////////////////////
  activity.html
/////////////////////////////////////////////////////////////////*/

/*  activity-common-box
------------------------------------------------------------------*/
.activity-common-box{
    display: grid;
    grid-template-columns: 200px 1fr;
    column-gap: 30px;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    margin-bottom: 40px;
}
@media screen and (max-width:767px){
    .activity-common-box{
        grid-template-columns: 120px 1fr;
        column-gap: 20px;
    }
}
@media screen and (max-width:575px){
    .activity-common-box{
        grid-template-columns: 1fr;
        row-gap: 30px;
        padding: 30px 20px;
    }
}
/*  activity-common-box-image
------------------------------------------------------------------*/
.activity-common-box-image{
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
}
.activity-common-box-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:575px){
    .activity-common-box-image{
        aspect-ratio: 16 / 9;
    }
}
/*  activity-common-box-text
------------------------------------------------------------------*/
.activity-common-box-text{
    font-size: 1rem;
    margin-bottom: 1.5em;
}
.activity-common-box-text:last-of-type{
    margin-bottom: 0;
}
@media screen and (max-width:991px){
    .activity-common-box-text{
        font-size: .875rem;
    }
}

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

/*  recruit-category-list
------------------------------------------------------------------*/
.recruit-category-list{
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 10px;
}
@media screen and (max-width:1399px){
    .recruit-category-list{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:767px){
    .recruit-category-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .recruit-category-list{
        gap: 8px;
    }
}
/*  recruit-category-btn
------------------------------------------------------------------*/
.recruit-category-btn{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 3.5em;
    padding: 0 1.5em;
    border-radius: 2em;
    background: var(--accent-color);
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0;
    line-height: 1.2;
    transition: .2s ease-out;
    z-index: 1;
}
.recruit-category-btn::after{
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    font-size: 12px;
}
@media (hover:hover) {
    .recruit-category-btn:hover{
        background: var(--primary-color);
        color: #fff;
    }
}
@media screen and (max-width:991px){
    .recruit-category-btn{
        font-size: .875rem;
    }
}
@media screen and (max-width:575px){
    .recruit-category-btn{
        font-size: .75rem;
    }
    .recruit-category-btn::after{
        font-size: 10px;
    }
}

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

/*  contact-tel-box
------------------------------------------------------------------*/
.contact-tel-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    text-align: center;
}
.contact-tel-box .title{
    margin-bottom: 5px;
    font-size: 1.625rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.4;
}
.contact-tel-box .num{
    margin-bottom: 5px;
    font-size: 1.5rem;
    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{
    line-height: 1.4;
}
@media screen and (max-width:1199px){
    .contact-tel-box .title{
        font-size: 1.5rem;
    }
    .contact-tel-box .num{
        font-size: 1.25rem;
    }
    .contact-tel-box .title{
        font-size: 1.25rem;
    }
}
@media screen and (max-width:575px){
    .contact-tel-box{
        padding: 20px;
    }
    .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;
    }
}

/*/////////////////////////////////////////////////////////////////
  タグコレカスタマイズ
/////////////////////////////////////////////////////////////////*/

/*  tagcolle-item
------------------------------------------------------------------*/
.tagcolle-item:nth-of-type(odd){
    margin-top: 30px;
}
.tagcolle-item > a{
    border-radius: 30px;
}
@media screen and (max-width:767px){
    .tagcolle-item:nth-of-type(odd){
        margin-top: 20px;
    }
    .tagcolle-item > a{
        border-radius: 12px;
    }
}