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

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #04102E;
    line-height: 1.6;
    background-color: #fff;
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 85%;
    margin: 0 auto;
    padding: 0 20px;
}

.container-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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



.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

/* Colors & Components */
:root {
    --primary-color: #04102E; /* Dark Navy */
    --accent-color: #3D479C;
    --light-blue: #e6f5fa;
    --text-color: #333;
    --white: #fff;
    --gradient-hero: linear-gradient(135deg, #f0f8ff 0%, #b8e2f2 100%);
}

.br-sp,.entry-sp{
    display: none!important;
}
.br-pc{
    display: block!important;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 0.05em;
    font-size: 1rem;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background-color: #1a3366;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.25rem;
}

.section-title {
    font-size: 10vw;
    font-weight: 500;
    font-family: 'Figtree', sans-serif;
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end; /* Default left alignment for Program, Voice, Guideline, Download */
    line-height: 1;
    text-transform: none;
}

.section-title.center-title {
    align-items: center;
}

.section-title.right-title {
    align-items: flex-end; /* Right align for Movie */
}

.section-title span {
    font-size: 1.4vw;
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--primary-color);
    font-weight: 400;
    text-align: right;
    letter-spacing: 0.1em;
    margin: 0.5em 0;
    position: relative;
    padding-bottom: 1.5em;
    display: inline-block;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30%;
    height: 4px;
    background-color: var(--primary-color);
}

.section-title.center-title span::after {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}

.section-title.right-title span::after {
    left: auto;
    right: 0;
}

.section {
    padding: 10vw 0; /* Increase spacing to match PDF scale */
}

/* Top Header & Hamburger */
.top-header {
    background: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo a img{
    width: 10vw;
}

.hamburger {
    display: none;
    cursor: pointer;
    width: 25px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #111;
    position: absolute;
    left: 0;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

.en-text { 
    display: block; 
    font-size: 0.7vw;
    color: #3D479C!important; 
    margin-top: 5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav a {
    color: #333;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--accent-color);
}

.inner-box-one{
background-size: cover;
height: 100vh;
display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 80%;
    margin: 0 auto;
}

.inner-box-two{
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.inner-box{
background-image: url('img/FV-all.png');
background-size: cover;
background-repeat: no-repeat;
background-position: center;
    height: 200vh;

}

.hero-title {
    font-size: 5vw;
    font-weight: 600;
    line-height: 1.3;
    color: #3D479C;
    margin-top: -5vw;
}

.hero-title .highlight {
    background: linear-gradient(90deg, #0080FF, #FFFCAF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle strong{
font-size: 1.8em;
}

.hero-subtitle {
    color: var(--primary-color);
    font-size: 1vw;
    font-weight: 500;
    margin-top: 2em;
    margin-bottom: 40px;
    line-height: 2;
}

.hero-stats {
    position: absolute;
    top: 7vw;
    right: 10vw;
    display: flex;
    gap: 15px;
}

.stat-box {
    border: 2px solid #3D479C;
    padding: 10px 20px;
    text-align: center;
    color: #3D479C;
    font-size: 1.5vw;
    background: transparent;
    font-weight: bold;
}

.stat-large {
    font-size:2.5vw;
    font-weight: bold;
}


.koubo{
    display: flex;justify-content: center;align-items: center;
    margin: 0 auto;
    margin-top: -5vw;
    margin-left: 60vw;
}
.koubo span{
    font-size: 1vw;
}

#entry-box{
position: fixed;
display: flex;
width: 100%;
justify-content: space-around;
align-items: center;
gap: 30px;
bottom: -5%;
z-index: 9999;
transition: 0.4s ease-in-out;
}
.is-hidden {
            opacity: 0!important;
            visibility: hidden!important;
            pointer-events: none; /* 透明な時に押せないようにします */
        }
.btn-entry-special {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #d3481d;
    color: #fff;
    padding: 15px 50px 15px 8px; /* Give right padding for space, tight left padding for circle */
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 1.5px;
    transition: background 0.3s ease;
    margin: 5em 0;
    width: 30vw;
}
.btn-entry-form {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0080FF;
    color: #fff;
    padding: 15px 50px 15px 8px; /* Give right padding for space, tight left padding for circle */
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 1.5px;
    transition: background 0.3s ease;
    margin: 5em 0;
    width: 30vw;
}


.btn-entry-special:hover {
    background: #ed7e3a;
}

.btn-entry-form:hover {
    background: #3d9eff;
}

.btn-entry-special .entry-date-badge,.btn-entry-form .entry-date-badge {
    background: #fff8cc;
    color: #111;
    border-radius: 50%;
    width: 5vw;
    height: 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 0.8vw;
    font-weight: bold;
    flex-shrink: 0;
}
.btn-entry-special .entry-date-badge span,.btn-entry-form  {
    font-size: 1.1rem;
}
.btn-entry-special .entry-text,.btn-entry-form .entry-text{
    margin-left: 30px;
    text-align: center;
    font-weight: bold;
    font-size: 1.5vw;
    line-height: 1.2;
}
.btn-entry-special .entry-text span,.btn-entry-form .entry-text span{
    font-size:1vw;
    opacity: 0.8;
}

.about-fastar {
    padding: 20px 0;
    max-width: 80%;
    font-size: 3vw;
}

.about-fastar h2{
    margin-bottom: 20px;
}

.about-fastar .badge {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.5vw;
    padding: 4px 12px;
    display: inline-block;
    margin-bottom: 15px;
}

.about-fastar p {
    font-size: 1.5vw;
    font-weight: 500;
    line-height: 2.5em;
}

/* Sub Nav */
.sub-nav{
    background-color: #f9f9f9;
}

.sub-nav ul {
    display: flex;
    justify-content: center;
    background: transparent;
    width:80%;
    padding: 5em 0;
    margin: 0 auto;
}

.sub-nav li:first-child{
    border-left: #3D479C 1px solid;
}

.sub-nav li{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 24%;
    list-style: none;
    border-right: #3D479C 1px solid;
    
    font-weight: bold;
}

.sub-nav ul li a{
    height: 100px;    
    color: #3D479C;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    font-size: 1.2vw;
}
.sub-nav ul li a::after{
    content:'・';
   font-weight: bold;
    transform: scale(1.4);
    color: #3D479C;
}


/* Program Section */
.program-section {
    background-color: #fcfcfc;
}

.timeline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-bottom: 240px; /* accommodate translate on bottom item */
    padding-top: 40px;
    position: relative;
    width: 90%;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    position: relative;
    flex-direction: row-reverse; /* Image Left, Content Right */
}

/* Stagger even items down */
.timeline-item:nth-child(even) {
    transform: translateY(150px);
}

/* Clean up old margin overrides */
.timeline-item.right { margin: 0; }
.timeline-item.left { margin: 0; }

.timeline-item .item-content {
    width: 50%;
    padding: 150px 30px;
    position: relative;
    z-index: 10;
    text-align: left;
}

.item-content{
    display: flex;
    flex-direction: column;
}

.timeline-item .item-image {
    width: 50%;
}

.timeline-item .item-image img {
    box-shadow: none;
    width: 100%;
    object-fit: cover;
}

.item-number {
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    font-weight: 300;
    line-height: 1;
    display: inline-block;
    margin-bottom: 15px;
    padding-bottom: 5px;
}

.item-title {
    font-size: 1.1vw;
    color: #fff;
    background: var(--primary-color);
    display: inline-block;
    padding: 5px 15px;
    margin-bottom: 15px;
    font-weight: normal;
}
.timeline-item .item-content p {
    font-size: 1vw;
    line-height: 1.6;
    font-weight: 500;
}

/* Movie Section */
.movie-section {
    position: relative;
    background-color: #fff;
    background-image: url('img/movie-back.png');
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    margin: 5em 0;
    

}

.movie-container{
    display: flex;
    height: 50vh;
    justify-content: space-around;
    align-items: center;
    
}

.movie-box {
    position: relative;
    width: 50%;
	height: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 1;
}
.movie-box iframe{
    aspect-ratio: 16 / 9;
	width: 100%;
	height: auto;
}
.movie-title-box {
    margin-top: 300px!important;
    padding-top: 200px!important;
}

.movie-thumb{
    width: 700px;
    height: 500px;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
}

.btn-black {
    background-color: #111;
}

.start-btn{
    background-color: var(--primary-color);
    font-size: 1.5em;
    border-radius: 0!important;
    font-weight: 400;
}

.btn-black:hover {
    background-color: #333;
}

/* Voice Section */
.voice-section {
    background: #f8f9fa;
    padding-top: 0!important;
    margin-top: 8em;
}

.voice-section .section-title{
    margin-top: -70px!important;
}

.voice-card {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 7vw;    
    padding-bottom: 10vw;
    border-radius: 10px 10px 0px 0px;
    margin: 0 auto;
    display:flex;
    align-items: center;
    flex-direction:row;
}
.voice-body{
    background: #fff;
    box-shadow: 0 100px 100px rgba(0,0,0,0.1);
    padding: 7vw;
    border-radius: 10px 10px 0px 0px;
    margin: 0 auto;
    display:flex;
    align-items: center;
    flex-direction:column;    
    align-items: flex-start;
}


.voice-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 2px dashed #eee;
    padding-bottom: 20px;
}

.voice-profile {
    flex: 1;
}

.voice-company {
    font-size: 2vw;
    color: var(--primary-color);
    display: block;
}

.voice-content-wrapper h4 {
    font-size: 2vw;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.voice-tags { justify-content: flex-start; display: flex; flex-wrap: wrap;gap:30px;margin: 2em 0; }
.tag-dark{width: 28%;font-size:1.1vw!important;text-align: center;border-radius: 30px!important;}
.voice-catch { font-size: 2.3vw; font-weight: bold; color: var(--accent-color); text-align: left; margin-top: 20px; }
.read-more-btn{display: flex;justify-content: center;margin-top: -7vw;}

.voice-photo {
    text-align: center;
    object-fit:cover;
}

.voice-photo img {
    width: 20vw;
    border-radius: 50%;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px #00000050);
}

.voice-read-more {
    background: #3D479C;
    color: var(--white);
    border: none;
    padding: 20px 80px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 1.5vw;
    letter-spacing: 2px;
    font-weight: 300;
    margin-top: 5px;
    transition: background 0.5s;
}


.voice-read-more:hover {
    background: #3D479C;
}

.voice-q {
    margin-bottom: 4em;

}

.q-label {
    display: inline-block;
    background: #3D479C;
    color: var(--white);
    font-weight: bold;
    padding: 4px 12px;
    font-size: 1.2vw;
    margin-bottom: 0.5em;
}

.voice-q p {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-size: 1vw;
}

/* Guideline Section */
.guideline-schedule{
    width: 100%;

}

        .selection-schedule-box {
            background-color: #fff;
            max-width: 100%;
            margin: 0 auto;
        }
        .selection-schedule-title {
            background-color: #d3481d;
            color: #fff;
            padding: 10px 20px;
            font-size: 2vw;
            font-weight: bold;
            margin-bottom: 20px;
        }
        .selection-schedule-list {
            list-style: none;
            padding: 0 10px;
        }
        .selection-schedule-list li {
            margin-bottom: 30px;
        }
        .selection-schedule-list .s-main {
            font-weight: bold;
            font-size: 1.5vw;
            margin-bottom: 5px;
            line-height: 1.6;
            color: #111;
        }
        .selection-schedule-list .s-sub {
            font-size: 1.3vw;
            margin-left: 1rem;
            line-height: 1.5;
            color: #333;
        }

.schedule-row{
    background: #3D479C;
    color: #fff;
    border-radius:30px; display:flex; align-items:center; padding:2vw 2vw; font-weight:bold;
}
.s-num,.s-title{font-size: 2vw!important;}
.s-num{width: 4vw!important;height: 4vw!important;}
.s-date{font-size: 1.3vw;font-weight: 300!important;}
.s-num{
    color:#3D479C;
}



.star-down{
background: linear-gradient(180deg, #6CADFF, #0061DA);
-webkit-text-fill-color: transparent;
position: relative;
  display: inline-block;
  width: 4px;
  height: 110px;
  margin: 10px 18.4px;
  border-radius: 9999px;
}

.star-down::before,
.star-down::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 2px);
  width: 4px;
  height: 30px;
  border-radius: 9999px;
  background: linear-gradient(180deg, #6CADFF, #0061DA);
-webkit-text-fill-color: transparent;
  transform-origin: 50% calc(100% - 2px);
}

.star-down::before {
  transform: rotate(45deg);
  background: #0061DA;
}

.star-down::after {
  transform: rotate(-45deg);
  background: #0061DA;
}
.star-icon{
    font-family: 'Noto Sans JP';
    background: linear-gradient(90deg, #6CADFF, #0061DA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 6vw;
}
.star-title{
    background: linear-gradient(90deg, #6CADFF, #0061DA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 6vw;
}

.star-sub{
    background: linear-gradient(90deg, #6CADFF, #0061DA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2vw;
}

.guideline-section {
    background: #f9f9f9;
}

.guide-info{
    text-align: center;
    color: var(--primary-color);
    font-weight:bold;
    font-size:1.1vw;
    margin-bottom:50px;

}

.light-blue-bg-full{
    background: url('img/oubo-back.png');
    background-size: cover;
    background-repeat: no-repeat;
    width: 100% !important; 
}

.req-box{
    color: var(--primary-color)!important;
    width: 90%;
    margin: 0 auto;
    font-size:1.1vw;

}

.accordion {
    max-width: 800px;
    margin: 0 auto 40px;
}

.accordion-item {
    margin-bottom: 5px;
    border: none;
    border-radius: 0;
    background: #fff;
    overflow: hidden;
}

.accordion-button {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    background: var(--primary-color);
    border: none;
    font-weight: bold;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion-button .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 0.8rem;
    margin-right: 15px;
}

.accordion-button .plus-minus {
    position: relative;
    width: 14px;
    height: 14px;
}

.accordion-button .plus-minus::before,
.accordion-button .plus-minus::after {
    content: '';
    position: absolute;
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.accordion-button .plus-minus::before {
    width: 14px;
    height: 2px;
}

.accordion-button .plus-minus::after {
    height: 14px;
    width: 2px;
    transition: transform 0.3s;
}

.accordion-button.active .plus-minus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.accordion-button.active + .accordion-content {
    padding-bottom: 20px;
}

.guideline-info-box {
    text-align: center;
    margin: 40px 0;
}

.text-link {
    color: #007bb5;
    font-weight: bold;
    text-decoration: underline;
}

.light-blue-box {
    background: #e6f5fa;
    padding: 40px;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
}

.light-blue-box h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: bold;
}

.requirement-item {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary-color);
}

.req-title {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 5px;
}

/* Support Section */
#support .section-title{
margin-top: -100px!important;
}

.support-links-row{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: 0 auto;
    padding: 5rem 0;

}

.support-links-row li:first-child{
    border-left: var(--primary-color) 1px solid;
}

.support-links-row li{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 24%;
    list-style: none;
    border-right: var(--primary-color) 1px solid;
}

.support-links-row a{
    height: 100px;    
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    font-size: 1.2vw;
    font-weight: bold;
}

.support-links-row a::after{
    color: var(--accent-color);
    content:"・";
    position: absolute;
    margin-top:3em;
    font-weight: bold;
    transform: scale(1.2);
}

.support-section {
    background: #F9F9F9;
    padding: 5em 0;
}

.faq-container h3{
    color: var(--primary-color);
    font-size: 1.3rem;
    padding-bottom: 0.5em;
}

.faq-container h3::before{
    content: '●';
    color: var(--accent-color);
    margin: 0 0.5em;
}

.faq-item{
    margin-top: 1em;
    margin-bottom: 1em;
    padding: 5px 0!important;
    border-bottom: solid 1px var(--accent-color)!important;
}

.faq-container{
    margin: 0 auto;
    width: 90%;
}

.faq-container h3{
    font-size: 1.5vw;
}

.faq-q,.faq-a{
    font-size: 1vw;
    color: var(--accent-color);
    font-family: 'Figtree';
}

.tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    border-bottom: 2px solid #eee;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    color: #888;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.support-content {
    max-width: 800px;
    margin: 0 auto;
}

.support-list {
    margin-bottom: 30px;
}

.list-title {
    font-weight: bold;
    color: var(--primary-color);
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.support-list ul {
    list-style-type: none;
}

.support-list li {
    padding: 8px 0 8px 20px;
    position: relative;
}

.support-list li::before {
    content: '■';
    color: #00a2ff;
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 0.8rem;
}

/* Download Section */
.download-section{
    position: relative;
    background-color: #fff;
    background-image: url('img/movie-back.png');
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    margin: 8em 0;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 75%;
    margin: 0 auto;
}

.download-card {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 13vw;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.dl-icon {

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.dl-icon img{    
    width: 1vw;
    height: 1vw;
}

.dl-title {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2vw;
    margin-bottom: 10px;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.dl-size {
    font-size: 0.8rem;
    color: #888;
    background: #f9f9f9;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 1vw;
}

/* Footer */
.site-footer {
    background: var(--primary-color);
    color: #fff;
    padding-top: 60px;
    padding-bottom: 10px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap:100px;
}

.footer-logo{
    background-color: #fff;
    border-radius: 15px;
    padding: 3em 5em;
}

.footer-logo img{
    width: 100%;
}



.footer-info h4 {
    font-size: 1.5vw;
    margin-bottom: 10px;
}

.footer-info p {
    color: #ccc;
    margin-bottom: 10px;    
    font-size: 1.2vw;
}

.footer-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1vw;
    letter-spacing: 1.5px;
    gap: 10px;
    margin-top: 1.5vw;
    margin-bottom: 20px;
    background-color: #fff;
    padding: 0.8em;
    border-radius: 15px;
    color: var(--primary-color); 
}

.footer-contact a{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-contact a img{
    width: 2vw;
}

.footer-links a {
    color: #ccc;
    margin-right: 20px;
    font-size: 0.85vw;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-copy{
    display: flex;
    justify-content: space-between;
    margin-top: 2em;
    padding: 0 3vw;
    font-size: 1vw;
}


/* Responsive adjustments */
@media (max-width: 1024px) {
    .br-sp{
        display: block!important;
    }
    .br-pc{
        display: none!important;
    }

.logo a img{
    width: 140px;
    image-rendering: -webkit-optimize-contrast;

}
/* Common */
.section{
    padding-top: 15vw;
}

.container{
    max-width: 90%;
    padding: 0;
    margin: 0 auto;
}
.section-title{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17vw;
    font-weight: 500;
    margin: 0 auto;
    width: 90%;
    letter-spacing: 5px;
}

.section-title span{
    font-size: 3.5vw;
    font-weight: 500;
    width: 90%;
    margin-top: 4vw;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-title span::after{
    width: 15%;
    margin-top: 5vw;
    position: relative;
    height: 4px;
}

/* FV */
    .hero-stats{
        display: flex;
        position: relative;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        top: 0%;
        left:0;
        margin-top: 3vw ;
        margin-bottom: 5vw;     
        padding-top: 2vw;
        padding-bottom: 5vw;
    }
    .stat-box{
        font-size: 2vw;
    }
    .stat-large{
        font-size:3vw
    }

    .inner-box {
        background-image: url(img/FV-all.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        height: 200vh;
        padding-top: 10vw;
    }

    .inner-box-one{
        width: 85%;
        margin-top: -15vw;
    }

    .inner-box-one .hero-title{
        position: relative;
        font-size: 10vw;
        margin-bottom: 4vw;
    }

    .hero-subtitle strong{
        font-size:5.5vw;
        line-height: 1.5em;
        margin-top: 5vw;
    }

    .hero-subtitle p{
        font-size: 4vw;
        line-height: 1.5em;
        margin-top: 0.5em;
        
    }
    .koubo{
        margin: 0 auto;
    }
    .koubo span{
        font-size: 3vw;
    }
    .about-fastar .badge{
        font-size: 3vw;
    }
    .about-fastar h2{
        font-size: 10vw;
    }

    .about-fastar p{
        font-size: 3.8vw;
        line-height: 1.5em;
        margin-top: 0.5em;
    }

     /* mainnav humberger */
     .hamburger {
        display: block;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transform: translateX(100%); 
        transition: transform 0.3s ease;
        z-index: 99;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .hamburger.active span:nth-child(1) {
        top: 10px;
        transform: rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        top: 10px;
        transform: rotate(-45deg);
    }

    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 98;
    }

    .overlay.active {
        display: block;
    }
    
    .hero-title { font-size: 2rem; }
    .hero-bg-text { font-size: 25vw; right: 0; }
    .hero-top-links { display: none; }
    
    .sub-nav { 
        border: none;
        background: #fff;
     }
    .sub-nav ul { 
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        width: 90%;
        padding: 5vw;
    }
    .sub-nav li {
        width: 45%;
        border: none; 
        background: #f8f9fa; 
        padding: 15px; 
        text-align: center;
        height: auto;
        padding: 8vw 0;
    }
    .sub-nav li:first-child { border:none }
    .sub-nav a { font-size: 4vw!important; border: none; }
    .en-text {
        display: block;
        font-size: 3vw;
        margin-top: 5px;
        font-weight: 500;
    }
    
    /* Program */
    .timeline { 
        display: flex;
        flex-direction: column;
        gap: 60px; 
        padding-bottom: 40px;
    }
    .timeline-item:nth-child(even) {
        transform: none; /* remove staggered effect on mobile */
    }
    .timeline-item, .timeline-item.left, .timeline-item.right {
        width: 100%;
        margin: 0;
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .timeline-item .item-image { width: 100%; margin-bottom: 20px; z-index: 5;}
    .timeline-item .item-content { 
        width: 100%; 
        padding: 0; 
        text-align: left; 
        margin-left: 0 !important;
        margin-right: 0 !important;
        z-index: 10;
    }
    .timeline-item.left .item-content, .timeline-item.left .item-content .item-number {
        text-align: left;
    }
    .item-number { 
        font-size: 17vw; 
        border-bottom: none; 
        margin-bottom: 5px; 
    }
    .item-title {
        background: var(--primary-color);
        color: #fff;
        display: inline-block;
        padding: 5px 20px;
        font-size: 4.5vw!important;
        margin-bottom: 15px;
    }
    .item-content p{
        font-size: 4vw!important;
    }
    
    /* Movie */
    .movie-container{
        display: flex;
        flex-direction: column-reverse;
    }
    .movie-title-box{
        width: 90%;
        margin: 0 auto!important;
        padding: 0!important;
    }

    .movie-box{
        width: 90%;
        height: auto;
        margin: 0 auto;
    }


    /* Voice */
    .voice-section{padding-top: 15vw !important;
        margin-top: 40vw !important;}
    .voice-section .section-title{margin-top: -25vw!important;}
    .voice-card{
        display: flex;
        flex-direction: column-reverse;
        padding-bottom: 20vw;
    }
    .voice-header {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        border-bottom: none;
    }
    .voice-company{
        font-size: 5vw;
    }
    .voice-content-wrapper h4{
font-size: 6vw;
margin-bottom: 1em;
    }
    .voice-profile { width: 100%; text-align: center; padding-top: 20px; }
    .voice-photo img { width: 80vw; margin: 1em auto;padding:0; }
    .voice-tags { justify-content: center; display: flex; flex-wrap: wrap; padding-bottom: 0em;gap:0px;margin-bottom: 1em; }
    .tag-dark{width: 55vw;font-size:4vw!important;text-align: center;
        margin-bottom: 1em;border-radius: 30px!important;}
    .voice-catch { font-size: 5vw; font-weight: bold; color: var(--accent-color); text-align: left; margin-top: 0px;margin-bottom: 1em; }
    .read-more-btn{display: flex;justify-content: center;margin-top: -7vw;}
    .voice-read-more{ position: relative;font-size: 4vw;margin-top: -10vw;padding:20px 50px;}
    .accordion-item { border-radius: 10px; margin-bottom: 15px; }
    .voice-q{margin-bottom: 2em;}
    .q-label{font-size: 4vw;}
    .voice-q p{ font-size: 3vw;}
    .accordion-button {
        border-radius: 10px;
        padding: 20px;
        font-size: 1.1rem;
    }
    .accordion-button .icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    .accordion-button .plus-minus { display: none; }
    
    .tabs { 
        display: grid; 
        grid-template-columns: 1fr 1fr; 
        gap: 10px; 
        border-bottom: none; 
    }
    .tab-btn { 
        border: none; 
        background: #f8f9fa; 
        border-radius: 8px; 
        padding: 15px 5px; 
        font-size: 0.85rem; 
    }
    .tab-btn.active {
        background: var(--primary-color);
        color: #fff;
    }
    /*guideline*/
    .schedule-row{display: flex;flex-wrap: wrap;justify-content: flex-start;
        padding-left: 25%!important;}
        .selection-schedule-list{padding: 0;}
            .selection-schedule-title { font-size: 5vw; padding: 3vw 5vw; margin-bottom: 4vw;}
            .selection-schedule-list li { margin-bottom: 6vw; }
            .selection-schedule-list .s-main { font-size: 4.5vw;text-indent: -1em;padding-left: 1em; }
            .selection-schedule-list .s-sub { font-size: 3.2vw;text-indent: -1em;padding-left: 1em; }

    .s-num,.s-title{font-size: 5vw!important;}
    .s-num{width: 10vw!important;height: 10vw!important;position: absolute;
        left: 5vw;}
    .s-date{width: 100%;font-size: 4vw;font-weight: 400!important;}
    
    .star-down,.star-icon,.star-title{font-size: 9vw;}
    .star-sub{font-size: 3.5vw;}
    
    .light-blue-bg-full{
        background: url(img/sp-back.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100% !important;
    padding-bottom: 15vw;
    }
    .guide-info{font-size: 4.3vw;}
    .req-box{
        width: 90%;
        font-size:3.2vw!important;
    }
    .req-box p{display: none;}
    .guide-more{font-size: 3vw;width: 85%;margin: 0 auto;padding-top: 1em;display:flex!important;flex-direction:column;justify-content: center;}
    .guide-more .voice-read-more{margin-top: 1em;}
    /*support*/
    #support .section-title{
        margin-bottom: 0;
        margin-top: 10vw!important;
    }
    .support-links-row{
        display: flex;
        flex-wrap: wrap;
        width: 90%;
        padding:2rem 0;
    }

.support-links-row a{
    font-size: 4vw;
}

    .support-links-row li{
        width: 45%;
        border: none;
    }


    .support-links-row li:first-child{
        border: none;
    }
    
    .faq-container{
        width: 100%;
    }
    .faq-container h3{
        font-size: 4vw;
    }
.faq-q,.faq-a{
    font-size: 3vw;
}


    /*download*/
    .download-card {
        height: 47vw;
    }

    .download-card div{
        margin-bottom: 20px;
    }

    .dl-title{font-size: 3.5vw;}
    .dl-icon img{width: 5vw;height: 5vw;}
    .dl-size{font-size: 3vw;}

    .download-section{
        margin-top: 10vw!important;
    }
    .download-section .section-title{
        margin-top: -10vw!important;
    }

    .download-section{
        background:url('img/sp-back.png');
        background-size: cover;
        background-repeat: no-repeat;
        margin: 0;
        padding-top:0.5em;
    }
    .download-grid { grid-template-columns: 1fr; }
    .footer-container { flex-direction: column-reverse; gap: 30px; }
    .footer-copy{
        display: flex;
        align-content: center;
        flex-direction: column-reverse;
        gap:20px;
        justify-content: center;
        align-items: center;padding-bottom: 7.5em;
    }
    .footer-copy a{
        margin: 3vw 0 auto;
        font-size: 3vw;
        text-align: center;
    }
    .footerCopyright{
        font-size: 2.2vw;
        margin-bottom: 4vw;
    }


    #entry-box{
    position: fixed;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: 0.4s ease-in-out;
    gap:0;
    height: 100px;
        bottom: 0 !important;
    }


    .btn-entry-form,.btn-entry-special{
        display: flex;
        flex-direction: column;
        justify-content: center;
        width:50vw;
        height: 25vw;
        padding: 1em;
        border-radius: 0!important;
    }
.entry-date-badge{
    width: 100%!important;
    border-radius: 0.5em!important;
    font-size: 2.5vw!important;
    line-height: 1.3;
}
.entry-text{
    font-size: 4vw!important;
    margin-left: 1vw!important;
}
.entry-text span{
font-size: 2.5vw!important;
}

.footer-info h4{
    font-size: 5vw!important;

}
.footer-info p{
    font-size: 4vw;
}
.footer-contact{
    
    margin-top: 10vw;
}
.footer-contact a{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:10px;
    font-size: 4vw;
    height: 20vw;
}

.footer-contact img{
    width: 8vw!important;
}

/* animation */
        .fade-in-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
        .fade-in-up.is-visible {
            opacity: 1;
            transform: translateY(0);
        }