/* CSS Variables */
:root {
    --primary-blue: #22A8FF;
    --text-color: #5A5A5A;
    --bg-light-blue: #B9E3FF;
    --font-main: "Noto Sans JP", sans-serif;
    --container-width: 920px;
    --section-padding: 80px 0;
}
/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    position: relative;
    background-color: #fff;
    padding-top: 120px;
    font-family: var(--font-main);
    line-height: 1.6;
    letter-spacing: 0.05em;
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
}
.totop{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    opacity: 0;
    transition: 0.3s;
}
.totop.active{
    opacity: 1;
}
.totop-img{
    width: 60px;
    aspect-ratio: 60/56;
}
/* Utilities */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
.container {
    position: relative;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
}
/*common*/
.inline_block{
    display: inline-block;
}
.font-en {
    letter-spacing: 0.05em;
    font-family: "Geologica", sans-serif;
}
.f-42 {
    font-size: min(42px,3.2vw);
}
.f-48 {
    font-size: min(48px,3.6vw);
}
.page-bottom-nav {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 124px auto 0;
    width: 90%;
}
.bottom-nav-link {
    background: #fff;
    width: 140px;
    padding: 10px 0;
    text-align: center;
    border-radius: 8px;
    border: solid 1px #5A5A5A;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.bottom-nav-link:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.page-bottom-nav01 {
    line-height: 1;
    font-size: 21px;
    font-weight: 700;
}
.page-bottom-nav02 {
    font-size: 17px;
    color: #999;
}
.scroll_base{
    position: relative;
}
.scroll_base::after{
    position: absolute;
    content: "";
    bottom: 50px;
    left: 50px;
    width: 78px;
    aspect-ratio: 78/48;
    background: url(../images/common/scroll.png) no-repeat center center / contain;
    animation: scrollGuide 1.5s infinite;
}

@keyframes scrollGuide {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* Section Titles */
.section-header {
    text-align: center;
    margin-bottom: 44px;
}
.section-title-en {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    font-family: "Geologica", sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: inherit;
}
.section-title-en::before,
.section-title-en::after {
    content: '';
    display: block;
    width: 12px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: var(--primary-blue);
}
.section-title-ja {
    display: block;
    line-height: 1.2;
    letter-spacing: 0.05em;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 500;
}
.section_h3 {
    margin-bottom: 24px;
    line-height: 1.5;
    font-size: 32px;
    font-weight: 700;
    color: #444;
}
/* ========================================
   Header
======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 120px;
    background: var(--primary-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1320px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
.header-logo {
    width: auto;
    height: 60px;
}
.nav-menu {
    display: flex;
    gap: min(104px, 6vw);
}
.nav-menu a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.3;
    letter-spacing: 0.1em;
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}
.nav-menu .nav-en {
    font-size: 22px;
    font-weight: 400;
    opacity: 0.9;
}
.nav-menu a:hover {
    opacity: 0.8;
}
/* ========================================
   Header Toggle
======================================== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1001;
}
.hamburger-line {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
}
.hamburger-line::before,
.hamburger-line::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 0;
    transition: 0.3s;
}
.hamburger-line::before { top: -10px; }
.hamburger-line::after { top: 10px; }
.menu-toggle.is-active .hamburger-line {
    background-color: transparent;
}
.menu-toggle.is-active .hamburger-line::before {
    top: 0;
    transform: rotate(45deg);
}
.menu-toggle.is-active .hamburger-line::after {
    top: 0;
    transform: rotate(-45deg);
}
/* ========================================
   Main Visual
======================================== */
.main-visual {
    display: flex;
    justify-content: center;
    width: 100%;
    aspect-ratio: 2560/960;
    background-image: url('../images/top/mv_03.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.mv-content {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding-top: 2.2vw;
    padding-bottom: 4vw;
    width: 94%;
    max-width: 1300px;
    color: #fff;
}
.mv-text{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}
.mv-title {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.8;
    letter-spacing: 0.06em;
    font-size: min(56px,4vw);
    font-weight: 700;
}
.mv-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding-left: 60px;
}
.mv-icon {
    width: min(196px,14vw);
    height: auto;
}
.mv-tagline {
    text-align: left;
    line-height: 1.3;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
}
.mv-org {
    text-align: center;
    font-family: "Shippori Antique B1", sans-serif;
    font-size: min(28px,2.4vw);
    font-weight: 400;
}
/* ========================================
   Activities
======================================== */
.activities-section {
    position: relative;
    border-bottom: solid 24px var(--bg-light-blue);
    padding-top: 128px;
    padding-bottom: 64px;
    background: #F1F9FF;
    overflow: hidden;
}
.activities-section::after{
    width: 50%;
    position: absolute;
    content: "";
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1560px;
    width: 100%;
    aspect-ratio: 1/1;
    background: rgba(250, 250, 250, 0.8);
    border-radius: 50% 50% 0 0;
}
.activities-section::before{
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46%;
    min-width: 500px;
    aspect-ratio: 1764/836;
    background: url('../images/top/rainbow.png') no-repeat center / contain;
}
.activities-inner {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 76px;
    margin: 0 auto;
    max-width: 880px;
}
.activities-visual {
    display: flex;
    flex-wrap: wrap;
    width: calc(50% - 76px * 1 / 2);
}
.visual-main {
    width: 100%;
}
.visual-sub {
    width: 50%;
}
.activities-content {
    flex: 1;
    width: calc(50% - 76px * 1 / 2);
}
.activities-desc {
    margin-bottom: 24px;
    line-height: calc(32/20);
    font-size: 20px;
}
.activities-list-text {
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 20px;
    font-weight: 500;
}
.activities-list-text li::before {
    content: '・';
    margin-right: 5px;
}
.activities-btn {
    text-align: right;
}
.btn-more {
    display: inline-block;
    background: #666;
    color: #fff;
    padding: 3px 16px;
    border-radius: 30px;
    font-family: "Geologica", sans-serif;
    font-weight: 500;
    font-size: 24px;
    transition: 0.3s;
}
.btn-more:hover {
    background: var(--primary-blue);
}
/* ========================================
   Mission
======================================== */
.mission-section {
    position: relative;
    background: #F1F9FF;
    padding-top: 120px;
    padding-bottom: 100px;
    z-index: 2;
}
.mission-section::after{
    position: absolute;
    content: "";
    top: 64px;
    left: 0;
    width: 69%;
    height: 88%;
    background: rgba(250, 250, 250, 0.8);
    z-index: -1;
}
.mission-section::before{
    position: absolute;
    content: "";
    top: 130px;
    left: 12.4vw;
    width: 30.4%;
    min-width: 520px;
    aspect-ratio: 1174/1626;
    background: url('../images/common/balloon.png')no-repeat center / contain;
    z-index: -1;
}
.mission-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 76px;
    margin: 0 auto;
    padding-top: 60px;
    max-width: 1000px;
}
.mission-content {
    flex: 1;
}
.mission-visual {
    flex: 1;
    padding-top: 10px;
}
.mission-desc {
    margin-bottom: 24px;
    text-align: justify;
    line-height: calc(32/20);
    font-size: 20px;
}
.mission-btn {
    text-align: right;
}
/* ========================================
   Idea
======================================== */
.idea-section {
    position: relative;
    border-bottom: solid 24px var(--bg-light-blue);
    padding-bottom: 134px;
    background: #F1F9FF;
    z-index: 1;
    overflow: hidden;
    padding-top: 94px;
}
.idea-section::after{
    position: absolute;
    content: "";
    top: 32px;
    right: 0;
    width: 69%;
    height: 88%;
    background: rgba(250, 250, 250, 0.8);
    z-index: -1;
}
.idea-section::before{
    position: absolute;
    content: "";
    bottom: 0;
    right: 35%;
    transform: translateX(50%);
    width: 46%;
    min-width: 520px;
    aspect-ratio: 1760/884;
    background: url('../images/common/rainbow_l.png')no-repeat center / contain;
    z-index: -1;
}
.idea-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 74px;
    margin: 0 auto;
    max-width: 1000px;
}
.idea-visual {
    flex: 1;
    padding-top: 10px;
}
.idea-content {
    flex: 1;
}
.idea-desc {
    margin-bottom: 24px;
    text-align: justify;
    line-height: calc(32/20);
    font-size: 20px;
}
.idea-btn {
    text-align: right; 
}
/* ========================================
   News
======================================== */
.news-section {
    padding-top: 120px;
    padding-bottom: 100px;
    background: #F1F9FF;
}
.news-list {
    max-width: 880px;
    margin: 0 auto 56px;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}
.news-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.news-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.news-link {
    display: flex;
    align-items: stretch;
    color: inherit;
    text-decoration: none;
}
.news-thumb {
    width: 238px;
    aspect-ratio: 1/1;
    flex-shrink: 0;
    background: #F7F7F7;
    overflow: hidden;
}
.news-thumb img {
    width: auto;
    max-width: none;
    height: auto;
    object-fit: cover;
}
.news-thumb img.noimg{
    width: 100%;
}
.news-thumb:has(img.noimg){
    padding: 28px;
}
.news-body {
    flex: 1;
    padding: 38px 40px 20px;
}
.news-head{
    position: relative;
    padding-left: 10px;
    border-left: solid 8px var(--bg-light-blue);
}
.news-head::before{
    position: absolute;
    content: "";
    top: 0;
    left: -8px;
    width: 8px;
    height: 16px;
    background: var(--primary-blue);
}
.news-meta {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.news-date {
    line-height: 1;
    letter-spacing: 0.1em;
    font-family: "Geologica", sans-serif;
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    color: #666;
}
.news-title {
    margin-bottom: 20px;
    line-height: 1.4;
    font-size: 22px;
    font-weight: 700;
    color: #333;
}
.news-excerpt {
    margin-bottom: 10px;
    display: -webkit-box;
    line-height: 1.6;
    font-size: 14px;
    color: #666;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-excerpt p{
    font-size: 20px;
}
.news-more-btn {
    text-align: right;
}
.news-more-btn span {
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 16px;
    color: #666;
}
.news-btn-area {
    text-align: center;
}
/* ========================================
   Activities Page
======================================== */
.page-activities .page-content {
    background: #F5F5F5;
    padding-top: 64px;
    padding-bottom: 130px;
}
.page-activities .page-content .container{
    max-width: 1130px;
    padding: 0;
}
.page-header {
    margin-bottom: 0;
    background: #fff;
}
.page-intro {
    padding: 28px 0 14px;
    text-align: center;
}
.page-intro .container {
    position: relative;
    max-width: 100%;
}
.page-title-area {
    text-align: center;
}
.page-title-en {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    font-family: "Geologica", sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: inherit;
}
.page-title-ja {
    display: block;
    line-height: 1.2;
    letter-spacing: 0.05em;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 500;
}
.page-title-en::before,
.page-title-en::after {
    content: '';
    display: inline-block;
    width: 12px;
    aspect-ratio: 1/1;
    background: var(--primary-blue);
    border-radius: 50%;
    vertical-align: middle;
    margin: 0 10px;
}
.breadcrumbs {
    position: absolute;
    top: 0;
    left: 20px;
    font-size: 16px;
    color: #999;
    z-index: 10;
}
.breadcrumbs a {
    color: #999;
    text-decoration: none;
}
.page-mv {
    position: relative;
    width: 100%;
    aspect-ratio: 2560/800;
    overflow: hidden;
}
.page-mv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-mv-content {
    position: absolute;
    top: 2.2vw;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1000px;
    z-index: 1;
}
.page-mv-title {
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: calc(78px/56px);
    letter-spacing: 0.06em;
    font-size: min(56px, 5vw);
    font-weight: 700;
    color: #fff;
}
.activity-items {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
    width: 90%;
    max-width: 1024px;
}
.activity-row {
    position: relative;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 4px rgba(0,0,0,0.25);
    overflow: hidden;
}
.activity-row::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 16px;
    height: 100%;
    background: var(--bg-light-blue);
}
.activity-head {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 77px;
    background: #fff;
    min-height: 120px;
}
.activity-body{
    padding: 30px 70px 54px;
    background: #F7F7F7;
}
.activity-icon {
    width: 40px;
    aspect-ratio: 1/1;
    flex-shrink: 0;
    margin-top: 5px;
}
.activity-title {
    line-height: 1.5;
    font-size: 28px;
    font-weight: 700;
    color: #444;
}
.activity-row:first-child .activity-desc{
    margin-bottom: 34px;
}
.activity-desc {
    /* margin-bottom: 34px; */
    line-height: 1.8;
    font-size: 20px;
    color: #666;
}
.activity-images-wrapper{
    width: calc(50% - 76px * 1 / 2);
}
.activity-images-wrapper p{
    text-align: center;
    font-size: 14px;
}
.activity-images {
    display: flex;
    gap: 76px;
    margin: 0 auto;
    max-width: 500px;
}
.activity-images img {
    border-radius: 8px;
    margin-bottom: 14px;
    padding: 0 4px;
    height: auto;
}
.info-table {
    width: 100%;
    border-collapse: collapse;
}
.info-table tr:first-child{
    border-top: solid 1px #D1D1D1;
}
.info-table tr{
    border-bottom: solid 1px #D1D1D1;
}
.info-table th,
.info-table td {
    padding: 8px 0;
    text-align: left;
    font-size: 20px;
}
.info-table th {
    width: 210px;
    padding-right: 30px;
    padding-left: 30px;
    text-align: center;
    color: #666;
    font-weight: 500;
}
.info-table td {
    padding-left: 30px;
    padding-right: 30px;
    color: #333;
}
.info-table tr:last-child th,
.info-table tr:last-child td {
    border-bottom: none;
}
/* ========================================
   Footer
======================================== */
.site-footer {
    background-color: #5A5A5A;
    color: #fff;
    padding: 40px 0;
}
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 30px;
}
.footer-left {
    min-width: 200px;
}
.footer-org {
    display: flex;
    align-items: center;
    column-gap: 3%;
    letter-spacing: 0.1em;
    font-size: 25px;
    font-weight: 700;
}
.footer-org .font-s {
    flex-shrink: 0;
    padding-top: 0.2em;
    font-size: 16px;
}
.footer-center {
    display: flex;
    align-items: center;
    gap: 40px;
}
.footer-nav ul {
    display: flex;
    gap: 30px;
}
.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s;
}
.footer-nav a:hover {
    opacity: 0.7;
}
.footer-sns .sns-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: opacity 0.3s;
}
.footer-sns .sns-link:hover {
    opacity: 0.7;
}
.footer-right {
    min-width: 200px;
    text-align: right;
}
.copyright {
    letter-spacing: 0.05em;
    font-size: 16px;
    font-family: "Geologica", sans-serif;
}
/* ========================================
   Mission Page
======================================== */
.mission-section-top {
    background: #F1F9FF;
    padding-top: 64px;
    padding-bottom: 218px;
}
.mission-section-bottom {
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 84px;
    border-top: solid 24px var(--bg-light-blue);
    background: #F5F5F5;
    padding-top: 200px;
    padding-bottom: 130px;
}
.page-mission .page-content .container{
    width: 90%;
    max-width: 1024px;
    padding: 0;
}
.mission-section-item {
    padding: 30px 60px;
}
.mission-section-item.item01 {
    margin-bottom: 146px;
    background: url(../images/mission/bg_cloud.png) no-repeat center center / contain;
}
.mission-section-title {
    margin-bottom: 40px;
    width: fit-content;
    line-height: 1.5;
    font-size: 32px;
    font-weight: 700;
}
.mission-section-title span.blue{
    display: inline-block;
    border-bottom: solid 8px var(--bg-light-blue);
}
.mission-section-item.item02{
    padding: 0;
}
.mission-section-item.bg_none{
    padding: 0;
}
.mission-section-item-head{
    border-radius: 16px 16px 0 0;
    padding: 30px;
    background: #fff;
}
.mission-section-item.item02 .mission-section-title,
.mission-section-item.bg_none .mission-section-title{
    margin: 0 auto;
}
.mission-challenge-image{
    position: absolute;
    top: -168px;
    left: 48%;
    width: 483px;
    transform: translate(-50%, 0);
    aspect-ratio: 920/600;
    z-index: 1;
}
.mission-section-bottom .mission-section-item{
    position: relative;
}
.mission-section-bottom .mission-section-item::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border-radius: 0 16px 16px 0;
    width: 69%;
    height: 100%;
    background: #fff;
}
.mission-section-bottom .mission-section-item.bg_reverse::before{
    left: auto;
    right: 0;
    border-radius: 16px 0 0 16px;
}
.mission-section-bottom .mission-section-item.bg_none::before{
    display: none;
}   

.mission-section-box{
    padding: 24px 70px;
}
.mission-section-title.bb-none{
    margin-bottom: 44px;
    border-bottom: none;
}
.mission-section-title.bb-none span.yellow{
    border-bottom: solid 8px #FFEC00;
    line-height: 1.7;
}
.mission-section-sub-title{
    position: relative;
    margin-bottom: 20px;
    padding-left: 0.8em;
    line-height: calc(44/28);
    font-size: 28px;
    font-weight: 700;
}
.mission-section-sub-title::before{
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 30px;
    background: #FFEC00;
}
.mission-content-wrapper {
    display: flex;
    justify-content: space-between;
    column-gap: 74px;
}
.mission-buttons{
    width: 55%;
}
.mission-image{
    flex-shrink: 0;
    width: 45%;
}
.mission-section-item.item01 .mission-image{
    width: 39%;
}
.mission-content-wrapper.reverse{
    column-gap: 86px;
    border-radius: 0 0 16px 16px;
    padding: 64px 70px;
    background: #FAFAFA;
}
.mission-content-wrapper.reverse02{
    flex-direction: row-reverse;
}
.mission-section-item.reverse .mission-content-wrapper {
    flex-direction: row-reverse;
}
.mission-text {
    flex: 1;
}
.mission-text p{
    line-height: 1.8;
    font-size: 20px;
    color: #666;
}
.mission-text.mb p {
    margin-bottom: 30px;
}
.mission-image img {
    width: 100%;
    height: auto;
}
.mission-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mission-btn-item {
    background: var(--primary-blue);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}
.mission-highlight-image {
    text-align: center;
    margin-top: 40px;
}
.mission-highlight-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
}
/* ========================================
   Idea Page
======================================== */
.idea-section-top {
    position: relative;
    border-bottom: solid 24px var(--bg-light-blue);
    background: #F7F7F7;
    padding-top: 64px;
    overflow: hidden;
}
.bg_ballon{
    position: absolute;
    top: 30px;
    left: 30%;
    transform: translateX(-50%);
    width: 35%;
    aspect-ratio: 1174/1626;
}
.bg_rainbow_l{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 67%;
    aspect-ratio: 1760/884;
}
.idea-section-bottom {
    background: #E8F5FF;
    padding-top: 120px;
    padding-bottom: 130px;
}
.page-idea .page-content .container{
    width: 90%;
    max-width: 1024px;
    padding: 0;
}
.idea-section-item {
    max-width: 1024px;
    border-radius: 16px 16px 0 0;
    margin: 0 auto;
    padding: 30px 74px 68px;
    background: rgba(250, 250, 250, 0.7);
}
.idea-section-title {
    margin: 0 auto 76px;
    width: fit-content;
    line-height: 1.5;
    font-size: 32px;
    font-weight: 700;
}
.idea-section-title span.yellow{
    border-bottom: solid 8px #FFEC00;
}
.idea-text p {
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 20px;
    color: #666;
}
.idea-image-wrapper {
    margin-bottom: 68px;
}
.idea-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}
.idea-diagram {
    text-align: center;
}
.idea-diagram img {
    width: 100%;
    height: auto;
}
.idea-message-section-head{
    margin-bottom: 58px;
    text-align: center;
}
.idea-message-title {
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.05em;
    font-family: "Geologica", sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: inherit;
}
.idea-message-heading {
    border-radius: 16px 16px 0 0;
    background: #fff;
    padding: 24px 20px 40px;
    text-align: center;
    line-height: 1.5;
    font-size: 32px;
    font-weight: 700;
}
.idea-message-heading .yellow{
    border-bottom: solid 8px #FFEC00;
}
.idea-message-text p {
    margin-bottom: 64px;
    border-radius: 0 0 16px 16px;
    padding: 44px 72px 38px;
    background: #F5F5F5;
    line-height: 1.8;
    font-size: 20px;
    color: #666;
}
.idea-profile-section {
    position: relative;
    border-radius: 16px;
    margin-bottom: 60px;
    background: #F7F7F7;
    overflow: hidden;
}
.idea-profile-section::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 16px;
    height: 100%;
    background: var(--bg-light-blue);
}
.idea-profile-title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 40px 74px;
    background: #fff;
    line-height: 1.4;
    font-size: 28px;
    font-weight: 700;
}
.idea-profile-title img {
    width: 40px;
    aspect-ratio: 1/1;
}
.idea-profile-body{
    padding: 34px 74px;
    background: #f7f7f7
}
.idea-profile-message-text{
    margin-bottom: 40px;
    font-size: 20px;
}
.idea-profile-content {
    display: flex;
    gap: 40px;
}
.idea-profile-info {
    flex-shrink: 0;
    width: 50%;
}
.profile-name {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 18px;
    font-weight: 700;
}
.profile-images {
    display: flex;
    gap: 16px;
}
.profile-images > img {
    width: 55%;
    height: auto;
}
.profile-sub-images {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 42%;
}
.profile-sub-images img {
    width: 100%;
    height: auto;
}
.idea-profile-bio {
    flex: 1;
}
.idea-profile-name{
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
    font-size: 24px;
}
.idea-profile-name .degree{
    font-size: 20px;
}
.idea-profile-bio{
    border-bottom: solid 1px #D1D1D1;
    line-height: calc(34/16);
    font-size: 16px;
}
.idea-profile-bio-text{
    padding: 16px 0;
    line-height: calc(22/14);
    font-size: 14px;
}
.idea-profile-bio-text .flex-box{
    display: flex;
    column-gap: 12px
}

/* ========================================
   News Page (Home/Archive)
======================================== */
.page-news .page-content {
    background: #F5F5F5;
    padding-top: 98px;
    padding-bottom: 130px;
    /* background: #B9E3FF; */
}
.page-news .page-content .container {
    width: 90%;
    max-width: 880px;
    padding: 0;
}
.news-section-title {
    margin-bottom: 60px;
    border-bottom: solid 1px #ccc;
    padding-bottom: 10px;
    font-size: 32px;
    font-weight: 700;
}
/* News List */
.news-archive-list {
    display: flex;
    flex-direction: column;
    gap: 64px;
}
.news-item {
    display: flex;
    background: #fff;
    border-radius: 16px;
}
.news-item-thumb {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    aspect-ratio: 1/1;
    flex-shrink: 0;
    background: var(--bg-light-blue);
    overflow: hidden;
}
.news-item-thumb img {
    width: auto;
    max-width: none;
    height: auto;
    object-fit: cover;
}
.news-item-content {
    flex: 1;
    padding: 36px 40px;
}
.news-item-thumb img.noimg{
    width: 76%;
    object-fit: contain;
}
.news-item-head {
    position: relative;
    border-left: solid 8px var(--bg-light-blue);
    padding-left: 12px;
}
.news-item-head::before {
    position: absolute;
    content: "";
    top: 0;
    left: -8px;
    width: 8px;
    height: 16px;
    background: var(--primary-blue)
}
.news-item-meta {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.news-date {
    font-family: "Geologica", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #333;
    line-height: 1;
}
.news-item-title {
    margin-bottom: 16px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
}
.news-item-excerpt {
    margin-bottom: 14px;
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
/* Read More Button */
.news-read-more {
    text-align: right;
}
.news-read-more .arrow img{
    margin-top: 3px;
    width: 10px;
    height: 12px;
    display: block;
}
.news-read-more a:hover .arrow img{
    filter: brightness(100);
}
.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid #ccc;
    border-radius: 30px;
    padding: 6px 8px 8px;
    font-size: 16px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
}
.read-more-btn span{
    line-height: 1;
}
.read-more-btn:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #fff;
}
.read-more-btn:hover svg {
    stroke: #fff;
}

/* Pagination */
.pagination {
    margin-top: 60px;
    text-align: center;
}
.pagination .nav-links {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.pagination .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    height: 40px;
    color: #4B4B4B;
    text-decoration: none;
    font-size: 16px;
    font-family: "Geologica", sans-serif;
    transition: all 0.3s;
    border: none;
    background: #fff;
}
/* Numbers box style */
.pagination .page-numbers.current {
    background: #5E5E59;
    font-weight: 700;
    color: #fff;
}
/* Arrows */
.pagination .prev, 
.pagination .next {
    font-size: 24px;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    color: #4B4B4B;
}
.pagination .prev:hover, 
.pagination .next:hover {
    opacity: 0.7;
}

/* ========================================
   Single News
======================================== */
.page-news-single .page-content {
    background: #F5F5F5;
    padding-top: 80px;
    padding-bottom: 120px;
}
.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}
.singlenews-article {
    background: #fff;
    padding: 60px 80px;
    margin-bottom: 60px;
}
.singlenews-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}
.singlenews-meta {
    text-align: right;
    margin-bottom: 40px;
}
.singlenews-date {
    display: inline-block;
    border: 1px solid #333;
    padding: 4px 10px;
    font-family: "Geologica", sans-serif;
    color: #333;
    font-size: 14px;
    line-height: 1;
}
.singlenews-thumbnail {
    margin-bottom: 60px;
    text-align: center;
}
.singlenews-thumbnail img {
    max-width: 100%;
    height: auto;
}
.singlenews-body {
    font-size: 16px;
    line-height: 2;
    color: #333;
}
/* Content Styles */
.singlenews-body h2 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 60px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 4px solid var(--bg-light-blue);
}
.singlenews-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 6px solid var(--bg-light-blue);
}
.singlenews-body h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.singlenews-body h4::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--bg-light-blue);
    border-radius: 50%;
    margin-right: 10px;
}
.singlenews-body p {
    margin-bottom: 30px;
}
.singlenews-body img {
    display: block;
    margin: 0 auto 30px;
    max-width: 100%;
    height: auto;
}

.news-item-thumb img {
    width: auto;
    max-width: none;
    height: auto;
    object-fit: cover;
}
/* Lists */
.singlenews-body ul,
.singlenews-body ol {
    background: #F9F9F9;
    padding: 40px 50px;
    margin-bottom: 40px;
    border-radius: 8px;
}
.singlenews-body ol {
    list-style: decimal inside;
}
.singlenews-body ul {
    list-style: disc inside;
}
.singlenews-body li {
    margin-bottom: 10px;
}
.singlenews-body li:last-child {
    margin-bottom: 0;
}

/* Navigation */
.singlenews-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
}
.singlenews-nav a {
    color: #444;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}
.singlenews-nav a:hover {
    opacity: 0.7;
    color: var(--primary-blue);
}
.nav-prev, .nav-next {
    width: 30%;
}
.nav-next {
    text-align: right;
}
.nav-archive {
    text-align: center;
}

/* ========================================
   Generic Page
======================================== */
.page-header-simple {
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
    background: #f7f7f7;
}
.page-header-simple .page-title {
    font-size: 28px;
    font-weight: 700;
}
.page-content.singlenews-content-section {
    padding: 60px 0;
}
.page-generic-article .page-body {
    background: #fff;
    border-radius: 8px;
}
.page-body p {
    margin-bottom: 1.5em;
    line-height: 1.8;
}