@charset "UTF-8";
/* CSS Document */


@media (min-width: 1250px) {
	#head_logo{
		position:relative;
		z-index: 10;
		transition: .5s;
	}
}
@media (max-width: 1249px) {
	#head_logo{
        z-index: 10;
        transition: .5s;
        width: 80%;
        display: block;
        position: relative;
	}
}
nav{
	font-family: english-grotesque, sans-serif;
	font-weight: 300;
	font-style: normal;
}
.bodyfixed{
    position: fixed!important;
}

/*-----------------header-----------------*/
@media (min-width: 1250px) {
    .head_logo{
        position:absolute;
        top:10px;
        left: 20px;
        z-index: 99;
    }
    #header{
        width: 100%;
        height: 60px;
        padding: 5px 20px;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0;
        z-index: 20;
        transition: all 0.3s ease-out;
		background: linear-gradient(93deg, #FFF 3.49%, #E4EDFF 97.95%);
        display: flex;
    }
    #header.fixed-hide{
        top: -120px;
    }
    #header.fixed-show{
        position: fixed;
        top: 0!important;
        left: 0!important;
    }
	.menu{
		width: 30px;
		height: 26px;
		position: absolute;
		right: 140px;
		top: 17px;
		z-index: 99;
		cursor: pointer;
		display: none!important;
	}
	.pcmenu > ul{
		display:flex;
		position: relative;
		float: right;
		height: 60px;
		align-items: center;
		padding-right: 170px;
	}
	.pcmenu > ul > li{
		padding-right: 30px;
	}
	.pcmenu > ul > li > a{
		font-weight: 700;
		display: flex;
		align-items: center;
	}
}
@media (max-width: 1249px) {
    .head_logo{
        max-width: 160px;
        position:absolute;
        top:10px;
        left: 20px;
        z-index: 2;
    }
    .head_logo > a > img{
        width: 100%;
        height: auto;
    }
    #header{
        position: fixed;
        top: 0;
        z-index: 20;
        display: flex;
        align-items: center;
        width: 100%;
        height: 60px;
        padding: 0 10px;
        transition: all 0.3s ease-out;
		background: linear-gradient(93deg, #FFF 3.49%, #E4EDFF 97.95%);
    }
    #header.fixed-hide{
        top: -76px;
    }
    #header.fixed-show{
        position: fixed;
        top: 0!important;
        left: 0!important;
    }
	.menu{
		width: 60px;
		height: 60px;
		position: absolute;
		right: 0;
		top:0;
		z-index: 99;
		cursor: pointer;
		text-align: center;
		font-size: 1rem;
		line-height: 1em;
	}
	.pcmenu > ul{
		display: none;
	}
}
.c_change > svg { fill: currentColor; }

/*menu*/
.menu__line{
    width: 34px;
    height: 4px;
    background: #272433;
    display: block;
    position: absolute;
    transition:transform .3s;
	box-sizing: border-box;
}
.menu__line.active{
    width: 34px;
    height: 4px;
    display: block;
    position: absolute;
    transition:transform .3s;
	box-sizing: border-box;
}
.menu__line--top:nth-of-type(1) {
	top: 17px;
	right: 13px;
}
.menu__line--bottom:nth-of-type(2) {
	top: 39px;
	right: 13px;
}

.menu__line--top:nth-of-type(1) {
  animation: menu-bar01 .5s forwards;
}
@keyframes menu-bar01 {
  0% {
    transform: translateY(12px) rotate(45deg);
  }
  50% {
    transform: translateY(12px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.menu__line--bottom:nth-of-type(2) {
  animation: menu-bar02 .5s forwards;
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-10px) rotate(-45deg);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.menu__line--top.active:nth-of-type(1) {
  animation: active-menu-bar01 .5s forwards;
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(12px) rotate(0);
  }
  100% {
    transform: translateY(12px) rotate(45deg);
  }
}
.menu__line--bottom.active:nth-of-type(2) {
  animation: active-menu-bar03 .5s forwards;
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(-10px) rotate(-45deg);
  }
}


@media (max-width: 1249px) {
    .header_inner{
        padding:0;
        margin: 0;
        position: relative;
        z-index: 99;
    }
}
.btn_login > a{
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    width: 166px;
    height: 40px;
    padding: 10px 33px 10px 20px;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: #fff;
    border: solid 1px #002060;
    color: #002060;
    transition: .3s;
    position: relative;
}
.btn_login > a svg {
    position: absolute;
    right: 20px;
}
.btn_login > a:hover{
    background:#00A040;
    border: solid 1px #00A040;
    color:#fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.btn_login > a svg path{
    transition: .3s;
}
.btn_login > a:hover svg path{
    fill: #fff;
}
.header_menu{
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (min-width: 1250px) {
    .btn_login > a {
        margin: 0 8px;
    }
}
@media (max-width: 1249px) {
    .header_menu{
        width: 60px;
        padding:0;
    }
    .btn_login > a {
        width: auto;
        height: auto;
        border-radius: 10px;
        font-size: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
        gap: 0;
        padding: 10px;
    }
    .btn_login > a svg {
        position: absolute;
        margin-right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
}

.btn_form > a {
    color: #fff !important;
    font-size: 1.6rem;
    font-weight: 700;
    transition: all 0.5s ease;
    display: flex;
    width: 166px;
    height: 40px;
    padding: 10px 40px 10px 20px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 20px;
    background: #002060;
    border: solid 1px #002060;
    text-decoration: none;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.btn_form > a > .arrow {
    position: absolute!important;
    right: 10px!important;
}
@media (max-width: 1249px) {
	.btn_form > a{
		width: auto;
        height: auto;
		border-radius: 10px;
		font-size: 2rem;
		display: flex;
		align-items: center;
		justify-content: center;
        margin-top: 20px;
        padding: 10px;
	}
    .btn_form > a > .arrow {
        position: static;
        margin-left: 10px;
    }
}
/* ホバー時の背景色変化 */
.btn_form > a:hover {
    background: #00A040;
    border: solid 1px #00A040;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
/* 矢印コンテナ */
.btn_form > a > .arrow {
    width: 23px;
    height: 23px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    overflow: hidden;
}
/* メイン矢印（通常表示される矢印） */
.arrow-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.arrow-main::before {
    content: '';
    width: 8px;
    height: 8px;
    border-top: solid 1px #002060;
    border-right: solid 1px #002060;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.arrow-main::after {
    content: '';
    width: 10px;
    height: 1px;
    background: #002060;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-45deg);
}
/* 隠れた矢印（左下から登場する矢印） */
.arrow-hidden {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) translate(-20px,20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.arrow-hidden::before {
    content: '';
    width: 8px;
    height: 8px;
    border-top: solid 1px #002060;
    border-right: solid 1px #002060;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.arrow-hidden::after {
    content: '';
    width: 10px;
    height: 1px;
    background: #002060;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-45deg);
}
/* ホバー時のアニメーション */
.btn_form > a:hover .arrow-main {
    opacity: 0;
    transform: translate(-50%,-50%) translate(20px,-20px);
}
.btn_form > a:hover .arrow-hidden {
    opacity: 1;
    transform: translate(-50%,-50%) translate(0,0);
}
/* アクティブ状態 */
.btn_form > a:active {
    transform: translateY(1px);
}
.arrow-main,
.arrow-hidden {
    will-change: transform,opacity;
}
/* より細かいアニメーション調整 */
.btn_form > a:hover .arrow {
    background: #fff;
}

/* 受講案内ボタン（深いグリーン） */
.btn_course > a {
color: #fff !important;
font-size: 1.6rem;
font-weight: 700;
transition: all 0.5s ease;
display: flex;
width: 166px;
height: 40px;
padding: 10px 40px 10px 20px;
justify-content: center;
align-items: center;
flex-shrink: 0;
border-radius: 20px;
background: #007030;
border: solid 1px #007030;
text-decoration: none;
margin: 0 auto;
position: relative;
overflow: hidden;
}
.btn_course > a > svg {
position: absolute;
right: 10px;
width: 23px;
height: 23px;
fill: #fff;
transition: all 0.3s ease;
}
@media (max-width: 1249px) {
.btn_course > a{
width: auto;
height: auto;
border-radius: 10px;
font-size: 2rem;
display: flex;
align-items: center;
justify-content: center;
margin-top: 20px;
padding: 10px;
}
.btn_course > a > svg {
position: absolute;
margin-right: 10px;
top: 50%;
right: 0;
transform: translateY(-50%);
}
}
.btn_course > a:hover {
background: #00A040;
border: solid 1px #00A040;
color: #fff !important;
box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.btn_course > a:active {
transform: translateY(1px);
}


/* 右向き矢印バージョン */
.btn_form_right > a {
    font-size: 1.6rem;
    font-weight: 700;
    transition: all 0.5s ease;
    display: inline-flex;
    width: auto;
    height: 40px;
    padding: 10px 15px 10px 20px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 20px;
    background: #fff;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    gap: 10px;
}
@media (max-width: 1249px) {
	.btn_form_right > a{
		width: auto;
        height: auto;
        border-radius: 26px;
		font-size: 18px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
        margin-top: 20px;
	}
}
/* ホバー時の背景色変化 */
.btn_form_right > a:hover {
    background: #fff;
    color: #00A040 !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
/* 矢印コンテナ */
.btn_form_right > a > .arrow {
    width: 23px;
    height: 23px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00A040;
    overflow: hidden;
}
/* メイン矢印（通常表示される右向き矢印） */
.arrow-main-right {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.arrow-main-right::before {
    content: '';
    width: 8px;
    height: 8px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
}
.arrow-main-right::after {
    content: '';
    width: 10px;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
/* 隠れた矢印（左から登場する右向き矢印） */
.arrow-hidden-right {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) translate(-20px,0px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.arrow-hidden-right::before {
    content: '';
    width: 8px;
    height: 8px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
}
.arrow-hidden-right::after {
    content: '';
    width: 10px;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

/* ホバー時のアニメーション（右に消えて左から現れる） */
.btn_form_right > a:hover .arrow-main-right {
    opacity: 0;
    transform: translate(-50%,-50%) translate(20px,0px);
}
.btn_form_right > a:hover .arrow-hidden-right {
    opacity: 1;
    transform: translate(-50%,-50%) translate(0,0);
}
/* アクティブ状態 */
.btn_form_right > a:active {
    transform: translateY(1px);
}
.arrow-main-right,
.arrow-hidden-right {
    will-change: transform,opacity;
}
/* より細かいアニメーション調整 */
.btn_form_right > a:hover .arrow {
    background: #00A040;
}

.top_main_btn_form > a:hover .arrow-main {
    opacity: 0;
    transform: translate(-50%,-50%) translate(20px,-20px);
}
.top_main_btn_form > a:hover .arrow-hidden {
    opacity: 1;
    transform: translate(-50%,-50%) translate(0,0);
}
.top_main_btn_form > a:active {
    transform: translateY(1px);
}
.arrow-main,
.arrow-hidden {
    will-change: transform,opacity;
}
.top_main_btn_form > a:hover .arrow {
    background: #fff;
}

/*gnav*/

@media (min-width: 1250px) {
	.gnav{
		display: block!important;
	}
	.gnav__menu__item > a{
		font-size: 1.7rem;
		font-weight: 700;
        margin-right:30px;
		text-decoration: none;
		transition: .2s;
		position: relative;
        display: inline-flex; 
        align-items: center;
	}
	.gnav__menu__item > a:hover{
		color: #00A040;
	}
	.gnav__menu__item > a::after{
		content: '';
		position: absolute;
		bottom: 10px;
		left: 0;
		display: block;
		width: 0%;
		border-bottom: solid 2px #00A040;
        top: 27px;
        transition: .1s;
	}
	.gnav__menu__item > a:hover::after{
		content: '';
		position: absolute;
		bottom: 10px;
		left: 0;
		display: block;
		width: 100%;
		border-bottom: solid 2px #00A040;
        top: 27px;
	}
}

@media(max-width: 1249px){
	.gnav{
		background-color: #ffffff;
		display: none;
		height: 100vh;
		position: absolute;
		top: 0;
		right: 0;
		width: 100%;
		z-index: 98;
        background: linear-gradient(93deg, #FFF 3.49%, #E4EDFF 97.95%);
	}
	.gnav__wrap{
		width: 100%;
		height: 100%;
		position: absolute;
		overflow-y: scroll!important;
	}
	.gnav__menu__item > a{
		font-size: 2rem;
		font-weight: 700;
        margin:0;
		text-decoration: none;
		transition: .2s;
		position: relative;
        display: flex;
        align-items: center; 
        padding:20px 0;
		border-bottom: dotted 1px #00A040;
	}
    .gnav__menu__item > a::before{
		content: '';
		width: 9px;
		height: 9px;
		border-radius: 5px;
		background: #00A040;
		display: inline-block;
		margin-right: 5px;
        position: relative;
	}
	.gnav__menu__item > a:hover{
		color: #00A040;
	}
	.gnav__menu__item > a::after{
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		display: block;
		width: 0%;
		border-bottom: solid 2px #00A040;
        top: 27px;
        transition: .1s;
	}
	.gnav__menu__item > a:hover::after{
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		display: block;
		width: 100%;
		border-bottom: solid 2px #00A040;
        top: 27px;
	}
}

@media (min-width: 1250px) {
    .gnav__menu{
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
		justify-content: flex-end;
		align-items: center;
        box-sizing: border-box;
    }
    .gnav__menu > li{
        list-style:none;
        display: inline-block;
        box-sizing: border-box;
        line-height: 1em;
    }
	.h_fmenu{
		display: none;
	}
}
@media (max-width: 1249px) {
    .gnav__menu{
        width: 100%;
        position: relative;
		padding: 150px 20px 0 20px !important;
        box-sizing: border-box;
        display: block;
    }
    .gnav__menu > li{
        margin: 0 auto;
        max-width: 400px;
    }
    
    .gnav__menu .top_border_dotted {
        border-top: dotted 1px #00A040;
    }
    
    .gnav__menu .bottom_border_none > a {
        padding-bottom:0px!important;
        border-bottom: 0px!important;
    }

	.h_submenu{
		position:relative;
		padding: 0 80px;
		display: block;
	}
	.h_submenu > li{
		list-style: none;
		color: #fff;
		padding-bottom: 20px;
		padding-left: 10px;
		margin-bottom: 20px;
		border-bottom: dotted 1px #fff;
	}
	.h_submenu > li::before{
		content:'>';
		padding-right: 3px;
	}
	.h_submenu > li > a{
		color: #fff;
		font-size: 1.5rem;
	}
	.h_fmenu{
		position:relative;
		padding: 0 30px 70px 30px!important;
		display: block;
	}
	.h_fmenu > li{
		list-style: none;
		color: #fff;
		padding-bottom: 20px;
		padding-left: 10px;
		margin-bottom: 20px;
		border-bottom: dotted 1px #fff;
	}
	.h_fmenu > li::before{
		content:'>';
		padding-right: 3px;
	}
	.h_fmenu > li > a{
		color: #fff;
		font-size: 1.5rem;
	}
}

@media (max-width: 1249px) {
    .head_child_ul {
      margin-top: 0px!important;
    }
    
    .head_child_ul li::before {
        content: ""!important;
    }
    
    .head_child_ul li {
        font-size: 12px;
        line-height: 32px;
        width: calc(50% - 1px)!important;
        white-space: nowrap;
    }
}
.gnav_inner{
    width:100%;
    position: relative;
    clear: both;
    overflow: hidden;
}
.gnav_inner > .title {
    float: left;
}
.gnav_inner > .title > a{
    display:inline-block;
    font-weight: 500;
    border: solid 1px #fff;
    border-radius: 15px;
    color: #fff;
    margin-top: 7px;
    margin-bottom: 15px;
    transition: all 0.5s ease;
    font-size: 1.5rem;
    padding: 5px 12px;
    line-height: 1.1em;
}
.gnav_inner > ul{
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
}

#head_logo a img {
    width: 300px;
}
@media (min-width: 1250px) {
    
    #head_logo a {
        display: flex;
        align-items: center;
    }
    #head_logo a img {
        margin-top:-8px;
        height:40px!important;
    }
    
    .gnav_inner > ul > li{
        width: calc(100% - 20px);
        display: block;
        padding-bottom: 7px;
        margin-bottom: 15px;
        margin-left: 15px;
        margin-right: 20px;
        border-bottom: dotted 1px #fff;
    }
}


@media (max-width: 1249px) {
    
    #head_logo a{
        display: flex;
        align-items: center;
    }
    #head_logo a img {
        width: 100%;
        height: auto!important;
    }
    .gnav_inner > ul > li{
        width: calc(100% - 40px);
        display: block;
        padding-bottom: 5px;
        margin-bottom: 15px;
        margin-right: 30px;
        margin-left: 10px;
        border-bottom: dotted 1px #fff;
    }
}
.gnav_inner > ul > li > a{
    color:#fff;
}

@media (min-width: 1250px) {
    .menu_col2{
        width:calc(50% - 30px)!important;
        box-sizing: border-box!important;
        margin: 0 15px 15px 15px!important;
        padding: 0 0 7px 0!important;
    }
}
@media (max-width: 1249px) {
    .menu_col2{
        width:calc(50% - 30px)!important;
        box-sizing: border-box!important;
        margin-right: 10px!important;
        margin-left: 10px!important;
        padding-bottom: 7px;
        margin-bottom: 15px;
    }
}
.megalink{
	display:block;
}

@media (min-width: 1249px) {
    .megamenu_col2{
		display: flex;
		flex-wrap: nowrap;
		justify-content: flex-start;
    }
    .megamenu_col2 .col {
        width: 50%;
        padding: 4px;
        position: relative;
    }
    .megamenu_col2 .col a {
        display: flex;
        padding: 30px 22px;
        text-decoration: none;
        transition: all 0.3s ease;
        height: 100%;
        border-radius: 12px;
        margin: 0;
        border: 1px solid #e0e0e0;
        position: relative;
    }
    .megamenu_col2 .col a:hover {
        background: rgba(0, 160, 64, 0.05);
        box-shadow: 0 2px 12px rgba(0, 32, 96, 0.1);
        border-color: #00A040;
    }
    .megamenu_col2 .col h3 {
        color: #666;
        font-size: 17px;
        font-weight: 600;
        border-bottom: none;
        transition: all 0.3s ease;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .megamenu_col2 .col a::before {
        content: '';
        width: 8px;
        height: 8px;
        border-top: solid 1px #666;
        border-right: solid 1px #666;
        position: absolute;
        top: 50%;
        right: 26px;
        transform: translateY(-50%) rotate(45deg);
        transition: all 0.3s ease;
    }
    .megamenu_col2 .col a::after {
        content: '';
        width: 10px;
        height: 1px;
        background: #666;
        position: absolute;
        top: 50%;
        right: 26px;
        transform: translateY(-50%);
        transition: all 0.3s ease;
    }
    .megamenu_col2 .col a:hover h3 {
        color: #00A040;
    }
    .megamenu_col2 .col a:hover::before {
        border-top-color: #00A040;
        border-right-color: #00A040;
        transform: translateY(-50%) translateX(4px) rotate(45deg);
    }
    .megamenu_col2 .col a:hover::after {
        background: #00A040;
        transform: translateY(-50%) translateX(4px);
    }
    .megamenu_col3{
		display: flex;
		flex-wrap: nowrap;
		justify-content: flex-start;
    }
    .megamenu_col3 .col {
        width: 33.333%;
        padding: 4px;
        position: relative;
    }
    .megamenu_col3 .col a {
        display: flex;
        padding: 30px 22px;
        text-decoration: none;
        transition: all 0.3s ease;
        height: 100%;
        border-radius: 12px;
        margin: 0;
        border: 1px solid #e0e0e0;
        position: relative;
    }
    .megamenu_col3 .col a:hover {
        background: rgba(0, 160, 64, 0.05);
        box-shadow: 0 2px 12px rgba(0, 32, 96, 0.1);
        border-color: #00A040;
    }
    .megamenu_col3 .col h3 {
        color: #666;
        font-size: 17px;
        font-weight: 600;
        border-bottom: none;
        transition: all 0.3s ease;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .megamenu_col3 .col a::before {
        content: '';
        width: 8px;
        height: 8px;
        border-top: solid 1px #666;
        border-right: solid 1px #666;
        position: absolute;
        top: 50%;
        right: 26px;
        transform: translateY(-50%) rotate(45deg);
        transition: all 0.3s ease;
    }
    .megamenu_col3 .col a::after {
        content: '';
        width: 10px;
        height: 1px;
        background: #666;
        position: absolute;
        top: 50%;
        right: 26px;
        transform: translateY(-50%);
        transition: all 0.3s ease;
    }
    .megamenu_col3 .col a:hover h3 {
        color: #00A040;
    }
    .megamenu_col3 .col a:hover::before {
        border-top-color: #00A040;
        border-right-color: #00A040;
        transform: translateY(-50%) translateX(4px) rotate(45deg);
    }
    .megamenu_col3 .col a:hover::after {
        background: #00A040;
        transform: translateY(-50%) translateX(4px);
    }
}

@media (max-width: 1248px) {
    .megamenu .col{
        padding:10px 0;}
    .megamenu .col a{
        transition: all 0.3s ease;
    }
    .megamenu .col a:hover{
        color: #00A040;
    }
    /* 受講案内メニューの色変更 */
    .megamenu_ctt_course .col a {
        font-weight: 700!important;
        display: flex;
        align-items: center;
        position: relative;
        padding-left: 20px;
    }
    .megamenu_ctt_course .col a::before {
        content: '';
        width: 7px;
        height: 7px;
        border-top: solid 1px #007030;
        border-right: solid 1px #007030;
        transform: rotate(45deg);
        position: absolute;
        left: 0;
        flex-shrink: 0;
    }
    .megamenu_ctt_course .col a:hover {
        color: #00A040;
    }
    .megamenu_ctt_course .col a:hover::before {
        border-color: #00A040;
    }
}

@media (min-width: 1250px) {
	.megamenu_ctt{
		position: absolute;
		top: 60px;
		width: calc(100vw - 20px);
		max-width: 1280px;
		left: 50%;
		transform: translateX(-50%);
		color: #1b9bd7;
		transition: all 0.3s ease;	
		opacity: 0;
        overflow: hidden!important;
        z-index:0;
        max-height: 0;
		border-radius: 16px;
		background: #fff;
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	}
    .megamenu_ctt_inner{
        max-width: 1280px;
        margin:0 auto;
        position: relative;
		display: flex;
		flex-wrap: wrap;
		align-items: stretch;
		justify-content: space-between;
		padding: 20px 0;
    }
    
	.megamenu_ctt_inner > .megamenu{
		width: 100%;
	}
	.megalink:hover .megamenu_ctt {  /*	下層メニューのスタイル（親項目ホバー時） */
  		display:block;
		transition: all 0.3s ease;	
		opacity: 1;
        max-height: 100vh!important;
	}
    
    .megalink a:hover + .megamenu_ctt {  /*	下層メニューのスタイル（親項目ホバー時） */
  		display:block;
		transition: all 0.3s ease;	
		opacity: 1;
        max-height: 100vh!important;
        z-index:2000;
	}

    .megamenu_ctt_inner > .title{
        width: calc(230px - 60px);
        margin:  50px 30px;
		border-right:dotted 1px #1b9bd7;
		display: flex;
		flex-wrap: wrap;
        align-items: flex-start;
        display:none;
    }
    .megamenu_ctt_inner > .title > h2{
        display:block;
        font-weight: 700;
        font-size: 2.2rem;
        padding-bottom: 15px;
		letter-spacing: 3px;
        color: #1b9bd7;
    }
    .megamenu_ctt_inner > .title > a{
        border: solid 1px #fff;
        border-radius: 13px;
        color: #1b9bd7;
        margin-top: 10px;
        transition: all 0.5s ease;
        font-size: 1.4rem;
        padding: 2px 7px;
    }
    .megamenu_ctt_inner > .title > a:hover{
        opacity: 0.7;
    }
}

@media (max-width: 1249px) {
    .megamenu_ctt_inner_sp {
        padding: 0 16px!important;
    }
    
    .megamenu_ctt_inner {
        padding: 16px!important;
    }
    
    .megamenu_ctt_inner_sp .s_con_txt_tit span {
        font-size:12px!important;
        display: inline!important;
        padding-left:10px!important;
    }
    .megamenu_ctt {
        display:block!important;
    }
    .megamenu_ctt_inner .title {
        display:none;
    }
}
.megamenu_ctt_inner > .title > h2 > span{
    display:inline-block;
	font-size: 1.8rem;
	font-weight: normal;
	padding-top: 10px;
	letter-spacing: 0;
}
.before_li:hover + .megalink1 .megamenu_ctt {  /*	下層メニューのスタイル（親項目ホバー時） */
    display:block;
    transition: all 0.3s ease;	
    opacity: 1;
    max-height: 100vh!important;
}
.before_li:hover + .gnav__menu__item > a::after{
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    display: block;
    width: 100%;
    border-bottom: solid 2px #0368B5;
}
@media (max-width: 1249px) {
    .gnav_menu_top {
        margin-bottom:80px;
    }
}
.chenge_image_visible{
    transition:all 0.5s ease;
    opacity: 1!important;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 1250px) {
	.megamenu > div > ul {
		background-color: inherit;
		margin: -15px 0;
	}
	.megamenu > div > ul > li{
		width: 100%;
		padding: 15px;
		box-sizing: border-box;
        line-height: 1.4em;
		position: relative;
        white-space: nowrap;
        letter-spacing: 1px;
	}
	.megamenu > div > ul > li::before {
		content: "・";
		color:#1b9bd7;
		padding-right:5px;
		display: inline-block;
		position: absolute;
		left: -5px;
	}
	.megamenu > div > ul > li > ul{
		list-style: disc;
	}
	.megamenu > div > ul > li > ul > li{
		padding: 15px 15px 0 15px;
		display: block;
		color:#1b9bd7;
	}
	.megamenu > div > ul > li > ul > li::before{
		content: "・";
		color:#1b9bd7;
		display: inline-block;
		position: absolute;
		left: 10px;
	}
}
@media (max-width: 1249px) {
	.megamenu > div > ul {
		background-color: #fff;
	}
	.megamenu > div > ul > li{
		width: 100%;
		padding: 15px;
		box-sizing: border-box;
		border-bottom:dotted 1px #1b9bd7;
        position: relative;
	}
	.megamenu > div > ul > li::before {
		content: "・";
		color:#1b9bd7;
		padding-right:5px;
		display: inline-block;
        top: 16px;
        position: absolute;
        left: 10px;
	}
	.megamenu > div > ul > li > ul > li{
		padding: 10px 10px 0 45px;
		display: block;
		color:#1b9bd7;
	}
	.megamenu > div > ul > li > ul > li::before{
		content: "・";
		color:#1b9bd7;
		display: inline-block;
		position: absolute;
		left: 40px;
	}
}
.megamenu > div > ul > li > a{
	transition: all 0.5s ease;
    color: #1b9bd7;
}
.megamenu > div > ul > li > a:hover{
	opacity: 0.7;
}
@media (min-width: 1250px) {
	.megamenu{
		margin:20px;
		padding-right: 10px;
	}
	.snav_ttl{
		display: inline-block;
		position: relative;
		padding-right: 20px;
		color:#1b9bd7;
	}
}
@media (max-width: 1249px) {
	.megamenu_ctt{
        display: none;
	}
    .megamenu > div > ul > li > a {
        font-size:13px;
		display: inline-block;
        padding-left: 15px;
        letter-spacing: 1px;
    }
	.snav_ttl{
		display: inline-block;
		position: relative;
		padding-right: 20px;
		color:#1b9bd7;
		width: calc(100% - 30px);
	}
}
.megamenu > div > ul{
	list-style:none;
	font-weight: 700;
    display: flex;
    flex-wrap: wrap;
}
.snav_ttl > .searchcttopen{
	width:100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	cursor:pointer;
}
.snav_ttl > .searchcttopen::after{
	content: '+';
	position: absolute;
	top: -2px;
	right: 0;
	font-size: 2rem;
}
.snav_ttl > .searchcttopen.active2{
	position: absolute;
	top: 0;
	right: 0;
}
.snav_ttl > .searchcttopen.active2::after{
	content: '-';
	position: absolute;
	top: -2px;
	right: 0;
	font-size: 2rem;
}
.searchctt {
   width: 100%;
   margin: 0 auto;
   display: none;
   overflow: hidden;
   transition: none;
}
.active2 + .searchctt {
   transform: translatex(0);
}
@media (min-width: 1250px) {
	.spnav{
		display:none;
	}
}
@media (max-width: 1249px) {
	.spnav{
		display:block;
		padding: 40px 40px 140px 40px;
	}
	.spnav li{
		padding-bottom: 10px;
	}
	.spnav li:last-child{
		padding-bottom: 0;
	}
	.spnav li a{
		text-decoration:underline;
		color: #1b9bd7;
		font-size: 1.4rem;
	}
}

@media (min-width: 1250px) {
	.h_search{
		width:270px;
		height: 40px;
		border-radius: 10px;
		background: #fff;
		position:absolute;
		top:10px;
		right: 10px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		border: solid 1px #1b9bd7;
		padding: 5px 10px;
		box-sizing: border-box;
	}
}
@media (max-width: 1249px) {
	.h_search{
		width:270px;
		height: 40px;
		border-radius: 10px;
		background: #fff;
		position:absolute;
		top:90px;
		left:50%;
		transform: translateX(-50%);
		display: flex;
		align-items: center;
		justify-content: space-between;
		border: solid 1px #1b9bd7;
		padding: 5px 10px;
		box-sizing: border-box;
	}
	.hbtn_box{
		width:270px!important;
		position:absolute!important;
		top:70px;
		left:50%;
		transform: translateX(-50%);
		
	}
}
.h_search > .input{
	padding-right: 10px;
	border:none;
	outline:0;
	font-family: "Noto Sans JP";
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 500;
	line-height: 32px; /* 200% */
	background: #fff!important;
	display: block;
	width: 100%;
}
.h_search > .input::placeholder{
	color: #C2C2C2!important;
}
.h_search > .button{
	padding-left: 10px;
	border-left: dotted 1px #1b9bd7;
}




@media (max-width: 1249px) {
    .megamenu .s_cont_1, .megamenu .s_cont_2, .megamenu .s_cont_3, .megamenu .s_cont_4 {
        position: relative;
    }
    .megamenu .s_cont_1:before, .megamenu .s_cont_2:before, .megamenu .s_cont_3:before, .megamenu .s_cont_4:before {
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 4%;
        margin: auto;
        content: "";
        width: 8px;
        height: 8px;
        border: 2px solid;
        border-color: transparent transparent #565656 #565656;
        transform: rotate(-45deg);
        z-index: 2000;
    }
    
    .megamenu .open:before {
        transform: rotate(135deg)!important;
    }
    
    .sp_toggle > .toggle_link {
        width: 100%;
        position: relative;
        color: #1b9bd7 !important;
        font-weight: 700;
        padding: 20px 0;
        text-decoration: none;
        transition: .5s;
        display: block;
        font-size: 2rem;
    }
    
    .sp_toggle > .toggle_link:before {
        display: block;
        position: absolute;
        top: -8px;
        bottom: 0;
        right: 4%;
        margin: auto;
        content: "";
        width: 8px;
        height: 8px;
        border: 2px solid;
        border-color: transparent transparent #565656 #565656;
        transform: rotate(-45deg);
        z-index: 2000;
    }
    
    .sp_toggle.open > .toggle_link:before {
        transform: rotate(135deg)!important;
    }
    
    .sp_toggle > .megamenu_ctt {
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      margin-top: 0;
      transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
    }

    .open .megamenu_ctt {
      max-height: 1000px; /* 中身の高さに応じて大きめに。超えなければOK */
      opacity: 1;
    }
    
    
}


.s_con_txt_link2_wrap {
    display: flex;
    flex-wrap: wrap; 
}

.s_con_txt_link2 {
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 400;
    color: #000000!important;
    font-size: 16px;
    letter-spacing: 1px;
    line-height:22px;
    position: relative;
    padding:5px 25px 5px 10px;
    cursor: pointer;
    margin:0 15px 10px 0;
    background-color:#f4f3ee;
    border-radius: 10px;
    
}
.s_con_txt_link2::after {
    content: "";
    background-image: url(../img/arrow_blue.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 3px;
    transition: right 0.3s ease;
}
.s_con_txt_link2:hover {
	opacity: 0.9;
}
/* ホバー時に矢印を右へ少し移動 */
.s_con_txt_link2:hover::after {
    right: -2px; /* 右に5px移動 */
}



	.megamenu_ctt_inner .listName {
		display: block;
		color: #001742;
		font-size: 18px;
		font-weight: 700;
		padding-left: 10px;
		padding-bottom: 25px;
	}
	.megamenu_ctt_inner .moreBtn {
		background-color: #001742;
		font-size: 12px;
		padding: 8px 14px;
		margin-left: 20px;
		border-radius: 50px;
	}
	.megamenu_ctt_inner .moreBtn span {
		position: relative;
		color: #fff;
		font-weight: 500;
		padding-right: 14px;
	}
	.megamenu_ctt_inner .moreBtn span:after {
		position: absolute;
		right: 0;
		top: 0;
		bottom: 0;
		content: "";
		display: inline-block;
		border-color: #fff;
		border-style: solid;
		border-width: 0 2px 2px 0;
		height: 6px;
		vertical-align: middle;
		width: 6px;
		transform: rotate(-45deg);
		margin: auto;
	}
	.megamenu_ctt_inner .menu_inner {
		display: flex;
		flex-wrap: wrap;
        justify-content: center;
	}
	.megamenu_ctt_inner .menu_box {
		width: calc((100% - 40px) / 3);
		background-color: #fff;
		border-radius: 5px;
		box-shadow: 0px 1px 4px 0px rgba(142, 142, 142, 0.5);
	}
    
    @media (max-width: 1249px) {
        .megamenu_ctt_inner .menu_box {
            width: calc((100% - 16px) / 2)!important;
        }
    }
    
	*::-ms-backdrop,.megamenu_ctt_inner .menu_box {
		width: calc((99% - 40px) / 3);
	}
    @media (min-width: 1249px) {
        .megamenu_ctt_inner .menu_box:not(:nth-child(3n)) {
            margin-right: 20px;
        }
    }

	.megamenu_ctt_inner .menu_box:nth-child(n+4) {
		margin-top: 22px;
	}
    @media (max-width: 1249px) {
        .megamenu_ctt_inner .menu_box:nth-child(3) {
            margin-top: 16px;
        }
        .megamenu_ctt_inner .menu_box:not(:nth-child(1)),
        .megamenu_ctt_inner .menu_box:not(:nth-child(3)){
            margin-right: 8px!important;
        }
        .megamenu_ctt_inner .menu_box:nth-child(2n+1) {
            margin-right: 8px!important;
        }
    }
    
    .menu_box {
	cursor:pointer;
}
.menu_box .m_img_div{
	height:200px;
	border-radius: 5px 5px 0 0;
	overflow: hidden; /* はみ出し防止 */
    position: relative;
	border-bottom:1px solid #eeeeee;
}
@media (min-width: 1249px) {
    .pcInner02_2 .menu_box .m_img_div{
        height:165px!important;
    }
}

@media screen and (max-width: 960px) and (min-width: 768px) {
    .menu_box .m_img_div {
        height: 250px!important;
    }
}

/* スマホ用（768px未満） */
@media screen and (max-width: 767px) {
    .menu_box .m_img_div {
        height: 100px!important;
    }
}



.menu_box .m_img_div img {
  width: 100%;
  height:100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 5px 5px 0 0;
  transition: transform 0.8s ease;
}
.menu_box:hover .m_img_div img {
  transform: scale(1.1);
}
.menu_box .trig {
	text-align: center;
}
.menu_box .trig a {
    font-family: "Noto Sans JP", Helvetica!important;
    color:#333333;
	line-height:26px;
    display: block;
    padding-bottom:5px;
    letter-spacing: 1px;
}

.menu_box .trig a .posi_str {
    font-family: "Noto Sans JP", Helvetica!important;
    letter-spacing: 1px;
    font-size:12px;
    color:#848484;
    display: block;
    line-height:14px!important;
    padding-top:5px;
}

.pcInner02 {
    padding:20px 100px 20px 100px;
}

@media (max-width: 1249px) {
    .pcInner02 {
        padding: 20px 16px!important;
    }
    .sp_mar_top_30 {
        margin-top:30px;
    }
    
    .s_con_txt_link2_wrap {
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      margin-top: 0;
      transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
    }

    .open + .s_con_txt_link2_wrap {
      max-height: 1000px; /* 中身の高さに応じて大きめに。超えなければOK */
      opacity: 1;
      margin-top: 15px;
    }
    
}

@media (min-width: 1249px) and (max-height: 770px) {
    
    .s_con_txt_link2 {
        font-size:12px!important;
        line-height:12px!important;
        margin-bottom:5px!important;
    }
    
}

@media (min-width: 1249px) and (min-height: 810px) {
    
    .megamenu .s_con_txt_tit:not(:first-of-type) {
        margin-top:20px!important;
    }
    
}



