@charset "utf-8";
/*
再利用可能な全てのオブジェクトを記述します。
All objects that are reusable will be written.

接頭辞はComponentの頭文字を取って【c_】とします。
Prefix will take the "Component" first letter and use it as "c_". 

ここで指定するのは以下の様なものと予想されます。
You might use the following.
.c_btn/.c_breadclumb/.c_hero/.c_serch/.c_dropdown/
.c_card/.c_feature/.c_overlay/.c_form/.c_thumbnail/.c_box

モディファイヤを使用する場合は接頭辞【is_】をつけ、各コンポーネントの下に記述します。
When using modifier put the prefix "is_" and write it under each component.

フォントサイズはremで指定します。
"rem" will be used for font-size.

//sample
.c_btn {
	display: inline-block;
	padding: 15px 20px;
	border-radius: 5px;
	text-decoration: none;
}
.c_btn:hover { opacity: 0.8; }
.c_btn.is_btn_disable { cursor: inherit; }
.c_btn.is_btn_blue{
	color: rgb(255, 255, 255);
	background: rgb(1, 153, 224) none repeat scroll 0% 0%;
}

*/
/*----------------------------------------------
	.c_btn
---------------------------------------------*/
span > .c_btn {
	display: block;
	text-align: right;
}
.c_btn {
	display: inline-block;
	font-size: 1.4rem;
	text-align: center;
	min-height: 43px;
	vertical-align: middle;
	line-height: 1;
	padding: 14px 10px;
    text-decoration: none;
}
.c_btn:hover {
	opacity: 0.8;
}
.c_btn.is_large {
	display: block;
	width: inherit;
	font-size: 2rem;
	min-height: 100px;
    padding: 40px 10px;
	border-radius: 0;
	-webkit-border-radius: 0;
	-ms-border-radius: 0;
	-moz-border-radius: 0;
}
@media screen and (max-width: 640px) {
	span > .c_btn {
		text-align: center;
	}
	.c_btn { font-size: 1.5rem; }
	.c_btn.is_large {
		width: 100%;
		min-height: 70px;
		padding: 25px 15px;
	}
}
/*----------------------------------------------
	.Googlemapレスポンシブ
---------------------------------------------*/
.gmap-container {
   max-width: 600px;
   width: 100%;
   margin: 0 auto;
   clip-path: inset(0 round 5px); /*角丸を付ける場合*/
}
#gmap {
   height: 0;
   overflow: hidden;
   padding-bottom: 56.25%;
   position: relative;
   }
#gmap iframe {
   position: absolute;
   left: 0;
   top: 0;
   height: 100%;
   width: 100%;
}


/*----------------------------------------------
	.c_btn_type01
---------------------------------------------*/
.c_btn_type01 {
    width: 160px;
	border: 1px solid #003d22;
    border-left: 0;
}
li:last-child .c_btn_type01 {
	border-top: 0;
}
@media screen and (max-width: 959px) {
	.c_btn_type01 {
		width: 100%;
	}
}

/*----------------------------------------------
	.c_btn_type02
---------------------------------------------*/
.c_btn_type02 {
	color: #FFFFFF;
	width: 300px;
	background: #F9BE00;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-ms-border-radius: 5px;
	-moz-border-radius: 5px;
}
@media screen and (max-width: 640px) {
	.c_btn_type02 {
		width: 100%;
	}
}

/*----------------------------------------------
	.c_btn_type03
---------------------------------------------*/
.c_btn_type03 {
    float: right;
    display: inline-block;
    color: #009A29;
    font-size: 1.3rem;
    min-height: inherit;
    padding: 3px;
}
@media screen and (max-width: 640px) {
	.c_btn_type03 {
		float: none;
		display: block;
		color: #FFFFFF;
		font-size: inherit;
		min-height: 43px;
		background: #009A29;
		padding: 15px 20px;
		border-radius: 5px;
		-webkit-border-radius: 5px;
		-ms-border-radius: 5px;
		-moz-border-radius: 5px;
	}
}

/*----------------------------------------------
	.c_btn_type04
---------------------------------------------*/
/*
.c_btn_type04 {
    width: 467px;
    height: 100px;
    color: #000000;
	font-size: 2rem;
	font-weight: bold;
    background: #FFFFFF;
	padding: 40px 20px;
	margin-right: 20px;
}
.c_btn_type04:last-child {
	margin-right: 0;
}
.c_btn_type04:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
.c_btn_type04:hover {
	background: #F9BE00;
}
@media screen and (max-width: 640px) {
	.c_btn_type04 {
		width: 100%;
		height: 80px;
		padding: 30px 20px;
		margin-right: 0;
		margin-bottom: 20px;
	}
}
*/

/*----------------------------------------------
	.c_btn_type05
---------------------------------------------*/
.c_btn_type05 {
    display: block;
    color: #FFFFFF;
    background: rgba(249, 190, 0, 0.7);
    border-radius: 6px;
}

/*----------------------------------------------
	.c_btn_type06
---------------------------------------------*/
.c_btn_type06 {
	display: inline-block;
    font-size: 1.5rem;
    width: 314px;
    min-height: 80px;
    color: #000000;
    background: #F9BE00;
    -webkit-border-radius: 6px;
    -ms-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    line-height: 1;
    padding: 32px 10px;
}

/*----------------------------------------------
	.c_btn_type07
---------------------------------------------*/
.c_btn_type07 {
	display: inline-block;
	width: 100%;
	padding: 15px 10px;
	text-align: center;
	text-decoration: none;
	outline: none;
	border: 1px solid #003D22;
	background-color: #003D22;
	background-image: -webkit-linear-gradient(top, #009A29, #003D22);
	background-image: linear-gradient(to bottom, #009A29, #003D22);
	border-radius: 4px;
	color: #fff;
	-webkit-transition: none;
	text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
}
.c_btn_type07::before,
.c_btn_type07::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.c_btn_type07,
.c_btn_type07::before,
.c_btn_type07::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-decoration: none!important;
}
.c_btn_type07:hover {
	border:1px solid #003D22;
	background-color: #003D22;
	background-image: -webkit-linear-gradient(top, #003D22, #009A29);
	background-image: linear-gradient(to bottom, #003D22, #009A29);
}
.c_btn_type07:active {
	background: #009A29;
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, .2);
	color: #003D22;;
	text-shadow: 0 1px 1px rgba(255, 255, 255, .5);
}
@media screen and (max-width: 640px) {
	.c_btn_type07 {
		padding: 10px 10px;
	}
}

/*----------------------------------------------
 .c_btn_type08
---------------------------------------------*/
.c_btn_type08 {
 display: inline-block;
    font-size: 1.5rem;
    width: 100px;
    min-height: 80px;
    color: #fff;
    background: #003D22;
    -webkit-border-radius: 6px;
    -ms-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    line-height: 1;
    padding: 32px 10px;
    text-decoration: none;
}
.c_btn_type08:hover { opacity: .6; }
.navigation {
  border-collapse: separate;
  display: table;
  margin: 0 auto;
  overflow: hidden;
}
.navigation .previous-nav, .navigation .home-nav, .navigation .next-nav {
  display: table-cell;
}
.navigation .previous-nav { padding-right: 15px; }
.navigation .next-nav { padding-left: 15px; }

.insta-title {
 display: block;
 margin: 0 auto 40px;
 width: 350px;
}
@media screen and (max-width: 640px) {
 .navigation .c_btn_type06 {
    font-size: 12px;
    width: 150px;
    min-height: 60px;
    padding: 24px 10px;
 }
 .c_btn_type08 {
  font-size: 12px;
  width: 80px;
  min-height: 60px;
  padding: 24px 10px;
 }
 .insta-title {
 margin: 0 auto 20px;
 width: 75%;
}
}

.banner-online {
	height: auto;
	margin: 0 auto 40px;
	transition: .3s;
	width: 100%;
 }
 .banner-online.pc {
	display: block;
 }
 .banner-online.sp {
	display: none;
 }
.banner-online:hover { opacity: .8; }

 @media screen and (max-width: 640px) {
	.banner-online {
		margin: 0 auto 20px;
	}
	.banner-online.pc { display: none; }
	.banner-online.sp { display: block; }
 }
/*----------------------------------------------
	.c_btn_smenu
---------------------------------------------*/
.c_btn_smenu { display: none; }
.c_btn_smenu {
	position: absolute;
	top: 26px;
    right: 8px;
}
.c_btn_smenu span {
	display: block;
    width: 40px;
    height: 3px;
    background: #FFFFFF;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -moz-border-radius: 5px;
    margin-bottom: 8px;
}
.c_btn_smenu span:last-child {
	margin-bottom: 0;
}
.c_btn_smenu:after {
	content: 'MENU';
    display: block;
    color: #FFFFFF;
    text-align: center;
    font-size: 1.1rem;
    padding-top: 5px;
}
@media screen and (max-width: 959px) {
	.c_btn_smenu { display: block; }
}
/*----------------------------------------------
	.c_footer_banner
---------------------------------------------*/
.c_footer_banner {
	margin-right: 20px;
}
.c_footer_banner:last-child {
	margin-right: 0;
}
@media screen and (max-width: 640px) {
	.c_footer_banner {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}
}

/*----------------------------------------------
	.c_ttl_type01
---------------------------------------------*/
.c_ttl_type01 {
	font-size: 3rem;
	color: #003D22;
	text-align: center;
	line-height: 1.2;
	margin-bottom: 30px;
}
.c_ttl_type01 span {
	display: block;
	font-size: 1.2rem;
}
@media screen and (max-width: 640px) {
	.c_ttl_type01 {
		margin-bottom: 40px;
	}
}

/*----------------------------------------------
	.c_ttl_type02
---------------------------------------------*/
.c_ttl_type02 { font-weight: bold; }
@media screen and (max-width: 640px) {
	.c_ttl_type02 {
		font-weight: bold;
		margin-bottom: 5px;
	}
}

/*----------------------------------------------
	.c_ttl_type03
---------------------------------------------*/
.c_ttl_type03 {
    color: #FFFFFF;
    min-height: 60px;
    font-size: clamp(2.0rem, 2vw, 22px);
    background: #003D22;
    line-height: 1.5;
    padding: 20px 20px;
	-webkit-border-radius: 6px;
	-ms-border-radius: 6px;
	-moz-border-radius: 6px;
    border-radius: 6px;
    margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
	.c_ttl_type03 {
		min-height: inherit;
		padding: 15px;
	}
}

/*----------------------------------------------
	.c_ttl_type04
---------------------------------------------*/
.c_ttl_type04 {
    font-size: 1.7rem;
    color: #003D22;
    background: url(../images/ico_yellow_bullet.png) no-repeat left 2px;
    line-height: 1.4;
    padding-left: 25px;
    margin-bottom: 22px;
	border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
}

/*----------------------------------------------
	.c_link_type01
---------------------------------------------*/
.c_link_type01 {
	font-size: 1.3rem;
	color: #009A29;
}

/*----------------------------------------------
	.c_badge_type01
---------------------------------------------*/
.c_badge_type01 {
	display: inline-block;
	font-size: 1rem;
	color: #FFFFFF;
	background: #999999;
	padding: 1px 2px;
	line-height: 1;
    text-decoration: none;
}
.c_badge_type01:hover {
    background: #009A29;
}
/* WP吐き出すタグにも同じ設定を適用 */
.post-categories {
    display: inline;
}
.post-categories li {
	display: inline-block;
	font-size: 1rem;
	color: #FFFFFF;
	background: #999999;
	padding: 1px 2px;
	line-height: 1;
}
.post-categories li a {
    color: #FFFFFF;
    text-decoration: none;
}
.post-categories li:hover {
    background: #009A29;
}

/*----------------------------------------------
	.c_badge_type02
---------------------------------------------*/
.c_badge_type02 {
    display: inline-block;
    font-size: 1.4rem;
    color: #FFFFFF;
    background: #ED7700;
    padding: 3px 4px;
    line-height: 1;
	-webkit-border-radius: 4px;
	-ms-border-radius: 4px;
	-moz-border-radius: 4px;
    border-radius: 4px;
}
.c_badge_type02.is_blue {
	background-color:#056EB7;
}
@media screen and (max-width: 640px) {
	.c_badge_type02 {
		font-size: 1.2rem;
	}
}



/*----------------------------------------------
	.c_list_type01
---------------------------------------------*/
.c_list_type01 {}
.c_list_type01 {
	float: left;
	height: 86px;
}
.c_list_type01 li {
	display: inline-block;
    padding-right: 16px;
}
.c_list_type01 li:last-child {
    padding-right: 20px;
}
.c_list_type01 li a {
	position: relative;
	display: table-cell;
    height: 86px;
    vertical-align: middle;
    line-height: 1;
    text-decoration: none;
}
.c_list_type01 li a:after {
	position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 1px;
	background: #5c715e;
    content: '';
    opacity: 0;
    -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
    transition: height 0.3s, opacity 0.3s, transform 0.3s;
    -webkit-transform: translateY(-35px);
    -moz-transform: translateY(-10px);
    transform: translateY(-35px);
}
.c_list_type01 li a:hover:after,
.c_list_type01 li.is_current a:after {
	height: 5px;
    opacity: 1;
	-webkit-transform: translateY(-25px);
    -moz-transform: translateY(0px);
    transform: translateY(-25px);
}
@media only screen and (max-width: 1270px) and (min-width: 960px) {
	.c_list_type01 {
		width: 75%;
		height: inherit;
		line-height: 1;
		padding: 8px 0;
	}
	.c_list_type01 li {
		width: 32%;
		padding-right: 0;
	}
	.c_list_type01 li a {
		height: inherit;
    		padding: 9px 0;
	}
	.c_list_type01 li a:after {
		-webkit-transform: translateY(-4px);
		-moz-transform: translateY(-4px);
		transform: translateY(-4px);
	}
	.c_list_type01 li a:hover:after,
	.c_list_type01 li.is_current a:after {
		height: 4px;
		-webkit-transform: translateY(0px);
		-moz-transform: translateY(0px);
		transform: translateY(0px);
	}
	
}
@media screen and (max-width: 959px) {
	.c_list_type01 {
		float: none;
		height: inherit;
	}
	.c_list_type01 li {
		display: block;
		padding-right: 0;
		border-bottom: 1px solid rgba(222, 222, 222, 0.24);
	}
	.c_list_type01 li:last-child {
		padding-right: inherit;
		border-bottom: 0;
	}
	.c_list_type01 li a {
		display: block;
		height: inherit;
		text-align: center;
		padding: 17px 4%;
		border-bottom: 1px solid #000B06;
	}
	.c_list_type01 li:last-child a {
		border-bottom: 0;
	}
	.c_list_type01 li a:hover {
		background: rgba(245, 245, 220, 0.4);
	}
	.c_list_type01 li a:after {
		content: initial;
	}
}

/*----------------------------------------------
	.c_list_type02
---------------------------------------------*/
.c_list_type02 {
	float: inherit;
    width: 160px;
    box-sizing: content-box;
}
@media screen and (max-width: 959px) {
	.c_list_type02 {
		width: inherit;
	}
}

/*----------------------------------------------
	.c_list_type03
---------------------------------------------*/
.c_list_type03 {
	background: #3F3F3F;
	padding: 5px;
}
.c_list_type03 a {
	display: block;
    font-size: 1.6rem;
	color: #FFFFFF;
    text-align: center;
    line-height: 1;
    padding: 16px 0;
    border: 1px solid #FFFFFF;
	margin-bottom: 5px;
}
.c_list_type03 li:last-child a {
	margin-bottom: 0;
}
.c_list_type03 a:hover {
	color: #3F3F3F;
	background: #FFFFFF;
}

/*----------------------------------------------
	.c_list_type04
---------------------------------------------*/
.c_list_type04 li {
	display: inline-block;
}
.c_list_type04 a {
    display: block;
    padding: 22px 48px 22px 0;
    text-decoration: none;
}
@media screen and (max-width: 640px) {
	.c_list_type04 li {
		display: block;
		border-bottom: 1px solid rgba(222, 222, 222, 0.24);
	}
	.c_list_type04 a {
		padding: 12px;
		border-bottom: 1px solid #000B06;
	}
	.c_list_type04 li:last-child,
	.c_list_type04 li:last-child a {
		border-bottom: 0;
	}
}

/*----------------------------------------------
	.c_list_type05
---------------------------------------------*/
.c_list_type05 {
	background: rgba(199,242,210,0);
	background: -moz-linear-gradient(top, rgba(199,242,210,0) 0%, rgba(169,229,185,0) 15%, rgba(0,154,41,0.1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(199,242,210,0)), color-stop(15%, rgba(169,229,185,0)), color-stop(100%, rgba(0,154,41,0.1)));
	background: -webkit-linear-gradient(top, rgba(199,242,210,0) 0%, rgba(169,229,185,0) 15%, rgba(0,154,41,0.1) 100%);
	background: -o-linear-gradient(top, rgba(199,242,210,0) 0%, rgba(169,229,185,0) 15%, rgba(0,154,41,0.1) 100%);
	background: -ms-linear-gradient(top, rgba(199,242,210,0) 0%, rgba(169,229,185,0) 15%, rgba(0,154,41,0.1) 100%);
	background: linear-gradient(to bottom, rgba(199,242,210,0) 0%, rgba(169,229,185,0) 15%, rgba(0,154,41,0.1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c7f2d2', endColorstr='#009a29', GradientType=0 );
	border-bottom: 1px solid #FFFFFF;
}
.c_list_type05 ul {
	display: table;
    width: 100%;
}
.c_list_type05 li {
    display: inline-block;
}
.c_list_type05 li a {
    display: inline-block;
    width: 320px;
    color: #000000;
	margin-bottom: 3px;
    padding: 20px 30px;
    text-align: center;
	text-decoration: none;
}
.c_list_type05 li a:hover,
.c_list_type05 li.current-menu-item a {
	color: #009A29;
	margin-bottom: 0;
	border-bottom: 3px solid #009A29;
}
@media screen and (max-width: 640px) {
	.c_list_type05 ul {
		display: flex;
        justify-content: space-around;
	}
	.c_list_type05 li a {
		display: block;
		width: 100%;
		padding: 10px 2px;
	}
}

/*----------------------------------------------
	.c_list_type06
---------------------------------------------*/
.c_list_type06 {
	padding-left: 2rem;
}
.c_list_type06 li {
	list-style-type: disc;
	
}


/*----------------------------------------------
	.c_table_type01
---------------------------------------------*/
.c_table_type01 {
	font-size: 1.3rem;
	margin-bottom: 5px;
}
.c_table_type01 table {
	width: 100%;
}
.c_table_type01 th {
    text-align: center;
    background: #F1F1F1;
    border: 1px solid #DCDCDC;
}
.c_table_type01 td {
    border: 1px solid #DCDCDC;
    border-top: 0;
	text-align: right;
}
.c_table_type01 th, .c_table_type01 td {
	line-height: 1.4;
	padding: 5px 8px;
	line-height: 1;
}
.c_table_type01 .discount {
	background: #fff2bd;
    color: #FF0000;
}
.c_table_type01 .header {
	text-align: left;
}
@media screen and (max-width: 640px) {
	.c_table_type01 {
		overflow: auto;
	}
	.c_table_type01 table {
		width: 100%;
	}
	.c_table_type01 th, .c_table_type01 td {
		min-width: 90px;
	}
	.c_table_type01 th:first-child, .c_table_type01 td:first-child {
		min-width: 226px;
	}
}

/*----------------------------------------------
	.c_table_type02
---------------------------------------------*/
.c_table_type02 {
	margin-bottom: 5px;
	width: 100%;
}
.c_table_type02 th {
    width: 20%;
    text-align: center;
    background: #F1F1F1;
    border: 1px solid #DCDCDC;
    padding: 10px;
}
.c_table_type02 td {
    border: 1px solid #DCDCDC;
    padding: 10px;
}
.c_table_type02 td.price {
    width: 20%;
}
.c_table_type02 td span {
    font-size: 1.7rem;
    color: #003d22;
    font-weight: bold
}

/*----------------------------------------------
	.c_table_type_course
---------------------------------------------*/
.c_table_type_course {
	margin-bottom: 5px;
	width: 100%;
}
.c_table_type_course th {
    text-align: center;
    background: #F1F1F1;
    border: 1px solid #DCDCDC;
    padding: 5px;
}
.c_table_type_course th:first-child {
    min-width: 155px;
}
.c_table_type_course th.course_name {
	width: 21%;
	background: #ecf5ee;
}
.c_table_type_course th.class_name {
	text-align: left;
}
.c_table_type_course td {
    border: 1px solid #DCDCDC;
    padding: 5px;
	text-align: center;
}
.c_table_type_course td.price {
    width: 20%;
}
/*
.c_table_type_course td span {
    font-size: 1.7rem;
    color: #003d22;
    font-weight: bold
}
*/
@media screen and (max-width: 640px) {
	.c_table_type_course th.course_name {
        min-width: 180px;
    }
}

/*----------------------------------------------
	.c_box_type01
---------------------------------------------*/
.c_box_type01 {}
.c_box_type01 .c_box_img {
	width: 250px;
    height: 250px;
    text-align: center;
    border-radius: 50%;
    margin: 0 auto 30px;
}
.c_box_type01 .c_ttl_type02 {
	font-size: 1.7rem;
    text-align: center;
    margin-bottom: 16px;
}
.c_box_type01 .c_box_text {
    margin-bottom: 16px;
}
@media screen and (max-width: 640px) {
	.c_box_type01 {
		margin-bottom: 30px;
	}
	.c_box_type01 .c_box_img {
		width: 100%;
		min-height: 170px;
		height: inherit;
		border-radius: inherit;
		margin: 0 auto 20px;
	}
	.c_box_type01 .c_box_img img { width: 100%; }
	.c_box_type01 .c_ttl_type02 {
		margin-bottom: 15px;
	}
	.c_box_type01 .c_box_text {
		padding-bottom: 20px;
		height: inherit !important;
		margin-bottom: 0;
	}
}

/*----------------------------------------------
	.c_box_type02
---------------------------------------------*/
.c_box_type02 {
    margin-bottom: 30px;
}
.c_box_type02 .c_box_img {
	height: 200px;
	margin-bottom: 12px;
}
.c_box_type02 .c_box_img a img {
    width: 300px;
    height: auto;
}
.c_box_date {
    font-size: 1.4rem;
    color: #999999;
}
.c_box_type02 .c_box_text {
    font-size: 1.3rem;
}
@media screen and (max-width: 640px) {
	.c_box_type02 {
		margin-bottom: 25px;
	}
	.c_box_type02 .c_box_img {
		float: left;
		width: 120px;
		height: 80px;
		margin-right: 12px;
		margin-bottom: 0;
	}
    .c_box_type02 .c_box_img a img {
        width: 100%;
        height: auto;
    }
	.c_box_type02 .c_box_contents {
		min-height: 80px;
		padding-left: 9em;
	}
	.c_box_date {
		font-size: 1.3rem;
		margin-bottom: 5px;
	}
}

/*----------------------------------------------
	.c_box_type03
---------------------------------------------*/
.c_box_type03 {
	display: inline-block;
	width: 220px;
	line-height: 1.4;
	margin: 0 14px 40px 0;
    vertical-align: top;
}
.c_box_type03:nth-last-child(-n+2) {
	margin-bottom: 32px;
}
.c_box_type03:nth-child(even) {
	margin-right: 0;
}
.c_box_type03 .c_box_img {
	height: 146px;
	margin-bottom: 12px;
}
.c_box_type03 .c_box_date {
	font-size: 1.2rem;
	display: inline-block;
	margin-bottom: 5px;
}
@media screen and (max-width: 640px) {
	.c_box_type03 {
		display: block;
		width: 100%;
		margin: 0 0 30px;
	}
	.c_box_type03 .c_box_img {
		float: left;
		width: 120px;
		height: 80px;
		margin-right: 12px;
		margin-bottom: 0;
	}
	.c_box_type03 .c_box_img img {
        width: 100%;
        height: auto;
    }
	.c_box_type03 .c_box_contents {
		min-height: 80px;
		padding-left: 9em;
	}
	.c_box_type03 .c_box_date {
		font-size: 1.3rem;
	}
}

/*----------------------------------------------
	.c_box_type04
---------------------------------------------*/
.c_box_type04 {}
.c_box_type04 {
    margin-bottom: 20px;
}
.c_box_type04:last-child {
	margin-bottom: 40px;
}
.c_box_type04 .c_box_img {
	float: left;
	width: 120px;
	height: 80px;
}
.c_box_type04 .c_box_img a img {
	width: 120px;
	height: auto;
}
.c_box_type04 .c_box_ttl {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 12px;
}
.c_box_type04 .c_box_contents {
    min-height: 80px;
	padding-left: 140px;
	line-height: 1.5;
}
.c_box_type04 .c_box_date {
	font-size: 1.3rem;
	display: inline-block;
}
.c_box_type04 .c_box_text {
	font-size: 1.3rem;
}
@media screen and (max-width: 640px) {
	.c_box_type04 {
		margin-bottom: 30px;
	}
}

/*----------------------------------------------
	.c_box_type05
---------------------------------------------*/
.c_box_type05 {
    overflow: hidden;
    margin-bottom: 38px;
}
.c_box_type05 iframe {
    width: 455px;
    height: 250px;
}
.c_box_type05:last-child {
	margin-bottom: 0;
}
.c_box_type05 .c_box_img img {
	border-radius: 6px;
}
.c_box_type05 .c_ttl_type02 {
	margin-bottom: 22px;
}
.c_box_type05 .c_box_text {
    width: 460px;
    text-align: justify;
}
.c_box_type05 .is_left {
	float: left;
	margin-right: 40px;
}
.c_box_type05 .is_right {
	float: right;
	margin-left: 40px;
}
@media screen and (max-width: 640px) {
	.c_box_type05 {
		margin-bottom: 30px;
	}
	.c_box_type05 .c_box_text {
		width: 100%;
	}
	.c_box_type05 .is_left,
	.c_box_type05 .is_right {
		float: none;
		padding-bottom: 20px;
		margin-right: 0;
		margin-left: 0;
	}
    .c_box_type05 .c_box_video {
        position: relative;
        width: 100%;
        padding-top: 62.25%;
    }
    .c_box_type05 .c_box_video iframe {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        padding-bottom: 20px;
    }
}

/*----------------------------------------------
	.c_box_type06
---------------------------------------------*/
.c_box_type06 {
    color: #FFFFFF;
    padding: 5px;
}
.c_box_type06 .c_box_inner {
    border: 1px solid #FFFFFF;
	padding: 34px 0 22px;
}
.c_box_type06 .c_ttl_type02 {
    font-size: 1.8rem;
	text-align: center;
    margin-bottom: 15px;
}
.c_box_type06 .c_box_text {
    font-size: 1.3rem;
    margin-bottom: 25px;
}
.c_box_type06 .c_box_contents {
	min-width: 202px;
    width: 202px;
    margin: 0 auto;
}

/*----------------------------------------------
	.c_box_type07
---------------------------------------------*/
.c_box_type07 {
    min-height: 40px;
    background: #FAFAFA;
    line-height: 1.1;
    padding: 12px 20px;
	margin-top: 20px;
}
.c_box_type07 a {
	color: #009A29;
}


/*----------------------------------------------
	.c_box_type08
---------------------------------------------*/
.c_box_type08 {
    height: 180px;
    background: #F1F1F1;
    margin-bottom: 30px;
}
.c_box_type08:last-child {
	margin-bottom: 0;
}
.c_box_type08 .c_box_img {
    float: left;
    max-height: 180px;
}
.c_box_type08 .c_box_img img {
	width: 270px;
}
.c_box_type08 .c_box_contents {
    padding: 26px 36px 26px 311px;
}
.c_box_contents p {
	line-height: 1.7;
}
.c_box_type08 .c_box_ttl {
    font-size: 2rem;
    color: #003D22;
    line-height: 1;
    margin-bottom: 8px;
}

@media screen and (max-width: 640px) {
	.c_box_type08 {
    		height: inherit;
	}
	.c_box_type08 .c_box_img {
		float: none;
		max-height: inherit;
	}
	.c_box_type08 .c_box_contents {
		padding: 25px;
	}
	.c_box_type08 .c_box_img img {
		width: 100%;
	}
}

/*----------------------------------------------
	.c_box_type09
---------------------------------------------*/
.c_box_type09 {
	position: relative;
    width: 860px;
	min-height: 180px;
    background: #F1F1F1;
    padding: 20px;
    margin: 0 0 30px auto;
	overflow: visible !important;
}
.c_box_type09:before {
	content: '';
    	position: absolute;
    top: 1px;
	left: -60px;
    right: 0;
    width: 0;
    border-width: 30px;
    border-style: solid;
    border-color: transparent #F1F1F1 transparent transparent;
}
.c_box_type09:last-child {
	margin-bottom: 0;
}
.c_box_type09 .c_box_img {
	float: left;
}
.c_box_type09 .c_box_contents {
    padding: 10px 0 0 251px;
}
.c_box_type09 .c_box_ttl {
	font-size: 2.2rem;
    color: #003D22;
    line-height: 1.4;
    padding-bottom: 14px;
}
.c_box_type09 .c_box_text {
    padding-bottom: 8px;
}
.c_box_type09 .c_link_type01 {
	font-size: 1.5rem;
}
@media screen and (max-width: 640px) {
	.c_box_type09 {
		width: inherit;
	}
	.c_box_type09:before {
		content: none;
	}
	.c_box_type09 .c_box_contents {
		clear: both;
		padding-left: 0;
	}
}

/*----------------------------------------------
	.c_box_type10
---------------------------------------------*/
.c_box_type10 {
    background: #F1F1F1;
    padding: 20px 24px;
    margin-bottom: 30px;
}
.c_box_type10:last-child {
	margin-bottom: 0;
}

/*----------------------------------------------
	.c_box_counter
---------------------------------------------*/
.c_box_counter {
    counter-reset: box_counter;
}
.c_box_counter .c_counter:before {
    counter-increment: box_counter;
    content: counter(box_counter);
    position: absolute;
    top: 0;
    left: -100px;
    width: 60px;
    /* height: 60px; */
    font-size: 2.8rem;
    color: #FFFFFF;
    text-align: center;
    background: #003D22;
    line-height: 1;
    padding: 16px 0;
	-webkit-border-radius: 50%;
	-ms-border-radius: 50%;
	-moz-border-radius: 50%;
    border-radius: 50%;
}

/*----------------------------------------------
	.c_box_left & .c_box_right
---------------------------------------------*/
.c_box_left {
	float: left;
    width: 460px;
    vertical-align: top;	
}
.c_box_right {
	float: right;
    width: 460px;
    vertical-align: top;	
}
.c_box_left { margin-right: 35px; }
@media screen and (max-width: 640px) {
	.c_box_left, .c_box_right {
		float: inherit;
		width: 100%;
	}
	.c_box_left {
		margin-right: 0;
		margin-bottom: 76px;
	}
}

/*----------------------------------------------
	.c_box_speech
---------------------------------------------*/
.c_box_speech {
    position: relative;
    display: table;
    font-size: 1.7rem;
    width: 680px;
    color: #FFFFFF;
    background: #F9BE00;
	-webkit-border-radius: 6px;
	-ms-border-radius: 6px;
	-moz-border-radius: 6px;
    border-radius: 6px;
	margin: 0 auto 35px;
}
.c_box_speech p {
	display: table-cell;
    height: 90px;
    vertical-align: middle;
    text-align: center;
    padding: 10px 10px;
}
.c_box_speech:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 0;
    margin: auto;
    border-width: 18px 18px 0;
    border-style: solid;
    border-color: #f9be00 transparent transparent transparent;
}
.c_box_speech_image img {
    border-radius: 6px;
}
@media screen and (max-width: 640px) {
	.c_box_speech {
		width: 100%;
	}
}

/*----------------------------------------------
	.c_box_note
---------------------------------------------*/
.c_box_note {
    background: #FFFFFF;
    border: 3px solid #EAEAEA;
    padding: 12px;
}

/*----------------------------------------------
	.c_form_type01
---------------------------------------------*/
.c_form_type01 {
	padding-top: 50px;
	margin-bottom: 70px;
}
.c_form_type01 table {
	width: 626px;
	margin: 0 auto 30px;
}
.c_form_type01 td {
    font-size: 2.2rem;
    vertical-align: middle;
    padding: 0 10px 50px 0px;
}
.c_form_type01 input[type="text"] {
    width: 212px;
    height: 50px;
	padding: 5px;
    border: 1px solid #95989A;
}
.c_form_type01 .c_btn_submit {
	display: table;
    width: 100%;
    text-align: center;
}
.c_form_type01 .c_btn_submit input[type="submit"] {
	display: table-cell;
    font-size: 2.2rem;
    width: 626px;
    height: 80px;
    border: 0;
    background: #EAEAEA;
    padding: 10px;
    line-height: 1.4;
}
 .c_btn_submit input[type="submit"]:hover {
	 background: #c7c7c7;
	 cursor: pointer;
}

/*----------------------------------------------
	.c_form_type02
---------------------------------------------*/
.c_form_type02 {
    width: 768px;
    margin: 0 auto;
}
.c_form_type02 table {
	width: 100%;
    text-align: left;
	margin-bottom: 60px;
}
.c_form_type02 td {
    width: 504px;
}
.c_form_type02 th, .c_form_type02 td {
    padding-bottom: 28px;
}
.c_form_type02 tr:last-child th,
.c_form_type02 tr:last-child td {
    padding-bottom: 0;
}
.c_form_type02 tr:last-child th {
	vertical-align: top;
}
.c_form_type02 .c_sublabel.is_left {
	padding-left: 30px;
}
.c_form_type02 .c_sublabel.is_right {
    padding-right: 30px;
}
.c_form_type02 input,
.c_form_type02 select,
.c_form_type02 textarea {
	background: #FFFFFF;
	border: 1px solid #95989A;
}
.c_form_type02 input[type="radio"],
.c_form_type02 input[type="checkbox"] {
    position: absolute;
    visibility: hidden;
}
.c_form_type02 input[type="text"],
.c_form_type02 input[type="tel"],
.c_form_type02 input[type="email"],
.c_form_type02 select {
	height: 30px;
	line-height: 1.3;
	padding: 5px;
}
.c_form_type02 select {
	-webkit-border-radius: 0;
	-ms-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.c_form_type02 select.c_arrow_box {
	background-image: linear-gradient(45deg, transparent 50%, #CCCCCC 50%), linear-gradient(135deg, #CCCCCC 50%, transparent 50%), url(../images/ico_box.png);
    background-position: calc(100% - 14px) calc(1em - 1px), calc(100% - 9px) calc(1em - 1px), calc(100% - 6px) calc(100% - 5px);
    background-size: 5px 5px, 5px 5px, 17px;
    background-repeat: no-repeat;
}
.c_form_type02 select.c_arrow_box:focus {
	background-image: linear-gradient(45deg, #FFFFFF 50%, transparent 50%), linear-gradient(135deg, transparent 50%, white 50%), url(../images/ico_box_f.png);
    background-position: calc(100% - 10px) calc(1em - 5px), calc(100% - 14px) calc(1em - 5px), calc(100% - 6px) calc(100% - 5px);
    background-size: 4px 4px, 4px 4px, 17px;
    background-repeat: no-repeat;
    outline: none;
}
.c_form_type02 textarea {
	width: 504px;
	max-width: 504px;
	height: 167px;
	overflow-y: auto;
}
.c_form_type02 .c_btn_submit {
	display: table;
	width: 100%;
	text-align: center;
}
.c_form_type02 input[type="submit"] {
	display: table-cell;
	font-size: 1.4rem;
	width: 202px;
	min-height: 43px;
	color: #FFFFFF;
	background: #F9BE00;
	vertical-align: middle;
	border: 0;
	line-height: 1.4;
	transition: all 0.25s linear;
}
.c_form_type02 input[type="submit"]:hover {
	font-size: 1.7rem;
    background: #ffc824;
}

/*----------------------------------------------
	.c_input_group
---------------------------------------------*/
.c_input_group {
	display: inline-block;
	position: relative;
}
.c_input_group input[type="radio"] ~ .c_sublabel,
.c_input_group input[type="checkbox"] ~ .c_sublabel {
	position: relative;
    height: 30px;
    z-index: 9;
    cursor: pointer;
	padding-left: 25px;
    padding-right: 0;
    -webkit-transition: all 0.25s linear;
}
.c_input_group:last-child input[type="radio"] ~ .c_sublabel,
.c_input_group:last-child input[type="checkbox"] ~ .c_sublabel {
	margin-right: 0;
}
.c_input_group input[type="radio"] ~ .c_check,
.c_input_group input[type="checkbox"] ~ .c_check {
	position: absolute;
    border: 1px solid #95989a;
	height: 18px;
    width: 18px;
    top: 3px;
    left: 0px;
	z-index: 5;
    -webkit-transition: border .25s linear;
	-ms-transition: border .25s linear;
	-moz-transition: border .25s linear;
	transition: border .25s linear;
}
.c_input_group input[type="radio"] ~ .c_sublabel {
    margin-right: 25px;
}
.c_input_group input[type="radio"] ~ .c_check {
    border-radius: 100%;
}
input[type="radio"]:checked ~ .c_check {
  border: 5px solid #C0C0C0;
}
.c_input_group input[type="checkbox"] ~ .c_sublabel {
    margin-right: 45px;
}
input[type="checkbox"]:checked ~ .c_check::before {
	position: absolute;
	content: '\002714';
    font-size: 1.8rem;
    height: 18px;
    width: 18px;
	top: -8px;
	left: 3px;
	transition: border .25s linear;
    -webkit-transition: border .25s linear;
}

/*----------------------------------------------
	.c_section
---------------------------------------------*/
.c_section {
	padding: 40px 0;
}

/*----------------------------------------------
	.c_sidemenu
---------------------------------------------*/
.c_sidemenu {
    display: table;
    width: 100%;
}
.c_sidemenu li {
	margin-bottom: 1px;
}
.c_sidemenu > ul {
	margin-bottom: 25px;
}
.c_sidemenu .menu_title {
    background-color: #003D22;
    color: #FFF;
    padding: 5px 10px;
    margin-bottom: 1px;
}
.c_sidemenu a {
    display: table-cell;
    width: 300px;
    font-weight: bold;
    color: #000000;
    background: #f5f5f5;
    line-height: 1.3;
    padding: 15px 30px;
    vertical-align: middle;
    text-decoration: none;
}
.c_sidemenu a:hover, .c_sidemenu li.is_current a {
	background: #c8eecf;
}
.c_sidemenu .side_bar_banner li {
    margin-bottom: 10px;
}
.c_sidemenu .side_bar_banner a {
    padding: 0;
    line-height: 0;
}
.c_sidemenu .side_bar_banner a img {
    width: 100%;
    height: inherit;
}
@media screen and (max-width: 640px) {
    .c_sidemenu a {
        display: block;
        width: 100%;
    }
    .c_sidemenu .side_bar_banner {
        display: none;
    }
}

/*----------------------------------------------
	.c_course_menu
---------------------------------------------*/
.c_course_menu {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
.c_course_menu li {
	width: calc(25% - 10px);
	margin: 0 5px;
}
@media screen and (max-width: 640px) {
    .c_course_menu li {
		width: 100%;
		margin-bottom: 5px;
	}
}

/*----------------------------------------------
	.c_page_navi
---------------------------------------------*/
.c_page_navi { 
    text-align: center;
    clear:both;
}
.c_page_navi li {
    display: inline-block;
    margin-right: 5px;
}
.c_page_navi li a {
    display: block;
    color: #95989A;
    border: 1px solid #95989A;
    line-height: 1;
    padding: 6px 9px;
	-webkit-transition: all 0.25s linear;
	-ms-transition: all 0.25s linear;
	-moz-transition: all 0.25s linear;
	transition: all 0.25s linear;
}
.c_page_navi li a:hover, .c_page_navi li.is_current a {
	color: #FFFFFF;
	background: #95989A;
}
.c_page_navi li span {
    display: block;
    color: #FFFFFF;
    background: #95989A;
    border: 1px solid #95989A;
    line-height: 1;
    padding: 6px 9px;
}
@media screen and (max-width: 640px) {
    .c_page_navi { 
        margin-top: 40px;
    }
}

/*----------------------------------------------
	.c_caption
---------------------------------------------*/
.c_caption {
	font-size: 1.2rem;
	color: #95989A;
	text-align: right;
}

/*----------------------------------------------
	.c_feature_section & c_interview_section
---------------------------------------------*/
.c_feature_section .has_column_pc4unit,
.c_interview_section .has_column_pc4unit {
	width: 300px;
}
.c_feature_section .has_column_pc4unit:nth-child(2),
.c_interview_section .has_column_pc4unit:nth-child(2) {
	margin: 0 30px;
}
#Top01 .Col2 {
    width: 100%;
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    justify-content: normal;
    align-items: ;
    text-align: center;
    align-content: space-around;
}
#Top01 .Col2 .Box {
	width: 50%;
	padding: 15px;
}
#Top01 .Col2 .Box .box_text {
	text-align: left;
	min-height: 68px;
}

@media screen and (max-width: 640px) {
	.c_feature_section .has_column_pc4unit,
	.c_interview_section .has_column_pc4unit {
		width: 100%;
	}
	.c_feature_section .has_column_pc4unit:nth-child(2),
	.c_interview_section .has_column_pc4unit:nth-child(2) {
		margin: 0;
	}
#Top01 .Col2 .Box {
	width: 100%;
	padding: 0 15px;
}
}

/*----------------------------------------------
	.c_feature_footer
---------------------------------------------*/
.c_feature_footer .c_box_type06 {
	background-repeat: repeat, no-repeat;
	background-position: top center, center;
	background-size: contain, cover;
}
.c_feature_footer .l_column:first-child .c_box_type06 {
	background-image: url(../images/bg_overlay.png), url(../images/img_content02_footer.png);
}
.c_feature_footer .l_column:nth-child(2) .c_box_type06 {
	background-image: url(../images/bg_overlay.png), url(../images/img_content01_footer.png);
}
.c_feature_footer .l_column:last-child .c_box_type06 {
	background-image: url(../images/bg_overlay.png), url(../images/img_content03_footer.png);
}

/*----------------------------------------------
	.is_background-color
---------------------------------------------*/
.is_green { background: #003D22; }
.is_light_green { background: #31634D; }
.is_orange { background: #ED7700; }
.is_yellow { background: #F9BE00; }
.is_gray { background: #FAFAFA; }
.is_gray_darker { background: #E9E9E9; }
.is_white { background: #FFFFFF; }

/*----------------------------------------------
	Top
---------------------------------------------*/
#top .l_contents .c_section:first-child {
	padding-top: 30px;
	padding-bottom: 30px;
}
@media screen and (max-width: 640px) {
	#top .l_contents .c_section:first-child {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}

/*----------------------------------------------
	.inner
---------------------------------------------*/
.inner .c_section {
	padding: 20px 0;
}
.inner .c_box_type05 {
	margin-bottom: 30px;
}
.inner .c_box_type05:last-child {
    margin-bottom: 0;
}
.inner .c_box_type05 .c_box_text.is_left,
.inner .c_box_type05 .c_box_text.is_right {
	float: none;
	width: inherit;
	margin-right: 0;
	margin-left: 0;	
}
.inner .c_box_type05 .c_box_text.is_left {
	padding-right: 315px;
}
.inner .c_box_type05 .c_box_text.is_right {
	padding-left: 315px;
}
@media screen and (max-width: 640px) {
	.inner .c_section {
		padding: 10px 0;
	}
	.inner .c_box_type05 .c_box_text.is_left,
	.inner .c_box_type05 .c_box_text.is_right {
		padding-bottom: 0;
	}
	.inner .c_box_type05 .c_box_text.is_left {
		padding-right: 0;
	}
	.inner .c_box_type05 .c_box_text.is_right {
		padding-left: 0;
	}
	.inner .c_box_img.u_img_floatR {
		float: none;
		margin-left: 0;
	}
	.inner .c_box_img.u_img_floatL {
		float: none;
		margin-right: 0;
	}
}

/*----------------------------------------------
	.category
---------------------------------------------*/
.category .c_box_left {
    width: 630px;
    margin-right: 24px;
    margin-bottom: 60px;
}
.category .c_box_right {
    width: 300px;
}
.category .l_column.has_column_pc6unit {
	width: 300px;
	margin-right: 30px;
}
.category .l_column.has_column_pc6unit:last-child {
	margin-right: 0;
}

.category .c_box_type03 {
	width: 300px;
    margin: 0 24px 40px 0;
    vertical-align: top;
}
.category .c_box_type03:nth-child(even) {
	margin-right: 0;
}
.category .c_box_type03 .c_box_img {
	height: 200px;
}
.category .c_box_type03 .c_box_date {
	font-size: 1.3rem;
}
.category .c_box_type04 { margin-bottom: 40px; }
.category .c_box_type04 .c_box_img img {
    width: 165px;
    height: 110px;
}
.category .c_box_type04 .c_box_text {
	font-size: inherit;
}
.category .c_box_type04 .c_box_contents {
    min-height: 110px;
    padding-left: 185px;
}
@media screen and (max-width: 640px) {
    .category .c_box_left {
        width: 100%;
        margin-bottom: 0;
    }
    .category .c_box_right {
        width: 100%;
    }
    .category .c_box_type03 {
        width: 100%;
    }
    .category .c_box_type03 .c_box_img {
        width: 120px;
        height: 80px;
    }
    .category .c_box_type03 .c_box_img img {
        width: 100%;
        height: auto;
    }
    
}

/*----------------------------------------------
	.single
---------------------------------------------*/
.single .c_box_left {
    width: 630px;
    margin-right: 25px;
    margin-bottom: 60px;
}
.single .c_box_left strong {
	background: linear-gradient(transparent 40%, #ffff66 40%);
	font-weight: bold;
}
.single .c_box_right {
    width: 300px;
}
@media screen and (max-width: 640px) {
    .single .c_box_left {
        width: 100%;
        margin-bottom: 40px;
    }
    .single .c_box_right {
        width: 100%;
    }
}

/*----------------------------------------------
	MW WP Form
---------------------------------------------*/
.mw_wp_form table tr:nth-child(10) {
    background-color: aqua;
}
.mw_wp_form_business .require { background-color: red !important; }


/*----------------------------------------------
 Instagram Feed
---------------------------------------------*/
.insta-feed--pc {
 display: block;
}
.insta-feed--sp {
 display: none;
}
@media screen and (max-width: 640px) {
 .insta-feed--pc {
  display: none;
 }
 .insta-feed--sp {
  display: block;
 }
}

/*----------------------------------------------
 2024フッターサイトマップ
---------------------------------------------*/

.FooterArea .Sp {
	display: none;
}
.FooterArea {
	width: 100%;
	padding: 40px;
    color: #FFF;
    text-align: left;
}
.FooterArea h2 {
	font-size: clamp(2.0rem, 3vw, 24px);
	margin-bottom: 16px;
}
.FooterListBox {
	max-width: 1200px;
	background: #31634D;
	padding: 40px;
	margin: 0 auto 40px;
}
.FooterArea .CompanyBox {
	display: flex;
	margin-bottom: 32px;
}
.FooterArea .CompanyBox .CompanyImg {
	margin-right: 40px;
}
.FooterArea .info {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 80px;
    margin-bottom: 24px;
}
.FooterArea .info dt {
    font-weight: bold;
}
.FooterArea .info dd {
    margin: 0;
}
.FooterArea .button-group {
    display: flex;
    justify-content: left;
    margin: 20px 0;
}
.FooterArea .button-group a {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 10px;
    background-color: #fcb600;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.FooterArea .button-group a:hover {
    background-color: #ff9800;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}
.FooterArea .FooterSmBox {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    margin-bottom: 32px;
}

.FooterArea .Box1 {
    box-sizing: border-box;
    width: calc(33.3333% - 16px); /* 4列構成 */
    min-width: 250px;
    flex-grow: 1;
}

.FooterArea .BoxInner h2,
.FooterArea .taikenList h2 {
    font-size: clamp(1.6rem, 3vw, 20px);
    margin-bottom: 16px;
    color: #FFF;
    border-left: 3px solid #fcb600;
    padding: 0 0 0 8px;
}

.FooterArea .BoxInner ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.FooterArea .BoxInner ul h3 {
    margin: 16px 0;
    font-size: clamp(1.5rem, 3vw, 16px);
}
.FooterArea .BoxInner ul h3 a {
    xtext-decoration: none;
    color: #fcb600;
}
.FooterArea .taikenList h3 {
    color: #000;
	background: #FABE00;
	text-align: center;
}
.FooterArea .BoxInner ul li {
    margin: 8px 0;
}

.FooterArea .BoxInner li a {
    text-decoration: none;
    color: #FFFFFF;
	display: block;
}

.FooterArea .BoxInner a:hover {
    text-decoration: underline;
}
.FooterArea .FooterSmBox .button-group a {
	margin: 0;
    background-color: #fcb600;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 20px;
    display: inline-block;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.FooterArea .FooterSmBox .button-group a:hover {
    background-color: #ff9800;
}
@media screen and (max-width: 640px) {
.FooterArea .Sp {
	display: block;
}
.FooterArea {
    width: 94%;
    margin: 0 3% 40px;
	padding: 0;
}
.FooterArea .FooterListBox {
	max-width: 100%;
	padding: 16px;
	margin: 0 auto 40px;
}
.FooterArea .CompanyBox {
	display: block;
}
.FooterArea .CompanyBox .CompanyImg {
	margin-right: 0;
	margin-bottom: 24px;
}
.FooterArea .info {
	grid-template-columns: 1fr;
}
.FooterArea .info dd {
    border-bottom: 1px solid #FFFF;
    margin-bottom: 8px;
}
.FooterArea .button-group {
    flex-direction: column;
}
.FooterArea .button-group a {
    margin: 10px 0;
}
.FooterArea .BoxInner {
        width: 100%; /* 1列構成 */
    }
.FooterArea .BoxInner ul li {
    margin: 8px 0;
    border-bottom: 1px solid;
    padding: 8px 0;
}
}

#RecAct {
    position: fixed;
    top: 110px;
    right: -120px; /* 初期は画面外へ隠す */
    background: #06c755;
    box-shadow: 0 2px 10px -6px rgba(0,0,0,.5), 0 3px 10px -4px rgba(0,0,0,.2);
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    border-radius: 10px 0 0 10px;
    border-top: 2px solid #FFF;
    border-left: 2px solid #FFF;
    border-bottom: 2px solid #FFF;
    z-index: 9999;
    transition: right 0.5s ease; /* スライド用アニメーション */
}
#RecAct .fa-line::before {
    background-position: center;
    top: 8px;
    position: absolute;
    right: 10px;
    font-size: 2.5rem;
}
#RecAct a {
    color: #FFF;
    padding: 40px 1rem 8px;
    display: block;
    text-decoration: none;
}
#RecAct.active {
    right: 0; /* 表示 */
}
@media screen and (max-width: 640px) {
 #RecAct {
    top: 80px;
 }
}