/* 
  Hero セクション
*/
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    /* 画面いっぱいの高さ */
    overflow: hidden;
    display: flex;
    justify-content: center;
    /* 横方向の中央揃え */
    align-items: center;
    /* 縦方向の中央揃え */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    /* 画像を少し暗くして文字を読みやすく */
}

.hero-content {
    text-align: center;
    z-index: 1;
    color: #fff;
    padding: 0 20px;
}

/* アニメーション */
/* タイトル: ふわっと現れる */
.hero-title {
    font-family: var(--font-en);
    font-size: 4rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInTitle 1.5s ease-out forwards;
}

/* 本文: 少し遅れて下からスライドイン */
.hero-desc {
    font-size: 1rem;
    letter-spacing: 0.1em;
    line-height: 2;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpText 1.2s ease-out 0.8s forwards;
    /* 0.8秒遅延 */
}

@keyframes fadeInTitle {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUpText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 
  About セクション
*/
.about-section {
    text-align: center;
    margin: 60px auto;
}

.about-section h2 {
    font-family: var(--font-en);
    font-size: 2rem;
    margin-bottom: 20px;
}

.sub-catch {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Links */
.home-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.image-link {
    position: relative;
    display: block;
    height: 150px;
    overflow: hidden;
}

.image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.image-link:hover img {
    opacity: 0.9;
}

.image-link .link-text {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-family: var(--font-en);
    font-size: 2rem;
    z-index: 2;
}

/* 
  Newsセクション 
*/
.news-section {
    text-align: center;
    padding: 40px;
    background: #000;
    margin-top: 40px;
    border-top: 1px solid #333;
}

.news-section ul {
    display: inline-block;
    /* ul自体を中央に置ける */
    text-align: left;
    /* リストの文章は左揃え */
    list-style: disc;
    padding-left: 1.5em;
    /* ●の分の余白 */
    margin: 0 auto;
}

.news-section li {
    margin: 0.4em 0;
}

.news-section a {
    /* color: rgb(233 233 233 / 45%); */
    text-decoration: underline;
}

/* 
  CONCEPT セクション
*/
.concept-section {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.concept-title {
    font-family: var(--font-en);
    font-size: 2.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
}

/* 説明共通用 */
.description-text {
    font-size: 0.95rem;
    line-height: 2.2;
    letter-spacing: 0.05em;
    max-width: 600px;

    margin: 0 auto;
    text-align: center;
    line-height: 2;
}