@charset "utf-8";
/* CSS Document */

/* ==========================================================================
   Project Specific (Main Sections)
   ========================================================================== */
/* Main Visual */
.p-mv {
    background: url('../../assets/img/top/hero-img.jpg') no-repeat center/cover;
    position: relative;
    padding: 100px 0;
}
.p-mv__inner {
/*    max-width: 1200px;*/
    margin: 0 auto;
    background: url("../img/top/p-mv__content.png") no-repeat 5%/852px;
    text-align: left;
}
.p-mv__content {
    padding: 100px 0 100px 12%;
}
@media (max-width: 768px) {
    .p-mv {
        padding: 40vh 0 5vh;
        height: 100vh;
        position: relative;
    }
    .p-mv__inner {
        position: absolute;
        bottom: 0;
        background-position: center 0;
    }
    .p-mv__content {
        padding: 20vh 5% 5vh;
    }
}
.p-mv__lead {
    font-family: Noto Serif JP;
    font-weight: bold;
    color: var(--color-primary);
    line-height: 1.4;
    margin-bottom: 20px;

	/* 最小1.8rem | SP:2rem | TB:2.5rem | PC:3rem | 最大2.5rem */
	font-size: clamp(1.8rem, calc(1.25vw + 1.5rem), 2.5rem);
}
/*
.p-mv__lead span {
    background-color: rgba(255, 255, 255, 0.6); /* ベースの半透明白 
    /* 左右上下に 8px 分、ぼかしながら白を広げる 
    box-shadow: 0 0 10px 10px rgba(255, 255, 255, 0.6);
    /* 影が文字に被らないように、少しだけ内側（左右）に余白を持たせると綺麗です 
    padding: 0 8px;
    line-height: 1.7;
}
*/
.p-mv__description {
    font-weight: bold;
    margin-bottom: 2rem;
    color: #000;
    font-size: 1.125rem;;
}
@media (max-width: 768px) {
    .p-mv__description {
        font-size: 1.0rem;;
    }
}
/*
.p-mv__description span {
    background-color: rgba(255, 255, 255, 0.6); /* ベースの半透明白 
    /* 左右上下に 8px 分、ぼかしながら白を広げる 
    box-shadow: 0 0 10px 10px rgba(255, 255, 255, 0.6);
    /* 影が文字に被らないように、少しだけ内側（左右）に余白を持たせると綺麗です 
    padding: 0 8px;
    line-height: 1.7;
}
*/
.p-mv__concept-tag {
    font-family: Noto Serif JP;
    font-size: 1.125rem;
    font-weight: bold;
    letter-spacing: 3px;
    color: var(--color-primary);
}
@media (max-width: 768px) {
    .p-mv__concept-tag {
        letter-spacing: 0;
    }
}
.p-mv__concept-title {
    font-family: Noto Serif JP;
    font-weight: bold;
    letter-spacing: 3px;
    color: var(--color-primary);
	/* 最小1.8rem | SP:2rem | TB:2.5rem | PC:3rem | 最大2.5rem */
	font-size: clamp(1.8rem, calc(1.25vw + 1.5rem), 2.5rem);
}
.p-mv__concept-sub {
    font-family: Noto Serif JP;
    font-size: 1.75rem;
    font-weight: bold;
    letter-spacing: 3px;
    color: var(--color-accent);
}
@media (max-width: 768px) {
    .p-mv__concept-sub {
        font-size: 1.25rem;
    }
}
.p-mv__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 35px;
}
@media (max-width: 768px) {
    .p-mv__actions {
        display: none;
    }
}
/* Features Section */
.p-features {
    background-color: var(--color-bg-light);
    padding: 80px 20px;
}
.p-features__inner {
    max-width: 1200px;
    margin: 0 auto;
}
.p-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}
@media (max-width: 1024px) {
    .p-features__grid {
        grid-template-columns: 1fr;
    }
}
.p-features__card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.p-features__card-img {
    position: relative;
}
.p-features__card-img img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.p-features__card-icon {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
}
.p-features__card-icon img {
    width: 64px;
    height: 64px;
}
.p-features__card-body {
    padding: 80px 20px 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.p-features__card-meta {
    color: var(--color-accent);
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.p-features__card-meta span {
    display: block;
    text-align: center;
}
.p-features__card-label {
    font-size: .75rem;
    letter-spacing: 0.9px;
}
.p-features__card-num {
    font-family: Noto Serif JP;
    font-size: 2rem;
    margin-left: 4px;
    line-height: 1;
}
.p-features__card-title {
    font-size: 1.375rem;
    color: var(--color-primary);
/*    margin-bottom: 15px;*/
    margin-left: 2rem;
    line-height: 1.4;
}
.p-features__card-text {
    margin-top: 2rem;
    border-top: 1px solid #ccc;
    width: 100%;
    padding-top: 1rem;
    font-size: 1rem;
    font-weight: bold;
    color: var(--color-text);
}
.p-features__action {
    text-align: center;
}

/* Category Labels */

