@charset "utf-8";

:root {
    --primary-color: #b21f31; /* æå®ããããããè²ç³»ã¬ãã */
    --secondary-color: #fcf4f5; /* èãèµ¤ç³»ã®èæ¯è² */
    --text-color: #333;
    --border-color: #ddd;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-color);
    line-height: 1.9;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- ã¬ã¤ã¢ã¦ãç¨ã®å±éã¯ã©ã¹ --- */
/* ã»ã¯ã·ã§ã³å¨ä½ã®ä¸ä¸ä½ç½ãçµ±ä¸ */
.section {
    padding: 60px 0;
}
@media (min-width: 768px) {
    .section {
        padding: 80px 0; /* PCè¡¨ç¤ºæã¯å°ãåºãã«ã¨ã */
    }
}

/* ã³ã³ãã³ãå¹ã¨å·¦å³ä½ç½ã®çµ±ä¸ */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ã»ã¯ã·ã§ã³åé ­ã¨æ«å°¾ã®è¦ç´ ã®ä½ç½ããªã»ããï¼ä¸è¦ãªééãé²ãï¼ */
.container > *:first-child { margin-top: 0; }
.container > *:last-child { margin-bottom: 0; }

/* èæ¯è²è¨­å® */
.bg-light {
    background-color: var(--secondary-color);
}

/* --- ã¿ã¤ãã«ã»è¦åºã --- */
/* å¤§é ç® (1, 2, 3...) */
h2 {
    color: var(--primary-color);
    font-size: 24px;
    text-align: center;
    margin: 0 0 40px;
    position: relative;
    padding-bottom: 15px;
    line-height: 1.5;
}
@media (min-width: 768px) {
    h2 { font-size: 30px; }
}
h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* ä¸­é ç® (2.1, 2.2...) */
h3 {
    color: var(--primary-color);
    font-size: 22px;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
    margin: 50px 0 20px;
    line-height: 1.4;
}

/* å°é ç®ã»ã«ã¼ãåã®è¦åºã */
h4 {
    font-size: 18px;
    color: #555;
    margin: 30px 0 10px;
}

p {
	font-size: 16px;
    margin: 0 0 20px;
}

/* --- åã³ã³ãã¼ãã³ã --- */
/* ãã¡ã¼ã¹ããã¥ã¼ (Hero) */
.hero {
    background: url(../img/bg-kv-sp.png) no-repeat center center/cover;
    text-align: center;
	padding: 20px 0 30px;
	margin-bottom: 0;
}
.kv-img{
	max-width: 100%;
	margin: 0 auto;
}
.kv-text{
	display: block;
	color: #fff;
	font-size: 30px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: .1rem;
	background-color: #b21f31;
	padding: 10px 0;
	margin: 20px 0 15px;
}
.kv-text__small{
	font-size: 26px;
}
@media (min-width: 768px) {
	.hero{
		background: url(../img/bg-kv-pc.png) no-repeat center center/cover;
		padding: 55px 0 70px;
	}
    .hero h1 {
		font-size: 36px;
	}
	.kv-text{
		font-size: 34px;
		line-height: 1;
		letter-spacing: .15rem;
		padding: 15px 0;
		margin: 30px 0 25px;
	}
	.kv-text__small{
		font-size: 30px;
	}
}
.hero .sub-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 30px;
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 30px;
}

/* ãªã¼ãæ */
.hero-lead {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: left;
    font-size: 16px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}
@media (min-width: 768px) {
    .hero-lead {
		padding: 30px;
	}
}

/* ç®æ¬¡ (TOC) â¼ããããéä¸­ã¾ã§è¦ãã¦éããã¶ã¤ã³ã«ä¿®æ­£â¼ */
.toc {
    background-color: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 20px;
    margin: 0 auto;
    max-width: 800px;
}
.toc h2 {
    margin-bottom: 20px;
    padding-bottom: 0;
    font-size: 20px;
}
.toc h2::after { display: none; } /* ç®æ¬¡ã¯ä¸ç·ãæ¶ã */

.toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.toc li {
    width: 100%;
}
@media (min-width: 600px) {
    .toc li { width: calc(50% - 10px); }
}

.toc a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    padding: 12px 30px 12px 15px;
    border-radius: 5px;
	font-size: 14px;
    font-weight: bold;
    text-align: left;
    transition: background-color 0.2s;
    position: relative;
    min-height: 48px;
    line-height: 1.4;
    box-sizing: border-box;
}
.toc a::after {
    content: 'â¼';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}
.toc a:hover {
    background-color: #f7e1e3;
}

/* --- ã¹ããæã®éä¸­ã¾ã§è¦ãã¦éãå¦çï¼CSSã®ã¿ã§å¶å¾¡ï¼ --- */
.toc-toggle-checkbox {
    display: none;
}
@media (max-width: 767px) {
    .toc-list-wrap {
        max-height: 180px; /* æåã®3åç¨åº¦ãè¦ããé«ã */
        overflow: hidden;
        position: relative;
        transition: max-height 0.4s ease;
    }
    .toc-list-wrap::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
        pointer-events: none;
        transition: opacity 0.4s ease;
    }
    .toc-toggle-checkbox:checked + .toc-list-wrap {
        max-height: 1000px; /* å¨ä½ãå±éãããååãªé«ã */
    }
    .toc-toggle-checkbox:checked + .toc-list-wrap::after {
        opacity: 0;
    }
    .toc-toggle-label {
        display: block;
        text-align: center;
        background-color: #fff;
        border: 1px solid var(--primary-color);
        color: var(--primary-color);
        padding: 10px;
        margin-top: 15px;
        border-radius: 5px;
        font-weight: bold;
        font-size: 14px;
        cursor: pointer;
        transition: background-color 0.2s;
    }
    .toc-toggle-label:hover {
        background-color: var(--secondary-color);
    }
    .toc-open-text { display: inline; }
    .toc-close-text { display: none; }
    
    .toc-toggle-checkbox:checked ~ .toc-toggle-label .toc-open-text { display: none; }
    .toc-toggle-checkbox:checked ~ .toc-toggle-label .toc-close-text { display: inline; }
}

@media (min-width: 768px) {
    .toc {
		padding: 30px;
	}
    .toc h2 {
        font-size: 24px;
    }
    .toc a {
        font-size: 17px;
    }
    .toc-toggle-label {
        display: none; /* PCã§ã¯ééãã¿ã³éè¡¨ç¤º */
    }
    .toc-list-wrap {
        max-height: none;
        overflow: visible;
    }
    .toc-list-wrap::after {
        display: none;
    }
}
/* â²ããã¾ã§ä¿®æ­£â² */

/* --- ã¹ã©ã¤ãã¼ï¼æ±ç¨ï¼ --- */
.slider-wrap {
    position: relative;
    max-width: 600px;
    margin: 0 auto 80px;
    display: flex;
    align-items: center;
}
.slider-wrap__survey{
	margin-bottom: 30px;
}
@media (min-width: 768px) {
	.slider-wrap__survey{
		max-width: 450px;
	}
}
.slider-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory; /* ã¹ã¯ã¤ãæã«ãã¿ãã¨æ­¢ã¾ãããã«ãã */
    gap: 15px;
    scrollbar-width: none; /* Firefoxã®ã¹ã¯ã­ã¼ã«ãã¼éè¡¨ç¤º */
    -ms-overflow-style: none; /* IEã®ã¹ã¯ã­ã¼ã«ãã¼éè¡¨ç¤º */
    scroll-behavior: smooth;
    padding: 10px 0; /* ã·ã£ãã¦ãè¦åããªãããã«ä½ç½ãç¢ºä¿ */
}
.slider-container::-webkit-scrollbar {
    display: none; /* Chrome/Safariã®ã¹ã¯ã­ã¼ã«ãã¼éè¡¨ç¤º */
}

.slide-item {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: center;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    aspect-ratio: auto;
    object-fit: contain;
}

/* å·¦å³ã®ããã²ã¼ã·ã§ã³ãã¿ã³ */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(178, 31, 49, 0.9);
    color: #fff;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: background-color 0.2s, transform 0.2s;
}
.slider-nav:hover {
    background: #8a1524;
    transform: translateY(-50%) scale(1.05);
}
.slider-prev {
    left: -22px;
}
.slider-next {
    right: -22px;
}
@media (min-width: 768px) {
	.slider-nav{
		width: 44px;
		height: 44px;
		font-size: 18px;
	}
}
/* ã¹ããè¡¨ç¤ºæã¯ãã¿ã³ãå°ãåå´ã¸ */
@media (max-width: 768px) {
    .slider-prev { left: -10px; }
    .slider-next { right: -10px; }
}

/* ã«ã¼ãã¬ã¤ã¢ã¦ã (åµåæ´çã®ç¨®é¡ãªã©) */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}
@media (min-width: 768px) {
    .card-grid { grid-template-columns: repeat(3, 1fr); }
}
.info-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-color);
}
.info-card h4 {
    color: var(--primary-color);
    margin: 0 0 15px;
    font-size: 20px;
    text-align: center;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 10px;
}
.info-card ul {
	font-size: 15px;
    margin: 0;
}

/* ãªã¹ãåã«ã¼ã (èª¤è§£ã»æ³¨æç¹ãªã©) */
.list-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 40px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.list-card h4 {
    color: var(--primary-color);
    font-size: 20px;
    margin: 0 0 15px;
}

/* ãã¤ã©ã¤ãããã¯ã¹ (ã¢ã³ã±ã¼ãã»ã¯ã­ã¼ã¸ã³ã°) */
.highlight-box {
    background-color: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(178, 31, 49, 0.1);
}
.highlight-box__title{
	font-size: 24px;
}
.highlight-box.no-border {
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
@media (min-width: 768px) {
    .highlight-box{
		padding: 40px;
	}
	.highlight-box__title{
		font-size: 30px;
	}
}
/* ç®±ã¢ãè¦ç´ ã®æå¾ã®è¦ç´ ã®margin-bottomãæã¡æ¶ãï¼åå´ä½ç½ã®çµ±ä¸ï¼ */
.hero-lead > *:last-child,
.info-card > *:last-child,
.list-card > *:last-child,
.highlight-box > *:last-child,
.faq-answer > *:last-child {
    margin-bottom: 0;
}

/* FAQ */
details {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    margin-bottom: 20px;
    overflow: hidden;
}
summary {
	font-size: 16px;
    font-weight: bold;
	line-height: 1.6;
    padding: 20px 35px 20px 20px;
    cursor: pointer;
    background-color: var(--secondary-color);
    position: relative;
    list-style: none;
}
summary::-webkit-details-marker {
    display: none;
}
summary::after {
    content: 'ï¼';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
	line-height: 1;
}
details[open] summary::after {
    content: 'ï¼';
}
.faq-answer {
	font-size: 15px;
    padding: 20px;
    border-top: 1px solid var(--border-color);
}
@media (min-width: 768px) {
	summary::after {
		font-size: 20px;
		right: 20px;
	}
}
/*----------------------------------------------------
    header,footer,etc
----------------------------------------------------*/
#gnavBox{
	padding: 5px 10px;
}
#gnavBox .headMenu-logo{
	width: auto;
}
#gnavBox .headMenu{
	padding: 0;
	margin-bottom: 0;
}
@media (min-width: 768px) {
	#header{
		margin-bottom: 12px;
	}
    #gnavBox {
		padding: 0;
	}
}
#main{
	background-color: #fff;
}
.contents-container{
	width: 100%;
	padding: 0;
	margin: 0 auto;
}
#footer{
	padding-top: 0;
	background-color: #2a2a2a;
	position: static;
	&::before{
		content: none;
		position: static;
	}
}
#footer .footer-inner{
	background: none;
	padding: 1em 0 100px 0;
}
/*----- common -----*/
.text-center{
	text-align: center;
}
.pb-0{
	padding-bottom: 0;
}
.mb-0{
	margin-bottom: 0;
}


/*----------------------------------------------------
   questionnaire
----------------------------------------------------*/

/* â¼ ã¢ã³ã±ã¼ãå°ç¨è¿½å ã¹ã¿ã¤ã« â¼ */
.survey-header-wrap { margin-top: 40px; margin-bottom: 24px; display: flex; flex-direction: column; border-bottom: 2px solid #d1d5db; padding-bottom: 8px; position: relative; }
.survey-header-title { font-size: 20px; font-weight: bold; color: #1e3a8a; margin: 0; border: none; padding: 0; line-height: 1.3; text-align: left; }
.survey-header-title span { color: #2563eb; margin-right: 4px; font-size: 18px; }
.survey-header-date { font-size: 14px; color: #64748b; font-weight: bold; margin: 8px 0 0 0; text-align: right; }
@media (min-width: 640px) { .survey-header-title { font-size: 24px; } }

.survey-outline { margin-bottom: 40px; text-align: left; }
.survey-outline h3 { font-size: 18px; font-weight: bold; color: #1f2937; margin: 0 0 12px 0; border-left: 4px solid #2563eb; padding-left: 12px; }
.survey-table { width: 100%; font-size: 14px; border-collapse: collapse; border: 1px solid #d1d5db; margin: 0; }
.survey-table th, .survey-table td { border: 1px solid #d1d5db; padding: 12px; text-align: left; }
.survey-table th { background-color: #f3f4f6; font-weight: bold; width: 33.333%; }

.survey-pagination { display: flex; overflow-x: auto; gap: 8px; padding-bottom: 12px; margin-bottom: 16px; scrollbar-width: thin; scrollbar-color: #cbd5e1 transparent; }
.survey-pagination::-webkit-scrollbar { height: 6px; }
.survey-pagination::-webkit-scrollbar-thumb { background-color: #cbd5e1; border-radius: 10px; }
.sp-btn { flex-shrink: 0; padding: 8px 16px; background-color: #fff; border: 1px solid #cbd5e1; border-radius: 20px; font-size: 13px; font-weight: bold; color: #475569; cursor: pointer; transition: all 0.2s; white-space: nowrap; box-shadow: 0 1px 3px rgba(0,0,0,0.05); margin: 0; }
.sp-btn:hover { background-color: #f8f9fa; border-color: #94a3b8; }
.sp-btn.active { background-color: #0056b3; color: #fff; border-color: #0056b3; box-shadow: 0 2px 5px rgba(0,86,179,0.3); }

.survey-carousel-wrap { position: relative; max-width: 900px; margin: 0 auto 40px; overflow: hidden; border: 1px solid #e2e8f0; border-radius: 12px; background: #fff; box-shadow: 0 10px 25px rgba(0,0,0,0.05); text-align: left; }
.survey-carousel-inner {
    display: flex;
    align-items: flex-start; /* è¿½å ï¼åã¹ã©ã¤ãã®é«ããèªèº«ã®ã³ã³ãã³ãéã«åããã */
    transition: transform 0.4s ease-in-out, height 0.4s ease-in-out; /* è¿½å ï¼é«ãï¼heightï¼ã«ãã¢ãã¡ã¼ã·ã§ã³ãé©ç¨ */
}
.survey-slide { flex: 0 0 100%; width: 100%; padding: 40px 60px; box-sizing: border-box; }
.survey-slide-num { text-align: center; font-weight: bold; color: #2563eb; margin-bottom: 8px; font-size: 16px; }
.survey-slide-title { font-size: 20px; font-weight: bold; color: #1e40af; border-bottom: 2px solid #dbeafe; padding-bottom: 8px; margin-top: 0; margin-bottom: 24px; text-align: left; }
@media (min-width: 640px) { .survey-slide-title { font-size: 24px; } }

.survey-chart-wrap { position: relative; width: 100%; height: 260px; margin-bottom: 15px; }
.survey-chart-wrap.small { height: 220px; }
.survey-chart-wrap.large { height: 280px; }
@media (min-width: 640px) { 
    .survey-chart-wrap { height: 300px; }
    .survey-chart-wrap.small { height: 250px; }
    .survey-chart-wrap.large { height: 350px; }
}

.survey-point { background-color: #eff6ff; padding: 20px; border-radius: 4px; font-size: 16px; margin-top: 24px; }
.survey-point-title { color: #1e3a8a; display: block; margin-bottom: 8px; font-size: 18px; font-weight: bold; }
.survey-point-text { margin: 0; line-height: 1.6; color: #1f2937; }

.sc-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,86,179,0.9); color: #fff; border: none; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; display: flex; justify-content: center; align-items: center; z-index: 10; font-size: 24px; box-shadow: 0 4px 6px rgba(0,0,0,0.2); transition: all 0.2s; padding: 0; }
.sc-nav:hover { background: #004494; transform: translateY(-50%) scale(0.9); }
.sc-prev { left: 15px; }
.sc-next { right: 15px; }

.sc-footer { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; background: #f8f9fa; border-top: 1px solid #e2e8f0; }

.survey-summary-text { text-align: left; margin-top: 32px; font-size: 16px; line-height: 1.6; }
.survey-summary-note { text-align: left; margin-top: 16px; font-size: 14px; color: #4b5563; }

/* â¼ ã«ã¹ã¿ã å¡ä¾ï¼HTMLã§ç¶ºéºã«æ¹è¡ã»è¡¨ç¤ºããããã®ã¹ã¿ã¤ã«ï¼ â¼ */
.custom-legend { display: flex; flex-wrap: wrap; justify-content: left; gap: 8px 16px; margin-top: 10px; padding: 0 5px; width: 100%; box-sizing: border-box; }
.custom-legend-item { display: flex; align-items: flex-start; font-size: 14px; color: #4b5563; line-height: 1.4; text-align: left; }
.custom-legend-box { display: inline-block; width: 14px; height: 14px; margin-top: 1px; margin-right: 6px; flex-shrink: 0; border-radius: 2px; }

@media (min-width: 768px) {
    .custom-legend-item { font-size: 14px; }
}

@media (max-width: 768px) {
    .survey-header-wrap { flex-direction: column; align-items: stretch; }
    .survey-header-date { text-align: right; margin-top: 8px; }
    
/* â¼ SPè¡¨ç¤ºæã®ä½ç½èª¿æ´ã¨ç¢å°ã®è¢«ãè§£æ¶ â¼ */
    .survey-pagination {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
    }
    .survey-carousel-wrap {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        border-radius: 12px; /* PCã¨åãè§ä¸¸ã«æ»ã */
        border-left: 1px solid #e2e8f0; /* PCã¨åãæ ç·ã«æ»ã */
        border-right: 1px solid #e2e8f0; /* PCã¨åãæ ç·ã«æ»ã */
        box-sizing: border-box;
    }
    /* å·¦å³ã«å°ãä½ç½ãè¨­ãã¦ãç¢å°ãã¿ã³ãã³ã³ãã³ãã«è¢«ããªãããã«å¾®èª¿æ´ */
    .survey-slide { padding: 30px 25px 40px; }
    
    /* ãã¿ã³ãã°ã©ãæ¨ªï¼ä¸­å¤®ããä¸ï¼ã«æ»ãã¤ã¤ãè¢«ããé²æ­¢ */
    .sc-nav { 
        width: 36px; 
        height: 36px; 
        font-size: 16px; 
        top: 180px; 
        bottom: auto; 
        transform: translateY(-50%);
    }
    .sc-prev { left: 4px; }
    .sc-next { right: 4px; }
}

/* --- â¼â¼ åéæ¸é¡è¨ºæ­ï¼è¿½å ã³ã³ãã³ãç¨ã¹ã¿ã¤ã« â¼â¼ --- */

/* å©ç¨ã®æµã ã¹ããããã¶ã¤ã³ */
.step-flow {
    background-color: var(--secondary-color);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
}
.step-flow__item {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.step-flow__num {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    font-size: 18px;
    margin-right: 15px;
    flex-shrink: 0;
}
.step-flow__text {
    font-size: 16px;
    font-weight: bold;
    color: var(--text-color);
    margin: 0; /* pã¿ã°ã®marginå¹²æ¸é²æ­¢ */
}
.step-flow__arrow {
    text-align: center;
    color: var(--primary-color);
    font-size: 16px;
    margin: 8px 0;
}

/* ç®æ¡æ¸ãç¨ããã¯ã¹ãã¶ã¤ã³ */
.info-box {
    background-color: #f9f9f9;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}
.info-box ul {
    margin: 0;
    padding-left: 20px;
}
.info-box li {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-color);
}
.info-box li:last-child {
    margin-bottom: 0;
}