/* メインページ専用スタイル */

/* フォントファミリー設定 */
* {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* メインビジュアル */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    padding: 2rem;
    z-index: 2;
    position: relative;
}

.hero-main {
    margin-bottom: 3rem;
}

/* ロゴと日付画像 */
.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.logo-image {
    height: 80px;
    width: auto;
    margin: 0 auto 1rem;
    display: block;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

/* メインビジュアル専用のロゴスタイル */
.hero-logo-image {
    height: 150px;
    width: auto;
    margin: 0 auto 1rem;
    display: block;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.day-image {
    height: 25px;
    width: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

.hero-highlight {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.highlight-text {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.hero-date {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.date-main {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #feca57;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.date-sub {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    opacity: 0.9;
}

.hero-description {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-description p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.gourmet-btn {
    background: linear-gradient(45deg, #ec6c00, #ff8c00);
}

.stage-btn {
    background: linear-gradient(45deg, #009FE8, #00bfff);
}

.handmade-btn {
    background: linear-gradient(45deg, #6fb92c, #8bc34a);
}

.btn-icon {
    font-size: 1.3rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 浮遊バルーン */
.floating-balloons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.balloon {
    position: absolute;
    width: 80px;
    height: auto;
    opacity: 0.8;
    animation: floatBalloon 8s ease-in-out infinite;
}

.balloon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    width: 60px;
}

.balloon-2 {
    top: 60%;
    left: 80%;
    animation-delay: 1s;
    width: 70px;
}

.balloon-3 {
    top: 80%;
    left: 20%;
    animation-delay: 2s;
    width: 65px;
}

.balloon-4 {
    top: 30%;
    left: 70%;
    animation-delay: 3s;
    width: 75px;
}

.balloon-5 {
    top: 70%;
    left: 15%;
    animation-delay: 4s;
    width: 55px;
}

.balloon-6 {
    top: 40%;
    left: 85%;
    animation-delay: 5s;
    width: 80px;
}

.balloon-7 {
    top: 50%;
    left: 5%;
    animation-delay: 6s;
    width: 70px;
}

@keyframes floatBalloon {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.8;
    }

    25% {
        transform: translateY(-30px) rotate(5deg) scale(1.05);
        opacity: 1;
    }

    50% {
        transform: translateY(-50px) rotate(0deg) scale(1.1);
        opacity: 0.9;
    }

    75% {
        transform: translateY(-20px) rotate(-5deg) scale(1.05);
        opacity: 1;
    }
}

.hero-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-element {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.hero-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-element:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 1s;
}

.hero-element:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 2s;
}

.hero-element:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 3s;
}

.hero-element:nth-child(5) {
    top: 70%;
    left: 15%;
    animation-delay: 4s;
}

.hero-element:nth-child(6) {
    top: 40%;
    left: 85%;
    animation-delay: 5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* セクション共通スタイル */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* 開催概要テーブル */
.event-overview {
    padding: 4rem 0;
    background: #f8f9fa;
}

.overview-table {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.overview-row {
    display: flex;
    border-bottom: 1px solid #e9ecef;
}

.overview-row:last-child {
    border-bottom: none;
}

.overview-label {
    width: 120px;
    background: #6c757d;
    color: white;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overview-value {
    flex: 1;
    padding: 1.5rem;
    line-height: 1.6;
}

.venue-note {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
}

/* イベント概要 */
.overview {
    padding: 5rem 0;
    background: white;
}

.overview-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.overview-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    position: relative;
    overflow: hidden;
}

.overview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* 各イベントの背景色（ヘッダーメニューに合わせた色） */
.gourmet-overview {
    background: linear-gradient(135deg, #ec6c00, #ff8c42);
    color: white;
}

.stage-overview {
    background: linear-gradient(135deg, #009FE8, #4fc3f7);
    color: white;
}

.handmade-overview {
    background: linear-gradient(135deg, #6fb92c, #8bc34a);
    color: white;
}

.other-overview {
    background: linear-gradient(135deg, #FBC724, #ffd54f);
    color: #333;
}

/* 写真エリア */
.overview-images {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.overview-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.overview-image:hover {
    transform: scale(1.05);
}

/* コンテンツエリア */
.overview-content {
    flex: 1;
}

.overview-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

/* ボタン */
.overview-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    color: inherit;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.overview-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Coming Soon バッジ */
.coming-soon-badge {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 0, 0, 0.1);
    color: inherit;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid rgba(0, 0, 0, 0.2);
}

/* お知らせ */
.news {
    padding: 4rem 0;
    background: white;
}

.news-list {
    max-width: 600px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.3s ease;
}

.news-item:hover {
    background-color: #f8f9fa;
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    background: #ec6c00;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.news-content {
    flex: 1;
    line-height: 1.6;
}

/* アクセス */
.access {
    padding: 4rem 0;
    background: #f8f9fa;
}

.access-content {
    max-width: 1000px;
    margin: 0 auto;
}

.access-info {
    text-align: center;
}

.access-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.access-info p {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.access-map {
    margin: 2rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.access-notice {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.access-notice h4 {
    color: #e70100;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.access-notice ul {
    list-style: none;
    padding: 0;
}

.access-notice li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.access-notice li::before {
    content: '•';
    color: #e70100;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.access-link {
    text-align: center;
}

.access-detail-btn {
    background: linear-gradient(45deg, #e70100, #ff4444);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 1, 0, 0.3);
    display: inline-block;
}

.access-detail-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 1, 0, 0.4);
}

/* コンテナ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .logo-image {
        height: 60px;
    }

    .day-image {
        height: 20px;
    }

    .highlight-text {
        font-size: 1.1rem;
        padding: 0.6rem 2rem;
    }

    .hero-buttons {
        gap: 1rem;
    }

    .hero-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    /* バルーンのサイズ調整 */
    .balloon {
        width: 50px;
    }

    .balloon-1 {
        width: 40px;
    }

    .balloon-2 {
        width: 45px;
    }

    .balloon-3 {
        width: 42px;
    }

    .balloon-4 {
        width: 48px;
    }

    .balloon-5 {
        width: 38px;
    }

    .balloon-6 {
        width: 50px;
    }

    .balloon-7 {
        width: 45px;
    }

    /* イベント概要のレスポンシブ対応 */
    .overview-item {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .overview-images {
        justify-content: center;
        flex-wrap: wrap;
    }

    .overview-image {
        width: 100px;
        height: 100px;
    }

    .overview-content {
        text-align: center;
    }

    .overview-content h3 {
        font-size: 1.5rem;
    }

    .overview-content p {
        font-size: 1rem;
    }

    .overview-row {
        flex-direction: column;
    }

    .overview-label {
        width: 100%;
        border-radius: 0;
    }

    .news-item {
        flex-direction: column;
        text-align: center;
    }

    .access-info h3 {
        font-size: 1.5rem;
    }

    .access-info p {
        font-size: 1rem;
    }

    .access-notice {
        padding: 1.5rem;
    }

    .access-notice h4 {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 80vh;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-logo-image {
        height: 90px;
        width: auto;
    }

    .day-image {
        height: 16px;
    }

    .highlight-text {
        font-size: 1rem;
        padding: 0.5rem 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        justify-content: center;
    }

    /* バルーンのサイズ調整 */
    .balloon {
        width: 35px;
    }

    .balloon-1 {
        width: 30px;
    }

    .balloon-2 {
        width: 32px;
    }

    .balloon-3 {
        width: 28px;
    }

    .balloon-4 {
        width: 35px;
    }

    .balloon-5 {
        width: 25px;
    }

    .balloon-6 {
        width: 35px;
    }

    .balloon-7 {
        width: 30px;
    }

    /* イベント概要のレスポンシブ対応（480px以下） */
    .overview-item {
        padding: 1rem;
        gap: 1rem;
    }

    .overview-images {
        gap: 0.5rem;
    }

    .overview-image {
        width: 80px;
        height: 80px;
    }

    .overview-content h3 {
        font-size: 1.3rem;
    }

    .overview-content p {
        font-size: 0.9rem;
    }

    .overview-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* 開催詳細のレスポンシブ対応（480px以下） */
    .p-home__contents_datalist-item {
        padding: 0.8rem;
        margin-bottom: 0.6rem;
    }

    .p-home__contents_datalist-item .inner {
        gap: 0.8rem;
    }

    .p-home__contents_datalist-item .date {
        font-size: 1.3rem;
    }

    .p-home__contents_datalist-item .date span {
        font-size: 0.9rem;
    }

    .p-home__contents_datalist-item .date-friday {
        font-size: 0.7rem;
        padding: 0.15rem 0.5rem;
    }

    .p-home__contents_datalist-item .price {
        font-size: 0.9rem;
    }

    .p-home__contents_datalist-item .font30 {
        font-size: 0.9rem;
    }

    .p-home__contents_datalist-item .money-flex {
        font-size: 1.1rem;
    }

    .p-home__contents_datalist-item .inline-block {
        font-size: 0.7rem;
        padding: 0.15rem 0.5rem;
    }

    .overview-table {
        margin: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }
}

/* 開催詳細 */
.p-home__contents_datalist {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.p-home__contents_datalist-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.p-home__contents_datalist-item .inner {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.p-home__contents_datalist-item .tt {
    flex-shrink: 0;
}

.p-home__contents_datalist-item .date {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1;
}

/* 日付範囲の表示を横並びに */
.p-home__contents_datalist-item .date-range {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.p-home__contents_datalist-item .separator {
    font-size: 1.5rem;
    font-weight: 600;
    color: #666;
    margin: 0 0.3rem;
}

.p-home__contents_datalist-item .date span {
    font-size: 1.2rem;
    font-weight: 500;
    color: #666;
}

.p-home__contents_datalist-item .date-friday {
    background: #ec6c00;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.p-home__contents_datalist-item .mm {
    flex: 1;
}

.p-home__contents_datalist-item .price {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.p-home__contents_datalist-item .inline-block {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.p-home__contents_datalist-item .type02 {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.p-home__contents_datalist-item .font30 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.p-home__contents_datalist-item .money-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.p-home__contents_datalist-item .money-flex {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ec6c00;
}

.p-home__contents_datalist-item .money-flex p {
    margin: 0;
    font-size: 1rem;
    color: #666;
}

.p-home__contents_datalist-item .money-flex span {
    font-size: 0.8rem;
    color: #999;
}

.p-home__contents_datalist-item .label {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.p-home__contents_datalist-item .etc {
    font-size: 0.8rem;
    color: #999;
    font-style: italic;
}

.p-home__contents_datalist-item .row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.p-home__contents_datalist-item .n-font {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* スマホ表示での開催概要対応 */
@media (max-width: 768px) {
    .p-home__contents_datalist-item {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }

    .p-home__contents_datalist-item .inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .p-home__contents_datalist-item .tt {
        width: 100%;
    }

    .p-home__contents_datalist-item .date {
        font-size: 1.5rem;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.3rem;
    }

    .p-home__contents_datalist-item .date span {
        font-size: 1rem;
    }

    .p-home__contents_datalist-item .date-friday {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
        margin-left: 0.3rem;
    }

    .p-home__contents_datalist-item .mm {
        width: 100%;
    }

    .p-home__contents_datalist-item .price {
        font-size: 1rem;
    }

    .p-home__contents_datalist-item .type02 {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .p-home__contents_datalist-item .font30 {
        font-size: 1rem;
    }

    .p-home__contents_datalist-item .money-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .p-home__contents_datalist-item .money-flex {
        font-size: 1.3rem;
    }

    .p-home__contents_datalist-item .row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .p-home__contents_datalist-item .inline-block {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
        margin-left: 0;
        margin-top: 0.3rem;
    }
}

@media (max-width: 480px) {
    .p-home__contents_datalist-item {
        padding: 0.8rem;
        margin-bottom: 0.6rem;
    }

    .p-home__contents_datalist-item .date {
        font-size: 1.3rem;
    }

    .p-home__contents_datalist-item .date span {
        font-size: 0.9rem;
    }

    .p-home__contents_datalist-item .date-friday {
        font-size: 0.7rem;
        padding: 0.15rem 0.5rem;
    }

    .p-home__contents_datalist-item .price {
        font-size: 0.9rem;
    }

    .p-home__contents_datalist-item .font30 {
        font-size: 0.9rem;
    }

    .p-home__contents_datalist-item .money-flex {
        font-size: 1.2rem;
    }

    .p-home__contents_datalist-item .money-flex p {
        font-size: 0.9rem;
    }

    .p-home__contents_datalist-item .money-flex span {
        font-size: 0.7rem;
    }

    .p-home__contents_datalist-item .label {
        font-size: 0.8rem;
    }

    .p-home__contents_datalist-item .etc {
        font-size: 0.7rem;
    }

    .p-home__contents_datalist-item .n-font {
        font-size: 0.9rem;
    }
}