@charset "utf-8";
:root {
    --black: #333;
    --white: #fff;
    --green: #30574E;
}
/* ------------------------------
ローディング
------------------------------ */
#loading {
    position: fixed;
    inset: 0;
    background-color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}
#loading.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 1s ease, visibility 1s ease;
}
#loading.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 1s ease, visibility 1s ease;
}
.loading-title {
    width: 60%;
    max-width: 272px;
    margin: 0 auto;
}
.loading-title img {
    width: 100%;
}
.drop {
    position: relative;
    margin-bottom: 60px;
}
.drop::before,
.drop::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--white);
}
.drop::before {
    animation: circlemove 1.6s ease-in-out infinite,
        circlemovehide 1.6s ease-out infinite;
}
.drop::after {
    animation: circlemove 1.3s ease-in-out infinite,
        circlemovehide 1.3s ease-out infinite;
}
@keyframes circlemove {
    0% {
        bottom: 45px;
    }
    100% {
        bottom: -5px;
    }
}
@keyframes circlemovehide {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    80% {
        opacity: 0.9;
    }
    100% {
        opacity: 0;
    }
}
/* ------------------------------
ヘッダータイトル
------------------------------ */
.header-title {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease-in-out;
}
.header-title.visible {
    opacity: 1;
    pointer-events: auto;
}
/* ------------------------------
MV
------------------------------ */
.mv {
    position: relative;
    height: 100vh;
    width: 100%;
}
.mv-title {
    position: absolute;
    top: 30vh;
    left: 8%;
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.mv-title h1 img {
    width: 100%;
}
.mv-title h2 {
    font-size: 1.6rem;
    line-height: 3.2rem;
    font-weight: 300;
    letter-spacing: 0.3rem;
}
.mv-title h2 span {
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--white);
    margin-bottom: 20px;
}
@media (max-width: 676px) {
    .mv-title h2 br {
        display: block;
    }
}
.scroll-down {
    position: absolute;
    bottom: 30px;
    right: 50px;
}
.scroll-down span {
    font-family: "Josefin Sans", serif;
    font-weight: 300;
    font-style: normal;
    position: absolute;
    right: -20px;
    bottom: 60px;
    color: var(--white);
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    writing-mode: vertical-rl;
}
.scroll-down::before,
.scroll-down::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--white);
}
.scroll-down::before {
    animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
.scroll-down::after {
    animation: circlemove 1.3s ease-in-out infinite, cirlemovehide 1.3s ease-out infinite;
}
/* ------------------------------
スクロールトップ
------------------------------ */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease-in-out, background-color 0.3s ease;
}
.scroll-top:hover {
    background: rgba(255, 255, 255, 0.3);
}
.scroll-top::after {
    content: '';
    transform: translateY(-50%) rotate(-180deg);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--white);
}
.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
}
/* ------------------------------
コンセプト
------------------------------ */
.brand {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}
.brand-inner {
    display: block;
    position: relative;
    padding: 120px 8%;
}
.brand-text {
    width: auto;
    color: var(--white);
}
.brand-text p {
    margin-bottom: 32px;
    line-height: 2.8rem;
}
.brand-img {
    position: absolute;
    top: 10%;
    right: 10%;
    margin: auto;
}
.brand-img picture {
    display: block;
    width: 60vw;
    max-width: 480px;
    min-width: 240px;
    opacity: 0.6;
}
.brand-img picture img {
    width: 100%;
}
.brand .button {
    margin: 80px 0;
}
@media (max-width: 676px) {
    .brand .button {
        margin: 60px auto 0;
    }
}
/* ------------------------------
プロダクト
------------------------------ */
.product-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-bottom: 100px;
}
.product-container ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    list-style: none;
    padding: 50px 8%;
}
.product-container ul li {
    display: flex;
    justify-content: center;
    width: 80%;
}
.product-container .leucocoryne {
    margin: 0 0 0 -20%;
}
.product-container .lilac {
    margin: 0 0 0 -7%;
}
.product-container .osmanthus {
    margin: 0 -7% 0 0;
}
.product-container .daphne {
    margin: 0 -20% 0 0;
}
.product-img {
    width: 100%;
    max-width: 460px;
}
.product-img img {
    width: 100%;
    vertical-align: bottom;
}
.product-title {
    width: 80%;
    max-width: 480px;
    margin: auto 0 0 -60px;
    padding: 60px 40px 60px 60px;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 100px 0 100px 0;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    transition: 0.3s ease;
}
.product-title:hover {
    background-color: rgba(255, 255, 255, 0.2);
}
.product-title h3 {
    margin-bottom: 30px;
}
.product-title .sentense {
    margin-top: 15px;
}
.leucocoryne .product-title::after,
.lilac .product-title::after,
.osmanthus .product-title::after,
.daphne .product-title::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -10%;
    width: 60%;
    min-width: 180px;
    max-width: 240px;
    aspect-ratio: 1 / 1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.6;
}
.leucocoryne .product-title::after {
    background-image: url(../assets/img/Leucocoryne.png);
}
.lilac .product-title::after {
    background-image: url(../assets/img/Lilac.png);
}
.osmanthus .product-title::after {
    background-image: url(../assets/img/Osmanthus.png);
}
.daphne .product-title::after {
    background-image: url(../assets/img/Daphne.png);
}
.product-link {
    width: 100%;
    max-width: 600px;
    margin: 80px auto;
    padding: 40px 8%;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}
.product-link::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -120px;
    width: 260px;
    height: 260px;
    background-image: url(../assets/img/Leucocoryne.png);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
}
.product-link p {
    text-align: center;
    margin-bottom: 24px;
}
.product-link .button {
    margin: 0 auto;
}
@media (max-width: 767px) {
    .product-container ul li {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
    .product-container .leucocoryne,
    .product-container .lilac,
    .product-container .osmanthus,
    .product-container .daphne {
        margin: 0;
    }
    .product-title {
        width: 95%;
        max-width: 480px;
        padding: 60px 20px 60px 40px;
        margin: -40px 0 0 auto;
    }
    .product-title .none {
        display: block;
    }
    .product-link {
        max-width: none;
        margin: 40px 0;
    }
}
/* ------------------------------
ニュース
------------------------------ */
.news {
    background-color: var(--green);
}
.news-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-bottom: 100px;
}
.news-container ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
    list-style: none;
    padding: 50px 8%;
    margin: 0 auto;
}
.news-container ul li {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.news-link {
    all: unset;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    cursor: pointer;
    border-bottom: 1px solid var(--white);
    position: relative;
    color: var(--white);
    text-decoration: none;
}
.news-link time {
    width: 30%;
    max-width: 140px;
    padding: 0 16px 8px;
}
.news-link .news-title {
    position: relative;
    display: inline-block;
    padding: 0 40px 8px 16px;
    text-align: left;
    transition: transform 0.3s ease-out;
}
.news-title::after {
    content: "";
    position: absolute;
    top: calc(50% - 6px);
    right: 0;
    transform: translateY(-50%) translateX(-10px);
    opacity: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 6px solid var(--white);
    transition: all 0.3s ease-out;
}
.news-link:hover .news-title {
    transform: translateX(6px);
}
.news-link:hover .news-title::after {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
}
.news-container .button {
    margin: 0 8% 0 auto;
}
@media (max-width: 767px) {
    .news-link {
        flex-direction: column;
    }
    .news-container .button {
        margin: 0 auto;
    }
}
/* ------------------------------
ショップ
------------------------------ */
.shop-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-bottom: 100px;
}
.shop-container ul {
    display: flex;
    justify-content: center;
    gap: 8%;
    list-style: none;
    padding: 50px 8% 0;
    margin: 80px auto;
}
.shop-container ul li {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 540px;
}
.shop-img {
    max-width: 540px;
}
.shop-img img {
    width: 100%;
    object-fit: cover;
    vertical-align: bottom;
    aspect-ratio: 4 / 3;
}
.shop-info {
    width: 95%;
    margin: -40px 0 0 auto;
    padding: 60px 40px 60px 60px;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 100px 0 100px 0;
    box-sizing: border-box;
}
.shop-info h3 {
    display: inline-block;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--white);
}
.shop-info p {
    margin-left: 16px;
    text-align: left;
}
.shop-info p a {
    display: inline-block;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--white);
}
.shop-info p a:hover {
    opacity: 0.5;
}
.shop-online {
    width: 100%;
    max-width: 600px;
    margin: 80px auto;
    padding: 40px 8%;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}
.shop-online::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -120px;
    width: 260px;
    height: 260px;
    background-image: url(../assets/img/Leucocoryne.png);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
}
.shop-online p {
    text-align: center;
    margin-bottom: 24px;
}
.shop-online .button {
    margin: 0 auto;
}
@media (max-width: 767px) {
    .shop-container {
        padding-bottom: 40px;
    }
    .shop-container ul {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 60px;
        padding-bottom: 0;
        margin: 0 auto 80px;
    }
    .shop-info {
        padding: 60px 20px 60px 40px;
    }
    .shop-info p {
        margin-left: 0;
    }
    .shop-info .none {
        display: block;
    }
}