@charset "utf-8";
/* CSS Document */
/* ------------------------------------------------------------------------ */

/*	Reset

/* ------------------------------------------------------------------------ */

html {
	overflow-y	: scroll;
	height		: 100%;
	font-size	: 62.5%;
	-webkit-text-size-adjust: 100%;
}

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
pre,form,fieldset,p,blockquote {
	margin 	: 0;
	padding : 0;
}

fieldset {
	display	: inline;
}

address,caption,cite,code,dfn,em,strong,th,var {
	font-style : normal;
}

body/**/table {
	line-height	: 1.5;
}

q:before,
q:after {
	content : '';
}

object,embed {
	vertical-align : top;
}

hr,legend	{
	display : none;
}

h1,h2,h3,h4,h5,h6 {
	font-size : 100%;
}

img,abbr,acronym,fieldset {
	border : 0;
}

li {
	list-style-type : none;
}

img[usemap] {
	border		: none;
	height		: auto;
	max-width	: 100%;
	width		: auto;
}

img {
	border		: 0;
	max-width	: 100%;
}

i {
	padding	: 5px 5px 2px 0;
}

p {
	word-break	: break-all;
}

/* Flexible Images */
img{
		max-width	: 100%;
		height		: auto;
		width /***/	: auto;
}

submit	{ -webkit-appearance : none;}

/* ------------------------------------------------------------------------ */

/*	Basic Style

/* ------------------------------------------------------------------------ */

body {
	margin		: 0;
	padding		: 0;
	height		: 100%;
	font-family: "Noto Sans JP", 'ヒラギノ角ゴ W3', "メイリオ", Meiryo, MS PGothic, arial, sans-serif;
	font-size	: 1.6rem;
	font-size	: 16px;
	font-weight: 400;
	line-height	: 1.5;
	text-align	: left;
	color		: #333;
	-webkit-text-size-adjust	: 100%;
	font-smoothing	: auto;
	counter-reset: number 0;
}
@media screen and (max-width: 768px) {
	body {
		font-size	: 1.5rem;
		font-size	: 15px;
	}
}

body *,
body *:before,
body *:after {
		box-sizing: border-box;
}

#wrap{
	margin		: 0 auto;
}

body > #wrap { height : auto;}



/* Link
--------------------------------------------------------------------------- */

.opacity a:hover img{
	opacity: 0.85;
}

a:link,
a:visited	{
	text-decoration	: none;
	color			: #333;
}

a:hover	{
	text-decoration	: underline;
}


/* ------------------------------------------------------------------------ */

/* Hedaer

/* ------------------------------------------------------------------------ */

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	width: 100%;
	background-color: #fff;
	position: sticky;
	top: 0;
	z-index: 999;
	transition: all .3s ease;
	height: 110px;
}
header .head_logo img{
	height: 110px;
	transition: all .3s ease;
}

/* 親メニュー - Parent nav */
nav{
	display: flex;
	align-items: center;
	height: 100%;
}
nav > ul{
	height: 110px;
	display: flex;
	align-items: center;
	gap: 48px;
	transition: all .3s ease;
	margin-right: 24px;
}
nav > ul > li,
nav > ul > li > a {
	position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
nav ul li a{
	transition: all .3s ease;
}
nav > ul > li.gradation_btn{
	margin-left: -18px;
}
nav > ul > li.gradation_btn a {
	position: relative;
	height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px 15px 18px;
    box-sizing: border-box;
    text-decoration: none;
    border-radius: 9999px;
    border: 3px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, /* 内側の白背景 */ linear-gradient(90deg, #1adfc5 0%, #2cbe67 100%) border-box;
    letter-spacing: 0.05em;
    transition: 0.3s all;
}
nav > ul > li.gradation_btn a:after {
	content: '';
	position: absolute;
	width: 14px;
	height: 14px;
	background-image: url('../img/header/img_icon_target.png');
	background-size: cover;
	background-repeat: no-repeat;
	right: 20px;
	top: 0;
	bottom: 0;
	margin: auto 0;
    transition: 0.3s all;
}

nav > ul > li.gradation_btn a {
    position: relative;
    display: inline-block;
    border: 3px solid transparent;
    background: #fff;
    transition: 0.3s all;
}
nav > ul > li.gradation_btn a span{
	position: relative;
	z-index: 999;
}

/* グラデーションレイヤー */
nav > ul > li.gradation_btn a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #1adfc5 0%, #2cbe67 100%);
    z-index: -1;
    opacity: 0;
    transition: 0.3s all;
}

/* 枠線グラデーション */
nav > ul > li.gradation_btn a {
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(90deg, #1adfc5 0%, #2cbe67 100%) border-box;
}


nav a {
	color: #0bd;
	text-decoration: none;
}
nav .btn_wrap{
	display: flex;
	height: 100%;
}
nav a.nav_faq,
nav a.nav_contact{
	display: flex;
    flex-flow: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	width: 125px;
	height: 100%;
	transition: all .3s ease;
}
nav a.nav_faq{
	position: relative;
	background-color: #FA842A;
}
nav a.nav_faq:before{
	content: '';
	display: block;
	width: 54px;
	height: 36px;
	background-image: url('../img/icon/icon_header_faq.png');
	background-size: cover;
	background-repeat: no-repeat;
	margin-bottom: 4px;
}
nav a.nav_contact{
	position: relative;
	background-color: #00A690;
}
nav a.nav_contact:before{
	content: '';
	display: block;
	width: 54px;
	height: 36px;
	background-image: url('../img/icon/icon_header_contact.png');
	background-size: cover;
	background-repeat: no-repeat;
	margin-bottom: 4px;
}


/* 子メニュー - .sub-menu */
nav .sub-menu {
	position: absolute;
	background: #009985;
	top: 80px;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	z-index: 1;
    width: max-content;
	word-break: keep-all;
}
nav .sub-menu .spStyle {
	display: none;
}
nav .sub-menu a {
	color: #fff;
	padding: 10px 15px;
	display: block;
}

/* ホバー＆フォーカスで子メニュー表示 */
/* Display sub menu by hover & focus */

@media (min-width: 1101px) {
nav .menu-item-has-children:hover ul,
nav .menu-item-has-children ul.focused {
	opacity: 1;
	visibility: visible;
}
nav li.menu-item-has-children li a:hover,
nav li.menu-item-has-children li a:focus {
	background: #f58220;
	text-decoration: none;
}
header.shrink nav > ul{
	height: 80px;
}
/* スクロール後（高さ縮小） */
header.shrink,
header.shrink .head_logo img  {
	height: 80px;
}
header.shrink nav ul li a,
header.shrink nav a.nav_faq,
header.shrink nav a.nav_contact{
	font-size: 14px;
}
header.shrink nav .sub-menu {
	top: 70px;
}
nav > ul > li:not(.gradation_btn) > a.current:after{
	content: '';
	display: block;
	width: 100%;
	height: 4px;
	background-color: #FA842A;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 30px;
	margin: 0 auto;
	transition: 0.3s;
}
header.shrink nav > ul > li:not(.gradation_btn) > a.current:after{
	bottom: 20px;
}

}

/* ハンバーガーデザイン */
.hamburger {
  display: none;
  width: 80px;
  height: 80px;
  background: #f58220;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  text-align: center;
}

/* 中央寄せ */
.hamburger .lines {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
}

.hamburger .lines span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  margin: 8px 0;
}

/* menu文字 */
.hamburger .label {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 16px;
  font-family: "Playwrite AU VIC", cursive;
  font-weight: 200;
  letter-spacing: 1px;
}
/* アニメーション準備 */
.hamburger .lines span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  margin: 8px 0;
  transition: transform .3s ease, opacity .3s ease;
}

/* 開いたとき */
.hamburger.active .lines span:nth-child(1) {
  transform: translateY(10px) rotate(30deg);
}

.hamburger.active .lines span:nth-child(2) {
  opacity: 0;
}

.hamburger.active .lines span:nth-child(3) {
  transform: translateY(-12px) rotate(-30deg);
}
@media (hover: hover) {
	nav ul a:hover {
		color: #0090aa;
	}
	nav .sub-menu a:hover {
		color: #fff;
	}
	nav > ul > li.gradation_btn a:hover {
		color: #fff;
	}

	nav > ul > li.gradation_btn a:hover::before {
		opacity: 1;
		z-index: 0;
	}
	nav > ul > li.gradation_btn a:hover:after {
		background-image: url(../img/footer/icon_blank_white.png);
	}
	nav a.nav_faq:hover{
		text-decoration: none;
		background-color: #e26403;
	}
	nav a.nav_contact:hover{
		text-decoration: none;
		background-color: #008674;
	}
}

@media (max-width: 1300px) {
	header .head_logo img{
		height: 80px;
	}
	nav > ul{
		gap: 28px;
		margin-right: 12px;
	}
	nav a.nav_faq, nav a.nav_contact{
		width: 110px;
		font-size: 13px;
	}
	nav > ul > li.gradation_btn{
		margin-left: -14px;
	}
	nav > ul > li.gradation_btn a{
	    padding: 15px 30px 15px 24px;
	}
}

/* スマホ表示 */
@media (max-width: 1100px) {
	header,
	header .head_logo img {
    	height: 80px;
	}

	/* ハンバーガー表示 */
	.hamburger {
		display: block;
	}

	/* ナビを縦並び＆初期は閉じる */
	nav {
		width: 100%;
		opacity: 0;
		visibility: hidden;
		height: calc(100vh - 80px);
		padding-bottom: 40px;
		transition: opacity .3s ease, transform .3s ease, visibility .3s;
		margin: 0;
		position: absolute;
		top: 80px;
		right: 0;
		display: block;
		background: #D6F8E4;
		background: linear-gradient(150deg,rgba(214, 248, 228, 1) 0%, rgba(191, 232, 229, 1) 100%);
			overflow-y: scroll;
			overflow-x: hidden;
	}

	nav.open {
		opacity: 1;
		visibility: visible;
	}

	nav > ul{
		display: block;
		width: 100%;
		height: auto;
	}

	nav > ul > li {
		width: 100%;
		float: none;
		margin-right: 0;
		border-bottom: 1px solid #eee;
	}
	nav ul li a{
		display: block;
		width: 100%;
	}

	/* サブメニュー（アコーディオン用） */
	nav .sub-menu {
		position: static;
		width: 100%;
		opacity: 1;
		background: #D6F8E4;
		visibility: visible;
		display: none;
		transition: none;
	}
	nav .sub-menu .spStyle {
		display: block;
	}

	nav .sub-menu.open {
		display: block;
	}
	nav > ul > li, nav > ul > li > a{
		display: block;
	}
	nav .main-menu > li > a{
		position: relative;
		padding: 16px;
		border-bottom: 1px solid #00A690;
	}
	nav .main-menu > li.active > a{
		color: #fff;
		background-color: #009985;
	}
	nav > ul > li.gradation_btn {
		margin: 40px auto;
		max-width: 400px;
		width: calc(100% - 40px);
	}
	nav > ul > li.gradation_btn a{
		justify-content: center;
	}
	nav .btn_wrap{
		height: auto;
        justify-content: center;
		gap: 20px;
		width: calc(100% - 24px);
		margin: 0 auto;
	}
	nav a.nav_faq,
	nav a.nav_contact{
		height: auto;
        max-width: 150px;
		width: 100%;
        margin: 0;
		padding: 16px;
	}
	nav .main-menu > li.menu-item-has-children > a:after{
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto 0;
        right: 16px;
        font: var(--fa-font-solid);
        content: "\f067";
        font-size: 14px;
        color: #333;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
	}
	nav .main-menu > li.menu-item-has-children.active > a:after{
        content: "\f068";
		color: #fff;
	}
	nav .sub-menu a{
		padding: 16px 24px;
		color: #333;
	}
}

@media screen and (max-width: 768px) {
	header,
	header.shrink,
	header .head_logo img,
	header.shrink .head_logo img {
    	height: 60px;
	}
	.hamburger {
	width: 60px;
	height: 60px;
	}

	/* 中央寄せ */
	.hamburger .lines {
	top: 8px;
	width: 30px;
	}

	.hamburger .lines span {
	height: 2px;
	margin: 6px 0;
	}

	/* menu文字 */
	.hamburger .label {
	bottom: 4px;
	font-size: 12px;
	}
	/* アニメーション準備 */
	.hamburger .lines span {
	height: 2px;
	margin: 6px 0;
	}

	/* 開いたとき */
	.hamburger.active .lines span:nth-child(1) {
	transform: translateY(10px) rotate(30deg);
	}

	.hamburger.active .lines span:nth-child(2) {
	opacity: 0;
	}

	.hamburger.active .lines span:nth-child(3) {
	transform: translateY(-7px) rotate(-30deg);
	}
	nav{
		top: 60px;
        height: calc(100vh - 60px);
	}
	nav .main-menu > li > a{
		padding: 24px 16px;
	}

}


/* ------------------------------------------------------------------------ */

/* Contents

/* ------------------------------------------------------------------------ */

#wrap{
}

#mainBlock {
	clear : both;
}

.contents{
	max-width: 1200px;
	width: calc(100% - 40px);
	margin: 0 auto;
}
.contents section{
	margin-top: 80px;
}
section .inner{
		max-width: 1240px;
		width: 100%;
		margin: 0 auto;
		padding: 0 20px;
	box-sizing: border-box;
}
.contents section .lead_txt{
	margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
	.contents section{
		margin-top: 60px;
	}
}
@media screen and (max-width: 480px) {
	.contents section{
		margin-top: 40px;
	}
}

/* NewsList
/* ------------------------------------------------------------------------ */
#News .list_wrap ul li{
	border-bottom: 1px solid #d9e4ea;
}
#News .list_wrap ul li .newsText,
#News .list_wrap ul li a{
	display: flex;
	justify-content: flex-start;
	gap: 40px;
	padding: 20px 0;
}
#News .list_wrap ul li:first-child .newsText,
#News .list_wrap ul li:first-child a{
	padding-top: 0;
}
#News .list_wrap ul li .date{
	color: #999;
}
#News .list_wrap ul li a:hover .ttl {
	text-decoration: underline;
}
#News .list_wrap ul li a .ttl {
	position: relative;
	text-decoration: underline;
    display: inline; /* もしくは inline-block */
}
#News .list_wrap ul li a .ttl:after {
    content: "\f105";
    font-family: 'FontAwesome';
    font-size: 12px;
    font-weight: 400;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 8px;
    color: #fff;
    background-color: #fa842a;
    border-radius: 50%;
    position: relative;
    vertical-align: middle;
    text-align: center;
	margin-top: -2px;
	line-height: 1.7;
}
#News .list_wrap ul li a:hover,
#News .list_wrap ul li a:hover .ttl{
	text-decoration: none;
}
@media screen and (max-width: 480px) {
	#News .list_wrap ul li .newsText,
	#News .list_wrap ul li a{
		display: block;
		padding: 20px 0;
	}
	#News .list_wrap ul li span{
		display: block;
	}
	#News .list_wrap ul li .date{
		margin-bottom: 5px;
		font-size: 14px;
	}
}



/* ------------------------------------------------------------------------ */

/* #keyVisual

/* ------------------------------------------------------------------------ */

#bd_under #keyVisual{
	width: 100%;
	height: 310px;
	background-image: url('../img/bg/bg_KeyVisual.png');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
#bd_under #keyVisual .contents{
	position: relative;
	text-align: center;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
#bd_under #keyVisual .ttl{
	font-size: 48px;
	font-weight: 700;
}
#bd_under #keyVisual .en{
	position: absolute;
	font-size: 24px;
	font-family: "Playwrite AU VIC", cursive;
	font-optical-sizing: auto;
	font-weight: 200;
	font-style: normal;
	bottom: 80px;
	margin: 0 auto;
	left: 50%;
	text-align: left;
	transform: rotate(-5deg);
}

@media screen and (max-width: 1024px) {
	#bd_under #keyVisual .ttl{
		font-size: 40px;
	}
	#bd_under #keyVisual .en{
			font-size: 20px;
	}
}
@media screen and (max-width: 768px) {
	#bd_under #keyVisual{
		height: 240px;
	}
	#bd_under #keyVisual .ttl{
		font-size: 30px;
	}
	#bd_under #keyVisual .en{
		font-size: 18px;
	}
}
@media screen and (max-width: 480px) {
	#bd_under #keyVisual{
		height: 200px;
	}
	#bd_under #keyVisual .ttl{
		font-size: 24px;
	}
	#bd_under #keyVisual .en{
		font-size: 16px;
		bottom: 56px;
	}
}


/* ------------------------------------------------------------------------ */

/* Footer

/* ------------------------------------------------------------------------ */

footer {
	background-color: #276159;
	padding: 80px 0 40px;
	margin-top: 120px;
}
footer,
footer a,
footer a:link,
footer a:visited{
	color: #fff;
}
footer .contents{
	max-width: 1500px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}
footer .contents .flexArea{
	display: flex;
	flex-flow: row-reverse;
	justify-content: space-between;
	gap: 24px;
}
footer .contents .flexArea .flexArea_left a span{
	display: block;
}
footer .contents .flexArea .flexArea_left a span:nth-child(1){
	font-size: 20px;
}
footer .contents .flexArea .flexArea_left a span:nth-child(2){
	font-size: 30px;
}
footer .contents .flexArea .flexArea_right .flex{
	display: flex;
	gap: 60px;
}
footer .contents .flexArea .flexArea_right .flex .footer_flex_linkBox .linkBox_wrap + .linkBox_wrap{
	margin-top: 40px;
}
footer .contents .flexArea .flexArea_right .flex .footer_flex_linkBox .linkBox_wrap .spStyle{
	display: none;
}
footer .contents .flexArea .flexArea_right .flex .footer_flex_linkBox .linkBox_wrap li p{
	font-size: 18px;
}
footer .contents .flexArea .flexArea_right .flex .footer_flex_linkBox .linkBox_wrap.student_link li p a{
	position: relative;
}
footer .contents .flexArea .flexArea_right .flex .footer_flex_linkBox .linkBox_wrap.student_link li p a:after{
    content: '';
    width: 16px;
    height: 16px;
    background-image: url(../img/footer/icon_blank_white.png);
    background-size: cover;
    background-repeat: no-repeat;
	position: absolute;
	top: 4px;
	bottom: 0;
	margin: auto 0 auto 8px;
	display: inline-block;
}
footer .contents .flexArea .flexArea_right .flex .footer_flex_linkBox .linkBox_wrap li ul{
	margin-top: 16px;
}
footer .contents .flexArea .flexArea_right .flex .footer_flex_linkBox .linkBox_wrap li ul li + li{
	margin-top: 8px;
}
footer .contents .flexArea .flexArea_right .flex .footer_flex_linkBox .linkBox_wrap li ul li a{
	font-size: 14px;
}
footer .contents .flexArea .flexArea_right .footer_linkBox{
	display: flex;
	justify-content: flex-end;
	margin-top: 42px;
}
footer .contents .flexArea .flexArea_right .footer_linkBox li + li{
	position: relative;
	margin-left: 24px;
	padding-left: 24px;
}
footer .contents .flexArea .flexArea_right .footer_linkBox li + li:before{
    content: '';
    display: inline-block;
    width: 1px;
    height: 70%;
    background-color: #fff;
    position: absolute;
    top: 6px;
    left: 0;
}
footer .contents .flexArea .flexArea_right .footer_linkBox li a{
	font-size: 14px;
}

footer .contents .copy{
	font-size: 12px;
	text-align: center;
	margin-top: 32px;
}

footer .btn_wrap{
	display: none;
}

@media screen and (max-width: 1024px) {
	footer .contents .flexArea{
        flex-wrap: wrap;
        flex-flow: column-reverse;
	}
	footer .contents .flexArea .flexArea_left{
		margin-bottom: 16px;
	}
}
@media screen and (max-width: 768px) {
	footer {
	    padding: 40px 0 24px;
	    margin-top: 80px;
	}
	footer .contents .flexArea{
		display: block;
	}
	footer .contents .flexArea .flexArea_left{
		text-align: center;
		margin-top: 40px;
		margin-bottom: 0;
	}
	footer .contents .flexArea .flexArea_left img{
		max-width: 210px;
		width: 100%;
	}
	footer .contents .flexArea .flexArea_right .flex{
		display: block;
	}
	footer .contents .flexArea .flexArea_right .footer_linkBox{
		justify-content: center;
	}
	footer  .flexArea_right .flex .footer_flex_linkBox,
	footer  .flexArea_right .flex{
		max-width: 100%;
		width: 100%;
	}
	footer  .flexArea_right .flex .footer_flex_linkBox .head_bor_b a{
		padding: 16px 10px;
	}
	footer  .flexArea_right .flex .footer_flex_linkBox .head_bor_b a,
	footer  .flexArea_right .footer_linkBox li a{
		position: relative;
		display: block;
		text-decoration: none;
	}
	footer  .flexArea_right .flex .footer_flex_linkBox .head_bor_b a:after{
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto 0;
        right: 10px;
        font: var(--fa-font-solid);
        content: "\f067";
        font-size: 14px;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
	}
	footer  .flexArea_right .flex .footer_flex_linkBox .head_bor_b.active a:after{
        content: "\f068";
	}
	footer .contents .flexArea .flexArea_right .flex .footer_flex_linkBox .linkBox_wrap .spStyle{
		display: block;
	}
	footer .contents .flexArea .flexArea_right .flex .footer_flex_linkBox .linkBox_wrap li p a{
		font-size: 15px;
		border-bottom: 1px solid #fff;
	}
	footer .contents .flexArea .flexArea_right .flex .footer_flex_linkBox .linkBox_wrap + .linkBox_wrap{
		margin-top: 0;
	}
	footer .contents .flexArea .flexArea_right .flex .footer_flex_linkBox .linkBox_wrap li ul{
		margin: 0;
		background-color: #fff;
	}
	footer .contents .flexArea .flexArea_right .flex .footer_flex_linkBox .linkBox_wrap li ul li a{
		color: #333;
        width: 100%;
        display: block;
        padding: 16px 24px;
	}
	footer .contents .flexArea .flexArea_right .flex .footer_flex_linkBox .linkBox_wrap li ul li + li{
		margin: 0;
		border-top: 1px solid #276159;
	}
	footer a:hover{
		text-decoration: none !important;
	}
	footer .contents .flexArea .flexArea_right .flex .footer_flex_linkBox .linkBox_wrap li p:not(.head_bor_b) a{
		display: block;
        padding: 16px 10px;
	}
	footer a.btn{
		display: block;
		margin: 0 auto 16px;
		border: none;
	}
	footer .btn_wrap{
		display: flex;
		justify-content: center;
		gap: 20px;
		margin-bottom: 24px;
	}
	footer .btn_wrap a{
		position: relative;
		display: flex;
		flex-flow: column;
		align-items: center;
		justify-content: center;
		color: #fff;
        height: auto;
        max-width: 150px;
        width: 100%;
        margin: 0;
        padding: 16px;
		transition: all .3s ease;
	}
	footer .btn_wrap a.nav_faq{
		background-color: #FA842A;
	}
	footer .btn_wrap a.nav_faq:before{
		content: '';
		display: block;
		width: 54px;
		height: 36px;
		background-image: url(../img/icon/icon_header_faq.png);
		background-size: cover;
		background-repeat: no-repeat;
		margin-bottom: 4px;
	}
	footer .btn_wrap a.nav_contact{
    	background-color: #00A690;
	}
	footer .btn_wrap a.nav_contact:before{
		content: '';
		display: block;
		width: 54px;
		height: 36px;
		background-image: url(../img/icon/icon_header_contact.png);
		background-size: cover;
		background-repeat: no-repeat;
		margin-bottom: 4px;
	}
	footer .faq_link_pc{
		display: none;
	}
	footer .contents .flexArea .flexArea_right .footer_linkBox li + li{
		margin-left: 16px;
		padding-left: 16px;
	}
	footer .contents .flexArea .flexArea_right .footer_linkBox li + li:before{
		top: 4px;
	}
	footer .contents .flexArea .flexArea_right .flex .footer_flex_linkBox .linkBox_wrap.student_link li p a:after{
		top: -2px;
		bottom: 0;
		margin: auto 0 auto 8px;
	}
}