/* 全体のスタイル */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #E8EAED;
    background-color: #04152D;
    width: 100%;
    font-weight: bold;
}

.container {
    width: 100%;
    padding: 0 auto;
    margin: 0 auto;
}

p {
    font-size: 1.2rem;
}

h1 {
    letter-spacing: 3px; /* 文字間隔を3px広げる */
    font-size: 2.5rem;

}


h2 {
    font-size: 2rem;
    color: #70BFE0;
    margin: 35px 0 35px 0;
}

h3 {
    font-size: 1.5rem;
    color: #EA6B15;
}

/*ヘッダー*/
.header {
    display: none;
    height: 65px;
    width: 100%;
    background-color: rgba(76, 79, 80, 0.7);
    position :fixed;
    top: 0;
    z-index: 10;
    padding: 0 0 ;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
}
  
.logo {
    height: 65px;
    width: 230px;
    margin-left: 20px;
}
  
  
.header-right {
    float: right;
    margin-right: 0px;
        }
  
.header-right a {
    line-height: 65px;
    padding: 0 25px;
    color: white;
    display: block;
    float: left;
    font-size: 1rem;
    font-weight: normal;
    transition: all 0.5s;
    text-decoration: none; /*デフォルトのリンク下線を消す*/

}
  
.header-right a:hover {
    background-color: rgba(255, 255, 255, 0.3);
}


/* ヒーローセクション */
.hero {
    background: url('hero-bg.jpg') no-repeat center/cover;
    background-image: url(/assets/images/fire_football_1920.webp);
    background-size: cover; /* アスペクト比を維持して全体に表示 */
    height: 920px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FAFAFA;
}

.hero-content {
    opacity: 0; /* 初期状態で非表示 */
    transform: translateY(2000px); /* 50px下からスタート */
    animation: fadeUp 1s forwards; /* 1秒かけて登場 */
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    max-width: 80%;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.hero p {
    font-size: 1.2rem;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1.2rem;
    color: #FAFAFA;
    background-color: #E07083;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background-color: #C06070;
}

/* セクション共通 */
section {
    padding: 60px 20px;
    text-align: center;
}


/* プロジェクト概要 */
.overview .points {
    display: flex;
    justify-content: center;
}

.overview p {
    font-size: 1.5rem;
}

.highlight {
    color: #EA6B15; /* 赤文字にする */
}

.highlight2 {
    color: #E07083; /* 赤文字にする */
}

.point {
    background: #E0DB70;
    border-radius: 10px;
    color: #545454;
    padding: 2px 30px 50px 30px;
    width: 500px;
}

.point p {
    font-size: 1.2rem;
}

.point a {
    color: #E07083;
    text-align: center;
}

.target {
    width: 300px;
    max-width: 85%;
    background-color: rgba(255, 255, 255,0.5);
    margin: 0 auto;
    font-size: 1.2rem;
    text-align: left;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.target p {
    font-size: 1.3rem;
}


.timeline {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 0 auto
}

.step {
    background: #E0DB70;
    border-left: 5px solid #70BFE0;
    margin: 10px;
    padding: 15px;
    width: 250px;
    color: #545454;
}

.step p {
    font-size: 1.2rem;
}

/* 応募要項 */
.entry {
    display: flex;
    flex-direction: column;
    align-items: center; /* セクション全体を中央配置 */
    padding: 60px 20px;
}

.entry h2 {
    text-align: center;
}

.entry ul {
    list-style: none;
    padding: 30px;
    text-align: left; /* 左揃え */
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
}

.entry ul li {
    font-size: 1.3rem;
    margin: 10px 0;
}

.entry ul li a {
    color: #EA6B15;
    text-align: center;
}

/* 運営・サポーター */
.supporters .logos img {
    width: 150px;
    margin: 10px;
}

/* SNS・最新情報 */
.sns-links a {
    display: inline-block;
    margin: 10px;
    padding: 10px;
    color: #FAFAFA;
    background: #70BFE0;
    text-decoration: none;
    border-radius: 5px;
}

/* フッター */
footer {
    background: #21201A;
    color: #FAFAFA;
    padding: 20px;
    text-align: center;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    display: inline;
    margin: 0 10px;
}

footer ul li a {
    color: #FAFAFA;
    text-decoration: none;
}