#headline, .right-header {
	display: none;
}
body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
section {
    padding: 2rem 0;
}
.section-title {
    background: #e5ebf5;
    border-left: 6px solid #003aa0;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 32px;
    font-weight: 700;    
}
.section-title + p {
    font-size: 20px;
}
.ad-banner {
    /*background-color: #e8edf6;
    border: 4px solid #abaed6;
    height: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;*/
    text-align: center;
}
.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.step-item {
    border-top: 8px solid #1e3a5f;
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 360px;
}
.step-badge {
    background-color: #1e3a5f;
    color: white;
    display: inline-block;
    padding: 5px 15px;
    font-weight: bold;
    margin-top: 1px;
}
.step-icon {
    background: #f0f4f8;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
    color: #1e3a5f;
}
.step-title {
    font-size: 30px;
    font-weight: bold;    
    margin-bottom: 2rem;
}
.step-desc {
    font-size: 18px;
    color: #565656;
}
.step-item:not(:last-child)::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #cbd5e0;
}
.tip-box {
    background: #fff;
    color: #1e3a5f;
    border: 5px solid #1e3a5f;
    border-radius: 50px;
    padding: 16px 20px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    max-width: 80%;
    margin: 2rem auto;
}
.tip-box i {
    margin-right: 2rem;
    font-size: 36px;
}
.faq-item {
    margin-bottom: 2rem;
}
.faq-q, .faq-a {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
}
.faq-a {
    flex-direction: row-reverse;
}
.icon-q, .icon-a {
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 3.5rem;
    line-height: 1;
    margin-top: 1rem;
}
.icon-q {
    background-color: #1800ad;
}
.icon-a {
    background-color: #ff5757;
}
.question-text, .answer-text {
    background: #f8fafc;    
    position: relative;
    border-radius: 3rem;
    padding: 2rem;    
    flex: 1;
    text-align: center;
    font-size: 24px;
    font-weight: bold; 
}
.question-text {
    margin-left: 3rem;
    color: #1800ad;
}
.answer-text {
    margin-right: 3rem;
    color: #af2626;
}
.question-text p, .answer-text p {
    margin-bottom: 1rem;    
}
.question-text:before, .answer-text:before {
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;   
    position: absolute;
    top: 2rem;
}
.question-text:before {
    border-width: 20px 30px 20px 0px;
    border-color: transparent #f8fafc transparent transparent;
    left: -30px;
}
.answer-text:before {
    border-width: 20px 0px 20px 30px;
    border-color: transparent transparent transparent #f8fafc;
    right: -30px;
}
.simulation-box {
    border: 4px solid #e2e8f0;
    border-radius: 10px;
    padding: 2rem 2.5rem 3rem;
    max-width: 80%;
    margin: 0 auto;
}
.simulation-box .form-group {
    margin-bottom: 2rem;
}
.simulation-box label {
    font-size: 20px;
    font-weight: bold;
    color: #254064;
    display: block;
    margin-bottom: 0.5rem;
}
.simulation-box .form-control {
    border: 6px solid #cbd5e0;
    border-radius: 1rem;
    font-size: 20px;
    color: #8e8e8e;
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    line-height: 2;
}
.simulation-box select {
    appearance: none;
    cursor: pointer;
}   
.result_box {
    border: 6px solid #e67e22;
    background: #fff5eb;
    border-radius: 1rem;
    color: #666; 
    display: block;
    width: 100%;
    padding: 2rem;
    text-align: center;
    font-size: 14px;
}
.result {
    margin-bottom: 1rem;
}
.result input[type="text"] {
    color: #e88832;
    font-size: 20px;
    font-weight: bold;
    border: none;
    background: none;
    width: 100%;
    text-align: center;
}
.btn-donate {
    background: #e88832;
    border-radius: 4rem;
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    padding: 1rem 2rem;
}
.custom-dropdown {
	position: relative;
}
.custom-dropdown:after {
	display: block;
	content: "";
	position: absolute;
	right: 2rem;
	top: 30px;
    width: 16px;
    height: 16px;
    border-right: 4px solid #1d3a6d; 
    border-bottom: 4px solid #1d3a6d;
    transform: rotate(45deg);
    border-radius: 2px;
}
select:focus {
    outline: none;
}
.carousel-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.carousel-item {
    width: 350px;
    margin: 0 25px;
}
.featured-articles {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(4,1fr);
}
.featured-articles .item {
    /*border: 4px solid #abaed6;
    background-color: #e8edf6;*/
    font-weight: bold;
    width: 280px;
    margin: 0 10px 20px;
}
.featured-articles .post-title {
    padding: 10px 0;
    display: block;
}
.featured-articles img {
    height: 186px;
    width: auto;
}
.slick-prev:before, .slick-next:before {
    color: #000;
}
.slick-slide img {
	margin: 0 auto;
}
/*.slick-slide {
  	margin: 0 15px;
}
.slick-list {
  	margin: 0 -15px;
}*/
.slick-prev {
    left: 0;
}
.slick-next {
    right: 0;
}
.carousel-item.slick-slide {
    display: flex !important;
}
.marquee {
    display: flex;
    width: 100%;
    overflow: hidden;
    user-select: none;
}
.marquee-content {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    transform: translateX(calc( ((100vw - 50vw) / 2) - calc(50vw + 2rem * 2) ));
    animation: marquee 25s linear infinite;
    animation-delay: 2s; 
}
.marquee-content img {
    width: 50vw;
    height: auto;
    margin: 0 2rem; 
    object-fit: cover;
}
@keyframes marquee {
    0% {
        transform: translateX(calc( ((100vw - 50vw) / 2) - calc(50vw + 2rem * 2) ));
    }
    100% {
        transform: translateX(calc(calc( ((100vw - 50vw) / 2) - calc(50vw + 2rem * 2) ) - 100%));
    }
}
.marquee:hover .marquee-content {
    animation-play-state: paused;
}
@media (max-width: 767px) {
    section {
        padding: 1rem 15px;
    }
    .section-title {
        font-size: 20px;
        margin-bottom: 1rem;
    }    
    .section-title + p {
        font-size: 15px;
    }
    .steps-container {
        flex-direction: column;
    }
    .step-item {
        margin-bottom: 20px;
    }
    .step-item:not(:last-child)::after {
        content: '\f107';
        right: auto;
        left: 50%;
        top: auto;
        bottom: -56px;
        transform: translateY(0) translateX(-50%);
    }
    .step-title {
        font-size: 24px;
        margin-bottom: 1rem;
    }
    .tip-box {
        max-width: 100%;
        font-size: 1.125rem;
        display: flex;
        align-items: center;
        margin: 1rem auto;
    }
    .tip-box i {
        margin-right: 0.5rem;
        font-size: 20px;
    }
    .simulation-box {
        max-width: 100%;
        padding: 0.75rem 0.75rem 1rem;
    }
    .simulation-box label {
        font-size: 1rem;
    }
    .simulation-box .form-control {
        border: 3px solid #cbd5e0;
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    .custom-dropdown:after {
        right: 1rem;
        top: 16px;
        width: 12px;
        height: 12px;
        border-right: 3px solid #1d3a6d;
        border-bottom: 3px solid #1d3a6d;
    }
    .result {
        margin-bottom: 0.5rem;
    }
    .result_box {
        border: 3px solid #e67e22;     
        padding: 1rem;
        font-size: 13px;
    }
    .result input[type="text"] {
        font-size: 14px;
    }
    .btn-donate {
        font-size: 1.125rem;
        padding: 1rem;
    }
    .icon-q, .icon-a {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.5rem;
    }
    .question-text, .answer-text {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 1.5rem;
        text-align: left;
    }
    .question-text {
        margin-left: 1.5rem;
    }
    .answer-text {
        margin-right: 1.5rem;
    }
    .question-text:before {
        border-width: 10px 15px 10px 0px;
        left: -15px;
    }
    .answer-text:before {
        border-width: 10px 0px 10px 15px;
        right: -15px;
    }
    .simulation-box .form-group {
        margin-bottom: 1.5rem;
    }
    .carousel-item {
        width: 100%;
        margin: 0 1rem;
    }
    .carousel-grid:not(.slick-slider) {
        max-height: 390px;
        overflow: hidden;
    }
    .carousel-grid:not(.slick-slider) .carousel-item {
        margin: 0;
    }
    .featured-articles {
        grid-template-columns: 1fr;
    }
    .featured-articles .item {
        width: 100%;
        margin: 0 0 15px;
        min-height: inherit;
    }
    .featured-articles .item a {
        display: flex;
        align-items: flex-start;
    }
    .featured-articles img {
        width: 120px;
        height: auto;
        object-fit: contain;
    }
    .featured-articles .post-title {
        font-size: 14px;
        padding: 0 10px;
    }
    .fv small {
        padding: 0 15px;
    }
    .marquee {
        padding: 1rem 0;
    }
    .marquee-content {
        transform: translateX(calc( ((100vw - 50vw) / 2) - calc(50vw + 1rem * 2) ));
    }
    .marquee-content img {
        margin: 0 1rem;
    }
    @keyframes marquee {
        0% {
            transform: translateX(calc( ((100vw - 50vw) / 2) - calc(50vw + 1rem * 2) ));
        }
        100% {
            transform: translateX(calc(calc( ((100vw - 50vw) / 2) - calc(50vw + 1rem * 2) ) - 100%));
        }
    }
}