/* Worries section styles */
#worries { background-color: #fff; padding: 60px 0; }

/* Worries title styles */
#worries .title_box h2 { 
    text-align: center; 
    font-size: 220%; 
    font-weight: 500; 
    position: relative; 
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

/* Color settings for title parts */
#worries .title_box h2 .problem-title {
    color: #660199;
    font-weight: 900;
}

#worries .title_box h2 .problem-line {
    display: inline-block;
    width: 50px;
    height: 2px;
    background-color: #7d5f9f;
    margin: 0 20px;
    vertical-align: middle;
}

#worries .title_box h2 .problem-subtitle {
    color: #000;
    font-weight: 500;
}

/* Reform section styles */
#reform { background-color: #fff; padding: 60px 0; }

/* Reform title styles */
#reform .title_box h2 { 
    text-align: center; 
    font-size: 220%; 
    font-weight: 500; 
    position: relative; 
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

/* Color settings for reform title parts */
#reform .title_box h2 .reform-title {
    color: #660199;
    font-weight: 900;
}

#reform .title_box h2 .reform-line {
    display: inline-block;
    width: 50px;
    height: 2px;
    background-color: #7d5f9f;
    margin: 0 20px;
    vertical-align: middle;
}

#reform .title_box h2 .reform-subtitle {
    color: #000;
    font-weight: 500;
}
.worries_content { margin-top: 40px; }
.worries_list { list-style: none; padding: 0; margin: 0 0 40px 0; }
.worries_list li { 
    background: #f8f1fb; 
    padding: 15px 20px 15px 40px; 
    margin-bottom: 10px; 
    position: relative;
    font-size: 110%;
    line-height: 1.6;
}
.worries_list li::before {
    content: "●";
    color: #660199;
    position: absolute;
    left: 15px;
    font-size: 120%;
}
.worries_solution {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: #660199;
}
.solution_text {
    color: #fff;
    font-size: 160%;
    letter-spacing: 0.05em;
}

@media screen and (max-width:768px){
	/* Worries responsive styles */
	#worries { padding: 20px 0; }
	#worries .title_box h2 { 
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		line-height: 1.4; 
		font-size: 200%;
		margin: 0 auto 30px auto;
		padding: 0 15px;
	}
	#worries .title_box h2 .problem-line {
		display: none;
	}
	#worries .title_box h2 .problem-subtitle {
		margin-top: 15px;
		font-size: 85%;
		line-height: 1.3;
		text-align: center;
		width: 100%;
	}
	.worries_list li { 
		font-size: 100%;
		padding: 12px 15px 12px 35px;
	}
	.worries_list li::before {
		left: 12px;
	}
	.worries_solution {
		padding: 20px 15px;
	}
	.solution_text {
		font-size: 140%;
	}
	
	/* Reform responsive styles */
	#reform { padding: 20px 0; }
	#reform .title_box h2 { 
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		line-height: 1.4; 
		font-size: 200%;
		margin: 0 auto 30px auto;
		padding: 0 15px;
	}
	#reform .title_box h2 .reform-line {
		display: none;
	}
	#reform .title_box h2 .reform-subtitle {
		margin-top: 15px;
		font-size: 85%;
		line-height: 1.3;
		text-align: center;
		width: 100%;
	}
}

/* Cases section styles */
#cases { background-color: #f8f1fb; padding: 60px 0; }

/* Cases title styles */
#cases .title_box h2 { 
    text-align: center; 
    font-size: 220%; 
    font-weight: 500; 
    position: relative; 
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

/* Color settings for cases title parts */
#cases .title_box h2 .case-title {
    color: #660199;
    font-weight: 900;
}

#cases .title_box h2 .case-line {
    display: inline-block;
    width: 50px;
    height: 2px;
    background-color: #7d5f9f;
    margin: 0 20px;
    vertical-align: middle;
}

#cases .title_box h2 .case-subtitle {
    color: #000;
    font-weight: 500;
}

/* Cases content styles */
.cases_content { margin-top: 40px; }
.cases_gallery { 
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
    margin-bottom: 40px;
}

.case_item {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(102,1,153,0.2);
}

.case_item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.case_item p {
    font-size: 110%;
    font-weight: bold;
    color: #333;
    margin: 0;
}

/* Mobile responsive styles for cases */
@media screen and (max-width:768px){
    #cases { padding: 20px 0; }
    #cases .title_box h2 { 
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        line-height: 1.4; 
        font-size: 200%;
        margin: 0 auto 30px auto;
        padding: 0 15px;
    }
    #cases .title_box h2 .case-line {
        display: none;
    }
    #cases .title_box h2 .case-subtitle {
        margin-top: 15px;
        font-size: 85%;
        line-height: 1.3;
        text-align: center;
        width: 100%;
    }
    .cases_gallery { 
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
    .case_item {
        padding: 15px;
    }
    .case_item img {
        height: 180px;
    }
}

/* Success Point section styles */
#success-point { background-color: #f8f1fb; padding: 60px 0; }

/* Success Point title styles */
#success-point .title_box h2 { 
    text-align: center; 
    font-size: 220%; 
    font-weight: 500; 
    position: relative; 
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

/* Color settings for point title parts */
#success-point .title_box h2 .point-title {
    color: #660199;
    font-weight: 900;
}

#success-point .title_box h2 .point-line {
    display: inline-block;
    width: 50px;
    height: 2px;
    background-color: #7d5f9f;
    margin: 0 20px;
    vertical-align: middle;
}

#success-point .title_box h2 .point-subtitle {
    color: #000;
    font-weight: 500;
}

/* Success Point content styles */
.point_list { 
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
    margin-top: 40px;
}

.point_box {
    background: #fff;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.point_box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(102,1,153,0.2);
}

.point_box h5 {
    color: #660199;
    font-size: 130%;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid #f8f1fb;
    padding-bottom: 15px;
}

.point_box p {
    font-size: 110%;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

/* Mobile responsive styles for success point */
@media screen and (max-width:768px){
    #success-point { padding: 20px 0; }
    #success-point .title_box h2 { 
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        line-height: 1.4; 
        font-size: 220%;
        margin: 0 auto 30px auto;
        padding: 0 15px;
    }
    #success-point .title_box h2 .point-line {
        display: none;
    }
    #success-point .title_box h2 .point-subtitle {
        margin-top: 15px;
        font-size: 85%;
        line-height: 1.3;
        text-align: center;
        width: 100%;
    }
    .point_list { 
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
    .point_box {
        padding: 20px 15px;
    }
    .point_box h5 {
        font-size: 120%;
    }
    .point_box p {
        font-size: 100%;
    }
}

/* Column section styles */
#colmun { background-color: #fff; padding: 60px 0; }

/* Column title styles */
#colmun .title_box h2 { 
    text-align: center; 
    font-size: 220%; 
    font-weight: 500; 
    position: relative; 
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

/* Color settings for column title parts */
#colmun .title_box h2 .column-title {
    color: #660199;
    font-weight: 900;
}

#colmun .title_box h2 .column-line {
    display: inline-block;
    width: 50px;
    height: 2px;
    background-color: #7d5f9f;
    margin: 0 20px;
    vertical-align: middle;
}

#colmun .title_box h2 .column-subtitle {
    color: #000;
    font-weight: 500;
}

/* Column content styles */
.column_content { margin-top: 40px; }
.column_gallery { 
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    margin-bottom: 40px;
}

.column_item {
    text-align: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.column_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(102,1,153,0.2);
}

.column_item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.column_item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.column_item p {
    font-size: 110%;
    font-weight: bold;
    color: #333;
    margin: 0;
    padding: 0 15px 20px 15px;
    line-height: 1.5;
}

/* Mobile responsive styles for column */
@media screen and (max-width:768px){
    #colmun { padding: 20px 0; }
    #colmun .title_box h2 { 
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        line-height: 1.4; 
        font-size: 200%;
        margin: 0 auto 30px auto;
        padding: 0 15px;
    }
    #colmun .title_box h2 .column-line {
        display: none;
    }
    #colmun .title_box h2 .column-subtitle {
        margin-top: 15px;
        font-size: 85%;
        line-height: 1.3;
        text-align: center;
        width: 100%;
    }
    .column_gallery { 
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
    .column_item {
        margin-bottom: 0;
    }
    .column_item img {
        height: 180px;
    }
    .column_item p {
        font-size: 100%;
        padding: 0 10px 15px 10px;
    }
}

/* Area section styles */
#area { background-color: #fff; padding: 60px 0; }

/* Area title styles */
#area .title_box h2 { 
    text-align: center; 
    font-size: 220%; 
    font-weight: 500; 
    position: relative; 
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

/* Color settings for area title parts */
#area .title_box h2 .area-title {
    color: #660199;
    font-weight: 900;
}

#area .title_box h2 .area-line {
    display: inline-block;
    width: 50px;
    height: 2px;
    background-color: #7d5f9f;
    margin: 0 20px;
    vertical-align: middle;
}

#area .title_box h2 .area-subtitle {
    color: #000;
    font-weight: 500;
}

/* Area content styles */
.area_content { 
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.area_box {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.25);
    max-width: 900px;
    width: 100%;
}

.area_text p {
    font-size: 115%;
    line-height: 1.7;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.03em;
    text-align: center;
}

.area_text .sp-br {
    display: none;
}

.area_text .pc-br {
    display: inline;
}

/* Mobile responsive styles for area */
@media screen and (max-width:768px){
    #area { padding: 20px 0; }
    #area .title_box h2 { 
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        line-height: 1.4; 
        font-size: 200%;
        margin: 0 auto 25px auto;
        padding: 0 15px;
    }
    #area .title_box h2 .area-line {
        display: none;
    }
    #area .title_box h2 .area-subtitle {
        margin-top: 15px;
        font-size: 80%;
        line-height: 1.3;
        text-align: center;
        width: 100%;
    }
    .area_box {
        padding: 25px 20px;
        margin: 0 15px;
    }
    .area_text p {
        font-size: 105%;
        line-height: 1.6;
        text-align: center;
    }
    .area_text .sp-br {
        display: inline;
    }
    .area_text .pc-br {
        display: none;
    }
}

/* FAQ section styles */
#question { background-color: #f8f1fb; padding: 60px 0; }

/* FAQ title styles */
#question .title_box h2 { 
    text-align: center; 
    font-size: 220%; 
    font-weight: 500; 
    position: relative; 
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

/* Color settings for FAQ title parts */
#question .title_box h2 .faq-title {
    color: #660199;
    font-weight: 900;
}

#question .title_box h2 .faq-line {
    display: inline-block;
    width: 50px;
    height: 2px;
    background-color: #7d5f9f;
    margin: 0 20px;
    vertical-align: middle;
}

#question .title_box h2 .faq-subtitle {
    color: #000;
    font-weight: 500;
}

/* FAQ accordion styles */
.faq_accordion {
    margin-top: 40px;
    margin-bottom: 40px;
}

.faq_item {
    background: #fff;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: box-shadow 0.4s ease-in-out;
}

.faq_item:hover {
    box-shadow: 0 4px 15px rgba(102,1,153,0.15);
}

.faq_question {
    padding: 20px 25px;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.4s ease-in-out;
}

.faq_question:hover {
    background-color: #f8f1fb;
}

.faq_question h4 {
    margin: 0;
    font-size: 115%;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    flex-grow: 1;
    padding-right: 20px;
}

.faq_icon {
    font-size: 140%;
    font-weight: bold;
    color: #660199;
    min-width: 30px;
    text-align: center;
    transition: transform 0.4s ease-in-out, color 0.4s ease-in-out;
}

.faq_item.active .faq_icon {
    transform: rotate(180deg);
    color: #8e44ad;
}

.faq_answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    padding: 0 25px;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq_item.active .faq_answer {
    padding: 0 25px 25px 25px;
}

.faq_answer p {
    margin: 0;
    font-size: 110%;
    line-height: 1.7;
    color: #555;
    padding-top: 15px;
}

/* Mobile responsive styles for FAQ */
@media screen and (max-width:768px){
    #question { padding: 20px 0; }
    #question .title_box h2 { 
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        line-height: 1.4; 
        font-size: 200%;
        margin: 0 auto 30px auto;
        padding: 0 15px;
    }
    #question .title_box h2 .faq-line {
        display: none;
    }
    #question .title_box h2 .faq-subtitle {
        margin-top: 15px;
        font-size: 85%;
        line-height: 1.3;
        text-align: center;
        width: 100%;
    }
    .faq_question {
        padding: 15px 20px;
    }
    .faq_question h4 {
        font-size: 105%;
        padding-right: 15px;
    }
    .faq_icon {
        font-size: 130%;
        min-width: 25px;
    }
    .faq_answer {
        padding: 0 20px;
    }
    .faq_item.active .faq_answer {
        padding: 0 20px 20px 20px;
    }
    .faq_answer p {
        font-size: 100%;
        line-height: 1.6;
        padding-top: 10px;
    }
}

/* News section styles */
#news { background-color: #fff; padding: 60px 0; }

/* News title styles */
#news .title_box h2 { 
    text-align: center; 
    font-size: 220%; 
    font-weight: 500; 
    position: relative; 
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

/* Color settings for news title parts */
#news .title_box h2 .news-title {
    color: #660199;
    font-weight: 900;
}

#news .title_box h2 .news-line {
    display: inline-block;
    width: 50px;
    height: 2px;
    background-color: #7d5f9f;
    margin: 0 20px;
    vertical-align: middle;
}

#news .title_box h2 .news-subtitle {
    color: #000;
    font-weight: 500;
}

/* Mobile responsive styles for news */
@media screen and (max-width:768px){
    #news { padding: 20px 0; }
    #news .title_box h2 { 
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        line-height: 1.4; 
        font-size: 200%;
        margin: 0 auto 30px auto;
        padding: 0 15px;
    }
    #news .title_box h2 .news-line {
        display: none;
    }
    #news .title_box h2 .news-subtitle {
        margin-top: 15px;
        font-size: 85%;
        line-height: 1.3;
        text-align: center;
        width: 100%;
    }
    
    /* News inner content centering for mobile */
    .news_inner { 
        justify-content: center; 
        flex-direction: column;
        align-items: center;
    }
    .news_l { 
        width: 100%; 
        padding: 3% 0; 
        text-align: center;
    }
    .news_r { 
        width: 100%; 
        text-align: center;
    }
}

/* Company section styles */
#overview { background-color: #fff; padding: 60px 0; }

/* Company title styles */
#overview .title_box h2 { 
    text-align: center; 
    font-size: 220%; 
    font-weight: 500; 
    position: relative; 
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

/* Color settings for company title parts */
#overview .title_box h2 .company-title {
    color: #660199;
    font-weight: 900;
}

#overview .title_box h2 .company-line {
    display: inline-block;
    width: 50px;
    height: 2px;
    background-color: #7d5f9f;
    margin: 0 20px;
    vertical-align: middle;
}

#overview .title_box h2 .company-subtitle {
    color: #000;
    font-weight: 500;
}

/* Company content styles */
.overview_content {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.company_info {
    flex: 1;
    min-width: 300px;
}

.access_map {
    flex: 1;
    min-width: 300px;
}

.access_map h3 {
    font-size: 120%;
    font-weight: 600;
    margin-bottom: 15px;
    color: #660199;
}

.map_container {
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(102, 1, 153, 0.15);
}

/* Mobile responsive styles for company */
@media screen and (max-width:768px){
    #overview { padding: 20px 0; }
    #overview .title_box h2 { 
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        line-height: 1.4; 
        font-size: 200%;
        margin: 0 auto 30px auto;
        padding: 0 15px;
    }
    #overview .title_box h2 .company-line {
        display: none;
    }
    #overview .title_box h2 .company-subtitle {
        margin-top: 15px;
        font-size: 85%;
        line-height: 1.3;
        text-align: center;
        width: 100%;
    }
    .overview_content {
        flex-direction: column;
        gap: 30px;
    }
    .map_container iframe {
        height: 250px;
    }
}

/* Flow section styles */
#flow { background-color: #fff; padding: 60px 0; }

/* Flow title styles */
#flow .title_box h2 { 
    text-align: center; 
    font-size: 220%; 
    font-weight: 500; 
    position: relative; 
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

/* Color settings for flow title parts */
#flow .title_box h2 .flow-title {
    color: #660199;
    font-weight: 900;
}

#flow .title_box h2 .flow-line {
    display: inline-block;
    width: 50px;
    height: 2px;
    background-color: #7d5f9f;
    margin: 0 20px;
    vertical-align: middle;
}

#flow .title_box h2 .flow-subtitle {
    color: #000;
    font-weight: 500;
}

/* Flow content styles */
.flow_content { 
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.flow_list {
    counter-reset: flow-counter;
    list-style: none;
    padding: 0;
    margin: 0;
}

.flow_list li {
    counter-increment: flow-counter;
    position: relative;
    padding: 30px 40px;
    margin-bottom: 40px;
    background: #f8f1fb;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flow_list li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(102,1,153,0.15);
}

.flow_list li::before {
    display: none;
}

.flow_list li::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 15px solid #660199;
    z-index: 1;
}

.flow_list li:last-child::after {
    display: none;
}

.flow_list h4 {
    font-size: 120%;
    font-weight: 700;
    color: #660199;
    margin: 0 0 15px 0;
}

.flow_list p {
    font-size: 110%;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

/* Mobile responsive styles for flow */
@media screen and (max-width:768px){
    #flow { padding: 20px 0; }
    #flow .title_box h2 { 
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        line-height: 1.4; 
        font-size: 200%;
        margin: 0 auto 30px auto;
        padding: 0 15px;
    }
    #flow .title_box h2 .flow-line {
        display: none;
    }
    #flow .title_box h2 .flow-subtitle {
        margin-top: 15px;
        font-size: 85%;
        line-height: 1.3;
        text-align: center;
        width: 100%;
    }
    .flow_list li {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    .flow_list li::before {
        display: none;
    }
    .flow_list li::after {
        left: 50%;
        bottom: -18px;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 12px solid #660199;
    }
    .flow_list h4 {
        font-size: 110%;
        margin-bottom: 10px;
    }
    .flow_list p {
        font-size: 100%;
        line-height: 1.6;
    }
}

/* WordPress API ローディング・遅延読み込み用スタイル */
.loading-message {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 16px;
    background: #f9f9f9;
    border-radius: 8px;
    margin: 20px 0;
}

.loading-message:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-left: 2px solid #660199;
    border-radius: 50%;
    animation: loading-spin 1s linear infinite;
    margin-right: 10px;
    vertical-align: middle;
}

@keyframes loading-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-message {
    text-align: center;
    padding: 30px 20px;
    color: #d63638;
    background: #ffeaea;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    margin: 20px 0;
}

/* 遅延読み込み画像のプレースホルダー */
img.lazy-load {
    background: #f5f5f5 !important;
    min-height: 200px;
    display: block;
    width: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    opacity: 0.3;
}

img.lazy-load[src] {
    opacity: 1;
}

.no-image-placeholder {
    background: #f0f0f0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    font-size: 14px;
    border-radius: 4px;
}