@charset "UTF-8";

html {
    font-size: 100%;
    
}

body {
    --color1: #24292e;
    --color2: #FFFFFF;
    --color3: #00000085;
    --color4: #49535C;
    background-color: var(--color1);
}

a {
    text-decoration: none;
}

p {
    font-size: 1.3rem;
}

img {
    max-width: 100%;
}

li {
    list-style: none;
}


.site-title{
    /* line-height: 1px; */
    font-weight: 72;
    font-size: 24px;
}

.site-title a {
    color: var(--color2);
    display: block;
}


.section-title {
    font-size: 48px;
    margin-bottom: 48px;
    color: var(--color2);
}

.section-title h2 {
    border-bottom: solid var(--color2) 1px;
    margin-bottom: 24px;
}

.section-title p {
    font-size: 24px;
    opacity: 0.7;
}

.section-inner {
    padding: 0 5%;
    margin-bottom: 96px;
    color: var(--color2);
}

/* Header */

#header {
    /* max-width: 1920px; */
    width: 100vw;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 5%;
    word-break: keep-all;
    position: fixed;
    z-index: 9;
    background-color: var(--color1);
    box-shadow: 0px 5px 5px var(--color3);
}

#header h1 {
    height: 72px;
    padding: 18px;
    align-items: center;
}

#header .header-default {
    height: 48px;
    display: flex;
    align-items: center;
    margin: 0 24px;
}

#header .HideOnMobile {
    padding: 0px 16px;
}

#header ul li a {
    color: var(--color2);
    transition: all 0.3s;
}

#header ul li a:hover{
    opacity: 0.5;
}

#header ul li a img {
    min-width: 149px;
}

.header-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: #24292e85;
    backdrop-filter: blur(10px);
    box-shadow: -10px 0px 10px var(--color3);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.header-sidebar li {
    width: 100%;
    padding: 16px;
}

.header-sidebar a {
    width: 100%;
}

.MenuButton {
    display: none;
}

/* Main */


#BodyLayer {
    background-color: var(--color1);
    position: relative;
    z-index: 1;
    padding-top: 72px;
}

#hero {
    color: var(--color2);
    background-image: url(../img/exceed_hero.jpg);
    background-position: center;
    background-size: cover;
    height: 640px;
    display: flex;
    align-items: center;
    margin-bottom: 96px;
}

#hero .hero-inner {
    align-items: center;
    width: 100%;
    padding: 0 5%;
}

#hero .hero-inner p {
    font-size: 0.8rem;
}

#hero .hero-inner h1 {
    font-size: 72px;
}

/* About Section */

.Exceed-sub-title {
    margin-bottom: 24px;
}

.Exceed-section-contents-container {
    display: flex;
    color: var(--color2);
    padding: 0 5%;
    justify-content: center;
    align-items: start;
}


.Exceed-section-contents{
    width: 100%;
}

.Exceed-contents-text {
    display: flex;
    justify-content: center;
    text-align: center;
}

/* Photo */


/* Store-info */

.Store-info-section-contents-container {
    display: flex;
    color: var(--color2);
    margin: 5% auto;
    padding: 3%;
    justify-content: center;
    /* flex-wrap: wrap; */
    align-items: center;
    background-color: var(--color4);
    /* min-width: 1152px; */
}

.Store-info-section-contents-left {
    /* width: 35%; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 24px;
}


.Store-info-contents-left-title {
    margin-bottom: 24px;
}

.icon {
    width: 40px;
    height: 40px;
    margin: 20px;
}

.line-title, .line-item {
    padding: 5px;
}

.Store-info-section-contents-right {
    /* width: 45%; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.map {
    width: 480px;
    height: 480px;
}


/*  */

.button-1 {
    color: var(--color2);
    border: 1px var(--color2) solid;
    padding: 8px;
}

.Group-section-contents-carads-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: var(--color4);
    padding: 36px 72px;
}

.Group-contents-cards {
    width: 360px;
    aspect-ratio: 0.75;
    /* height: 480px; */
    background-color: var(--color2);
    color: #000000;
    border-radius: 8px;
    overflow: hidden;
    margin: 18px;
    box-shadow: 4px 4px 8px var(--color3);
    opacity: 0.8;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Group-contents-cards:hover {
    opacity: 1.0;
}

.cards-img {
    max-width: 100%;
    height: 75%;
    box-shadow: 0px 4px 8px var(--color3);
}

.Cards-title {
    margin-top: 12px;
    font-size: 24px;
}

.Cards-place {
    font-size: 16px;
    margin-bottom: 12px;
}

.Cards-link {
    font-size: 16px;
    color: #000000;
    text-decoration: underline;
}

.Cards-link:hover {
    opacity: 0.5;
}


/* Rcruit Section */

.Recruit-section {
    background-color: var(--color4);
    padding: 3% 5%;
    margin-bottom: 96px;
    color: var(--color2);
}

.Recruit-title {
    font-size: 48px;
    text-align: center;
}

.Recruit-text {
    text-align: center;
}



.recruit-buttons {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.recruit-buttons a {
    display: inline-block;
    color: var(--color2);
    padding: 10px 20px;
    text-decoration: none;
    margin: 10px 30px;
    border: 1px solid var(--color2);
    border-radius: 5px;
}


#FooterLayer {
    background-color: var(--color3);
    /* max-width: 1920px; */
    width: 100vw;
    /* height: 480px; */
    /* display: flex; */
    align-items: center;
    padding: 0% 5%;
    padding-top: 96px;
    /* z-index: 9;
    box-shadow: 0px -5px 5px var(--color3); */
}

.footer-navi {
    background-color: var(--color4);
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0% 25%;
    margin-bottom: 96px;
}

.footer-navi li {
    font-size: 16px;
    text-align: center;
}

.footer-navi a {
    color: var(--color2);
}

.footer-navi a:hover {
    opacity: 0.5;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color2);
    margin-bottom: 24px;
}

.footer-info :nth-child(2) {
    font-size: 16px;
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: var(--color2);
}

/* Sp */

@media screen and (max-width: 1152px) {
    .HideOnMobile{
        display: none;
    }

    .MenuButton {
        display: block;
    }

    .About-section-contents-container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: start;
    }
    
    /* 店舗情報 */
    .ins-link {
        display: flex;
        justify-content: center;
    }

    .Store-info-section-contents-container {
        display: flex;
        flex-direction: column;
    }

    .Store-info-contents-left-title {
        text-align: center;
    }

    .footer-navi {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

@media screen and (max-width: 600px) {

    .section-title {
        font-size: 36px;
    }

    .header-sidebar {
        width: 100%;
    }

    #hero .hero-inner h1 {
        font-size: 48px;
    }

    .Group-contents-cards {
        width: 100%;
        aspect-ratio: 0.75;
    }

    .map {
        width: 100%;
        aspect-ratio: 1;
    }

    .recruit-buttons {
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-top: 24px;
    }
}

