@charset "UTF-8";
/*スマホ*/
.pcOn {
  display: block !important;
}
@media (max-width: 767px) {
  .pcOn {
    display: none !important;
  }
}

.spOn {
  display: none !important;
}
@media (max-width: 767px) {
  .spOn {
    display: block !important;
  }
}

img {
  width: 100%;
  height: 100%;
}

a {
  cursor: pointer;
  transition: 0.3s;
}

body {
  font-family: "Noto Sans Japanese", sans-serif;
}

.container {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  padding: 100px 0;
}
@media (max-width: 767px) {
  .container {
    padding: 50px 0;
  }
}
.container.sl-contaier {
  max-width: none;
  width: 100%;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
@media (max-width: 767px) {
  .flex {
    display: block;
  }
}

/* CSSコード */
header.header {
  height: 72px;
  display: flex;
  align-items: center;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
  z-index: 10;
}
@media (max-width: 767px) {
  header.header {
    height: 45px;
  }
}
header.header .headerinner {
  width: 100%;
  height: 100%;
  position: relative;
  padding-left: 60px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  header.header .headerinner {
    padding-left: 10px;
  }
}
header.header .headerinner .logo {
  max-width: 472px;
}
@media (max-width: 767px) {
  header.header .headerinner .logo {
    max-width: 200px;
  }
}
header.header .headerinner .logo a {
  transition: 0.3s;
}
header.header .headerinner .logo a:hover {
  opacity: 0.8;
}
header.header .headerinner .nav {
  /* チェックボックスを非表示にする */
  /* ハンバーガーアイコンの設置スペース */
}
header.header .headerinner .nav .drawer_hidden {
  display: none;
}
header.header .headerinner .nav .drawer_open {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100; /* 重なり順を一番上にする */
  cursor: pointer;
  height: 72px;
  width: 72px;
  background: #000;
}
@media (max-width: 767px) {
  header.header .headerinner .nav .drawer_open {
    height: 45px;
    width: 45px;
  }
}
header.header .headerinner .nav .drawer_open span {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #fff;
  transition: 0.5s;
  position: absolute;
}
header.header .headerinner .nav .drawer_open span:before {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #fff;
  transition: 0.5s;
  position: absolute;
  bottom: 8px;
}
header.header .headerinner .nav .drawer_open span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #fff;
  transition: 0.5s;
  position: absolute;
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  bottom: 100%;
  left: 0%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: rgb(110, 110, 110);
  transition: 0.5s;
  text-align: center;
  padding-top: 20px;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.nav_content::-webkit-scrollbar {
  display: none;
}

/* メニュー黒ポチを消す */
.nav_list {
  list-style: none;
}

.nav_item a {
  color: #fff;
  text-decoration: none;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  bottom: 0; /* メニューを画面に入れる */
}

/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0%;
  left: 100%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.5s;
  text-align: center;
  padding-top: 20px;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  left: 0;
}

.bnrLink {
  padding-top: 100px;
  background-color: #fff;
  /* container */
}
@media (max-width: 767px) {
  .bnrLink {
    width: 100%;
    padding: 50px 5% 0;
    margin: 0 auto;
  }
}
.bnrLink .container {
  padding: 20px 0;
  /* line */
}
@media (max-width: 767px) {
  .bnrLink .container {
    width: 100%;
    padding: 0;
  }
}
.bnrLink .container .line .lineContens {
  display: flex;
}
.bnrLink .container .line .lineContens .lineLeft {
  background-image: url(../image/common/line_bg_a.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 55%;
  padding: 45px;
  color: #fff;
  font-weight: bold;
}
@media (max-width: 767px) {
  .bnrLink .container .line .lineContens .lineLeft {
    padding: 15px;
    width: 65%;
  }
}
.bnrLink .container .line .lineContens .lineLeft h4 {
  max-width: 505px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .bnrLink .container .line .lineContens .lineLeft h4 {
    margin-bottom: 5px;
  }
}
.bnrLink .container .line .lineContens .lineLeft p {
  font-size: 13px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .bnrLink .container .line .lineContens .lineLeft p {
    font-size: 10px;
  }
}
@media (max-width: 767px) {
  .bnrLink .container .line .lineContens .lineLeft a.commonBtn {
    position: static;
    width: 100%;
    margin-top: 5px;
  }
}
.bnrLink .container .line .lineContens .lineRight {
  background-image: url(../image/common/line_bg_b.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 45%;
  position: relative;
}
.bnrLink .container .line .lineContens .lineRight a.commonBtn {
  transform: translate(-50%, 0);
  bottom: 23px;
  left: 50%;
  color: #000;
}
.bnrLink .container .digitalpamph {
  margin-top: 20px;
  transition: 0.3s;
}
.bnrLink .container .digitalpamph:hover {
  opacity: 0.8;
}
.bnrLink .openCampus {
  display: flex;
  height: 280px;
}
@media (max-width: 767px) {
  .bnrLink .openCampus {
    display: block;
    height: auto;
  }
}
.bnrLink .openCampus .oc {
  width: 50%;
  background: #DC0916;
  position: relative;
}
@media (max-width: 767px) {
  .bnrLink .openCampus .oc {
    width: 100%;
    height: auto;
  }
}
.bnrLink .openCampus .oc .ocContents {
  max-width: 500px;
  width: 90%;
  height: 100%;
  position: relative;
  margin-left: auto;
}
@media (max-width: 767px) {
  .bnrLink .openCampus .oc .ocContents {
    width: 97%;
    padding: 10px 0;
  }
}
.bnrLink .openCampus .oc .ocContents h4 {
  max-width: 300px;
  width: 60%;
  padding: 25px 0;
}
@media (max-width: 767px) {
  .bnrLink .openCampus .oc .ocContents h4 {
    max-width: 215px;
    width: 55%;
    padding: 0 0 10px;
  }
}
.bnrLink .openCampus .oc .ocContents a.commonBtn {
  bottom: 23px;
  left: 0;
}
@media (max-width: 767px) {
  .bnrLink .openCampus .oc .ocContents a.commonBtn {
    bottom: -15px;
    position: static;
  }
}
.bnrLink .openCampus .oc .ocContents .ocImg {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 240px;
  height: auto;
  z-index: 2;
}
@media (max-width: 767px) {
  .bnrLink .openCampus .oc .ocContents .ocImg {
    width: 45%;
    max-width: 160px;
  }
}
.bnrLink .openCampus .oc .ocContents .ocWa {
  width: 166px;
  height: 166px;
  position: absolute;
  right: 15px;
  top: 20px;
  z-index: 1;
  animation: 10s linear infinite rotation1;
}
@media (max-width: 767px) {
  .bnrLink .openCampus .oc .ocContents .ocWa {
    max-width: 113px;
    width: 30%;
    height: auto;
    right: 15px;
    top: 15px;
  }
}
.bnrLink .openCampus .weboc {
  width: 50%;
  position: relative;
  background-color: #0F6991;
}
@media (max-width: 767px) {
  .bnrLink .openCampus .weboc {
    width: 100%;
    height: auto;
    margin: 10px 0;
  }
}
.bnrLink .openCampus .weboc .webocContents {
  max-width: 500px;
  width: 90%;
  height: 100%;
  position: relative;
  margin-right: auto;
}
@media (max-width: 767px) {
  .bnrLink .openCampus .weboc .webocContents {
    width: 97%;
    padding: 10px 0;
  }
}
.bnrLink .openCampus .weboc .webocContents h4 {
  width: 184px;
  width: 40%;
  margin-left: auto;
  padding: 15px 0;
}
@media (max-width: 767px) {
  .bnrLink .openCampus .weboc .webocContents h4 {
    max-width: 177px;
    width: 55%;
  }
}
.bnrLink .openCampus .weboc .webocContents a.commonBtn {
  bottom: 23px;
  right: 0;
}
@media (max-width: 767px) {
  .bnrLink .openCampus .weboc .webocContents a.commonBtn {
    bottom: -15px;
    position: static;
    margin-left: auto;
  }
}
.bnrLink .openCampus .weboc .webocContents .webocImg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 243px;
  height: auto;
  z-index: 2;
}
@media (max-width: 767px) {
  .bnrLink .openCampus .weboc .webocContents .webocImg {
    width: 50%;
    max-width: 190px;
    left: 0;
  }
}
.bnrLink .openCampus .weboc .webocContents .webocWa {
  width: 166px;
  height: 166px;
  position: absolute;
  left: 15px;
  top: 20px;
  z-index: 1;
  animation: 10s linear infinite rotation1;
}
@media (max-width: 767px) {
  .bnrLink .openCampus .weboc .webocContents .webocWa {
    max-width: 113px;
    width: 30%;
    height: auto;
  }
}
@keyframes rotation1 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* bnrLink */
.sns {
  padding: 45px 0;
  text-align: center;
  background-color: #fff;
}
.sns .container {
  padding: 0;
}
.sns .container .snsList {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .sns .container .snsList {
    flex-wrap: wrap;
  }
}
.sns .container .snsList span {
  margin-right: 80px;
  position: relative;
  font-weight: bold;
  font-size: 15px;
  color: #000;
}
@media (max-width: 767px) {
  .sns .container .snsList span {
    display: block;
    width: 100%;
    margin: 0 auto 40px;
  }
}
.sns .container .snsList span:after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #707070;
  position: absolute;
  top: 50%;
  right: -75px;
  transform: translate(0, -50%);
}
@media (max-width: 767px) {
  .sns .container .snsList span:after {
    top: 35px;
    right: 33%;
    transform: translate(-50%, -50%);
  }
}
.sns .container .snsList a {
  padding: 0 10px;
}
.sns .container .snsList a img {
  width: 52px;
}
.sns .container .snsList a:hover {
  opacity: 0.8;
}

.commonBtn {
  background-color: #fff;
  max-width: 320px;
  width: 90%;
  display: block;
  text-align: center;
  font-weight: bold;
  border: solid 1px;
  position: absolute;
  transition: 0.5s;
  z-index: 5;
  color: #000;
}
@media (max-width: 767px) {
  .commonBtn {
    max-width: 215px;
    width: 55%;
  }
}
.commonBtn:hover {
  background-color: #000;
  color: #fff;
}
.commonBtn p {
  position: relative;
  padding: 15px;
  color: #000;
  font-size: 15px;
}
.commonBtn p:hover {
  color: #fff;
}
@media (max-width: 767px) {
  .commonBtn p {
    font-size: 12px;
  }
}
.commonBtn p:before {
  content: "";
  display: block;
  background: url(../image/common/btn_parts.svg);
  background-repeat: no-repeat;
  width: 64px;
  height: 3px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
@media (max-width: 767px) {
  .commonBtn p:before {
    background: url(../image/common/btn_parts_sp.svg);
    background-repeat: no-repeat;
    width: 45px;
  }
}
.commonBtn p:hover::before {
  background: url(../image/common/btn_parts_w.svg);
}

/*.commonBtn*/
footer {
  background-color: #000;
}
footer .container {
  padding: 40px 0 20px;
}
footer .container .contact {
  display: flex;
  justify-content: space-around;
  width: 85%;
  margin: 0 auto 20px;
}
@media (max-width: 767px) {
  footer .container .contact {
    display: block;
    width: 98%;
    font-size: 12px;
  }
}
footer .container .contact a {
  padding: 25px 0;
  border: solid 1px;
  width: 47%;
  text-align: center;
  color: #EBFD36;
  font-weight: bold;
  position: relative;
  transition: 0.5s;
}
@media (max-width: 767px) {
  footer .container .contact a {
    width: 100%;
    display: block;
    margin-bottom: 10px;
  }
}
footer .container .contact a:hover {
  background: #EBFD36;
  color: #000;
}
footer .container .contact a p {
  display: inline-block;
  position: relative;
  font-size: 15px;
  font-weight: bold;
}
footer .container .contact .tel:hover p::before {
  background: url(../image/common/icon_tel_b.svg);
}
footer .container .contact .tel p:before {
  content: "";
  display: block;
  background: url(../image/common/icon_tel.svg);
  background-repeat: no-repeat;
  width: 21px;
  height: 37px;
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translate(10px, -50%);
}
footer .container .contact .mail:hover p::before {
  background: url(../image/common/icon_mail_b.svg);
}
footer .container .contact .mail p:before {
  content: "";
  display: block;
  background: url(../image/common/icon_mail.svg);
  background-repeat: no-repeat;
  width: 36px;
  height: 21px;
  position: absolute;
  top: 50%;
  left: -55px;
  transform: translate(10px, -50%);
}
footer .container .info {
  color: #fff;
  font-size: 14px;
  text-align: center;
}
@media (max-width: 767px) {
  footer .container .info {
    font-size: 12px;
  }
}
footer .container .info .access {
  border-top: solid 1px #959595;
  border-bottom: solid 1px #959595;
  padding: 20px 0;
  margin: 20px 0;
}
footer .container .info .access p .tel-info {
  display: block;
  margin-top: 15px;
}
footer .container .info .access p .tel-info a:hover {
  text-decoration: none;
}
footer .container .info .access .g-map {
  margin: 20px 0;
}
footer .container .info .access ul {
  text-align: left;
  max-width: 350px;
  width: 50%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  footer .container .info .access ul {
    width: 90%;
  }
}
footer .container .info .access ul li {
  margin-bottom: 10px;
}
footer .container .info a {
  color: #fff;
  display: inline;
}
footer .container .info a:hover {
  text-decoration: underline;
}
footer .container .footerBnr {
  margin: 2em auto;
  max-width: 800px;
  width: 90%;
}
footer .container .footerBnr a {
  display: block;
}
footer .container .footerBnr a:hover {
  opacity: 0.8;
}
footer .container .footerBnr a.book-bnr {
  max-width: 220px;
  width: 50%;
  height: auto;
  margin: 20px auto 0;
}
footer .copy {
  background-color: #535353;
  color: #fff;
  font-size: 12px;
  padding: 10px 0;
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  footer .copy {
    font-size: 10px;
  }
}

#umenu {
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  height: 60px;
  z-index: 5;
}
#umenu ul {
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  font-size: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 100%;
}
#umenu ul li {
  width: 24%;
  border-right: solid 1px #373737;
}
#umenu ul li:last-child {
  border-right: none;
}
#umenu ul li a {
  text-align: center;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.5em;
  line-height: 1;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  #umenu ul li a {
    font-size: 1em;
  }
}
#umenu ul li a:hover {
  transform: scale(1.2);
}
#umenu ul li a.oc {
  color: #c0cf16;
}
#umenu ul li a.weboc {
  color: #1394ce;
}
#umenu ul li a.document {
  color: #dc0915;
}
#umenu ul li a.line {
  color: #4dc764;
}

/***********************

アコーディオン 

**********************/
/* リセットCSS */
* {
  list-style: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* アコーディオンメニュー全体のサイズ・位置 */
.ac {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media (max-width: 767px) {
  .ac {
    top: 50px;
    transform: translate(-50%, 0);
  }
}

.toppage {
  position: relative;
  height: 50px;
  border-bottom: 1px solid #393939;
  background-color: #000000;
  text-align: left;
  cursor: pointer;
  padding: 15px;
}
.toppage a {
  color: #fff;
  font-size: 14px;
  display: block;
  width: 100%;
}

/* クリック領域 */
.ac-parent {
  position: relative;
  height: 50px;
  border-bottom: 1px solid #393939;
  background-color: #000000;
  color: #fff;
  text-align: left;
  cursor: pointer;
  padding: 15px;
  font-size: 14px;
}
@media (max-width: 767px) {
  .ac-parent {
    padding: 15px;
    font-size: 14px;
    line-height: 1.5;
  }
}

/* 擬似要素で下三角形を作成 */
.ac-parent:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 45%;
  right: 30px;
  width: 10px;
  height: 10px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}

/* オープン時にopenクラスを付与 */
.ac-parent.open:after {
  transform: rotate(225deg);
}

/* クリックしたら表示される領域 */
.ac-child {
  display: none;
  padding: 10px;
  background-color: #ededed;
  text-align: left;
}
.ac-child ul li {
  font-size: 13px;
  padding: 10px 0;
  line-height: 1;
  font-weight: 500;
  color: #000;
}
@media (max-width: 767px) {
  .ac-child ul li {
    font-size: 14px;
    padding: 0;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  .ac-child ul li:first-child {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.ac-child ul li a:hover {
  color: red;
}
.ac-child ul li a.menu-child {
  display: block;
  line-height: 1;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .ac-child ul li + li {
    padding-bottom: 15px;
  }
}

.ocImageBtn {
  display: block;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 0;
  background-color: #000;
}

.ocImageBtn > img {
  transition: opacity 0.2s ease 0s;
}

.ocImageBtn:hover > img {
  opacity: 0.8;
}

.header_nav-Box {
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 0 50px;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translate(-50%, 0);
}
.header_nav-Box .oc-Box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .header_nav-Box .oc-Box {
    margin-bottom: 5vw;
  }
}
.header_nav-Box .oc-Box li {
  width: 31%;
}
@media (max-width: 767px) {
  .header_nav-Box .oc-Box li {
    width: 32%;
  }
}
.header_nav-Box .oc-Box li a {
  color: yellow;
  width: 100%;
  padding: 10px 5px;
  line-height: 20px;
  display: block;
  min-height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
@media (max-width: 767px) {
  .header_nav-Box .oc-Box li a {
    font-size: 2.6vw;
    min-height: 13vw;
    padding: 0px 1vw;
    line-height: 3.2vw;
  }
}
.header_nav-Box .oc-Box .list-a {
  border: solid 2px #d20000;
  background: rgba(57, 9, 9, 0.6509803922);
  transition: all 0.3s;
}
.header_nav-Box .oc-Box .list-a:hover {
  background: rgba(159, 30, 30, 0.6509803922);
}
.header_nav-Box .oc-Box .list-b {
  border: solid 2px #00b4ff;
  background: rgba(8, 47, 64, 0.6784313725);
  transition: all 0.3s;
}
.header_nav-Box .oc-Box .list-b:hover {
  background: rgba(35, 121, 158, 0.6784313725);
}
.header_nav-Box .oc-Box .list-c {
  border: solid 2px #27b207;
  background: rgba(33, 40, 31, 0.6784313725);
  transition: all 0.3s;
}
.header_nav-Box .oc-Box .list-c:hover {
  background: rgba(64, 143, 41, 0.6784313725);
}
.header_nav-Box .info-Box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 90%;
  margin: 15px auto 0;
}
@media (max-width: 767px) {
  .header_nav-Box .info-Box {
    width: 100%;
  }
}
.header_nav-Box .info-Box li {
  width: 50%;
  background: #f3efef;
  border: solid 1px;
  position: relative;
  transition: all 0.3s;
}
.header_nav-Box .info-Box li:hover {
  background: #cac5c5;
}
.header_nav-Box .info-Box li::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto;
}
@media (max-width: 767px) {
  .header_nav-Box .info-Box li::after {
    width: 4px;
    height: 4px;
    border-top: solid 1px #333;
    border-right: solid 1px #333;
    right: 10px;
  }
}
.header_nav-Box .info-Box li a {
  color: #000;
  width: 100%;
  padding: 15px 10px;
  line-height: 1.2;
  display: block;
  text-align: left;
  font-size: 14px;
}
@media (max-width: 767px) {
  .header_nav-Box .info-Box li a {
    font-size: 2.5vw;
  }
}
.header_nav-Box .course-Box {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .header_nav-Box .course-Box {
    margin-top: 5vw;
  }
}
.header_nav-Box .course-Box > p {
  color: #fff;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 2px;
}
.header_nav-Box .course-Box > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.header_nav-Box .course-Box > ul li {
  width: 50%;
  border: solid 2px #000;
  position: relative;
  border-radius: 5px;
  transition: all 0.3s;
}
.header_nav-Box .course-Box > ul li::before {
  content: "";
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto;
}
@media (max-width: 767px) {
  .header_nav-Box .course-Box > ul li::before {
    width: 15px;
    height: 15px;
    right: 5px;
  }
}
.header_nav-Box .course-Box > ul li::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto;
}
@media (max-width: 767px) {
  .header_nav-Box .course-Box > ul li::after {
    border-width: 3px 0 3px 5px;
    right: 9px;
  }
}
.header_nav-Box .course-Box > ul li:hover {
  opacity: 0.8;
}
.header_nav-Box .course-Box > ul li a {
  color: #fff;
  width: 100%;
  padding: 20px 5px;
  line-height: 1.2;
  display: block;
  font-size: 14px;
}
@media (max-width: 767px) {
  .header_nav-Box .course-Box > ul li a {
    padding: 3vw 2vw;
    font-size: 2.5vw;
    text-align: left;
  }
}
.header_nav-Box .course-Box > ul li a span {
  display: block;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .header_nav-Box .course-Box > ul li a span {
    font-size: 2.9vw;
  }
}
.header_nav-Box .course-Box > ul .list-a {
  background-color: #DC0919;
}
.header_nav-Box .course-Box > ul .list-b {
  background-color: #F6AB00;
}
.header_nav-Box .course-Box > ul .list-c {
  background-color: #e96eab;
}
.header_nav-Box .course-Box > ul .list-d {
  background-color: #02b2b3;
}
.header_nav-Box .course-Box > ul .list-e {
  background-color: #05A2EB;
}
.header_nav-Box .course-Box > ul .list-f {
  background-color: #9070AF;
}
.header_nav-Box .course-Box > ul .list-g {
  background-color: #F03C00;
}
.header_nav-Box .course-Box > ul .list-h {
  background-color: #009fb0;
}
.header_nav-Box .course-Box > ul .list-i {
  background-color: #3071b9;
}
.header_nav-Box .admission-Box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 80%;
  margin: 40px auto 0;
}
@media (max-width: 767px) {
  .header_nav-Box .admission-Box {
    margin: 5vw auto;
    width: 100%;
  }
}
.header_nav-Box .admission-Box li {
  width: 50%;
  background: #f3efef;
  border: solid 1px;
  position: relative;
  transition: all 0.3s;
}
.header_nav-Box .admission-Box li:hover {
  background: #cac5c5;
}
.header_nav-Box .admission-Box li::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto;
}
@media (max-width: 767px) {
  .header_nav-Box .admission-Box li::after {
    width: 4px;
    height: 4px;
    border-top: solid 1px #333;
    border-right: solid 1px #333;
    right: 10px;
  }
}
.header_nav-Box .admission-Box li a {
  color: #000;
  width: 100%;
  padding: 15px 10px;
  line-height: 1.2;
  display: block;
  text-align: left;
  font-size: 14px;
}
@media (max-width: 767px) {
  .header_nav-Box .admission-Box li a {
    font-size: 2.5vw;
  }
}
.header_nav-Box .graduate-Box {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .header_nav-Box .graduate-Box {
    margin-top: 5vw;
  }
}
.header_nav-Box .graduate-Box > p {
  color: #fff;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 2px;
}
.header_nav-Box .graduate-Box > a {
  width: 70%;
  display: block;
  background-color: rgba(82, 81, 81, 0.6705882353);
  margin: 0 auto;
  padding: 20px;
  color: #fff;
  border: solid 1px;
  position: relative;
}
@media (max-width: 767px) {
  .header_nav-Box .graduate-Box > a {
    font-size: 2.5vw;
  }
}
.header_nav-Box .graduate-Box > a:hover {
  opacity: 0.8;
}
.header_nav-Box .graduate-Box > a::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto;
}
@media (max-width: 767px) {
  .header_nav-Box .graduate-Box > a::after {
    width: 4px;
    height: 4px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    right: 10px;
  }
}
.header_nav-Box .sns-Box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px auto;
}
@media (max-width: 767px) {
  .header_nav-Box .sns-Box {
    margin: 5vw auto;
    width: 50vw;
  }
}
.header_nav-Box .sns-Box li {
  width: 10%;
  margin: 0 15px;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .header_nav-Box .sns-Box li {
    width: 25%;
    margin: 2vw;
  }
}
.header_nav-Box .sns-Box li:hover {
  opacity: 0.8;
}
.header_nav-Box .sns-Box li a {
  color: #fff;
  width: 100%;
  line-height: 1.2;
  display: block;
}
.header_nav-Box .sns-Box li:last-child a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: red;
  border-radius: 50%;
  font-weight: bold;
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .header_nav-Box .sns-Box li:last-child a {
    font-size: 2.8vw;
    line-height: 1.2;
  }
}
.header_nav-Box .sns-Box .icon-x a {
  background: #000;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header_nav-Box .sns-Box .icon-x a img {
  width: 50%;
}
.header_nav-Box .digital-Book {
  margin-top: 15px;
}
.header_nav-Box .digital-Book a {
  color: #fff;
  width: 100%;
  transition: all 0.3s;
}
.header_nav-Box .digital-Book a:hover {
  opacity: 0.8;
}

.common-voice-mov {
  margin: 20px auto 80px;
}
.common-voice-mov__flex {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .common-voice-mov__flex {
    display: block;
    text-align: center;
  }
}
.common-voice-mov__flex > div {
  margin: 0 10px;
}
@media (max-width: 767px) {
  .common-voice-mov__flex > div {
    margin: 0;
  }
}
.common-voice-mov__flex > div iframe {
  width: 300px;
  height: 533px;
}
.common-voice-mov__flex > div p {
  font-weight: bold;
  margin-top: 10px;
  font-size: 0.9em;
  text-align: center;
}
@media (max-width: 767px) {
  .common-voice-mov__flex > div + div {
    margin: 50px 0 0;
  }
}/*# sourceMappingURL=commonstyle.css.map */