@charset "UTF-8";

/* googlefont */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,500&display=swap');

/* ---------------------
common 
--------------------- */
.en {
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: italic;
}

/* title */
.title-h2 {
    font-weight: 600;
    font-size: clamp(26px, 6vw, 40px);
    text-align: center;
    padding: 2rem 10vw;
    margin: 0;
    border-top: solid 1px var(--c-border);
    border-bottom: solid 1px var(--c-border);
}

.title-h3 {
    font-weight: 600;
    font-size: clamp(22px, 5vw, 32px);
    padding: 0;
    margin: 0;
}

.title-h4 {
    font-weight: 600;
    font-size: clamp(20px, 4vw, 26px);
    padding: 0;
    margin: 0;
}

@media (min-width: 1024px) {
    .title-h2 {
        padding: 4rem 10vw;
    }
}

/* btn */
.btm-btn-wrap{
    margin-top: 4rem;
    border-top: solid 1px var(--c-border);
}
.btn-blue {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: calc(100% - 20vw);
    max-width: 340px;
    margin: 4rem auto 8rem;
    background: #fff;
    border: solid 1px var(--blue);
    background: var(--blue);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    padding: 1rem;
}

.btn-blue span {
    position: relative;
    z-index: 1;
}

.btn-blue::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--black_33);
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.5s ease;
    transition-property: transform;
}

.btn-blue:hover::before {
    transform: scaleX(1);
    transform-origin: right;
}

.btn-blue::after {
    content: "";
    position: absolute;
    left: 1.5rem;
    width: 12px;
    height: 12px;
    background-image: url(../img/common/ico-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    filter: invert(94%) sepia(94%) saturate(0%) hue-rotate(185deg) brightness(107%) contrast(106%);
    transform: rotate(180deg);
}

/* ---------------------
hero 
--------------------- */
.page-hero {
    position: relative;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    right: 0;
    width: calc(100% - 8vw);
    height: 100%;
    margin: 0 auto;
    border-left: solid 1px var(--c-border);
    border-right: solid 1px var(--c-border);
}


.page-hero .main-title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: calc(100% - 20vw);
    height: 100%;
    margin: 0 auto;
    text-align: left;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.page-hero .main-title .jp {
    font-weight: 500;
    font-size: clamp(28px, 7vw, 70px);
    margin: 0 0 .5rem;
}

.page-hero .main-title .en {
    font-size: clamp(16px, 5vw, 32px);
    letter-spacing: .05em;
}

.page-hero .main-title img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (min-width: 768px) {
    .page-hero .main-title .jp {
        margin: 0 0 2rem;
    }
}


/* ---------------------
page-read 
--------------------- */
.page-read,
.page-intro,
.page-nav {
    text-align: center;
    margin: 0;
    padding-left: 10vw;
    padding-right: 10vw;
}

.page-read {
    font-size: clamp(24px, 6vw, 36px);
    font-weight: 600;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.page-intro {
    text-align: center;
    padding-bottom: 4rem;
}

.page-nav {
    list-style: none;
    gap: 16px;
    justify-content: center;
}

.page-nav-item {
    width: 100%;
}

.page-nav-item a {
    position: relative;
    display: inline-block;
    color: var(--black_33);
    background: #fff;
    border: solid 1px var(--black_33);
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    padding: .8rem 3rem;
    width: 100%;
    margin: 0 auto;
}

.page-nav-item a span {
    position: relative;
    z-index: 1;
}

.page-nav-item a:hover {
    color: #fff !important;
}

.page-nav-item a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--black_33);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: all 0.5s ease;
    transition-property: transform;
}

.page-nav-item a:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.page-nav-item a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1.4rem;
    margin: auto 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 12px;
    height: 12px;
    background-image: url(../img/common/ico-arrow.svg);
    transform: rotate(90deg);
    transition: all 0.5s ease;
}

.page-nav-item a:hover::after {
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(142deg) brightness(103%) contrast(103%) !important;
}

@media (min-width: 768px) {
    .page-nav-item {
        width: auto;
    }
}


/* ---------------------
sec-works 
--------------------- */
.sec-works {
    margin-top: 5rem;
    border-bottom: solid 1px var(--c-border);
}

.sec-works .title-h3 {
    padding: 1rem 10vw;
    background: var(--c-gry_bg);
    border-top: solid 1px var(--c-border);
    border-bottom: solid 1px var(--c-border);
    position: relative;
    z-index: -2;
    text-align: center;
}

.sec-works .works-head {
    padding: 2rem 10vw;
    gap: 20px 70px;
    align-items: flex-start;
    border-bottom: solid 1px var(--c-border);
}

.sec-works .works-head .catch {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 500;
    margin-top: 0;
}

.sec-works .works-head .com {
    font-size: 14px;
}

.sec-works .works-head .detail {
    width: 100%;
    background: var(--c-gry_bg);
    border: solid 1px var(--c-border);
    padding: 1.2rem;
    margin: 0;
}

.sec-works .works-head .detail .title {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 10px;
    padding: 0;
}

.sec-works .works-head .detail .desc {
    font-size: 13px;
    margin: 0;
    padding: 0;
    width: 100%;
}

.sec-works .works-head .detail .list-style-indent {
    padding: 0;
    list-style: none;
}

.sec-works .works-head .detail .list-style-indent li {
    position: relative;
    padding-left: 15px;
}

.sec-works .works-head .detail .list-style-indent li::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--black_33);
}

@media (min-width: 768px) {
    .sec-works .works-head {
        padding: 4rem 10vw;
    }

    .sec-works .works-head .detail {
        padding: 36px;
        gap: 0 36px;
        align-items: center;
    }

    .sec-works .works-head .detail .title {
        margin-bottom: 0;
    }

    .sec-works .works-head .detail .desc {
        width: calc(70% - 36px);
        padding-left: 36px;
        border-left: solid 1px var(--c-border);
    }
}

@media (min-width: 1280px) {
    .sec-works .works-head .read {
        width: 50%;
    }

    .sec-works .works-head .detail .title {
        width: 30%;
    }

    .sec-works .works-head .detail {
        width: calc(50% - 70px);
    }
}

.sec-works .works-img {
    width: calc(100% - 8vw - 1px);
    margin: 0 auto;
    gap: 20px;
    position: relative;
    z-index: -2;
}

.sec-works .works-img .img {
    width: calc(50% - 10px);
    padding: 40px 0;
    border-left: solid 1px var(--c-border);
    border-right: solid 1px var(--c-border);
}

.sec-works .works-img .img:nth-of-type(odd) {
    border-left: none;
}