@charset "UTF-8";
/* ======================
slideshow
====================== */

.slideshow-container {
    position: relative;
    width: 100%;
    height: 84vh;
    overflow: hidden;
}

/* === 追加：全スライド共通オーバーレイ === */
.slideshow-container::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%; /* ←濃さ / 範囲は調整可能 */
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 1),  /* 下：濃い */
        rgba(0, 0, 0, 0)     /* 上：透明 */
    );

    pointer-events: none;
    z-index: 2;
}

/* .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 3s ease-in-out;
    object-fit: cover;
    background-size: cover;
    background-position: center;
} */

/* slide の基本スタイル */
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 3s ease-in-out;
}

.slide:nth-child(1) {
    background-image: url(../images/sp_750_1000_01.jpg);
}

.slide:nth-child(2) {
    background-image: url(../images/sp_750_1000_0２.jpg);
}

.slide:nth-child(3) {
    background-image: url(../images/sp_750_1000_03.jpg);
}

.slide:nth-child(4) {
    background-image: url(../images/sp_750_1000_05.jpg);
}

.slide:nth-child(5) {
    background-image: url(../images/sp_750_1000_06.jpg);
}

.slide.active {
    opacity: 1;
}

/* slideshow pc */
@media screen and (min-width: 769px) {
    .slideshow-container {
        height: 80vh;
    }
    
    .slide:nth-child(1) {
        background-image: url(../images/pc_1920_1080_01.jpg);
    }

    .slide:nth-child(2) {
        background-image: url(../images/pc_1920_1080_02.jpg);
    }

    .slide:nth-child(3) {
        background-image: url(../images/pc_1920_1080_03.jpg);
    }

    .slide:nth-child(4) {
        background-image: url(../images/pc_1920_1080_05.jpg);
    }

    .slide:nth-child(5) {
        background-image: url(../images/pc_1920_1080_06.jpg);
    }
}

/* ======================
top
====================== */
.top_overview {
    padding-bottom: 80px;
}

.overview_txt {
    font-size: 1.6rem;
    line-height: 4.0rem;
    padding: 80px 35px;
}

/* top pc */
@media screen and (min-width: 769px) {
    .top_overview {
        padding: 60px 0;
    }

    .pc_flex {
        display: flex;
        align-items: center;
    }
    
    .overview_txt {
        order: 1;
        flex: 1;
        padding: 80px 48px;
    }

    .store_img {
        flex: 2;
    }
}

/* ======================
stores
====================== */
.top_store {
    padding: 40px 0 80px 0;
}

.top_store h2 {
    margin: 0 auto 60px;
    padding: 40px 0 0;
    text-align: center;
    background: url(../images/bg_title.png) top center no-repeat;
    background-size: 60px 28px;
    font-size: 2.0rem;
    font-weight: 700;
}

.ff_noto {
    text-align: center;
}

.ff_noto p {
    font-family: "Noto Sans", sans-serif;
    font-size: 1.5rem;
    display: inline-block;
    align-items: center;
    margin-top: 20px;
    padding-right: 30px;
    background: url(../images/link.png) center right no-repeat;
    background-size: 11px 11px;
}

/* stores pc */
@media screen and (min-width: 769px){
    .top_store {
        padding: 100px 0;
    }

    .top_store h2 {
        margin-bottom: 92px;
        padding: 50px 0 0 0;
    }

    .ff_noto {
        display: table;
        width: 1000px;
        margin: 0 auto;
    }

    .ff_noto img {
        width: 100%;
    }

    .ff_noto p {
        margin-top: 40px;
    }
}

/* ======================
recruit
====================== */
.top_recruit {
    padding: 60px 0;
    background: url(../images/bg_recruit.jpeg) top center no-repeat;
    background-size: cover;
}

.top_recruit h2 {
    color: #000;
    margin: 0 auto 40px;
    padding: 50px 0 0;
    text-align: center;
    background: url(../images/bg_title02.png) top center no-repeat;
    background-size: 37px 34px;
    font-size: 2.0rem;
    font-weight: 700;
}

.top_recruit a {
    display: block;
    width: 280px;
    height: 80px;
    margin: 0 auto;
    padding: 26px 20px 0 32px;
    background-color: #977D3D;
    text-align: center;
}

.top_recruit span {
    display: block;
    font-size: 1.5rem;
    background: url(../images/arrow.png) center left no-repeat;
    min-height: 22px;
    background-size: 22px 22px;
}

/* recruit pc */
@media screen and (min-width: 769px){
    .top_recruit {
        padding: 60px 0 80px 0;
    }

    .top_recruit h2 {
        margin-bottom: 72px;
        padding: 60px 0 0 0;
    }

    .top_recruit a {
        width: 584px;
        height: 108px;
        padding: 32px 70px 0 100px;
    }

    .top_recruit span {
        font-size: 2.2rem;
        min-height: 42px;
        padding-top: 3px;
        background-size: 42px 42px;
    }
}

/* ======================
access
====================== */
.top_access {
    padding: 80px 0;
}

.top_access h2 {
    margin: 0 auto 40px;
    padding: 40px 0 0;
    text-align: center;
    background: url(../images/bg_title.png) top center no-repeat;
    background-size: 60px 28px;
    font-size: 2.0rem;
    font-weight: 700;
}

.map-wrap {
    position: relative;
    padding-bottom: 70%;
    overflow: hidden;
    max-width: 100%;
}

.map-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.layout {
    margin-top: 40px;
    text-align: center;
}

.layout h3,
.address {
    padding-bottom: 20px;
    font-size: 1.5rem;
}

.layout p {
    font-size: 1.5rem;
}

.layout .tel {
    display: block;
    width: 280px;
    margin: 30px auto;
    padding-left: 40px;
    background: url(../images/i_tel.png) center left no-repeat;
    background-size: 32px auto;
    text-align: center;
    font-size: 2.8rem;
}

.spBr {
    display: block;
}

/* access pc */
@media screen and (min-width: 769px){
    .top_access {
        padding: 100px 0;
    }

    .top_access h2 {
        margin-bottom: 92px;
        padding: 50px 0 0 0;
    }
    
    .map-wrap {
        padding-bottom: 42%;
    }

    .layout {
        margin-top: 60px;
    }

    .layout .tel {
        width: 400px;
        margin: 50px auto;
        padding-left: 44px;
        background-size: 35px auto;
        font-size: 4.0rem;
    }

    .spBr {
        display: none;
    }
}