@charset "UTF-8";

/* ===========================================
   QRチェックイン訴求ページ - 参考サイト風デザイン
   =========================================== */

/* レスポンシブ表示制御 */
.sp-only {
    display: none;
}

@media screen and (max-width: 767px) {
    .sp-only {
        display: block;
    }
    br.sp-only {
        display: inline;
    }
    .pc-only {
        display: none;
    }
    body {
        width: 100%;
        min-width: initial;
    }
}

/* ===========================================
   SPヘッダー
   =========================================== */
.sp-header {
    background: #0a2327;
    padding: 12px 15px;
    text-align: center;
}

.sp-header-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sp-logo img {
    height: 30px;
    width: auto;
}

/* ===========================================
   SPフッター
   =========================================== */
.sp-footer {
    background: #0a2327;
    color: #fff;
    padding: 30px 15px;
    text-align: center;
}

.sp-footer-inner {
    max-width: 300px;
    margin: 0 auto;
}

.sp-footer-logo {
    margin-bottom: 15px;
}

.sp-footer-logo img {
    height: 25px;
    width: auto;
}

.sp-footer address {
    font-style: normal;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.sp-footer-tel {
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.sp-footer-tel a {
    color: #fff;
    text-decoration: none;
}

.sp-footer-copy {
    font-size: 0.75rem;
    color: #999;
    line-height: 1.5;
}

/* 共通設定 */
.checkin-page {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
    color: #333;
    line-height: 1.8;
}

.cont {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 40px;
    padding-top: 50px;
    font-weight: bold;
}

/* ===========================================
   ヒーローセクション
   =========================================== */
.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.7) 0%, rgba(26, 37, 47, 0.8) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.hero-label {
    display: inline-block;
    background: #eb6100;
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    line-height: 1.5;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 30px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.hero-cta {
    margin-top: 30px;
}

.btn--primary {
    display: inline-block;
    background: #298581;
    color: #fff;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s;
    line-height: 1.5;
}

.btn--primary:hover {
    background: #1f6b68;
    color: #fff;
    text-decoration: none;
}

.btn-sub {
    font-size: 0.75rem;
    font-weight: normal;
    display: block;
    margin-top: 3px;
}

.btn--small {
    padding: 10px 25px;
    font-size: 0.95rem;
}

/* ヒーローバナー（画像メイン） */
.hero-banner {
    position: relative;
    width: 100%;
}

.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-cta-bottom {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
}

.hero-cta-bottom .btn--small {
    background: rgba(41, 133, 129, 0.95);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hero-cta-bottom a,
.hero-cta-bottom a:hover,
.hero-cta-bottom a:visited {
    text-decoration: none !important;
}

@media screen and (max-width: 767px) {
    .hero {
        padding: 60px 15px;
        min-height: 400px;
    }
    .hero h1 {
        font-size: 1.5rem;
    }
    .btn--primary {
        padding: 12px 25px;
        font-size: 1rem;
    }
    /* SPではボタンを画像の下に配置 */
    .hero-banner {
        display: flex;
        flex-direction: column;
    }
    .hero-cta-bottom {
        position: static;
        background: linear-gradient(135deg, #298581 0%, #1f6b68 100%);
        padding: 15px;
        margin: 0;
    }
    .hero-cta-bottom .btn--primary {
        padding: 12px 20px;
        font-size: 0.9rem;
        line-height: 1.4;
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .hero-cta-bottom .btn-sub {
        font-size: 0.75rem;
    }
}

/* ===========================================
   比較セクション（従来 vs QR）
   =========================================== */
.comparison {
    padding: 40px 20px;
    background: #fff;
}

.comparison-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.comparison-item {
    flex: 1;
    max-width: 250px;
    text-align: center;
    padding: 25px 20px;
    border-radius: 12px;
    background: #f9f9f9;
}

.comparison-item.old {
    background: #f5f5f5;
    border: 2px solid #ddd;
}

.comparison-item.new {
    background: linear-gradient(135deg, #e8f5f4 0%, #d4edeb 100%);
    border: 2px solid #298581;
}

.comparison-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
}

.comparison-icon svg {
    width: 100%;
    height: 100%;
}

.comparison-label {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0 0 15px 0;
    color: #333;
}

.comparison-item.new .comparison-label {
    color: #298581;
}

.comparison-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.comparison-item ul li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.comparison-item.old ul li::before {
    content: "•";
    position: absolute;
    left: 5px;
    color: #999;
}

.comparison-item.new ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #298581;
    font-weight: bold;
}

.comparison-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    flex-shrink: 0;
}

.comparison-arrow svg {
    width: 30px;
    height: 30px;
}

@media screen and (max-width: 600px) {
    .comparison {
        padding: 30px 15px;
    }
    .comparison-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .comparison-item {
        max-width: 280px;
        width: 100%;
    }
    .comparison-arrow {
        transform: rotate(90deg);
        width: 40px;
        height: 30px;
    }
}

/* ===========================================
   ベネフィット + CTA（FV直下）
   =========================================== */
.benefits-cta {
    background: linear-gradient(135deg, #298581 0%, #1f6b68 100%);
    color: #fff;
    padding: 35px 20px 40px;
    text-align: center;
}

.benefits-lead {
    font-size: 1.3rem;
    margin: 0 0 20px 0;
}

.benefits-lead strong {
    font-size: 1.5rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 25px;
    max-width: 300px;
    text-align: left;
}

.benefits-list li {
    padding: 8px 0;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-icon {
    color: #ffd700;
    font-weight: bold;
}

.cta-primary {
    margin-top: 20px;
}

.cta-primary a,
.cta-primary a:hover,
.cta-primary a:visited {
    text-decoration: none !important;
}

/* ===========================================
   あなたも使える？（適用条件）
   =========================================== */
.eligibility {
    padding: 35px 20px;
    background: #f9f9f9;
}

.section-heading {
    font-size: 1.1rem;
    color: #333;
    text-align: center;
    margin: 0 0 20px 0;
    font-weight: bold;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 15px;
    max-width: 320px;
}

.check-list li {
    padding: 10px 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #eee;
}

.check-list li:last-child {
    border-bottom: none;
}

.check-mark {
    color: #298581;
    font-weight: bold;
    font-size: 1.2rem;
}

.eligibility-note {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* ===========================================
   対象外・制限
   =========================================== */
.exclusions {
    padding: 30px 20px;
    background: #fff;
}

.exclusion-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 15px;
    max-width: 320px;
}

.exclusion-list li {
    padding: 6px 0 6px 20px;
    position: relative;
    font-size: 0.95rem;
    color: #555;
}

.exclusion-list li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: #e67e22;
    font-weight: bold;
}

.payment-note {
    text-align: center;
    font-size: 0.85rem;
    color: #c0392b;
    margin: 15px 0 10px;
    padding: 8px;
    background: #fef5f5;
    border-radius: 4px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.exclusion-reassure {
    text-align: center;
    font-size: 0.9rem;
    color: #298581;
    margin: 15px 0 0;
    font-weight: bold;
}

/* ===========================================
   公式予約のメリット
   =========================================== */
.why-official {
    padding: 35px 20px;
    background: #f0f7f7;
}

.official-benefits {
    list-style: none;
    padding: 0;
    margin: 0 auto 20px;
    max-width: 360px;
}

.official-benefits li {
    padding: 10px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid #d0e8e6;
}

.official-benefits li:last-child {
    border-bottom: none;
}

.official-benefits strong {
    color: #298581;
}

.member-note {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin: 0 0 10px 0;
}

.privilege-link {
    text-align: center;
    margin: 0;
}

.privilege-link a {
    color: #298581;
    text-decoration: underline;
    font-size: 0.9rem;
    font-weight: bold;
}

.privilege-link a:hover {
    color: #1f6b68;
}

/* ===========================================
   事前準備セクション（簡潔）
   =========================================== */
.prep-section {
    padding: 30px 0;
    background: #f9f9f9;
}

.section-title-simple {
    font-size: 1.1rem;
    color: #298581;
    margin: 0 0 20px 0;
    text-align: center;
    font-weight: bold;
}

.prep-list {
    max-width: 400px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    counter-reset: prep-counter;
}

.prep-list li {
    counter-increment: prep-counter;
    padding: 10px 0 10px 40px;
    position: relative;
    font-size: 1rem;
    color: #333;
}

.prep-list li::before {
    content: counter(prep-counter);
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    background: #298581;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* ===========================================
   端末の場所セクション
   =========================================== */
.location-section {
    padding: 30px 0;
    background: #fff;
}

.location-content {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.location-image {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 15px;
    display: inline-block;
}

.location-image img {
    width: 200px;
    height: auto;
    border-radius: 4px;
    display: block;
}

.location-text {
    font-size: 1rem;
    color: #333;
    margin: 0;
    font-weight: bold;
}

/* ===========================================
   会員特典セクション
   =========================================== */
.member-notice {
    padding: 30px 0;
    background: #f0f7f7;
}

.member-box {
    background: #fff;
    border: 2px solid #298581;
    border-radius: 10px;
    padding: 25px 30px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.member-title {
    color: #298581;
    font-size: 1rem;
    font-weight: bold;
    margin: 0 0 12px 0;
}

.member-text {
    margin: 0 0 12px 0;
    font-size: 0.9rem;
    color: #333;
}

.member-link {
    display: inline-block;
    color: #298581;
    text-decoration: underline;
    font-weight: bold;
    font-size: 0.9rem;
}

.member-link:hover {
    color: #1f6b68;
}

/* ===========================================
   アコーディオン
   =========================================== */
.detail-accordion {
    padding: 30px 0;
    background: #f5f5f5;
}

.accordion {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-toggle {
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #298581;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.accordion-toggle::after {
    content: "▼";
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.accordion[open] .accordion-toggle::after {
    transform: rotate(180deg);
}

.accordion-toggle::-webkit-details-marker {
    display: none;
}

.accordion-content {
    padding: 20px;
    border-top: 1px solid #eee;
}

.accordion-content .flow-steps-day-new {
    max-width: 100%;
    gap: 20px;
}

.accordion-content .day-step-desc {
    display: none;
}

@media screen and (max-width: 767px) {
    .benefits-cta {
        padding: 25px 15px 30px;
    }
    .benefits-lead {
        font-size: 1.1rem;
    }
    .benefits-lead strong {
        font-size: 1.3rem;
    }
    .benefits-list li {
        font-size: 0.95rem;
    }
    .eligibility {
        padding: 25px 15px;
    }
    .exclusions {
        padding: 25px 15px;
    }
    .why-official {
        padding: 25px 15px;
    }
    .location-section {
        padding: 25px 15px;
    }
    .location-image img {
        width: 160px;
    }
    .detail-accordion {
        padding: 20px 15px;
    }
    .accordion-content .flow-steps-day-new {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ===========================================
   フローセクション
   =========================================== */
.flow-overview {
    background: #fff;
    padding: 30px 0 60px;
}

.flow-group {
    margin-bottom: 50px;
}

.flow-group-title {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 30px;
    padding: 15px 20px;
    background: #f9f9f9;
    border-left: 4px solid #298581;
}

.flow-group-label {
    display: inline-block;
    background: #298581;
    color: #fff;
    padding: 3px 15px;
    border-radius: 3px;
    font-size: 0.85rem;
    margin-right: 15px;
}

/* 事前準備 横並びステップ */
.flow-steps-horizontal {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}

/* 1ステップのみの場合 */
.flow-steps-horizontal.flow-single {
    justify-content: center;
}
.flow-single .flow-step-h {
    width: 280px;
    max-width: 100%;
}

.flow-step-h {
    text-align: center;
    width: 200px;
    position: relative;
}

.step-circle {
    width: 36px;
    height: 36px;
    background: #298581;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0 auto 15px;
}

.step-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 10px;
}

.step-svg {
    width: 100%;
    height: 100%;
}

.flow-step-h h4 {
    font-size: 1rem;
    color: #298581;
    margin-bottom: 10px;
}

.flow-step-h p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

.flow-connector {
    width: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding-top: 50px;
}

.flow-connector svg {
    width: 100%;
}

/* 当日フロー 5ステップ */
.flow-steps-day {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.day-step {
    text-align: center;
    width: 150px;
}

.day-step-number {
    font-size: 1rem;
    color: #298581;
    font-weight: bold;
    margin-bottom: 10px;
}

.day-step-image {
    width: 120px;
    height: 80px;
    margin: 0 auto 10px;
}

.terminal-svg {
    width: 100%;
    height: 100%;
}

.day-step p {
    font-size: 0.85rem;
    color: #333;
    line-height: 1.5;
}

.flow-note {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1rem;
    color: #333;
}

.highlight-text {
    color: #eb6100;
    font-size: 1.5rem;
    font-weight: bold;
}

/* 当日フロー 画像付き新デザイン（2カラム） */
.flow-steps-day-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.day-step-new {
    text-align: center;
}

.day-step-new .day-step-number {
    display: inline-block;
    background: #298581;
    color: #fff;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.day-step-screen {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.day-step-screen img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.day-step-title {
    font-size: 0.95rem;
    color: #333;
    font-weight: bold;
    margin: 0 0 8px 0;
}

.day-step-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ステップ6（テキストのみ） */
.day-step-text-only {
    background: #f9f9f9;
    border: 2px dashed #298581;
    border-radius: 8px;
    padding: 20px 15px;
}

.day-step-text-only .day-step-number {
    margin-bottom: 10px;
}

.step-link {
    color: #298581;
    text-decoration: underline;
    font-weight: bold;
}

.step-link:hover {
    color: #1f6b68;
}

@media screen and (max-width: 600px) {
    .flow-steps-day-new {
        grid-template-columns: 1fr;
        max-width: 320px;
        gap: 25px;
    }
}

@media screen and (max-width: 767px) {
    .flow-steps-horizontal {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .flow-step-h {
        width: 100%;
        max-width: 250px;
    }
    .flow-connector {
        transform: rotate(90deg);
        padding-top: 0;
        width: 20px;
        height: 20px;
    }
    .flow-steps-day {
        flex-direction: column;
        align-items: center;
    }
    .day-step {
        width: 100%;
        max-width: 200px;
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
    }
    .day-step-image {
        flex-shrink: 0;
    }
}

/* ===========================================
   端末画面ショーケース
   =========================================== */
.screen-showcase {
    background: #f5f5f5;
    padding: 60px 0;
}

.screen-intro {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.screen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.screen-item {
    text-align: center;
}

.screen-frame {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    margin-bottom: 15px;
}

.screen-frame img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.screen-caption {
    font-size: 0.95rem;
    color: #333;
    font-weight: bold;
}

@media screen and (max-width: 900px) {
    .screen-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 500px) {
    .screen-showcase {
        padding: 40px 15px;
    }
    .screen-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
    }
}

/* ===========================================
   注意事項セクション
   =========================================== */
.notes {
    background: #f9f9f9;
    padding: 50px 0;
}

.notes-box {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.notes-item {
    margin-bottom: 25px;
}

.notes-item:last-child {
    margin-bottom: 0;
}

.notes-item h3 {
    font-size: 1rem;
    color: #298581;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 3px solid #298581;
}

.notes-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notes-item ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.7;
}

.notes-item ul li::before {
    content: '●';
    position: absolute;
    left: 5px;
    color: #298581;
    font-size: 0.6rem;
}

/* ===========================================
   CTAセクション
   =========================================== */
.cta {
    background: #298581;
    padding: 50px 20px;
    text-align: center;
}

.cta-text {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn--orange {
    display: inline-block;
    background: #eb6100;
    color: #fff;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s;
    border-bottom: 4px solid #b84c00;
}

.btn--orange:hover {
    background: #f56500;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.cta-buttons a,
.cta-buttons a:hover,
.cta-buttons a:visited {
    text-decoration: none !important;
}

.cta-sub {
    margin-top: 15px;
    font-size: 0.9rem;
}

.cta-sub a {
    color: #fff;
    text-decoration: underline;
}

.cta-sub a:hover {
    color: #ffd700;
}

.btn--large {
    padding: 18px 50px;
    font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
    .cta {
        padding: 40px 15px;
    }
    .cta-text {
        font-size: 1rem;
    }
    .btn--orange {
        padding: 12px 30px;
        font-size: 1rem;
    }
    .btn--large {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
}

/* ===========================================
   パンくずリスト
   =========================================== */
.p_lnk {
    margin: 15px auto;
    padding: 10px 20px;
    max-width: 960px;
}

.p_lnk ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.p_lnk li {
    display: inline;
    font-size: 0.85rem;
    color: #666;
}

.p_lnk a {
    color: #298581;
    text-decoration: none;
}

.p_lnk a:hover {
    text-decoration: underline;
}

/* ===========================================
   レスポンシブ表示制御
   =========================================== */
@media screen and (max-width: 767px) {
    .display-none-md {
        display: none;
    }
}
