/* ===================================
   RESET
=================================== */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: #faf8f4;
    color: #222;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    line-height: 1.9;
    letter-spacing: .05em;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

/* ===================================
   Twenty Twenty-One Kill
=================================== */

.site {
    max-width: none !important;
}

.site-main {
    padding: 0 !important;
}

.entry-content {
    margin: 0 !important;
}

.entry-content > * {
    max-width: none !important;
}

.site-content {
    margin: 0 !important;
}

#main {
    margin: 0 !important;
}

.post-thumbnail,
.entry-header,
.entry-footer,
.comments-area,
.widget-area {
    display: none;
}

.singular .entry-header {
    border: 0;
}

.singular .entry-title {
    display: none;
}

.page .entry-content {
    margin-top: 0;
}

.page-template-page-home .site-main {
    padding: 0;
}

.page-template-page-home article {
    margin: 0;
}

.page-template-page-home .entry-content {
    margin: 0;
}

.page-template-page-home .wp-block-group {
    margin: 0;
}

/* ===================================
   HERO
=================================== */

.bijou-hero {
    position: relative;
    height: 100svh;
    min-height: 680px;
    overflow: hidden;
}

.bijou-hero__image {
    position: absolute;
    inset: 0;
}

.bijou-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    animation: heroZoom 15s ease-out forwards;
}

.bijou-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.18);
}

.bijou-hero__content {
    position: relative;
    z-index: 10;

    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    color: #fff;
}

.bijou-hero__brand {
    font-size: clamp(56px, 10vw, 120px);
    font-family: serif;
    margin-bottom: 24px;

    opacity: 0;
    animation: fadeUp 1.2s ease forwards .5s;
}

.bijou-hero__title {
    font-size: clamp(20px, 4vw, 32px);
    font-weight: 300;
    letter-spacing: .2em;

    opacity: 0;
    animation: fadeUp 1.2s ease forwards 1s;
}

.bijou-hero__scroll {
    position: absolute;
    bottom: 40px;

    font-size: 11px;
    letter-spacing: .3em;

    opacity: 0;
    animation: fadeIn 1s ease forwards 2s;
}

@keyframes heroZoom {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.12);
    }

}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes fadeIn {

    to {
        opacity: 1;
    }

}

/* ==============================
   BIJOU BASIC LAYOUT
============================== */

.bijou-home {
    background: #faf8f4;
    color: #222;
    overflow: hidden;
}

.bijou-section {
    padding: 96px 24px;
}

.bijou-inner {
    width: min(100%, 1080px);
    margin: 0 auto;
}

.bijou-section__label {
    font-size: 12px;
    letter-spacing: .24em;
    color: #b7a58a;
    margin-bottom: 28px;
}

.bijou-section__title {
    font-size: 30px;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: .08em;
    margin-bottom: 40px;
}

.bijou-text {
    font-size: 15px;
    line-height: 2.2;
    letter-spacing: .06em;
    color: #6f675e;
    margin-bottom: 24px;
}

.bijou-text:last-child {
    margin-bottom: 0;
}

/* PHILOSOPHY */
.bijou-philosophy {
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.bijou-philosophy .bijou-section__title {
    font-size: clamp(32px, 8vw, 64px);
    line-height: 2;
}

/* ABOUT */
.bijou-about__grid,
.bijou-profile__grid {
    display: grid;
    gap: 48px;
}

.bijou-about__image,
.bijou-profile__image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #e8e1d8;
}

.bijou-about__image img,
.bijou-profile__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SERVICE */
.bijou-service {
    background: #fffdf9;
}

.bijou-service__grid {
    display: grid;
    gap: 24px;
}

.bijou-service__card {
    border: 1px solid #e8e1d8;
    padding: 36px 28px;
    background: #faf8f4;
}

.bijou-service__en {
    font-family: serif;
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.bijou-service__title {
    font-size: 14px;
    font-weight: 300;
    color: #6f675e;
    margin-bottom: 28px;
}

.bijou-service__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bijou-service__list li {
    padding: 14px 0;
    border-bottom: 1px solid #e8e1d8;
    font-size: 14px;
    line-height: 1.8;
}

.bijou-service__list li:last-child {
    border-bottom: none;
}

/* SCENE */
.bijou-scene__grid {
    display: grid;
    gap: 18px;
}

.bijou-scene__item {
    margin: 0;
    overflow: hidden;
    background: #e8e1d8;
}

.bijou-scene__item img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

/* PROFILE */
.bijou-profile {
    background: #fffdf9;
}

.bijou-profile__name {
    font-family: serif;
    font-size: 34px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 12px;
}

.bijou-profile__jp {
    font-size: 16px;
    margin-bottom: 32px;
}

/* CONTACT */
.bijou-contact {
    text-align: center;
    padding-bottom: 120px;
}

.bijou-contact__title {
    font-size: 28px;
    font-weight: 300;
    line-height: 2;
    margin-bottom: 32px;
}

.bijou-contact__form {
    max-width: 720px;
    margin: 56px auto 0;
}

/* PC */
@media (min-width: 768px) {
    .bijou-section {
        padding: 140px 48px;
    }

    .bijou-about__grid,
    .bijou-profile__grid {
        grid-template-columns: 0.9fr 1.1fr;
        align-items: center;
        gap: 80px;
    }

    .bijou-service__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .bijou-scene__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .bijou-scene__item:nth-child(2),
    .bijou-scene__item:nth-child(4) {
        margin-top: 80px;
    }

    .bijou-contact__title {
        font-size: 36px;
    }
}