@charset "UTF-8";
a {
  text-decoration: none;
}
a:hover {
  opacity: .8;
  transition: all .6s;
  text-decoration: none;
}
.sp_br {
  display: none;
}

/* bananaslipplus */
@font-face {
  font-family: 'bananaslip';
  src: url('../font/bananaslipplus.woff') format('woff') ,
  url('../font/bananaslipplus.woff2') format('woff2');
}
/* Josefin+Sans */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;500;600;700&display=swap');

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Noto Sans CJK JP"),
    local("Noto Sans JP"),
    url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff2) format('woff2'),
    url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff) format('woff'),
    url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.otf) format('opentype');
}
/*========= LoadingのためのCSS ===============*/
/* Loading背景画面設定 */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #33BDC6;
/* 以下のコードを追加 */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
#loading.loaded {
  opacity: 0;
  visibility: hidden;
  display:none;
}
.svg_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* パスの初期設定 */
.svg_text path {
  fill: transparent;
  stroke: #fff;
  stroke-width: 2;
  stroke-dasharray: 1500;
  stroke-dashoffset:0;
  animation:path 5s ease-in forwards;
}
@keyframes path{
/* ▼線のみ描画ここから▼*/
0%{
  fill: transparent;
  stroke-dashoffset: 1500;
  }
  90%{
  fill: transparent;
  stroke-width: 1;
}
/* ▲線のみ描画ここまで▲*/
/* ▼図形の塗りつぶしここから▼*/
100%{
  fill: #fff;
  stroke-width: 0;
  stroke-dashoffset:0;
}
/* ▲図形の塗りつぶしここまで▲*/}


/*.row_wrap a*/
.scroll__animation {
  opacity : 0.1;
  transform : translate(0, 50px);
  transition : all 500ms;
}
.scroll__animation.scrollin{
  opacity : 1;
  transform : translate(0, 0);
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1.5;
  background: #fff;
  color: #313131;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1, h2, h3, h4, body, header, article,main, section, footer, div, a, dt, dd, dl, ul, ol, li, p{
  box-sizing: border-box; }

section {
  padding: 0; }

li {
  list-style-type: none; }

a{
  text-decoration: none;
  box-sizing: border-box;
}

figure img{
  flex-shrink: 0;
  width:100%;
  height: auto;
}

.wrapper {
  position: relative;
  width: 100%;
  height: auto !important;
  margin:0 auto;
  overflow-x: hidden;
  box-sizing: content-box;
}
/*---------------------------------------
main TOP
-----------------------------------------*/
.slide-animation{
    animation: fadezoom 6s 0s forwards;
}
@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 235px;
  background: url('../images/common/head_bg.svg');
  border-radius: 0 0 40px 40px;
  z-index: 999;
}
.head__cont {
  padding: 30px 40px;
  border-radius: 40px 0 0 40px;
}
.head__logo {
  display: none;
}
.head__cont__logo {
  margin-bottom: 40px;
}
.spHead__cont__logo {
  display: none;
}
.head__cont__menu ,
.headSeminar__cont__lists {
  max-width: 200px;
  margin: 0 auto;
}
.head__cont__menu--child {
  /* margin-bottom: 30px; */
  margin-bottom: 20px;
  text-align: center;
}
.head__cont__menu--child a ,
.headSeminar__cont__lists--child a {
  padding-bottom: 5px;
  position: relative;
}
.head__cont__menu--child a::before ,
.headSeminar__cont__lists--child a::before {
  background: #33bdc6;
  content: '';
  width: 80%;
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.headSeminar__cont__lists--child a::before {
  background: #fff;
}
.head__cont__menu--child:last-child ,
.headSeminar__cont__lists--child:last-child {
  margin-bottom: 0;
}
.head__cont__menu--child a ,
.headSeminar__cont__lists--child a {
  font-size: 15px;
  font-weight: 500;
  color: #313131;
  position: relative;
  letter-spacing: 0;
  display: block;
}
.head__cont__menu--child a::after {
  position: absolute;
  content:"";
  background: url('../images/common/icon_arrow.svg');
  background-repeat: no-repeat;
  background-size: 100%;
  top: 0;
  bottom: 0;
  right: -10px;
  margin: auto;
  width: 4px;
  height: 8px;
}
@media (any-hover: hover) {
  .head__cont__menu--child a:hover::before ,
  .headSeminar__cont__lists--child a:hover::before {
    transform-origin: center top;
    transform: scale(1, 1);
  }
  .head__cont__menu--child a:hover::after ,
  .headSeminar__cont__lists--child a:hover::after {
    transform: rotate3d(0, 1, 0, 180deg);
  }
}
.headSeminar__cont {
  background: #33BDC6;
  padding: 30px 40px;
  border-radius: 0 0 40px 40px;
}
.headSeminar__cont__ttl {
  font-size: 15px;
  text-align: center;
  color: #fff;
  position: relative;
  letter-spacing: 0;
  margin-bottom: 35px;
  line-height: 1.5;
}
.headSeminar__cont__ttl::after {
  position: absolute;
  content:"";
  background: url('../images/common/ttl_border.svg');
  background-repeat: no-repeat;
  background-size: 100%;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 5px;
}
.headSeminar__cont__lists--child {
  /* margin-bottom: 30px; */
  margin-bottom: 20px;
  text-align: center;
}
.headSeminar__cont__lists--child a {
  color: #fff;
  line-height: 1.5;
}
.headSeminar__cont__lists--child a::after {
  position: absolute;
  content:"";
  background: url('../images/common/icon_key.svg');
  background-repeat: no-repeat;
  background-size: 100%;
  top: 0;
  bottom: 0;
  right: -10px;
  margin: auto;
  width: 16px;
  height: 16px;
}
/*---------------------------------------
toppage
-----------------------------------------*/
.left__mgn {
  margin-left: 230px;
}
.mv__area {
  margin-bottom: 80px;
  margin-left: 230px;
  overflow: hidden;
  pointer-events: none;
}
.mv__area img {
  width: 100%;
  height: auto;
}
.news__area {
  max-width: 880px;
  margin: 0 auto 40px;
}
.note__area {
  display: flex;
  margin-bottom: 40px;
}
.note__child {
  width: 32%;
  margin-right: 2%;
  background: #EEF0F1;
  border-radius: 10px;
  padding: 2rem;
}
.note__child:last-child {
  margin-right: 0;
}
.note__child__thumb img {
  border-radius: 10px;
  width: 100%;
  height: auto;
}
.note__child__ttl {
  font-size: 15px;
  color: #313131;
  line-height: 1.5;
  letter-spacing: 1px;
}
.note__child__txt {
  font-size: 14px;
  color: #313131;
  line-height: 1.5;
  margin-bottom: 0;
  letter-spacing: 1px;
}
.area__head img {
  margin-bottom: 12px;
}
.area__head h2 {
  font-size: 16px;
  font-weight: 600;
  color: #35AFBA;
  margin-bottom: 40px;
}
.area__txt {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 40px;
}
.view_more {
  margin-bottom: 20px;
}
.view_more.right {
  text-align: right;
}
.view_more a:hover img  {
  filter: invert(80%) sepia(70%) saturate(960%) hue-rotate(118deg) brightness(97%) contrast(101%);
  transition: all .6s;
}
.about__area {
  background: url("../images/common/bg_dice.png");
}
.about__area__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 40px 0;
}
.about__ill {
  position: relative;
}
.about__ill::after {
  position: absolute;
  content: "";
  background: url("../images/about/img_intro_ill.png") no-repeat;
  background-size: 100%;
  width: 245px;
  height: 210px;
  top: -35px;
  right: 160px;
  margin: auto;
}
.pickup__area {
  max-width: 880px;
  margin: 0 auto;
  padding: 60px 0;
}
.pickup__area .page__area__subttl {
  margin-bottom: 30px;
}
.exclusive__area {
  background: url("../images/common/bg_dotted.png");
}
.exclusive__area__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 60px 0;
}
.exclusive__area__inner .area__head {
  max-width: 880px;
  margin: 0 auto;
}
.bnr__area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 4%;
}
.bnr__area__child {
  width: 48%;
}
.pass__txt {
  font-size: 16px;
  line-height: 1.5;
}
.dojo__area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 60px 0 60px auto;
  max-width: calc((100vw - 1060px) / 2 + 1100px - 280px);
  width: 100%;
}
.dojo__area__left {
  width: 40%;
  margin-right: 5%;
}
.dojo__area__right {
  width: 55%;
  height: auto;
}
.dojo__img  ,
.dojo__img img {
  width: 100%;
  height: auto;
}
.textbook__area {
    background: url("../images/common/bg_dice.png");
}
.textbook__area__inner ,
.project__area__inner {
  max-width: 880px;
  margin: 0 auto;
}
.textbook__area .area__head ,
.project__area .area__head {
  max-width: 880px;
  margin: 0 auto;
  padding: 40px 0 0;
}
.textbook__area__inner ,
.project__area__inner {
  max-width: calc((100vw - 1060px) / 2 + 1200px - 280px);
  border-radius: 40px 0 0 40px;
  margin: 140px 0 30px auto;
  position: relative;
  z-index: 1;
}
.textbook__area__inner {
  background : #33BDC6;
}
.project__area__inner {
  background: #ADD101;
}
.textbook__child ,
.project__child {
  margin-top: -100px;
}
.carousel__area {
  margin-left: 100px;
  padding-bottom: 110px;
}
.carousel__ttl {
  color: #fff;
  font-size: 16px;
  text-align: left;
  line-height: 1.7;
  margin-bottom: 20px;
}
.slick-slide{
  padding-inline: 20px;
}
.mv__carousel .slick-slide {
  padding-inline: 0;
}
.carousel__img {
  overflow: hidden;
  border-radius: 20px;
}
a:hover .carousel__img img {
  transform: scale(1.2,1.2);
  transition: 1s all;
}
.carousel__area a:hover {
  opacity: 1;
}
.carousel__img img {
  object-fit: cover;
  margin-bottom: 0;
  transition: 1s all;
}
.carousel__all {
  position: absolute;
  left: 0;
  right: 0;
  max-width: 200px;
  margin: 0 auto;
  bottom: 70px;
  text-align: center;
}
.carousel__all a {
  color: #fff;
  text-decoration: underline;
  font-size: 16px;
}
.carousel__all a:hover {
  text-decoration: none;
}
.calendar__area {
  margin-inline : auto;
  margin-block: 100px;
  text-align: center;
  max-width: 600px
}
footer.main__footer {
      background-image: url("../images/common/bg_footer.png");
}
/*---------------------------------------
main 下層
-----------------------------------------*/
.page__area {
  max-width: 1080px;
  margin: 80px auto;
}
.calendar__inner {
  text-align: center;
  max-width: 960px;
  margin: 80px auto;
}
.calendar__inner iframe {
  width: 100%;
}
.calendar__inner p {
  text-align: left;
  margin-bottom: 2rem;
}
.page__area__ttl ,
.single .page__area__ttl {
  font-size: 34px;
  font-weight: 600;
  padding-bottom: 40px;
  margin-bottom: 30px;
  border-bottom: 4px solid #33BDC6;
}
.page__area__ttl--inner {
  max-width: 880px;
  margin-inline: auto;
  display: block;
}
.text__area h3 ,
.text__area h4 {
  max-width: 880px;
  margin-inline: auto;
}
.text__area p ,
.text__area ul ,
.text__area ol {
  max-width: 880px;
  margin-inline: auto;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
}
.text__area ul ,
.text__area ol {
  padding-left: 40px;
}
.text__area ul li {
  list-style-type: disc;
  padding-bottom: 10px;
}
.text__area ol li{
  list-style-type: decimal;
  padding-bottom: 10px;
}
.archive__text__area p ,
.archive__text__area ul {
  max-width: 980px;
  margin-inline: auto;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
}
.archive__text__area p.sub__catch {
  margin-bottom: 40px;
}
.text__area h2,
.page__area__subttl {
  background: #33BDC6;
  padding: 10px 30px;
  font-family: bananaslip , sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 60px;
}
.project__color h1 {
  color: #87A400!important;
}
.project__color h2 {
  background: #ADD101!important;
}
.project__color .btn__link a {
  background: #ADD101!important;
}
.text__area h3 {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 2px solid #33BDC6;
  margin-bottom: 30px;
}
.project__color .text__area h3 {
  border-bottom: 2px solid #ADD101;
}
.text__area h4 {
  color: #33BDC6;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
.project__color .text__area h4 {
  color: #87A400;
}
.text__area img {
  margin-block: 50px 90px;
}
.link__area .btn__link:first-child {
  margin-top: 80px;
}
.btn__link {
  max-width: 400px;
  margin: 40px auto;
  position: relative;
}
.btn__link a {
  background: #33BDC6;
  border-radius:  40px;
  font-size: 18px;
  text-align: center;
  color: #fff;
  padding: 25px;
  display:block;
}
.btn__link a:hover {
  opacity: 0.7;
  transition: all .3s;
}
.icon__dl a::after {
  position: absolute;
  content: "";
  background: url(../images/common/icon_dl.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  width: 21px;
  height: 21px;
}
.icon__link a::after {
  position: absolute;
  content: "";
  background: url(../images/common/icon_link.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  width: 21px;
  height: 21px;
}
.bg__dice {
  background: url("../images/common/bg_dice.png");
}
.bg__dice .calendar__area {
  padding-block:60px;
  margin-block: auto;
}
.list__head {
  max-width: 880px;
  margin: 0 auto;
  padding: 40px 0;
}
.list__head.single {
  max-width: inherit;
}
.list__head img {
  margin-bottom: 12px;
}
.list__head h1 {
  font-size: 16px;
  font-weight: 600;
  color: #35AFBA;
  margin-bottom: 40px
}
.textbook__list {
  display: flex;
  flex-wrap: wrap;
}
.textbook__list__child {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 3%;
}
.textbook__list__child:nth-child(3n) {
  margin-right: 0;
}
.textbook__list__child--img {
  overflow: hidden;
  border-radius:  20px;
  width: 100%;
  height: auto;
}
.textbook__list__child--img img {
  object-fit: cover;
  margin-bottom: 0;
  transition:1s all;
}
a:hover .textbook__list__child--img img{
  transform:scale(1.2,1.2);
  transition:1s all;
}
.textbook__list__child--date {
  color: #33BDC6;
  font-size: 16px;
  padding-inline: 5px;
}
.archive__text__area .textbook__list__child--date {
  margin-bottom: 0;
}
.textbook__list__child--ttl {
  color: #313131;
  padding-inline: 5px;
}
.cms-pagination .clearfix {
  display: flex;
  justify-content: center;
  max-width: 880px;
  margin-inline: auto;
}
.pagination-no-num {
  filter: invert(54%) sepia(63%) saturate(436%) hue-rotate(135deg) brightness(103%) contrast(95%);
}
.pagination-no-num.prev {
  margin-right: auto;
}
.pagination-no-num.next {
  margin-left: auto;
}
.pagination-sp {
  flex-basis: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
.pagination-sp a {
  color: #313131!important;
}
.pagination-index.pagination-sp {
  color: #33BDC6!important;
}
.project__color .page__area__ttl {
  border-bottom: 4px solid #ADD101;
}
.project__list__child {
  margin-bottom: 60px;
}
.project__list__child a {
  display: flex;
}
.project__list__child--img {
  width: 50%;
}
.project__list__child--img {
  overflow: hidden;
  border-radius: 20px;
}
.project__list__child--img img {
  object-fit: cover;
  margin-bottom: 0;
  transition:1s all;
}
a:hover .project__list__child--img img {
  transform:scale(1.2,1.2);
  transition:1s all;
}
.project__list__child--txtarea {
  width: 37%;
  color: #313131!important;
  padding: 40px 0 0 40px;
}
.project__list__child--txtarea--ttl {
  font-size: 26px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 4px solid #ADD101;
  margin-bottom: 70px;
}
.project__list__child--txtarea--txt {
  font-size: 16px;
}
.about__mv {
  margin-bottom: 80px;
}
.about__mv img {
  width: 100%;
  height: auto;
}
.about__inner {
  max-width: 1080px;
  margin-inline: auto;
  width: 90%;
}
.about__intro img {
  width: 50%;
  height: auto;
}
.about__intro {
  position:relative;
  margin-bottom: 80px;
}
.about__intro::after {
  position: absolute;
  content: "";
  background: url("../images/about/img_intro_ill.png") no-repeat;
  background-size: 100%;
  width: 368px;
  height: 307px;
      width: 34%;
    height: 89%;
  top: 0;
  bottom: 0;
  right: 50px;
  margin: auto;
}
.about__point {
  background: #EEF0F1;
  border-radius: 30px;
  max-width: 72%;
  margin-bottom: 160px;
  position: relative;
}
.right__side {
  margin-left: auto;
}
.left__side {
  margin-right: auto;
}
.about__point__ttl01 ,
.about__point__ttl02 ,
.about__point__ttl03 {
  position: relative;
  font-family: bananaslip , sans-serif;
  font-size: 50px;
  font-weight: 500;
}
.about__point__ttl01 img ,
.about__point__ttl02 img ,
.about__point__ttl03 img  {
  width: 25%;
  height: auto;
}
.about__point__ttl01 {
  color: #009E37;
}
.about__point__ttl02 {
  color: #33BDC6;
}
.about__point__ttl03 {
  color: #ADD101;
}
.about__point__txt {
  padding: 10px 60px 60px;
}
.about__point__txt p {
  font-size: 16px;
  margin-bottom: 1.5rem;
}
.right__link {
  max-width: 320px;
  text-align: center;
  margin-left: auto;
}
.right__link a {
  color: #33BDC6;
  text-decoration: underline;
  margin-right: 20px;
}
.right__link a:hover {
  text-decoration: none;
}
.ill_point01 ,
.ill_point02 ,
.ill_point03 {
  position: relative;
}
.ill_point01::before {
  position: absolute;
  content:"";
  background: url("../images/about/img_point_ill01.png") no-repeat;
  background-size: 100%;
  bottom: 0;
  left: 50px;
  margin: auto;
  width: 19.1%;
  height: 65%;
}
.ill_point02::before {
  position: absolute;
  content:"";
  background: url("../images/about/img_point_ill02.png") no-repeat;
  background-size: 100%;
  width: 322px;
  width: 29.82%;
  height: 233px;
  height: 52.1%;
  bottom: -32%;
  right: 100px;
  margin: auto;
  z-index:2;
}
.ill_point03::before {
  position: absolute;
  content:"";
  background: url("../images/about/img_point_ill03.png") no-repeat;
  background-size: 100%;
  width: 258px;
  height: 234px;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 2;
  width: 24.4%;
  height: 57.2%;
}
.ill_point03 .about__point {
  margin-bottom: 80px;
}
.center__txt {
  text-align: center;
}
/*---------------------------------------
footer
-----------------------------------------*/
#breadcrumbs{
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
  box-sizing: border-box;
  padding:20px 0;
}
#breadcrumbs > span {
  padding: 0!important;
}
#breadcrumbs span{
  display: inline-block;
  font-size:14px;
  line-height: 1.5;
  color: #313131;
  position: relative;
  padding:0 30px 0 0;
}
#breadcrumbs span:after{
	content: "";
	background-image: url("../images/common/arrow_b.svg");
	background-size:contain;
	background-repeat: no-repeat;
	background-position: center;
	width:14px;
	height:14px ;
	display: block;
	position: absolute;
	right:5px;
	left:0;
	top:0;
	bottom:0;
	margin: auto 0 auto auto;
}
#breadcrumbs span.breadcrumb_last {
  padding: 0;
}
#breadcrumbs span:last-child:after{
  content: none;
}

#breadcrumbs span a{
  text-decoration: none;
  color: #313131;
  padding:0;
}

#breadcrumbs span a:hover{
  opacity: 0.6;
  filter: alpha(opacity=60);
}

#breadcrumbs span:first-child a{
	color: #016D27;
}
/*---------------------------------------
footer
-----------------------------------------*/
footer {
    width: 100%;
    margin: 0 auto !important;
	padding:50px 0 10px 0;
    text-align: center;
    box-sizing: border-box;
    background-image: url("../images/common/footer_bg_blue.png");
    background-repeat: repeat;
    background-size:100%;
	color:#fff;
	font-weight: 400;
}

footer p{
	font-size:1.6rem;
	line-height: 1.6;
	margin-bottom: 70px;
}

.footer_logo{
	width:25%;
	max-width:245px;
	display: block;
	margin:0 auto;
}

.footer_logo figure:last-child{
	margin:20px auto 30px auto;
}

.copyright{
    font-size: 12px;
    line-height: 1.6;
    font-style: normal;
    letter-spacing: 0.1em;
    width:100%;
    margin:0 auto !important;
}

.pagetop {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0 ;
  z-index: 10;
  margin-top: 0;
  margin-bottom: 0;
}

.pagetop a {
  text-align: center;
  width: 60px;
  height: 60px;
  display: block;
  background-color:#98DEE2;
  position: relative;
}
.pagetop a img{
	width: 20px;
  height: auto;
  margin: auto;
  transform: rotate(-90deg);
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.pagetop a:hover {
  display: block;
  opacity: 0.6;
  filter: alpha(opacity=60);
}
.back__link {
  text-align: center;
}
.back__link a {
  color: #33BDC6;
  text-decoration: underline;
  font-size: 18px;
  text-align: center;
}
.back__link a:hover {
  text-decoration: none;
}
.project__color .back__link a {
  color: #87A400;
}


/*---------------------------------------
video
-----------------------------------------*/
.archive__text__area ul.video__list {
  display: flex;
  flex-wrap: wrap;
}
.video__list li {
  margin-right: 3.5%;
  margin-bottom: 30px;
  width: 31%;
}
.video__list li:nth-child(3n) {
  margin-right: 0;
}
.video__list__photo__block {
  position: relative;
}
.play__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.video__list__child a {
  color: #313131;
  transition: .4s;
}
.video__list__child a:hover {
  color: #33BDC6;
}
.video__list__info {
  display: flex;
  margin-bottom: 10px;
}
.video__list__info p {
  margin: 0 !important;
}
.video__list__info p.video__list__time {
  color: #33BDC6;
  font-size: 14px !important;
  font-weight: bold;
  margin-right: 15px !important;
}
.video__list__tag {
  background-color: #33BDC6;
  color: #fff;
  font-size: 14px !important;
  padding: 0 8px;
}
.video__list__title {
  margin-bottom: 0 !important;
}
.video__list__photo img {
  border-radius: 40px;
}

/*---------------------------------------
contact
-----------------------------------------*/
.form_txt {
  margin-top: 60px;
  margin-bottom: 100px;
}
.form_block {
  max-width: 650px;
  margin-inline: auto;
}
.form_list {
  margin-bottom: 30px;
}
.form_list span {
  color: #FF5B5B;
  margin-right: 15px;
}
.form_list dt p {
  margin-bottom: 8px;
}
.form_list dd,
.form_list dd p {
  margin-bottom: 0;
}
.form_list dd {
  padding-left: 40px;
}
.form_list dd input::placeholder,
.form_list dd textarea::placeholder,
.form_list dd select::placeholder {
  color: #B4B4B4;
}
.form_list dd input,
.form_list dd textarea,
.form_list dd select {
  border-radius: 10px;
  border: 1px solid #B4B4B4;
  padding: 10px 20px;
  width: 100%;
}
.form_list .select_block {
  position: relative;
}
.form_list .select_block::after {
  content: "";
  background-image: url(../images/contact/icon-arrow.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 12px;
  height: 7px;
}
.form_list select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.submit_wrap {
  margin: 35px 0 60px;
  text-align: center;
}
.submit_wrap input {
  background-color: #009534;
  border: 1px solid #009534;
  border-radius: 10px;
  color: #fff;
  font-size: 20px;
  padding: 10px 70px;
}
.submit_wrap input:disabled {
  background-color: #999;
  border: 1px solid #999;
}
.submit_wrap .wpcf7-spinner {
  display: none;
}
.privacy_txt_wrap input[type="checkbox"] {
  display: none;
}
.privacy_txt_wrap .wpcf7-list-item-label {
  position: relative;
  height: 20px;
  line-height: 20px;
  padding-left: 25px;
  display: inline-block;
}
.privacy_txt_wrap .wpcf7-list-item-label::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid;
  background: #fff;
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 3px;
  box-sizing: border-box;
}
.privacy_txt_wrap input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
  background-color: #33BDC6;
  border: 1px solid #33BDC6;
}
.privacy_txt_wrap input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  content: "";
  display: block;
  width: 10px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
  position: absolute;
  left: 4px;
  top: 6px;
}
.text__block {
  margin-top: 50px;
}
.top__link a {
  color: #016D27;
  transition: .4s;
}
.top__link a:hover {
  opacity: .6;
  text-decoration: none;
}
.privacy_box {
  margin-bottom: 50px;
}
.privacy_box h2 {
  margin-bottom: 20px;
}
.privacy_box ul {
  padding-left: 1.5em;
}
.privacy_box ul li {
  list-style-type: disc;
}


/*---------------------------------------
responsive
-----------------------------------------*/
@media (max-width: 1200px) {
  #header {
    width: 217px;
  }
  .br__tablet {
    display: block;
  }
  .head__cont ,
  .headSeminar__cont {
    padding: 40px 20px;
  }
  .bnr__area {
    gap: 40px 4%;
  }
  .bnr__area__child {
    width: 48%;
  }
  .mv__area {
    margin-left: 217px;
  }
  .left__mgn {
    margin-left: 240px;
  }
  .page__area ,
  .calendar__inner {
    width: 90%;
    margin-inline: auto;
  }
}
@media (max-width: 1080px) {
  .bnr__area ,
  .note__area {
  flex-direction: column;
  text-align: center;
  }
  .note__child {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .bnr__area__child  {
    width: 100%;
    margin-bottom: 30px;
  }
  .bnr__area__child:last-child {
    margin-bottom: 0;
  }
  .carousel__area {
    padding-bottom: 0;
  }
  .about__point__ttl01 ,
  .about__point__ttl02  ,
  .about__point__ttl03  {
    text-align: center ;
  }
  .about__point__ttl01 img ,
  .about__point__ttl02 img  ,
  .about__point__ttl03 img  {
    display: block;
  }
  .video__list__info {
    display: block;
  }
  .video__list__info p.video__list__time {
    margin: 0 0 1px 0 !important;
  }
  .video__list__tag {
    display: inline-block;
  }
}
@media (max-width: 900px) {
  .video__list li {
    margin-right: 6%;
    width: 47%;
  }
  .video__list li:nth-child(3n) {
    margin-right: 6%;
  }
  .video__list li:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .sp_br {
    display: block;
  }
  .mv__carousel__img {
    margin-bottom: 0;
  }
  .mv__carousel__img img {
    width: 100%;
    height: auto;
  }
  #header {
    width: 100%;
    border-radius: 0;
    background: none;
  }
  #header.is-active {
  background: #33BDC6;
  height: 100%;
  }
  .head__cont {
    background: url(../images/common/head_bg.svg);
    border-radius: 0;
  }
  .head__inner {
    width: 100%;
    height: 80px;
    position: fixed;
    z-index: 9999;
    background: rgba(255, 255, 255, .9);
    display: flex;
    align-items: center;
    padding: 2%;
  }
  .head__inner.is-active {
    background: rgba(255, 255, 255, .7);
    z-index: 9999;
  }
  /*========= ハンバーガーメニュー ===============*/
  .menu-btn {
    position: absolute;
    z-index : 3;
    right : 2%;
    top   : 0;
    bottom: 0;
    margin: auto;
    width : 60px;
    height: 60px;
    cursor: pointer;
    text-align: center;
    margin-right: auto;
    background: #33BDC6;
    border-radius: 50%;
  }
  .menu-btn span {
    display : block;
    position: absolute;
    width: 28px;
    height: 2px;
    left: 0;
    right: 0;
    margin: auto;
    background : #fff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition   : 0.3s ease-in-out;
    transition        : 0.3s ease-in-out;
  }
  .menu-btn span:nth-child(1) {
    top: 20px;
  }
  .menu-btn span:nth-child(2) {
    top: 31px;
  }
  .menu-btn span:nth-child(3) {
    top: 40px;
  }
  /* ナビ開いてる時のボタン */
  .menu-btn.active span:nth-child(1) {
    top : 30px;
    -webkit-transform: rotate(-45deg);
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
    background: #fff;
  }

  .menu-btn.active span:nth-child(3) {
    top: 30px;
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
    background: #fff;
  }
  .menu-btn.active span:nth-child(2) {
    display: none;
  }
  .sp__menu {
    display: none;
  }
  .sp__menu.is-active {
    display: block;
    position: relative;
    z-index: 999;
    margin-top: 80px;
    overflow-y: auto;
  }
  .head__logo {
    width: 80%;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .head__logo img {
    width: 100%;
    height: auto;
  }
  .head__cont, .headSeminar__cont {
    padding: 5%;
  }
  .head__cont__logo {
    display: none;
  }
  .spHead__cont__logo {
    display: block;
    margin: 4rem auto;
    text-align: center;
    width: 50%;
  }
  .br__tablet {
    display: none;
  }
  .headSeminar__cont {
    border-radius: 0;
  }
  .head__cont__menu, .headSeminar__cont__lists {
    max-width: 240px;
  }
  .headSeminar__cont__ttl {
    margin-bottom: 30px;
  }
  .head__cont__menu--child ,
  .headSeminar__cont__lists--child {
    margin-bottom: 6%;
  }
  .head__cont__menu--child a,
  .headSeminar__cont__lists--child a {
    font-size: 16px;
  }
  .head__cont__menu--child a::after {
    width: 6px;
    height: 10px;
  }
  .sp__bg {
    background: #33bdc6;
    padding:0 10px;
    position: relative;
    z-index: 1;
  }
  .headSeminar__cont__ttl::after {
    bottom: 8px;
  }
  .mv__area {
    margin: 80px 0 40px 0;
  }
  .left__mgn {
    margin-left: 0;
  }
  .news__area ,
  .about__area__inner ,
  .pickup__area ,
  .exclusive__area__inner ,
  .textbook__area .area__head ,
  .project__area .area__head {
    width: 90%;
  }
  .area__txt {
    line-height: 1.5;
  }
  .bnr__area {
    justify-content: center;
  }
  .bnr__area__child {
    text-align: center;
    margin-bottom: 20px;
  }
  .about__ill::after {
    width: 135px;
    height: 114px;
    top: -35px;
    right: 100px;
    margin: auto;
  }
  .textbook__area__inner ,
  .project__area__inner {
    margin-inline: auto;
  }
  .about__point {
    max-width: 100%;
    margin-bottom: 135px;
  }
  .dojo__area {
    padding: 60px 0;
  }
  .dojo__area__left {
    width: 90%;
    margin: 0 auto;
  }
  .dojo__area__right {
    width: 95%;
    margin-left: auto;
  }
  .carousel__area {
    width: 90%;
    margin-inline: auto;
    padding-bottom: 30px;
  }
  .textbook__child, .project__child {
    margin-bottom: 75px;
  }
  .carousel__all {
    bottom: 40px;
  }
  .calendar__area {
    margin-block: 40px;
    width: 90%;
  }
  .view_more img {
    width: 100px;
    height: 57px;
  }
  .list__head.single .page__area__ttl {
    font-size: 25px;
    padding-bottom: 20px;
  }
  .text__area img {
    margin-block: 20px 40px;
  }
  .text__area h2,
  .page__area__subttl {
    font-size: 22px;
    margin-bottom: 30px;
    padding: 10px;
  }
  .project__list__child--txtarea--ttl {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .project__list {
    display: flex;
  }
  .project__list__child {
    width: 48%;
    margin-right: 4%;
  }
  .project__list__child:nth-child(2n) {
    margin-right: 0;
  }
  .project__list__child a {
    flex-direction: column;
  }
  .project__list__child--img {
    width: 100%;
  }
  .project__list__child--txtarea {
    width: 100%;
    padding: 0 0 40px;
  }
  .about__mv {
    margin-block: 80px;
  }
  .list__head {
    margin-block: 80px 40px;
    padding: 20px 10px;
  }
  .list__head.single {
    margin-block: 80px 0;
    padding: 20px 0 0;
  }
  .list__head img {
    width: 60%;
  }
  .list__head h1 {
    margin-bottom: 20px;
  }
  .page__area {
    margin-block: 40px;
  }
  .textbook__list__child {
    width: 48%;
    margin-right: 4%;
  }
  .textbook__list__child:nth-child(3n) {
    margin-right: 4%;
  }
  .textbook__list__child:nth-child(2n) {
    margin-right: 0;
  }
  .textbook__list__child--img {
    margin-bottom: 10px;
  }
  .archive__text__area p, .archive__text__area ul ,
  .archive__text__area p.textbook__list__child--date {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .about__intro img {
    width: 100%;
  }
  .about__intro::after {
    width: 110px;
    height: 100px;
    top: auto;
    right: 0;
    bottom: -85px;
  }
  .about__point img {
    display: block;
    width: 30%;
  }
  .right__side ,
  .left__side {
    margin-inline: 0;
  }
  .about__point__ttl01 ,
  .about__point__ttl02 ,
  .about__point__ttl03 {
    font-size: 30px;
    line-height: 0;
    margin-bottom: 30px;
    text-align: center;
  }
  .about__mv {
    margin-block: 80px 40px;
  }
  .right__link {
    text-align: left;
    margin-left: 0;
    line-height: 1.5;
  }
  .right__link a {
    display: block;
  }
  .about__point__txt {
    padding: 10px 20px 30px;
  }
  .ill_point01::before {
    width: 95px;
    height: 180px;
    bottom: -155px;
    left: 0;
    z-index: 2;
  }
  .ill_point02::before {
    width: 180px;
    height: 130px;
    bottom: -100px;
    right: 0;
  }
  .ill_point03::before {
    width: 140px;
    height: 125px;
    bottom: -100px;
  }
  .calendar__inner iframe {
    width: 100%;
    height: 400px;
  }
  .svg_text {
    width: 90%;
  }
  .svg_text svg {
    width: 100%;
    margin-block: auto;
  }
  .footer_logo {
    width: 50%;
  }
  #breadcrumbs {
    width: 90%;
  }
  .sp_mgnleft {
    margin-left: 2%;
  }

}

@media (max-width: 600px) {
  .video__list li {
    margin-right: 0;
    width: 100%;
  }
}