@charset "utf-8";
/* CSS Document */
@media (min-width: 768px) {
   .container {
    display: flex;
    flex-direction: row;
    margin: 1em 0 4em;
  }
  .box2:first-child {
        width: 48%;
        /*background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),url(/mba/images/about/analysis/box2_bg_left.png);*/
        padding: 20px;
        box-sizing: border-box;
        margin: 15px;
        background-size: cover;
        animation: mach-text-fade-up 1.2s ease-out both;
        background: #f4f4f4;
        border-radius: 8px;
        box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
        border: 1px solid #e1d3b9;
    }
 .box2:last-child {
        width: 48%;
        /*background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),url(/mba/images/about/analysis/box2_bg_right.png);*/
        padding: 20px;
        box-sizing: border-box;
        margin: 15px;
        background-size: cover;
        animation: mach-text-fade-up 1.2s ease-out both;
        background: #f4f4f4;
        border-radius: 8px;
        box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
        border: 1px solid #e1d3b9;
    }
.box2 h3 {
        font-size: 3.0rem;
        font-weight: bold;
        padding: 0 0 0.4em;
        text-align: center;
        color: #1d4691;
}   

.box2 img {
    width: 40%;
}

.box2 p{
    text-align: center;
    font-size: 3.0rem;
    text-shadow: 1.5px 1px #fff;
    font-weight: bold;
}
    
.box2 span {
    text-align: center !important;
    background: rgba(255, 245, 144, 0.6);
    padding: 0.2em 1.0em;
    font-weight: bold;
    display: block;
}
.box3 {
    width: 49%!important;
    padding: 1em 2.5em!important;
    background: #f3f3f3;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
  }
    
.container-graduate {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.item-graduate {
  width: 23%;
  text-align: center;
}
.item-graduate img {
  width: 100%;
  height: auto;
}

.item-graduate p {
    font-size: 1.2rem;
    text-align: left!important;
}

p.graduate-title {
    font-size: 1.8rem;
    padding: 1rem 0 0 0;
    border-bottom: 1px solid #cccccc;
    display: inline-block;
    margin-bottom: 1em;
}
h4.box_title {
    border-bottom: 1px #cccccc dotted;
    font-size: 1.6rem;
    margin-bottom: 0.5em;    
    }
    
.numerical-value {
    font-size: 2.0rem;
}

.line{
    background: linear-gradient(transparent 60%, #f9ff9c 60%);    
    }
/*----------------------------------------------------------------------------------
1.明確な経済的・キャリアリターン（年収アップの2つの側面）
-----------------------------------------------------------------------------------*/

.big-box{
  display: flex;
 align-items:center;
        }

.mach-anim-box00 {
  display: inline-block;
  padding: 1.25rem 3.5rem;
  background: radial-gradient(circle at center, #BEF4EB 0%, #66D8C9 0%, #2F8C7D 80%, #20584E 100%);
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(34, 96, 85, 0.6);
}
.mach-anim-box01 {
  display: inline-block;
  padding: 1.25rem 3.5rem;
  background: radial-gradient(circle at center, #B6CBF2 0%, #94B5E7 0%, #2D4C86 80%, #273F62 100%);
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(41, 68, 111, 0.6);
}
/* --- 2. アニメーション呼び出し指定 --- */
.mach-anim-box00 {
  animation: mach-text-fade-up 1.2s ease-out both;
  width: 50%;
  margin: 1em 0.5em;
}
.mach-anim-box01 {
  animation: mach-text-fade-up 1.2s ease-out both;
  width: 50%;
  margin: 1em 0.5em;
}
    
/*--------------------------------------------------
円グラフ    
--------------------------------------------------*/
.pie-chart-3 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pie-chart-3 > div {
    width: 200px;
    height: 200px;
    margin: 0;
    border-radius: 50%;
    background-image: conic-gradient(#51730A 24%, #329A77 24% 42%, #2E5E9E 42% 55%, #3D3B8C 55% 68%, #292886 68% 79%, #cccccc 79% 100%);
}

.pie-chart-3 li {
    display: flex;
    list-style-type: none;
    align-items: center;
    font-size: .8em;
}

.pie-chart-3 li::before {
    display: inline-block;
    width: 1.2em;
    height: .8em;
    margin-right: 5px;
    content: '';
}

.pie-chart-3 li:nth-child(1)::before {
    background-color: #51730A;
}

.pie-chart-3 li:nth-child(2)::before {
    background-color: #329A77;
}

.pie-chart-3 li:nth-child(3)::before {
    background-color: #2E5E9E;
}
        
.pie-chart-3 li:nth-child(4)::before {
    background-color: #3D3B8C;
}
        
.pie-chart-3 li:nth-child(5)::before {
    background-color: #292886;
}
        
.pie-chart-3 li:nth-child(6)::before {
    background-color: #cccccc;
}
.pie-chart-3 span {
    margin-right: 10px;
    font-weight: 600;
}


.pie-chart-4 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pie-chart-4 > div {
    width: 200px;
    height: 200px;
    margin: 0;
    border-radius: 50%;
    background-image: conic-gradient(#1C2B55 33%, #1CA0A2 33% 52%, #F36E4B 52% 70%, #ED9C7F 70% 82%, #cccccc 82% 100%);
}

.pie-chart-4 li {
    display: flex;
    list-style-type: none;
    align-items: center;
    font-size: .8em;
}

.pie-chart-4 li::before {
    display: inline-block;
    width: 1.2em;
    height: .8em;
    margin-right: 5px;
    content: '';
}

.pie-chart-4 li:nth-child(1)::before {
    background-color: #1C2B55;
}

.pie-chart-4 li:nth-child(2)::before {
    background-color: #1CA0A2;
}

.pie-chart-4 li:nth-child(3)::before {
    background-color: #F36E4B;
}
        
.pie-chart-4 li:nth-child(4)::before {
    background-color: #ED9C7F;
}
        
.pie-chart-4 li:nth-child(5)::before {
    background-color: #cccccc;
}

.pie-chart-4 span {
    margin-right: 10px;
    font-weight: 600;
}
    }
      
@media (max-width: 768px) {
 .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 1em 0 4em;
  }

  .box2:first-child {
        width: 100%;
        /*background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),url(/mba/images/about/analysis/box2_bg_left.png);*/
        padding: 20px;
        box-sizing: border-box;
        margin: 15px;
        background-size: cover;
        animation: mach-text-fade-up 1.2s ease-out both;
        background: #f4f4f4;
        border-radius: 8px;
        box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
        border: 1px solid #e1d3b9;
    }
 .box2:last-child {
        width: 100%;
        /*background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),url(/mba/images/about/analysis/box2_bg_right.png);*/
        padding: 20px;
        box-sizing: border-box;
        margin: 15px;
        background-size: cover;
        animation: mach-text-fade-up 1.2s ease-out both;
        background: #f4f4f4;
        border-radius: 8px;
        box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
        border: 1px solid #e1d3b9;
    }
.box2 h3 {
    font-size: 2.0rem;
        font-weight: bold;
        padding: 0 0 0.4em;
        text-align: center;
        color: #1d4691;
}
    
 .box2 span {
    text-align: center !important;
    background: rgba(255, 245, 144, 0.6);
    padding: 0.2em 1.0em;
    font-weight: bold;
    display: block;
}   
.box2 img {
    width: 40%;
}

.box2 p{
    text-align: center;
    font-size: 1.8rem;
    text-shadow: 1px 1px #fff;
    font-weight: bold;
}
.box3 {
    width: 100%; 
    padding: 1em 1.5em !important;
    background: #f3f3f3;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
    margin: 1em auto;
  }
h4.box_title {
    border-bottom: 1px #cccccc dotted;
    font-size: 1.5rem;
    margin-bottom: 0.5em;
}
.numerical-value {
        font-size: 1.6rem;
    }
.line {
    background: linear-gradient(transparent 60%, #f9ff9c 60%);
}
    
.c-lead--small {
    font-size: 1.6rem!important;
}
 .container-graduate {
    flex-wrap: wrap; 
    gap: 15px;
    display: flex;
  }
  
  .item-graduate {
    width: calc(50% - 8px); 
  }
    
.item-graduate p {
    font-size: 1.2rem;
}
    
p.graduate-title {
    font-size: 1.8rem;
    padding: 1rem 0 0 0;
    border-bottom: 1px solid #cccccc;
    display: inline-block;
    margin-bottom: 1em;
}
/*----------------------------------------------------------------------------------
1.明確な経済的・キャリアリターン（年収アップの2つの側面）
-----------------------------------------------------------------------------------*/

.big-box{
  display: block;
 align-items:center;
        }

.mach-anim-box00 {
  display: inline-block;
  padding: 1.25rem 3.5rem;
  background: radial-gradient(circle at center, #BEF4EB 0%, #66D8C9 0%, #2F8C7D 80%, #20584E 100%);
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(34, 96, 85, 0.6);
}
.mach-anim-box01 {
  display: inline-block;
  padding: 1.25rem 3.5rem;
  background: radial-gradient(circle at center, #B6CBF2 0%, #94B5E7 0%, #2D4C86 80%, #273F62 100%);
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(41, 68, 111, 0.6);
}
    /* --- 2. アニメーション呼び出し指定 --- */
.mach-anim-box00 {
  animation: mach-text-fade-up 1.2s ease-out both;
  width: 100%;
  margin: 1em 0.5em;
}
.mach-anim-box01 {
  animation: mach-text-fade-up 1.2s ease-out both;
  width: 100%;
  margin: 1em 0.5em;
}
        }



small {
    font-size: 1.0rem;
}

/* --- 3. アニメーションの動き定義 (@keyframes) --- */
@keyframes mach-text-fade-up {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.midashi-box00{
    position: relative;
    padding: 15px;
    border-radius: 5px;
    /*border: 2px solid #ffffff;*/
    color: #ffffff;
    font-weight: bold;
    font-size: 2.0rem;
    text-align: center; 
    background: #20584E;
        }
    .midashi-box01{
    position: relative;
    padding: 15px;
    border-radius: 5px;
    /*border: 2px solid #ffffff;*/
    color: #ffffff;
    font-weight: bold;
    font-size: 2.0rem;
    text-align: center; 
    background: #273F62;
        }
  .midashi-box00:before {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    width: 20px;
    /*background-color: #fff;*/
    content: "";
}
  .midashi-box01:before {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    width: 20px;
    /*background-color: #fff;*/
    content: "";
}
.midashi-box00:after {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translateX(-50%);
    height: 20px;
    width: 2px;
    background-color: #ffffff;
    content: "";
}
.midashi-box01:after {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translateX(-50%);
    height: 20px;
    width: 2px;
    background-color: #ffffff;
    content: "";
}
.price{
    margin: 0 auto;
    font-size:2.6rem;
    /*background: linear-gradient(transparent 70%, #87CEFA 70%);*/
        }
 .mini{
    font-size:1.4rem;
        }
 .small{
            font-size:1.2rem;
        }
.coment{
    font-size: 1.6rem;
    text-align: left;
    text-shadow: 1px 1px #001625;
    margin: 1em auto;
        }


.l-layout-regular .l-section .l-layout-regular__headlead {
        margin-bottom: 0!important;
    }