@charset "UTF-8";

/*---------------------------------

共通

---------------------------------*/

html, body {
    scroll-behavior: auto !important;
}
.font-noto-sans {
    font-family: "Noto Sans", sans-serif;
}
section {
    padding: 100px 0 50px;
}
.topbar-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.topbar-social-links img {
    width: 24px;
}
.topbar-social-links a {
    transition: opacity 0.3s;
}
.topbar-social-links a:hover {
    opacity: 0.7;
}
.topbar-lang {
    display: flex;
    margin: 0 0 0 20px;
    padding: 0;
    list-style: none;
}
.topbar-lang li + li {
    position: relative;
    margin-left: 10px;
    padding-left: 10px;
}
.topbar-lang li + li::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-43%);
    width: 1px;
    height: 100%;
    background-color: #000;
    content: "";
}
.topbar-lang a {
    color: #000;
}
.topbar-lang a:hover {
    text-decoration: underline;
}
header.main-header {
    position: sticky;
    top: 0;
    background-color: var(--secondary-color);
}
.footer-banner {
    max-width: 360px;
    margin-bottom: 20px;
}
.footer-banner a {
    display: block;
}
@media (max-width: 1199px) {

    .footer-copyright {
        font-size: 16px;
    }

}
@media (max-width: 991px) {

    .topbar-lang li + li::before {
        height: 80%;
    }
    .topbar-lang a {
        font-size: 15px;
    }
    .responsive-menu-bottom {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding: 30px 0 20px;
    }
    .responsive-menu-bottom .topbar-social-links {
        display: block;
        transform: translateY(2px);
    }
    .responsive-menu-bottom .topbar-social-links a {
        padding: 0;
    }
    .responsive-menu-bottom .topbar-lang {
        display: flex;
    }
    .responsive-menu-bottom .topbar-lang a {
        padding: 0;
    }
    .footer-copyright {
        font-size: 12px;
    }

}
@media (max-width: 767px) {

    section {
        padding: 60px 0 20px;
    }
    .topbar-lang {
        display: none;
    }
    .footer-copyright {
        grid-template-columns: 1fr;
    }
    .footer-left {
        display: contents;
    }
    .footer-banner {
        order: 1;
        width: 80%;
        margin: 0 auto 10px;
    }
    .footer-logo {
        order: 2;
        margin: 0 auto;
    }
    .footer-social-links {
        display: none;
    }
    .footer-copyright-text {
        order: 3;
        width: 100%;
        text-align: center;
    }

}

/*---------------------------------

モーダル

---------------------------------*/

.cm-modal {
    display: grid;
	place-items: center;
	position: fixed;
    inset: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s ease-out;
}
.cm-modal.is-open {
    opacity: 1;
    visibility: visible;
}
.cm-modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgb(0 0 0 / 0.7);
}
.cm-modal-container {
	position: relative;
	width: 90%;
    max-width: 800px;
    max-height: 80vh;
    padding: 80px 40px 40px;
    overflow-y: auto;
    background-color: #fff;
}
.cm-modal-button {
	position: absolute;
    top: 20px;
	right: 20px;
	width: 35px;
    height: 35px;
    color: rgb(0 0 0 / 0.8);
	cursor: pointer;
    background: none;
    border: none;
}
.cm-modal-button::before,
.cm-modal-button::after {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 2px;
    background-color: #000;
    content: "";
}
.cm-modal-button::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.cm-modal-button::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.cm-modal-title {
    margin-bottom: 40px;
    color: #000;
    font-size: 24px;
    text-align: center;
}
.cm-modal-title02 {
    margin: 50px 0 30px;
    color: #000;
    font-size: 20px;
    font-weight: 700;
}
.cm-modal-imgs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.cm-modal-img {
    margin: 30px 0;
    text-align: center;
}
.cm-modal-text {
    color: #000;
}
@media (max-width: 767px) {

    .cm-modal-button {
        top: 15px;
        right: 15px;
    }
    .cm-modal-button::before,
    .cm-modal-button::after {
        width: 30px;
    }
    .cm-modal-container {
        padding: 70px 20px 30px;
    }
    .cm-modal-title {
        margin-bottom: 30px;
        font-size: 20px;
    }
    .cm-modal-title02 {
        margin: 50px 0 25px;
        font-size: 18px;
    }
    .cm-modal-imgs {
        gap: 10px;
    }

}


/*---------------------------------

バナー

---------------------------------*/

.banner {
    position: fixed;
    right: 20px;
    bottom: 40px;
    z-index: 10;
}
.banner a {
    display: block;
    width: 300px;
}
.banner-close {
    display: block;
    position: absolute;
    top: -30px;
    right: 0;
    width: 24px;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}
@media (max-width: 767px) {

        .banner a {
        width: 170px;
    }

}


/*---------------------------------

メインビジュアル

---------------------------------*/

.hero {
    aspect-ratio: 1920 / 1080;
    padding: 0;
}
.hero .container,
.hero .container .row,
.hero .container .row > div {
    height: 100%;
}
.hero-content {
    display: flex;
    align-items: end;
    height: 100%;
}
.hero-content .section-title {
    margin-bottom: 100px;
}
.hero-content .section-title p {
    width: max-content;
    color: #FFF;
    font-family: "Noto Serif JP", serif;
    font-size: 60px;
    font-weight: 700;
}
@media (max-width: 1199px) {

    .hero-content .section-title p {
        font-size: 56px;
    }

}
@media (max-width: 991px) {

    .hero {
        aspect-ratio: 1920 / 1000;
    }
    .hero-content .section-title {
        margin-bottom: 60px;
    }
    .hero-content .section-title p {
        font-size: 44px;
    }

}
@media (max-width: 767px) {

    .hero {
        aspect-ratio: 1 / 1;
    }
    .hero-content .section-title {
        margin-bottom: 40px;
    }
    .hero-content .section-title p {
        font-size: 5.5vw;
    }

}


/*---------------------------------

私たちについて

---------------------------------*/

.about-us {
    margin-top: 60px;
}
.about-text {
    margin-top: 80px;
}
.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}
.about-btn .btn-default {
    width: 360px;
}
@media (max-width: 767px) {

    .about-text {
        margin-top: 0;
    }
    .about-btn {
        text-align: center;
    }
    .about-btn .btn-default {
        width: 280px;
    }

}


/*---------------------------------

お知らせ

---------------------------------*/

.news-inner {
    display: flex;
    justify-content: space-between;
    column-gap: 60px;
}
.news-inner .section-title {
    width: max-content;
}
.news-content {
    flex: 1;
    max-width: 800px;
    max-height: 800px;
    overflow-y: auto;
    padding-right: 20px;
}
.news-item {
    padding: 24px 0;
    border-bottom: 1px solid #FFF;
}
.news-item:last-child {
    border-bottom: none;
}
.news-date {
    display: block;
    margin-bottom: 20px;
    color: #FFF;
    font-size: 16px;
}
.news-title {
    font-size: 16px;
    overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.news-title a {
    color: #FFF;
    transition: color 0.4s;
}
.news-title a:hover {
    color: #DDC1A6;
}
@media (max-width: 1199px) {

    .news-content {
        max-width: 65%;
    }

}
@media (max-width: 767px) {

    .news .section-title {
        margin-bottom: 20px;
    }
    .news-inner {
        display: block;
    }
    .news-content {
        max-width: 100%;
        max-height: 520px;
    }

}


/*---------------------------------

事業内容

---------------------------------*/

.service .post-item-content p {
    margin-bottom: 0;
    font-size: 16px;
}
.service .row:last-child {
    max-width: 870px;
    margin: 0 auto;
}


/*---------------------------------

取り扱いブランド一覧

---------------------------------*/

.brand .project-image a {
    border-radius: 22px;
}
.brand .project-content {
    right: unset;
    max-width: calc(100% - 80px);
}
.brand .project-content p {
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 500;
    text-transform: capitalize;
    color: #FFF;
}
.brand .project-content p a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}
.brand .project-content p a:hover {
    color: #DDC1A6;
}
@media (max-width: 991px) {

    .brand .project-content {
        max-width: calc(100% - 60px);
    }

}
@media (max-width: 767px) {

    .brand .project-image a {
        border-radius: 16px;
    }
    .brand .project-content {
        max-width: calc(100% - 40px);
    }
    .brand .project-content p {
        font-size: 18px;
    }

}


/*---------------------------------

会社概要、代表挨拶

---------------------------------*/

.company-list {
    margin-bottom: 0;
}
.company-list-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    padding: 20px 0;
    border-bottom: 1px solid #FFF;
    font-size: 16px;
    text-align: left;
}
.company-list-item dt {
    font-weight: 400;
    line-height: 1.6;
}
.company-list-item dd {
    margin-bottom: 0;
    line-height: 1.6;
}
.company-list-item dd a {
    color: #FFF;
}
.greeting-text {
    text-align: left;
}
.greeting-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}
.greeting-text p:last-child {
    margin-bottom: 0;
}


/*---------------------------------

運営店舗情報

---------------------------------*/

.store .pricing-image {
    max-width: 450px;
}
.store-title {
    margin-bottom: 30px;
    font-size: 28px;
}
.store-list {
    max-width: 500px;
    margin-bottom: 0;
}
.store-list-item {
    display: grid;
    grid-template-columns: 170px 1fr;
    padding: 20px 0;
    border-bottom: 1px solid #FFF;
    font-size: 16px;
    text-align: left;
}
.store-list-item dt {
    font-weight: 400;
    line-height: 1.6;
}
.store-list-item dd {
    margin-bottom: 0;
    line-height: 1.6;
}
.store-list-item dd a {
    color: #FFF;
}
.store-img {
    aspect-ratio: 1 / 1.3;
    max-width: 450px;
    margin-right: 95px;
}
.store-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 991px) {

    .store-list-item {
        grid-template-columns: 120px 1fr;
    }
    .store-img {
        margin-right: 40px;
    }

}
@media (max-width: 767px) {

    .store-title {
        margin-bottom: 15px;
        font-size: 22px;
    }
    .store-img {
        margin: 0 auto 30px;
    }

}


/*---------------------------------

CSR

---------------------------------*/

.csr .row:last-child {
    max-width: 870px;
    margin: 0 auto;
}
.csr-text {
    margin-bottom: 30px;
    text-align: center;
}
.csr-text p:first-child {
    font-size: 20px;
    font-weight: bold;
}
.csr .post-item-content p {
    margin-bottom: 0;
    font-size: 16px;
}
@media (max-width: 767px) {

    .csr-text p:first-child {
        font-size: 18px;
    }

}


/*---------------------------------

採用情報

---------------------------------*/

.recruit-text p {
    font-size: 16px;
}
.recruit-btn .btn-default {
    width: 360px;
}
.recruit .why-choose-item .icon-box {
    width: 70px;
    height: 70px;
}
.recruit .why-choose-item-content h3 {
    margin-bottom: 20px;
    font-size: 20px;
}
.recruit .why-choose-item-content p {
    font-size: 16px;
}
@media (max-width: 991px) {

    .recruit-text {
        margin-bottom: 80px;
    }
    .recruit-btn {
        margin-bottom: 80px;
    }

}
@media (max-width: 767px) {

    .recruit-text {
        margin-bottom: 60px;
    }
    .recruit-btn {
        margin-bottom: 60px;
        text-align: center;
    }
    .recruit-btn .btn-default {
        width: 280px;
    }

}


/*---------------------------------

お問い合わせ

---------------------------------*/

.contact .section-title {
    margin-bottom: 30px;
}
.contact-text {
    margin-bottom: 80px;
}
.contact-text p {
    font-size: 18px;
}
.contact-btn .btn-default {
    width: 360px;
}
@media (max-width: 767px) {

    .contact-text {
        margin-bottom: 60px;
    }
    .contact-text p {
        font-size: 16px;
    }
    .contact-btn {
        text-align: center;
    }
    .contact-btn .btn-default {
        width: 280px;
    }

}
