@charset "utf-8";
/* CSS Document */
html {
    font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
    color: #202121;
    font-size: 62.5%;
    scroll-behavior: smooth;
}
body {
    color: #202121;
    letter-spacing: 0.08em;
    font-size: 1.6rem;
    font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
    ;
    font-weight: 500;
    font-feature-settings: 'palt'1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
h2 {
	letter-spacing: normal;
}
p {
    line-height: 2.0;
    text-align: justify;
    margin-bottom: 1.4em;
}
p:last-child {
    margin-bottom: 0 !important;
}
a {
    transition: 0.3s;
}
a:hover {
    opacity: 0.7;
}

.zenmaru {
    font-family: "Zen Maru Gothic", serif;
    font-weight: bold;
	letter-spacing: normal;
}

@media screen and (max-width: 640px) { /*-----------------SP----- */
    body {
        font-size: 1.5rem;
        line-height: 1.875em;
        letter-spacing: 0.1em;
    }
    p {
        line-height: 1.8;
    }
}
/*
@media screen and (min-width: 781px) {
    .sp {
        display: none !important;
    }
    .pc {
        display: block;
    }
}

@media screen and (max-width: 780px) {
    .pc {
        display: none !important;
    }
    .sp {
        display: block !important;
    }
}
*/

.display_pc {
	display: initial;
}

.display_tablet {
	display: none;
}

.display_phone {
	display: none;
}

.display_tablet_and_phone {
	display: none;
}

.display_pc_and_tablet {
	display: initial;
}

.display_pc_and_phone {
	display: initial;
}

@media screen and (max-width: 1000px) {
	.display_pc {
		display: none;
	}

	.display_tablet {
		display: initial;
	}

	.display_phone {
		display: none;
	}
	
	.display_tablet_and_phone {
		display: initial;
	}
	
	.display_pc_and_tablet {
		display: initial;
	}
	
	.display_pc_and_phone {
		display: none;
	}
}

@media screen and (max-width: 640px) {
	.display_pc {
		display: none;
	}

	.display_tablet {
		display: none;
	}

	.display_phone {
		display: initial;
	}
	
	.display_tablet_and_phone {
		display: initial;
	}
	
	.display_pc_and_tablet {
		display: none;
	}
	
	.display_pc_and_phone {
		display: initial;
	}
}

/* header
--------------------------------------------------------*/

.head_logo_img {
	height: 50px;
	padding: 5px 0;
	max-width: none;
}

header {
    background-color: rgba(255, 255, 255, 0.84);
    position: fixed;
    top: 0;
    width: 100%;
    margin: 0;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    z-index: 99999;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.headL {
    display: flex;
    align-items: center;
}
.headL .head_logo {
	height: 50px;
    line-height: 1;
    margin: 0 50px 0 0;
}
.headL ul.navi {
    display: flex;
}
.headL li {
    margin-right: 30px;
    color: #202121;
    font-weight: bold;
    font-size: 1.4rem;
    white-space: nowrap;
    padding: 10px 0;
}
.headL li:last-child {
    margin-right: 0;
}
.headL li a {
    text-decoration: none;
    color: #202121;
    font-weight: bold;
    font-size: 1.4rem;
    white-space: nowrap;
}
.headR {
    display: flex;
    align-items: center;
}
.headR ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.headR li {
    margin-right: 20px;
}
.headR li:last-child {
    margin-right: 0;
}
.head_sns {
    width: 30px;
}
.head_tel {
    font-family: "Roboto", sans-serif;
    font-size: 2.0rem;
    font-weight: bold;
    background: url("image/head_tel.png") left center no-repeat;
    background-size: 16px auto;
    padding-left: 20px;
    letter-spacing: 0.02em;
}
.head_tel_btn {
    display: none;
}

@media screen and (max-width: 1000px) {
	.headL .head_logo {
	    margin: 0 30px 0 0;
	}
	.headL li {
	    margin-right: 20px;
	}
	.headR li {
	    margin-right: 14px;
	}
}

@media screen and (max-width: 640px) {
	.head_tel {
	    display: none;
	}
	.head_tel_btn {
	    display: block;
	    width: 30px;
	}
	header {
		padding: 5px 5% 5px 3%;
	}
	.headL {
		width: 100%;
		justify-content: space-between;
	}
	.headL .head_logo {
		margin: 0;
    }
	.headL li {
		font-size: 1.3rem;
	}
	.headL li a {
		font-size: 1.3rem;
	}
	.headR {
		display: none;
	}
}

/* ─────────────────────────────
   ドロップダウン共通
───────────────────────────── */
.has-dropdown {
    position: relative;
    cursor: pointer; /* PC で “押せそう” なカーソル */
}
/* ▼ 初期状態：非表示  */
.dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    padding: 0;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    z-index: 100;
    /* アニメーション用プロパティ */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px); /* 上から “スッ” と降りる */
    pointer-events: none;
    transition:
        opacity .25s ease, transform .25s ease;
}
.dropdown-menu li a {
    display: block;
    padding: 6px 20px;
}
.dropdown-menu li {
    border-bottom: 1px dotted #ccc;
    margin: 0;
}
.dropdown-menu li:last-child {
    border-bottom: none;
}
/* ─────────────────────────────
   ボタン（親トリガー）の見た目調整
───────────────────────────── */
.dropdown-toggle {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
}
.dropdown-toggle:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}
/* ▼ 表示トリガー：PC は .hover、SP は .open */
.has-dropdown.hover  > .dropdown-menu,
.has-dropdown.open   > .dropdown-menu{
  opacity:1; visibility:visible; transform:translateY(0);
  pointer-events:auto;
}
@media screen and (max-width: 640px) { /*-----------------SP----- */
	.dropdown-menu {
		left: auto;
		right: 0;
	}
}


/* sec01
--------------------------------------------------------*/
.sec01 {
    padding: 90px 30px 100px;
    background: url("image/sec01_bg.jpg") top 90px center no-repeat;
    background-size: 1220px auto;
}
.sec01 .wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 40px;
}
.sec01 h2 {
    font-size: 3.6rem;
    text-align: left;
    margin-bottom: 40px;
}
.sec01_flex {
    display: flex;
    justify-content: space-between;
}
.sec01_txt {
    margin-right: 60px;
}
.sec01_img {
    max-width: 470px;
    flex: 1;
}
@media screen and (max-width: 1000px) {
}
@media screen and (max-width: 640px) { /*-----------------SP----- */

}


/* sec02
--------------------------------------------------------*/
.sec02 {
    padding: 60px 30px 90px;
    background-color: #F6F1FB;
}
.sec02 .wrap {
    max-width: 1100px;
    margin: 0 auto;
}
.sec02 h2 {
    font-size: 3.6rem;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sec02 h2 img {
    width: 370px;
    margin-right: 6px;
}
.sec02_box1 {
    border: 3px solid #9E328E;
    border-radius: 20px;
    background-color: #fff;
    padding: 30px;
    margin-bottom: 60px;
}
.sec02_box1 h3 {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
    background-color: #9E338E;
    border-radius: 100px;
    color: #fff;
    font-size: 3.0rem;
    line-height: 1;
    padding: 10px 10px 12px;
}
.sec02_box1 ul {
    display: flex;
    justify-content: space-between;
}
.sec02_box1 li {
    border-right: 2px dashed #80589A;
    padding: 0 30px;
    width: calc(100% / 3);
}
.sec02_box1 li:first-child {
    padding-left: 0;
}
.sec02_box1 li:last-child {
    border-right: none;
    padding-right: 0;
}
.sec02_box1 h4 {
    font-family: "Zen Maru Gothic", serif;
    font-size: 2.0rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: normal;
    color: #9E338E;
    margin-bottom: 30px;
}
.sec02 .h2txt {
    text-align: center;
    margin-bottom: 60px;
}
.sec02_box2 {
    border: 3px solid #0251B7;
    border-radius: 20px;
    background-color: #fff;
    padding: 30px;
}
.sec02_box2 h3 {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
    background-color: #0251B7;
    border-radius: 100px;
    color: #fff;
    font-size: 3.0rem;
    line-height: 1;
    padding: 10px 10px 12px;
}
.sec02_box2 ul {
    display: flex;
    justify-content: space-between;
}
.sec02_box2 li {
    width: calc(100% / 3 - 15px);
    background-color: #ECF9FF;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
}
.sec02_box2 li h4 {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Zen Maru Gothic", serif;
    font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: normal;
    margin-bottom: 10px;
}
.sec02_box2 li:nth-child(1) h4 {
    background: url("image/sec02_img1.png") center center no-repeat;
    background-size: contain;
}
.sec02_box2 li:nth-child(2) h4 {
    background: url("image/sec02_img2.png") center center no-repeat;
    background-size: contain;
}
.sec02_box2 li:nth-child(3) h4 {
    background: url("image/sec02_img3.png") center center no-repeat;
    background-size: contain;
}
.sec02_box2 li p {
    text-align: center;
}
.sec02_box2_txt {
    font-size: 2.0rem;
    text-align: center;
    margin-top: 30px;
}
@media screen and (max-width: 640px) { /*-----------------SP----- */
	
}


/* sec03
--------------------------------------------------------*/
.sec03 {
    padding: 100px 30px 150px;
    background: url("image/sec03_bg.jpg") top 30px center no-repeat;
}
.sec03 .wrap {
    max-width: 1100px;
    margin: 0 auto;
}
.sec03_flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
.sec03_img {
    width: 48%;
}
.sec03_img img {
    border-radius: 20px;
}
.sec03_txt {
    width: 47%;
}
.sec03_txt h2 {
    font-size: 3.6rem;
    margin-bottom: 30px;
}
.sec03 ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    padding: 0;
    margin: 0;
}
.sec03 li img {
    border-radius: 20px;
    margin-bottom: 10px;
}
.h3flex {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #707070;
    padding-bottom: 10px;
    margin-bottom: 12px;
}
.sec03 li h3 {
    border-radius: 20px;
    font-family: "Zen Maru Gothic", serif;
    font-size: 2.0rem;
    font-weight: bold;
    letter-spacing: normal;
}
.sec03 li:nth-child(1) h3 {
    color: #9E338E;
}
.sec03 li:nth-child(2) h3 {
    color: #0251B7;
}
.sec03 li:nth-child(3) h3 {
    color: #99CB49;
}
.sec03 li:nth-child(4) h3 {
    color: #E68D33;
}
.sec03 li:nth-child(5) h3 {
    color: #37A15B;
}
.sec03 li .h3flex a {
    text-decoration: none;
    font-size: 1.2rem;
    line-height: 1;
    border-radius: 100px;
    padding: 3px 20px 4px 10px;
}
.sec03 li:nth-child(1) .h3flex a {
    color: #9E338E;
    border: 2px solid #9E338E;
    background: url("image/sec03_arrow1.png") right 8px center no-repeat;
    background-size: 10px auto;
}
.sec03 li:nth-child(2) .h3flex a {
    color: #0251B7;
    border: 2px solid #0251B7;
    background: url("image/sec03_arrow2.png") right 8px center no-repeat;
    background-size: 10px auto;
}
.sec03 li:nth-child(3) .h3flex a {
    color: #99CB49;
    border: 2px solid #99CB49;
    background: url("image/sec03_arrow3.png") right 8px center no-repeat;
    background-size: 10px auto;
}
.sec03 li:nth-child(4) .h3flex a {
    color: #E68D33;
    border: 2px solid #E68D33;
    background: url("image/sec03_arrow4.png") right 8px center no-repeat;
    background-size: 10px auto;
}
.sec03 li:nth-child(5) .h3flex a {
    color: #37A15B;
    border: 2px solid #37A15B;
    background: url("image/sec03_arrow5.png") right 8px center no-repeat;
    background-size: 10px auto;
}
@media screen and (max-width: 640px) { /*-----------------SP----- */
	
}


/* event
--------------------------------------------------------*/
:root {
    --kaki_table_line: 0.5px solid rgb(220,220,220);
    --kaki_kentei_ryokin_table_line: 1px solid rgb(150,150,150);
}

/* main title
--------------------------------------------------------*/
/* mv
--------------------------------------------------------*/
body#top {
    background: url("image/mv_bg.jpg") top center no-repeat;
    background-size: contain;
}
.sec_mv {
    padding: 60px 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mvL {
    flex: 1;
    max-width: 590px;
}
.mvR {
    flex: 1;
    max-width: 600px;
}

.sec_mv h2 {
    margin-bottom: 60px;
}
.mv_txt {
    font-size: 2.4rem;
    text-align: center;
}

.sec_mv {
	height: 350px;
}

@media screen and (max-width: 1000px) {
	
}
@media screen and (max-width: 640px) {
	body#top {
		background: url("image/mv_bg_sp.jpg") top center no-repeat;
		background-size: contain;
	}
	.sec_mv {
		width:100%;
		height: 200px;
	}
}



/* summer specil learning
--------------------------------------------------------*/
.summer_special_learning_title {
	font-size: 3.0em;
	margin: auto;
	color: #303030;
}

.summer_special_learning_title_span {
	position: relative;
  padding: 0 0.1em;
}

.summer_special_learning_title_span::after {
	content: '';
  background-color: rgba(255, 50, 50, 0.7);
  width: 100%;
  height: 0.4em;
  position: absolute;
  top: 65%;
  left: 0%;
  z-index: -1;
}

.summer_char_top_title, .summer_char_learning_title, .summer_char_event_title {
	font-size: 1.4em;
	color: #FCAF17;
}

.kaki_learning {
	width: 880px;
	margin: 0 auto;
}

.sec_course02 .kaki_h2 {
	font-size: 2.38em;
	color: #303030;
}

.kaki_learning_title_span {
	position: relative;
  padding: 0 0.1em;
  z-index: 1;
}

.kaki_learning_title_span::after {
	content: '';
  background-color: rgba(216, 126, 185, 0.7);
  width: 100%;
  height: 0.4em;
  position: absolute;
  top: 65%;
  left: 0%;
  z-index: -1;
}

.course05 .sec_course02 .kaki_learning_h3 {
	font-size: 1.4em;
	max-width: 880px;
	margin: 0 0 20px 0;
	border-bottom: 2px solid rgba(216, 126, 185, 1.0);
}

.kaki_h4 {
	font-size: 1.2em;
}

.kaki_learning_detail {
	padding-left: 1.3em;
	margin-bottom: 20px;
}

.kaki_learning_detail_span {
  border-bottom: 3px dotted #FCAF17;
}

.kaki_learning_tpics {
	list-style: url(image/icon_himawari.png);
	padding-inline-start: 3.0em;
	margin: 0 0 70px 0;
}

.kaki_learning_tpics_li {
	margin-bottom: 20px;
}

.kaki_learning_plan_ul {
	padding-inline-start: 1.3em;
	margin: 0 0 50px 0;
}

.kaki_learning_plan_order_ul {
	padding-inline-start: 1.3em;
	margin-bottom: 30px;
	display: block;
}

.kaki_learning_plan_order_ul_phone {
	padding-inline-start: 1.3em;
	margin-bottom: 30px;
	display: none;
}

.kaki_learning_plan_order_li {
	display: flex;
}

.kaki_learning_plan_order_li_02 {
	display: flex;
}

.kaki_learning_plan_order_class {
	display: block;
	width: 50px;
}

.kaki_learning_plan_order_time {
	display: block;
	width: 170px;
}

.kaki_learning_plan_order_price {
	display: block;
	width: 80px;
	text-align: right;
}

.kaki_learning_plan_order_value {
	display: block;
	width: 200px;
}

.kaki_learning_plan_order_bargain {
	position: relative;
}

.kaki_learning_plan_order_bargain::after {
	content: "";
	display: block;
	width: 100%;
	bottom: -3px;
	left: 0.8px;
	border-bottom: double 4px rgb(255, 0, 0);
	position: absolute;
	
}

.kaki_learning_plan_order_special {
	display: block;
	width: 220px;
}

.kaki_learning_schedule_p {
	font-size: 1.0em;
	padding-left: 1.3em;
	padding-bottom: 20px;
}

.schedule_table {
	width: 880px;
	margin: auto;
	margin-bottom: 50px;
}

.kaki_table {
	color: rgb(120,120,120);
	border-radius: 10px;
	table-layout: fixed;
	text-align: center;
	overflow: hidden;
	border-collapse: collapse;
	width: 880px;
}

.main_color_honkou {
    background-color: #ccffcc;
}
.main_color_lab {
    background-color: #ffe6ff;
}

.kaki_table_hiduke th {
	font-size: 14px;
	letter-spacing:0.04em;
	width: 40px;
}

.kaki_table_youbi {
	font-size: 14px;
}

.kaki_table_hiduke .kaki_table_shoryaku {
	font-size: 10px;
	width: 15px;
}

.kaki_table td {
	border: 1px solid rgb(220,220,220);
	border-bottom-width: 0;
	border-right-width: 0;
}

.kaki_table .kaki_table_hiduke th, .kaki_table .kaki_table_youbi th {
    border-left: 1px solid rgb(220,220,220);
    border-right: 1px solid rgb(220,220,220);
    text-align: center;
}

.kaki_table .kaki_table_hiduke .kaki_table_cross_cell {
	border-left: none;
	border-right: 1px solid rgb(220,220,220);
	border-bottom: 1px solid rgb(220,220,220);
	width: 50px;
}

.kaki_table_jikan {
    border-right: 1px solid rgb(220,220,220);
    border-bottom: 1px solid rgb(220,220,220);
    padding: 2px;
    font-size: 14px;
    letter-spacing:0.04em;
    width: 50px;
}

.header_color_honkou {
    background-color: #2e992e;
    color: white;
}
.header_color_lab {
    background-color: #994e99;
    color: white;
}

.kaki_table tr:nth-child(3) th,
.kaki_table tr:nth-child(3) td, 
.kaki_table tr:nth-child(5) th,
.kaki_table tr:nth-child(5) td 
{
    background-color: white;
}
.kaki_table_sitanasi {
	border-bottom-width: 0;
}
.kaki_table_miginasi {
	border-right-width: 0!important;
}
.kaki_sec_course02 {
	background-color: white!important;
}

.kaki_sec_course03 {
	background-color: #ccffff;
}

.kaki_schedule_table td,
.kaki_schedule_table,
.kaki_schedule_table th
{
	border-top-width: thin!important;
	border-right-width: thin!important;
	border-bottom-width: thin!important;
	border-left-width: thin!important;
}
.kaki_tyushaku {
	max-width: none!important;
	font-weight: normal;
}
.kaki_schedule_logo {
	width: 200px;
	margin-bottom: 10px;
}

.kaki_schedule_logo_mini {
	width: 150px;
	margin-bottom: 10px;
	margin-left: 2px;
}

@media screen and (max-width: 1000px) { 
	.kaki_learning {
		width: 580px;
		margin: 0 auto;
	}

	.schedule_table {
		width: 580px;
		margin: auto;
		margin-bottom: 50px;
	}
	
	.kaki_table {
		color: rgb(120,120,120);
		border-radius: 10px;
		table-layout: fixed;
		text-align: center;
		overflow: hidden;
		border-collapse: collapse;
		width: 580px;
		margin: 20px 0;
	}
	
	.kaki_table_first {
		width: 377.5px;
	}
	
	.course05 .sec_course02 .kaki_learning_h3 {
		font-size: 1.3em;
		max-width: 580px;
		margin: 0 0 20px 0;
		border-bottom: 2px solid rgba(216, 126, 185, 1.0);
		line-height: 1.875em;
	}
	
	.kaki_table_jikan {
    border-right: 1px solid rgb(220,220,220);
    border-bottom: 1px solid rgb(220,220,220);
    padding: 2px;
    font-size: 14px;
    letter-spacing:0.04em;
    width: 50px;
    line-height: 1.2em;
	}
	
	.kaki_learning_plan_order_ul {
		display: block;
	}
	
	.kaki_learning_plan_order_ul_phone {
		display: none;
	}
}

@media screen and (max-width: 640px) { 
	.kaki_learning {
		width: 324px;
		margin: 0 auto;
	}

	.schedule_table {
		width: 324px;
		margin: auto;
		margin-bottom: 50px;
	}
	
	.kaki_table {
		color: rgb(120,120,120);
		border-radius: 10px;
		table-layout: fixed;
		text-align: center;
		overflow: hidden;
		border-collapse: collapse;
		width: 324px;
	}
	
	.kaki_table_first {
		width: 281.708px;
	}
	
	.course05 .sec_course02 .kaki_learning_h3 {
		font-size: 1.1em;
		max-width: 324px;
		margin: 0 0 20px 0;
		border-bottom: 2px solid rgba(216, 126, 185, 1.0);
	}
	
	.kaki_learning_detail {
		font-size: 1.0em;
		padding-left: 1.3em;
		margin-bottom: 20px;
	}
	
	.kaki_table_jikan {
    border-right: 1px solid rgb(220,220,220);
    border-bottom: 1px solid rgb(220,220,220);
    padding: 2px;
    font-size: 12px;
    letter-spacing:0.04em;
    width: 80px;
    line-height: 1.2em;
	}
	
	.kaki_table .kaki_table_hiduke .kaki_table_cross_cell {
		border-left: none;
		border-right: 1px solid rgb(220,220,220);
		border-bottom: 1px solid rgb(220,220,220);
		width: 80px;
	}
	
	.kaki_table_hiduke th {
	    font-size: 12px;
	    letter-spacing: 0.04em;
	    width: 42px;
	    line-height: 1.4em;
	}
	
	.kaki_table_youbi th {
		line-height: 1.4em;
		font-size: 12px;
	}
	
	.kaki_learning_plan_order_ul {
		display: none;
	}
	
	.kaki_learning_plan_order_ul_phone {
		display: block;
	}
	
	.kaki_learning_plan_order_li_02 {
		margin: 0 0 0 19.5px;
	}
	
	.kaki_learning_plan_order_value {
		width: 180px;
	}
	
	.kaki_tyushaku {
		font-size: 0.9em;
	}
}

/* kaki event[
--------------------------------------------------------*/
.kaki_event_title_span {
	position: relative;
  padding: 0 0.1em;
  z-index: 1;
}

.kaki_event_title_span::after {
	content: '';
  background-color: rgba(180, 227, 103, 0.7);
  width: 100%;
  height: 0.4em;
  position: absolute;
  top: 65%;
  left: 0%;
  z-index: -1;
}

.kaki_event_subtitle {
	font-size: 1.2em;
	text-align: center;
	margin-bottom: 2.8em;
}

.kaki_event_subtitle_span {
	border-bottom: 2px solid #FCAF17;
}

.kaki_event_box {
	width: 880px;
	margin: 0 auto;
}

.kaki_event_info_flex {
	display: flex;
}

.kaki_event_info_div {
	width: 50%;
	padding-top: 0;
}

.kaki_event_info_p {
	margin-bottom: 30px;
}

.kaki_event_info_span {
	position: relative;
}

.kaki_event_info_span::after {
  content: '';
  background-size: 10px 10px;
  background-color: #e1eef5;
  background-image: repeating-linear-gradient(-45deg, rgba(255, 0, 0, 1.0) 0, rgba(255, 0, 0, 1.0) 3px, #fff 0, #fff 50%);
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.kaki_event_image_div {
	width: 50%;
	position: relative;
}

.kaki_event_image {
	width: 100%;
	border-radius: 50%;
	padding-left: 30px;
}

.kaki_event_sub_image {
		width: 40%;
		position: absolute;
		border-radius: 50%;
		bottom: 50px;
		left: 40px;
}

.kaki_event_schedule_table tr td:nth-child(3),
.kaki_event_schedule_table tr th:nth-child(2) {
	border-left: 1px solid rgb(220,220,220);
	margin: 0;
}

.kaki_event_schedule_table_forkids {
	width: 49%;
	padding: 0 0;
	color: rgb(120,120,120);
	margin-right: 1%;
	margin-bottom: 10px;
	border-radius: 10px;
	font-size: 0.9em;
	border: 5px solid #b4e367;
	height: calc(100% - 10px);
}

.kaki_event_schedule_table_lab {
	width: 49%;
	padding: 0 0;
	color: rgb(120,120,120);
	margin-left: 1%;
	margin-bottom: 10px;
	border-radius: 10px;
	font-size: 0.9em;
	border: 5px solid #d87eb9;
	height: calc(100% - 10px);
}

.kaki_event_schedule_table_div {
	display: flex;
	margin-top: 10px;
	overflow: hidden;
}

.kaki_event_schedule_table_logo {
	height: 30px;
	object-fit: contain;
	margin-bottom: 10px;
	margin-left: 2px;
	margin: 0 auto;
}

.kaki_event_schedule_table_mouth {
	text-align: right;
	padding-left: 10px;
}

.kaki_event_schedule_table_day {
	text-align: right;
}

.kaki_event_schedule_table tr td:nth-child(1),
.kaki_event_schedule_table tr td:nth-child(2){
    background-color: #2e992e;
    color: white;
}
.kaki_event_schedule_table tr td:nth-child(3),
.kaki_event_schedule_table tr td:nth-child(4){
    background-color: #994e99;
    color: white;
}

.kaki_event_box {
	font-size: 1.5rem;
}

.kaki_event_image_div_flex {
	display: flex;
	align-items: center;
	height: 100%;
	position: relative;
}

@media screen and (max-width: 1000px) { 
	.kaki_event_box {
		width: 580px;
	}

	.kaki_event_sub_image {
		width: 40%;
		position: absolute;
		border-radius: 50%;
		bottom: 10px;
		left: 10px;
	}
	.kaki_event_image_div {
		width: 80%;
		margin: 20px auto;
	}
	.kaki_event_info_div {
		display: inline-block;
		vertical-align: middle;
		width: 100%;
		padding-top: 30px;
	}
	
	.kaki_event_box {
		font-size: 1.3rem;
	}
	
	.kaki_event_schedule_table_forkids {
		width: 47%;
		padding: 0 3%;
		color: rgb(120,120,120);
		margin-right: 3%;
		margin-bottom: 10px;
		border-radius: 10px;
		font-size: 1.0em;
		border: 5px solid #b4e367;
		height: calc(100% - 10px);
	}

	.kaki_event_schedule_table_lab {
		width: 47%;
		padding: 0 3%;
		color: rgb(120,120,120);
		margin-left: 3%;
		margin-bottom: 10px;
		border-radius: 10px;
		font-size: 1.0em;
		border: 5px solid #d87eb9;
		height: calc(100% - 10px);
	}
}

@media screen and (max-width: 640px) { 
	.kaki_event_sub_image {
		width: 30%;
		position: absolute;
		border-radius: 50%;
		margin-top: -80px;
	}
	
	.kaki_event_box {
		width: 324px;
	}
	
	.kaki_event_schedule_table_div {
		display: initial;
	}
	
	.kaki_event_schedule_table_forkids {
		width: 100%;
		padding: 0 15%;
		color: rgb(120,120,120);
		margin-right: 0;
		margin-bottom: 10px;
		border-radius: 10px;
		font-size: 1.0em;
		border: 5px solid #b4e367;
		height: auto;
	}

	.kaki_event_schedule_table_lab {
		width: 100%;
		padding: 0 15%;
		color: rgb(120,120,120);
		margin-left: 0;
		margin-bottom: 10px;
		border-radius: 10px;
		font-size: 1.0em;
		border: 5px solid #d87eb9;
		height: auto;
	}
}

/* kaki exam
--------------------------------------------------------*/

.course05 .sec_course02 .kaki_exam_subtitle_h3 {
	width: fit-content;
	max-width: none;
	margin: auto;
	border-bottom: dotted 2px rgba(228, 225, 83, 1.0);
	font-size: 1.17em;
}

.kaki_exam_title_span {
	position: relative;
  padding: 0 0.1em;
  z-index: 1;
}

.kaki_exam_title_span::after {
	content: '';
  background-color: rgba(228, 225, 83, 0.7);
  width: 100%;
  height: 0.4em;
  position: absolute;
  top: 65%;
  left: 0%;
  z-index: -1;
}

.kaki_kentei_info h3{
	max-width:100%;
}

.kaki_kentei_ryokin {
	width: 30%;
}

.kaki_kentei_ryokin_table {
	text-align: center;
	width: 100%;
	border-collapse: collapse;
	border:1px solid rgb(150,150,150);
}
.kaki_kentei_ryokin_table td {
	background-color: white;
	border: 1px solid rgb(220,220,220);
}
.kaki_kentei_ryokin_table th {
	background-color: rgba(228, 225, 83, 1.0);
	border-bottom: 1px solid rgb(220,220,220);
}

.kaki_kentei_ryokin_class_td {
	width: 45%;
}

.kaki_kentei_ryokin_price_td {
	width: 55%;
}

.kaki_kentei_ryokin_table tr:last-child td {
	border-bottom-width: 0;
}
.kaki_kentei_ryokin_table tr td:last-child {
	border-right-width: 0;
}
.kaki_kentei_ryokin_table tr td:first-child {
	border-left-width: 0;
}

.kaki_kentei_box {
	width: 880px;
	margin: 0 auto;
}

.kaki_kentei_info {
	width: 65%;
	margin-right: 5%;
}

.kaki_kentei {
	display: flex;
	vertical-align: top;
	padding-top: 40px;
	margin-bottom: 40px;
}

.kaki_kentei_top {
	display: flex;
	vertical-align: top;
	padding-top: 40px;
	margin-bottom: 40px;
}

.kaki_kentei_title {
	#background-color: #b3ffe6;
	#text-align: center;
	#max-width: 100%!important;
	#margin-bottom: 10px;
}

.kaki_kentei_h3 {
	font-size: 1.4em;
	max-width: 880px;
	margin: 0 20px 20px 0;
	border-bottom: 2px solid rgb(228, 225, 83);
}

.kaki_kentei_name::before {
	content: "●";
	color: rgb(228, 225, 83);
}

.kaki_kentei_box {
	font-size: 1.5rem;
}

@media screen and (max-width: 1000px) {
	.kaki_kentei_box {
		width: 580px;
		margin: 0 auto;
		font-size: 1.3rem;
	}
	
	.kaki_kentei_h3 {
		font-size: 1.2em;
		max-width: 580px;
		margin: 0 20px 20px 0;
		border-bottom: 2px solid rgb(228, 225, 83);
	}
	
	.kaki_kentei_info {
		width: 58%;
		margin-right: 2%;
	}
	
	.kaki_kentei_ryokin {
		width: 40%;
	}
	
}

@media screen and (max-width: 640px) { 
	.kaki_kentei {
		display: block;
		padding-top: 0;
	}

	.kaki_kentei_box {
		width: 324px;
		margin: 0 auto;
		font-size: 1.2rem;
	}
	.kaki_kentei_info {
		width: 96%;
		margin: 0 auto;
	}
	
	.course05 .sec_course02 .kaki_kentei_h3 {
		line-height: 1.875em;
	}
	
	.kaki_kentei_ryokin {
		width: 90%;
		margin: 20px auto 0;
	}
	
	.course05 .sec_course02 .kaki_exam_subtitle_h3 {
		font-size: 1.17em;
		margin-bottom: 10px;
	}
	
	.kaki_exam_title_span_phone {
		line-height: 2.0em;
	}
	
	.kaki_kentei_top {
		display: block;
		vertical-align: top;
		padding-top: 0;
		margin-bottom: 40px;
	}
}

/* footer
--------------------------------------------------------*/
footer {}

.foot1 {
    padding: 60px 30px;
}
.foot1 h2 {
    font-size: 3.4rem;
    font-weight: 900;
    margin-bottom: 14px;
    text-align: center;
    letter-spacing: 0.01em;
}
.foot1 .tel {
    font-family: "Roboto", sans-serif;
    font-size: 2.6rem;
    font-weight: bold;
    margin-bottom: 14px;
    text-align: center;
}
.foot1 .txt {
    font-weight: bold;
    text-align: center;
}
.foot1 .btn {
    text-align: center;
}
.foot1 .btn a {
    display: inline-block;
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 10px 70px;
    background: url("image/btn_arrow.png") right 16px center no-repeat;
    background-size: 8px auto;
    background-color: #202121;
    border-radius: 100px;
    text-decoration: none;
}
.foot_map {
    width: 100%;
    line-height: 0;
}
.foot_map iframe {
    width: 100%;
    height: 450px;
}
.foot2 {
    background-color: #fff;
    padding: 70px 30px 40px;
}
.foot2 .wrap {
    max-width: 1100px;
    margin: 0 auto 80px;
    display: flex;
    justify-content: space-between;
}
.foot_logo_ul {
	height: 50px;

	display: flex;
	align-items: center;
}
.foot2 .foot_logo {
    width: 240px;
    margin-bottom: 60px;
}
.foot2 .foot_logo_pro {
    width: 200px;
    
    margin-right: 40px;
}

.foot2 .foot2_flex {
    display: flex;
    align-items: center;
}
.foot2 ul {
    font-size: 1.4rem;
}

.foot2 li a {
    color: #202121;
    text-decoration: none;
}
.foot2{
    margin-bottom: 0;
}
.foot2 .foot_ul1 {
    margin-right: 40px;
}
.foot2 .foot_ul2 {
    margin-right: 40px;
}
.foot2 .copy {
    font-size: 10px;
    text-align: center;
    letter-spacing: normal;
}
@media screen and (max-width: 1000px) {
    .foot2 .foot_logo {
        width: 180px;
    }
    .foot2 .foot_logo_pro {
        width: 140px;
    }
}
@media screen and (max-width: 640px) { 
	.foot1 {
		padding: 3em 5%;
	}
	.foot1 h2 {
		font-size: 1.8rem;
		margin-bottom: 10px;
	}
	.foot1 .tel {
		font-size: 1.8rem;
		margin-bottom: 20px;
	}
	.foot1 .txt {
		font-weight: bold;
		font-size: 1.3rem;
		margin-bottom: 30px;
	}
	.foot1 .btn a {
		font-size: 1.5rem;
	}
	.foot_map iframe {
		height: 300px;
	}
	.foot2 {
		padding: 3em 10% 80px;
	}
	.foot2 .wrap {
		max-width: 100%;
		margin: 0 auto 50px;
		display: block;
	}
	.foot2 .foot_logo {
		width: 180px;
		margin: 0 0 30px;
	}
	.foot2 .foot_logo_pro {
		width: 140px;
	}
	.foot2 .foot2_flex {
		display: block;
		margin-top: 3em;
	}
	.foot2 ul {
		font-size: 1.2rem;
	}
	.foot2 li {
		margin-bottom: 10px;
	}
	.foot2 li a {
		color: #202121;
		text-decoration: none;
	}
	.foot2 li {
		margin-bottom: 0;
	}
	.foot2 .foot_ul1 {
		margin-right: 0;
		margin-bottom: 10px;
	}
	.foot2 .foot_ul2 {
		margin-right: 0;
		margin-bottom: 10px;
}
	.foot2 .copy {
		font-size: 10px;
		text-align: center;
		letter-spacing: normal;
	}
}


/* about
--------------------------------------------------------*/
body#about {
    background: url("image/page/mv_bg1.jpg") top center no-repeat;
    background-size: contain;
}
@media screen and (max-width: 1000px) {
	body#about {
		background: url("image/page/mv_bg1.jpg") top center no-repeat;
		background-size: 150% auto;
	}
}

.about02_flex {
/*
	display: flex;
*/
	justify-content: space-between;
	margin-bottom: 50px;
}
.about02_flex .img {
	width: 37%;
}
.about02_flex .txt {
	width: 58%;
}
.about02_flex .txt h3 {
	color: #9E338E;
	font-size: 2.2rem;
	margin-bottom: 6px;
}
.about02_flex .txt p {
	margin-bottom: 44px;
}

@media screen and (max-width: 640px) { /*-----------------SP----- */
	body#about {
		background: url("image/page/mv_bg1.jpg") top right -124px no-repeat;
		background-size: 740px;
	}
	.about02_flex {
		display: block;
		margin-bottom: 40px;
	}
	.about02_flex .img {
		width: 100%;
		margin: 0 auto 20px;
	}
	.about02_flex .txt {
		width: 100%;
	}
	.about02_flex .txt h3 {
		font-size: 1.8rem;
		margin-bottom: 10px;
	}
	.about02_flex .txt p {
		margin-bottom: 30px;
	}
}

/* course
--------------------------------------------------------*/
body.course05 {
    background: url("image/mv_bg6.jpg") top center no-repeat;
    background-size: contain;
}
@media screen and (max-width: 1000px) {
	body.course05 {
		background: url("image/mv_bg6.jpg") top center no-repeat;
		background-size: 150% auto;
	}
}
@media screen and (max-width: 640px) { /*-----------------SP----- */
	body.course05 {
		background: url("image/mv_bg6.jpg") top 50px center no-repeat;
		background-size: 360px;
	}
}

/*
.course01 h1 {
	background: url("image/page/ttl_line2.png") bottom center no-repeat;
	background-size: auto 5px;
	color: #9E338E;
}
.course02 h1 {
	background: url("image/page/ttl_line3.png") bottom center no-repeat;
	background-size: auto 5px;
	color: #0251B7;
}
.course03 h1 {
	background: url("image/page/ttl_line4.png") bottom center no-repeat;
	background-size: auto 5px;
	color: #99CB49;
}
.course04 h1 {
	background: url("image/page/ttl_line5.png") bottom center no-repeat;
	background-size: auto 5px;
	color: #E68D33;
}
.course05 h1 {
	background: url("image/page/ttl_line6.png") bottom center no-repeat;
	background-size: auto 5px;
	color: #37A15B;
}
*/
@media screen and (max-width: 640px) { /*-----------------SP----- */
		.course05 h1 {
			background-size: auto 4px;
		}
}


.course_mv {
	margin-bottom: 50px;
}
.course_mv .wrap {
	margin: 120px auto 80px;
}
.course_mv h1 {
    font-size: 3.8rem;
	letter-spacing: 0.1em;
	text-align: center;
	padding-bottom: 20px;
}
.course_mv h2 {
    font-size: 1.6rem;
	text-align: center;
}

/* sec_course02
--------------------------------------------------------*/
.course05 .sec_course02 {
	background-color: #ccffff;
}

.sec_course02 {
	padding: 90px 30px;
}
.sec_course02 .wrap {
	max-width: 1100px;
	margin: 0 auto;
}
.sec_course02 h2 {
	font-size: 2.6rem;
	text-align: center;
	margin-bottom: 40px;
}

.sec_course02 .add_space {
	padding: 20px 0 0 0;
}

.sec_course02 .box {
	background-color: #fff;
	border-radius: 20px;
	padding: 0 50px 40px;
	margin-bottom: 40px;
}
.sec_course02 .box:last-child {
	margin-bottom: 0;
}
.sec_course02 .box_g {
	border: 3px solid #37A25B;
}
.sec_course02 .box_b {
	border: 3px solid #0251B7;
}
.sec_course02 .box_p {
	border: 3px solid #9E328E;
}
.sec_course02 .box_o {
	border: 3px solid #E68D33;
}
.sec_course02 .box_grey {
	border: 3px solid #636363;
}

.sec_course02 .box h3 {
	color: #fff;
	text-align: center;
	line-height: 1;
	border-radius: 0 0 10px 10px;
	max-width: 320px;
	margin: 0 auto 30px;
	padding: 10px 10px 13px;
}
.sec_course02 .box_g h3 {
	background-color: #37A25B;
}
.sec_course02 .box_b h3 {
	background-color: #0251B7;
}
.sec_course02 .box_p h3 {
	background-color: #9E328E;
}
.sec_course02 .box_o h3 {
	background-color: #E68D33;
}
.sec_course02 .box_grey h3 {
	background-color: #636363;
}

.sec_course02 .box h4 {
	line-height: 1;
	font-size: 1.8rem;
	border-radius: 100px;
	margin-bottom: 14px;
	padding: 10px 26px;
	display: inline-block;
}
.sec_course02 .box_g h4 {
	background-color: #DCF4B7;
}
.sec_course02 .box_b h4 {
	background-color: #CEE0FF;
}
.sec_course02 .box_p h4 {
	background-color: #FDD0E9;
}
.sec_course02 .box_o h4 {
	background-color: #FBE0B0;
}
.course01 .sec_course02 .box p {
	margin-bottom: 46px;
	margin-left: 26px;
}
.sec_course02 .box_g strong {
	color: #37A25B;
}
.sec_course02 .box_b strong {
	color: #0251B7;
}
.sec_course02 .box_p strong {
	color: #9E328E;
}

.sec_course02 .box dl {
	display: flex;
	margin-bottom: 20px;
}
.sec_course02 .box dt {
	font-weight: 900;
	border-radius: 100px 0 0 100px;
	line-height: 1;
	padding: 10px 10px 10px 16px;
}
.sec_course02 .box dd {
	font-weight: 900;
	background-color: #FEF9C0;
	border-radius: 0 100px 100px 0;
	line-height: 1;
	padding: 10px 16px 10px 10px;
}

.sec_course02 .box .mid {
	font-weight: 900;
	background-color: #FEF9C0;
	border-radius: 0 0 0 0;
	padding: 10px 16px 10px 10px;
}

.sec_course02 .box_g dt {
	background-color: #BFDB93;
}
.sec_course02 .box_b dt {
	background-color: #ACD0F4;
}
.sec_course02 .box_p dt {
	background-color: #D5AECF;
}

.sec_course02 .box_o dt {
	background-color: #EDBD61;
}
@media screen and (max-width: 640px) { /*-----------------SP----- */
	.sec_course02 {
		padding: 2em 5% 4em;
	}
	.sec_course02 .wrap {
		max-width: 100%;
	}
	.sec_course02 .kaki_h2 {
		font-size: 1.6em;
		margin-bottom: 30px;
	}
/*
	.sec_course02 h2 span {
		font-size: 1.5rem;
	}
*/	
	.sec_course02 .add_space {
	padding: 15px 0 0 0;
	}
	
	.sec_course02 .box {
		padding: 0 24px 24px;
		margin-bottom: 24px;
	}
	.sec_course02 .box_g {
		border: 2px solid #37A25B;
	}
	.sec_course02 .box_b {
		border: 2px solid #0251B7;
	}
	.sec_course02 .box_p {
		border: 2px solid #9E328E;
	}
	.sec_course02 .box_o {
		border: 2px solid #E68D33;
	}
	.sec_course02 .box_grey {
		border: 2px solid #636363;
	}
	.sec_course02 .box h3 {
		max-width: 260px;
		margin: 0 auto 24px;
	}
	.sec_course02 .box h4 {
		font-size: 1.5rem;
		padding: 8px 20px;
	}
	.course01 .sec_course02 .box p {
		margin-bottom: 30px;
		margin-left: 0;
	}
	.sec_course02 .box dl {
		margin-bottom: 14px;
		font-size: 1.2rem;
	}
	.sec_course02 .box dt {
		padding: 8px 8px 8px 14px;
		display: flex;
		align-items: center;
	}
	.sec_course02 .box dd {
		padding: 8px 14px 8px 8px;
		flex: 1;
		line-height: 1.4;
	}
}


.sec_course02 h2.feature {
	font-size: 2.6rem;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 0;
}
.sec_course02 h3.feature {
	font-size: 2.6rem;
	text-align: center;
	margin-bottom: 60px;
}
.sec_course02 h2.feature img {
	width: 320px;
	margin-right: 6px;
}
.sec_course02 .f_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-left: 50px;
	margin-bottom: 30px;
}
.sec_course02 .f_box div {
	width: 46%;
	background-color: #fff;
	position: relative;
	border-radius: 20px;
	padding: 30px 30px 30px 70px;
}
.f_box1 {
	border: 3px solid #9E338E;
	margin-bottom: 40px;
}
.f_box2 {
	border: 3px solid #36A35B;
	margin-bottom: 40px;
}
.f_box3 {
	border: 3px solid #33509E;
}
.f_box4 {
	border: 3px solid #E68D34;
}
.sec_course02 .f_box .img {
	position: absolute;
	width: 100px;
	top: -20px;
	left: -50px;
}
.sec_course02 .f_box h3 {
	font-size: 2.2rem;
	margin-bottom: 20px;
}
.sec_course02 .f_box p {
	line-height: 1.7;
}
.f_box_txt {
	text-align: center;
	margin-bottom: 90px;
}
.sec_course02 h2.intro {
}
.sec_course02 h2.intro span {
	font-size: 1.8rem;
	display: block;
}
.box_txt {
	text-align: center;
	margin-top: -10px;
}

.course05 .sec_course02 h3 {
	max-width: 600px;
}
.course05 .sec_course02 .box_flex {
	display: flex;
	justify-content: space-between;
}
.course05 .sec_course02 .box_flex div {
	width: 47%;
}
.course05 .sec_course02 .box_flex h4 {
	background-color: transparent;
	padding: 0;
	margin-bottom: 14px;
	font-size: 1.6rem;
}
.course05 .sec_course02 .box_flex ul {
}
.course05 .sec_course02 .box_flex li {
	list-style-type: disc;
	margin-left: 1.4em;
	margin-bottom: 12px;
}
.course05 .sec_course02 .box_flex li:last-child {
	margin-bottom: 0;
}

@media only screen and (max-width: 1000px) {
	.sec_course02 .f_box {
		display: block;
		margin-left: 50px;
	}
	.sec_course02 .f_box div {
		max-width: 500px;
		width: 100%;
		margin: 0 auto 50px;
	}
	.sec_course02 .f_box div:last-child {
		margin: 0 auto;
	}
}
@media screen and (max-width: 640px) { /*-----------------SP----- */
	.sec_course02 h2.feature {
		font-size: 2.4rem;
		display: block;
		margin-bottom: 6px;
	}
	.sec_course02 h3.feature {
		font-size: 2.4rem;
		margin-bottom: 30px;
	}
	.sec_course02 h2.feature img {
		width: 240px;
		margin: 0 auto 10px;
	}
	.sec_course02 .f_box {
		display: block;
		margin-left: 0;
		margin-bottom: 20px;
	}
	.sec_course02 .f_box div {
		width: 100%;
		padding: 24px;
		margin-bottom: 20px;
	}
	.f_box1 {
		border: 2px solid #9E338E;
		margin-bottom: 30px;
	}
	.f_box2 {
		border: 2px solid #36A35B;
		margin-bottom: 30px;
	}
	.f_box3 {
		border: 2px solid #33509E;
	}
	.f_box4 {
		border: 2px solid #E68D34;
	}
	.sec_course02 .f_box .img {
		position: absolute;
		width: 54px;
		top: 24px;
		left: 24px;
	}
	.sec_course02 .f_box h3 {
		font-size: 1.8rem;
		margin-bottom: 14px;
		padding-left: 70px;
	}
	.f_box_txt {
		text-align: justify;
		margin-bottom: 70px;
	}
	.sec_course02 h2.intro {
		line-height: 1.5;
	}
	.sec_course02 h2.intro span {
		font-size: 1.6rem;
		display: block;
		margin-bottom: 10px;
	}
	.box_txt {
		text-align: justify;
		margin-top: 0;
	}
	.course05 .sec_course02 h3 {
		max-width: 100%;
		line-height: 0.8;
	}
	.course05 .sec_course02 .box_flex {
		display: block;
	}
	.course05 .sec_course02 .box_flex div {
		width: 100%;
		margin-bottom: 20px;
	}
	.course05 .sec_course02 .box_flex div:last-child {
		margin-bottom: 0;
	}
	.course05 .sec_course02 .box_flex h4 {
		margin-bottom: 10px;
		font-size: 1.5rem;
	}
	.course05 .sec_course02 .box_flex ul {
	}
	.course05 .sec_course02 .box_flex li {
		margin-bottom: 10px;
		line-height: 1.5;
	}
}

/* foot_btn
--------------------------------------------------------*/
.foot_btn {
	position: fixed;
	z-index: 100;
	bottom: 0;
	background-color: #fff;
	border-top: 1px solid #ddd;
	width: 100%;
}
.foot_btn ul {
	display: flex;
	align-items: center;
}
.foot_sns {
	display: flex;
	justify-content: space-between;;
	width: 100px;
	padding: 0 15px;
}
.foot_sns a {
	width: 30px;
}
.foot_tel {
	width: calc( 100% - 50px );
}
.foot_tel a {
    background-color: #F4F4F4;
    font-size: 1.4rem;
    font-weight: bold;
    color: #202121;
    text-decoration: none;
    display: block;
    line-height: 1;
    padding: 16px 6px;
	text-align: center;
}
.foot_tel a span {
	background: url("image/head_tel.png") left center no-repeat;
	background-size: 16px auto;
	padding-left: 20px;
}
.foot_form {
	width: calc( 100% / 2 - 50px );
}
.foot_form a {
    background-color: #202121;
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    display: block;
    line-height: 1;
    padding: 16px 6px;
	text-align: center;
}	