@charset "UTF-8";
.pc {
  display: block;
}
.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/* =======================================

	IndexElements

======================================= */
header {
  z-index: 10;
}
main {
  margin: 40px auto 0;
  position: relative;
  z-index: 4;
}
@media only screen and (max-width: 768px) {
  main {
    margin: 0 auto;
  }
  .cont_outer {
    margin: 0;
    padding: 40px 5%;
  }
  .sns_icon {
    background: #fff;
  }
}
/*-----------------------------------------
	key
-----------------------------------------*/
.key_outer {
  height: 100vh;
  background: #000;
}
.key_field {
  height: 100vh;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.key_field::after {
  content: "";
  width: 64px;
  height: 64px;
  display: block;
  background: url(/files/loading.gif) no-repeat center center;
  opacity: 0.5;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.key_field .inner {
  width: calc(100% - 80px);
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}
.key_dep_btn {
  display: none;
}
/*TOPの動画*/
.bg-video {
  position: fixed;
  height: 100vh;
  width: 100%;
  z-index: 1;
}
.bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0 !important;
  ;
}
/*背景に薄い黒のせる*/
.bg-black {
  background-color: rgb(0 0 0 / 15%);
  height: 100vh;
  position: absolute;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .scrolldown {
    display: none;
  }
  .bg-video {
    position: relative;
    height: auto;
    line-height: 0.5;
  }
  .bg-video video {}
  .bg-black {
    display: none;
  }
}
/*スクロール*/
.scrolldown {
  position: absolute;
  left: 50%;
  bottom: 20%;
  height: 50px;
  z-index: 1;
}
/*Scrollテキストの描写*/
.scrolldown span {
  /*描画位置*/
  position: absolute;
  left: -25px;
  top: -30px;
  color: #eee;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
}
/* 線の描写 */
.scrolldown::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 30px;
  background: #eee;
  animation: pathmove 1.4s ease-in-out infinite; /*線の動き1.4秒かけて動く。永遠にループ*/
}
/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
/* slider */
.slider {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.slider li {
  height: 100vh;
  margin: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.slider li .key_info {
  width: 80%;
  color: #fff;
  text-align: center;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.slider li .key_info p {
  margin: 0 0 10px;
  font-size: 10rem;
  font-family: 'Teko', sans-serif;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1;
}
.slider li .key_info .dep_keywords {
  margin: 0 0 40px;
  font-size: 1.8rem;
}
.slider li .key_info h2 .btn {
  width: auto;
  min-width: 320px;
  padding: 0.8em 0;
  display: inline-block;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
}
.slider li .key_info h2 .btn:before {
  color: #fff;
}
/* :hover */
@media only screen and (min-width: 768px) {
  body:not(.tab_view) .slider li .key_info h2 .btn:hover {
    background: #000;
  }
}
/* arrow */
.slider .slick-arrow {
  display: none;
}
/* clone arrow */
.key_outer > .slick-arrow {
  position: absolute;
  z-index: 2;
}
.key_outer > .slick-next {
  right: 40px;
}
.key_outer > .slick-prev {
  left: 40px;
}
/* slider btn */
.slider_btn {
  visibility: hidden;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.slider_btn .slick-list {
  overflow: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.slider_btn li {
  width: 13.42% !important;
  margin: 0 0.5%;
}
.slider_btn li:first-of-type {
  margin: 0 0.5% 0 0;
}
.slider_btn li:last-of-type {
  margin: 0 0 0 0.5%;
}
.slider_btn li .btn_link:before {
  content: '';
  width: 0;
  height: 4px;
  position: absolute;
  top: -4px;
  left: -1px;
  z-index: 2;
}
.slider_btn li.slick-current:not(.hov) .btn_link:before {
  -webkit-animation: slide_bar 4.7s linear forwards;
  animation: slide_bar 4.7s linear forwards;
}
@-webkit-keyframes slide_bar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes slide_bar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.slider_btn li .btn_link {
  width: 100%;
  height: 100%;
  padding: 20px 10px 20px 20px;
  font-family: 'Teko', sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #FFF;
  outline: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  background: rgba(0, 0, 0, .4);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.slider_btn li .btn_link span {
  margin: 5px 0 0 0;
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
.slider_btn li .txt {
  display: none;
  width: 500px;
  font-size: 1.6rem;
  text-align: center;
  position: absolute;
  top: -12vh;
  left: calc(50% - 250px);
  outline: none;
}
.slider_btn li .txt {
  letter-spacing: 0.38em;
  font-size: 2rem;
  color: #FFF;
  z-index: 2;
}
.slider_btn li .txt span {
  padding: 0 80px 0 0;
  display: inline;
  position: relative;
}
.slider_btn li .txt span:before {
  content: '';
  width: 60px;
  height: 1px;
  display: block;
  background: #FFF;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.slider_btn li .txt span:after {
  content: '';
  width: 10px;
  height: 10px;
  display: block;
  border-top: 1px solid #FFF;
  position: absolute;
  top: 9px;
  right: 2px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.slider_btn li.slick-current .txt {
  display: block;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
/* hover */
@media only screen and (min-width: 768px) {
  body:not(.tab_view) .slider_btn li.hov .txt span:before {
    content: '';
    width: 40px;
  }
}
.slider_btn .slick-track {
  -webkit-transform: translate3d(0, 0, 0) !important;
  transform: translate3d(0, 0, 0) !important;
}
.slider_btn .slick-slide {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  border: 1px solid rgba(0, 0, 0, .4);
}
.slider_btn .slick-slide:hover, .slider_btn .slick-slide.slick-current {
  border: 1px solid #FFF;
}
.slider_btn .slick-slide:hover a, .slider_btn .slick-slide.slick-current a {
  background: rgba(0, 0, 0, 0);
}
/* topic */
.topic {
  margin: 40px auto 0;
}
.topic a {
  margin: 10px 0 0 0;
  padding: 30px 105px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: 'Teko', sans-serif;
  color: #000; /*--------------------------------------20230308修正--------------------------------------*/
  position: relative;
  background: rgba(255, 255, 255, .8); /*--------------------------------------20230308修正--------------------------------------*/
}
.topic a:before {
  content: "\e93e";
  font-family: 'tva';
  color: #FF5A00; /*--------------------------------------20230308修正--------------------------------------*/
  font-size: 2.2rem;
  position: absolute;
  top: 2.2rem;
  left: 40px;
}
.topic a:after {
  content: "\e90b";
  font-family: 'tva';
  color: #000; /*--------------------------------------20230308修正--------------------------------------*/
  font-size: 2rem;
  position: absolute;
  top: 50%;
  right: 40px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.topic .date {
  margin: 0 40px 0 0;
  font-size: 1.8rem;
  line-height: 1.1;
  letter-spacing: 0.1em;
}
.topic .ttl {
  letter-spacing: 0.215em;
}
@media only screen and (max-width: 1200px) {
  .slider_btn li .btn_link {
    padding: 12px 0 12px 12px;
    font-size: 1.5rem;
  }
  .slider_btn li .btn_link span {
    margin: 3px 0 0 0;
    font-size: 1rem;
  }
}
@media only screen and (max-height: 740px) {
  .slider li .key_info {
    top: 40%;
  }
  .slider li .key_info p {
    margin: 0;
    font-size: 9rem;
  }
  .slider li .key_info .dep_keywords {
    margin: 0 0 20px;
  }
  .slider li .key_info h2 .btn {
    padding: 0.5em 0;
  }
  .key_field .inner {
    bottom: 20px;
  }
  /* topic */
  .topic {
    margin: 20px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .key_outer {
    position: relative;
    height: auto;
    margin: 114px 0 0;
  }
  .key_field {
    position: relative;
    height: auto;
  }
  .key_outer > .slick-arrow {
    top: 45%;
  }
  .key_outer > .slick-next {
    right: 3%;
  }
  .key_outer > .slick-prev {
    left: 3%;
  }
  .key_field .inner {
    width: 100%;
    height: 110px;
    position: fixed;
    top: 0;
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: 0.5s;
    z-index: 5;
  }
  .key_dep_btn {
    width: 88%;
    margin: 0 auto;
    display: block;
  }
  .key_dep_btn a {
    padding: 11px 20px;
    display: block;
    color: #FFF;
    font-size: 1.3rem;
    font-family: 'Teko', sans-serif;
  }
  .key_dep_btn a:before {
    color: #FFF;
  }
  .key_dep_btn a span {
    display: block;
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
  /* slider */
  .slider {
    position: absolute;
  }
  .slider li {
    height: 72vh;
    position: relative;
    background-size: auto 100%;
  }
  .slider li .key_info {
    width: 80%;
    height: 100%;
    top: 45%; /*--------------------------------------20230308修正--------------------------------------*/
    left: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .slider li .key_info p {
    width: 100%;
    margin: 0 0 10px;
    font-size: 4rem;
    letter-spacing: 0.02em;
  }
  .slider li .key_info .dep_keywords {
    width: 100%;
    margin: 0;
    font-size: 1.4rem;
  }
  .slider li .key_info h2 .btn {
    width: 100%;
    min-width: auto;
    padding: 1em 0;
    font-size: 1px; /*--------------------------------------20230314修正--------------------------------------*/
    position: absolute;
    left: 0;
    bottom: 0em; /*--------------------------------------20230314修正--------------------------------------*/
    border: none; /*--------------------------------------20230314追加--------------------------------------*/
    height: 100%; /*--------------------------------------20230314追加--------------------------------------*/
  }
  .slider li .key_info h2 .btn:before { /*--------------------------------------20230314追加--------------------------------------*/
    display: none;
  }
  /* slider_btn */
  .slider_btn {
    display: none !important;
    overflow: hidden;
  }
  /* topic */
  .topic {
    margin: 0px auto;
  }
  .topic a {
    margin: 60px 0 0 0;
    padding: 10px 6% 10px 11%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff; /*--------------------------------------20230308修正--------------------------------------*/
  }
  .topic a:before {
    font-size: 2.2rem;
    left: 4%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .topic a:after {
    font-size: 2rem; /*--------------------------------------20230308修正--------------------------------------*/
    right: 1%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .topic .date {
    margin: 0 10px 0 0;
    font-size: 1.5rem; /*--------------------------------------20230308修正--------------------------------------*/
  }
  .topic .ttl {
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    line-height: 1.3;
  }
}
/*-----------------------------------------
	banner
-----------------------------------------*/
.banner_field {
  position: relative;
  overflow: hidden;
  z-index: 3;
}
.banner_field .inner {
  padding: 40px 0;
  background: rgba(255, 255, 255, .6); /*--------------------------------------20230308修正--------------------------------------*/
}
.banner_field .banner {
  visibility: hidden;
  opacity: 0;
  width: calc(100% - 40px);
  height: 300px;
  margin: 0 20px;
  position: relative;
}
.banner_field .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.banner_field .slick-list li {
  width: 400px;
  margin: 0 20px;
  background: #FFF;
}
.banner_field .slick-list li a {
  display: block;
  outline: none;
}
.banner_field .slick-list li img {
  width: 100%;
  display: block;
}
/* dots */
.banner_field .slick-dots {
  margin: 0 5px;
  text-align: left;
  left: 10px;
  bottom: -28px;
}
.banner_field .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}
.banner_field .slick-dots li button {
  width: 16px;
  color: #FFF;
  font-size: 1.12rem;
  line-height: initial;
  font-family: 'Teko', sans-serif;
  font-weight: 500;
}
.banner_field .slick-dots li button:before {
  content: '';
}
.banner_field .slick-dots .slick-active button {
  color: #FFFF00;
}
/* arrow */
.banner_field .slick-prev, .banner_field .slick-next {
  width: 40px;
  height: 40px;
  z-index: 1;
}
.banner_field .slick-prev {
  left: 0;
}
.banner_field .slick-next {
  right: 0;
}
.banner_field .slick-prev:before, .banner_field .slick-next:before {
  content: "\e90b";
  font-family: 'tva';
  width: 40px;
  height: 40px;
  display: block;
  text-align: center;
  line-height: 40px;
  color: #FFF;
  font-size: 2.5rem;
  background: #000;
}
.banner_field .slick-prev:before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media only screen and (max-width: 768px) {
  .banner_field .inner {
    padding: 20px 0;
    background: #fff; /*--------------------------------------20230308修正--------------------------------------*/
  }
  .banner_field .slick-list li {
    margin: 0; /*--------------------------------------20230314追加--------------------------------------*/
  }
}
/*-----------------------------------------
	intro
-----------------------------------------*/
.intro {
  padding: 100px 0 0;
}
.intro h2 {
  text-align: center;
  font-size: 1.6rem;
}
.intro h2:before {
  content: "\e944";
  font-family: 'tva';
  margin: 0 auto 10px;
  display: block;
  text-align: center;
  color: #000;
  font-size: 2.2rem;
}
.intro h2 span {
  display: block;
  line-height: 1.3;
  font-size: 4rem;
  font-weight: 400;
  margin: 0 0 10px;
}
.case_list {
  margin: 60px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*
	border-top: 1px solid #e5e5e5;
	border-left: 1px solid #e5e5e5;
*/
}
.case_list li {
  /*
	width: 25%;
	text-align: center;
	border-right: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
*/
  -ms-flex-preferred-size: calc((98% / 4) - 1px);
  flex-basis: calc((98% / 3) - 1px);
  margin: 2px 0 0 2px;
  border: solid 1px;
  border-color: #e5e5e5 #9f9f9f #9f9f9f #e5e5e5;
}
.case_list a {
  padding: 25px 15px;
  display: block;
  color: #000;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
.case_list span:before {
  margin: 0 20px 0 0;
  font-family: 'tva';
  font-size: 2rem;
  vertical-align: middle;
}
.case_list .freshman span:before {
  content: "\e928";
}
.case_list .junior span:before {
  content: "\e941";
}
.case_list .senior span:before {
  content: "\e942";
}
.case_list .entrance span:before {
  content: "\e93f";
}
.case_list .international span:before {
  content: "\e93c";
}
.case_list .company span:before {
  content: "\e939";
}
.case_list .parents span:before {
  content: "\e940";
}
.case_list .student span:before {
  content: "\e93b";
}
.case_list .graduate span:before {
  content: "\e943";
}
@media only screen and (max-width: 1200px) {
  .case_list a {
    font-size: 1.5rem;
  }
  .case_list span:before {
    margin: 0 10px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .intro {
    padding: 0;
    position: relative;
  }
  .intro h2 {
    width: 50%;
    font-size: 1rem;
    position: absolute;
    top: 0;
    left: 0;
    padding: 7%;
  }
  .intro h2:before {
    font-size: 1.5rem;
  }
  .intro h2 span {
    font-size: 3rem;
  }
  .case_list {
    display: none;
  }
}
/*-----------------------------------------
	heading
-----------------------------------------*/
.sec_head {
  margin: 0 0 80px;
}
@media only screen and (max-width: 768px) {
  .sec_head {
    margin: 0 0 20px;
  }
}
/*-----------------------------------------
	news
-----------------------------------------*/
.news {
  margin: 100px auto 0;
}
.news .sec_head {
  margin: 0 0 40px;
}
.news .cat_list {
  margin: 0 auto 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.news .cat_list li {
  text-align: center;
}
.news .cat_list li a {
  color: #999;
  padding: 0 36px;
  display: inline-block;
  border-right: 1px solid #e5e5e5;
}
.news .cat_list li:first-of-type a {
  border-left: 1px solid #e5e5e5;
}
.news .cat_list li.active a {
  color: #000;
}
.news .article_list {
  margin: 0 auto 60px;
}
.news .article_list a {
  display: block;
  color: #000;
}
.news .article_list figure img {
  width: 100%;
  display: block;
}
.news .article_list .post_info {
  margin: 30px 0 0;
}
.news .article_list .date {
  line-height: 1.1;
  letter-spacing: 0.1em;
  font-size: 1.8rem;
  font-family: 'Teko', sans-serif;
}
.news .article_list .category {
  padding: 0.1em 1em 0.2em;
  margin: 0 0 0 1em;
  display: inline-block;
  color: #fff;
  font-size: 1.2rem;
  background: #000;
}
.news .article_list p {
  margin: 8px 0 0;
  letter-spacing: 0.1em;
  color: #212121;
}
.news .article_list .tag {
  margin: 10px 0 0;
}
.news .article_list .tag li {
  margin: 0 8px 0 0;
  display: inline-block;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: #999;
}
.news .news_banner {
  margin: 0 auto;
}
.news .news_banner li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.news .news_banner li a {
  padding: 28px 10% 28px 30%;
}
.btn.icon_megaphone:after {
  font-family: 'tva';
  content: "\e93a";
  font-size: 3rem;
  position: absolute;
  top: 50%;
  left: 15%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.btn.icon_twitter:after {
  font-family: 'tva';
  content: "\e93d";
  font-size: 3rem;
  position: absolute;
  top: 50%;
  left: 12%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.btn.icon_senior:after {
  font-family: 'tva';
  content: "\e942";
  font-size: 3rem;
  position: absolute;
  top: 50%;
  left: 15%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media only screen and (max-width: 1400px) {
  .news .news_banner li a {
    padding: 28px 10% 28px 20%;
  }
  .news .news_banner li a:before {
    right: 7px;
  }
  .news .news_banner li a:after {
    left: 6%;
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 1260px) {
  .news .news_banner li a {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 1150px) {
  .news .news_banner li a {
    font-size: 1.2rem;
  }
  .news .news_banner li a:after {
    left: 6%;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .news {
    margin: 40px auto 0;
  }
  .news .sec_head {
    margin: 0 0 10px;
  }
  .news .cat_list {
    margin: 0 auto 15px;
  }
  .news .cat_list li a {
    padding: 0 4px;
    font-size: 1rem;
  }
  .news .cat_list li:first-of-type a {
    border-left: 0;
  }
  .news .cat_list li:last-of-type a {
    border-right: 0;
  }
  .news .article_list {
    margin: 0 auto 15px;
  }
  .news .article_list > li {
    border-bottom: 1px solid #e5e5e5;
  }
  .news .article_list > li:first-of-type {
    border-top: 1px solid #e5e5e5;
  }
  .news .article_list > li a {
    padding: 9px 20px 9px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
  }
  .news .article_list > li a:before {
    content: "\e90b";
    font-family: 'tva';
    color: #000;
    font-size: 1.5rem;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .news .article_list figure {
    width: 24%;
  }
  .news .article_list .txt_area {
    width: 70%;
  }
  .news .article_list .post_info {
    margin: 0;
  }
  .news .article_list .date {
    display: block;
    font-size: 1.2rem;
  }
  .news .article_list .category {
    padding: 0.1em 1em 0.3em;
    margin: 0;
    font-size: 1rem;
  }
  .news .article_list p {
    margin: 4px 0 0;
    font-size: 1.2rem;
  }
  .news .article_list .tag {
    margin: 4px 0 0;
    font-size: 1rem;
  }
  .news .article_list .tag li {
    font-size: 1rem;
  }
  .news .news_banner {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .news .news_banner li {
    width: 49%;
    margin: 2% 2% 0 0;
  }
  .news .news_banner li:first-of-type {
    width: 100%;
    margin: 0;
  }
  .news .news_banner li:last-of-type {
    margin: 2% 0 0;
  }
  .news .news_banner li a {
    height: 40px;
    padding: 15px 10% 15px 16%;
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
  .news .news_banner li a:before {
    right: 3px;
    font-size: 1.3rem;
  }
  .news .news_banner li a:after {
    left: 6%;
    font-size: 1.7rem;
  }
  .news .news_banner li:first-of-type a {
    padding: 15px 10% 15px 13%;
  }
  .news .news_banner li:first-of-type a:after {
    left: 3%;
  }
  .news .news_banner li span {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
@media only screen and (max-width: 374px) {
  .news .cat_list li a {
    padding: 0 4px;
  }
}
/*-----------------------------------------
	pickup
-----------------------------------------*/
.pickup {
  margin: 100px auto 0;
}
.pickup .txt_img_set.clm_2 li {
  margin-bottom: 40px;
}
.pickup .txt_img_set.clm_3 li:nth-last-of-type(-n+3) {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .pickup {
    margin: 40px auto 0;
  }
  .pickup .txt_img_set.clm_2 li {
    margin-bottom: 30px;
  }
  .pickup .txt_img_set.clm_3 li:nth-last-of-type(-n+3) {
    margin-bottom: 6%;
  }
  .pickup .txt_img_set.clm_3 li:nth-last-of-type(-n+2) {
    margin-bottom: 0;
  }
}
/*-----------------------------------------
	department
-----------------------------------------*/
.department {
  margin: 100px auto 0;
}
@media only screen and (max-width: 768px) {
  .department {
    margin: 40px auto 0;
  }
  .contents_page_list > li:not(.other) {
    margin-bottom: 1px;
    border: none;
  }
  .contents_page_list > li dd {
    display: none;
  }
}
/*-----------------------------------------
	infomation
-----------------------------------------*/
.infomation {
  margin: 100px auto 0;
  padding: 0 0 80px;
}
.infomation .info_wrap {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.infomation .info_wrap .map {
  width: 59%;
  height: 320px;
  border: 1px solid #e5e5e5;
}
.infomation .info_wrap .map iframe {
  width: 100%;
  height: 100%;
}
.infomation .info_wrap .txt_area {
  width: 38%;
}
.infomation .logo {
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.infomation .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.infomation .logo img {
  width: 54px;
  padding: 10px;
  display: block;
  background: #004098;
}
.infomation .logo div {
  margin: 0 0 0 20px;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.3;
  color: #000;
}
.infomation .logo div span {
  display: block;
  font-size: 1.8rem;
}
.infomation .school_info {
  margin: 30px 0 0;
}
.infomation .school_info li {
  margin: 10px 0 0;
  padding: 0 0 0 30px;
  position: relative;
}
.infomation .school_info li:before {
  font-family: 'tva';
  display: block;
  text-align: center;
  color: #004098;
  font-size: 1.7rem;
  line-height: 1.3;
  position: absolute;
  top: 0;
  left: 0;
}
.infomation .school_info .address:before {
  content: "\e921";
}
.infomation .school_info .telephone:before {
  content: "\e929";
}
.infomation .school_info .mail:before {
  content: "\e91f";
}
.infomation .school_info a {
  color: #000;
}
.infomation .info_link {
  margin: 30px 0 0;
}
.infomation .info_link li {
  margin-top: 10px;
  margin-bottom: 0;
}
.infomation .info_link a {
  display: block;
  padding: 13px 13px 13px 45px;
  position: relative;
  color: #000;
  border: solid 1px;
  border-color: #e5e5e5 #9f9f9f #9f9f9f #e5e5e5;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.infomation .info_link a:before {
  font-family: 'tva';
  content: "\e90b";
  display: block;
  text-align: center;
  color: #004098;
  font-size: 1.5rem;
  line-height: 1.2;
  position: absolute;
  top: 1em;
  left: 25px;
}
/* Hover */
@media only screen and (min-width: 768px) {
  body:not(.tab_view) .infomation .info_link a:hover {
    border: 1px solid #000;
  }
}
@media only screen and (max-width: 1260px) {
  .infomation .logo div {
    font-size: 2.2rem;
  }
  .infomation .logo div span {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 1100px) {
  .infomation .info_link a {
    padding: 13px 0 13px 30px;
  }
  .infomation .info_link a:before {
    left: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .infomation {
    margin: 40px auto 0;
    padding: 0;
  }
  .infomation .info_wrap {
    display: block;
  }
  .infomation .info_wrap .map {
    width: 100%;
    height: auto;
    margin: 0 0 20px;
    padding-top: 47%;
    position: relative;
  }
  .infomation .info_wrap .map iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .infomation .info_wrap .txt_area {
    width: 100%;
  }
  .infomation .logo img {
    padding: 8px;
  }
  .infomation .logo div {
    font-size: 2.3rem;
  }
  .infomation .logo div span {
    font-size: 1.5rem;
  }
  .infomation .school_info {
    margin: 20px 0 0;
    font-size: 1.2rem;
  }
  .infomation .school_info li {
    margin: 3px 0 0;
    padding: 0 0 0 20px;
  }
  .infomation .school_info li:before {
    font-size: 1.3rem;
    top: 0;
  }
  .infomation .info_link {
    margin: 5px 0 0;
    overflow: hidden;
  }
  .infomation .info_link li {
    width: 48%;
    margin: 4% 4% 0 0;
    float: left;
  }
  .infomation .info_link li:nth-child(even) {
    margin: 4% 0 0 0;
  }
  .infomation .info_link a {
    padding: 9px 0 9px 35px;
    font-size: 1rem;
  }
  .infomation .info_link a:before {
    font-size: 1.3rem;
    top: 0.7em;
    left: 20px;
  }
}
/*-----------------------------------------
	SNS,Footer
-----------------------------------------*/
.sns_icon, footer {
  position: relative;
  z-index: 5;
}
/*-----------------------------------------
	Hover
-----------------------------------------*/
.key_outer > .slick-arrow, .faq_cont dt, .news_field a, .case_list a, .news .cat_list li a, .news .article_list a, .pickup a {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media only screen and (min-width: 768px) {
  body:not(.tab_view) .key_outer > .slick-arrow:hover, body:not(.tab_view) .faq_cont dt:hover, body:not(.tab_view) .news_field a:hover, body:not(.tab_view) .case_list a:hover, body:not(.tab_view) .news .cat_list li a:hover, body:not(.tab_view) .news .article_list a:hover, body:not(.tab_view) .pickup a:hover {
    opacity: 0.6;
  }
}
/*-----------------------------------------
	key_field_02
-----------------------------------------*/
#video_wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  height: 100vh;
  background: url(/files/top/bg_movie.jpg) no-repeat center center;
  background-size: cover;
  opacity: 1;
}
#video_wrap::after {
  position: absolute;
  top: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 63, 121, .1) 0%, rgba(45, 117, 255, .1) 100%);
  content: "";
}
#video {
  position: absolute;
  z-index: 1;
  display: block;
}
#video_wrap .sp_slide {
  display: none;
}
@media (aspect-ratio: 16/9), (min-aspect-ratio: 16/9) {
  #video {
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
  }
}
@media (max-aspect-ratio: 16/9) {
  #video {
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
  }
}
#container .loader_wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  pointer-events: none;
}
.loader_wrap::after {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: url(/files/common/copy_w.svg) no-repeat 24px center;
  background-attachment: fixed;
  background-size: 16px 367px;
  content: "";
}
.key_field_02 {
  position: relative;
  min-height: 600px;
  height: 100vh;
  background-size: auto 100%;
}
@media only screen and (max-width: 767px) {
  .key_field_02 {
    height: calc(100vh - 480px);
    min-height: 300px;
  }
  #video_wrap {
    height: 48vh;
  }
  #video_wrap .sp_slide {
    display: block;
  }
  #video_wrap .sp_slide li {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    height: 60vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-animation: anime 27s 0s infinite;
    animation: anime 27s 0s infinite;
  }
  #video_wrap .sp_slide li:nth-of-type(1) {
    background-image: url(/files/top/sp_slide1.jpg);
  }
  #video_wrap .sp_slide li:nth-of-type(2) {
    background-image: url(/files/top/sp_slide2.jpg);
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
  }
  #video_wrap .sp_slide li:nth-of-type(3) {
    background-image: url(/files/top/sp_slide3.jpg);
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
  }
  #video_wrap .sp_slide li:nth-of-type(4) {
    background-image: url(/files/top/sp_slide4.jpg);
    -webkit-animation-delay: 9s;
    animation-delay: 9s;
  }
  #video_wrap .sp_slide li:nth-of-type(5) {
    background-image: url(/files/top/sp_slide5.jpg);
    -webkit-animation-delay: 12s;
    animation-delay: 12s;
  }
  #video_wrap .sp_slide li:nth-of-type(6) {
    background-image: url(/files/top/sp_slide6.jpg);
    -webkit-animation-delay: 15s;
    animation-delay: 15s;
  }
  #video_wrap .sp_slide li:nth-of-type(7) {
    background-image: url(/files/top/sp_slide7.jpg);
    -webkit-animation-delay: 18s;
    animation-delay: 18s;
  }
  #video_wrap .sp_slide li:nth-of-type(8) {
    background-image: url(/files/top/sp_slide8.jpg);
    -webkit-animation-delay: 21s;
    animation-delay: 21s;
  }
  #video_wrap .sp_slide li:nth-of-type(9) {
    background-image: url(/files/top/sp_slide9.jpg);
    -webkit-animation-delay: 24s;
    animation-delay: 24s;
  }
}
@keyframes anime {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  11% {
    opacity: 1;
  }
  16% {
    opacity: 0;
    transform: scale(1.2);
    z-index: 2;
  }
  100% {
    opacity: 0
  }
}
.fv_copy {
  width: 100%;
  height: 100%;
}
.fv_copy img {
  position: relative;
  top: 50%;
  display: block;
  margin: 0 auto;
  min-width: 460px;
  width: 30%;
  -webkit-transform: translateY(-50%); /* Safari用 */
  transform: translateY(-50%);
}
div.cta_btn {
  position: absolute;
  top: 50%;
  right: 16px;
  vertical-align: middle;
  -webkit-transform: translateY(-50%); /* Safari用 */
  transform: translateY(-50%);
}
div.cta_btn a {
  position: relative;
  display: block;
  padding: 16px 8px;
  height: 220px;
  border: 2px solid #fff;
  color: #fff;
  -ms-writing-mode: tb-rl;
  text-align: center;
  letter-spacing: -3px;
  font-family: "Lato", sans-serif;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  text-orientation: upright;
  writing-mode: vertical-rl;
}
div.cta_btn a::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  pointer-events: none;
}
div.cta_btn a.fv_opencampus::after {
  background: linear-gradient(-45deg, #30a2f0, #33e5e5);
}
div.cta_btn a.fv_document::after {
  background: linear-gradient(-45deg, #ff3b3b, #e83d99);
}
div.cta_btn a:last-child {
  margin-top: -2px;
  letter-spacing: 10px;
}
div.important_anc {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  margin: 0 auto;
  padding: 60px 80px;
  width: 100%;
}
div.important_anc h2 {
  position: relative;
  padding-right: 32px;
  color: #fff;
  white-space: nowrap;
  font-weight: 400;
  font-family: "Lato", sans-serif;
}
div.important_anc h2::before {
  position: relative;
  bottom: -5px;
  padding-top: 12px;
  padding-right: 5px;
  color: #fff;
  content: "\e942";
  font-size: 3rem;
  font-family: "tsb";
  line-height: 0;
}
div.important_anc h2 span {
  display: block;
  padding-left: 34px;
  font-weight: 300;
  font-size: 1.4rem;
}
div.important_anc ul {
  width: 100%;
}
div.important_anc ul li + li {
  margin-top: .5rem;
}
div.important_anc ul li a {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 16px 36px 16px 16px;
  width: 100%;
  background: rgba(255, 255, 255, .8);
  color: #222;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
div.important_anc ul li a::before {
  position: absolute;
  top: 0;
  right: 6px;
  bottom: 0;
  display: block;
  margin: auto;
  height: 16px;
  color: #afafaf;
  content: "\e93c";
  font-size: 12px;
  font-family: "tsb";
  -webkit-transform: scale(.6);
  transform: scale(.6);
}
/* PC HOVER */
@media only screen and (min-width: 767px) {
  div.cta_btn a:hover::after {
    opacity: 1;
  }
  div.important_anc ul li a:hover {
    opacity: .8;
  }
}
@media only screen and (max-width: 767px) {
  .loader_wrap::after {
    display: none;
  }
  div.important_anc {
    display: block;
    margin: 0 auto;
    padding: 8px 0 8px 8px;
  }
  div.important_anc ul {
    margin-top: 16px;
  }
  .fv_copy img {
    min-width: 1;
    max-width: 400px;
  }
  .fv_copy img {
    top: 45%;
    min-width: 100px;
    width: 78%;
  }
}
/*-----------------------------------------
	メイヤロゴ差し替え
-----------------------------------------*/
.infomation .new-logo img {
  width: 360px;
  padding: 0;
  display: block;
  background: none;
}
/*-----------------------------------------
	フローティングバナー
-----------------------------------------*/
.bl_floatingBanner {
  width: 45%;
  max-width: 30rem;
  height: auto;
  position: fixed;
  left: 4rem;
  bottom: 15rem;
  z-index: 16;
}
.bl_floatingBanner_img {
  display: block;
  transition: 0.3s;
}
.bl_floatingBanner_img img {
  width: 100%;
}
.bl_floatingBanner_img:hover {
  opacity: 0.6;
}
.bl_floatingBanner_close {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #2A44FF;
  position: absolute;
  right: 20px;
  top: -2rem;
  cursor: pointer;
  z-index: 17;
}
.bl_floatingBanner_close span:nth-of-type(1) {
  position: absolute;
  top: 11px;
  right: 4px;
  width: 15px;
  height: 2px;
  background-color: #fff;
  transform: rotate(45deg);
}
.bl_floatingBanner_close span:nth-of-type(2) {
  position: absolute;
  top: 4px;
  right: 11px;
  width: 2px;
  height: 15px;
  background-color: #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  #fixed_top {
    display: none !important;
  }
  .bl_floatingBanner {
    display: block;
    width: 25%;
    top: 22rem;
	left: 1rem;
  }
  .bl_floatingBanner_close {
    left: .5rem;
  }
}
/* checkbox 非表示 */
.add-control .checkbox {
  display: none;
}
/* クローズボタンを押したら非表示 */
.add-control .action-close #close:checked ~ .bl_floatingBanner_close {
  display: none;
}
.add-control .action-close #close:checked ~ .bl_floatingBanner_img {
  display: none;
}
/*-----------------------------------------
	h1追加　見えないやつ
-----------------------------------------*/
h1.tuika {
  font-size: 1rem;
  color: #CCCCCC;
  background: none;
  text-align: center;
}
/*-----------------------------------------
	AOエントリーボタン
-----------------------------------------*/
.ao_banner p.btn-top {
  margin: 0 0 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  text-align: center;
  line-height: 1.4;
  font-weight: bold;
}
.ao_banner h3 {
  margin: 40px 0 20px;
  padding: 0 0 10px;
  font-size: 32px;
  line-height: 1.4;
  position: relative;
  font-weight: bold;
}
.ao_banner h3:after {
  content: '';
  width: 100%;
  height: 1px;
  margin: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(to right, #000, #000 2px, transparent 2px, transparent 4px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
}
.ao_banner p {
  margin: 0 0 70px;
  font-size: 20px;
}
.ao_banner p.btn-top::before, .ao_banner p.btn-top::after {
  content: '';
  width: 3px;
  height: 40px;
  background-color: #3fc1c9;
}
.ao_banner p.btn-top::before {
  margin-right: 30px;
  transform: rotate(-35deg)
}
.ao_banner p.btn-top::after {
  margin-left: 30px;
  transform: rotate(35deg)
}
.ao_banner a {
  position: relative;
  padding: 30px 20px;
  border-radius: 7px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #fff;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  display: flex;
  flex-direction: column;
  margin: 0 0 40px;
  font-size: 25px;
  line-height: 1.3;
  background-image: linear-gradient(90deg, rgba(243, 196, 170, 1), rgb(255 112 183) 50%, rgb(106 113 255));
  min-height: 125px;
}
.ao_banner a.preschool {
  background-image: linear-gradient(90deg, rgb(47 219 218), rgb(94 202 245) 50%, rgb(207 111 255));
}
.ao_banner a span.bg {
  background-image: url(/files/top/bg-sankaku.svg);
  width: 100%;
  height: 100%;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.ao_banner a span {
  font-size: 16px;
  margin: 0 0 5px;
}
.ao_banner a:hover {
  background: #5236ff;
  box-shadow: 0 0 30px 5px #8b78ffc7;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.ao_banner a:hover::before {
  -webkit-animation: sh02 0.5s 0s linear;
  -moz-animation: sh02 0.5s 0s linear;
  animation: sh02 0.5s 0s linear;
}
.ao_banner a::before {
  content: '';
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: #fff;
  box-shadow: 0 0 50px 30px #fff;
  -webkit-transform: skewX(-20deg);
  -moz-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
  transform: skewX(-20deg);
}
@keyframes sh02 {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.ao_banner a:active {
  box-shadow: 0 0 0 0 transparent;
  -webkit-transition: box-shadow 0.2s ease-in;
  -moz-transition: box-shadow 0.2s ease-in;
  transition: box-shadow 0.2s ease-in;
}
@media only screen and (max-width: 768px) {
  .ao_banner h3 {
    font-size: 2.2rem;
    margin: 40px 0 10px;
  }
  .ao_banner p {
    margin: 0 0 50px;
    font-size: 17px;
  }
  .ao_banner p.btn-top {
    font-size: 16px;
  }
  .ao_banner a {
    font-size: 23px;
  }
}
/*-----------------------------------------
	AOエントリー横長バナー旧
-----------------------------------------*/
.ao_banner {
  text-align: center;
  padding-top: 10%;
}
.ao_banner img {
  width: 60%;
}
@media only screen and (max-width: 768px) {
  .ao_banner {
    padding: 10% 0;
  }
  .ao_banner img {
    width: 100%;
  }
}
/*-----------------------------------------
	AOエントリー横長バナー旧
-----------------------------------------*/
.ao_banner {
  margin: 0 auto;
  padding: 40px 0 0;
  max-width: 1200px;
}
.ao_banner img {
  width: 100%;
}
.ao_banner .clm_2.img_sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .ao_banner .clm_2.img_pc {
    display: none;
  }
  .ao_banner .clm_2.img_sp {
    display: block;
  }
}
/*-----------------------------------------
	学科紹介
-----------------------------------------*/
.department.toppage {
  margin: 0;
  padding: 40px 0 0;
}
/*-----------------------------------------
	LINEでサクッと　　動くやつ
-----------------------------------------*/
.sakutto {
  padding-top: 10%;
  margin: 0 auto;
  display: block;
  width: 60%;
}
.sakutto a {
  color: #000;
  display: block;
  position: relative;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.sakutto span:before, .sakutto a:before {
  content: '';
  display: block;
  position: absolute;
  background: #FFF;
}
.sakutto a:before {
  width: 35%;
  height: 80%;
  top: -10px;
  left: -57px;
}
.sakutto span:before {
  width: 36%;
  height: 10%;
  top: -10px;
  right: -10px;
}
.sakutto figure {
  position: relative;
  width: 100%;
}
.sakutto figure .action_bg {
  width: 100%;
  display: block;
  box-shadow: 0 10px 10px -7px rgba(0, 0, 0, .3);
}
.sakutto .phone {
  width: 32%;
  display: block;
  position: absolute;
  top: -20%;
  left: -4%;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.sakutto .lets {
  width: 30%;
  display: block;
  position: absolute;
  top: -20%;
  right: 2%;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
/* hover */
@media only screen and (min-width: 768px) {
  body:not(.tab_view) .sakutto a:hover {
    border-color: #3FCC08;
  }
  body:not(.tab_view) .sakutto a:hover .lets {
    -webkit-transform: rotate(5deg) scale(1.1);
    transform: rotate(5deg) scale(1.1);
  }
  body:not(.tab_view) .sakutto a:hover .phone {
    -webkit-transform: rotate(-5deg) scale(1.1);
    transform: rotate(-5deg) scale(1.1);
  }
}
@media only screen and (max-width: 768px) {
  .sakutto {
    margin: 1em auto 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .sakutto {
    width: 100%;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
  }
  .sakutto {
    border: none;
    margin-left: 52%;
    float: right;
    display: block;
  }
  /*-- .sakutto a {
    border: 4px solid #000;
  } --*/
  .sakutto:afer {
    clear: both;
  }
}
/*-----------------------------------------
	まずは・・・アクション　　 CTA
-----------------------------------------*/
.case_list, .yosu {
  padding-top: 60px;
  margin: 0 auto;
}
.cta .intro {
  padding-bottom: 60px;
}
.action_list li a {
  border: none;
}
.action_list li a:before, .cta_action_midashi {
  display: none;
}
.cta_action_btn {
  padding: 0;
  width: 100%;
}
.cta .dodai {
  position: relative;
}
.cta .btn-main a {
  display: block;
  position: relative;
  border-radius: 4px;
  color: #fff;
  overflow: hidden;
}
.cta .btn-main a::before {
  position: absolute;
  content: '';
  display: inline-block;
  top: 0;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #b5e7ff;
  -webkit-animation: shinyshiny 2.5s ease-in-out infinite;
}
@-webkit-keyframes shinyshiny {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.cta .setumei {
  color: #999999;
  width: 60%;
  margin: 0 auto 30px;
}
@media only screen and (max-width: 768px) {
  .cta > .cont_outer {
    background-image: none;
    padding: 0;
  }
  .cta .action_list li p {
    display: block;
    text-align: justify;
  }
  .cta .action_list {
    margin: 0 auto;
  }
  .cta .intro {
    padding-bottom: 0;
  }
  .cta .intro h2 {
    width: 100%;
    font-size: 1.5rem;
    position: relative;
  }
  .cta .action_list li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    background-size: cover;
  }
  .cta .action_list li figure .action_bg {
    display: none;
  }
  .cta_action_midashi {
    display: block;
    padding: 0;
    width: 90%;
    margin: 0 auto;
  }
  .cta .action_list li div {
    margin: 0 0 20px;
    width: 100%;
    position: relative;
  }
  .cta .btn-main {
    width: 90%;
    margin: 0 auto;
  }
  .action_list li a:last-child {
    margin-top: 8px;
  }
  .cta .setumei {
    width: 90%;
    font-size: 1.2rem;
  }
}
/*-----------------------------------------
	PICK UP　期間限定_掲載区域（？）
-----------------------------------------*/
.yt-wrapper {
  position: relative;
  width: 100%;
}
.yt-wrapper:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.yt-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*-----------------------------------------
-----------------------------------------*/