@charset "UTF-8";
/* CSS Document */
/*---------------------------------

  ページメニュー

---------------------------------*/
#coursePageMenu {
  background: transparent;
  border: 1px solid var(--co-dh);
  margin: 5rem auto;
  padding: 5rem 5%;
  position: relative;
  width: 90%;
}
#coursePageMenu::after {
  background: rgba(240, 105, 140, 0.15);
  content: '';
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#coursePageMenu p.ttl {
  background: var(--co-dh);
  border-radius: 5rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 2px;
  margin: auto;
  max-width: max-content;
  padding: .5rem 5rem;
  position: absolute;
  top: -1.8rem;
  left: 0;
  right: 0;
}
#coursePageMenu ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: auto;
}
#coursePageMenu ul li {
  flex-basis: calc(100%/4);
  padding: 1.5rem;
  text-align: center;
}
#coursePageMenu ul li a {
  color: #333;
  display: block;
  height: 100%;
  position: relative;
}
#coursePageMenu ul li a::after {
  background: rgba(248, 182, 45, 0.5);
  border: 1px solid;
  border-radius: 5rem;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#coursePageMenu ul li a span {
  background: #fff url("../images/arr_b.svg") no-repeat center right 2rem / 2rem;
  border: 1px solid;
  border-radius: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 2.5rem;
  position: relative;
  transform: translate(-.5rem, -.5rem);
  z-index: 1;
}
#coursePageMenu ul li a:hover {}
#coursePageMenu ul li a:hover span {
  transform: translate(0, 0);
}
#coursePageMenu ul li.is-current a span {
  background-color: #FAEDAF;
  transform: translate(0, 0);
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {}
/*---------------------------------

  学科概要

---------------------------------*/
.aboutBlock {
  padding-bottom: 0;
}
.aboutBlock .title {
  text-align: center;
}
.aboutBlock .title::after {
  margin: auto;
  right: 0;
}
.aboutBlock .txt {
  line-height: 2;
  margin: auto;
  max-width: 80rem;
  padding: 1.5rem 3rem;
  position: relative;
  text-align: justify;
  width: 90%;
}
.aboutBlock .txt::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 100%;
  height: 20%;
  box-sizing: border-box;
  border: 2px solid #333333;
  border-top: none;
  border-bottom-right-radius: 50px; /* 左下の角丸 */
  border-bottom-left-radius: 50px; /* 右下の角丸 */
  translate: -50%;
}
.aboutBlock .txt::after {
  content: "";
  position: absolute;
  top: calc(100% + 8px); /* フキダシのサイズに応じて調整してください */
  left: 50%;
  width: 30px;
  height: 2px;
  box-sizing: border-box;
  background-color: #333333;
  box-shadow: 0 2px 0 #ffffff, 0 -2px 0 #ffffff;
  rotate: -50deg;
  translate: -50%;
}
.aboutBlock .recommendBox {
  /*background-image: repeating-linear-gradient(325deg, #e8e8e8, #e8e8e8 2px, transparent 2px, transparent 10px);*/
  background-color: #f9f9f9;
  background-image: linear-gradient(0deg, transparent 19px, #ccc 20px), linear-gradient(90deg, transparent 19px, #ccc 20px);
  background-size: 20px 20px;
  margin-top: 10rem;
}
.aboutBlock .recommendBox ._inner {
  margin: auto;
  max-width: 65rem;
  padding: 3rem 0;
  position: relative;
}
.aboutBlock .recommendBox ._txt {
  background: #fff;
  box-shadow: .5rem .5rem 0 0 rgba(0, 0, 0, 0.1);
  margin-left: 30rem;
  max-width: max-content;
  min-width: 29rem;
  padding: 1.5rem 1.5rem 0 0;
}
.aboutBlock .recommendBox ._txt h3 {
  background: var(--co-dh);
  color: #fff;
  font-size: 1.1em;
  letter-spacing: .1em;
  height: 4rem;
  line-height: 4rem;
  margin: 0;
  position: relative;
}
.technician .aboutBlock .recommendBox ._txt h3 {
  background: var(--co-dt);
}
.aboutBlock .recommendBox ._txt h3::before {
  margin: 0;
  position: absolute;
  left: auto;
  top: -5px;
  right: 0;
  width: 0px;
  height: 0px;
  border-width: 25px 15px 25px 0px;
  border-color: transparent #fff;
  border-style: solid;
  background: none;
}
.aboutBlock .recommendBox ._txt ul {
  list-style: none;
  padding: 1.5rem;
}
.aboutBlock .recommendBox ._txt ul li {
  background: url("../hygienist/images/checkbox.svg") no-repeat center left/2rem;
  padding-left: 2.5rem;
}
.technician .aboutBlock .recommendBox ._txt ul li {
  background-image: url("../technician/images/checkbox.svg");
}
.aboutBlock .recommendBox figure {
  position: absolute;
  left: 0;
  bottom: 0;
  order: -1;
  width: 25rem;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .aboutBlock .recommendBox figure {
    position: absolute;
    left: 0;
    bottom: 0;
    order: -1;
    width: 18rem;
    height: 35rem;
  }
  .aboutBlock .recommendBox figure img {
    object-fit: cover;
    height: 100%;
  }
  .aboutBlock .recommendBox ._txt {
    margin-left: auto;
    margin-right: 2rem;
    min-width: 25rem;
    z-index: 1;
    position: relative;
  }
}
/*---------------------------------
  動画
---------------------------------*/
.movieBox {
  aspect-ratio: 16 / 5;
  border: 2px solid #333;
  box-shadow: 1rem 1rem 0 0 rgba(60, 160, 200, 0.5);
  margin: 0 auto 10rem;
  padding: 1rem;
}
#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 #yt_player {
  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 #yt_player {
  z-index: -2;
}
.hygienist .movieBox {
  box-shadow: 1rem 1rem 0 0 rgba(240, 105, 140, 0.5);
}
.hygienist #movie a::before {
  border-color: transparent transparent transparent var(--co-dh);
}
.hygienist #movie a .overlay {
  background: rgba(219, 169, 182, 0.50);
  z-index: -1;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .movieBox {
    aspect-ratio: 9 / 5;
    margin-bottom: 5rem;
  }
  #movie a::before {
    border-width: 15px 0 15px 30px;
  }
  #movie a::after {
    width: 100px;
    height: 100px;
  }
}
/*---------------------------------
  役割とフィールド
---------------------------------*/
.fieldBlock {
  padding: 10rem 0;
}
.fieldBlock .title {
  margin: 0 auto 5rem;
  padding: 0;
  position: relative;
  text-align: center;
}
.fieldBlock .title::after {
  content: '';
  opacity: .5;
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.fieldBlock .title h2 {
  border: 1px solid var(--co-dh);
  padding: 2rem;
  margin: 0;
}
.technician .fieldBlock .title h2 {
  border: 1px solid var(--co-dt);
}
.fieldBlock .wrap .fieldList {
  display: flex;
  justify-content: space-between;
}
.fieldBlock .wrap .fieldList ._box {
  flex-basis: calc(100%/3 - 2rem);
}
.technician .fieldBlock .wrap .fieldList ._box {
  flex-basis: calc(100%/4 - 2rem);
}
.fieldBlock .wrap .fieldList ._box figure {}
.fieldBlock .wrap .fieldList ._box .txt {}
.fieldBlock .wrap .fieldList ._box.fadeIn.is-show:nth-child(1) {}
.fieldBlock .wrap .fieldList ._box.fadeIn.is-show:nth-child(2) {
  transition-delay: .8s;
}
.fieldBlock .wrap .fieldList ._box.fadeIn.is-show:nth-child(3) {
  transition-delay: 1.1s;
}
.fieldBlock .wrap .fieldList ._box.fadeIn.is-show:nth-child(4) {
  transition-delay: 1.4s;
}
.fieldBlock .wrap .c_btn {
  margin: 5rem auto 0;
  max-width: fit-content;
  width: 90%;
}
.fieldBlock .wrap .c_btn a {
  color: #333;
  display: block;
  height: 100%;
  position: relative;
}
.fieldBlock .wrap .c_btn a::after {
  background: rgba(248, 182, 45, 0.5);
  border: 1px solid;
  border-radius: 5rem;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fieldBlock .wrap .c_btn a span {
  background: #fff url("../images/arr_b.svg") no-repeat center right 2rem / 2rem;
  border: 1px solid;
  border-radius: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 2.5rem;
  padding-right: 6rem;
  position: relative;
  transform: translate(-.5rem, -.5rem);
  z-index: 1;
}
.fieldBlock .wrap .c_btn a:hover {}
.fieldBlock .wrap .c_btn a:hover span {
  transform: translate(0, 0);
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .fieldBlock {
    padding: 4rem 0;
  }
  .fieldBlock .wrap .fieldList {
    display: block;
  }
  .fieldBlock .wrap .fieldList ._box + ._box {
    margin-top: 2rem;
  }
  .fieldBlock .wrap .fieldList ._box .txt h3 {
    margin: 1rem 0;
  }
}
/*---------------------------------

  2カラム

---------------------------------*/
#contentBlock {
  border-top: 1px solid #ccc;
  padding-top: 10rem;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  #contentBlock {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 480px) {
  #contentBlock {
    padding-top: 0;
  }
}
/*---------------------------------

  教育方針

---------------------------------*/
.policyBlock {}
.policyBlock .wrap {}
.policyBlock .wrap ._inner {
  display: flex;
  justify-content: space-between;
}
.policyBlock .wrap ._inner ._box {
  flex-basis: 48%;
}
.policyBlock .wrap .txt h3 {
  color: var(--co-dh);
  padding-left: 0;
}
.policyBlock .wrap .txt h3 p {
  font-family: "Playwrite DE LA", cursive;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.2em;
  display: inline-block;
  font-weight: 600;
  line-height: 0;
  margin-right: 1rem;
}
.policyBlock .wrap .txt h3 span {
  color: #666;
  display: block;
  font-size: .6em;
}
.policyBlock .wrap .txt h3::before {
  content: none;
}
.policyBlock .wrap .txt p {
  margin: 0 0 3rem;
}
.policyBlock .wrap .txt ul {
  background: #f3f3f3;
  list-style: none;
  padding: 2rem 4rem;
}
.policyBlock .wrap .txt ul li {
  line-height: 1.6;
  margin: 1rem 0;
  position: relative;
  padding-left: 1.5em;
}
.policyBlock .wrap .txt ul li::before {
  background: var(--co-dh);
  top: .4em;
  width: 1em;
  height: 1em;
}
.technician .policyBlock .wrap .txt h3, .technician .policyBlock .wrap .title {
  color: var(--co-dt);
}
.technician .policyBlock .wrap .txt ul li::before {
  background: var(--co-dt);
}
@media screen and (max-width: 1024px) {
  .policyBlock .wrap ._inner {
    display: block;
  }
  .policyBlock .wrap ._inner ._box + ._box {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .policyBlock .wrap .txt ul {
    padding: 1rem 2rem;
  }
}
/*---------------------------------

  教育プログラム

---------------------------------*/
.programBlock {}
.programBlock .wrap {}
.programBlock .wrap ._inner {
  display: flex;
  align-items: center;
  max-width: 100rem;
  margin-top: 4rem;
  padding-bottom: 5rem;
  position: relative;
}
.programBlock .wrap ._inner::after {
  background: #fce5e8;
  border-radius: 3rem;
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 80%;
  height: 90%;
  z-index: -1;
}
.technician .programBlock .wrap ._inner::after {
  background: #d4ecf3;
}
.programBlock .wrap ._inner figure {
  flex-basis: 50%;
  position: relative;
}
.programBlock .wrap ._inner figure img {
  background: #fff;
  border: 1px solid #eee;
  padding: .8rem;
}
.programBlock .wrap ._inner figure img:nth-child(1) {
  transform: rotate(-3deg);
}
.programBlock .wrap ._inner figure img:nth-child(2) {
  position: absolute;
  bottom: -7rem;
  right: -2rem;
  padding: .5rem;
  transform: rotate(5deg);
  width: 50%;
}
.programBlock .wrap ._inner ul {
  list-style: none;
  margin-left: 5%;
}
.programBlock .wrap ._inner ul li {
  font-size: 1.2em;
  margin: 1rem 0 0;
  padding-left: 3rem;
  position: relative;
}
.programBlock .wrap ._inner ul li::before {
  background: #333;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1.5rem;
  height: 1px;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  .programBlock .wrap ._inner ul li {
    font-size: 1em;
  }
}
@media screen and (max-width: 480px) {
  .programBlock .wrap ._inner {
    display: block;
  }
  .programBlock .wrap ._inner figure img:nth-child(2) {
    right: -1rem;
  }
  .programBlock .wrap ._inner ul {
    margin-top: 8rem;
  }
  .programBlock .wrap ._inner::after {
    left: 0;
    width: 90%;
    height: 45%;
  }
}
/*---------------------------------

  学習環境

---------------------------------*/
.environBlock {
  position: relative;
}
.environBlock::after {
  background: #fce5e8;
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(100% + 25vw);
  height: 100%;
  z-index: -1;
}
.technician .environBlock::after {
  background: #d4ecf3;
}
.environBlock .wrap {}
.environBlock .wrap ._inner {
  display: flex;
  justify-content: space-between;
}
.environBlock .wrap ._inner .txt {
  flex-basis: 45%;
}
.environBlock .wrap ._inner .txt h3 {
  margin-top: 0;
}
.environBlock .wrap ._inner figure {
  flex-basis: 50%;
  display: flex;
  justify-content: space-between;
}
.environBlock .wrap ._inner figure img {
  width: 49%;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .environBlock .wrap ._inner {
    display: block;
  }
  .environBlock .wrap ._inner figure {
    margin-top: 2rem;
  }
}
/*---------------------------------

  講義・実習／シラバス

---------------------------------*/
.syllabusBlock {}
.syllabusBlock .wrap {}
.syllabusBlock .wrap.__about > div {
  margin: 5rem auto;
}
.syllabusBlock .wrap.__about h4 {
  display: block;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .syllabusBlock .wrap.__about > div {
    margin: 3rem auto;
  }
}
/*---------------------------------
  実習
---------------------------------*/
.syllabusBlock .wrap.__about ._training ._inner {
  display: flex;
  justify-content: space-between;
}
.syllabusBlock .wrap.__about ._training ._box {
  flex-basis: calc(100%/3 - 2rem);
}
.syllabusBlock .wrap.__about ._training ._box figure {}
.syllabusBlock .wrap.__about ._training ._box .txt {}
.syllabusBlock .wrap.__about ._training ._box .txt dt {
  color: var(--co-dh);
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.3;
  margin: .8rem 0;
}
.syllabusBlock .wrap.__about ._training ._box .txt dd {
  line-height: 1.4;
}
.technician .syllabusBlock .wrap.__about ._training ._box .txt dt {
  color: var(--co-dt);
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  .syllabusBlock .wrap.__about ._training ._inner {
    display: block;
  }
  .syllabusBlock .wrap.__about ._training ._box {
    display: flex;
  }
  .syllabusBlock .wrap.__about ._training ._box + ._box {
    margin-top: 2rem;
  }
  .syllabusBlock .wrap.__about ._training ._box figure {
    flex: 0 0 25rem;
  }
  .syllabusBlock .wrap.__about ._training ._box .txt {
    margin-left: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .syllabusBlock .wrap.__about ._training ._box {
    display: block;
  }
  .syllabusBlock .wrap.__about ._training ._box .txt {
    margin: 1rem 0 0;
  }
}
/*---------------------------------
  時間割
---------------------------------*/
.syllabusBlock .wrap.__about ._timetable {}
.syllabusBlock .wrap.__about ._timetable table {
  text-align: center;
  width: 100%;
}
.syllabusBlock .wrap.__about ._timetable th, .syllabusBlock .wrap.__about ._timetable td {
  padding: 3rem 2rem;
  vertical-align: middle;
}
.syllabusBlock .wrap.__about ._timetable th:not(:nth-child(1)), .syllabusBlock .wrap.__about ._timetable td {
  width: calc(100%/5);
}
.syllabusBlock .wrap.__about ._timetable tr:nth-child(1) th {
  border-bottom: 3px solid;
  padding: .5rem 2rem;
}
.syllabusBlock .wrap.__about ._timetable tr:not(:nth-child(1)) th:nth-child(1) {
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-right: 3px solid;
  padding: 1rem;
}
.syllabusBlock .wrap.__about ._timetable th:nth-child(1) span {
  display: block;
  font-size: .7em;
}
.syllabusBlock .wrap.__about ._timetable td {
  border-top: 1px solid;
  border-bottom: 1px solid;
}
.syllabusBlock .wrap.__about ._timetable td:not(:last-child) {
  border-right: 1px solid;
}
.syllabusBlock .wrap.__about ._timetable td._tr {
  background: #FCF4C1;
}
.syllabusBlock .wrap.__about ._timetable .txt {
  text-align: right;
}
.syllabusBlock .wrap.__about ._timetable .txt p {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.syllabusBlock .wrap.__about ._timetable .txt p span._tr {
  background: #FCF4C1;
  border: 1px solid;
  display: inline-block;
  margin-right: .5em;
  width: 2rem;
  height: 1em;
}
.technician .syllabusBlock .wrap.__about ._timetable tr:nth-child(3) td, .technician .syllabusBlock .wrap.__about ._timetable tr:nth-child(5) td {
  border-right: 1px solid;
}
@media screen and (max-width: 1024px) {
  .syllabusBlock .wrap.__about ._timetable th, .syllabusBlock .wrap.__about ._timetable td {
    padding: 1rem;
  }
}
@media screen and (max-width: 896px) {
  .syllabusBlock .wrap.__about ._timetable td {
    font-size: .9em;
  }
}
@media screen and (max-width: 480px) {
  .syllabusBlock .wrap.__about ._timetable .priceTable {
    overflow-x: scroll;
    width: 100%;
  }
  .syllabusBlock .wrap.__about ._timetable table {
    width: 70rem;
  }
  .syllabusBlock .wrap.__about ._timetable tr:not(:nth-child(1)) th:nth-child(1) {
    padding: 0.5rem;
  }
  .syllabusBlock .wrap.__about ._timetable th:nth-child(1) span {
    font-size: 0.9em;
  }
  .syllabusBlock .wrap.__about ._timetable th, .syllabusBlock .wrap.__about ._timetable td {
    font-size: 0.9em;
    padding: 0.5rem;
  }
}
/*---------------------------------
  講義・実習
---------------------------------*/
.syllabusBlock .wrap.__curriculum {}
.syllabusBlock .wrap.__curriculum ._3yearsFlow {}
.syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner {
  display: flex;
  justify-content: space-between;
}
.syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner .__in_cur {
  display: flex;
  flex: 0 0 30%;
}
.syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner .__in_cur .scyear_ttl {
  color: #fff;
  display: flex;
  align-items: center;
  flex: 0 0 5rem;
  padding: 3rem 1rem;
  position: relative;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner .__in_cur .scyear_ttl::after {
  background: var(--co-dh);
  clip-path: polygon(0 0, 100% 0%, 100% 95%, 50% 100%, 0 95%);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.technician .syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner .__in_cur .scyear_ttl::after {
  background: var(--co-dt);
}
.syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner .__in_cur dl {
  padding: 0 3rem;
}
.syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner .__in_cur dl dt {
  background: #fce5e8;
  color: var(--co-dh);
  display: inline-block;
  font-size: .8em;
  font-weight: 600;
  padding: .3rem 1.5rem;
}
.syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner .__in_cur dl dd {
  margin: 1rem 0 3rem;
}
.syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner .__in_cur dl dd ul {
  list-style: none;
}
.syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner .__in_cur dl dd ul li {}
.syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner .__in_cur dl dd.event ul li {
  background: #eee;
  font-size: 1.1em;
  font-weight: 600;
  padding: 1rem 1.5rem;
  margin: .5rem 0;
}
.syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner .__curImg {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex: 0 0 70%;
}
.syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner .__curImg figure {
  flex-basis: 50%;
  padding: 1rem;
}
.syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner .__curImg figure figcaption {
  color: var(--co-dh);
  font-size: 1.1em;
  font-weight: 600;
}
.syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner .__curImg figure.w100 {
  flex-basis: 100%;
}
.syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner .__curImg figure.w100 img {
  aspect-ratio: 16/6;
  object-fit: cover;
}
.syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner ._23year {
  display: grid;
  flex: 0 0 30%;
}
.syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner ._23year .__in_cur {}
.syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner ._23curImg {
  flex: 0 0 70%;
}
.syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner ._23curImg .__curImg {
  background: #fce5e8;
  padding: 1rem;
}
.syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner ._23curImg .__curImg p:not(._note) {
  color: var(--co-dh);
  font-size: 1.1em;
  font-weight: 600;
  flex-basis: 100%;
  text-align: center;
}
.syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner ._23curImg .__curImg p._note {
  color: #666;
  flex-basis: 100%;
  text-align: center;
}
.syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner ._23curImg .__curImg figure figcaption {
  color: #666 !important;
  font-size: 0.9em;
  font-weight: 500;
}
.syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner ._23curImg .__curImg + .__curImg {
  margin-top: 1rem;
}
.syllabusBlock .wrap.__curriculum ._3yearsFlow ._graduation, .syllabusBlock .wrap.__curriculum ._3yearsFlow ._success {
  font-size: 1.2em;
  font-weight: 600;
  letter-spacing: .2em;
  padding: 1rem;
  text-align: center;
}
.syllabusBlock .wrap.__curriculum ._3yearsFlow ._event {
  display: none;
}
.syllabusBlock .wrap.__curriculum ._3yearsFlow ._graduation {
  border: 2px solid var(--co-dh);
  color: var(--co-dh);
  margin: 1rem auto;
}
.syllabusBlock .wrap.__curriculum ._3yearsFlow ._success {
  background: var(--co-dh);
  color: #fff;
}
.technician .syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner .__in_cur dl dt {
  background: #d4ecf3;
  color: var(--co-dt);
}
.technician .syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner .__curImg figure figcaption {
  color: var(--co-dt);
}
.technician .syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner ._23curImg .__curImg {
  background: #d4ecf3;
}
.technician .syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner ._23curImg .__curImg p {
  color: var(--co-dt);
}
.technician .syllabusBlock .wrap.__curriculum ._3yearsFlow ._graduation {
  border: 2px solid var(--co-dt);
  color: var(--co-dt);
}
.technician .syllabusBlock .wrap.__curriculum ._3yearsFlow ._success {
  background: var(--co-dt);
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  .syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner .__in_cur dl {
    padding: 0 2rem;
  }
  .syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner .__in_cur dl dd ul li {
    font-size: .9em;
  }
  .syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner .__in_cur dl dd.event {
    display: none;
  }
  .syllabusBlock .wrap.__curriculum ._3yearsFlow ._event {
    display: block;
  }
  .syllabusBlock .wrap.__curriculum ._3yearsFlow ._event ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin: 1.5rem 0 .5rem;
  }
  .syllabusBlock .wrap.__curriculum ._3yearsFlow ._event ul li {
    background: #eee;
    font-size: 1em;
    font-weight: 600;
    flex-basis: calc(100%/4 - 1rem);
    line-height: 1.3;
    padding: 1rem;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner .__in_cur {
    flex: 1 0 30%;
  }
  .syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner .__in_cur .scyear_ttl {
    flex: 0 0 2rem;
    font-size: .8em;
    padding: 1rem 0
  }
  .syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner .__in_cur dl {
    padding: 0 .8rem;
  }
  .syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner .__in_cur dl dd ul li {
    font-size: 0.8em;
  }
  .syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner .__curImg {
    flex: 0 0 66%;
  }
  .syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner .__curImg figure {
    padding: 0.4rem;
  }
  .syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner .__curImg figure figcaption {
    font-size: 0.8em;
  }
  .syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner ._23curImg {
    flex: 0 0 66%;
  }
  .syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner ._23curImg .__curImg {
    padding: 0.5rem;
  }
  .syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner ._23curImg .__curImg figure figcaption {
    font-size: 0.8em;
  }
  .syllabusBlock .wrap.__curriculum ._3yearsFlow ._inner ._23curImg .__curImg p._note {
    font-size: 0.8em;
  }
  .syllabusBlock .wrap.__curriculum ._3yearsFlow ._event ul li {
    font-size: 0.8em;
    flex-basis: calc(100% / 4 - 0.3rem);
    padding: 0.5rem;
  }
}
/*---------------------------------
  dh:超高齢社会への対応　dt:CAD・CAMシステム
---------------------------------*/
.syllabusBlock .wrap.__curriculum ._aging {
  max-width: 100rem;
  margin: 5rem auto;
  position: relative;
}
.syllabusBlock .wrap.__curriculum ._aging::after {
  background: #fce5e8;
  border-radius: 3rem;
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 80%;
  height: 100%;
  z-index: -1;
}
.syllabusBlock .wrap.__curriculum ._aging ._inner {
  display: flex;
  align-items: center;
}
.syllabusBlock .wrap.__curriculum ._aging ._inner figure {
  background: #fff;
  border: 1px solid #eee;
  flex-basis: 40%;
  padding: .8rem;
}
.syllabusBlock .wrap.__curriculum ._aging ._inner .txt {
  flex-basis: 60%;
  padding: 5rem;
}
.syllabusBlock .wrap.__curriculum ._aging ._inner .txt h3 {
  margin-top: 0;
}
.syllabusBlock .wrap.__curriculum ._aging ._inner .txt p span {
  background: linear-gradient(transparent 50%, #f7e27b 50%);
  color: var(--co-dh);
  font-size: 1.2em;
  font-weight: 600;
}
.technician .syllabusBlock .wrap.__curriculum ._aging::after {
  background: #d4ecf3;
}
.technician .syllabusBlock .wrap.__curriculum ._aging ._inner figure {
  display: flex;
  flex-basis: 60%;
}
.technician .syllabusBlock .wrap.__curriculum ._aging ._inner figure img {
  width: 50%;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  .syllabusBlock .wrap.__curriculum ._aging ._inner .txt {
    padding: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .syllabusBlock .wrap.__curriculum ._aging ._inner {
    display: block;
  }
  .syllabusBlock .wrap.__curriculum ._aging::after {
    width: 100%;
  }
}
/*---------------------------------
  シラバス
---------------------------------*/
.syllabusBlock .wrap ._syllabusBox {
  background-color: #f9f9f9;
  background-image: linear-gradient(0deg, transparent 19px, #ccc 20px), linear-gradient(90deg, transparent 19px, #ccc 20px);
  background-size: 20px 20px;
  margin-top: 5rem;
  padding: 5rem;
}
.syllabusBlock .wrap ._syllabusBox h3 {
  margin-top: 0;
}
.syllabusBlock .wrap ._syllabusBox ul {
  list-style: none;
}
.syllabusBlock .wrap ._syllabusBox ul li {
  margin-top: 1rem;
}
.syllabusBlock .wrap ._syllabusBox ul li a {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: .5rem;
  color: #333;
  display: block;
  padding: 1rem;
  padding-left: 6rem;
  position: relative;
}
.syllabusBlock .wrap ._syllabusBox ul li a::before {
  background: url("../images/arr_dh.svg") no-repeat center/1rem;
  border: 1px solid var(--co-dh);
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 2rem;
  bottom: 0;
  width: 2rem;
  height: 2rem;
}
.syllabusBlock .wrap ._syllabusBox ul li a:hover {
  background: #f3f3f3;
  color: var(--co-dh);
}
.syllabusBlock .wrap ._syllabusBox ul li a:hover::before {
  background-color: var(--co-dh);
  background-image: url("../images/arr_w.svg") !important;
}
.technician .syllabusBlock .wrap ._syllabusBox ul li a::before {
  background: url("../images/arr_dt.svg") no-repeat center/1rem;
  border: 1px solid var(--co-dt);
}
.technician .syllabusBlock .wrap ._syllabusBox ul li a:hover {
  color: var(--co-dt);
}
.technician .syllabusBlock .wrap ._syllabusBox ul li a:hover::before {
  background-color: var(--co-dt);
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {}
/*---------------------------------

  国試対策サポート

---------------------------------*/
.supportBlock {
  position: relative;
}
.supportBlock::after {
  background: #f7f8f8;
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(100% + 25vw);
  height: 100%;
  z-index: -1;
}
.technician .supportBlock::after {
  background: #f7f8f8;
}
.supportBlock .wrap {}
.supportBlock .wrap ._inner {
  display: flex;
  justify-content: space-between;
}
.supportBlock .wrap ._inner .txt {
  flex-basis: 50%;
}
.supportBlock .wrap ._inner .txt h3 {
  margin-top: 0;
}
.supportBlock .wrap ._inner figure {
  flex-basis: 45%;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  .supportBlock .wrap ._inner {
    display: block;
  }
  .supportBlock .wrap ._inner figure {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 480px) {}
/*---------------------------------

  就職活動

---------------------------------*/
.jobHuntingBlock {}
.jobHuntingBlock .wrap {}
.jobHuntingBlock .wrap ._inner {
  display: flex;
  justify-content: space-between;
}
.jobHuntingBlock .wrap ._inner .txt {
  flex-basis: 50%;
}
.jobHuntingBlock .wrap ._inner .txt h3 {
  margin-top: 0;
}
.jobHuntingBlock .wrap ._inner .txt h3 span {
  display: inline-block;
}
.jobHuntingBlock .wrap ._inner .txt ._box {
  background: #FCF1E9;
  border: 2px solid #F0A472;
  margin-top: 2rem;
}
.technician .jobHuntingBlock .wrap ._inner .txt ._box {
  background: #F6FAF1;
  border: 2px solid #A6C068;
}
.jobHuntingBlock .wrap ._inner .txt ._box dt h4 {
  border-top-left-radius: 0;
}
.jobHuntingBlock .wrap ._inner .txt ._box dd {
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.4;
  padding: .5rem 2rem 1rem;
}
.jobHuntingBlock .wrap ._inner .txt figure {
  background: #f3f3f3;
  max-width: 35rem;
  margin-top: 2rem;
}
.jobHuntingBlock .wrap ._inner figure {
  flex-basis: 45%;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  .jobHuntingBlock .wrap ._inner {
    display: block;
  }
  .jobHuntingBlock .wrap ._inner figure {
    max-width: 50rem;
    margin: 3rem auto;
  }
  .jobHuntingBlock .wrap ._inner .txt figure {
    max-width: 30rem;
    margin: 0;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .jobHuntingBlock .wrap ._inner .txt ._box dd {
    font-size: 1em;
  }
  .jobHuntingBlock .wrap ._inner .txt figure {
    max-width: 25rem;
  }
}
/*---------------------------------
  就職活動の流れ
---------------------------------*/
.jobHuntingBlock .wrap ._flow {
  margin-top: 5rem;
}
.jobHuntingBlock .wrap ._flow h4 {
  display: block;
  margin: 0 0 2rem;
}
.jobHuntingBlock .wrap ._flow ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.jobHuntingBlock .wrap ._flow ul li {
  border: 1px solid #ccc;
  border-radius: .5rem;
  display: flex;
  align-items: center;
  margin-top: 1rem;
  padding: 1rem;
  position: relative;
}
.jobHuntingBlock .wrap ._flow ul li span {
  background: var(--co-dh);
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Playwrite DE LA", cursive;
  font-size: .6em;
  margin-right: .8em;
  width: 3rem;
  height: 3rem;
}
.technician .jobHuntingBlock .wrap ._flow ul li span {
  background: var(--co-dt);
}
@media screen and (max-width: 1024px) {}
@media screen and (min-width: 897px) {
  .jobHuntingBlock .wrap ._flow ul li {
    flex-basis: calc(100%/5 - 1rem);
  }
  .jobHuntingBlock .wrap ._flow ul li:not(:nth-child(5n)) {
    margin-right: 1.2rem;
  }
  .jobHuntingBlock .wrap ._flow ul li:not(:nth-child(5n)):not(:last-child)::after {
    background: #ccc;
    content: '';
    margin: auto;
    position: absolute;
    top: 0;
    right: -1.3rem;
    bottom: 0;
    width: 1.3rem;
    height: .2rem;
  }
}
@media screen and (max-width: 896px) and (min-width: 481px) {
  .jobHuntingBlock .wrap ._flow ul li {
    flex-basis: calc(100%/3 - 1rem);
  }
  .jobHuntingBlock .wrap ._flow ul li:not(:nth-child(3n)) {
    margin-right: 1.2rem;
  }
  .jobHuntingBlock .wrap ._flow ul li:not(:nth-child(3n)):not(:last-child)::after {
    background: #ccc;
    content: '';
    margin: auto;
    position: absolute;
    top: 0;
    right: -1.3rem;
    bottom: 0;
    width: 1.3rem;
    height: .2rem;
  }
}
@media screen and (max-width: 480px) {
  .jobHuntingBlock .wrap ._flow ul li {
    flex-basis: calc(100%/2 - 1rem);
  }
  .jobHuntingBlock .wrap ._flow ul li:not(:nth-child(2n)) {
    margin-right: 1.2rem;
  }
  .jobHuntingBlock .wrap ._flow ul li:not(:nth-child(2n)):not(:last-child)::after {
    background: #ccc;
    content: '';
    margin: auto;
    position: absolute;
    top: 0;
    right: -1.3rem;
    bottom: 0;
    width: 1.3rem;
    height: .2rem;
  }
}
/*---------------------------------

  キャンパスライフ

---------------------------------*/
.campusLifeBlock {
  position: relative;
}
.campusLifeBlock::after {
  background: #FBF6EB;
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(100% + 25vw);
  height: 100%;
  z-index: -1;
}
.technician .campusLifeBlock::after {
  background: #EFF6E4;
}
.campusLifeBlock .wrap {}
.campusLifeBlock .wrap ._inner {
  display: flex;
  flex-wrap: wrap;
}
.campusLifeBlock .wrap ._inner figure {
  flex-basis: 20%;
}
.campusLifeBlock .wrap ._inner figure a {
  display: block;
}
.campusLifeBlock .wrap ._inner figure img {
  aspect-ratio: 1/1;
  object-fit: cover;
  height: 100%;
  padding: 1px;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .campusLifeBlock .wrap ._inner figure {
    flex-basis: 33.333%;
  }
}
/*---------------------------------
  詳細(モーダル)
---------------------------------*/
body.no-scroll {
  overflow: hidden;
  padding-right: 18px;
}
body.no-scroll header {
  width: calc(100% - 18px);
}
body.no-scroll #page-top {
  right: 38px;
}
#modal__wrapper .modal_box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  padding: 10rem 0 10rem;
  pointer-events: none;
  overflow-y: scroll;
}
#modal__wrapper .__close {
  border-bottom-left-radius: 1rem;
  color: #fff;
  cursor: pointer;
  padding: 3rem;
  pointer-events: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99998;
}
#modal__wrapper .__close span {
  background: #fff;
  display: block;
  width: 5rem;
  height: 1px;
}
#modal__wrapper .__close span:nth-child(1) {
  transform: rotate(45deg);
}
#modal__wrapper .__close span:nth-child(2) {
  transform: rotate(135deg);
}
#modal__wrapper .modal_bg {
  background-color: rgba(0, 0, 0, 0.50);
  -webkit-backdrop-filter: blur(10px); /* ぼかしエフェクト */
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99997;
  display: none;
  width: 100%;
  height: 120%;
}
#modal__wrapper .md-content {
  background: #fff;
  width: 90%;
  max-width: 75rem;
  margin: auto;
  position: relative;
  padding: 0 !important;
  pointer-events: auto;
}
#modal__wrapper .md-content .content {}
#modal__wrapper .md-content .content h3 {
  padding: 2rem;
  margin: 0;
}
#modal__wrapper .md-content .content h3::before {
  content: none;
}
#modal__wrapper .md-content .content figure {
  margin: 0;
}
#modal__wrapper .md-content .content figure img {
  object-fit: cover;
}
#modal__wrapper .md-content .content .txtBox {
  display: flex;
  justify-content: space-between;
  margin: auto;
  padding: 3rem;
}
#modal__wrapper .md-content .content .txtBox .txt {
  font-size: .8em;
  font-weight: 600;
  letter-spacing: .1em;
  margin-right: 3rem;
}
#modal__wrapper .md-content .content .txtBox .newiine_btn {
  border: none;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
}
#modal__wrapper .md-content .content .txtBox .newiine_btn:hover {
  background: none;
  opacity: .6;
}
#modal__wrapper .md-content .content .txtBox .newiine_btn.newiine_clicked {
  color: #ed5d78;
  background: transparent;
}
/* 前後のモーダルリンク */
#modal__wrapper .md-content .link_area {}
#modal__wrapper .md-content .link_area .modal_link {
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 5rem;
  width: 5rem;
  z-index: 1;
}
#modal__wrapper .md-content .link_area .modal_link a {
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  padding: 0;
  width: 100%;
  height: 100%;
}
#modal__wrapper .md-content .link_area .modal_link.prev {
  left: -5rem;
}
#modal__wrapper .md-content .link_area .modal_link.prev a {
  background-image: url("../images/sl_arr_prev.svg");
  background-position: center;
}
#modal__wrapper .md-content .link_area .modal_link.next {
  text-align: right;
  right: -5rem;
}
#modal__wrapper .md-content .link_area .modal_link.next a {
  background-image: url("../images/sl_arr_next.svg");
  background-position: center;
}
@media screen and (max-width: 1024px) {
  #modal__wrapper .md-content {
    overflow: scroll;
    height: fit-content;
  }
}
@media screen and (max-width: 896px) {
  #modal__wrapper .md-content .content {
    display: block;
  }
  #modal__wrapper .md-content .content figure {
    height: auto;
    position: inherit;
    top: 0;
  }
  #modal__wrapper .md-content .content .txtBox {}
}
@media screen and (max-width: 480px) {
  body.no-scroll {
    padding-right: 0;
  }
  body.no-scroll header {
    width: calc(100% - 0);
  }
  body.no-scroll #page-top {
    right: 2rem;
  }
  #modal__wrapper .modal_box {
    padding-bottom: 3rem;
  }
  #modal__wrapper .md-content .content .txtBox {
    padding: 1.5rem;
    padding-bottom: 0;
  }
  #modal__wrapper .md-content .content .profile {
    margin-bottom: 2rem;
  }
  #modal__wrapper .md-content .content .timeSchedule {
    margin-top: 2rem;
    padding: 1rem 1rem 2rem;
  }
  #modal__wrapper .md-content .link_area {
    padding: 1rem;
  }
  #modal__wrapper .md-content .link_area .modal_link a {
    padding: 1rem;
  }
}
/*---------------------------------

  声

---------------------------------*/
.voiceBlock {
  background: #f3f3f3;
  margin: 2rem auto;
  width: calc(100% - 4rem);
}
.voiceBlock._graduation {
  background: #ebf6f5;
}
.voiceBlock .wrap {}
.voiceBlock .wrap h2 {
  border: 2px solid;
  font-size: 1.5em;
  font-weight: 600;
  letter-spacing: .2em;
  margin-bottom: 5rem;
  padding: 1rem 2rem;
  text-transform: uppercase;
}
.voiceBlock .wrap ._inner {
  display: flex;
  justify-content: space-between;
}
.voiceBlock .wrap ._inner + ._inner {
  margin-top: 5rem;
}
.voiceBlock .wrap ._inner + ._inner figure {
  order: 1;
}
.voiceBlock .wrap ._inner figure {
  flex-basis: 35%;
}
.voiceBlock .wrap ._inner .txt {
  flex-basis: 60%;
}
.voiceBlock .wrap ._inner .txt .plof {
  border-top: 2px solid;
  border-bottom: 2px solid;
  padding: 2rem;
}
.voiceBlock .wrap ._inner .txt .plof p {
  font-size: 1.1em;
  font-weight: 600;
}
.voiceBlock .wrap ._inner .txt .plof p {
  font-size: 1.2em;
  font-weight: 600;
}
.voiceBlock .wrap ._inner .txt .plof p span {
  font-size: .7em;
  margin: 0 .5rem;
}
.voiceBlock .wrap ._inner .txt .plof p + p {
  margin-top: 0;
}
.voiceBlock .wrap ._inner .txt dl {}
.voiceBlock .wrap ._inner .txt dl dt {
  color: var(--co-dh);
  font-weight: 600;
  margin: 1.5rem 0 .5rem;
}
.technician .voiceBlock .wrap ._inner .txt dl dt {
  color: var(--co-dt);
}
.voiceBlock .wrap ._inner .txt dl dd {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .voiceBlock .wrap ._inner {
    display: block;
  }
  .voiceBlock .wrap ._inner figure {
    max-width: 26rem;
    margin: 3rem auto;
  }
  .voiceBlock .wrap ._inner .txt .plof {
    padding: 1rem 1rem;
    text-align: center;
  }
  .voiceBlock .wrap ._inner .txt .plof p span {
    display: block;
  }
  .voiceBlock._graduation .wrap ._inner .txt .plof p span {
    display: inline-block;
  }
}
/*---------------------------------

  歯科衛生士 個別スタイル

---------------------------------*/
.hygienist #pageTitle:not(._sub)::after, .hygienist .colum2wrap #sideBer ._sticky {
  background: rgb(240, 105, 140);
  background: linear-gradient(45deg, rgba(255, 196, 157, 1.00) 0%, rgba(240, 105, 140, 1) 80%);
}
.hygienist #pageTitle .en {
  color: var(--co-dh);
}
.hygienist #pageTitle._sub {
  background: #F0E9EB;
}
.hygienist .colum2wrap #sideBer ._sticky ul li a:hover::after, .hygienist .colum2wrap #sideBer ._sticky ul li a.is-current::after {
  background-image: url("../images/arr_dh.svg");
}
.hygienist article section .title::after {
  background-image: linear-gradient(135deg, #f7c8ce 16.67%, #fff 16.67%, #fff 25%, #feecd2 25%, #feecd2 41.67%, #fff 41.67%, #fff 50%, #f7c8ce 50%, #f7c8ce 66.67%, #fff 66.67%, #fff 75%, #feecd2 75%, #feecd2 91.67%, #fff 91.67%, #fff 100%);
}
.hygienist article section h3::before {
  background: var(--co-dh);
}
.hygienist article section h4 {
  background: #F0A472;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {}
/*---------------------------------

  歯科技工士　個別スタイル

---------------------------------*/
.technician #pageTitle:not(._sub)::after, .technician .colum2wrap #sideBer ._sticky {
  background: rgb(60, 160, 200);
  background: linear-gradient(45deg, rgba(182, 201, 134, 1.00) 0%, rgba(60, 160, 200, 1) 80%);
}
.technician #pageTitle .en {
  color: var(--co-dt);
}
.technician #pageTitle._sub {
  background: #E9EDF0;
}
.technician .colum2wrap #sideBer ._sticky ul li a:hover::after, .technician .colum2wrap #sideBer ._sticky ul li a.is-current::after {
  background-image: url("../images/arr_dt.svg");
}
.technician article section .title::after {
  background-image: linear-gradient(135deg, #c7e4f3 16.67%, #fff 16.67%, #fff 25%, #e2eec5 25%, #e2eec5 41.67%, #fff 41.67%, #fff 50%, #c7e4f3 50%, #c7e4f3 66.67%, #fff 66.67%, #fff 75%, #e2eec5 75%, #e2eec5 91.67%, #fff 91.67%, #fff 100%);
}
.technician article section h3::before {
  background: var(--co-dt);
}
.technician article section h4 {
  background: #A6C068;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {}