/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'Meiryo', 'メイリオ', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden!important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
}

p {
    margin: 0;
    padding: 0;
}

@media (min-width: 769px) {
    .container {
        margin: 0 auto;
        padding: 0 30px;
    }
  .pcbr{
    display: inline-block;
  }
}
@media (max-width: 768px) {
    .container {
        margin: 0 auto;
        padding: 0 15px;
    }
  .pcbr{
    display: none;
  }

}
/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
    width: 100%;
    transition: background-color 0.3s ease;
    opacity: 0;
    animation: slideInFromTop 0.6s ease-out 1.1s forwards;
}

.header.menu-open {
    background: #fff;
}

.header-container {
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
nav{
    border-radius:  25px  ;
    background: #fff;
    overflow: hidden;
    height: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
    padding-left: 30px;
    height: 40px;
}
.nav-list li{
  display: inline-block;
}
.nav-list li a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 14px;
}

.nav-list li a:hover {
    color: #e91e63;
}

.nav-contact a {
    background: #e91e63;
    color: #fff!important;
    padding: 0 20px;
    transition: background 0.3s;
    height: 40px;
    display: flex;
    align-items: center;
    border-radius: 0 25px 25px 0;
    box-sizing: border-box;
    text-align: center;
}

@media (max-width: 768px) {
    .nav-contact a {
    background: #e91e63;
    color: #fff!important;
    padding: 10px 20px!important;
    transition: background 0.3s;
    height: auto;
    display: flex;
    align-items: center;
    border-radius: 25px;
    box-sizing: border-box;
    text-align: center;
}
}

.nav-contact a:hover {
    background: #c2185b;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    transform: translateX(-100%);
    transition: transform 0.3s;
    z-index: 999;
    padding: 40px 20px;
    box-sizing: border-box;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav-list li a {
    color: #333;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

/* First View Section */
.fv {
    position: relative;
    padding-top: 80px;
    background: #f5f3e4;
    overflow: hidden;
    min-height: 100vh;
    align-items: center;
    border-bottom-left-radius: 300px;
    border-bottom-right-radius: 300px;
}
.fv_clouds{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Cloud Animation */
@keyframes cloudFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-40px);
  }
}

@keyframes cloudFloatHorizontal {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(35px);
  }
}

@keyframes cloudFloatBoth {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(25px, -30px);
  }
  50% {
    transform: translate(35px, -40px);
  }
  75% {
    transform: translate(25px, -30px);
  }
}

/* Page Load Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cloud_rt{
    position: absolute;
    top: -10%;
    right: -20%;
    max-width: 40%;
    width: 510px;
    height: 364px;
    background: url('images/cloud_rt.svg');
    background-size: contain;
    background-repeat: no-repeat;
    animation: cloudFloat 6s ease-in-out infinite;
    animation-delay: 0s;
}
.cloud_rm{
    position: absolute;
    top: 50%;
    right: -20%;
    max-width: 30%;
    width: 439px;
    height: 381px;
    background: url('images/cloud_rm.svg');
    background-size: contain;
    background-repeat: no-repeat;
    animation: cloudFloatHorizontal 7s ease-in-out infinite;
    animation-delay: 1s;
}
.cloud_cb{
    position: absolute;
    bottom: 5%;
    right: 15%;
    max-width: 40%;
    width: 578px;
    height: 345px;
    background: url('images/cloud_cb.svg');
    background-size: contain;
    background-repeat: no-repeat;
    animation: cloudFloat 8s ease-in-out infinite;
    animation-delay: 0.8s;
}
.cloud_lb{
    position: absolute;
    bottom: 0;
    left: 5%;
    max-width: 30%;
    width: 433px;
    height: 191px;
    background: url('images/cloud_lb.svg');
    background-size: contain;
    background-repeat: no-repeat;
    animation: cloudFloatBoth 7.5s ease-in-out infinite;
    animation-delay: 0.5s;
}
.cloud_lmb{
    position: absolute;
    bottom: 25%;
    left: -5%;
    max-width: 30%;
    width: 393px;
    height: 250px;
    background: url('images/cloud_lmb.svg');
    background-size: contain;
    background-repeat: no-repeat;
    animation: cloudFloat 6.5s ease-in-out infinite;
    animation-delay: 0.3s;
}
.cloud_lm{
    position: absolute;
    top: 35%;
    left: -15%;
    max-width: 25%;
    width: 303px;
    height: 215px;
    background: url('images/cloud_lm.svg');
    background-size: contain;
    background-repeat: no-repeat;
    animation: cloudFloatHorizontal 7s ease-in-out infinite;
    animation-delay: 1s;
}
.cloud_lt{
    position: absolute;
    top: -5%;
    left: -10%;
    max-width: 45%;
    width: 723px;
    height: 266px;
    background: url('images/cloud_lt.svg');
    background-size: contain;
    background-repeat: no-repeat;
    animation: cloudFloatBoth 8.5s ease-in-out infinite;
    animation-delay: 0.6s;
}
.fv_bg_l{
  width: 340px;
  max-width: 25%;
  position: absolute;
  top: -90px;
  left: -10%;
  opacity: 0;
  animation: slideInFromLeft 0.8s ease-out 1s forwards;
}
.fv_bg_r{
  width: 340px;
  max-width: 25%;
  position: absolute;
  top: -90px;
  right: -10%;
  opacity: 0;
  animation: slideInFromRight 0.8s ease-out 1s forwards;
}

.fv-container {
    position: relative;
    z-index: 1;
}

.fv-title {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}

.fv-title > img:first-child {
  opacity: 0;
  animation: fadeIn 1s ease-out 0s forwards;
}

.fv-badge {
  width: 200px;
  max-width: 30%;
    position: absolute;
    bottom: 0;
    right: -60px;
    z-index: 10;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.1s forwards;
}

.badge-label {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.3;
    text-align: center;
}

.badge-value {
    font-size: 32px;
    font-weight: bold;
    color: #1a237e;
}

.fv-description {
    margin-top: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.2s forwards;
}

.fv-desc-title {
    font-size: 28px;
    color: #003a74;
    font-weight: bold;
    text-align: center;
}
.fv-desc-subtitle {
    font-size: 28px;
    color: #003a74;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.fv-desc-highlight {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}
.highlight {
    color: #1a237e;
    font-weight: bold;
    font-size: 24px;
    background: #fff47a;
    padding: 5px 15px;
    border-radius: 10px;
}


.fv-desc-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 30px;
}

.fv-desc-paragraph {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Date Section */
.date-section {
    padding: 60px 0;
}

.date-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.date-cate{
    padding: 10px 0;
    font-size: 18px;
    text-align: left;
    font-weight: 700;;

}
.date-label {
    margin-bottom: 30px;
    text-align: center;
}

.date-label img {
    max-width: 483px;
    height: auto;
    margin: 0 auto;
    padding: 0 20px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    border-top: 1px dotted #999;
    border-bottom: 1px dotted #999;
    padding: 30px;
}

.schedule-item {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex: 1;
}

.schedule-label {
    font-size: 12px;
    color: #fff;
    background: #333;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1em;
    padding: 5px 10px;
}

.schedule-value {
    font-size: 20px;
    color: #333;
    font-weight: bold;
}

.schedule-note {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin: 0 auto;
    grid-column: span 2;
}

.info-section {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.info-box {
    padding: 20px 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: auto 1fr;
    gap:20px;
    border-bottom: 1px dotted #999;
}

.info-content {
    padding: 10px 0;
    text-align: left;
}

.info-main {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
}

.info-example {
    font-size: 14px;
    color: #e91e63;
    line-height: 1.8;
}

.example-label {
    color: #e91e63;
    font-weight: bold;
}

.sp-br {
    display: none;
}

.date-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

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

.date-year {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.date-day {
    font-size: 36px;
    font-weight: bold;
    color: #1a237e;
}

.date-week {
    font-size: 24px;
    margin-left: 10px;
}

.date-separator {
    font-size: 32px;
    color: #333;
}

.date-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.date-detail-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
}

.detail-label {
    font-weight: bold;
    color: #1a237e;
    margin-bottom: 10px;
    font-size: 16px;
}

.detail-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Case Section */
.case-section {
    padding: 100px 0;
    background: #fff47a;
    position: relative;
    margin: 50px 0;

}

.case-section .container {
    display: flex;
    justify-content: center;
}


.case-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url('images/wave1.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.case-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url('images/wave2.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 727px) {
    .case-section::before {
        content: '';
        position: absolute;
        top: -30px;
        left: 0;
        width: 100%;
        height: 30px;
        background-image: url('images/wave1.svg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .case-section::after {
        content: '';
        position: absolute;
        bottom: -30px;
        left: 0;
        width: 100%;
        height: 30px;
        background-image: url('images/wave2.svg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
}
.case-content {
  max-width: 1100px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    justify-content: center;
}

.case-header {
    flex: 0 0 auto;
    max-width: 400px;
}

.case-main-title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin: 20px auto !important;
    text-align: center;
    line-height: 1.3;
}

.section-title-img {
    max-height: 64px;
    margin: 0 auto;
    display: block;
}

.case-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 6.5fr 3.5fr;
    gap: 40px;
    align-items: center;
}

.case-title-area {
    margin-bottom: 25px;
}

.case-logos {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}


.case-subtitle {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    margin: 0;
    border-bottom: solid 1px #333;
    padding-bottom:10px;
}

.case-description {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
}

.case-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Case Section Responsive */
@media (max-width: 1200px) {
    .section-title-img {
    max-height: 64px;
    margin: 0 auto;
}
    .case-content {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .case-header {
        width: 100%;
        margin-left: 0;
        text-align: center;
    }

    .case-grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
        margin: 0 auto;
    }

    .case-text {
        text-align: center;
    }

    .case-title-area {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .case-logos {
        justify-content: center;
    }

    .cloud_rt{
        top: -4%;
        right: -10%;
        max-width: 40%;
    }
    .cloud_rm{
        top: 50%;
        right: -20%;
        max-width: 30%;
    }
    .cloud_cb{
        bottom: 1%;
        right: 15%;
        max-width: 43%;
    }
    .cloud_lb{
        bottom: 0;
        left: 5%;
        max-width: 35%;
    }
    .cloud_lmb{
        bottom: 22%;
        left: -5%;
        max-width: 35%;
    }
    .cloud_lm{
        top: 35%;
        left: -5%;
        max-width: 25%;
    }
    .cloud_lt{
        top: -2%;
        left: -10%;
        max-width: 45%;
    }
}

/* Store List Section */
.store-list-section {
    padding: 80px 0;
    background: #fff;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    list-style: none;
    counter-reset: store-counter;
}

@media (max-width: 767px) {

}

.store-item {
    position: relative;
}
.store-item-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    border: solid 1px #f2f2f2;
}
.store-item-image > img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

@media (min-width: 768px) {
    .store-content {
        margin-left: 10px;
    }
    .store_number {
        margin:15px 0 5px 10px;
    }
}

.store_number {
    display: inline-flex;
    align-items: center;
    background: #e91e63;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    line-height: 1em;
    padding:5px 10px 5px 55px;
    margin:15px 0 5px 0;
    position: relative;
    border-radius: 3px;
}

.area_sapporo {
    display: inline-flex;
    align-items: center;
    background: #0264a7;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    line-height: 1em;
    padding:5px 10px;
    margin:15px 0 5px 3px;
    position: relative;
    border-radius: 3px;
}

.area_naganuma {
    display: inline-flex;
    align-items: center;
    background: #3fb7c5;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    line-height: 1em;
    padding:5px 10px;
    margin:15px 0 5px 3px;
    position: relative;
    border-radius: 3px;
}

.area_ishikari {
    display: inline-flex;
    align-items: center;
    background: #16a448;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    line-height: 1em;
    padding:5px 10px;
    margin:15px 0 5px 3px;
    position: relative;
    border-radius: 3px;
}

.area_hakodate {
    display: inline-flex;
    align-items: center;
    background: #8091c0;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    line-height: 1em;
    padding:5px 10px;
    margin:15px 0 5px 3px;
    position: relative;
    border-radius: 3px;
}
.store_number > span{
    display: inline-block;
    position: relative;
    font-size: 10px;
    line-height: 1em;
    width: 15px;
    text-align: center;
    margin-right: 5px;
}
.store_number > span::before{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: solid 1px #fff;;
}
.store_number::before{
    content:'受付番号';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;

}
.store-name {
    display: block;
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 10px;
}
.store-info {
    list-style: none;
}
.store-info li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 3px;
    height: 16px;
    background: #e91e63;
}
.store-info li {
    font-size: 14px;
    line-height: 1.5;
    padding-left: 15px;
    position: relative;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
}
.store-info a {
    text-decoration: underline!important;
    transition: all 0.3s;
    word-break: break-all;
    overflow-wrap: anywhere;
}
.store-info a:hover {
    color: #e91e63;
}
.info-label {
    display: inline-block;
    font-weight: bold;
    margin-bottom: 0;
    width: 110px;
    flex-shrink: 0;
}
@media (max-width: 767px) {
    .store-info {
        list-style: none;
        padding: 0;
    }
    .store-info li {
        font-size: 14px;
        line-height: 1.3;
        padding-left: 10px;
        position: relative;
        margin-bottom: 6px;
        display: flex;
        align-items: baseline;
    }
    .store-info li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 2px;
        width: 3px;
        height: 16px;
        background: #e91e63;
    }
    .info-label {
        display: inline-block;
        font-weight: bold;
        margin-bottom: 0;
        width: 80px;
        flex-shrink: 0;
        font-size: 12px;
    }
}


/* Entry Section */
.entry-section {
    padding: 100px 0;
    background: #f5f3e4;
    text-align: center;
}

.entry-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Fixed Entry Buttons for Mobile */
.entry-buttons-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    z-index: 900;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.entry-buttons-fixed.show {
    opacity: 1;
}

.entry-buttons-fixed .entry-buttons {
    margin: 0;
    width: 100%;
    gap: 10px;
}

.entry-button {
    padding: 18px 50px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
}

.entry-button-primary {
    background: #e91e63;
    color: #fff;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    position: relative;
    padding-right: 70px;
}

.entry-button-primary::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 13px;
    border-color: transparent transparent transparent #fff;
}
.entry-button-secondary::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 13px;
    border-color: transparent transparent transparent #000;
}

.entry-button-primary:hover {
    background: #c2185b;
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.entry-button-secondary {
    background: #ffd54f;
    color: #333;
    box-shadow: 0 4px 15px rgba(255, 213, 79, 0.3);
    position: relative;
    padding-right: 70px;
}

.entry-button-secondary:hover {
    background: #ffc107;
    box-shadow: 0 6px 20px rgba(255, 213, 79, 0.5);
}


/* Footer */
.footer {
    padding: 40px 0;
}
.footer-header {
    font-size: 17px;
    color: #fff;
    background: #003a74;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    padding: 10px 0;
}
.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 0;
}

.footer-logo img {
    width: 200px;
    max-width: 200px;
    display: block;
}

.footer-info {
    text-align: left;
}

.footer-info p {
    font-size: 14px;
    margin-bottom: 10px;
}

/* Copyright */
.copyright {
    background: #003a74;
    padding: 15px 0;
    text-align: center;
}

.copyright p {
    color: #fff;
    font-size: 13px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 777px) {
    .header-container {
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      justify-content: flex-end;
      /* align-items: revert; */
    }
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .fv {
        padding: 50px 20px 20px 20px;
        min-height: auto;
      border-bottom-left-radius: 50px;
      border-bottom-right-radius: 50px;
    }
    .fv_bg_l {
        width: 340px;
        max-width: 50%;
        position: absolute;
        top: -40px;
        left: -30%;
    }
    .fv_bg_r {
        width: 340px;
        max-width: 50%;
        position: absolute;
        top: 0;
        right: -30%;
    }
    .fv-cloud-bg {
        padding: 40px 20px;
        border-radius: 40% 40% 40% 40% / 50% 50% 50% 50%;
    }

    .fv-subtitle {
        font-size: 14px;
    }

    .people-icon {
        width: 40px;
        height: 40px;
    }

    .fv-title-sub {
        font-size: 16px;
    }

    .fv-title-main {
        font-size: 32px;
    }

    .fv-badge {
      right: -20px;
      bottom: -20px;
        width: 100px;
        height: 100px;
    }

    .badge-label {
        font-size: 12px;
    }

    .badge-value {
        font-size: 24px;
    }

    .fv-desc-title {
        font-size: 20px;
    }
    .fv-desc-subtitle {
        font-size: 20px;
    }

    .fv-desc-highlight {
        font-size: 16px;
        padding: 10px 20px;
        margin: 0 auto;
        text-align: center;
    }

    .highlight {
        font-size: 18px;
    }


    .fv-desc-paragraph {
        font-size: 14px;
    }

    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px 0;
    }

    .schedule-item {
        flex-direction: column;
        gap: 10px;
    }

    .info-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-box {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .sp-br {
        display: block;
    }

    .date-separator {
        transform: rotate(90deg);
    }

    .date-details {
        grid-template-columns: 1fr;
    }

    .case-main-title {
        font-size: 18px;
    }

    .case-section {
        padding: 50px 0;
    }

    .section-title-img {
        max-height: 60px;
        margin: 0 auto;
    }

    .case-text {
        padding-right: 0;
    }

    .case-description {
        margin-bottom: 0;
    }

    .logo-text {
        font-size: 16px;
        padding: 6px 15px;
        min-height: 40px;
    }

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

    .entry-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .entry-button {
        width: 100%;
        max-width: 350px;
    }
    .store-item {
        padding: 0
    }
    .store-item::before {
        top: 210px;
        left: 0;
    }
    .footer-content {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        max-width: 1200px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .fv-desc-title {
        font-size: 18px;
    }

    .fv-desc-highlight {
        font-size: 14px;
        padding: 8px 15px;
        margin: 0 auto;
        text-align: center;
    }

    .highlight {
        font-size: 16px;
    }

    .fv-desc-subtitle {
        font-size: 18px;
    }

    .fv-desc-paragraph {
        font-size: 13px;
    }

    .fv-cloud-bg {
        padding: 30px 15px;
    }

    .people-icon {
        width: 35px;
        height: 35px;
    }

    .fv-badge {
        width: 100px;
        height: 100px;
    }

    .badge-label {
        font-size: 11px;
    }

    .badge-value {
        font-size: 20px;
    }

    .date-day {
        font-size: 28px;
    }

    .case-title {
        font-size: 18px;
    }

}