@charset "UTF-8";

/* #region cursor */
.cursor {
    position: fixed;
    top: -5px;
    left: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(127, 19, 129, 1);
    mix-blend-mode: multiply;
    z-index: 1000;
    transition: width 0.5s, height 0.5s, top 0.5s, left 0.5s;
    transform: translate(0, 0);
    pointer-events: none;
}
/* hover変化 */
.cursor.cursor--hover {
    top: -20px;
    left: -20px;
    width: 40px;
    height: 40px;
    background: rgba(56, 76, 255, 1);
    /* background: rgba(127, 19, 129, 1); */
}
/* 1. 丸 (デフォルト) */
/* .shape-circle {
    border-radius: 50%;
    clip-path: circle(50% at 50% 50%);
} */
/* 2. 四角 */
/* .shape-square {
    border-radius: 0%;
    clip-path: inset(0% 0% 0% 0%);
} */
/* 3. 三角 */
/* .shape-triangle {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
} */
/* 4. ひし形 (ダイヤモンド) */
/* .shape-diamond {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
} */
/* #endregion */

/* #region COMMON */
:root {
    /* 1920px基準の比率 */
    --base-ratio: 0.833vw; /* 基準：16px相当 */
    --header-height: clamp(40px, 6vw, 80px);
}
html,
body,
a {
    cursor: none;
}
html {
    scroll-behavior: smooth;
    font-size: var(--base-ratio);
}
body {
    font-family: "Noto Sans JP", "Schibsted Grotesk", sans-serif, "Avenir Next", "DIN Alternate", "Halant", serif;
    line-height: 1.2;
    color: #424242;
    font-size: clamp(14px, var(--base-ratio), 16px);
}
img {
    display: block;
    width: 100%; /* 親のvwに強制追従させる */
    height: 100%; /* 親の高さに合わせる */
    object-fit: contain; /* 比率を維持して枠内に収める（ロゴ等の場合） */
    pointer-events: none;
}
h1, h2, h3, h4, h5, p {
    margin: 0;
}
a {
    color: inherit;
    text-decoration: none;
    transition: all 0.4s ease;
}
ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}
.container {
    position: relative;
}
/* grid wrappers */
.wrapper {
    display: grid;
    grid-template-columns:
        [full-start] minmax(18.75%, 1fr)
        [content-start] minmax(0, 62.5vw) /* 1200px相当 */
        [content-end] minmax(18.75%, 1fr)
        [full-end];
}
.wrapper > * {
    grid-column: content-start / content-end;
}
/* common title */
.common__cnt--ttl {
    display: flex;
    align-items: center;
    color: #7F1381;
    /* js フェードイン */
    transform: translateY(20px);
    opacity: 0;
    transition: .6s;
}
.common__cnt--ttl.show {
    /* js フェードイン */
    transform: translateY(0);
    opacity: 1;
}
.common__cnt--ttl h2 {
    margin-right: 1vw;
    font-family: "Halant", serif;
    font-size: clamp(40px, 5.208vw, 100px);
    font-weight: 400;
}
.common__cnt--ttl span {
    font-size: clamp(12px, 0.938vw, 18px);
    transform: translateY(calc(1vw - 0.1vw));
}
/* details */
.pc_none {
    display: none;
}
.sp_none {
    display: inline-block;
}
.bold {
    font-weight: bold;
}
.kerning {
    font-feature-settings: "palt";
}
/* #endregion */

/* #region HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 10;
    /* js フェードイン */
    transform: translateY(-20px);
    opacity: 0;
    transition: 2s;
}
.header.show {
    /* js フェードイン */
    transform: translateY(0);
    opacity: 1;
}
.header__bar {
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, #7F1381, #384CFF);
}
.header__bg {
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.header__cnt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: var(--header-height);
}
.header__logo {
    width: 10vw;
    height: auto;
}
.header__btn {
    width: 100%;
    max-width: 16vw;
    height: auto;
}
.header__btn a {
    position: relative;
    display: inline-block;
    color: #fff;
    background: linear-gradient(to right, #384CFF, #7F1381, #384CFF);
    background-size: 200% 100%;
    background-position: right center;
    font-family: sans-serif, "Avenir Next";
    border-radius: .2vw;
    padding: 1vw 3.4vw 1vw 2vw;
    overflow: hidden;
    transition: .6s;
}
.header__btn a::before {
    position: absolute;
    top: 50%;
    right: 1vw;
    content: "";
    display: block;
    width: 1.2vw;
    height: 1.2vw;
    background-color: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
}
.header__btn a::after {
    position: absolute;
    top: 50%;
    right: 1.5vw;
    content: "";
    display: block;
    width: .4vw;
    height: .4vw;
    border-right: 1.5px solid #384CFF;
    border-bottom: 1.5px solid #384CFF;
    transform: translateY(-50%) rotate(-45deg);
}
.header__btn a:hover {
    background-position: left center;
}
.header__btn a:hover::after {
    animation: arrow-slide 0.4s forwards;
}
@keyframes arrow-slide {
    /* 1. 右へフェードアウト */
    49% {
        transform: translate(0.5vw, -50%) rotate(-45deg);
        opacity: 0;
    }
    /* 2. 左からフェードイン */
    50% {
        border-right: 1.5px solid #7F1381;
        border-bottom: 1.5px solid #7F1381;
        transform: translate(-1vw, -50%) rotate(-45deg);
        opacity: 0;
    }
    /* 3. 左からフェードイン */
    100% {
        border-right: 1.5px solid #7F1381;
        border-bottom: 1.5px solid #7F1381;
        transform: translate(0, -50%) rotate(-45deg);
        opacity: 1;
    }
}
/* #endregion */

/* #region FOOTER */
.footer {
    color: #fff;
    background-color: #7F1381;
    padding: 4vw 0;
}
.footer__inner {
    display: grid;
    grid-column: content;
}
.footer__top {
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 1vw;
    border-bottom: 1px solid #fff;
    padding-bottom: 2vw;
}
.footer__top img {
    width: 100%;
    height: auto;
    max-width: 230px;
}
.footer__address {
    font-size: clamp(16px, 1.04vw, 20px);
    line-height: 1.4;
}
.footer__bottom {
    padding-top: 2vw;
    text-align: center;
}
.footer__bottom .u-small {
    padding-top: 1vw;
    font-size: .8em;
}
.footer__bottom a:hover {
    opacity: .6;
}
/* #endregion */

@media (max-width: 768px) {
    /* #region cursor */
    .cursor {
        display: none;
    }
    /* #endregion */

    /* #region COMMON */
    :root {
        --header-height: clamp(32px, 15.385vw, 60px);
    }
    .wrapper {
        display: block;
        grid-template-columns: none;
    }
    .common__cnt--ttl h2 {
        margin-right: 2vw;
        font-size: clamp(32px, 15.385vw, 120px);
    }
    .common__cnt--ttl span {
        font-size: clamp(12px, 3.59vw, 18px);
        transform: translateY(calc(2vw - 0.1vw));
    }
    .pc_none {
        display: block;
    }
    .sp_none {
        display: none;
    }
    /* #endregion */

    /* #region HEADER */
    .header__cnt {
        padding-left: 2vw;
        padding-right: 1.8vw;
    }
    .header__logo {
        width: 40vw;
        height: auto;
    }
    .header__btn {
        width: 100%;
        max-width: 60vw;
        height: auto;
    }
    .header__btn a {
        font-size: clamp(14px, 4.615vw, 18px);
        border-radius: .6vw;
        padding: 3vw 11vw 3vw 4.5vw;
    }
    .header__btn a::before {
        right: 3vw;
        width: 5vw;
        height: 5vw;
    }
    .header__btn a::after {
        right: 4.8vw;
        width: 2.2vw;
        height: 2.2vw;
    }
    /* #endregion */

    /* #region FOOTER */
    .footer {
        padding: 20vw 0 30vw;
    }
    .footer__inner {
        grid-column: content;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12vw;
    }
    .footer__top {
        flex-direction: column;
        align-items: center;
        gap: 8vw;
        border-bottom: none;
        padding-bottom: 0;
        width: 100%;
    }
    .footer__top img {
        max-width: 180px;
    }
    .footer__address {
        text-align: center;
        font-size: 3.5vw;
        line-height: 1.6;
        width: fit-content;
        max-width: 100%;
    }
    .footer__bottom {
        display: flex;
        flex-direction: column;
        gap: 3vw;
        padding-top: 8vw;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        width: 80%;
    }
    .footer__bottom a {
        display: inline-block;
        padding: 4vw 0;
        font-size: 3.5vw;
        text-decoration: underline;
    }
    .footer__bottom .u-small {
        padding-top: 6vw;
        font-size: 3vw;
        opacity: 0.6;
    }
    /* #endregion */
}