@charset "utf-8";

/* ------------------共通設定------------------- */

.shippori-mincho-regular {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
}

.shippori-mincho-medium {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-style: normal;
}

.shippori-mincho-semibold {
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    font-style: normal;
}

.shippori-mincho-bold {
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
    font-style: normal;
}
body {
    font-family: "Shippori Mincho", serif;
    color: #333;
    -webkit-font-smoothing: antialiased;

}

h1,
h2,
h3,
.mv-title,
strong {
    font-weight: 700;
}


html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    
}

body {
    margin: 0;
    
    line-height: 1.8;
    background-color: #f8faff;
    background-image: radial-gradient(#d1d5db 1px, transparent 1px), linear-gradient(to right, #e5e7eb 0.5px, transparent 1px), linear-gradient(to bottom, #e5e7eb 0.5px, transparent 1px);
    background-size: 80px 80px;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}


 :root {
    --primary-blue: rgba(27, 99, 235, 0.8);
    --btn-blue: #034382;
    --primary-gray: #999;
}

a {
    color: inherit;
    text-decoration: none;
}

.view-more-area {
    text-align: center;
}
.btn-view-more {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: #333;
    color: #fff;
    padding: 1vw  3vw;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2vw;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-view-more::after {
    content: "→";
    display: flex;
    align-items: center;
    justify-content: center;
    width:  30px;
    height: 30px;
    background: #fff;
    color: #333;
    border-radius: 50%;
    margin-left: 3vw;
    font-size: 1.6vw;
    font-weight: bold;
}

.btn-view-more:hover {
    opacity: 0.8;
    color: #fff;
}

@media screen and (max-width: 768px) {
   
    .btn-view-more {
        padding: 1.5vh 3vh ;
        font-size: 2vh;
    
    }

    .btn-view-more::after {
        width: 3vh;
        height: 3vh;
        font-size: 2vh;
       
    }
}



/* -------------------------------------------------------------
---------------------------【１】 ＜LOADING＞----------------------
----------------------------------------------------------------*/


body.is-first-visit .l-main, 
body.is-first-visit .site-header {
    opacity: 0;
}

#loader {
    display: flex;
    opacity: 1;
    visibility: visible;
    position: fixed;
    inset: 0;
    z-index: 20000;
    background: #034382; 
    align-items: center;
    justify-content: center;
}


.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;   
    justify-content: center;
    text-align: center;
    color: #ffffff;
    width: 100%;
}


/*------------------------ 「出る杭を伸ばす、新しい奨学金。」------------------------ */

.loader-text {
    margin-bottom: 4.5vw;
}

.loader-text p {
    font-size: 3vw;
    line-height: 1.8;
    letter-spacing: 0.15em;
    color: #ffffff;
    opacity: 0;
}


/* ------------------------「一般財団法人 ノジマ出る杭財団」------------------------ */

.loader-logo {
    font-size: 1.6vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vh;
    color: #ffffff;
    opacity: 0;
   letter-spacing: 0.15em;
}

.fade-up {
    animation: fadeUp 0.7s forwards;
}

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

.loader-text p:nth-child(1) {
    animation-delay: 0.1s;
}

.loader-text p:nth-child(2) {
    animation-delay: 0.6s;
}

.loader-logo {
    animation-delay: 2s;
}


/* ------------------------ 線------------------------ */

.loader-line {
    position: fixed;
    top: 60%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ffffff;
    transform: translateX(-100%);
    opacity: 1;
    animation: linePassThrough 0.9s 1.5s linear forwards;
}

@keyframes linePassThrough {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}


body.is-first-visit #loader,
body.is-first-visit #loading {
    display: flex;
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 768px) {
    .loader-text .fade-up {
        font-size: 4vh;
        line-height: 2;
    }
    .corp-type {
        font-size: 2.5vh;
    }
    .loader-line {
        top: 57%;
    }
    .loader-logo {
    
        animation-delay: 1.8s;
        gap:0.5vh
    }

  
}


/* -------------------------------------------------------------
 ------------------------- 【２】＜HEADER＞-------------------------
/* --------------------------------------------------------------  */
.site-header {
    position: fixed;
    top: 2vw;
    width: 100%;
    height: auto;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.28s ease;
    will-change: transform;
}

.site-header.is-hidden {
    transform: translateY(-120%);
    pointer-events: none;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    height: 5.5vw;
   width: 95%;
   padding:0 4vw;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.header-title {
    display: flex;
    align-items: center; 
    height: 100%;
    margin: 0;
    padding: 0;
}

.header-title a {
    color: #034382;
    font-size: 1.3vw;
    font-weight: bold;
    line-height: 1.4; 
    text-decoration: none;
    text-align: center;
    display: block;
}

.header-nav {
 margin-left: auto;
}

.header-nav>ul {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    height: 100%;
}



.header-nav>ul>li:hover .main,
.header-nav>ul>li:hover .en,
.header-nav>ul>li:hover .plus {
    color: #999;
    transition: color 0.3s ease;
}

/* .header-nav>ul>li:last-child {
    /* border-right: 1px solid #d1d8e0; */
 
.header-nav ul {
    display: flex;
    align-items: center;
    justify-content: space-around; 
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-nav>ul>li {
    border-left: none;
    width: auto;     
    padding: 0 2vw; 
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    white-space: nowrap; 
}



.header-nav a {
    text-align: center;
    text-decoration: none;
    line-height: 1.6;
}

.header-nav ul>li .main {
    display: block;
    font-weight: bold;
    color: #034382;
    margin-bottom: 1px;
    font-size: 1.3vw;
    letter-spacing: 0.1em;
}

.header-nav ul>li .en {
    display: block;
    color: #999;
    font-size: 0.9vw;
    letter-spacing: 0.2em;
}


/* --------------------------ボタン------------------------ */
.header-btns {
    display: flex;
    height: 100%;
    align-items: center;
    padding: 0;
}

.header-btns a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 1.2vw;
    text-align: center;
    transition: opacity 0.3s;
    letter-spacing: 1px;
   
}

.header-btns a:hover {
    opacity: 0.8;
}

.header-btns .btn-reservation {
 flex-direction: row !important;
    align-items: center;
    justify-content: space-between;
    background: rgba(168, 106, 106, 0.9);
     color: #fff;
     padding: 0.9vw 1.3vw ;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    line-height: 1px;  
    margin:  0 1.5vw 0 2vw;
               
}

.header-btns .btn-reservation::after {
 content: "→";
    display: flex;
    align-items: center;
    justify-content: center;
         
    width: 2vw;
    height: 1.5vw;
    background: #fff;       
    color: #a86a6a;       
 border-radius: 50px;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-left: 1vw;
}



.header-btns .btn-requirement {
  flex-direction: row !important;
    align-items: center;
    justify-content: space-between;
    
    background: rgba(27, 99, 235, 0.9);
     color: #fff;
     padding: 0.9vw 1.3vw ;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    line-height: 1px;  
               
}

.header-btns .btn-requirement::after {
    content: "→";
    display: flex;
    align-items: center;
    justify-content: center;
         
    width: 2vw;
    height: 1.5vw;
    background: #fff;     
    color: #1b63ebe6;   
  border-radius: 50px;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-left: 1vw;
}

/* .header-btns .btn-mypage { */


/* * background: #00897b; } */

.header-btns .btn-entry span {
    font-size: 2rem;
    font-weight: 400;
}

.header-nav .main {
    font-size: 1.9rem;
}

.header-nav .en {
    font-size: 1.1rem;
}

.menu-trigger {
    display: none;
}

.sp-nav {
    display: none;
}


/* --------------------------ドロップダウン------------------------- */

.header-nav ul li .dropdown-menu {
    display: flex !important; 
    flex-direction: column !important; 
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    
    background: rgb(244, 247, 250);

    
    list-style: none;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 8px; 
    padding:  0;
    box-sizing: border-box; /* ensure padding counted in width */
}


.header-nav > ul > li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto; 
    top: 100%;
}


.header-nav ul li .dropdown-menu li {
    display: block !important;
    width: 150px !important;
    margin: 0 auto!important;
}

.header-nav ul li .dropdown-menu li a {
    display: block !important;
    width: 100% !important;
    padding: 1.2vw 1.5vw !important; 
    font-size: 1.2vw;
    color: #034382;
    text-align: center;
    text-decoration: none;
      border-bottom: 1px solid #fff; 
    white-space: nowrap;
       border-radius: 8px; 
       font-weight: bold;

}


.header-nav ul li .dropdown-menu li a:hover {
    background: #e1ebff !important;
}


.header-nav ul li .dropdown-menu li:last-child a {
    border-bottom: none !important;
  
}

/* ---------------------------タブレット・スマホサイズ------------------------- */




@media screen and (max-width: 768px) {
    .header-title a {
    font-size: 2.4vh;
}

.site-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        margin: 0;
        z-index: 10000;

    }
     
    .header-inner {
        height: 10vh !important; 
        width: 100%;
        border-radius: 0;
        align-items: center !important;
        padding: 0 5vw;
    }

    .header-nav,
    .header-btns {
        display: none;
    }
 
    .menu-trigger {
        top: 0;
        display: block;
        position: relative;
        width: 30px;
      
        height: 22px;
       
        cursor: pointer;
        z-index: 10002;
    }
    .menu-trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: #034382;
        transition: 0.3s;
    }
    .menu-trigger span:nth-child(1) {
        top: 0;
    }
    .menu-trigger span:nth-child(2) {
        top: 10px;
    }
    .menu-trigger span:nth-child(3) {
        bottom: 0;
    }
    .menu-trigger.is-active span:nth-child(1) {
        top: 10px !important;
        transform: rotate(45deg) !important;
        background: #034382;
    }
    .menu-trigger.is-active span:nth-child(2) {
        opacity: 0 !important;
    }
    .menu-trigger.is-active span:nth-child(3) {
        top: 10px !important;
        transform: rotate(-45deg) !important;
        background: #034382;
    }
    .sp-nav {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 9999;
        padding: 14vh 5vh 10vh;
        overflow-y: auto;
        margin-bottom: 0;
        visibility: hidden;
        overflow-y: auto;
        opacity: 0;         
        visibility: hidden; 
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .sp-nav.is-active {
        visibility: visible;
        opacity: 1;
    }
    .sp-nav ul {
        list-style: none;
        padding: 0;
        padding-bottom: 5vh;
    }
    .sp-nav-category a {
        display: flex;
        flex-direction: column;
        text-decoration: none;
        border-bottom: 2px solid #034382;
        margin-bottom: 2vw;
        width: 100%;
        padding: 1vw 0;
        font-weight: 800;
    }
    .sp-nav-category .main {
        font-size: 2.5vh;
        font-weight: bold;
        color: #034382;
         letter-spacing: 0.1em;
    }
    .sp-nav-category .en {
        font-size: 1.8vh;
        color: #999;
        letter-spacing: 0.1em;
        margin-left: 1px;
       
    }
    .sp-nav-child {
        padding-left: 10px;
    }
    .sp-nav-child li {
        margin-bottom: 0 !important;
        border-bottom: 1px solid #eee;
        padding: 15px 2vh;
    }
    .sp-nav-child li a {
        font-size: 2.3vh !important;
       
        color: #333 !important;
        
        display: block;
        position: relative;
      
        font-weight: bold;
    }
   
    .sp-nav-item:last-child {
        margin-bottom: 50px;
    }
    .toggle-icon {
        position: relative;
        width: 16px;
        height: 16px;
    }
    .toggle-icon::before,
    .toggle-icon::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 2px;
        background-color: #034382;
        transform: translate(-50%, -50%);
        transition: all 0.3s ease;
    }
    .toggle-icon::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }
    .sp-nav-item.is-open .toggle-icon::after {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    .header-inner {
        position: relative;
        z-index: 10000;
   
    }

    .header-inner { height: 10vw; width: 100%; border-radius: 0; }
    .header-nav, .header-btns { display: none; }
}



/* --------------------------【３】side-navigation--------------------------> */
.side-navigation {
    position: fixed;
    right: 0;
    top: 55%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px; 
}

.side-btn {
    display: flex;
    writing-mode: vertical-rl; 
    text-orientation: upright;
    padding: 20px 10px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2vw;
    letter-spacing: 0.2em;
    border-radius: 10px 0 0 10px; 
    box-shadow: -2px 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    align-items: center;
    border: 2px solid #fff; 
    border-right: none;
}

.side-btn:hover {
    padding-right: 20px; 
    filter: brightness(1.1);
}

.side-btn.reservation {
    background: #a86a6a;
}

.side-btn.entry {
    background: #4169e1;
}


@media screen and (max-width: 767px) {
    .side-navigation {
        display: none !important;
    }
}


/* ----------------------------------------------------------------
-------------------------【４】＜MAIN VISUAL＞--------------------------- 
-------------------------------------------------------------------*/


.main-visual-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: rgb(3, 67, 130,0.9);
    height: 55vw;
    margin-top: 0; 
    padding-top: 0;
    -webkit-mask-image: linear-gradient(to bottom, black 97%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 97%, transparent 100%);
}
    

.main-visual-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 53%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    object-position:80%;
}

.mv-main-box {
 position: absolute;
    top: 22%;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: slideInLeft 1.2s ease-out forwards;
}

.mv-title {
    font-size: 3.6vw;
    color: #fff;
    font-weight: 800;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.1em;
}



.mv-title span {
    display: block;
    margin-bottom: 5px;
    background: none !important;
    padding: 0 !important;
   
}

.mv-title span::before {
    display: none;
}

.mv-info {
    background: rgb(255, 255, 255,0.9);
    
    padding:0.1vw 1vw  1.1vw;
    color: #034382;
    font-size:2vw;
    backdrop-filter: blur(5px);
    border-radius: 4px;
    margin: 4vw auto ;
    font-weight: bold;
    border-right: 3px solid  #a74646;
    border-bottom: 3px solid   #a74646;
}

.mv-info .text-red {
    color:   #a74646;
 font-size:2vw;
}

.text-red-number {
    color:   #a74646;
    font-size:2.5vw;
}

.mv-btn-area {
    position: relative;
    z-index: 10;
    text-align: center;
}

.mv-btn {
    background:  #1b63ebe6;   
    border-radius: 5px;
    padding: 1.1vw 2vw;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    border: 1px solid #fff;
}

.mv-btn:hover {
    transform: translateY(-5px);
    background:  rgba(101, 150, 240, 0.6); 
    opacity: 1;
}

.mv-btn::after {
    content: "→";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2vw;
    height: 2vw;
    background: #fff;     
    color: #1b63ebe6;   
  border-radius: 50px;
    font-size: 1.5vw;
    flex-shrink: 0;
    margin-left: 1vw;
}

.btn-text {
    font-size: 1.8vw;
    color: #fff;
    letter-spacing: 0.1em;
}

.btn-text-small {
    font-size: 1.5vw;
    margin-left: 10px;
    font-weight: bold;
}
.sp-only-info{
    display: none;
}

/* .foundation-section {
    width: 100vw;
    height: 100vw;
    margin: 200px auto -50vw;
    background: radial-gradient(circle at top center, 
        rgba(30, 144, 255, 0.8) 0%, 
        rgba(135, 206, 250, 0.4) 40%, 
        rgba(255, 255, 255, 0) 80%
    );
    border-radius: 50%;
} */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-110px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeftSP {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

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



@media screen and (max-width: 768px) {
   
    .main-visual-container {
        height:90svh !important;
        display: block !important; 
        position: relative !important;
        background: #000; 
        mask-image: none !important;
        -webkit-mask-image: none !important;
    }

    
    .main-visual-img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        clip-path: none !important;
        z-index: 1 !important;
        opacity: 1 !important; 
    }

    
    .mv-content-overlay {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex !important;
        align-items: flex-end !important; 
        justify-content: flex-start !important;

        z-index: 10 !important;
        padding-bottom: 110px; 
    }

 
    .mv-main-box {
        position: relative !important;
        width: 85% !important; 
        background: rgba(3, 67, 130, 0.75) !important;
        backdrop-filter: blur(5px); 
        padding: 2vh 0!important;
        text-align: center !important;
        border-radius: 10px; 
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        margin: 0 auto;
        animation: slideInUp 1.2s ease-out forwards;
    }

   
    .mv-title {
        font-size: 3.5vh !important; 
        
      
    }

        .mv-info {
                font-size: 1.7rem !important;
                width: 75% !important;
                letter-spacing: 1px;
            margin: 1vh 0;
            padding: 5px 0;
            display: inline-block;
            line-height: 1.4;
             border-right: 2px solid  #a74646;
    border-bottom:2px solid   #a74646;
}
        


    .sp-only-info{
        display: block !important;
    }

    .text-red-number {
        font-size: 1.9rem;
    }
     .mv-info .text-red {
        font-size:1.7rem;
}

   .btn-text {
    font-size: 1.5rem;
         line-height: 1.4;
    
       
    
}

.btn-text-small {
    font-size: 1.5rem;
   
}

.mv-btn {
    border-radius: 10px;
    padding: 5px 10px;
     margin: 2px 0;

}

.mv-btn::after {
    width: 3vh;
    height: 3vh;
  
    font-size: 2vh;
   
    margin-left: 1vh;
}

}

/* --------------------------------------------------------------
--------------------------【５】2026年度 奨学生募集---------------------
---------------------------------------------------------------*/
.scholarship-intro {
    position: relative;
    z-index: 10;
    margin: 5vw auto ;
    text-align: center;
   
}

.intro-label {
    display: inline-block;
    background-color: #034382;
    color: #ffffff;
    padding: 1vw 3.5vw;
    font-size: 1.7vw;
    position: relative;
    border-radius: 0;
    transform: skewX(-15deg);
    border: none;
    font-weight: bold;
        letter-spacing: 0.2em;
}

.intro-label span {
    display: inline-block;
    transform: skewX(15deg);
}

.intro-title {
    text-align: center;
    font-size: 1.8vw;
    color: #1C2C43;
    margin: 3.5vw auto ;
    width: 90%;
    letter-spacing: 0.1em;
    font-weight: bold;
}

.intro-title .big-number {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 4px;
    line-height: 1;
     color: #a74646;
    
}
.intro-title .big {
    font-size: 1.2em;
    font-weight: bold;
    margin: 0 4px;
    line-height: 1;
    color: #a74646;
    
}

.intro-cards .red{
    color: #a74646;
    
}

.intro-cards .red-number{
    color: #a74646;
    font-size: 1.4em;
}


.intro-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    gap: 15px;
    margin: 3.5vw auto 0;
    width: 75%;
}

.card-price.growth {
    padding-top: 7px;
}

.card {
    position: relative;
    padding:  0;
    border: 2px solid #034382;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    height: 21vw;
}

/* .card:hover {
    box-shadow: 0 20px 40px rgba(3, 67, 130, 0.5);
} */

.card-label {
    position: static;
    transform: none;
    width: 100%;
    background-color: #034382;
    color: #ffffff;
    font-size: 1.6vw;
    font-weight: bold;
   padding: 0.5vw;
    margin:0 auto ;
    letter-spacing: 0.5rem;
}

.card-icon-intro {
    width: 50%;
    height: auto;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items:center;
    justify-content: center;
}

.card:nth-child(4) .card-icon-intro img {
    transform: scale(1.1);
}

.card-icon-intro img {
    height: 5vw;
    width: auto;
    object-fit: contain;
}

.intro-detail{
    font-size: 1.4vw;
    margin: 3vw auto;
    text-align: left;
    width: 75%;
   
}

.card-price {
    font-size: 1.6vw;
    font-weight: bold;
    color: #1C2C43;
    margin-bottom: 2px;
    font-weight: bold;

     margin:1vw 0 0.5vw;
}

.card-price-text {
    font-size: 1.6vw;
    font-weight: bold;
    color: #1C2C43;
    margin:1.5vw 0 0.5vw;
    font-weight: bold;
    padding:   5px;
}

.card-sub {
    font-size: 1.2vw;
    color: #3e3d3d;
    font-weight: bold;
}

.sp-only-title,
.sp-only-label,
.sp-only-intro,
.sp-only-price {
    display: none;
}


@media screen and (max-width: 768px) {
    .scholarship-intro {
        margin: 30px auto;
      
    }
    .sp-only-intro{
        display: inline;
    }

    .intro-label {
        font-size: 1.8rem;
        padding: 1vh 3vh;
        margin: 2vh auto 0 ;
       
    }
    .intro-title {
        font-size: 1.7rem;
        margin: 3vh auto ;
           line-height: 1.7;
      
    }
    .intro-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 12px; 
        width:90%;
     
       
    
    }

    .card {
        padding: 0 0 3vh;
    }

    .intro-cards::-webkit-scrollbar {
        display: none;
    }

    .card {
        width: 100%;
        flex: none;
        height: auto;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: space-between; /* 上部にラベル、下部にアイコンを配置して中央に価格等を寄せる */
        align-items: center;
    }


.card-icon-intro img {
  display: none;
}
.card-icon-intro {
    display: none;
}



    .card-label {
        font-size: 2.5vh;
        padding: 1vw 0;
    }
  
   
  
    .card-price {
        font-size: 2.5vh;
        font-weight: bold;
        text-align: center;
        
    }

    .card-price-text {
    font-size: 2.4vh;
   
}
    .card-sub {
        font-size: 1.9vh;
        text-align: center;
    }
    .sp-only-title {
        display: block;
    }

    .intro-detail{
    font-size: 1.7vh;
   margin: 3.5vh auto;
    width: 90%;

   
}
}


/* -------------------------------------------------------------
--------------------------【６】trouble-section-----------------------
--------------------------------------------------------------*/
.trouble-section {
    background-color: rgba(224, 224, 224, 0.6); 
    position: relative;
    text-align: center;
    margin: 5vw auto ;
    padding: 5vw 0 6vw; 
    width: 100%;
}
.check-icon {
    width: 2.5vw;
    height: 2.5vw;
    background-color: #949393;
    position: relative;
    margin-right: 1.5vw;
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.check-icon::after {
    content: "";
    width: 20%;
    height: 50%;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    display: block;
}

.trouble-title {
    display: inline;
    position: relative;
    color: #1C2C43;
    font-size: 2vw;
    font-weight: bold;
    letter-spacing: 0.2em;
    line-height: 1.7;
    /* background: linear-gradient(transparent 5%, #cad3d6 10%); */
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.trouble-boxes {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 1vw auto ;
}



.trouble-card {
    display: flex;     
    align-items: center;
    width: 100%;
    font-size: 1.5vw;
    color: #333;
    text-align: left; 
    padding: 7px 0;
    font-weight: 800;
    
}

.trouble-title .red {
    color: #a74646;
    font-weight: bold;
}

.trouble-flex {
    display: flex;
    align-items: center; 
    justify-content: center;
    width:80%;
    margin: 2vw auto ;
    position: relative;
    background-color: rgb(255, 255, 255);
    padding: 3vw ;
    border-radius: 10px;
}


.trouble-flex::after {
    content: "";
    position: absolute;
    bottom: -20%; 
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 17px solid transparent;
    border-right: 17px solid transparent;
    border-top: 17px solid #1C2C43;
    animation: bounce 2s infinite; 
    z-index: 20;
    margin: 0 auto;
   
}



.people-img-wrapper img {
    display: block;
    width: 30vw;
    height: auto;
    margin: 10px ;
}


@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(15px);
    }
    60% {
        transform: translateY(7px);
    }
}




@media screen and (max-width: 768px) {
  
    .trouble-section {
    padding: 4vh 0 7vh; 
 
    
}

    .trouble-title {
        font-size: 1.8rem;
        letter-spacing: 0.4em;
      
      line-height: 1.7;
    }

    .trouble-flex {
    width: 90%;
    margin: 3vh auto ;
    padding: 2vw ;
    flex-direction: column;
    gap: 2vw;
 
}
   
.check-icon {
    width: 3vw;
    height: 3vw;
   
}
.check-icon::after {
   

    border-width: 0 1px 1px 0;

}
    .trouble-boxes {
        gap: 5px;
        margin: 2vw auto ;
        justify-content: center;
        
    }
    .trouble-card {
        font-size: 2.2vh;
      
    }

    .people-img-wrapper img {
     width: 30vh;
   
}

 
}


/* -------------------------------------------------------------
--------------------------【７】６つの特徴-------------------
-------------------------------------------------------------*/

.scholarship-all {
   position: relative;
    width: 100%;
    z-index: 10;
}
.sp-only-trouble{
    display: none;
}

.scholarship-section {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 10;
    padding: 0 0 40px 0;
    
    margin: 0 auto;
}

.title-unit {
    position: relative;
    text-align: center;
}

.detail-menu-section .jp-title {
    margin: 20px 0 0;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.scholarship-header .en-title {
    font-size: 4vw;
    color: var(--primary-gray);
    letter-spacing: 0.1em;
    display: block;
    line-height: 1;
    margin-top: 50px;
}

.scholarship-header .jp-title {
    font-size: 2vw;
    color: #034382;
    position: relative;
    z-index: 2;
   
    font-weight: bold;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
   
    margin-top: 10px;
}

.header-bubble {
    display: block;
    margin: 4vw auto  3vw;
    padding: 20px;
    position: relative;
    text-align: center;
}

.header-bubble p {
    font-size: 1.9vw;
    color: #fff;;
    font-weight: bold;
    
}

.header-bubble p {
    position: relative;
    display: inline-block;
    padding: 0.8em 2em; 
}

.header-bubble p::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-2deg);
    width: 100%;
    height: 100%;
    background-color: #0076d6;
    z-index: -1;
    border-radius: 4px;
    clip-path: polygon(2% 5%, 98% 2%, 100% 95%, 95% 98%, 5% 100%, 0% 90%, 3% 50%);
}
/* 
.header-bubble p::before {
    content: "";
    position: absolute;
    top: 50%;
    right :20vw;

    width: 4%; 
    height: 2px;
    background-color: #1C2C43;
    transform: translateY(-50%) rotate(135deg); 
}


.header-bubble p::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 20vw;
    width: 4vw; 
    height: 2px; 
    background-color: #1C2C43;
    transform: translateY(-50%) rotate(45deg); 
} */

.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto 5vw;
    width: 70%;
}

.safety-card {
    background: rgb(255, 255, 255, 0.4);
    border: 1px solid #999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin-bottom: 0.5vw;
    padding: 1vw auto;
    position: relative;
    align-items: center;
    text-align: left;
    border-radius: 10px;
}


.card-num {
    display: inline-block;
    position: relative;
    color: #fff;
    font-weight: bold;
    font-size: 1.5vw;
    padding: 0.5vw 2vw;
    background: rgb(0, 118, 214,0.9);
    clip-path: polygon( 2% 5%, 98% 2%, 100% 95%, 95% 98%, 5% 100%, 0% 90%, 3% 50%);
    transform: rotate(-2deg);
    line-height: 1.4;
    left: -6vw;
    z-index: 10;
    margin: 1vw 0 0;
}

.card-icon {
    width: 7vw;
    height: 7vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1vw;
    
}

.card-icon img {
    object-fit: contain;
}

.card-text {
    font-size: 1.4vw;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.highlight {
    color: #a74646;
    font-size: 1.4em;
}

@media screen and (max-width: 768px) {

    .sp-only-trouble{
        display: inline;

    }
   
    .scholarship-header .en-title {
        font-size: 5vh;

       
    }
    .scholarship-header .jp-title {
        font-size: 3vh;
    }
    
    .header-bubble p {
        font-size: 2.5vh;
       
        
    }



.header-bubble p::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-2deg);
    width: 100%;
    height: 100%;
    background-color: #0076d6;
    z-index: -1;
    border-radius: 4px;
    clip-path: polygon(2% 5%, 98% 2%, 100% 95%, 95% 98%, 5% 100%, 0% 90%, 3% 50%);
}
/*
.header-bubble p::before {
    display: none;

}


.header-bubble p::after {
   display: none;
} */
.safety-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
    padding: 0;
    gap:1vh;
    width: 100%;
    margin: 1vh auto  4vh;
  
}

.safety-card {
    flex: 0 0 calc(47% - 6px);
  
    width: calc(47% - 6px);

   
}


.card-icon {
    width:10vh;
    height: 10vh;
    margin: 0 0 2vh;
}
    .card-num {
    font-size: 2.3vh;
    margin: 1vh 0;
    left: -5vh;
    padding: 1vh 2vh;

}
  
    .card-text {
        font-size: 1.9vh;
        margin: 0;
    }
   
}


/* ---------------------------------------------------------
----------------------【８】成長を支える３つのステップ------------------
-------------------------------------------------------------*/
.future-section {
    width: 100%;
    position: relative;
    margin-top: 3vw;
}

.future-bubble-inner {
    width: 90%;
   margin: 0 0 6vw auto;
    background: linear-gradient(180deg, rgba(220, 228, 250, 0.4) 0%, rgba(163, 198, 250, 0.6) 100%);
    box-shadow: 0 5px 5px rgba(163, 198, 250, 0.5);
    border-radius: 10px 0 0 10px;
    padding: 0 0 2vw  ;
    position: relative;
}

.marker-title {
    display: inline-block; 
    position: relative;
    z-index: 1;
    font-size: 1.8vw;
    color: #fff;
    font-weight: bold;
    padding: 1vw 4vw; 
    margin: 3vw 3vw 5vw 4vw;
}

.marker-title::before {
    content: "";
    position: absolute;

    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0076d6;
    z-index: -1; 
    transform: rotate(-2deg);
    border-radius: 2px;
    clip-path: polygon(2% 5%, 98% 2%, 100% 95%, 95% 98%, 5% 100%, 0% 90%, 3% 50%);
}

.step-container {
    position: relative;
    margin: 0   auto  ;
}

.mountain-img {
    width: 45%;
    height: auto;
    padding: 0.5vw 0;
    margin: 0 auto  1vw 20vw;
}

.step-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    border: 0.1vw solid #034382;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #363636;
    padding: 10px 15px;
    border-radius: 5px;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
     transition: all 0.3s ease;
}


.step-bubble p {
    font-size: 1.6vw;
    font-weight: bold;
}


.step-num {
    font-size: 1vw;
    background-color: #034382;
    color: #fff;
    padding:  3px 8px;
    border-radius: 5px;
    margin-bottom: 0;
    letter-spacing: 0.1em;
    font-weight: bold;
}

.bubble-01 {
    bottom: 10%;
    left: 40%;
}

.bubble-02 {
    bottom: 40%;
    left: 50%;
}

.bubble-03 {
    top: 10%;
    left: 60%;
}


@media screen and (max-width: 768px) {
   


.future-bubble-inner {
    width: 100%;
    padding: 2vh 0 2vh 0;
    border-radius: 0;
 
}

    .marker-title {
        font-size: 2.5vh;
        padding: 1.5vh 3vh;
        margin: 3vh 2vh  6vh;
}

.mountain-img {
    width: 85%;
    margin: 0 auto 2vh;
}


.step-bubble p {
    font-size: 1.8vh;
  
}


.step-num {
    font-size: 1.5vh;

}
    .step-bubble {

        box-sizing: border-box;
        max-width: none !important;
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 5px !important;
    }

    .bubble-01 {
        bottom: 1%;
        left: 15%;
    }

    .bubble-02 {
        bottom: 35%;
        left: 30%;

    }

    .bubble-03 {
        bottom: 70%;
        left: 40%;
        
    }


.future-bubble-inner {
   margin: 0 0 0.8vw auto;
    
}}


/* ------------------【９】フォローアップ支援制度-------------------*/
.future-bubble-inner-follow {
    width: 90%;
    background: linear-gradient(180deg, rgba(220, 228, 250, 0.4) 0%, rgba(163, 204, 250, 0.5) 100%);
    box-shadow: 0 5px 5px rgba(3, 67, 130, 0.15);
 
    padding: 70px;
    position: relative;
    margin: 0 auto 5vw 0 ;
    border-radius: 0 10px 10px 0; 
    padding: 1vw 0 1vw 0;
    position: relative;
    
   
}

.follow-up-grid {
    display: flex;
    justify-content: center;
    margin: 0 2vw 3vw 0 ;
    text-align: center;

}

.follow-up-grid p {
    font-size: 1.6vw;
    font-weight: bold;
    text-align: center;
    line-height: 1.8;

   
}

.follow-up-item {
    max-width: 25vw;
    flex: 1;
    color: #034382;

  
      
}

.follow-up-img {
    width: 70%;
    aspect-ratio: 1/1;
    overflow: hidden;
    margin: 0 auto 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* .follow-up-img:hover {
    box-shadow: 0 20px 40px rgba(3, 67, 130, 0.5);
    transform: translateY(-3px);
} */

.follow-up-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
    .future-bubble-inner-follow {
  width: 100%;
    padding: 2vh 0 ;
    border-radius: 0;
}

.follow-up-img {
    width: 90%;
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    
}

.follow-up-grid {
    display: flex;
    justify-content: center;

    text-align: center;
    margin: 0 auto;

}
    .follow-up-section {
        padding: 10vh 0 4vh;
      
    }
    
 
    .follow-up-grid p {
        font-size: 1.8vh;
        margin: 2vh auto;
     
        
    }
    
    .follow-up-grid {
    gap:1vh;
    

}

.follow-up-item {
    max-width: 15vh;
   margin: 1vh 0 ;
      
}

 
}


/* ----------------------【１０】FAQ------------------------------*/


.faq-blue-card {
    flex-direction: column;
    gap: 20px;
    padding: 30px 0;
    box-sizing: border-box;
    align-items: center;
    margin: 0 auto ;
}


.faq-list {
    flex: 1;
    width: 70%;
    margin: 3vw auto ;
}

.faq-item {
    background-color: #fff;
    border-radius: 12px;
    margin: 2vw;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);

}

.faq-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 2vw 5vw;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.7vw;
    font-weight: bold;
    color: #333;
}

.faq-header-center {
    text-align: center;
    margin-bottom: 20px;
}



.faq-header-center .en-bg {
     font-size: 4vw;
    color: var(--primary-gray);
    line-height: 1;
    letter-spacing: 0.1em;
}

.faq-header-center .section-title {
   font-size: 2vw;
    color: #034382;
    margin: 10px;
}

.q-icon {
    color: #034382;
    font-size: 2vw;
    margin: 0 2vw 0 1vw;
}

.faq-answer {
    display: none;
    background-color: #fff;
}

.answer-inner {
    padding: 0 2vw 2vw 6vw;
     font-size: 1.7vw;
    line-height: 1.6;
}

.faq-icon {
    margin-left: auto;
    width: 20px;
    height: 20px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: #034382;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::before {
    width: 100%;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 100%;
    transition: 0.3s;
}

.faq-item.is-open .faq-icon::after {
    opacity: 0;
}

@media screen and (max-width: 768px) {
    .faq-section {
        margin: 0 auto 30px;
        width: 95%;
    }
    .faq-blue-card {
        padding: 30px 5px 0;
        gap: 10px;
        width: 100%;
        margin: 0 auto 2vw; 
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .faq-header-center {
        margin:  2vw auto ;
        text-align: center;
    }
    .faq-header-center .en-bg {
         font-size: 5vh;
        line-height: 0.5;
    }
    .faq-header-center .section-title {
        font-size: 3vh;
        margin: 5px;
    }

    
    
    .faq-list {
        width: 95%;
       
    }
    .faq-question {
        font-size: 1.8vh;
        line-height: 1;
        padding: 20px 10px;
    }
    .answer-inner {
        padding: 10px;
        font-size: 1.8vh;
        text-align: left;
    }
    .q-icon {
        font-size: 4vw;
        margin-left: 2%;
    }
    .faq-icon {
        flex-shrink: 0;
        margin-left: auto;
        width: 10px;
        height: 10px;
    }
    .faq-icon::before {
        width: 100%;
        height: 2px;
    }
    .faq-icon::after {
        width: 2px;
        height: 100%;
    }
}


/* ---------------------------------------------------------
--------------------------【１１】財団を知る------------------------
-------------------------------------------------------------*/

.foundation-section {
    margin: 5vw auto ;
    background: linear-gradient(20deg, #ffffff 0%, rgba(165, 187, 247, 0.4) 80%);
  box-shadow: 0 10px 10px rgba(236, 240, 251, 0.1), 0 10px 20px rgba(240, 239, 239, 0.05);
  padding: 5vw 0;
 
 
}

.section-header {
    position: relative;
    text-align: center;
     
}

.section-header .en-bg {
    font-size: 4vw;
    color: #999;
    letter-spacing: 0.1em;
    display: block;
    line-height: 1;
}

.section-header .section-title {
    font-size:2vw;
    color: #034382;
    position: relative;
    z-index: 2;
} 
@media screen and (max-width: 768px) {

    .foundation-section {
    margin: 10vh auto 5vh;
   
  
    
 
}

 .section-header .en-bg {
    margin: 1vh 0 1vh;
        font-size: 5vh;
       
    }
.section-header .section-title {
        font-size: 3vh;
    }
    
    .section-header {
    margin: 2vh 0 2vh;
    padding-top: 0.5vh;
     
}


}


/* -----------------------【１２】代表メッセージ-----------------------------*/

.message-container {
    padding: 10px;
    position: relative;
 width: 85%;
 margin: 0 auto;
}

.message-header {
    position: relative;
    padding-left: 5rem;
    color: #333;
    font-size: 2vw;
    margin: 1vw 0;
    font-weight: bold;
}

.message-header::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 70%;
    background: linear-gradient(180deg, var(--btn-blue) 0%, #1b63eb 60%);
    border-radius: 4px;
 
}


.message-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 90%;
    margin: 70px auto ;
 
}

.message-img {
    flex: 0 0 42%;
}

.message-img img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 15px 15px 0 rgba(3, 67, 130, 0.1);
}

.message-text {
    flex: 1;
}

.message-title {
    font-size: 1.9vw;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #034382;
    font-weight: bold;
}

.message-desc {
    font-size: 1.3vw;
    display: block;
    font-weight: bold;
    line-height: 2.2;
}

.message-container .view-more-area {
    text-align: center;
}

@media screen and (max-width: 768px) {

.message-container {
   
 width: 100%;


}

    .message-header {

        font-size: 2.7vh;
        text-align: center;
        margin: 3vh auto 5vh;
       padding-left: 0;
       
       

    }

    .message-header::before {
        display: none;
        
    }


    .message-content {
       
        margin: 0 auto 0;
        flex-direction: column-reverse;}
        
    .message-title {
        font-size: 2.5vh;
        line-height: 1.2;
        margin-bottom: 3vh;
        
    }
    .message-img img {
        width: 85%;
        margin: 0 auto 5vh;
        height: auto;
        border-radius: 15px;
        box-shadow: 15px 15px 0 rgba(3, 67, 130, 0.1);
    }
    .message-img {
        flex: 0;
        margin-bottom: 20px;
    }
    .message-text {
        text-align: center;
        flex: 1;
       
    }
    .message-desc {
        font-size: 2.1vh;
        line-height: 2;
    }
    .message-desc .pc-only-message {
        display: none;
    }
}

/* --------------------------【1２】NEWS-----------------------------*/

.news-container {
    position: relative;
    margin: 4vw auto;
    padding: 2vw 0 ;
}


.news-box {
     border-top: 1px solid #034382; 
    margin: 30px auto 0;
    width: 75%;
    
}


.news-list li:last-child {
    border-bottom: none;
}

.news-list {
    list-style: none;
    padding: 0;
   
    margin: 0 auto;
    transition: all 0.3s ease; 
   
}

/* 
.news-list:hover {
    background-color: rgba(234, 244, 255, 0.6); 
} */

.news-list li {
    padding: 1.5vw 2vw;
    display: flex;
   flex-direction: row;
   gap: 3vw;
    align-items: flex-start;
    position: relative;
    border-bottom: 1px solid #dfdede;
    transition: background-color 0.3s;
    
}

.news-list li:last-child {
    border-bottom: none;
}

.news-list .date {
    flex-shrink: 0;
    padding-top: 0.1vw;
    width: 8vw;
    font-size: 1.3vw; 
    color: #666;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.05em;
}

.news-list .text {
    font-size: 1.3vw; 
    color: #333;
    padding-right: 4vw; 
    line-height: 1.6;
    flex: 1;
 
}
/* 
.news-list li::after {
    content: "→";
    position: absolute;
    right: 2vw;
    top: 50%;
    transform: translateY(-50%);
    color: #034382;
    font-weight: bold;
    font-size: 1.8vw;
} */
.news-container .view-more-area {
    margin: 2vw 0 ;
  
   
   
}


@media screen and (max-width: 768px) {
    .news-list li {
        flex-direction: column;
        align-items: flex-start; 
        gap: 5px;
        padding: 2vh 0; 
        position: relative;
        width: 100%;
    }

    .news-box {
        width: 95%;
        margin: 0 auto;
        padding: 0 4%;
        box-sizing: border-box;
    }
    

    .news-container{
        margin-bottom: 5vh;
        padding: 0;

    }

    .news-list .date {
        font-size: 2.2vh;
        flex: 0 0 auto;
        width: auto;
        text-align: left;
    }

    .news-list .text {
        font-size: 2.2vh;
        width: 100%;
        text-align: left;
        padding-right: 0;
       
    }

    .news-list li::after {
        position: absolute;
        right: 3vw;
        top: 50%;
        transform: translateY(-50%);
        font-size: 5vw;
        margin-left: 0;
    }


    .news-container .view-more-area {
    margin: 4vh 0 ;
    text-align: center;
 
   
}
}


/* --------------------------【1３】ENTRY-----------------------------*/

.entry-container {
   width: 100%;
    margin: 0 auto;
    padding: 5vw 0;
      background: #034382;
      
    }
  

.entry-btns {
    display: flex;
    justify-content: center;
    gap: 8vw;
}

.btn-entry {
    display: flex;
    justify-content: center;
    align-items: center;
    padding:  1.5vw 5vw;
    color: #fff !important;
    font-weight: bold;
    font-size: 1.5vw;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-entry.reserve {
    background-color: rgba(168, 106, 106, 0.9);
    border: 2px solid #fff;
}

.btn-entry.entry {
    background-color: rgba(27, 99, 235, 0.9);
    border: 2px solid #fff;
}

.arrow-tri-entry {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 0 7px 10px;
    border-color: transparent transparent transparent #fff;
    margin-left: 15px;
}

.btn-entry {
    transition: all 0.3s ease;
}

.btn-entry:hover {
    opacity: 0.8;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {

    .entry-btns {
        flex-direction: column;
        align-items: center;
        gap: 5vh;
    }
    .btn-entry {
        padding:  3vh;
        font-size: 2vh;
        width: 60%;
      
    }
    .entry-container {
       
        padding: 10vh 0 3vh;
    }
}


/* -------------------【14】スマホ用固定ナビ------------------- */

.sp-fixed-nav {
    display: none;
}


@media screen and (max-width:768px) {
    .sp-fixed-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 8vh;
        z-index: 9000;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    }
    .nav-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
        font-size: 2.5vh;
        font-weight: bold;
        text-align: center;
        line-height: 1.2;
        border-radius: 10px ; 
        box-shadow: -2px 5px 15px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        align-items: center;
      
  
    }
    .nav-btn.reserve {
        background-color: rgb(168, 106, 106,0.9);
       border: 1px solid #fff; 

    }
    .nav-btn.entry {
        background-color: rgb(65, 105, 225,0.9);
        border: 1px solid #fff; 
    }

    .nav-btn:active,
    .nav-btn:hover {
        filter: brightness(1.2);
    }
}


/* --------------------------------------------------------
--------------------------【15】フッター------------------------
----------------------------------------------------------*/

.main-footer {
    padding: 40px 0;
    background: #034382;
}

.footer-inner {
    width: 85%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 0;
    flex-wrap: wrap;
}

.footer-logo {
    text-align: left;
    color: #fff;
    font-weight: bold;
}

.footer-copy-text {
    font-size: 1.9vw;
    font-weight: bold;
}

.footer-foundation-name {
    font-size: 1.5vw;
    margin: 10px;
}

.footer-nav {
    display: flex;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: 7%;
}

.footer-nav>ul {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 5vw;
    list-style: none;
}

.footer-sub-links {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
    justify-content: center;
    gap: 25vw; 
}

.footer-sub-links a {
    color: #fff;
    font-size: 1.2rem; 
    text-decoration: none;
   
    transition: opacity 0.3s;
}

.footer-sub-links a:hover {
    opacity: 1; 
   
}
.footer-bottom {
    width: 100%;
    justify-content: flex-start;
}

.footer-nav ul li {
    position: relative;
}

.footer-nav ul li a {
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.footer-nav .main {
    font-size: 1.4vw;
    transition: all 0.3s ease-out;
}

.footer-nav .main:hover {
    transform: translateY(-2px);
}

.drop-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
    list-style: none;
}

.drop-menu li a {
    font-size: 1.1vw;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease-out;
    display: inline-block;

}

.drop-menu li a:hover {
    transform: translateY(-2px);
}
   

.footer-line {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100vw;
    flex-shrink: 0;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: 40px;
    margin-bottom: 20px;
}

.footer-line {
    width: 100%;
    display: flex;
    justify-content: center;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    color: #fff;
}

.footer-sub-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.footer-sub-links a {
    color: inherit;
    text-decoration: none;
    font-size: 1vw;
     color: #fff;
  
}
.sp-only-text {
    display: none;
}

@media screen and (max-width: 768px) {
    .main-footer {
        padding: 5vh 0 vh;
        text-align: center;
        margin:  0 auto;
    }
    .footer-logo {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 10px auto 1vh;
    }
    .footer-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 0;
    }
    .footer-nav > ul {
        justify-content: center;
        gap: 7vh;
    }
    .footer-inner {
        padding: 3vh 0 ;
        flex-wrap: wrap;
        margin: 0 auto;
     
        align-items: center;
        width: 95%;
        
   
    }

    .footer-copy-text {
        font-size: 2.7vh;
        margin:0 auto  2vw;
    }
    .footer-foundation-name {
        font-size: 2vh;
        margin: 3vh auto 7vh;
    }
    .footer-nav .main {
        font-size: 2vh;
    }
   
    .drop-menu {
        gap: 2vh;
        margin: 4vh auto 0;
        list-style: none;
    }
    .drop-menu li a {
        font-size: 1.5vh;
    }
    .footer-brand {
        padding: 0 0 1vh;
        font-size: 1.6vh;
        opacity: 0.5;
    }
    .sp-only-text {
        display: block;
    }

    .footer-sub-links a {
  
    font-size: 1.4vh;
  
}
}


/* --------------------------------------------------------
-------------------------下層ページ-----------------------
----------------------------------------------------------*/


/* ------------------（１）奨学金を知る----------------- */


.detail-menu-section {

    margin: 0 auto;
}
 
.title-unit.system{
    margin-top: 2vw;
}
.page-header {
    font-size: 1.1vw;
    color: #1a3d7c;
    font-weight: bold;
    margin: 9vw 0 0 10vw;
  
}


.page-header:hover {
    filter: brightness(1.5);
} 

.detail-menu-section .en-title {
   color: #034382;
    font-size: 3.5vw;
    letter-spacing: 0.3em;
    display: block;
    font-weight: 500;
   margin-top: 10vw;
   
}


.menu-outer-card {
    position: relative;
    background: #fff;
    padding: 60px 5%;
    width: 80%;
    margin: -40px auto 10vw;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    z-index: 3;
     overflow: hidden; 
    height: auto;
} 

/* .detail-menu-section .en-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -15px; 
    transform: translateX(-50%);
    width: 20%;   
    height: 6px;   
   background-color: #a1abda; 
    border-radius: 2px;
    bottom: -20px;
} */

.detail-menu-section .jp-title {
    font-size: 2.2vw;
    color: #333;
    position: relative;
    z-index: 2;
    font-weight: bold;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin:10px 0  80px;
}
/* 
.menu-outer-card-menu {
    position: relative;
    background: rgba(217, 227, 252, 0.7);
    box-shadow: 0 0 60px 30px rgba(217, 227, 252, 0.8);
    width: 80%;
    margin: 1vw auto ;
    padding: 5px 20px;
} */
.menu-items-flex {
    display: flex;
    justify-content: space-between;
    gap:30px;
    width: 85%;
    margin: 0 auto;
    flex-wrap: wrap;
}

.scholarship-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.3s ease;
    flex: 0 0 calc(50% - 15px);
      padding:  20px 0;
}


.scholarship-card:hover {
    transform: translateY(-5px);
  
}


.card-photo {
    width: 90%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
     opacity: 0.8;
    filter: blur(0.5px);
}

.card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-name {
    font-size: 2rem;
    color: #034382;
    font-weight: bold;
    text-align: left;
    padding-left: 5px;
}

@media screen and (max-width: 768px) {
     .page-header {
        font-size: 2vh;
        margin: 10vh 3vh 4vh;
       
    }

    .menu-items-flex {
        gap: 20px;
        width: 90%;
    }
    
    .card-name {
        font-size: 1.4rem;
    }
    .title-unit.system{
        width: 90%;
        margin: 0 auto;
    }
   
    .detail-menu-section .en-title {
        font-size: 4vh;
        margin-top: 20vh;
       
    }
    .detail-menu-section .jp-title {
        font-size: 3vh;
      
        
    }}

 




/* -----------------------(2)奨学金制度（共通）----------------------- */
.title-unit.system-visual {
    position: relative;
    padding: 160px 0 120px;
    text-align: center;
    overflow: hidden;
}

.title-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/pages/scholarship_system.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    filter: blur(2px);
    z-index: 1;
}

.title-bg-image.philosophy { background-image: url("../img/pages/philosophy.jpg"); }
.title-bg-image.message { background-image: url("../img/pages/message.jpg"); }
.title-bg-image.system { background-image: url("../img/pages/scholarship_system.jpeg"); }
.title-bg-image.faq { background-image: url("../img/pages/faq_image.jpg"); }
.title-bg-image.application { background-image: url("../img/pages/application.jpeg"); }
.title-bg-image.message { background-image: url("../img/pages/message.jpeg"); }
.title-bg-image.about { background-image: url("../img/pages/about.jpg"); }
.title-bg-image.disclosure { background-image: url("../img/pages/disclosure.jpg"); }
.title-bg-image.reservation{ background-image: url("../img/pages/hero_session.jpg"); }
.title-bg-image.application { background-image: url("../img/pages/application.jpeg"); }
.title-bg-image.news{ background-image: url("../img/pages/news.jpeg"); }



.title-unit .page-header {
    position: absolute;
    top: 1px;
    left: 1%;
    z-index: 2;
    font-size: 1.1vw;
    font-weight: bold;
    
}

.title-unit .page-header.philosophy {
  color: #fff;
}


.title-unit .page-header a, .title-unit .page-header span {
 
    text-decoration: none;
}

.title-content {
    position: relative;
    z-index: 2;
    margin: 2vw;
}

.title-content .en-title {
    color: #034382;
    font-size: 3.5vw;
    letter-spacing: 0.3em;
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
  
}

.title-content .jp-title {
    color: #333;
    font-size: 2.5vw;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.table-title {
    font-size: 1.6vw;
    color: #034382;
    border-left: 6px solid #034382;
    padding-left: 15px;
    margin: 4vw 0 1.5vw ;
}

.important-condition-box {
    background: #f8fbff;
    border: 2px solid #034382;
    padding:20px;
    border-radius: 15px;
    margin-top: 10px;
}



.system-table {
    width: 100%;
    border-collapse: collapse;
}


.system-table th {
    background: #f8fbff;
    color: #034382;
    text-align: center;
}

.fw-bold {
    color: #034382;
    font-weight: bold;
}

.total-row { background: #fff9f0; font-weight: bold; }
.alert { color: #e74c3c;  }

.highlight-red {
    color: #e74c3c;
    border-left: 8px solid #e74c3c;
    font-size: 2rem;
    margin: 2vw 0;
}


.condition-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.condition-item:last-child { margin-bottom: 0; }

.condition-label {
    flex-shrink: 0;
    background: #d3928b;
    color: #fff;
    padding: 8px 15px;
    font-size: 1.6rem;
    font-weight: bold;
    border-radius: 5px;
    width: 180px;
    text-align: center;
}

 .system-intro-text-title,   .program-item p {
    font-size: 1.4vw;
    line-height: 1.8;
    color: #333;
    font-weight: bold;
   margin-bottom: 1vw;
}

.proxy-card p, .allowance-card p ,.schedule-text{
      font-size: 1.7rem;
      font-weight: bold;
      margin-bottom: 1vw;
}

.condition-text{
    font-size: 1.6rem;
    
}

.system-intro-text-title{
    text-align: center;
}
.schedule-text{
    margin: 1vw 0;
    font-weight: normal;
}

.system-text {
  font-size: 1.6rem;
 

}

.system-intro-text{
     font-size: 2.2rem;
    line-height: 1.8;
    clor: #333;
    font-weight: bold;
    text-align: center;
}

.condition-text strong {
    color: #e74c3c;
    font-weight: 900;
}

.system-schedule-box {
    margin-top: 20px;
 
    padding: 2vw;
    border-radius: 10px;
    font-size: 1.6rem;
    
}

.list-style-box{
    font-size: 1.4rem;
    text-align: center;
}

.schedule-label {
    background: #dfe6f8;
    color: #333;
    padding: 5px 15px;
    font-size: 1.6rem;
    font-weight: bold;
    border-radius: 5px;

    display: inline-block;
}

.special-info-box {
    background: #fdfdfd;
    border-radius: 20px;
    padding: 1vw 0;
}

.proxy-card, .allowance-card {
    flex: 1;
    background: #ffffff;
    border-left: 10px solid #cacaca;
    padding: 1vw;
    border-radius: 4px;
    margin: 1vw 0 ;
    background-image: linear-gradient(rgba(0, 67, 130, 0.05) 1px, transparent 1px);
    background-size: 100% 3.4rem;
    box-shadow: 1px 1px 0 rgba(0,0,0,0.05), 3px 3px 0 #fff, 4px 4px 0 rgba(0,0,0,0.05), 10px 20px 40px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
}

.proxy-card h4, .allowance-card h4 {
    color: #034382;
    font-size: 1.8rem;
    font-weight: 900;
    border-bottom: 2px solid #034382;
    display: inline-block;
    margin: 1.5vw 0;
}

.small-note {
    font-size: 1.4rem !important;
    color: #777 !important;
    margin-top: 20px;
}

.symbol-synergy {
    font-size: 2rem;
    color: #959fca;
    margin: 0 15px;
    vertical-align: middle;
    display: inline-block;
}

.program-grid {
    display: flex;
    justify-content: space-between;
    gap: 1vw;
    margin-top: 40px;
}

.program-item {
    flex: 1;
    background: #ffffff;
    padding: 4vw 1vw;
    border-radius: 15px;
    border: 1px solid #034382;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
}

.program-item h4 {
    color: #034382;
    font-size: 1.4vw;
    font-weight: 900;
    margin-bottom: 20px;
    border-bottom: 2px solid #dedfe0;
    padding-bottom: 15px;
}

@media screen and (max-width: 1024px) {
.table-title {
    font-size: 2rem;
   
}

     .title-unit .page-header {
     
        font-size: 2vh;
        margin: 10vh 3vh 4vh;
       
    }

    .system-intro-text-title{
        text-align: center;
        font-size: 1.7rem;
        margin: 2vh 0;
    }
    .title-content { margin: 3.5vh auto 0; 
    width: 90%;}
    .title-content .en-title { font-size: 4vh; }
    .title-content .jp-title { font-size: 3vh; }

    .system-table {
        display: block;
        overflow-x: auto;
    }}

    @media screen and (max-width: 768px) {
    .system-table th, .system-table td { 
        font-size: 1.6vh;
        padding: 10px 8px;
    }

    
.system-intro-text{
     font-size: 1.7rem;
    line-height: 1.6;
  
}


    .title-unit.system-visual {
    position: relative;
    padding: 120px 0 90px;
    text-align: center;
    overflow: hidden;
}
.highlight-red{
    font-size: 1.6rem;
    margin:  0;
}

    .proxy-repayment {
        flex-direction: column;
        gap: 5px;
      
        margin: 0;
    }

    .program-grid {
        flex-direction: column;
        gap: 5px;
        width: 90%;
        margin: 3vh auto;
    }
    .symbol-synergy {
        display: inline-block;
        text-align: center;
        margin: 0 10px;
        transform: rotate(0deg);
        font-size: 2vh;
        vertical-align: middle;
    }

    .important-condition-box {
   
    padding: 3vh 1vh;
   
    margin-top: 0;
}

}


/* -----------------------(3)募集要項----------------------- */

.section-card-title {
    font-size: 1.8vw;
    text-align: center;
    font-weight: bold;
    margin:1vw auto 6vw;

    color: #333;
}

.lead-text-schedule {
    font-size: 1.4vw;
    color: #333;
    text-align: center;
    font-weight: bold;
    margin-bottom: 50px;
   
}



.system-intro-text-schedule {
    font-size: 1.4vw;
    line-height: 1.8;
    color: #333;
    text-align: center;

    margin-bottom: 40px;
}

.system-intro-text .alert {
    color: #e74c3c;
    display: block;
    margin-top: 10px;
}

.system-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    table-layout: fixed;
}

.system-table th, 
.system-table td {
    border: 1px solid #dee5ec;
    padding: 20px;
    font-size: 1.6rem;
    line-height: 1.6;
    word-break: break-all;
    text-align: left;
    font-weight: bold;
   
}

.system-table td.number {
    font-weight: bold;
    text-align: center;
    vertical-align: middle; 
    color: #333; 
}
.system-table th {
    background: #f8fbff;
    color: #034382;
    font-weight: bold;
    text-align: center;
}

.system-table .fw-bold {
    color: #034382;
    font-weight: bold;
    background: #fcfdfe;
    text-align: center;
    vertical-align: middle;
 
}

.theme-box {

    padding: 2px 0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    
}


.theme-text {
    font-size: 1.6rem;
    color: #333;
    font-weight: bold;
    line-height: 1.5;
}

/* .info-text{
    font-size: 1.4rem;
    color: #333;
    text-align: center;
} */


@media screen and (max-width: 768px) {
   
   
    .table-title { font-size: 2.5vh; margin: 4vh 0 1vh;}
    .condition-item { flex-direction: column; gap: 10px; }
    .condition-label { width: 100%; text-align: left; }

    .menu-outer-card{
        width: 100%;
        border-radius: 0;
        margin-bottom: 15vh;
        padding: 8vh 0;
        font-size: 1.6rem;
    
    }

    .menu-card.system-card{
        width: 90%;
        margin: 0 auto;
    }
   
    .menu-items-flex {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: space-between !important;
        gap: 15px 10px!important;
    }
    .scholarship-card {
        flex: 0 0 calc(47% - 2px);
        padding: 0;
    }
    .card-photo {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 4 / 3;
        overflow: hidden;
    }
    .card-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .card-name {
        font-size: 4vw !important;
        margin: 5px;
        text-align: left !important;
        padding-left: 5px;
        display: block;
    }
    .table-wrapper,.system-table,.system-schedule-box,.table-wrapper,.important-condition-box,.system-text,.special-info-box,.program-item{
        font-size: 1.6rem;
     }
}

@media screen and (max-width: 768px) {
      
   
    .theme-box {
        padding: 12px;
    }
    .table-wrapper{
        margin: 3vh 0;
    }
    .theme-label,.lead-text-schedule{
        font-size: 1.5rem;
    }

    .section-card-title{
        font-size: 1.9rem;
        margin-bottom: 7vh;
      
    }
    .theme-text {
        font-size: 1.8rem;
    }

    .condition-label {
        width: auto;
        padding: 5px 10px;
        font-size: 1.6rem;
    }

    .condition-text, .schedule-text {
        font-size: 1.6rem;
        margin-bottom: 1vh;
    }

   .system-intro-text-schedule {
        font-size: 1.4rem;
    }

    .proxy-card h4, .allowance-card h4 {
        font-size: 1.6rem;
        margin: 2vh 0;
    }

    .proxy-card p, .allowance-card p {
        font-size: 1.6rem;
        margin-bottom: 1vh;
    }

    .proxy-card, .allowance-card {
        margin: 1vh 0;
        
    }

    .program-item h4 {
        font-size: 1.6rem;
        
    }

    .program-item p {
        font-size: 1.6rem;
    }

    .program-item {
        margin-bottom: 2vh;
        padding: 3vw 2vw;
    }

    .schedule-label {
        font-size: 1.6rem;
        padding: 4px 10px;
        margin-bottom: 1vh;
    }

    .system-table th, .system-table td {
        font-size: 1.6rem;
        padding: 8px 6px;
        word-break: break-word;
    }

    .system-table {
        font-size: 1.6rem;
    }
}


.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.number-list {
    margin: 20px 0;
}

.number-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    padding-left: 0;
    min-height: 1.8em;
}

.number-list li::before {
    display: none;
}

.step-num-inline {
    font-size: 3.2rem;
    color: #034382;

    flex-shrink: 0;
    width: 45px;
    text-align: center;
    vertical-align: middle;
}

.number-list .text-content {
    flex: 1;
}

.number-list li strong {
    color: #034382;
    font-size: 1.8rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 8px;
 
}

.number-list li p {
    font-size: 1.8rem;
    color: #444;
    margin: 0;
    line-height: 1.6;
}

.info-list p {
    font-size: 1.8rem;
    color: #444;
    margin: 0;
  font-weight: bold;

}


.btn-area {
    text-align: center;
    margin-top: 30px;
    font-size: 1.4vw;
}

.btn-sub-text {
    font-size: 2rem;
    color: #034382;
    margin-bottom: 15px;
    font-weight: bold;
    display: block;
    text-align: center;
    letter-spacing: 2px;

    text-align: center;   
    line-height: 2;
}

.action-btn {
    display: inline-block;
    background-color: #a86a6a;   
    color: #fff;
    padding: 10px 30px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.action-btn:hover {
    background-color: #b07a7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(168, 106, 106, 0.4);
}

.action-btn[style*="#1b63eb"]:hover {
    background-color: #2875f0 !important;
    box-shadow: 0 4px 12px rgba(27, 99, 235, 0.4);
}


@media screen and (max-width: 768px) {
    .number-list li {
        gap: 12px;
        margin-bottom: 25px;
    }
    .step-num-inline {
        font-size: 2.4rem;
        width: 35px;
    }
    .number-list li strong {
        font-size: 1.7rem;
    }
    .number-list li p {
        font-size: 1.5rem;
    }
    .btn-area {
  
    font-size: 1.6rem;
}
.theme-text{
    font-size: 1.6rem;
}
.btn-sub-text{
    font-size: 1.6rem;
}

}

/* -----------------------（４）FAQページ----------------------- */
.detail-faq-section {
    padding: 20px 0 60px;
}

.detail-faq-card {
    max-width: 1000px;
    margin: 0 auto;
}

.detail-faq-main-title {
    font-size: 3.2rem;
    color: #034382;
    text-align: center;
    font-weight: 800;
    margin-bottom: 50px;
    position: relative;
}

.detail-faq-main-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background-color: #00a0e9;
    border-radius: 2px;
}


.detail-faq-card .table-title {
    font-size: 2.2rem;
    color: #034382;
    background: #f0f7ff;
   
    margin: 3vw 0;
    border-left: 8px solid #034382;
    border-radius: 0 8px 8px 0;
}

.detail-faq-card .table-title:first-of-type {
    margin-top: 0;
}


.detail-faq-item {
    background: #fff;
    border: 1px solid #dee5ec;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.detail-faq-item:hover {
    box-shadow: 0 10px 25px rgba(3, 67, 130, 0.08);
}

/* 質問ボタン部分 */
.detail-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 25px 30px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.detail-q-icon {
    font-size: 2.4rem;
    font-weight: 900;
    color: #034382;
    margin-right: 20px;
    font-family: 'Arial', sans-serif;
}

.detail-faq-question p {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    flex: 1;
    margin: 0;
    line-height: 1.5;
}

.detail-faq-icon {
    position: relative;
    width: 24px;
    height: 24px;
    margin-left: 20px;
    flex-shrink: 0;
}

.detail-faq-icon::before,
.detail-faq-icon::after {
    content: "";
    position: absolute;
    background: #034382;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s ease;
}

.detail-faq-icon::before {
    width: 100%;
    height: 2px;
}

.detail-faq-icon::after {
    width: 2px;
    height: 100%;
}

.detail-faq-item.is-open .detail-faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}


.detail-faq-answer {
    display: none;
    background-color: #fcfdfe;
    border-top: 1px solid #f0f4f8;
    border-radius: 0 0 12px 12px;
}

.detail-answer-content {
    display: flex;
    padding: 30px 30px 40px;
}

.detail-a-icon {
    font-size: 2.4rem;
    font-weight: 900;
    color: #6a8dac;
    margin-right: 20px;
    font-family: 'Arial', sans-serif;
}

.detail-answer-text {
    flex: 1;
}

.detail-answer-text p {
    font-size: 1.7rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5em;
    font-weight: 500;
}

.detail-answer-text p:last-child {
    margin-bottom: 0;
}


@media screen and (max-width: 768px) {
    .detail-faq-main-title {
        font-size: 2.6rem;
    }

    .detail-faq-card .table-title {
        font-size: 2.5vh;
        padding: 12px 15px;
    }

    .detail-faq-question {
        padding: 20px 15px;
    }

    .detail-q-icon, .detail-a-icon {
        font-size: 2rem;
        margin-right: 12px;
    }

    .detail-faq-question p {
        font-size: 1.6rem;
    }

    .detail-answer-content {
        padding: 20px 15px 30px;
    }

    .detail-answer-text p {
        font-size: 1.5rem;
    }
}

/* ------------------------（５）設立理念------------------------ */


.concept-header {
    text-align: center;
    margin-bottom: 50px;
}


.title-sub {
    display: block;
    font-size: 1.6rem;
    color: #666;
    margin-bottom: 5px;
}

.title-main {
    font-size: 4.0rem;
    color: #034382;
    font-weight: 800;
}

.concept-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.concept-text-block p {
    font-size: 1.8rem;
    line-height: 2.0;
    color: #444;
    margin-bottom: 30px;
}

.concept-highlight-box {
    background: #034382;
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(3, 67, 130, 0.15);
}

.concept-highlight-box p {
    font-size: 2.0rem;
    line-height: 1.8;
    margin: 0;
}

.concept-highlight-box strong {
    color: #fce942;
    font-size: 2.4rem;
}

.concept-decoration {
    position: absolute;
    bottom: 0;
    right: 5%;
    display: flex;
    gap: 20px;
    align-items: flex-end;
    z-index: 0;
    opacity: 0.1;
}

.pillar {
    width: 40px;
    background: #034382;
    border-radius: 5px 5px 0 0;
}

.pillar-1 {
    height: 150px;
}

.pillar-2 {
    height: 280px;
}

.pillar-3 {
    height: 200px;
}
.concept-text-block .table-title {
    font-size: 2.2rem;
    color: #034382;
    margin: 60px 0 25px;
    padding-left: 15px;
    border-left: 6px solid #034382;
    line-height: 1.4;
    text-align: left;
}


.concept-text-block .table-title:first-child {
    margin-top: 0;
}


.concept-text-block p {
    font-size: 1.8rem;
    line-height: 2.0;
    color: #444;
    margin-bottom: 30px;
    text-align: justify; 
}


.concept-text-block strong {
    color: #034382;
    background: linear-gradient(transparent 70%, #e1f5fe 70%); /* 薄い青のマーカー線 */
    padding: 0 2px;
}


@media screen and (max-width: 768px) {
    .concept-text-block .table-title {
        font-size: 1.8rem;
        margin: 40px 0 20px;
    }

    .concept-text-block p {
        font-size: 1.6rem;
        line-height: 1.8;
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 768px) {
    .concept-card {
        padding: 40px 20px;
    }
    .title-main {
        font-size: 2.8rem;
    }
    .concept-text-block p {
        font-size: 1.6rem;
    }
    .concept-highlight-box {
        padding: 25px;
    }
    .concept-highlight-box p {
        font-size: 1.7rem;
    }
    .concept-decoration {
        display: none;
    }
}


/*--------------- （６）代表メッセージ セクション ------------------*/



.representative-image img {
    width: 50%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto 20px;
    box-shadow: 15px 15px 0px rgba(3, 67, 130, 0.05);
}
.representative-text {
    margin: 4vw auto;
    width: 87%;

    
}

.message-catch {
    font-size: 3rem;
    color: #034382;
  
    margin-bottom: 3vw;
    font-weight: 800;
    line-height: 2;
    text-align: center; 
}

.message-body {
    font-size: 1.8rem; 
    line-height: 2.2;
    color: #333;
    text-align: center; 


}



.message-body p {
    margin: 2vw;
    text-align: left;

  
}

.lead-text-message strong {
    color: #034382;
    display: block;
    margin-top: 20px;
    
}

.lead-text-message {
    font-weight: 800;
    font-size: 2rem;
    margin: 3vw;
}
.lead-text-message-sub{
    font-weight: 800;
}




.emph-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #034382;
    
   
}
.representative-signature {
    margin-top: 50px;
    padding-top: 20px;
    text-align: right;
    border-top: 2px solid #034382;
    width: 100%;
    font-size: 1.8rem;
    font-weight: 700 !important;
}

.representative-signature .name {
    font-size: 1.7rem;
}

@media screen and (max-width: 760px) {
    .content-inner {
        flex-direction: column;
        gap: 30px;
    width: 100%;
    
}

    
    .representative-image {
        display: flex;
        width: 100%;
        margin: 0 auto;
        justify-content: center;
        
    }

    .message-catch {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    .message-body,.lead-text-message,.emph-text{
        font-size: 1.6rem;
    }

    .representative-signature, .representative-signature .name{
        font-size: 1.5rem;
    }
   
}


/* ------------------------（７）財団概要--------------------- */

.about-card {
    padding: 60px;
}

.about-title {
    font-size: 2.4rem;
    display: block;
    width: fit-content;
    margin: 0 auto 40px;
    border-bottom: 2px solid #00a0e9;
    padding-bottom: 10px;
}

.about-table {
     width: 100%; 
    border-collapse: collapse;
    margin-bottom: 60px;
    font-size: 1.8rem;
    margin: 2vw auto 4vw;
   
}

.about-table th {
    width: 25%;
    background-color: #f0f7ff;
    color: #333;
    text-align: center;
    padding: 20px;
    border: 1px solid #e0e9f5;
    vertical-align: middle;
}

.about-table td {
    padding: 20px;
    border: 1px solid #e0e9f5;
    line-height: 1.8;
    color: #444;
    
}

.map-outer {
    width: 80%; 
    margin: 40px auto;
    text-align: center;
}

.map-outer iframe {
    width: 100%; 
    height: 400px; 
    border-radius: 15px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
}

@media screen and (max-width: 768px) {
    .about-title {
    font-size: 2rem;
    
}


.about-table {
   
    font-size: 1.5rem;
}


    .about-card {
        padding: 30px 15px;
    }
    .about-table th,
    .about-table td {
        display: block;
        width: 90%;
        margin: 0 auto;
    }
    .about-table th {
        padding: 10px;
        background-color: #f0f7ff;
        color: #333;
    }
    .th-main-group td {
        text-align: center;
    }
}


/* ------------------------（8）情報開示--------------------- */

.disclosure-card {
    padding: 60px;
}

.disclosure-title {
    font-size: 2.2rem;
    color: #034382;
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 5px solid #034382;
}

.pdf-list {
    list-style: none;
    padding: 0;
}

.pdf-list li {
    margin-bottom: 15px;
}

.pdf-link {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pdf-link:hover {
    background-color: #f0f7ff;
    border-color: #00a0e9;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.pdf-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #e74c3c;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 4px;
    margin-right: 20px;
    flex-shrink: 0;
}

.pdf-icon-officer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #00a0e9;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 4px;
    margin-right: 20px;
    flex-shrink: 0;
}

.pdf-name {
    flex: 1;
    font-size: 1.8rem;
    color: #333;
    font-weight: 500;
}

.dl-text {
    font-size: 1.3rem;
    color: #00a0e9;
    font-weight: bold;
    margin-left: 20px;
}

@media screen and (max-width: 768px) {
    .disclosure-card {
        padding: 30px 15px;
    }
    .pdf-link {
        padding: 15px;
    }
    .pdf-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }
    .pdf-list {
        padding: 20px;
    }
    .pdf-name {
        font-size: 1.5rem;
    }
    .dl-text {
        display: none;
    }
}


/* ---------------------（9）ニュース一覧-------------------- */

.news-container-detail {
    margin-top: 40px;
    padding: 50px 40px;
}

.news-list-detail {
    list-style: none;
    width: 90%;
    margin: 0 auto;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 30px 10px;
    border-bottom: 1px solid #dfdddd;
    text-decoration: none;
    transition: all 0.3s;
}

.news-item:hover {
    background-color: rgba(3, 67, 130, 0.03);
    transform: translateX(5px);
}

.news-meta {
    display: flex;
    align-items: center;
    min-width: 250px;
}

.news-date {
    font-size: 1.6rem;
    color: #888;
    margin-right: 20px;
    font-family: 'Poppins', sans-serif;
}

.news-category {
    font-size: 1.4rem;
    background: #034382;
    color: #fff;
    padding: 4px 12px;
    border-radius: 2px;
    letter-spacing: 0.05em;
}

.news-text {
    flex: 1;
    font-size: 2.0rem;
    color: #333;
    font-weight: 500;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .news-container {
        padding: 30px 15px !important;
    }
    .news-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    .news-meta {
        min-width: auto;
        margin-bottom: 10px;
    }
    .news-text {
        font-size: 1.5rem;
    }
    .news-arrow {
        display: none;
    }



.news-container-detail {
    margin-top: 0;
    padding: 7vh 0;
   
}


}


/* -------------- （１０）説明会予約------------------*/
.reservation-intro p {
    text-align: center;
    line-height: 1.8;
    color: #333;
    margin-bottom: 5vw;
    font-size:1.3vw;
    font-weight: bold;
}
.schedule-title {
    color: #034382;
    text-align: center;
    font-size:1.6vw;
    margin: 25px auto;
    font-weight: 800;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.schedule-title::before,
.schedule-title::after {
    content: "";
    height: 2px;
    width: 30px;
    background-color: #034382;
}
.schedule-box {
    background: #f0f4f8;
    border-radius: 12px;
    padding: 10px 30px;
    margin: 3vw auto 4vw;
    width: 60%;
}

.schedule-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.schedule-list li {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px dashed #c0c9d3;
}

.schedule-list li:last-child {
    border-bottom: none;
}

.schedule-list .date {
    font-weight: bold;
    font-size: 1.2vw;
    color: #034382;
    margin-right: 30px;
}

.schedule-list .time {
    color: #555;
    font-size:1.2vw;
     font-weight: bold;
}

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

.action-note {
    font-size: 1.2vw;
    color: #666;
    margin-bottom: 2vw;
    font-weight: bold;
}

.btn-reservation-detail {
    display: inline-block;
    background:  rgba(168, 106, 106, 0.9);
    color: #fff;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2vw;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(3, 67, 130, 0.2);
}

.btn-reservation-detail:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(3, 67, 130, 0.3);
    background: #a86a6a; 
}

@media screen and (max-width: 768px) {
 
   .schedule-title {
    
    font-size:1.8rem;
    gap:4vh;
  
}

.schedule-box {
   
    width: 95%;
}


    .reservation-intro p {
        font-size: 1.4rem;
        margin-bottom: 6vh;   
     }
     
     
    .schedule-list li {
       
   
        padding: 15px 0;
    }

    .schedule-list .date {
    
        font-size: 1.6rem;
        margin-right: 10px;
    }

    .schedule-list .time {
        font-size: 1.6rem;
    }

    .action-note {
    font-size: 1.4rem;
    margin: 6vh 0 2vh;
   
}

    .btn-reservation-detail {
      
        padding: 20px 40px;
        font-size: 1.4rem;
    }
}


/* -------------- （１１）ニュース詳細------------------*/

.news-detail-content {
    margin-top: 40px;
}

.news-detail-header {
    margin-bottom: 40px;
    border-bottom: 2px solid #034382;
    padding-bottom: 20px;
    text-align: left;
}

.news-detail-header .news-date {
    font-size: 1.6rem;
    color: #888;
    font-family: 'Poppins', sans-serif;
    display: block;
    margin-bottom: 10px;
}

.news-detail-title {
    font-size: 2.8rem;
    color: #333;
    line-height: 1.4;
    font-weight: bold;
    margin: 0;
}

.news-detail-body {
    font-size: 1.7rem;
    line-height: 2.0;
    color: #444;
    text-align: left;
}

.news-detail-body p {
    margin-bottom: 2em;
}

.news-detail-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    text-align: center;
}

.btn-back {
    display: inline-block;
    padding: 15px 50px;
    background: #034382;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(3, 67, 130, 0.2);
    
}

.btn-back:hover {
    background: #022d57;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 67, 130, 0.3);
}

@media screen and (max-width: 768px) {
    .news-detail-header {
        margin-bottom: 30px;
    }
    .news-detail-title {
        font-size: 2.0rem;
    }
    .news-detail-body {
        font-size: 1.5rem;
        line-height: 1.8;
    }
    .btn-back {
        width: 70%;
        padding: 15px 0;
    }
}


/* -------------- （12）プライバシーポリシー------------------*/


.privacy-container {
   width: 85%;
   margin: 0 auto;
} 


.privacy-content h2 {
    font-size: 2rem;
    color: #034382;
    border-left: 4px solid #034382;
    padding-left: 15px;
    margin: 40px 0 20px;
    font-weight: bold;
}

.privacy-content h3 {
    font-size: 1.6rem;
    color: #333;
    margin: 25px 0 10px;
    font-weight: bold;
}

.privacy-content p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.privacy-list {
    list-style: none;
    padding: 20px;
    background: #f4f7fa;
    border-radius: 8px;
    margin-bottom: 20px;
}

.privacy-list li {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #444;
}



.contact-info {
    font-weight: bold;
    color: #034382;
    margin-top: 10px !important;
}

.disclaimer {
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}


@media screen and (max-width: 768px) {
    .privacy-container {
        width: 95%;
        padding: 40px 5%;
    }
    .page-title {
        font-size: 1.8rem;
    }
}


/* -------------- （13）サイトポリシー------------------*/


.policy-content {
    width:85%;
    margin:  0 auto;
  
}

.intro {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.policy-content h2 {
    font-size: 1.7rem;
    color: #034382;
    margin: 45px 0 15px;
    font-weight: bold;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 8px;
}

.policy-content p {
    font-size: 1.6rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 15px;
}

.policy-list {
    list-style: none;
    padding-left: 10px;
    margin-bottom: 20px;
}

.policy-list li {
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}


@media screen and (max-width: 768px) {
    .policy-container {
        width: 92%;
        padding: 40px 6%;
    }
    .page-title {
        font-size: 1.7rem;
    }
    
    .schedule-section h4 {
        font-size: 1.5rem;
        margin: 25px 0 15px 0;
    }
    
}