/* 
========================================
ボランティアについて CSS
========================================
*/

/* ページヘッダー */
.momo-volunteer-header {
    position: relative;
    overflow: hidden;
}

.momo-volunteer-header-bg {
    background: linear-gradient(135deg, rgba(235, 110, 143, 0.9) 0%, rgba(213, 83, 122, 0.9) 100%),
                url('[upload]/volunteer-hero.jpg') center/cover;
    padding: 120px 20px 100px;
    text-align: center;
    color: #fff;
}

.momo-volunteer-header-inner {
    max-width: 800px;
    margin: 0 auto;
}

.momo-volunteer-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.momo-volunteer-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
}

/* キャッチコピー */
.momo-volunteer-catch {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
}

.momo-volunteer-catch-inner {
    max-width: 800px;
    margin: 0 auto;
}

.momo-volunteer-catchcopy {
    font-size: 2.2rem;
    font-weight: bold;
    color: #eb6e8f;
    line-height: 1.6;
    margin-bottom: 30px;
}

.momo-volunteer-catch-text {
    font-size: 1.1rem;
    color: #453336;
    line-height: 1.8;
}

/* 活動内容 */
.momo-volunteer-activities {
    background: #fef4f7;
    padding: 80px 20px;
}

.momo-volunteer-activities-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.momo-volunteer-intro-text {
    text-align: center;
    font-size: 1.1rem;
    color: #453336;
    margin: 30px 0 50px;
}

/* ✅ ここから “共通衝突リスク” があるため .volunteer スコープ付与 */
.volunteer .momo-activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.volunteer .momo-activity-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.volunteer .momo-activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(235, 110, 143, 0.15);
}

.volunteer .momo-activity-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.volunteer .momo-activity-card h3 {
    font-size: 1.3rem;
    color: #453336;
    margin-bottom: 15px;
}

.volunteer .momo-activity-card p {
    margin-top: auto;
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}
/* ✅ ここまで */

/* イメージ写真 */
.momo-volunteer-images {
    padding: 80px 20px;
}

.momo-volunteer-images-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.momo-volunteer-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.momo-volunteer-photo {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.momo-volunteer-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.momo-volunteer-photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* 登録の流れ */
.momo-volunteer-flow {
    background: #fff;
    padding: 80px 20px;
}

.momo-volunteer-flow-inner {
    max-width: 800px;
    margin: 0 auto;
}

.momo-flow-content {
    margin-top: 50px;
}

.momo-flow-intro {
    font-size: 1.05rem;
    color: #453336;
    text-align: center;
    line-height: 1.9;
    margin-bottom: 50px;
}

.momo-flow-steps {
    margin: 40px 0;
}

.momo-flow-step-item {
    background: #fef4f7;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.momo-flow-step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #eb6e8f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
}

.momo-flow-step-content h3 {
    font-size: 1.3rem;
    color: #453336;
    margin-bottom: 10px;
}

.momo-flow-step-content p {
    color: #666;
    line-height: 1.7;
}

.momo-flow-arrow-down {
    text-align: center;
    font-size: 2rem;
    color: #eb6e8f;
    margin: 10px 0;
}

.momo-flow-step-final {
    background: linear-gradient(135deg, #eb6e8f 0%, #d5537a 100%);
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(235, 110, 143, 0.3);
}

.momo-flow-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.momo-flow-step-final h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.momo-flow-step-final p {
    color: #fff;
    font-size: 1.05rem;
}

.momo-flow-note {
    background: #fff8f0;
    padding: 20px;
    border-radius: 5px;
    margin-top: 40px;
}

.momo-flow-note p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

.momo-volunteer-seminar-image {
    margin-top: 50px;
    text-align: center;
}

.momo-volunteer-seminar-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ✅ キャプションも共通衝突リスクがあるため .volunteer スコープ付与 */
.volunteer .momo-image-caption {
    margin-top: 15px;
    color: #666;
    font-size: 0.9rem;
}

/* CTA */
.momo-volunteer-cta {
    background: #fef4f7;
    padding: 80px 20px;
    text-align: center;
}

.momo-volunteer-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.momo-volunteer-cta-title {
    font-size: 2rem;
    font-weight: bold;
    color: #453336;
    margin-bottom: 25px;
    line-height: 1.5;
}

.momo-volunteer-cta-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.momo-volunteer-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wra
}


/*===============================================================================================*/
/*=== [SELF REFACTORING & additional style]
=================================================================================================*/
.volunteer .mv {
    height: 526px;
	padding: 0;
    background-image: url(../../img/bg-mv-volunteer-L.webp);
    background-position: left center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
    /*background-image: url(../../img/bg-mv-homes-L.webp), url(../../img/bg-mv-homes-R.webp);
    background-position: left center/*, right center;
    background-repeat: no-repeat/*, no-repeat;
    background-attachment: scroll;
    background-size: cover/*contain, contain;*/
	background-color: #fbf7f8;
	text-align: center;
}
.volunteer .mv .inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-image: url(../../img/bg-mv-volunteer.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: contain;
}
.volunteer .mv h1.ttl {
    display: flex;
    align-items: center;
    justify-content: center;
    /*text-shadow: 0px 0px 20px rgba(255, 255, 255, 1);
    -webkit-text-stroke: 10px #fff;
    text-stroke: 2px #fff;
    paint-order: stroke;
    font-weight: bold;*/
}

.volunteer .catch {
    padding: 80px 20px 40px;
    background-color: #fdfaf4;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.2);
}

.volunteer .catch .clover:before {
	left: -1024px;
}
.volunteer .catch .clover:after {
	right: -1024px;
}
.volunteer .catch h2.ttl {
    margin-bottom: 1em !important;
    color: #d5537a !important;
    font-size: 30px !important;
}
.volunteer .catch h2.ttl:after {
    display: none;
}

.volunteer .activities {
    position: relative;
    padding: 0;
    background: transparent;
    overflow: hidden;
}
.volunteer .activities:before {
    position: fixed;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url(../../img/img-volunteer.webp);
    background-position: center;
    background-repeat: repeat;
    background-size: contain;
    z-index: -1;
    opacity: 0.6;
    will-change: transform;
}
.volunteer .momo-volunteer-intro-text {
    padding: 0 40px;
}
.volunteer .activities .grid {
    position: relative;
    gap: 20px;
}
.volunteer .activities .grid .txt {
    position: absolute;
    top: 50%;
    left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}
.volunteer .activities .imgWrap {
    display: none;
    /*height: 160px;*/
}
.volunteer .activities .inner {
    margin: 160px auto;
    padding: 80px 0;
    border-radius: 24px;
    background: rgba(255, 255, 255, 1/*0.968*/);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}
.volunteer .activities .card {
    display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 414px;
	height: 408px;
	padding: 0 0 48px;
	border: none;
	box-shadow: none;
    background-color: transparent;
	background-image: url(../../img/blur-ball.png);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-size: contain;
	transition: none;
    transform: none;
}
.volunteer .activities .card p {
    margin-top: 0;
	padding: 0 4em;
}

.volunteer .flow {
    background-color: #fdfaf4;
    box-shadow: 0 -15px 15px rgba(0, 0, 0, 0.2);
}
.volunteer .flow .item {
    position: relative;
    align-items: baseline;
    margin-bottom: 56px;
	padding: 30px 30px 10px;
    background-color: #fff;
}
.volunteer .flow .item:last-child {
    padding: 30px;
}
.volunteer .flow .item .number {
    background-color: transparent;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: contain;
    text-indent: -9999rem;
}
.volunteer .flow .item:first-child .number {
    background-image: url(../../img/flow-num-1.png);
}
.volunteer .flow .item:nth-child(2) .number {
    background-image: url(../../img/flow-num-2.png);
}
.volunteer .flow .item:nth-child(3) .number {
    background-image: url(../../img/flow-num-3.png);
}
.volunteer .flow .item:last-child .number {
    background-image: url(../../img/i-support.png);
}
.volunteer .flow .item:last-child h3 {
    color: #d5537a;
}

@media (max-width: 1440px) {
    .volunteer .catch .clover:before {
        left: calc(-856px - 168 * (100vw - 1024px) / 416);
    }
    .volunteer .catch .clover:after {
        right: calc(-856px - 168 * (100vw - 1024px) / 416);
    }
    .volunteer .activities .inner {
        max-width: calc(944px + 80 * (100vw - 1024px) / 416);
    }
}
@media (max-width: 1024px) {
    .volunteer .mv {
        height: calc(398px + 128 * (100vw - 768px) / 256);
    }
    .volunteer .catch .clover:before,
    .volunteer .catch .clover:after {
        top: calc(24% + 26 * (100vw - 768px) / 256);
        width: calc(726px + 274 * (100vw - 768px) / 256);
		height: calc(136px + 52 * (100vw - 768px) / 256);
    }
    .volunteer .catch .clover:before {
        left: calc(-546px - 310 * (100vw - 768px) / 256);
    }
    .volunteer .catch .clover:after {
        right: calc(-546px - 310 * (100vw - 768px) / 256);
    }
    .volunteer .activities .inner {
        max-width: calc(700px + 244 * (100vw - 768px) / 256);
    }
    .volunteer .activities .card {
        width: calc(288px + 126 * (100vw - 768px) / 256);
        height: calc(278px + 130 * (100vw - 768px) / 256);
        padding: 0 0 calc(20px + 28 * (100vw - 768px) / 256);
    }
    .volunteer .activities .card .icon {
        margin-bottom: calc(0.01px + 19.99 * (100vw - 768px) / 256);
    }
    .volunteer .activities .card .icon img {
        width: calc(80% + 20 * (100vw - 768px) / 256);
    }
    .volunteer .activities .card h3 {
        margin-bottom: calc(10px + 15 * (100vw - 768px) / 256);
        padding: calc(0.01px + 11.99 * (100vw - 768px) / 256) 0;
        font-size: calc(18px + 2.8 * (100vw - 768px) / 256);
    }
}
@media (max-width: 768px) {
    .volunteer .mv {
        height: calc(166px + 232 * (100vw - 320px) / 448);
    }
    .volunteer .catch {
        padding: calc(40px + 40 * (100vw - 320px) / 448) 20px calc(10px + 30 * (100vw - 320px) / 448);
    }
    .volunteer .catch .clover:before {
        left: calc(-174px - 372 * (100vw - 320px) / 448);
	}
    .volunteer .catch .clover:after {
        right: calc(-174px - 372 * (100vw - 320px) / 448);
	}
    .volunteer .catch h2.ttl {
        font-size: calc(18px + 12 * (100vw - 320px) / 448) !important;
    }
    .volunteer .catch .txt {
        font-size: calc(16px + 1.6 * (100vw - 320px) / 448);
    }

    .volunteer .activities .momo-volunteer-intro-text.txt {
        width: 90%;
		margin: auto;
		padding: calc(16px + 14 * (100vw - 320px) / 448) 0;
		font-size: calc(16px + 1.6 * (100vw - 320px) / 448);
		text-align: left;
    }
     .volunteer .activities .momo-volunteer-intro-text.txt br {
        display: none;
     }

    .volunteer .flow .item {
        flex-direction: row;
        text-align: left;
    }
    .momo-volunteer-cta-buttons {
		flex-direction: row;
	}
}
@media (max-width: 767px) {
    .volunteer .catch,
    .volunteer .activities .inner,
    .volunteer .flow {
        box-shadow: none;
    }
    .volunteer .activities:before {
        display: none;
    }
    .volunteer .activities .inner {
        max-width: 100%;
        margin: 0;
        padding: calc(32px + 48 * (100vw - 320px) / 447) calc(10px - 10 * (100vw - 320px) / 447);
        border-radius: 0;
    }
    .volunteer .activities .imgWrap {
        display: block;
        height: auto/*178px*/;
        /*background-repeat: no-repeat;
		background-size: 768px;*/
    }
    .volunteer .activities .imgWrap.top {
		margin-right: calc(20px + 20 * (100vw - 320px) / 447);
		/*border-top-right-radius: calc(16px + 8 * (100vw - 320px) / 447);
		border-bottom-right-radius: calc(16px + 8 * (100vw - 320px) / 447);
		background-image: url(../../img/img-volunteer-1.jpg);*/
    }
    .volunteer .activities .imgWrap.bottom {
		margin-left: calc(20px + 20 * (100vw - 320px) / 447);
		/*border-top-left-radius: calc(16px + 8 * (100vw - 320px) / 447);
		border-bottom-left-radius: calc(16px + 8 * (100vw - 320px) / 447);
		background-image: url(../../img/img-volunteer-2.jpg);*/
    }
    .volunteer .activities .imgWrap.top img {
        border-top-right-radius: calc(16px + 8 * (100vw - 320px) / 447);
        border-bottom-right-radius: calc(16px + 8 * (100vw - 320px) / 447);
    }
    .volunteer .activities .imgWrap.bottom img {
        border-top-left-radius: calc(16px + 8 * (100vw - 320px) / 447);
		border-bottom-left-radius: calc(16px + 8 * (100vw - 320px) / 447);
    }
    .volunteer .activities .momo-volunteer-intro-text.txt {
        margin: 0 auto 40px;
    }
    .volunteer .activities .grid {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 0;
    }
    .volunteer .activities .card {
		width: 100%;
		height: auto;
        margin: 0 0 16px;
		padding: 0;
        background-image: none;
	}
    .volunteer .activities .card .icon {
        margin-bottom: inherit;
        font-size: initial;
    }
    .volunteer .activities .card .icon img {
        width: 60%;
    }
    .volunteer .activities .grid .txt {
        position: relative;
		top: 0;
		font-size: 20px;
		line-height: 1.6em;
    }
    .volunteer .activities .card h3 {
	    margin-bottom: inherit;
        font-size: 18px;
    }
    .volunteer .activities .card p {
        margin-bottom: 10px;
        padding: 0 16px;
        text-align: left;
    }
    .volunteer .flow .intro {
        font-size: 16px;
        text-align: left;
    }
    .volunteer .flow .intro br {
        display: none;
    }
    .volunteer .flow .item {
        padding: 16px 16px 0;
        gap: 16px;
    }
    .volunteer .flow .item .number {
        width: 40px;
    }
    .volunteer .flow .item h3 {
        font-size: 18px;
    }
}
@media (max-width: 500px) {
     .volunteer .catch .txt {
        text-align: left;
     }
     .volunteer .catch .txt br {
        display: none;
     }
}