@charset "UTF-8";
/* CSS Document */
/*---------------------------------

  mainvisual

---------------------------------*/
#mainvisual {
  padding-bottom: 10rem;
  position: relative;
  /*height: calc(100vh - 23rem);*/
  height: 68rem;
}
#mainvisual::after {
  background: #f2f2f2;
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  z-index: -1;
}
#mainvisual .catch_copy {
  position: absolute;
  bottom: 5rem;
  left: 2.5%;
  z-index: 2;
}
#mainvisual .catch_copy > span {
  border-radius: .5rem;
  display: block;
  height: 7rem;
  margin-top: 1rem;
}
#mainvisual .catch_copy > span span {
  opacity: 0;
}
#mainvisual .catch_copy > span:nth-child(1) {
  background: var(--co-main) url("../images/copy_1.svg") no-repeat left 1rem center/auto 5rem;
  width: 58rem;
  transition-delay: 2s;
}
#mainvisual .catch_copy > span:nth-child(2) {
  background-image: url("../images/copy_2.svg"), url("../images/copy_bg_pink.jpg");
  background-repeat: no-repeat, no-repeat;
  background-position: left 1rem center, center;
  background-size: auto 5rem, 100% 100%;
  width: 37rem;
  transition-delay: 3s;
}
#mainvisual .catch_copy > span:nth-child(3) {
  background-image: url("../images/copy_3.svg"), url("../images/copy_bg_blue.jpg");
  background-repeat: no-repeat, no-repeat;
  background-position: left 1rem center, center;
  background-size: auto 5rem, 100% 100%;
  width: 25rem;
  transition-delay: 4s;
}
#mainvisual .slider {
  margin: auto;
  width: 90%;
  height: 100%;
}
#mainvisual .slider * {
  height: 100%;
}
#mainvisual .slider .s_img {}
#mainvisual .slider .s_img img {
  object-fit: cover;
  width: 100%;
  vertical-align: bottom;
}
/* 1枚目 */
#mainvisual .slider .s_img._first_img {
  display: flex;
}
#mainvisual .slider .s_img._first_img ._img {
  flex-basis: 50%;
  position: relative;
}
#mainvisual .slider .s_img._first_img ._img .txt {
  position: absolute;
  top: 6rem;
  height: 33rem;
  width: 15rem;
  transition-delay: 1s;
}
#mainvisual .slider .s_img._first_img ._img .txt span {
  opacity: 0;
}
#mainvisual .slider .s_img._first_img ._img.__dh .txt {
  background: url("../images/main_01_dh_txt.svg") no-repeat center/contain;
  right: 6rem;
}
#mainvisual .slider .s_img._first_img ._img.__dt .txt {
  background: url("../images/main_01_dt_txt.svg") no-repeat center/contain;
  left: 6rem;
}
#mainvisual .slider .splide__slide.is-active .s_bar::before {
  animation: sbar 1s ease 0s 1 normal forwards;
}
#mainvisual .slider .splide__slide .s_bar::before {
  content: '';
  display: block;
  background: #f3f3f3;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 0;
}
#mainvisual .slider .splide__slide.is-active .s_img {
  animation: simg .1s ease .6s 1 normal forwards;
}
#mainvisual .slider .splide__slide .s_img {
  opacity: 0;
  transform: translate3d(0, 0, 0);
}
@media screen and (max-width: 1440px) {
  #mainvisual {
    height: calc(100vh - 13rem);
  }
}
@media screen and (max-width: 1024px) {
  #mainvisual .catch_copy > span {
    height: 6rem;
  }
  #mainvisual .catch_copy > span:nth-child(1) {
    background-size: auto 4rem;
    width: 48rem;
  }
  #mainvisual .catch_copy > span:nth-child(2) {
    background-size: auto 4rem, 100% 100%;
    width: 30rem;
  }
  #mainvisual .catch_copy > span:nth-child(3) {
    background-size: auto 4rem, 100% 100%;
    width: 20rem;
  }
  #mainvisual .slider .s_img._first_img ._img .txt {
    top: 4rem;
    height: 27rem;
    width: 13rem;
  }
}
@media screen and (max-width: 896px) {
  #mainvisual .catch_copy > span:nth-child(1) {
    background-size: auto 3rem;
    width: 36rem;
  }
  #mainvisual .catch_copy > span:nth-child(2) {
    background-size: auto 3rem, 100% 100%;
    width: 23rem;
  }
  #mainvisual .catch_copy > span:nth-child(3) {
    background-size: auto 3rem, 100% 100%;
    width: 16rem;
  }
}
@media screen and (max-width: 480px) {
  #mainvisual {
    height: calc(100vh - 7rem);
  }
  #mainvisual .slider * {}
  #mainvisual .slider .s_img._first_img {
    display: block;
  }
  #mainvisual .slider .s_img._first_img ._img {
    height: 27rem;
  }
  #mainvisual .slider .s_img._first_img ._img .txt {
    height: 20rem;
    width: 9rem;
    top: 3rem;
  }
  #mainvisual .slider .s_img._first_img ._img.__dh .txt {
    right: 3rem;
  }
  #mainvisual .slider .s_img._first_img ._img.__dt .txt {
    left: 3rem;
  }
  #mainvisual .catch_copy {
    bottom: 5rem;
  }
  #mainvisual .catch_copy > span {
    height: 5rem;
  }
  #mainvisual .catch_copy > span:nth-child(1) {
    background-size: auto 2.5rem;
    width: 30rem;
  }
  #mainvisual .catch_copy > span:nth-child(2) {
    background-size: auto 2.5rem, 100% 100%;
    width: 19rem;
  }
  #mainvisual .catch_copy > span:nth-child(3) {
    background-size: auto 2.5rem, 100% 100%;
    width: 13rem;
  }
}
@keyframes sbar {
  0% {
    top: 0;
    height: 0;
  }
  60% {
    top: 0;
    height: 100.1%;
  }
  100% {
    top: 100%;
    height: 0;
  }
}
@keyframes simg {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*---------------------------------

  information

---------------------------------*/
.informationBlock {
  background: #f2f2f2;
  padding: 0 0 10rem;
}
/*---------------------------------
  Topics
---------------------------------*/
#news-ticker {
  background: #fff;
  display: flex;
  justify-content: space-between;
  height: 8rem;
  margin: auto;
  max-width: var(--width);
  position: relative;
  width: 90%;
}
#news-ticker h2.title {
  background: url("../images/pickup_ttl.svg") no-repeat center/contain;
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  width: 10rem;
  height: 5rem;
}
#news-ticker h2.title span {
  opacity: 0;
}
#news-ticker .splide__track {
  flex: 1 1 auto;
  padding: 1rem 2.5% !important;
}
#news-ticker .splide__track li {
  display: flex;
  align-items: center;
  height: 100%;
}
#news-ticker .splide__track li time {
  color: #999999;
  font-size: .9em;
  flex: 0 0 10rem;
}
#news-ticker .splide__track li p {
  flex: 1 1 auto;
  padding-left: 1rem;
}
#news-ticker .splide__track li p a {
  color: #c69c2e;
  font-weight: 500;
  position: relative;
}
#news-ticker .splide__track li p a::after {
  background-color: #c69c2e;
  bottom: -4px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: left top;
  width: 100%;
}
/* リンクにホバーした際の下線の表示 */
#news-ticker .splide__track li p a:hover::after {
  transform: scale(1, 1);
}
#news-ticker .splide__arrows {
  display: flex;
  flex: 0 0 16rem;
}
#news-ticker .splide__arrows button {
  border: none;
  border-left: 1px solid #ccc;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: .8rem;
  cursor: pointer;
  flex-basis: 50%;
}
#news-ticker .splide__arrows button.splide__arrow--prev {
  background-image: url("../images/pickup_arr_perv.svg");
}
#news-ticker .splide__arrows button.splide__arrow--next {
  background-image: url("../images/pickup_arr_next.svg");
}
#news-ticker .splide__arrows button svg {
  display: none;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  #news-ticker {}
}
@media screen and (max-width: 480px) {
  .informationBlock {
    padding: 0 0 5rem;
  }
  #news-ticker {
    height: auto;
    display: block;
  }
  #news-ticker .splide__track {
    padding: 2rem 2.5% !important;
  }
  #news-ticker .splide__track li {
    display: block;
  }
  #news-ticker .splide__track li time {
    font-size: .9em;
    display: inline-block;
    width: 7rem;
  }
  #news-ticker .splide__track li .catTag {
    border: 1px solid;
    font-size: .8em;
    display: inline-block;
    text-align: center;
    width: 6rem;
  }
  #news-ticker .splide__track li p {
    margin-top: .5rem;
    padding-left: 0;
  }
  #news-ticker .splide__arrows {
    position: absolute;
    top: -5rem;
    right: 0;
  }
  #news-ticker .splide__arrows button {
    height: 5rem;
    width: 5rem;
  }
}
/*---------------------------------
  トピックス
---------------------------------*/
.topicsBlock {
  margin: auto;
  max-width: var(--width);
  padding-top: 5rem;
  width: 90%;
}
#topics-slider {}
#topics-slider .splide__track {}
#topics-slider .splide__track li {}
#topics-slider .splide__track li .item {
  background: var(--co-main);
  position: relative;
}
#topics-slider .splide__track li .item::after {
  content: 'check!';
  color: #fff;
  font-weight: 600;
  letter-spacing: .2em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
}
#topics-slider .splide__track li .item a {
  color: #333;
  display: block;
  position: relative;
  z-index: 1;
}
#topics-slider .splide__track li .item a:hover {
  opacity: .3;
}
#topics-slider .splide__track li .item figure {}
#topics-slider .splide__track li .item figure img {
  object-fit: cover;
}
#topics-slider .splide__arrows {}
#topics-slider .splide__arrows .splide__arrow {
  border: none;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 5rem;
  width: 5rem;
}
#topics-slider .splide__arrows button.splide__arrow--prev {
  background-image: url("../images/sl_arr_prev.svg");
  left: -7rem;
}
#topics-slider .splide__arrows button.splide__arrow--next {
  background-image: url("../images/sl_arr_next.svg");
  right: -7rem;
}
#topics-slider .splide__arrows button svg {
  display: none;
}
@media screen and (max-width: 1024px) {
  #topics-slider {
    padding: 0 7%;
  }
  #topics-slider .splide__arrows button.splide__arrow--prev {
    left: -0rem;
  }
  #topics-slider .splide__arrows button.splide__arrow--next {
    right: -0rem;
  }
}
@media screen and (max-width: 896px) {
  #topics-slider .splide__track li {
    flex-basis: 40%;
    margin-right: 2rem;
  }
}
@media screen and (max-width: 480px) {
  #topics-slider .splide__track li {
    flex-basis: 80%;
  }
  #topics-slider .splide__arrows .splide__arrow {
    height: 4rem;
    width: 4rem;
  }
}
/*---------------------------------
  動画
---------------------------------*/
#about_movie .movieBox {
  aspect-ratio: 16 / 4;
  margin: 0 auto;
}
#movie01 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  width: 100%;
}
#movie01 a {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}
#movie01 a::before, #movie01 a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
#movie01 a::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 50px;
  border-color: transparent transparent transparent #03B9CD;
  z-index: 2;
}
#movie01 a::after {
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  background: #fff;
  width: 150px;
  height: 150px;
}
#movie01 a:hover {}
#movie01 a:hover::before {
  border-width: 30px 0 30px 60px;
}
#movie01 a:hover::after {
  width: 200px;
  height: 200px;
}
#movie01 a .overlay, #movie01 a #yt_player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
#movie01 a .overlay {
  background: rgba(197, 225, 219, 0.50);
  z-index: -1;
}
#movie01 a #yt_player {
  z-index: -2;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  #about_movie .movieBox {
    aspect-ratio: 8 / 4;
    margin: 0 auto;
  }
}
/*---------------------------------

  共通

---------------------------------*/
section {
  padding: 12rem 0;
}
section .wrap {
  margin: auto;
  max-width: var(--width);
  width: 90%;
}
section .title h2:not(.en) {
  color: #666;
  font-size: 2.5rem;
  letter-spacing: .3em;
  margin-top: 2rem;
}
section .title .en {
  color: var(--co-main);
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
  position: relative;
}
section .title .en::after {
  content: attr(data-en);
  color: rgba(0, 0, 0, .0);
  -webkit-text-stroke: 1px var(--co-main);
  text-stroke: 1px var(--co-main);
  position: absolute;
  top: .3rem;
  left: .3rem;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  section .title .en {
    font-size: 6rem;
  }
}
@media screen and (max-width: 480px) {
  section {
    padding: 5rem 0;
  }
  section .title .en {
    font-size: 5rem;
  }
  section .title h2:not(.en) {
    font-size: 1.8rem;
  }
}
/*---------------------------------

  歯科医療を一生の仕事にする

---------------------------------*/
.aboutBlock {
  background: var(--co-main);
  color: #fff;
}
.aboutBlock .wrap {
  display: flex;
  justify-content: space-between;
}
.aboutBlock .wrap .txtBox {}
.aboutBlock .wrap .txtBox .title {}
.aboutBlock .wrap .txtBox .title h2 {
  color: #fff;
  font-size: 7rem;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: .1em;
}
.aboutBlock .wrap .txtBox .title h2 p {
  overflow: hidden;
}
.aboutBlock .wrap .txtBox .title h2 span {
  display: inline-block;
  margin: 0;
  transform: translateY(2em);
}
.aboutBlock .wrap .txtBox .title.is-show h2 span {
  animation: textanimation .5s forwards;
}
.aboutBlock .wrap .txtBox .title.is-show h2 p:nth-child(1) span:nth-child(1) {
  animation-delay: 0.2s;
}
.aboutBlock .wrap .txtBox .title.is-show h2 p:nth-child(1) span:nth-child(2) {
  animation-delay: 0.4s;
}
.aboutBlock .wrap .txtBox .title.is-show h2 p:nth-child(1) span:nth-child(3) {
  animation-delay: 0.6s;
}
.aboutBlock .wrap .txtBox .title.is-show h2 p:nth-child(1) span:nth-child(4) {
  animation-delay: 0.8s;
}
.aboutBlock .wrap .txtBox .title.is-show h2 p:nth-child(1) span:nth-child(5) {
  animation-delay: 1s;
}
.aboutBlock .wrap .txtBox .title.is-show h2 p:nth-child(2) span:nth-child(1) {
  animation-delay: 1.2s;
}
.aboutBlock .wrap .txtBox .title.is-show h2 p:nth-child(2) span:nth-child(2) {
  animation-delay: 1.4s;
}
.aboutBlock .wrap .txtBox .title.is-show h2 p:nth-child(2) span:nth-child(3) {
  animation-delay: 1.6s;
}
.aboutBlock .wrap .txtBox .title.is-show h2 p:nth-child(2) span:nth-child(4) {
  animation-delay: 1.8s;
}
.aboutBlock .wrap .txtBox .title.is-show h2 p:nth-child(2) span:nth-child(5) {
  animation-delay: 2s;
}
.aboutBlock .wrap .txtBox .title.is-show h2 p:nth-child(2) span:nth-child(6) {
  animation-delay: 2.2s;
}
.aboutBlock .wrap .txtBox .title.is-show h2 p:nth-child(2) span:nth-child(7) {
  animation-delay: 2.4s;
}
.aboutBlock .wrap .txtBox .title.is-show h2 p:nth-child(2) span:nth-child(8) {
  animation-delay: 2.6s;
}
.aboutBlock .wrap .txtBox .title.is-show h2 p:nth-child(2) span:nth-child(9) {
  animation-delay: 2.8s;
}
@keyframes textanimation {
  0% {
    transform: translateY(2em);
  }
  100% {
    transform: translateY(0);
  }
}
.aboutBlock .wrap .txtBox .txt {
  background: url("../images/keyimg.svg") no-repeat center left/contain;
  font-size: 1.2em;
  font-weight: 500;
  margin-top: 3rem;
  padding-left: 15rem;
}
.aboutBlock .wrap .txtBox .txt .__key {
  color: #ffff00;
  font-size: 1.3em;
}
.aboutBlock .wrap .circleBtn {
  margin: auto;
  flex-basis: 30rem;
  height: 30rem;
}
.aboutBlock .wrap .circleBtn a {
  border: 3px solid;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  height: 100%;
  padding: 4rem 1rem 0;
  position: relative;
  text-align: center;
}
.aboutBlock .wrap .circleBtn a span {}
.aboutBlock .wrap .circleBtn a span::after {
  background: url("../images/arr_w.svg") no-repeat center/contain;
  content: '';
  display: block;
  margin: 2.5rem auto 0;
  width: 5rem;
  height: 5rem;
}
.aboutBlock .wrap .circleBtn a::before {
  background: url("../images/click.svg") no-repeat center/contain;
  content: '';
  display: block;
  margin: auto;
  position: absolute;
  top: 2rem;
  left: 0;
  right: 0;
  width: 22rem;
  height: 5rem;
}
.aboutBlock .wrap .circleBtn a:hover {
  background: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 1024px) {
  .aboutBlock .wrap .txtBox .title h2 {
    font-size: 5.5rem;
  }
  .aboutBlock .wrap .circleBtn {
    margin: 0;
  }
}
@media screen and (max-width: 896px) {
  .aboutBlock .wrap {
    display: block;
  }
  .aboutBlock .wrap .txtBox .title h2 {
    text-align: center;
  }
  .aboutBlock .wrap .txtBox .txt {
    max-width: fit-content;
    margin: 5rem auto;
  }
  .aboutBlock .wrap .circleBtn {
    margin: auto;
    width: 30rem;
  }
}
@media screen and (max-width: 480px) {
  .aboutBlock .wrap .txtBox .title h2 {
    font-size: 3.8rem;
  }
  .aboutBlock .wrap .txtBox .txt {
    background-size: 7rem;
    margin-top: 1.5rem;
    padding-left: 10rem;
    margin-bottom: 3rem;
  }
  .aboutBlock .wrap .circleBtn {
    margin: auto;
    width: 20rem;
    height: 20rem;
  }
  .aboutBlock .wrap .circleBtn a {
    font-size: 1.8rem;
    padding: 4rem 1rem 0;
  }
  .aboutBlock .wrap .circleBtn a::before {
    top: 1rem;
    width: 16rem;
    height: 3rem;
  }
  .aboutBlock .wrap .circleBtn a span::after {
    margin: 1.5rem auto 0;
    width: 3rem;
    height: 3rem;
  }
}
/*---------------------------------

  学科

---------------------------------*/
.courseBlock {
  background: url("../images/course_bg.jpg") no-repeat center top/100% auto;
  padding-bottom: 0;
}
.courseBlock .wrap {
  max-width: none;
  width: 95%;
}
.courseBlock .wrap .title {
  margin: auto;
  max-width: 100rem;
  width: 90%;
}
.courseBlock .wrap .title h2 {
  margin-bottom: 5rem;
}
.courseBlock .wrap .title h2 img {
  width: 100%;
  vertical-align: bottom;
}
.courseBlock .wrap .courseWrap {
  display: flex;
  justify-content: space-between;
  margin: 3rem auto;
  width: 98%;
}
.courseBlock .wrap .courseWrap .coBox {
  flex-basis: 47%;
}
.courseBlock .wrap .courseWrap .coBox a {
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  color: #fff;
  display: block;
  height: 0;
  padding-top: 70%;
  position: relative;
}
.courseBlock .wrap .courseWrap .coBox a ._ttl {
  background: url("../images/arr_w.svg") no-repeat center right 5rem/5rem;
  padding: 5rem;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all .3s;
  width: 100%;
}
.courseBlock .wrap .courseWrap .coBox a ._ttl p {
  background: #fff;
  border-radius: 4rem;
  color: #333;
  display: inline-block;
  font-size: 1.2em;
  font-weight: 700;
  padding: .5rem 2rem;
}
.courseBlock .wrap .courseWrap .coBox a ._ttl h3 {
  font-size: 6.5rem;
  letter-spacing: 0.15em;
  line-height: 1;
  margin-top: 1.5rem;
  position: relative;
  width: fit-content;
}
.courseBlock .wrap .courseWrap .coBox a ._ttl h3::after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  position: absolute;
  right: -2rem;
  bottom: -1.5rem;
  height: 2.8rem;
}
.courseBlock .wrap .courseWrap .coBox a:hover {
  opacity: .8;
}
.courseBlock .wrap .courseWrap .coBox a:hover ._ttl {
  background-position: center right 3rem;
}
/* 歯科衛生士 */
.courseBlock .wrap .courseWrap .coBox.__dh {
  background: var(--co-dh);
  box-shadow: 3rem 3rem 0 0 rgba(240, 105, 140, 0.70);
}
.courseBlock .wrap .courseWrap .coBox.__dh a {
  background-image: url("../images/course_dh_bg.jpg");
}
.courseBlock .wrap .courseWrap .coBox.__dh a ._ttl p {
  color: var(--co-dh);
}
.courseBlock .wrap .courseWrap .coBox.__dh a ._ttl h3::after {
  background-image: url("../images/ttl_deco_dh.svg");
  width: 17rem;
}
/* 歯科技工士 */
.courseBlock .wrap .courseWrap .coBox.__dt {
  background: var(--co-dt);
  box-shadow: 3rem 3rem 0 0 rgba(60, 160, 200, 0.70);
}
.courseBlock .wrap .courseWrap .coBox.__dt a {
  background-image: url("../images/course_dt_bg.jpg");
}
.courseBlock .wrap .courseWrap .coBox.__dt a ._ttl p {
  color: var(--co-dt);
}
.courseBlock .wrap .courseWrap .coBox.__dt a ._ttl h3::after {
  background-image: url("../images/ttl_deco_dt.svg");
  width: 18rem;
}
@media screen and (max-width: 1024px) {
  .courseBlock {
    padding: 5rem 0 0;
  }
  .courseBlock .wrap .courseWrap {
    width: 100%;
  }
  .courseBlock .wrap .courseWrap .coBox {}
  .courseBlock .wrap .courseWrap .coBox a {
    padding-top: 70%;
  }
  .courseBlock .wrap .courseWrap .coBox a ._ttl {
    background-position: center right 2rem;
    background-size: 4rem;
    padding: 2rem;
  }
  .courseBlock .wrap .courseWrap .coBox a ._ttl p {
    font-size: 0.9em;
    padding: .5rem 1.5rem;
  }
  .courseBlock .wrap .courseWrap .coBox a ._ttl h3 {
    font-size: 4.7rem;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 896px) {
  .courseBlock {
    background-size: auto 40rem;
  }
  .courseBlock .wrap .title {
    max-width: 50rem;
  }
  .courseBlock .wrap .courseWrap .coBox {
    flex-basis: 48%;
  }
  .courseBlock .wrap .courseWrap .coBox.__dh {
    box-shadow: 1rem 1rem 0 0 rgba(240, 105, 140, 0.70);
  }
  .courseBlock .wrap .courseWrap .coBox.__dt {
    box-shadow: 1rem 1rem 0 0 rgba(60, 160, 200, 0.70);
  }
}
@media screen and (max-width: 480px) {
  .courseBlock {
    background-size: auto 80%;
    padding: 2rem 0 0;
  }
  .courseBlock .wrap {
    width: 90%;
  }
  .courseBlock .wrap .title h2 {
    margin-bottom: 2rem;
  }
  .courseBlock .wrap .courseWrap {
    display: block;
    justify-content: space-between;
    margin: 3rem auto;
    width: 98%;
  }
  .courseBlock .wrap .courseWrap .coBox.__dh {
    margin-bottom: 2rem;
  }
}
/*---------------------------------

  在校生の声

---------------------------------*/
.movieBlock {
  position: relative;
}
.movieBlock::after {
  background: url("../images/movie_bg.png") no-repeat center / cover;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  height: 30rem;
  width: 100%;
  z-index: -1;
}
.movieBlock .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.movieBlock .wrap .title {}
.movieBlock .wrap .movieBox {
  aspect-ratio: 16 / 9;
  flex-basis: 65%;
}
#movie {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  width: 100%;
}
#movie a {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}
#movie a::before, #movie a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
#movie a::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 50px;
  border-color: transparent transparent transparent #03B9CD;
  z-index: 2;
}
#movie a::after {
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  background: #fff;
  width: 150px;
  height: 150px;
}
#movie a:hover {}
#movie a:hover::before {
  border-width: 30px 0 30px 60px;
}
#movie a:hover::after {
  width: 200px;
  height: 200px;
}
#movie a .overlay, #movie a #voiceImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
#movie a .overlay {
  background: rgba(197, 223, 225, 0.50);
  z-index: -1;
}
#movie a #voiceImg {
  background: url("../images/movie_img.jpg") no-repeat center/cover;
  z-index: -2;
}
@media screen and (max-width: 1024px) {
  .movieBlock {
    padding: 8rem 0;
  }
}
@media screen and (max-width: 896px) {
  .movieBlock .wrap {
    display: block;
  }
  .movieBlock .wrap .title {
    margin-bottom: 3rem;
  }
  .movieBlock::after {
    top: 18rem;
  }
}
@media screen and (max-width: 480px) {
  .movieBlock {
    padding: 4rem 0;
  }
  .movieBlock::after {
    height: 12rem;
    top: 14rem;
  }
  #movie a::before {
    border-width: 15px 0 15px 30px;
  }
  #movie a::after {
    width: 10rem;
    height: 10rem;
  }
}
/*---------------------------------

  社会人の方へ

---------------------------------*/
.workingBlock {
  background-image: linear-gradient(0deg, transparent 31px, #ccc 32px), linear-gradient(90deg, transparent 31px, #ccc 32px);
  background-size: 32px 32px;
  border: 2rem solid #ccc;
  padding: 5rem 0;
  text-align: center;
}
.workingBlock .title {}
.workingBlock .title h2 {
  background: url("../images/working.svg") no-repeat center/auto 100%;
  height: 15rem;
  position: relative;
}
.workingBlock .title h2::before, .workingBlock .title h2::after {
  background: rgba(255, 255, 0, 0.5);
  content: '';
  margin: auto;
  mix-blend-mode: multiply;
  position: absolute;
  height: 3rem;
  left: 0;
  right: 0;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.workingBlock .title h2::before {
  top: 3.3rem;
  width: 35rem;
  transition-delay: 1.3s;
}
.workingBlock .title h2::after {
  bottom: -.5rem;
  width: 70rem;
  transition-delay: 1.8s;
}
.workingBlock .is-show .title h2::before, .workingBlock .is-show .title h2::after {
  transform: scale(1, 1);
}
.workingBlock .title h2 span {
  opacity: 0;
}
.workingBlock .txt {
  line-height: 2;
  margin: 3rem auto;
}
.workingBlock .btn {
  margin: 5rem auto;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  .workingBlock .title h2 {
    height: 11rem;
  }
  .workingBlock .title h2::before, .workingBlock .title h2::after {
    height: 2rem;
  }
  .workingBlock .title h2::before {
    width: 28rem;
  }
  .workingBlock .title h2::after {
    width: 55rem;
  }
}
@media screen and (max-width: 480px) {
  .workingBlock {
    padding: 2rem 0;
  }
  .workingBlock .title h2 {
    height: 7rem;
  }
  .workingBlock .title h2::before, .workingBlock .title h2::after {
    height: 1.5rem;
  }
  .workingBlock .title h2::before {
    width: 20rem;
    top: 1.8rem;
  }
  .workingBlock .title h2::after {
    width: 33rem;
  }
  .workingBlock .btn {
    margin: 2rem auto;
  }
}
/*---------------------------------

  オープンキャンパス

---------------------------------*/
.ocBlock {
  background: #f4f3e7;
  padding-bottom: 23rem;
}
.ocBlock .headWrap {
  display: flex;
  justify-content: space-between;
}
.ocBlock .title .en {
  color: #333;
}
.ocBlock .title .en::after {
  content: 'OPEN \A CAMPUS';
  -webkit-text-stroke: 1px #333;
  text-stroke: 1px #333;
  white-space: pre;
}
.ocBlock .title p {
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.2em;
  margin-top: 4rem;
}
.ocBlock .title p span {
  font-size: 1.1em;
}
.ocBlock .title p .__dh {
  color: var(--co-dh);
}
.ocBlock .title p .__dt {
  color: var(--co-dt);
}
.ocBlock .headWrap .imgBox {
  position: relative;
}
.ocBlock .headWrap .imgBox figure {
  border: 1px solid;
  max-width: 57rem;
}
.ocBlock .headWrap .imgBox .btn {
  position: absolute;
  left: -10rem;
  bottom: 5rem;
}
.ocBlock .headWrap .imgBox .btn a {
  background-color: #f4f3e7;
}
.ocBlock .headWrap .imgBox .btn a:hover {
  background-color: #333;
}
@media screen and (max-width: 1024px) {
  .ocBlock .headWrap .imgBox figure {
    border: 2px solid;
    max-width: 40rem;
  }
  .ocBlock .headWrap .imgBox .btn {
    left: -5rem;
  }
}
@media screen and (max-width: 896px) {
  .ocBlock .title .en {}
  .ocBlock .title p {
    font-size: 1em;
  }
  .ocBlock .headWrap .imgBox {
    flex-basis: 48%;
  }
  .ocBlock .headWrap .imgBox .btn {
    left: -5rem;
    bottom: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .ocBlock .headWrap {
    display: block;
  }
  .ocBlock .title .en {
    font-size: 6.5rem;
  }
  .ocBlock .title p {
    margin-top: 2rem;
  }
  .ocBlock .headWrap .imgBox {
    margin-top: 3rem;
  }
  .ocBlock .headWrap .imgBox .btn {
    left: -1rem;
    bottom: -2rem;
  }
}
/*---------------------------------
  日程一覧
---------------------------------*/
.ocBlock .conWrap {
  margin-top: 7rem;
}
.ocBlock .conWrap .title {
  margin-bottom: 2rem;
}
.ocBlock .conWrap .title h3 {
  background: url("../images/oc_ttl_deco.svg") no-repeat left top/ 8.5rem;
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
  padding-left: 9rem;
  padding-bottom: 3rem;
}
.ocBlock .conWrap .oc-slider {}
#oc-slider .splide__slide .item {}
#oc-slider .splide__slide .item a {
  border-bottom: 1px solid;
  color: #333;
  display: block;
  position: relative;
}
#oc-slider .splide__slide .item a::after {
  background: #333 url("../images/arr_w.svg") no-repeat center/60%;
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 3rem;
  height: 3rem;
}
#oc-slider .splide__slide .item ._ttl {
  background: #333;
  color: #fff;
  font-weight: 500;
  padding: .1em;
  text-align: center;
  transition: all .3s;
}
#oc-slider .splide__slide .item ._day {
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  margin: 1rem 0;
}
#oc-slider .splide__slide .item ._day .yy {}
#oc-slider .splide__slide .item ._day .mmdd {
  font-size: 6rem;
}
#oc-slider .splide__slide .item ._day .week {
  margin-left: .3em;
}
#oc-slider .splide__slide .item ._day .week::before {
  content: '[';
}
#oc-slider .splide__slide .item ._day .week::after {
  content: ']';
}
#oc-slider .splide__slide .item a:hover {
  color: #c69c2e;
}
#oc-slider .splide__slide .item a:hover::after {
  background-color: #c69c2e;
}
#oc-slider .splide__slide .item a:hover ._ttl {
  background-color: #c69c2e;
}
#oc-slider .splide__arrows .splide__arrow {
  border: none;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 5rem;
  width: 5rem;
}
#oc-slider .splide__arrows button.splide__arrow--prev {
  background-image: url("../images/sl_arr_prev.svg");
  left: -7rem;
}
#oc-slider .splide__arrows button.splide__arrow--next {
  background-image: url("../images/sl_arr_next.svg");
  right: -7rem;
}
#oc-slider .splide__arrows button svg {
  display: none;
}
#oc-slider .splide__arrows button:disabled {
  background-color: #eee;
  opacity: .3;
}
.ocBlock .conWrap .moreBtn {
  margin: 7rem auto 0;
  max-width: 67rem;
  width: 90%;
}
.ocBlock .conWrap .moreBtn a {
  background: #333;
  border-radius: .5rem;
  color: #fff;
  display: block;
  padding: 1.5rem;
  text-align: center;
}
.ocBlock .conWrap .moreBtn a:hover {
  background-color: #c69c2e;
}
@media screen and (max-width: 1024px) {
  .ocBlock .conWrap .oc-slider {
    padding: 0 7%;
  }
  #oc-slider .splide__slide .item ._day .mmdd {
    font-size: 5rem;
  }
  #oc-slider .splide__arrows button.splide__arrow--prev {
    left: 0rem;
  }
  #oc-slider .splide__arrows button.splide__arrow--next {
    right: 0rem;
  }
}
@media screen and (max-width: 896px) {
  #oc-slider .splide__slide .item ._day {
    margin: 2rem 0;
  }
  #oc-slider .splide__arrows button.splide__arrow--prev {
    left: -2rem;
  }
  #oc-slider .splide__arrows button.splide__arrow--next {
    right: -2rem;
  }
  .ocBlock .conWrap .moreBtn {
    margin: 4rem auto 0;
    max-width: 40rem;
  }
}
@media screen and (max-width: 480px) {
  .ocBlock {
    padding-bottom: 10rem;
  }
  .ocBlock .conWrap .title h3 {
    background-size: 7rem;
    font-size: 2.5rem;
  }
  .ocBlock .conWrap .oc-slider {
    padding: 0 12%;
  }
  #oc-slider .splide__arrows .splide__arrow {
    height: 4rem;
    width: 4rem;
  }
  #oc-slider .splide__arrows button.splide__arrow--prev {
    left: -1.5rem;
  }
  #oc-slider .splide__arrows button.splide__arrow--next {
    right: -1.5rem;
  }
}
/*---------------------------------

  お知らせ

---------------------------------*/
.newsBlock {
  background: #fff;
  border-radius: 10rem 10rem 0 0;
  margin-top: -10rem;
}
.newsBlock .wrap {}
.newsBlock .tab_ttl_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 5rem;
}
.newsBlock .tab_ttl_wrap .title {}
.newsBlock .tab_ttl_wrap .title h2 {}
.newsBlock .tab_ttl_wrap .tabList {
  border: 1px solid #b3b3b3;
  border-radius: .5rem;
  display: flex;
  list-style: none;
  padding: 0 2rem;
}
.newsBlock .tab_ttl_wrap .tabList .tab {
  border-radius: .5rem;
  color: #333;
  cursor: pointer;
  font-weight: 500;
  margin: 0 2rem;
  padding: 2rem 0;
  position: relative;
}
.newsBlock .tab_ttl_wrap .tabList .tab::after {
  background: #333;
  content: '';
  position: absolute;
  bottom: -.5px;
  left: 0;
  width: 100%;
  height: 3px;
  opacity: 0;
  transition: all .3s;
}
.newsBlock .tab_ttl_wrap .tabList .tab:hover::after, .newsBlock .tab_ttl_wrap .tabList .tab.is-active::after {
  opacity: 1;
}
.newsBlock .wrap .letterList {
  list-style: none;
}
.newsBlock .wrap .letterList li {}
.newsBlock .wrap .letterList li .item {
  border-bottom: 1px solid #ccc;
  overflow: hidden;
}
.newsBlock .wrap .letterList li .item a {
  background: url("../images/arr_b.svg") no-repeat center right 2rem/3rem;
  color: #333;
  display: flex;
  align-items: flex-start;
  padding: 3rem;
  padding-right: 5rem;
}
.newsBlock .wrap .letterList li .item figure {
  border-radius: 1rem;
  width: 19rem;
  overflow: hidden;
}
.newsBlock .wrap .letterList li .item figure img {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all .3s;
}
.newsBlock .wrap .letterList li .item ._txt {
  flex-basis: calc(100% - 19rem);
  padding-left: 4%;
}
.newsBlock .wrap .letterList li .item time {
  color: #808080;
  display: inline-block;
  margin-right: 2rem;
}
.newsBlock .wrap .letterList li .item .catTag {
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  font-size: .9em;
  padding: .2rem 3rem;
  text-align: center;
}
.newsBlock .wrap .letterList li .item p {
  font-size: 1.1em;
  font-weight: 500;
  margin-top: .5rem;
}
.newsBlock .wrap .letterList li .item a:hover {
  background-color: #f9f9f9;
  background-position: center right 0;
  color: var(--co-main);
}
.newsBlock .wrap .letterList li .item a:hover img {
  transform: scale(1.1);
}
.newsBlock .wrap .letterList li .item .catTag._news {
  background: var(--co-main);
}
.newsBlock .wrap .letterList li .item .catTag._exam {
  background: #6abd61;
}
.newsBlock .wrap .letterList li .item .catTag._oc {
  background: #f0698c;
}
/* 一覧をみる */
.newsBlock .wrap .ListBtn {
  margin-top: 4rem;
  text-align: right;
}
.newsBlock .wrap .ListBtn a {
  color: #333;
  display: inline-block;
  font-weight: 500;
  padding: 1.5rem;
  padding-right: 5rem;
  position: relative;
}
.newsBlock .wrap .ListBtn a span {}
.newsBlock .wrap .ListBtn a::after {
  background: #333 url("../images/arr_w.svg") no-repeat center/60%;
  content: '';
  margin: auto;
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
}
.newsBlock .wrap .ListBtn a:hover {
  color: var(--co-main);
}
.newsBlock .wrap .ListBtn a:hover::after {
  background-color: var(--co-main);
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  .newsBlock .tab_ttl_wrap {
    display: block;
    margin-bottom: 3rem;
  }
  .newsBlock .tab_ttl_wrap .title {
    display: flex;
    align-items: baseline;
    margin-bottom: 2rem;
  }
  .newsBlock .tab_ttl_wrap .title h2 {
    margin-left: 2rem;
  }
  .newsBlock .wrap .letterList li .item a {
    padding: 3rem 0;
    padding-right: 5rem;
  }
}
@media screen and (max-width: 480px) {
  .newsBlock {
    border-radius: 5rem 5rem 0 0;
    margin-top: -5rem;
  }
  .newsBlock .tab_ttl_wrap .tabList {
    padding: 0 0.5rem;
  }
  .newsBlock .tab_ttl_wrap .tabList .tab {
    margin: 0 0.6rem;
    padding: 1rem 0;
    font-size: .9em;
  }
  .newsBlock .wrap .letterList li .item a {
    background-size: 2rem;
    background-position: center right 0;
    padding: 3rem 0;
    padding-right: 3rem;
  }
  .newsBlock .wrap .letterList li .item figure {
    width: 10rem;
  }
  .newsBlock .wrap .letterList li .item figure img {
    aspect-ratio: 1/1;
  }
  .newsBlock .wrap .letterList li .item ._txt {
    flex-basis: calc(100% - 10rem);
    padding-left: 4%;
  }
  .newsBlock .wrap .letterList li .item time {
    margin-right: 1rem;
  }
  .newsBlock .wrap .letterList li .item .catTag {
    font-size: 0.75em;
    padding: .2rem 1rem;
  }
  .newsBlock .wrap .ListBtn {
    margin-top: 1rem;
  }
}
/*---------------------------------
　タブ切り替えスタイル
---------------------------------*/
.tab__outer .panel {
  display: none;
}
.tab__outer .panel.is-show {
  display: block;
  animation: tabAnim ease 0.6s forwards;
  -ms-animation: tabAnim ease 0.6s forwards;
}
@keyframes tabAnim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*---------------------------------

  学校の様子

---------------------------------*/
#stateImgBlock {}
#stateImgBlock #state-slider {}
#stateImgBlock #state-slider .splide__slide {
  width: 45rem !important;
}
#stateImgBlock #state-slider .splide__slide .img {
  height: 100%;
}
#stateImgBlock #state-slider .splide__slide .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  #stateImgBlock #state-slider .splide__slide {
    width: 25rem !important;
  }
}
@media screen and (max-width: 480px) {
  #stateImgBlock #state-slider .splide__slide {
    width: 20rem !important;
  }
}
/*---------------------------------

  404

---------------------------------*/
section.not404_block {}
section.not404_block .wrap {
  margin: auto;
  max-width: max-content;
  width: 90%;
  text-align: center;
}
section.not404_block .wrap .title {}
section.not404_block .wrap .title .en {}
section.not404_block .wrap .title h2 {
  letter-spacing: 2px;
}
section.not404_block .wrap .txt {
  line-height: 2;
  margin: 5rem 0;
}
section.not404_block .wrap .btn {
  margin: auto;
  text-align: left;
}