@charset "UTF-8";
/*--------------------------------------------------------------------------
about-benefit.html
--------------------------------------------------------------------------*/
.detail-box {
	width: 60%;
	margin: 10px auto;
	padding: 20px;
	border: #999 1px solid;
	border-radius: 8px;
	overflow: hidden;
}
@media screen and (max-width:980px) {
.detail-box {
	width: 70%;
}
}
@media screen and (max-width:768px) {
.detail-box {
	width: 80%;
}
}
@media screen and (max-width:640px) {
.detail-box {
	width: 90%;
}
}
@media screen and (max-width:480px) {
.detail-box {
	width: 100%;
	}
}
.detail-box h3 {
	font-size:1.8rem;
}
.detail-box p {
	font-size:1.4rem;
}
.detail-box p.text-small {
	font-size:1.2rem;
}
/*--------------------------------------------------------------------------
about-data.html
--------------------------------------------------------------------------*/
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    padding: 1px;
}

.stats-card {
    background: #f8f9ff;
    padding: 20px;
    text-align: center;
}

.number {
    color: #00b0ec;
    font-size: 5.0rem;
    font-weight: bold;
    margin: 0 5px;
	padding: 0;
	line-height: 1;
}

/* パターン1のスタイル */
.stats-card h3.date {
	margin: 20px 0 30px 0;
}
.stats-card .stat {
	margin: 0 0 30px 0;
}
/* パターン2のスタイル */
.stats-card .restaurant .note {
    font-size: 1.4rem;
    color: #666;
    margin:0;
	line-height: 1;
}
.stats-card p {
	margin: 0;
	padding: 0;
	line-height: 1;
}
/* パターン3のスタイル */
.venue-boxes {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 0px;
}
.venue-box {
    flex: 1;
}
.venue-box .label {
    display: inline-block;
    padding: 4px 40px;
    background: #eef;
    border-radius: 20px;
    font-size: 1.6rem;
	line-height: 1;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .venue-boxes {
        flex-direction: column;
        gap: 10px;
    }
}