@charset "UTF-8";
  

/* main */
#world {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 40px 20px;
    color: #ffffff;
}
  
.world-title {
    font-size: 48px;;
    letter-spacing: 0.2em;
    color: #ffffff;
    margin: 0;
}
.world-sub {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 30px;
}
  
.world-t {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}
  
.world-lead,
.world-text {
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 20px;
}
  
.world-section {
    font-size: 20px;
    color: #ffffff;
    margin: 20px 0 10px;
}
  
/* フェードイン */
.fadein{
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease, transform 2s ease;

}
.fadein.show{
    opacity: 1;
    transform: translateY(0);
}


.section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 100px auto;
    padding: 0 20px;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.section.reverse {
    flex-direction: row-reverse;
}


.image, .text {
    flex: 1;
    max-width: 50%;
    padding: 20px;
    box-sizing: border-box;
}

.image img {
    width: 80%;
    border-radius: 8px;
}

.section.show {
    opacity: 1;
}
.text{
    background-color: rgba(241, 226, 255, 0.564);
    border-radius: 8px;
    color: #ffffff;
    padding: 40px 60px;
}
