@charset "utf-8";
/*------------------------------------------------------------
	reform
------------------------------------------------------------*/
#gNavi li:nth-child(2) p {
    color: #0B57A0;
    border-color: #0B57A0;
}
#main {
    padding-top: 0;
}
#main .bgBox02.content {
    max-width: 970px;
    width: 100%;
    margin: 0 auto;
}
#main section {
    margin-bottom: 100px;
}
#main h2 {
    margin-bottom: 25px;
    font-size: 3.58rem;
}
#main h3 {
    font-size: 1.2em;
    margin-bottom: 20px;
}
.txt_sp {
    display: none;
}
#main .zeh_main_v .zeh_main_v_index {
    position: relative;
    margin-top: 250px;
    padding: 2em 4em;
    background: #DDEFF8;
}
#main .zeh_main_v .zeh_main_v_index h2 {
    position: absolute;
    top: -40px;
    left: 50%;
    -webkit-transform: translate( -50%, -50%);
    -ms-transform: translate( -50%, -50%);
    transform: translate( -50%, -50%);
    font-size: 24px;
    font-family: inherit;
    color: inherit;
}
#main .zeh_main_v .zeh_main_v_index .triangle {
    position: absolute;
    top: -149px;
    left: 0;
    width: 100%;
    height: 150px;
    aspect-ratio: 2;
    clip-path: polygon(50% 0,100% 100%,0 100%);
    background: #DDEFF8;
}
#main .zeh_main_v .zeh_main_v_index ul li {
    font-size: 16px;
    line-height: 2.4em;
}
#main .zeh_main_v .zeh_main_v_index ul li ul li {
    margin-left: 2em;
}
#main .zeh_main_v .zeh_main_v_index a:hover {
    opacity: 0.4;
    text-decoration: underline;
}
#main .zeh_img {
    display: block;
    overflow: hidden;
    margin: 40px auto 25px;
}
#main .zeh_img source,
#main .zeh_img img {
    transform: scale(1);
    transition : all .8s;
}
#main .zeh_img source:hover,
#main .zeh_img img:hover {
    transform: scale(1.1);
}
#main .zeh_txt {
    margin: 0 0 40px;
}
#main .zeh_txt p {
    line-height: 2em;
}
#main .zeh_txt a {
    color: #0B57A0;
    text-decoration: underline;
}
#main .zeh_section_goal table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    margin-bottom: 10px;
}
#main .zeh_section_goal table th,
#main .zeh_section_goal table td {
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    text-align: center;
    padding: 10px 0;
}
#main .zeh_section_goal table tr:first-of-type th {
    background: #DDEFF8;
    font-weight: bold;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
#main .zeh_section_goal table tr:first-of-type th:last-of-type {
    border-right: 1px solid #DDEFF8;
}
#main .zeh_section_goal table tr:nth-of-type(2) th,
#main .zeh_section_goal table td h4 {
    background: #ddd;
    font-weight: bold;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
#main .zeh_section_goal table tr:nth-of-type(2) th:nth-of-type(2) {
    border-right: 1px solid #ddd;
}
#main .zeh_section_goal table .zeh_section_goal_tr_shinchiku td,
#main .zeh_section_goal table .zeh_section_goal_tr_kizon td {
    padding: 0;
}
#main .zeh_section_goal table tr.zeh_section_goal_tr_shinchiku td h4 {
    padding: 10px 0;
}
#main .zeh_section_goal table .zeh_section_goal_tr_kizon td h4 {
    padding: 10px 0;
    border-bottom: none;
}
#main .zeh_section_goal table tr.zeh_section_goal_tr_shinchiku div,
#main .zeh_section_goal table tr.zeh_section_goal_tr_kizon div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
#main .zeh_section_goal table tr.zeh_section_goal_tr_shinchiku h4,
#main .zeh_section_goal table tr.zeh_section_goal_tr_kizon h4 {
    width: 30%;
    min-width: 1em;
}
#main .zeh_section_goal table tr.zeh_section_goal_tr_shinchiku span,
#main .zeh_section_goal table tr.zeh_section_goal_tr_kizon span {
    display: block;
    padding-right: 2em;
}



@media all and (max-width: 1002px) {
    #main {
        padding-top: 35px;
    }
    #main section {
        margin-bottom: 40px;
    }
    #main .bgBox02.content {
        width: auto;
        margin: 0 14px 30px;
    }
    #main h2 {
        margin-bottom: 15px;
    }
    #main .zeh_main_v .zeh_main_v_index {
        margin-top: 180px;
    }
    #main .zeh_main_v .zeh_main_v_index .triangle {
        top: -119px;
        height: 120px;
    }
    #main .zeh_section_goal .zeh_section_goal_table {
        overflow-x: scroll;
    }
    #main .zeh_section_goal .zeh_section_goal_table table {
        width: 800px;
        max-width: 800px;
        margin: 0 auto;
    }
    .txt_sp {
        display: block;
    }
}
@media all and (max-width: 374px) {
}


/*fadeinアニメーション*/
.fadeinUP {
    opacity : 0;
    transform : translate(0, 50px);
    transition : all 1s;
} 
.fadeinUP.active{
    opacity : 1;
    transform : translate(0, 0);
}
.fadeinSlide {
    opacity : 0;
    transform : translate(50px, 0);
    transition : all 1s;
} 
.fadeinSlide.active{
    opacity : 1;
    transform : translate(0, 0);
}
.fadeinPinchOut {
    opacity : 0;
    transform: scale(0.9);
    transition : all .8s;
} 
.fadeinPinchOut.active{
    opacity : 1;
    transform: scale(1);
}
.strong {
  position: relative;
  display: inline-block;
}
.strong::after {
  position: absolute;
  bottom: 4px;/*テキストからの距離*/
  left: 0;
    z-index: -1;
  content: '';
  width: 100%;/*hover時に表示*/
  height: 9px;/*下線の高さ*/
  background: #DDEFF8;/*下線の色*/
  transform: scale(0, 1);/*トランス前の下線*/
  transform-origin: left top;/*トランスフォーム開始位置*/
  transition: transform 2s;/*アニメーション速度*/
}
.strong.active::after {
  transform: scale(1, 1);/*トランス後の下線*/
}
@media all and (max-width: 1002px) {
    .strong {
        display: inline;
        background: linear-gradient(transparent 60%, #DDEFF8 60%);
    }
    .strong::after {
        display: none;
    }
}
