@charset "utf-8";

/* ===============================================
    汎用クラス
=============================================== */

/* セクション共通設定 */
.home-section {
    padding-top: 96px;
    padding-bottom: 96px;
}

/* もっと見るボタン */
.more-btn {
    text-decoration: none;
    display: block;
    border: 1px solid var(--gray);
    max-width: 160px;
    line-height: 48px;
    margin-left: auto;
    text-align: center;
    position: relative;
    color: var(--gray);
    letter-spacing: 0.05em;
    font-family: var(--caption-font);
    font-size: var(--text_s);
    transition: 0.5s var(--ease-out-quint);
}

.more-btn::after {
    font-family: 'Material Symbols Outlined';
    content: '\e5c8';
    vertical-align: middle;
    position: absolute;
    right: 12px;
    font-size: var(--text_s);
    transition: 0.5s var(--ease-out-quint);
}

.more-btn:hover {
    background-color: var(--gray);
    color: var(--base-color);
}


/* ===============================================
    HOME　ヘッダー
=============================================== */

#header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    z-index: 10;
    height: 55px;
    width: 100%;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

.header-logo {
    width: calc(100% - 55px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.2s;
}

.hlogo {
    display: none;
    width: 80px;
}

.hlogo__link:hover {
    opacity: 0.5;
    transition: all 0.2s ease;
}

/* ---------------------------- */
/* スクロールした時 */
#header.transform {
    background-color: var(--base-color);
    border-bottom: 1px solid var(--primary-color);
}

#header.transform .header-logo {
    opacity: 1;
}

#header.transform .hlogo {
    display: block;
}



/* ===============================================
    HOME　ハンバーガーメニュー
=============================================== */

.navbtn {
    position: fixed;
    position: relative;
    top: 0;
    right: 0;
    width: 55px;
    height: 55px;
    background: none;
    border: none;
    cursor: pointer;
}

.navbtn-line {
    position: absolute;
    top: 50%;
    left: 17px;
    width: 20px;
    height: 1px;
    background-color: var(--white);
}

.navbtn,
.navbtn-line {
    display: inline-block;
    transition: all 0.2s;
}

.navbtn-line:nth-of-type(1) {
    transform: translateY(-8px);
}

.navbtn-line:nth-of-type(2) {
    transform: translateY(0);
}

.navbtn-line:nth-of-type(3) {
    transform: translateY(8px);
    width: 14px;
}

/* ---------------------------- */
/* スクロールした時 */
#header.transform .navbtn {
    background-color: var(--primary-color);
}

#header.transform .navbtn-line {
    background-color: var(--base-color);
}

/* ---------------------------- */
/* アクティブ時 */
body.active .navbtn-line {
    transform: scaleX(0);
    background-color: var(--base-color);
}

body.active .navbtn-line:nth-of-type(1) {
    transform: translateY(0) rotate(45deg);
}

body.active .navbtn-line:nth-of-type(2) {
    opacity: 0;
}

body.active .navbtn-line:nth-of-type(3) {
    transform: translateY(0) rotate(-45deg);
    width: 20px;
}


/* ===============================================
    メインビジュアル
=============================================== */

.mv-inner {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
    clip-path: inset(0);
}

.mv-bg {
    position: fixed;
    background-image: url(../img/home/mv-bg_sp.jpg);
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100svh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.mv-logo {
    position: absolute;
    width: 74.6%;
    max-width: 400px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.mv-text {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.mv-text__scroll {
    color: var(--white);
    font-family: var(--en-font);
    font-weight: 300;
    font-size: var(--text_xs);
    letter-spacing: 0.15em;
}

/* pc　1025px以上 */
@media screen and (min-width:1025px) {
    .mv-bg {
        background-image: url(../img/home/mv-bg_pc.jpg);
    }

    .mv-logo {
        width: 40.2%;
        max-width: 580px;
    }

    /*=======min-width:1025px=======*/
}


/* ===============================================
    NEWS
=============================================== */

.news__inner {
    max-width: 1028px;
    margin-right: auto;
    margin-left: auto;
}

.news-heading {
    margin-bottom: 48px;
}

.news-list__item {
    font-family: var(--jp-font_2);
    font-size: var(--text_m);
    letter-spacing: 0.01em;
    line-height: 1.7;
    text-align: justify;
    text-align-last: left;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line-color);
}

.news-list__item:last-of-type {
    margin-bottom: 32px;
}

.news-list__link {
    color: var(--black);
    text-decoration: none;
}

.news-list__link:hover {
    opacity: 0.6;
    transition: 0.2s;
}

.news-list__date {
    font-family: var(--date-font);
    letter-spacing: 0.05em;
}

/* 800px～ */
@media screen and (min-width:800px) {
    .news-list__link {
        display: flex;
        align-items: center;
        column-gap: 48px;
    }

    /*=======min-width:800px=======*/
}


/* ===============================================
    ABOUT
=============================================== */

.about {
    background-image: linear-gradient(0deg, transparent calc(100% - 2px), var(--base-color) calc(100% - 2px)),
        linear-gradient(90deg, transparent calc(100% - 2px), var(--base-color) calc(100% - 2px));
    background-size: 24px 24px;
    background-repeat: repeat;
    background-position: center center;
    background-color: var(--white);
}

.about__inner {
    max-width: 816px;
    margin-right: auto;
    margin-left: auto;
}

.about-heading {
    margin-bottom: 64px;
}

.about-heading__picture {
    display: block;
    width: 70%;
    max-width: 250px;
    margin: 0 auto;
}

.about-body__text {
    letter-spacing: 0.01em;
    padding-bottom: 32px;
}

.about-body__text:last-of-type {
    padding-bottom: 0;
}

/* tab 601 ～ */
@media screen and (min-width:601px) {
    .about-heading__picture {
        width: 80%;
        max-width: 550px;
    }

    .about-body__text {
        line-height: 2.4;
    }

    /*=======min-width:601px=======*/
}


/* ===============================================
    STATIONERY・GALLERY
=============================================== */

.border-inner {
    position: relative;
    margin-bottom: 48px;
}

.border-inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--black) 0%, var(--black) 50%, transparent 50%, transparent 100%);
}

.border-inner__border-delete {
    position: relative;
}

.border-inner__border-delete::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 1px;
    background: var(--base-color);
}

.border-inner__border-base {
    display: inline-block;
    position: relative;
    z-index: 2;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--black);
}


/* ===============================================
    ACCESS intro-img
=============================================== */

.access-intro {
    position: relative;
    width: 100%;
    height: 40vh;
    clip-path: inset(0);
}

.access-intro__img {
    background-image: url(../img/home/access-intro_sp.jpg);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.9;
}

/* tab　800px～ */
@media screen and (min-width:800px) {
    .access-intro__img {
        background-image: url(../img/home/access-intro_pc.jpg);
    }

    /*=======min-width:800px=======*/
}


/* ===============================================
    ACCESS
=============================================== */

.access-heading {
    margin-bottom: 48px;
}

.access__body {
    display: grid;
    gap: 32px;
}

.access-map {
    position: relative;
    max-width: 100%;
    height: 0;
    padding-top: 75%;
}

iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(1);
}

.info-logo {
    max-width: 130px;
    margin-bottom: 16px;
}

.shop-name {
    font-family: var(--jp-font_2);
    color: var(--primary-color);
    font-size: var(--text_s);
    font-weight: 500;
    margin-bottom: 32px;
}

.address-group {
    margin-bottom: 32px;
    letter-spacing: 0.02em;
}

.address-en {
    font-family: var(--caption-font);
}

.address {
    margin-bottom: 8px;
}

/* ---------------------------- */
/* 800px～ */
@media screen and (min-width:800px) {
    .access__body {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-name {
        margin-bottom: 48px;
    }

    .address-group {
        margin-bottom: 48px;
    }

    .address {
        margin-bottom: 16px;
    }

    /*=======min-width:800px=======*/
}