@charset "UTF-8";
/*=================================================================*/
/*	下層共通
/*=================================================================*/
/*  contentsTop
---------------------------------------------------------------*/
.contentsTop {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contentsTop .topInfoList {
  padding: 5px 0 10px 22px;
}
.contentsTop .topInfoList li {
  display: inline-block;
  margin-right: 10px;
}
.contentsTop .topInfoList li a {
  font-size: 1.2rem;
  font-weight: bold;
  position: relative;
  display: block;
  padding: 0 0 0 12px;
}
.contentsTop .topInfoList li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 2px solid transparent;
  border-top: 6px solid #1b539e;
  transform: rotate(-90deg);
  left: 0;
  top: 50%;
  margin-top: -4px;
}
.contentsTop .searchBtn, .contentsTop .access {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.contentsTop .searchBtn {
  margin-left: auto;
  background: #fdf001 url(../img/sec/icon_search.svg) no-repeat left 12px center;
  padding: 5px 15px 5px 38px;
  line-height: 1;
  font-weight: bold;
  font-size: 1.4rem;
  transition: unset;
}
.contentsTop .searchBtn.on {
  background: #fdf001 url(../img/sec/icon_search_close.svg) no-repeat left 15px center;
}
.contentsTop .access {
  margin-left: 0;
  background: #7fc7a4 url(../img/sec/icon_access.png) no-repeat left 14px center;
  color: #FFF;
  padding: 12px 16px 10px 36px;
  line-height: 1;
  font-weight: bold;
  font-size: 1.2rem;
}

.searchBox {
  position: fixed;
  width: calc(100% - 240px);
  top: 40px;
  right: 0;
  /*min-height: 350px;*/
  background-color: rgba(51, 51, 51, 0.8);
  z-index: 5;
  text-align: center;
  padding: 40px;
  box-sizing: border-box;
  display: none;
}
.searchBox input[type=text] {
  background-color: #FFF;
  padding: 3px 6px;
}
.searchBox button {
  background-color: #DDD;
  padding: 3px 12px;
  cursor: pointer;
  color: #000;
}
.searchBox.active {
  /*min-height: 350px;*/
}

/*  ページ内リンク
---------------------------------------------------------------*/
.pageInLink {
  max-width: 960px;
  margin: 0 auto 60px;
  padding: 0 4%;
  text-align: center;
}
.pageInLink li {
  display: inline-block;
  border-right: solid 1px #d9d9d9;
  line-height: 1;
  margin: 0 40px 0 0;
}
.pageInLink li:last-child {
  border-right: none;
  margin: 0;
}
.pageInLink li:last-child a {
  padding: 0 0 0 22px;
}
.pageInLink li a {
  background: url(../img/sec/icon_inlink.svg) no-repeat left center;
  display: block;
  padding: 0 40px 0 22px;
}

/*  下層タイトルイメージ
---------------------------------------------------------------*/
.pageTitleWrap {
  background: #343434;
  position: relative;
}
.pageTitleWrap .pageTitle {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-size: 3.6rem;
  padding: 20px 50px;
  box-sizing: border-box;
  min-height: 350px;
  color: #FFF;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.18);
  letter-spacing: 0.1em;
  text-align: center;
}
.pageTitleWrap .pageTitle .titleInner {
  background-color: rgba(0, 0, 0, 0.3);
  position: relative;
  padding: 34px 100px;
  box-sizing: border-box;
  min-width: 540px;
  max-width: 100%;
}
.pageTitleWrap .pageTitle .titleInner .en {
  font-size: 1.2rem;
  font-weight: normal;
  letter-spacing: 0.08em;
  display: block;
  margin: 0 0 5px;
}
.pageTitleWrap .pageTitle .titleInner .boxLine {
  position: absolute;
  background-color: #FFF;
  opacity: 0.6;
  opacity: 0;
}
.pageTitleWrap .pageTitle .titleInner .boxLine.line_t {
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  animation: boxline_tb 0.4s ease-out 0.6s forwards;
}
.pageTitleWrap .pageTitle .titleInner .boxLine.line_b {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  animation: boxline_tb 0.4s ease-out 0.6s forwards;
}
.pageTitleWrap .pageTitle .titleInner .boxLine.line_l {
  bottom: 0;
  left: 0;
  width: 1px;
  height: 100%;
  animation: boxline_lr 0.3s ease-out 1s forwards;
}
.pageTitleWrap .pageTitle .titleInner .boxLine.line_r {
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  animation: boxline_lr 0.3s ease-out 1s forwards;
}
.pageTitleWrap .breadcrumb {
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: right;
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.18));
  padding: 18px 35px;
}
.pageTitleWrap .breadcrumb li {
  display: inline-block;
  font-size: 1.2rem;
  color: #FFF;
  font-weight: bold;
  background: url(../img/sec/icon_pn_arrow.svg) no-repeat right center;
  padding: 0 18px 0 0;
  margin-right: 12px;
}
.pageTitleWrap .breadcrumb li a {
  color: #FFF;
}
.pageTitleWrap .breadcrumb li:last-child {
  padding: 0;
  background: none;
}

@keyframes boxline_tb {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100%;
    opacity: 0.8;
  }
}
@keyframes boxline_lr {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    height: 100%;
    opacity: 0.8;
  }
}
.about .pageTitleWrap .pageTitle {
  background: url(../img/sec/about/page_img.jpg) no-repeat center center;
  background-size: cover;
}

.access .pageTitleWrap .pageTitle {
  background: url(../img/sec/about/access/page_img.jpg) no-repeat center center;
  background-size: cover;
}

.facility .pageTitleWrap .pageTitle {
  background: url(../img/sec/about/facility/page_img.jpg) no-repeat center center;
  background-size: cover;
}

.group .pageTitleWrap .pageTitle {
  background: url(../img/sec/group/page_img.jpg) no-repeat center center;
  background-size: cover;
}

.charm .pageTitleWrap .pageTitle {
  background: url(../img/sec/charm/page_img.jpg) no-repeat center center;
  background-size: cover;
}

.dormitory .pageTitleWrap .pageTitle {
  background: url(../img/sec/charm/dormitory/page_img.jpg) no-repeat center center;
  background-size: cover;
}

.credit .pageTitleWrap .pageTitle {
  background: url(../img/sec/charm/credit/page_img.jpg) no-repeat center center;
  background-size: cover;
}

.school-life .pageTitleWrap .pageTitle {
  background: url(../img/sec/charm/school-life/page_img.jpg) no-repeat center center;
  background-size: cover;
}

.international .pageTitleWrap .pageTitle {
  background: url(../img/sec/charm/international/page_img.jpg) no-repeat center center;
  background-size: cover;
}

.career-support .pageTitleWrap .pageTitle {
  background: url(../img/sec/charm/career-support/page_img.jpg) no-repeat center center;
  background-size: cover;
}

.voice .pageTitleWrap .pageTitle {
  background: url(../img/sec/voice/page_img.jpg) no-repeat center center;
  background-size: cover;
}

.summary .pageTitleWrap .pageTitle {
  background: url(../img/sec/summary/page_img.jpg) no-repeat center center;
  background-size: cover;
}

.question .pageTitleWrap .pageTitle {
  background: url(../img/sec/question/page_img.jpg) no-repeat center center;
  background-size: cover;
}

.support .pageTitleWrap .pageTitle {
  background: url(../img/sec/support/page_img.jpg) no-repeat center center;
  background-size: cover;
}

.student .pageTitleWrap .pageTitle {
  background: url(../img/sec/student/page_img.jpg) no-repeat center center;
  background-size: cover;
}

.graduate .pageTitleWrap .pageTitle {
  background: url(../img/sec/graduate/page_img.jpg) no-repeat center center;
  background-size: cover;
}

.graduate2 .pageTitleWrap .pageTitle {
  background: url(../img/sec/graduate2/page_img.jpg) no-repeat center center;
  background-size: cover;
}

.contact .pageTitleWrap .pageTitle, .confirm .pageTitleWrap .pageTitle, .thanks .pageTitleWrap .pageTitle {
  background: url(../img/sec/contact/page_img.jpg) no-repeat center center;
  background-size: cover;
}

.document-request .pageTitleWrap .pageTitle {
  background: url(../img/sec/document-request/page_img.jpg) no-repeat center center;
  background-size: cover;
}

.graduate-form .pageTitleWrap .pageTitle {
  background: url(../img/sec/graduate-form/page_img.jpg) no-repeat center center;
  background-size: cover;
}

.news .pageTitleWrap .pageTitle {
  background: url(../img/sec/news/page_img.jpg) no-repeat center center;
  background-size: cover;
}

.school-visit .pageTitleWrap .pageTitle {
  background: url(../img/sec/school-visit/page_img.jpg) no-repeat center center;
  background-size: cover;
}

.links .pageTitleWrap .pageTitle {
  background: url(../img/sec/links/page_img.jpg) no-repeat center center;
  background-size: cover;
}

.privacy .pageTitleWrap .pageTitle {
  background: url(../img/sec/privacy/page_img.jpg) no-repeat center center;
  background-size: cover;
}

.site-map .pageTitleWrap .pageTitle {
  background: url(../img/sec/site-map/page_img.jpg) no-repeat center center;
  background-size: cover;
}

.search .pageTitleWrap .pageTitle {
  background: url(../img/sec/search/page_img.jpg) no-repeat center center;
  background-size: cover;
}

.page404 .pageTitleWrap .pageTitle {
  background: url(../img/sec/404/page_img.jpg) no-repeat center center;
  background-size: cover;
}

.pageContents {
  padding: 80px 0 120px;
}
.pageContents p {
  line-height: 1.6;
}

/*  見出し
---------------------------------------------------------------*/
h2.h2Style01 {
  font-size: 3.6rem;
  margin: 0 0 60px;
  padding: 0 0 20px;
  text-align: center;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.05em;
}
h2.h2Style01::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 2px;
  background-color: #1b539e;
  left: 50%;
  bottom: 0;
  margin-left: -21px;
}

h2.h2Style02 {
  background-color: #3677c7;
  color: #FFF;
  font-size: 2.8rem;
  border-radius: 6px;
  padding: 15px 26px;
  margin: 40px 0;
  font-weight: 500;
}

h3.h3Style02 {
  background-color: #3677c7;
  color: #FFF;
  font-size: 2.8rem;
  border-radius: 6px;
  padding: 15px 26px;
  margin: 40px 0;
  font-weight: 500;
}

.lineTtl {
  border-left: solid 5px #134a94;
  padding: 0 0 0 10px;
  margin: 30px 0;
}

.ttlBtmdotLine {
  border-bottom: dotted 2px #b5b5b5;
  padding: 0 15px 10px 15px;
  font-size: 2.4rem;
  margin: 40px 0 40px;
}

.imgWrap {
  text-align: center;
  margin: 0 0 40px;
}

.imgLineWrap {
  text-align: center;
  padding: 40px;
  margin: 0 0 40px;
  border: solid 1px #DDD;
}

/*  コンテンツ周り
---------------------------------------------------------------*/
.contWrap {
  padding: 0 4% 100px;
}
.contWrap > .inner {
  max-width: 960px;
  margin: 0 auto;
}

.topGrayBg {
  padding: 80px 0 0;
  position: relative;
  z-index: 1;
}
.topGrayBg::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 800px;
  left: 0;
  top: 0;
  background: linear-gradient(0deg, #FFF, #f7f7f7);
  z-index: -1;
}
.topGrayBg .inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 4%;
}

.skyBg {
  background-color: #e5f5fc;
  padding: 100px 4%;
}
.skyBg .inner {
  max-width: 960px;
  margin: 0 auto;
}

ul.skyTag li {
  background-color: #ecf9ff;
  display: inline-block;
  margin: 0 5px 10px 0;
  padding: 7px 12px;
}

ol.numOl {
  counter-reset: number;
  margin: 0 0 40px;
}
ol.numOl > li {
  margin: 0 0 20px;
  position: relative;
  padding-left: 25px;
}
ol.numOl > li::before {
  counter-increment: number;
  content: counter(number) ".";
  position: absolute;
  left: 0;
  top: 0;
}
ol.numOl > li > ul {
  padding: 30px 0 0 20px;
}
ol.numOl > li > ul > li {
  padding: 0 0 0 20px;
  margin: 0 0 7px;
  position: relative;
}
ol.numOl > li > ul > li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #000;
  left: 5px;
  top: 9px;
}

/*=================================================================*/
/*	学校案内
/*=================================================================*/
.greeting {
  max-width: 960px;
  margin: 0 auto 100px;
  padding: 0 4%;
}
.greeting .greetingMessage {
  margin: 0 0 60px;
  text-align: center;
}
.greeting .greetingMessage strong {
  font-size: 3.6rem;
  color: #134a94;
  margin: 0 0 60px;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: normal;
  background: linear-gradient(transparent 60%, #ebf4ff 0%);
  display: inline;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.greeting .greetingTxt {
  margin: 0 0 40px;
}
.greeting .greetingTxt img {
  float: right;
  margin: 0 0 20px 20px;
}
.greeting .greetingTxt p {
  line-height: 1.6;
  margin: 0 0 20px;
}
.greeting .greetingName {
  text-align: right;
  margin: 0 0 100px;
}
.greeting .greetingName .jp {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 0 5px;
}
.greeting .greetingName .jp span {
  font-size: 2.2rem;
  display: inline-block;
  margin-left: 10px;
}
.greeting .greetingName .en {
  font-size: 1.2rem;
}
.greeting .teachweHistory {
  max-width: 800px;
  margin: 0 auto;
}
.greeting .teachweHistory dt {
  font-weight: bold;
  font-size: 2.8rem;
  border-bottom: solid 3px #000;
  margin: 0 0 3px;
  padding: 0 10px;
}
.greeting .teachweHistory dd table {
  border-top: solid 1px #000;
}
.greeting .teachweHistory dd table tr {
  border-bottom: dotted 1px #000;
}
.greeting .teachweHistory dd table tr th, .greeting .teachweHistory dd table tr td {
  padding: 20px 10px;
  line-height: 1.6;
  background-color: #FFF;
  border: none;
}
.greeting .teachweHistory dd table tr th {
  font-size: 1.6rem;
  width: 14em;
}
.greeting .teachweHistory dd table tr td {
  font-size: 1.5rem;
}

.spirits {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 4%;
}
.spirits .imgWrap {
  margin: 0 0 54px;
}
.spirits .spiritsTxt {
  text-align: center;
  margin: 0 0 60px;
}
.spirits .olNumList {
  max-width: 780px;
  margin: 0 auto;
  counter-reset: number;
}
.spirits .olNumList li {
  border-bottom: dashed 1px #cbcbcb;
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 25px 0 25px 62px;
}
.spirits .olNumList li::before {
  counter-increment: number;
  content: counter(number) ".";
  font-size: 4.6rem;
  font-family: "century gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #1b539e;
  font-style: italic;
  font-weight: normal;
  position: absolute;
  left: 12px;
  top: 4px;
}

/*=================================================================*/
/*	アクセス
/*=================================================================*/
.accessWrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 4%;
}
.accessWrap .accessWay {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 40px;
}
.accessWrap .accessWay .txt {
  width: 52%;
}
.accessWrap .accessWay .img {
  width: 44%;
  max-width: 420px;
}
.accessWrap .accessWay .img img {
  border-radius: 8px;
}
.accessWrap .gMap iframe {
  height: 400px;
  width: 100%;
}

/*=================================================================*/
/*	施設紹介
/*=================================================================*/
.facility .pageContents {
  padding: 80px 0 0;
}

.scoolFacility .inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 4%;
}
.scoolFacility .inner h2 + p {
  margin: 0 0 40px;
}
.scoolFacility .inner .facilityList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 60px;
}
.scoolFacility .inner .facilityList::after {
  content: "";
  width: 31.25%;
}
.scoolFacility .inner .facilityList li {
  width: 31.25%;
  margin: 0 0 30px;
}
.scoolFacility .inner .facilityList li a {
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.scoolFacility .inner .facilityList li a::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background: url(../img/sec/about/facility/icon_popup.png) no-repeat 0 0;
  top: 15px;
  right: 15px;
  z-index: 10;
}
.scoolFacility .inner .facilityList li a img {
  transition: transform 0.2s linear;
}
.scoolFacility .inner .facilityList li a:hover img {
  transform: scale(1.03);
}
.scoolFacility .inner .facilityList li a span {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  color: #FFF;
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 8px 14px;
  letter-spacing: 0.1em;
}
.scoolFacility .schoolMap {
  background-color: #e5f5fc;
  padding: 60px 4% 75px;
  text-align: center;
}
.scoolFacility .schoolMap img {
  width: 960px;
}

.dogran {
  background-color: #f1fbf0;
  padding: 50px 4% 90px;
}
.dogran .inner {
  max-width: 960px;
  margin: 0 auto;
}
.dogran .inner h2 {
  text-align: center;
  margin: 0 0 60px;
}
.dogran .inner .dogranTxt {
  margin: 0 0 60px;
}
.dogran .inner .dogranTxt p.top {
  text-align: center;
  font-size: 3.6rem;
  margin: 0 0 40px;
}
.dogran .inner .dogranTxt p.top span {
  background: linear-gradient(transparent 65%, #fff0b4 0%);
  padding: 0 20px;
}
.dogran .inner .dogranTxt p.bottom {
  margin: 0 0 40px;
  line-height: 1.8;
}
.dogran .inner .dogranImg {
  display: flex;
  justify-content: space-between;
  margin: 0 0 90px;
}
.dogran .inner .dogranImg li {
  overflow: hidden;
  width: 31.25%;
  border-radius: 12px;
  filter: drop-shadow(8px 8px 0 rgb(215, 230, 214));
}
.dogran .inner .ogranSummary {
  background-color: #FFF;
  padding: 45px 40px 30px;
  position: relative;
  border: solid 2px #c2deb8;
  margin: 0 0 60px;
  display: flex;
  justify-content: space-between;
}
.dogran .inner .ogranSummary h3 {
  background-color: #2e944f;
  color: #FFF;
  font-size: 2.5rem;
  width: 180px;
  border-radius: 8px;
  padding: 6px;
  position: absolute;
  left: 40px;
  top: -22px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
}
.dogran .inner .ogranSummary .txt {
  width: calc(100% - 338px);
}
.dogran .inner .ogranSummary .txt dl {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: dotted 2px #b4b4b4;
}
.dogran .inner .ogranSummary .txt dl:last-child {
  border-bottom: none;
}
.dogran .inner .ogranSummary .txt dl dt {
  width: 120px;
  font-weight: bold;
  padding: 0 0 0 15px;
}
.dogran .inner .ogranSummary .txt dl dd {
  width: calc(100% - 120px);
}
.dogran .inner .ogranSummary .img {
  width: 318px;
}
.dogran .dogranBanner {
  text-align: center;
}
.dogran .dogranBanner p {
  margin: 0 0 15px;
  font-size: 2.4rem;
}
.dogran .dogranBanner p span {
  position: relative;
}
.dogran .dogranBanner p span::before, .dogran .dogranBanner p span::after {
  content: "";
  background-color: #000;
  width: 1px;
  height: 32px;
  top: 0;
  position: absolute;
}
.dogran .dogranBanner p span::before {
  left: -20px;
  transform: rotate(-15deg);
}
.dogran .dogranBanner p span::after {
  right: -20px;
  transform: rotate(15deg);
}

/*=================================================================*/
/*	日章学園グループ
/*=================================================================*/
.group .pageContents {
  padding: 0;
}

.groupWrap {
  background-color: #e4f5fc;
  padding: 100px 4% 120px;
}
.groupWrap .inner {
  max-width: 960px;
  margin: 0 auto;
  background-color: #FFF;
  border-radius: 12px;
  padding: 6% 5% 2%;
  box-sizing: border-box;
}

.outlink {
  position: relative;
  display: inline-block;
  padding: 0 25px 0 20px;
  background: url(../img/sec/icon_outlink.svg) no-repeat right top 6px;
}
.outlink::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #000;
  left: 5px;
  top: 9px;
}
.outlink:hover {
  opacity: 1;
  text-decoration: underline;
}

.linkList li {
  position: relative;
  padding: 0 0 0 20px;
  margin: 0 0 7px;
}
.linkList li span {
  font-size: 1.4rem;
}
.linkList li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #000;
  left: 5px;
  top: 9px;
}
.linkList li a {
  padding: 0 25px 0 0;
  display: inline-block;
  background: url(../img/sec/icon_outlink.svg) no-repeat right top 6px;
}
.linkList li a:hover {
  opacity: 1;
  text-decoration: underline;
}

.groupColumn {
  display: flex;
  justify-content: space-between;
}
.groupColumn .left {
  width: 48%;
}
.groupColumn .right {
  width: 48%;
}

.groupList {
  margin: 0 0 40px;
}
.groupList.overseas .linkList {
  margin: 0 0 40px;
}
.groupList dt {
  font-size: 2.2rem;
  padding: 0 10px 10px;
  margin: 0 0 30px;
  position: relative;
  border-bottom: solid 1px #d8d8d8;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.groupList dt::before {
  position: absolute;
  content: "";
  width: 120px;
  height: 1px;
  background-color: #0e4e8e;
  left: 0;
  bottom: -1px;
}

/*=================================================================*/
/*	4つの魅力
/*=================================================================*/
.charm .pageContents {
  padding: 0;
}

.charmWrap {
  background: url(../img/sec/charm/bg_page.svg) no-repeat center top;
  background-size: 100% 760px;
  padding: 100px 4%;
}
.charmWrap .inner {
  max-width: 960px;
  margin: 0 auto;
}
.charmWrap .inner .topMessage {
  text-align: center;
  margin: 0 0 60px;
  font-size: 4.2rem;
  color: #458ad7;
  font-weight: bold;
}
.charmWrap .inner .pointList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.charmWrap .inner .pointList > li {
  width: 47.916%;
  margin: 0 0 50px;
}
.charmWrap .inner .pointList > li dl dt {
  background-color: #FFF;
  border-radius: 100px;
  margin: 0 0 15px;
  padding: 20px 5px 20px 92px;
  position: relative;
}
.charmWrap .inner .pointList > li dl dt p {
  position: relative;
  z-index: 2;
  font-weight: bold;
  font-size: 2.8rem;
}
.charmWrap .inner .pointList > li dl dt .num {
  position: absolute;
  width: 123px;
  height: 123px;
  border-radius: 100%;
  background-color: #DDD;
  color: #FFF;
  text-align: center;
  line-height: 1;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  left: -14px;
  top: 50%;
  z-index: 1;
  margin-top: -64px;
}
.charmWrap .inner .pointList > li dl dt .num span {
  font-family: "century gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: italic;
  display: block;
  font-size: 6.4rem;
}
.charmWrap .inner .pointList > li dl dd {
  position: relative;
  z-index: 5;
  border-radius: 12px;
  /*overflow: hidden;*/
  background-color: #FFF;
  filter: drop-shadow(4px 0px 6px rgba(0, 0, 0, 0.15));
}
.charmWrap .inner .pointList > li dl dd .img {
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}
.charmWrap .inner .pointList > li dl dd .pageLink {
  padding: 25px 25px 15px;
}
.charmWrap .inner .pointList > li dl dd .pageLink li {
  display: inline-block;
  margin: 0 20px 10px 0;
}
.charmWrap .inner .pointList > li dl dd .pageLink li a {
  background: url(../img/sec/icon_blue_arrow.svg) no-repeat left center;
  background-size: 16px auto;
  padding: 0 0 0 20px;
  font-weight: bold;
}
.charmWrap .inner .pointList > li dl dd .pageLink li a.outLink {
  background: url(../img/sec/icon_outlink.svg) no-repeat left top 6px;
  padding: 0 0 0 20px;
}
.charmWrap .inner .pointList > li:nth-child(1) dl dt .num {
  background-color: #e868aa;
}
.charmWrap .inner .pointList > li:nth-child(2) dl dt .num {
  background-color: #00afec;
}
.charmWrap .inner .pointList > li:nth-child(3) dl dt {
  background-color: #ecf4ff;
}
.charmWrap .inner .pointList > li:nth-child(3) dl dt .num {
  background-color: #f1b42a;
}
.charmWrap .inner .pointList > li:nth-child(4) dl dt {
  background-color: #ecf4ff;
  padding: 23px 5px 23px 92px;
}
.charmWrap .inner .pointList > li:nth-child(4) dl dt .num {
  background-color: #74ca4e;
}
.charmWrap .inner .pointList > li:nth-child(4) dl dt p {
  font-size: 2.4rem;
}
.charmWrap .inner .pointList > li:nth-child(5) dl dt {
  background-color: #ecf4ff;
  padding: 23px 5px 23px 92px;
}
.charmWrap .inner .pointList > li:nth-child(5) dl dt .num {
  background-color: #954fce;
}
.charmWrap .inner .pointList > li:nth-child(5) dl dt p {
  font-size: 2.2rem;
}

@media screen and (max-width: 1280px) {
  /*<start>==========================================================*/
  .charmWrap .inner .pointList > li dl dt p {
    font-size: 2.1vw;
  }
  .charmWrap .inner .pointList > li:nth-child(4) dl dt p {
    font-size: 1.6vw;
  }
  .charmWrap .inner .pointList > li:nth-child(5) dl dt p {
    font-size: 1.6vw;
  }
  /*<end>============================================================*/
}
/*=================================================================*/
/*	完全個室の学生寮
/*=================================================================*/
.dormitoryWrap {
  padding: 0 4%;
}
.dormitoryWrap .inner {
  max-width: 960px;
  margin: 0 auto;
}
.dormitoryWrap .inner .dormitoryPoint {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 40px;
}
.dormitoryWrap .inner .dormitoryPoint li {
  width: 30%;
  margin: 0 1.6%;
  position: relative;
  text-align: center;
  padding: 20px 0 0;
}
.dormitoryWrap .inner .dormitoryPoint li .num {
  position: absolute;
  background-color: #eeaa61;
  color: #FFF;
  display: inline-block;
  padding: 3px 10px;
  font-family: "century gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  width: 170px;
  top: 0;
  left: 50%;
  margin-left: -85px;
  box-sizing: border-box;
  font-size: 2.3rem;
  font-weight: bold;
  line-height: 1;
}
.dormitoryWrap .inner .dormitoryPoint li .num span {
  font-size: 3.3rem;
  margin-left: 5px;
}
.dormitoryWrap .inner .dormitoryPoint li .num::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-top: 8px solid #eeaa61;
  transform: rotate(0deg);
  left: 50%;
  margin-left: -6px;
  bottom: -14px;
}
.dormitoryWrap .inner .dormitoryPoint li .box {
  background-color: #ecf4ff;
  border-radius: 8px;
  padding: 45px 20px 30px;
}
.dormitoryWrap .inner .dormitoryPoint li .box .icon {
  margin: 0 0 15px;
}
.dormitoryWrap .inner .dormitoryPoint li .box p {
  font-weight: bold;
  font-size: 3.4rem;
}
.dormitoryWrap .inner .dormitoryPoint li .box p span {
  font-size: 2rem;
  margin-right: 5px;
}
.dormitoryWrap .inner .dormitoryPoint + p {
  margin: 0 0 60px;
}
.dormitoryWrap .inner .dormitoryImg {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 40px;
}
.dormitoryWrap .inner .dormitoryImg li {
  width: 47.916%;
  margin: 0 0 4%;
  position: relative;
}
.dormitoryWrap .inner .dormitoryImg li span {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  color: #FFF;
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 20px;
  letter-spacing: 0.1em;
}
.dormitoryWrap .inner .eat {
  background-color: #fff3c3;
  position: relative;
  text-align: center;
  padding: 0 0 20px;
  margin: 60px 0 0;
}
.dormitoryWrap .inner .eat h2 {
  width: 146px;
  height: 146px;
  border-radius: 100%;
  background-color: #e74e4e;
  color: #FFF;
  font-size: 2.8rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  left: 40px;
  top: -10px;
  position: absolute;
}
.dormitoryWrap .inner .eat p {
  padding: 37px 0 10px 215px;
  text-align: left;
}
.dormitoryWrap .inner .hojo {
  background-color: #fff3c3;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  margin: 0 0 60px;
}
.dormitoryWrap .inner .hojo .left {
  width: 48%;
  text-align: center;
}
.dormitoryWrap .inner .hojo .left .ebino {
  margin: 0 0 10px;
  font-size: 2.8rem;
  font-weight: bold;
}
.dormitoryWrap .inner .hojo .left .ebino span {
  position: relative;
}
.dormitoryWrap .inner .hojo .left .ebino span::before, .dormitoryWrap .inner .hojo .left .ebino span::after {
  content: "";
  background-color: #000;
  width: 1px;
  height: 32px;
  top: 3px;
  position: absolute;
}
.dormitoryWrap .inner .hojo .left .ebino span::before {
  left: -20px;
  transform: rotate(-25deg);
}
.dormitoryWrap .inner .hojo .left .ebino span::after {
  right: -20px;
  transform: rotate(25deg);
}
.dormitoryWrap .inner .hojo .left .redBg {
  background-color: #ef4900;
  color: #FFF;
  font-size: 3.2rem;
  padding: 8px;
  border-radius: 6px;
  width: 80%;
  margin: 0 auto;
  font-weight: bold;
}
.dormitoryWrap .inner .hojo .right {
  width: 48%;
  font-weight: bold;
}
.dormitoryWrap .inner .hojo .right .price {
  font-size: 2.6rem;
  margin: 0 0 8px;
}
.dormitoryWrap .inner .hojo .right .price span {
  color: #b43230;
  font-size: 105%;
  padding: 0 3px;
  white-space: nowrap;
}
.dormitoryWrap .inner .hojo .right .bluetxt {
  font-size: 2.2rem;
  margin: 0 0 8px;
  color: #1b539e;
}
.dormitoryWrap .inner .hojo .right .bluetxt span {
  font-size: 1.6rem;
  color: #000;
  margin-left: 10px;
  font-weight: normal;
}
.dormitoryWrap .inner .hojo .right .caution span {
  background-color: #ffdf01;
  padding: 5px 30px;
  font-size: 1.6rem;
  display: inline-block;
}

table.dormitoryTbl th, table.dormitoryTbl td {
  width: 50%;
  text-align: center;
}

.btnWrap {
  text-align: center;
}
.btnWrap a {
  display: inline-block;
  border: solid 2px #000;
  font-size: 2rem;
  padding: 20px;
  font-weight: bold;
  min-width: 420px;
  position: relative;
  box-sizing: border-box;
  background-color: #FFF;
  filter: drop-shadow(4px 4px 0 #e1dddd);
}
.btnWrap a::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: solid 1px;
  border-right: solid 1px;
  top: 50%;
  margin-top: -5px;
  right: 25px;
  color: #000;
  display: block;
  transform: rotate(45deg);
  transition: all 0.2s;
}
.btnWrap a:hover::before {
  right: 22px;
}

/*=================================================================*/
/*	魅力ある単位制×全日制
/*=================================================================*/
.creditWrap {
  padding: 0 4%;
}
.creditWrap .inner {
  max-width: 960px;
  margin: 0 auto;
}
.creditWrap .imgTxtBox {
  margin: 0 0 100px;
}
.creditWrap .txtImg .img {
  width: 49%;
}
.creditWrap .creditCase {
  border-bottom: dashed 1px #d6d6d6;
  margin: 0 0 60px;
  padding: 0 0 20px;
}
.creditWrap .creditCase h3 {
  background-color: #3677c7;
  color: #FFF;
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  font-size: 2.6rem;
  font-weight: 500;
  margin: 0 0 40px;
}
.creditWrap .txtImg h3 {
  margin-top: 0;
}
.creditWrap .txtImg .img img {
  border-radius: 8px;
}

.strongMessage {
  text-align: center;
  margin: 0 0 60px;
}
.strongMessage strong {
  font-size: 3.6rem;
  margin: 0 0 60px;
  font-weight: 500;
  background: linear-gradient(transparent 60%, #fff0b4 0%);
  display: inline;
  letter-spacing: 0.1em;
  line-height: 1.6;
  padding: 0 10px;
}

.strongMessageBottomTxt {
  text-align: center;
  margin: 0 0 50px;
}

.imgTxtBox {
  border: solid 1px #e3e3e3;
  padding: 40px;
  box-sizing: border-box;
  margin: 0 0 60px;
}
.imgTxtBox .box {
  display: flex;
  justify-content: space-between;
  border-bottom: dashed 1px #d6d6d6;
  margin: 0 0 40px;
  padding: 0 0 40px;
}
.imgTxtBox .box:last-child {
  border-bottom: none;
  margin: 0;
  padding: 0;
}
.imgTxtBox .box:nth-child(odd) {
  flex-flow: row-reverse;
}
.imgTxtBox .box .txt {
  width: 48%;
}
.imgTxtBox .box .txt .blueTtl dt {
  color: #1b539e;
  font-size: 2.4rem;
  margin: 0 0 20px;
  font-weight: bold;
}
.imgTxtBox .box .txt .blueTtl dt.firstLarge::first-letter {
  font-size: 3.8rem;
}
.imgTxtBox .box .txt .blueTtl dd {
  font-size: 1.6rem;
  line-height: 1.6;
}
.imgTxtBox .box .img {
  width: 48%;
}
.imgTxtBox.noFrame {
  border: none;
}
.imgTxtBox.noFrame .box {
  padding: 0 20px 40px;
}

.txtImg {
  display: flex;
  justify-content: space-between;
  margin: 0 0 40px;
}
.txtImg .txt {
  width: 48%;
}
.txtImg .img {
  width: 48%;
}

/*=================================================================*/
/*	楽しいスクールライフ
/*=================================================================*/
.school-life .pageContents {
  padding: 80px 0 0;
}

.schoolEvent .topEventBlue {
  font-size: 4.6rem;
  font-weight: 500;
  color: #0e7fb0;
  text-align: center;
  margin: 40px 0 60px;
}
.schoolEvent .eventList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 1.6rem;
  margin: 0 0 40px;
  position: relative;
  z-index: 0;
}
.schoolEvent .eventList::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 11px;
  left: 0;
  top: 86px;
  background-color: #006cb8;
  z-index: -1;
}
.schoolEvent .eventList > li {
  width: 24%;
  background-color: #FFF;
  border-radius: 8px;
  padding: 60px 20px 15px;
  box-sizing: border-box;
  position: relative;
}
.schoolEvent .eventList > li > ul > li {
  padding: 0 0 0 12px;
  position: relative;
  margin: 0 0 5px;
}
.schoolEvent .eventList > li > ul > li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  background-color: #006cb8;
  border-radius: 100%;
}
.schoolEvent .eventList > li > .month {
  width: 84px;
  height: 84px;
  font-family: "century gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  border-radius: 100%;
  background-color: #DDD;
  color: #FFF;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-size: 4.8rem;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  left: 50%;
  margin-left: -42px;
  top: -42px;
}
.schoolEvent .eventList > li > .month span {
  font-size: 1rem;
}
.schoolEvent .eventList > li > .month.apr {
  background-color: #ee86a1;
}
.schoolEvent .eventList > li > .month.may {
  background-color: #54c3f1;
}
.schoolEvent .eventList > li > .month.jun {
  background-color: #9c8e9b;
}
.schoolEvent .eventList > li > .month.jul {
  background-color: #4a94bd;
}
.schoolEvent .eventList > li > .month.aug {
  background-color: #fabf13;
}
.schoolEvent .eventList > li > .month.sep {
  background-color: #985f47;
}
.schoolEvent .eventList > li > .month.oct {
  background-color: #ed6d46;
}
.schoolEvent .eventList > li > .month.nov {
  background-color: #35b597;
}
.schoolEvent .eventList > li > .month.dec {
  background-color: #ec6d74;
}
.schoolEvent .eventList > li > .month.jan {
  background-color: #006cb8;
}
.schoolEvent .eventList > li > .month.feb {
  background-color: #ea5532;
}
.schoolEvent .eventList > li > .month.mar {
  background-color: #aace36;
}
.schoolEvent .eventImg {
  width: 90%;
  margin: 0 auto 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.schoolEvent .eventImg img {
  width: 32%;
  border-radius: 8px;
}

/*=================================================================*/
/*	留学生とともに学ぶ国際交流
/*=================================================================*/
.internationalTop {
  padding: 0 4%;
  margin: 0 0 90px;
}
.internationalTop .inner {
  max-width: 960px;
  margin: 0 auto;
}

.internationalBottom ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.internationalBottom ul li {
  width: 33.33%;
  color: #FFF;
  font-size: 1.8vw;
  font-weight: bold;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.internationalBottom ul li.red {
  background: #e25429 url(../img/sec/charm/international/icon_earth.png) no-repeat center top 28%;
}
.internationalBottom ul li.blue {
  background: #0071a3 url(../img/sec/charm/international/icon_school.png) no-repeat center top 28%;
}
.internationalBottom ul li.yellow {
  background: #f5ff5d url(../img/sec/charm/international/icon_japan.png) no-repeat center top 26%;
  color: #000;
}
.internationalBottom ul li img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
}
.internationalBottom ul li span {
  display: inline-block;
  margin: 20px 0 0;
}

.imgTxtBox2 {
  border: solid 1px #e3e3e3;
  padding: 50px 40px 30px;
  box-sizing: border-box;
  margin: 0 0 60px;
}
.imgTxtBox2::after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.imgTxtBox2 .box {
  border-bottom: dashed 1px #d6d6d6;
  margin: 0 0 40px;
  padding: 0 0 40px;
}
.imgTxtBox2 .box:last-child {
  border-bottom: none;
  margin: 0;
  padding: 0;
}
.imgTxtBox2 .box:nth-child(even) .img {
  float: left;
  margin: 0 30px 20px 0;
}
.imgTxtBox2 .box .txt .blueTtl dt {
  color: #1b539e;
  font-size: 2.4rem;
  margin: 0 0 15px;
  font-weight: bold;
}
.imgTxtBox2 .box .txt .blueTtl dt.firstLarge::first-letter {
  font-size: 3.8rem;
}
.imgTxtBox2 .box .txt .blueTtl dd {
  font-size: 1.6rem;
  line-height: 1.6;
}
.imgTxtBox2 .box .img {
  float: right;
  margin: 0 0 20px 40px;
}
.imgTxtBox2.noFrame {
  border: none;
}
.imgTxtBox2.noFrame .box {
  padding: 0 20px 30px;
}

/*=================================================================*/
/*	あなたが輝く進路サポート
/*=================================================================*/
.career-support .pageContents {
  padding: 80px 0 0;
}

.courseSupport h2 + p {
  margin: 0 0 40px;
}

.supportList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.supportList li {
  background-color: #e3f5f8;
  width: 32.2%;
  text-align: center;
  box-sizing: border-box;
  padding: 25px;
  margin: 0 0 2%;
}
.supportList li .icon {
  margin: 0 0 25px;
}
.supportList li dl dt {
  margin: 0 0 20px;
  font-size: 2.2rem;
  font-weight: bold;
}
.supportList li dl dd {
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.6;
}

.middleImg {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.middleImg img {
  width: 25%;
  height: auto;
}

.courseStatus h2 {
  margin: 0 0 40px;
}
.courseStatus .strongMessage {
  margin: 0 0 30px;
}
.courseStatus .courseCase {
  background-color: #FFF;
  border-radius: 12px;
  padding: 60px 40px 40px;
  margin: 0 0 20px;
}
.courseStatus .courseCase dl {
  border-bottom: dashed 1px #d6d6d6;
  display: flex;
  justify-content: space-between;
  margin: 0 0 40px;
  padding: 0 0 40px;
}
.courseStatus .courseCase dl:last-child {
  border-bottom: none;
  margin: 0;
  padding: 0;
}
.courseStatus .courseCase dl dt {
  width: 200px;
  display: flex;
  align-items: center;
  font-size: 2.2rem;
}
.courseStatus .courseCase dl dt span {
  background-color: #DDD;
  color: #FFF;
  display: block;
  width: 150px;
  text-align: center;
  border-radius: 4px;
  padding: 9px;
  box-sizing: border-box;
  line-height: 1;
}
.courseStatus .courseCase dl dd {
  width: calc(100% - 200px);
}
.courseStatus .courseCase dl dd ul li {
  display: inline-block;
  margin: 0 10px 10px 0;
  font-size: 1.6rem;
}
.courseStatus .courseCase dl.red dt span {
  background-color: #ea545e;
}
.courseStatus .courseCase dl.red dd {
  color: #ea545e;
}
.courseStatus .courseCase dl.green dt span {
  background-color: #00aa71;
}
.courseStatus .courseCase dl.green dd {
  color: #00aa71;
}
.courseStatus .courseCase dl.purple dt span {
  background-color: #b84c97;
}
.courseStatus .courseCase dl.purple dd {
  color: #b84c97;
}
.courseStatus .courseCase dl.orange dt span {
  background-color: #fac03d;
}
.courseStatus .courseCase dl.orange dd {
  color: #fac03d;
}
.courseStatus .courseCase dl.orange dd .star {
  color: #e97401;
}
.courseStatus .courseCase dl.orange dd .caution {
  color: #e97401;
  text-align: right;
  font-size: 1.4rem;
}
.courseStatus .courseCase dl.brown dt span {
  background-color: #9c771f;
}
.courseStatus .courseCase dl.brown dd {
  color: #9c771f;
}

/*=================================================================*/
/*	卒業生・在校生・保護者/卒業生の家族の声・保護者の声
/*=================================================================*/
.voiceList li {
  border-bottom: dashed 1px #d6d6d6;
  padding: 0 0 60px;
  margin: 0 0 60px;
  display: flex;
  justify-content: space-between;
}
.voiceList li .img {
  width: 220px;
  padding: 0 0 0 20px;
  text-align: center;
}
.voiceList li .txt {
  width: calc(100% - 280px);
}
.voiceList li .txt .nameWrap {
  font-weight: bold;
  margin: 0 0 20px;
}
.voiceList li .txt .nameWrap .tag {
  display: inline-block;
  padding: 4px 12px;
  color: #FFF;
  margin-right: 15px;
  background-color: #DDD;
}
.voiceList li .txt .nameWrap .tag.blue {
  background-color: #5eb4d8;
}
.voiceList li .txt .nameWrap .tag.orange {
  background-color: #f7ab00;
}
.voiceList li .txt .nameWrap .tag.green {
  background-color: #38b395;
}
.voiceList li .txt .nameWrap .name {
  font-size: 2.4rem;
}
.voiceList li .txt .nameWrap .name span {
  font-size: 80%;
}
.voiceList li .txt > strong {
  margin: 0 0 20px;
  display: block;
}
.voiceList li .txt .mainText {
  font-size: 1.6rem;
}
.voiceList li .txt .mainText p {
  line-height: 1.8;
}

/*=================================================================*/
/*	学校説明会・入学生徒募集要項・奨学金制度
/*=================================================================*/
.schoolInfoTbl thead th:nth-child(1) {
  width: 15%;
}
.schoolInfoTbl thead th:nth-child(2) {
  width: 15%;
}
.schoolInfoTbl thead th:nth-child(3) {
  width: 35%;
}
.schoolInfoTbl thead th:nth-child(4) {
  width: 35%;
}

.telWrap {
  background-color: #e8f1fa;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  margin: 0 0 20px;
}
.telWrap dt {
  font-size: 2.4rem;
  width: 200px;
  border-right: solid 1px #b9d6f4;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-weight: bold;
}
.telWrap dt span {
  font-size: 1.4rem;
  display: block;
}
.telWrap dd {
  width: calc(100% - 240px);
  font-size: 2.8rem;
  color: #000;
  display: inline-block;
  margin-right: 15px;
  pointer-events: none;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cautionRed {
  color: #be0000;
  font-size: 1.6rem;
}

table.youkoTbl tbody th {
  width: 20%;
}

.textLink {
  color: #5c73ec;
  text-decoration: underline;
  padding: 0 0 0 15px;
  display: inline-block;
  position: relative;
}
.textLink::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-top: 6px solid #3677c7;
  transform: rotate(-90deg);
  left: 0;
  margin-left: 0;
  top: 8px;
}

.contactBox {
  border: solid 1px #dbdbdb;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  margin: 0 0 40px;
}
.contactBox dt {
  border-right: dotted 1px #333;
  width: 280px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contactBox dt.center {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.contactBox dd {
  width: calc(100% - 320px);
}
.contactBox.innerW50 dt, .contactBox.innerW50 dd {
  width: 50%;
  box-sizing: border-box;
}
.contactBox.innerW50 dt {
  padding: 10px 25px 10px 0;
  font-weight: 500;
}
.contactBox.innerW50 dd {
  padding: 10px 0 10px 25px;
}

.blueBtn {
  text-align: center;
}
.blueBtn a {
  display: inline-block;
  background-color: #006cb8;
  color: #FFF;
  font-weight: bold;
  padding: 20px;
  box-sizing: border-box;
  min-width: 420px;
  filter: drop-shadow(4px 4px 0 rgb(226, 226, 226));
}
.blueBtn.doc a {
  background: #3677c7 url(../img/sec/summary/icon_doc.png) no-repeat left 30px center;
  letter-spacing: 0.05em;
}

p.ttlCenterTxt {
  text-align: center;
  margin: 0 0 60px;
}

.dotBlue {
  border-top: dotted 2px #d2d2d2;
}
.dotBlue dl {
  border-bottom: dotted 2px #d2d2d2;
  display: flex;
  justify-content: space-between;
}
.dotBlue dl dt {
  padding: 20px 30px;
  background-color: #f3faff;
  font-weight: bold;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  flex: 0 0 320px;
  box-sizing: border-box;
  text-align: center;
}
.dotBlue dl dd {
  padding: 20px 40px;
  width: calc(100% - 320px);
  box-sizing: border-box;
}

.dotdl dl {
  border-bottom: dotted 2px #d2d2d2;
  display: flex;
  justify-content: space-between;
}
.dotdl dl dt {
  padding: 20px 30px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 0 0 320px;
  box-sizing: border-box;
}
.dotdl dl dd {
  padding: 20px 40px;
  width: calc(100% - 320px);
  box-sizing: border-box;
}

/*=================================================================*/
/*	よくあるご質問
/*=================================================================*/
.questionTop {
  text-align: center;
  margin: 0 0 80px;
  font-weight: bold;
  padding: 0 4%;
}

.questionPageLink {
  text-align: center;
  font-weight: bold;
  max-width: 960px;
  margin: 0 auto 80px;
  padding: 0 4%;
  box-sizing: border-box;
}
.questionPageLink li {
  margin: 0 15px 15px 0;
  display: inline-block;
}
.questionPageLink li a {
  display: block;
  border: solid 2px #1b539e;
  border-radius: 50px;
  padding: 10px 36px 10px 25px;
  position: relative;
}
.questionPageLink li a::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: solid 1px;
  border-right: solid 1px;
  top: 50%;
  margin-top: -5px;
  right: 16px;
  color: #000;
  display: block;
  transform: rotate(135deg);
}
.questionPageLink li a:hover {
  background-color: #1b539e;
  color: #FFF;
}
.questionPageLink li a:hover::after {
  content: "";
  color: #FFF;
}

.qaBox {
  margin: 0 0 20px;
  border: solid 1px #e3e3e3;
  padding: 30px 54px 30px 30px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.qaBox.on dt::after {
  content: none;
}
.qaBox::after {
  content: "";
  background-color: #eeeeee;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 30px;
  top: 38px;
  z-index: -1;
}
.qaBox dt {
  position: relative;
}
.qaBox dt > span {
  display: block;
  font-weight: bold;
  font-size: 2rem;
  padding: 7px 0 7px 70px;
  position: relative;
}
.qaBox dt > span::before {
  content: "Q";
  position: absolute;
  width: 43px;
  height: 43px;
  border-radius: 100%;
  left: 0;
  top: 0;
  background-color: #5eb4d8;
  color: #FFF;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-size: 2.2rem;
}
.qaBox dt::before, .qaBox dt::after {
  position: absolute;
  content: "";
  background-color: #636363;
  z-index: 1;
}
.qaBox dt::before {
  width: 13px;
  height: 1px;
  right: -18px;
  top: 20px;
}
.qaBox dt::after {
  width: 1px;
  height: 13px;
  right: -12px;
  top: 14px;
}
.qaBox dd {
  border-top: dashed 1px #e3e3e3;
  font-size: 1.6rem;
  padding: 30px 0 0 70px;
  position: relative;
  line-height: 1.8;
  display: none;
  margin: 30px 0 0;
}
.qaBox dd::before {
  content: "A";
  position: absolute;
  width: 43px;
  height: 43px;
  border-radius: 100%;
  left: 0;
  top: 22px;
  background-color: #ff186a;
  color: #FFF;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: bold;
}

/*=================================================================*/
/*	在校生の方へ
/*=================================================================*/
.lineFrame {
  border: solid 1px #e3e3e3;
  padding: 40px;
  margin: 0 0 60px;
}
.lineFrame h3 {
  margin-top: 10px;
}
.lineFrame > ul > li {
  margin: 0 0 10px;
  padding: 0 0 0 20px;
  position: relative;
}
.lineFrame > ul > li::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #3677c7;
  left: 0;
  top: 8px;
}
.lineFrame > ul > li > ul {
  padding: 20px 0 10px;
}
.lineFrame > ul > li > ul > li {
  margin: 0 0 5px;
  font-size: 1.6rem;
}
.lineFrame > ul > li > ul > li .caution {
  color: #a40000;
}
.lineFrame > ul > li a {
  color: #3677c7;
  text-decoration: underline;
}

/*=================================================================*/
/*	卒業生の方へ
/*=================================================================*/
.grayBgArrow {
  background-color: #f5f5f5;
  position: relative;
  padding: 3.6%;
  margin: 0 0 68px;
}
.grayBgArrow::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border: 28px solid transparent;
  border-top: 36px solid #f5f5f5;
  transform: rotate(0deg);
  left: 50%;
  margin-left: -28px;
  bottom: -62px;
}

.skyBlueBg {
  background-color: #eff7ff;
  padding: 3.6%;
  margin: 0 0 40px;
}

.grayBox {
  background-color: #f9f9f9;
  padding: 3.6%;
  margin: 0 0 40px;
}
.grayBox.flex {
  display: flex;
  justify-content: space-between;
}
.grayBox.flex ul {
  width: 50%;
}
.grayBox.flex ul li {
  margin: 0 0 5px;
}

a.linLink {
  text-decoration: underline;
  color: #2984ff;
}

/*=================================================================*/
/*	お知らせ
/*=================================================================*/
.news .pageContents {
  padding: 0;
}

.newsWrap {
  background: #ecf4ff url(../img/sec/charm/bg_page.svg) no-repeat center top;
  background-size: 100% 760px;
  padding: 80px 4% 100px;
}
.newsWrap .inner {
  max-width: 960px;
  margin: 0 auto;
}
.newsWrap .inner .newsNav {
  margin: 0 auto 80px;
  width: 80%;
  background-color: #FFF;
  display: flex;
  justify-content: space-between;
}
.newsWrap .inner .newsNav a {
  width: 50%;
  padding: 20px;
  box-sizing: border-box;
  display: block;
  font-size: 2rem;
  text-align: center;
  position: relative;
}
.newsWrap .inner .newsNav a::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-top: solid 1px;
  border-right: solid 1px;
  top: 50%;
  margin-top: -5px;
  right: 28px;
  color: #000;
  display: block;
  transform: rotate(45deg);
  transition: all 0.2s;
}
.newsWrap .inner .newsNav a:hover::after {
  right: 25px;
}
.newsWrap .inner .newsNav .current {
  background-color: #006cb8;
  color: #FFF;
  pointer-events: none;
}
.newsWrap .inner .newsNav .current::after {
  content: none;
}
.newsWrap .inner .newsList {
  background-color: #FFF;
  border-radius: 12px;
  padding: 4% 4.6%;
  margin: 0 0 60px;
  box-sizing: border-box;
}
.newsWrap .inner .newsList li {
  border-bottom: dotted 2px #b5b5b5;
  padding: 22px 10px;
  display: flex;
  justify-content: space-between;
}
.newsWrap .inner .newsList li .date {
  /*font-style: italic;*/
  font-size: 1.6rem;
  display: inline-block;
  letter-spacing: 0.1em;
  width: 120px;
  font-family: "century gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.newsWrap .inner .newsList li a {
  color: #304d73;
  width: calc(100% - 140px);
  font-weight: bold;
}
.newsWrap .inner .newsList li a:hover {
  text-decoration: underline;
}
.newsWrap .inner .newsList li:last-child {
  border-bottom: none;
}
.newsWrap .inner .pageNav {
  text-align: center;
}
.newsWrap .inner .pageNav a {
  border: solid 1px #1587b6;
  padding: 11px 19px;
  text-decoration: none;
  color: #1587b6;
  font-size: 16px;
  background-color: #fff;
  margin-right: 10px;
  border-radius: 4px;
  display: inline-block;
}
.newsWrap .inner .pageNav a .next {
  color: #030303;
}
.newsWrap .inner .pageNav a:hover {
  background-color: #006cb8;
  color: #FFF;
}
.newsWrap .inner .pageNav a .prev, .newsWrap .inner .pageNav a .next {
  border: none;
  font-size: 17px;
}
.newsWrap .inner .pageNav a:hover {
  opacity: 1;
}
.newsWrap .inner .pageNav .current {
  padding: 11px 19px;
  text-decoration: none;
  font-size: 16px;
  background-color: #006cb8;
  border: solid 1px #006cb8;
  margin-right: 10px;
  color: #FFF;
  border-radius: 4px;
}
.newsWrap .inner .pageNav .dots {
  margin-right: 10px;
}

.postWrap {
  background: #e8f5ff url(../img/sec/charm/bg_page.svg) no-repeat center top;
  background-size: 100% 760px;
  padding: 80px 4% 100px;
}
.postWrap .inner {
  max-width: 960px;
  margin: 0 auto;
  background-color: #FFF;
  border-radius: 12px;
  box-sizing: border-box;
  padding: 4%;
}
.postWrap .inner .categoryTag {
  background-color: #DDD;
  color: #FFF;
  display: inline-block;
  padding: 9px 15px;
  font-size: 1.6rem;
  margin: 0 0 20px;
  line-height: 1;
  font-weight: bold;
}
.postWrap .inner .categoryTag.infoTag {
  background-color: #53b3c8;
}
.postWrap .inner .categoryTag.eventTag {
  background-color: #f7ab00;
}
.postWrap .inner .categoryTag.importantTag {
  background-color: #ed6d46;
}
.postWrap .inner h1 {
  border-bottom: solid 4px #dddddd;
  position: relative;
  padding: 15px 0 25px;
  margin: 0 0 30px;
  font-size: 3.4rem;
}
.postWrap .inner h1::after {
  position: absolute;
  content: "";
  width: 200px;
  height: 4px;
  background-color: #1b539e;
  left: 0;
  bottom: -4px;
}
.postWrap .inner .date {
  text-align: right;
  display: block;
  margin: 0 0 30px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-family: "century gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.postWrap .inner .postContents {
  border-bottom: dotted 2px #b5b5b5;
  padding: 0 0 60px;
  margin: 0 0 40px;
}
.postWrap .inner .postContents h2 {
  margin: 0 0 40px;
  background-color: #f3f3f3;
  padding: 10px 15px 10px;
  border-left: solid 5px #1b539e;
}
.postWrap .inner .postContents h3 {
  margin: 0 0 30px;
  border-bottom: solid 1px #DDD;
  padding: 0 15px 12px 15px;
}
.postWrap .inner .postContents p {
  margin: 0 0 30px;
}
.postWrap .inner .postContents ul {
  margin: 0 0 30px;
}
.postWrap .inner .postContents ul li {
  padding: 0 0 0 16px;
  position: relative;
  margin: 0 0 6px;
}
.postWrap .inner .postContents ul li::before {
  content: "";
  position: absolute;
  background-color: #0e4e8e;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  left: 2px;
  top: 10px;
}
.postWrap .inner .postContents ol {
  counter-reset: number;
  margin: 0 0 30px;
}
.postWrap .inner .postContents ol li {
  padding: 0 0 0 20px;
  margin: 0 0 6px;
  position: relative;
}
.postWrap .inner .postContents ol li::before {
  counter-increment: number;
  content: counter(number) ".";
  position: absolute;
  left: 0;
  top: 0;
}
.postWrap .inner .postContents figure {
  margin: 0 0 30px;
}
.postWrap .inner .postContents table {
  width: 100%;
  margin: 0 0 40px;
}
.postWrap .inner .postContents table tr th, .postWrap .inner .postContents table tr td {
  padding: 20px;
  border: solid 1px #d3d3d3;
}
.postWrap .inner .postContents table tr th {
  background-color: #f5f5f5;
}
.postWrap .inner .postContents table thead th {
  color: #FFF;
  background-color: #698fb5;
  padding: 12px;
}
.postWrap .inner .listBack {
  text-align: right;
}
.postWrap .inner .listBack a {
  display: inline-block;
  border: solid 2px #000;
  font-size: 1.6rem;
  padding: 14px 60px;
  font-weight: bold;
  position: relative;
  box-sizing: border-box;
  background-color: #FFF;
  filter: drop-shadow(4px 4px 0 #e1dddd);
}
.postWrap .inner .listBack a::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-top: solid 1px;
  border-right: solid 1px;
  top: 50%;
  margin-top: -5px;
  right: 24px;
  color: #000;
  display: block;
  transform: rotate(45deg);
  transition: all 0.2s;
}
.postWrap .inner .listBack a:hover::before {
  right: 22px;
}

/*=================================================================*/
/*	お問合わせ　同窓会 情報送信フォーム　資料請求フォーム
/*=================================================================*/
.formTbl {
  background-color: #f6fcff;
}
.formTbl.docForm th, .formTbl.contactForm th {
  width: 250px;
  box-sizing: border-box;
}
.formTbl tr th, .formTbl tr td {
  background-color: unset;
  border: none;
  padding: 20px 30px;
}
.formTbl tr:nth-child(odd) {
  background-color: #e7f8ff;
}
.formTbl tr th {
  border-right: solid 2px #FFF;
}
.formTbl tr th.req {
  position: relative;
}
.formTbl tr th.req::before {
  position: absolute;
  content: "必須";
  background-color: #f3006a;
  color: #FFF;
  border-radius: 4px;
  right: 20px;
  top: 50%;
  margin-top: -15px;
  padding: 3px 8px;
}
.formTbl tr td input[type=text] {
  background-color: #FFF;
  border-radius: 8px;
  border: solid 1px #b6b6b6;
  padding: 12px;
  box-sizing: border-box;
}
.formTbl tr td input[type=text]::-moz-placeholder {
  color: #DDD;
}
.formTbl tr td input[type=text]::placeholder {
  color: #DDD;
}
.formTbl tr td > input[type=text] {
  width: 100%;
}
.formTbl tr td > input[type=text].w100 {
  width: 100px;
}
.formTbl tr td > input[type=text] {
  width: 100%;
}
.formTbl tr td > input[type=text].w100 {
  width: 100px;
}
.formTbl tr td textarea {
  background-color: #FFF;
  border-radius: 8px;
  border: solid 1px #b6b6b6;
  padding: 12px;
  width: 100%;
  box-sizing: border-box;
}
.formTbl tr td .postNumTxt {
  display: inline-block;
  margin: 10px 0 0 10px;
  font-size: 1.6rem;
}
.formTbl tr td .postNum {
  margin: 0 0 20px;
}
.formTbl tr td .address01, .formTbl tr td .address02 {
  margin: 0 0 20px;
}
.formTbl tr td .address01 > span, .formTbl tr td .address02 > span {
  min-width: 5em;
  display: inline-block;
}
.formTbl tr td .address01 input[type=text], .formTbl tr td .address02 input[type=text] {
  width: calc(100% - 5em);
}
.formTbl tr td .address01 {
  margin: 0 0 20px;
}
.formTbl tr td span.mwform-radio-field {
  margin: 0 20px 0 0;
}
.formTbl tr td span.mwform-radio-field input[type=radio] {
  transform: scale(1.4);
  margin-right: 5px;
}
.formTbl tr td .gakunen {
  margin: 0 0 20px;
}
.formTbl tr td .gakunen select {
  background-color: #FFF;
  border: solid 1px #c9c9c9;
  padding: 5px 15px;
}
.formTbl tr td.checkBox {
  padding: 20px 30px 5px;
}
.formTbl tr td.checkBox > span {
  white-space: nowrap;
  display: inline-block;
  margin: 0 15px 15px 0;
}
.formTbl tr td.checkBox > span input {
  margin-right: 5px;
}
.formTbl tr td label {
  cursor: pointer;
}

.orangeTxt {
  /*color: #ff5200;*/
  border: solid 3px #ffaf89;
  padding: 15px;
  border-radius: 12px;
}

.pageContents .mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0;
}

img.mark {
  width: auto;
}

/* privacyCheck
-------------------------------------------------------------------*/
.privacyCheck {
  text-align: center;
  padding: 20px 0 20px;
}
.privacyCheck span label {
  font-weight: bold;
  cursor: pointer;
}
.privacyCheck span label input[type=checkbox] {
  display: inline-block;
  margin-right: 10px;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  transform: scale(1.4);
}
.privacyCheck .ptxt {
  margin: 20px;
  font-size: 1.4rem;
}
.privacyCheck .ptxt a {
  text-decoration: underline;
}

.mw_wp_form_confirm .privacyCheck {
  display: none;
}

.submitWrap {
  text-align: center;
}
.submitWrap input[type=submit] {
  -webkit-appearance: none;
  display: inline-block;
  background-color: #134a94;
  border: none;
  color: #FFF;
  font-size: 2.2rem;
  border-radius: 8px;
  text-align: center;
  filter: drop-shadow(3px 3px 0px #dddddd);
  box-sizing: border-box;
  padding: 20px 60px;
  line-height: 1.4;
  margin: 0 20px 20px;
  cursor: pointer;
  transition: all 0.3s;
  width: 300px;
}
.submitWrap input[type=submit]:hover {
  opacity: 0.7;
  filter: drop-shadow(0 0 0 #dddddd);
}
.submitWrap input[type=submit].backBtn {
  background-color: #f5f5f5;
  color: #333;
}

.mw_wp_form span.error {
  background-color: #fffac3;
  margin: 10px 0 0;
  padding: 10px;
}

.formCaution {
  padding: 0 4%;
}

.ncontactFinishWrap {
  margin: 0 auto;
  padding: 80px 20px;
}
.ncontactFinishWrap p {
  margin: 0 0 20px;
}
.ncontactFinishWrap .contactAddress {
  padding: 20px 30px 5px;
  margin: 40px 0 40px;
  background-color: #daf6ff;
}

.bottomAddress {
  padding: 20px 25px;
  background-color: #f1f1f1;
  border-radius: 8px;
}

.confirmOpen {
  display: none;
  color: #ff8d00;
  font-size: 1.8rem;
  text-align: center;
  margin: 0 0 20px;
  font-weight: bold;
}

.mw_wp_form_confirm .privacyCheck {
  display: none;
}
.mw_wp_form_confirm .confirmHide {
  display: none !important;
}
.mw_wp_form_confirm .confirmOpen {
  display: block;
}
.mw_wp_form_confirm table.contactTbl {
  margin: 0 0 40px;
}
.mw_wp_form_confirm table.contactTbl tr th {
  color: #a9a9a9;
}

/*=================================================================*/
/*	学校視察・見学ご希望の方へ（団体用)
/*=================================================================*/
.visitBtn {
  margin: 0 0 60px;
}
.visitBtn > a {
  width: 32%;
  margin: 0 30px;
  min-width: unset;
}
.visitBtn > a.doc {
  background: #FFF url(../img/sec/school-visit/icon_doc.png) no-repeat left 16px center;
}
.visitBtn > a.mail {
  background: #FFF url(../img/sec/school-visit/icon_mail.png) no-repeat left 16px center;
}

/*=================================================================*/
/*	リンク集
/*=================================================================*/
.links .pageContents {
  padding: 0;
}

.blue2Tone {
  background: #ecf4ff url(../img/sec/charm/bg_page.svg) no-repeat center top;
  background-size: 100% 760px;
  padding: 80px 4% 100px;
}
.blue2Tone .inner {
  max-width: 960px;
  margin: 0 auto;
  background-color: #FFF;
  border-radius: 12px;
  padding: 4%;
  box-sizing: border-box;
}

.linkDl dl {
  border-bottom: dashed 1px #d6d6d6;
  display: flex;
  justify-content: space-between;
  margin: 0 0 40px;
  padding: 0 0 40px;
}
.linkDl dl:last-child {
  border-bottom: none;
  margin: 0;
  padding: 0;
}
.linkDl dl dt {
  width: 200px;
  display: flex;
  align-items: center;
  font-size: 2.2rem;
}
.linkDl dl dt span {
  background-color: #DDD;
  display: block;
  width: 150px;
  text-align: center;
  border-radius: 4px;
  padding: 9px;
  box-sizing: border-box;
  line-height: 1;
  font-weight: bold;
  font-size: 1.6rem;
}
.linkDl dl dd {
  width: calc(100% - 200px);
}
.linkDl dl dd ul li {
  position: relative;
  padding: 0 0 0 20px;
  margin: 0 0 7px;
}
.linkDl dl dd ul li a {
  padding: 0 25px 0 20px;
  display: inline-block;
  background: url(../img/union/icon_blue_arrow.svg) no-repeat left top 6px, url(../img/sec/icon_outlink.svg) no-repeat right top 6px;
  background-size: 14px auto, 14px auto;
}
.linkDl dl dd ul li a:hover {
  text-decoration: underline;
}

/*=================================================================*/
/*	個人情報保護方針
/*=================================================================*/
/*=================================================================*/
/*	サイトマップ
/*=================================================================*/
.site-map .pageContents {
  padding: 0;
}

.col2LinkWrap {
  display: flex;
  justify-content: space-between;
}
.col2LinkWrap .left {
  width: 45%;
}
.col2LinkWrap .right {
  width: 55%;
}
.col2LinkWrap .col.fs24 {
  font-size: 2.4rem;
}
.col2LinkWrap .col > ul {
  margin: 0 0 40px;
}
.col2LinkWrap .col > ul > li {
  margin: 0 0 30px;
}
.col2LinkWrap .col > ul > li:last-child {
  margin: 0;
}
.col2LinkWrap .col > ul > li > a {
  color: #000;
  font-size: 2rem;
  font-weight: bold;
  padding: 0 25px 0 25px;
  display: inline-block;
  background: url(../img/union/icon_blue_arrow.svg) no-repeat left top 7px;
  background-size: 14px auto;
}
.col2LinkWrap .col > ul > li > ul {
  padding: 10px 0 0 15px;
}
.col2LinkWrap .col > ul > li > ul > li {
  margin: 0 0 5px;
}
.col2LinkWrap .col > ul > li > ul > li > a {
  color: #000;
  font-size: 1.6rem;
  background: url(../img/union/icon_black_arrow.svg) no-repeat left top 7px;
  padding: 0 0 0 15px;
}

/*=================================================================*/
/*	検索
/*=================================================================*/
.searchResult {
  text-align: center;
  margin: 0 0 20px;
  font-weight: bold;
}

/*=================================================================*/
/*	404
/*=================================================================*/
.page404 .pageContents {
  padding: 0;
}

.notfound {
  text-align: center;
}
.notfound h2 {
  margin: 0 0 30px;
}
.notfound p {
  margin: 0 0 30px;
}
.notfound .linkBtn a {
  display: inline-block;
  background-color: #006cb8;
  color: #FFF;
  font-weight: bold;
  padding: 20px 60px;
  box-sizing: border-box;
  filter: drop-shadow(4px 4px 0 #e2e2e2);
}

/*=================================================================*/
/*	ホースセラピー
/*=================================================================*/
.horse_therapy .pageTitleWrap .pageTitle {
  background: url(../img/sec/horse_therapy/page_img.jpg) no-repeat center center;
  background-size: cover;
}
.horse_therapy .pageContents {
  padding: 80px 0 0;
}
.horse_therapy .inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 4%;
}
.horse_therapy h2.h2Style01::after {
  background-color: #0a617f;
}
.horse_therapy .imgTxtBox .box .txt .greenTtl dt {
  color: #0a617f;
}
.horse_therapy .horse_info {
  background: url(../img/sec/horse_therapy/fence.svg) center bottom repeat-x;
  background-size: 71px 80px;
  padding-bottom: 100px;
}
.horse_therapy .horse_info .imgTxtBox {
  border: solid 1px #87c6dc;
}
.horse_therapy .horse_info .imgTxtBox .box:nth-child(odd) {
  flex-flow: row;
}
.horse_therapy .horse_news h2 {
  font-size: 3.6rem;
  padding: 0 0 20px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.horse_therapy .horse_news .img_h2 {
  width: 338px;
  margin: 0 auto 40px;
  display: block;
}
.horse_therapy .horse_news .news_col {
  display: flex;
  gap: 30px;
}
.horse_therapy .horse_news .news_col li {
  width: 33%;
  border: solid 1px #87c6dc;
  border-radius: 16px;
}
.horse_therapy .horse_news .news_col li img {
  border-radius: 16px 16px 0 0;
}
.horse_therapy .horse_profile {
  background: #d9f1f4;
  padding-top: 60px;
  margin-bottom: 80px;
}
.horse_therapy .horse_profile .imgTxtBox .box {
  align-items: center;
}
.horse_therapy .horse_profile .imgTxtBox .box .txt dl {
  display: flex;
  flex-wrap: wrap;
}
.horse_therapy .horse_profile .imgTxtBox .box .txt dl dt {
  font-size: 1.6rem;
  width: 20%;
  margin: 0 0 5px;
}
.horse_therapy .horse_profile .imgTxtBox .box .txt dl dd {
  width: 80%;
}
.horse_therapy .horse_profile .imgTxtBox .box .img {
  position: relative;
}
.horse_therapy .horse_profile .imgTxtBox .box .img p {
  position: absolute;
  background: #01afc8;
  padding: 0 20px;
  color: #fff;
  font-weight: bold;
  font-size: 2.4rem;
  transform: rotate(-5deg);
  top: -10px;
  left: -10px;
}
.horse_therapy .horse_profile .imgTxtBox .box .img img {
  border-radius: 16px;
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.1);
}
.horse_therapy .horse_profile .imgTxtBox .box:first-child {
  border-bottom: dashed 1px #87c6dc;
}
.horse_therapy .horse_course {
  margin-bottom: 80px;
}
.horse_therapy .horse_course ul.horse_col {
  display: flex;
  gap: 30px;
  margin-top: 100px;
}
.horse_therapy .horse_course ul.horse_col li {
  position: relative;
  width: 33%;
  background: #d9f1f4;
  border-radius: 16px;
}
.horse_therapy .horse_course ul.horse_col li .point {
  position: absolute;
  display: flex;
  flex-direction: column;
  font-size: 1.4rem;
  font-weight: bold;
  background: #01afc8;
  border-radius: 50px;
  width: 90px;
  height: 90px;
  align-items: center;
  justify-content: center;
  line-height: 2.6rem;
  color: #fff;
  top: -55px;
  left: 50%;
  margin-left: -45px;
}
.horse_therapy .horse_course ul.horse_col li .point span {
  font-size: 3.6rem;
}
.horse_therapy .horse_course ul.horse_col li dl {
  padding: 30px;
}
.horse_therapy .horse_course ul.horse_col li dl dt {
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  min-height: 124px;
  box-sizing: border-box;
  padding: 20px 0;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.horse_therapy .horse_course ul.horse_col li dl dd {
  font-size: 1.6rem;
}
.horse_therapy .horse_path {
  margin-bottom: 80px;
}
.horse_therapy .horse_path .path_col {
  display: flex;
  justify-content: space-between;
  border: 1px solid #87c6dc;
  border-radius: 8px;
  align-items: center;
  padding-left: 3vw;
}
.horse_therapy .horse_path .path_col dl dt {
  display: flex;
  gap: 3vw;
}
.horse_therapy .horse_path .path_col dl dt ul li {
  margin-bottom: 20px;
  padding-left: 30px;
  font-weight: bold;
  position: relative;
}
.horse_therapy .horse_path .path_col dl dt ul li::before {
  position: absolute;
  content: "";
  background-color: #01afc8;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  top: 6px;
  left: 10px;
}
.horse_therapy .horse_path .path_col .img {
  width: 47%;
}
.horse_therapy .horse_path .path_col .img img {
  border-radius: 0 8px 8px 0;
}
.horse_therapy .horse_lesson {
  background: #d9f1f4;
  padding-top: 60px;
  margin-bottom: 80px;
}
.horse_therapy .horse_lesson .imgTxtBox .box:first-child {
  border-bottom: dashed 1px #87c6dc;
}
.horse_therapy .horse_facility {
  background: url(../img/sec/horse_therapy/fence02.svg) center bottom repeat-x;
  background-size: 71px 300px;
  padding-bottom: 100px;
}
.horse_therapy .horse_facility .horse_fc_img {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.horse_therapy .horse_facility .horse_fc_img li {
  width: 47.916%;
  margin: 0 0 4%;
  position: relative;
}
.horse_therapy .horse_facility .horse_fc_img li img {
  border: none;
  vertical-align: middle;
  border-radius: 6px;
  max-width: 100%;
  height: auto;
}
.horse_therapy .horse_facility .horse_fc_img li span {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 0 0 6px 6px;
  color: #fff;
  display: block;
  width: 100%;
  bottom: 0;
  box-sizing: border-box;
  padding: 12px 20px;
  letter-spacing: 0.1em;
}

/*******************************************************************/
/* Middle Size
/*******************************************************************/
@media screen and (max-width:980px) {
  /*<start>==========================================================*/
  /*  searchBox
  ---------------------------------------------------------------*/
  .searchBox {
    width: 100%;
    top: 88px;
  }
  /*<end>============================================================*/
}
/*******************************************************************/
/* PC */
/*******************************************************************/
@media print, screen and (min-width: 769px) {
  /*<start>==========================================================*/
  /*=================================================================*/
  /*	〇〇〇〇 */
  /*=================================================================*/
  /*<end>============================================================*/
}
/*******************************************************************/
/* SP */
/*******************************************************************/
@media screen and (max-width: 768px) {
  /*<start>==========================================================*/
  /*=================================================================*/
  /*	下層共通
  /*=================================================================*/
  /*  searchBox
  ---------------------------------------------------------------*/
  .searchBox {
    top: 84px;
  }
  /*  下層タイトルイメージ
  ---------------------------------------------------------------*/
  .pageTitleWrap .pageTitle {
    min-height: 180px;
    font-size: 2.6rem;
    text-align: center;
    padding: 50px 20px;
    line-height: 1.2;
  }
  .pageTitleWrap .pageTitle .titleInner {
    min-width: 280px;
    padding: 13px 15px;
  }
  .pageTitleWrap .pageTitle .titleInner::after {
    content: none;
  }
  .pageTitleWrap .pageTitle .titleInner .en {
    font-size: 1rem;
    margin: 0 0 8px;
  }
  .pageTitleWrap .breadcrumb {
    padding: 10px 15px;
  }
  .voice .pageTitleWrap .pageTitle {
    background: url(../img/sec/voice/sp/page_img.jpg) no-repeat center top;
    background-size: cover;
  }
  .student .pageTitleWrap .pageTitle {
    background: url(../img/sec/student/sp/page_img.jpg) no-repeat center top;
    background-size: cover;
  }
  .pageContents {
    padding: 40px 0;
  }
  /*  見出し
  ---------------------------------------------------------------*/
  h2.h2Style01 {
    font-size: 3rem;
    margin: 0 0 40px;
    padding: 0 0 15px;
  }
  h2.h2Style02 {
    font-size: 2.4rem;
    padding: 10px 22px;
    margin: 40px 0 30px;
  }
  .ttlBtmdotLine {
    font-size: 2.2rem;
  }
  .imgWrap {
    text-align: center;
    margin: 0 0 40px;
  }
  /*  ページ内リンク
  ---------------------------------------------------------------*/
  .pageInLink {
    margin: 0 auto 40px;
  }
  .pageInLink li {
    margin: 0 20px 10px 0;
  }
  .pageInLink li:last-child a {
    padding: 0 0 0 22px;
  }
  .pageInLink li a {
    padding: 0 20px 0 22px;
  }
  /*  コンテンツ周り
  ---------------------------------------------------------------*/
  .contWrap {
    padding: 0 4% 40px;
  }
  .topGrayBg {
    padding: 60px 0 0;
  }
  .skyBg {
    padding: 60px 4%;
  }
  /*  テーブルスライド用
  ---------------------------------------------------------------*/
  .tblWrap {
    position: relative;
    overflow-x: scroll;
    margin: 0 0 4.6% 0;
    width: 100%;
  }
  .tblWrap::before {
    content: "※表はスライドできます。";
    font-size: 1.6rem;
    color: #ff6a00;
    margin: 0 0 5px;
    display: block;
  }
  .tblWrap table {
    width: 800px;
  }
  /*=================================================================*/
  /*	学校案内
  /*=================================================================*/
  .greeting {
    margin: 0 auto 60px;
  }
  .greeting .greetingMessage strong {
    font-size: 2.8rem;
  }
  .greeting .greetingTxt img {
    width: 120px;
    margin: 0 0 15px 15px;
  }
  .greeting .greetingName {
    margin: 0 0 60px;
  }
  .greeting .greetingName .jp span {
    font-size: 2rem;
    display: block;
  }
  .greeting .teachweHistory dt {
    font-size: 2.4rem;
  }
  .greeting .teachweHistory dd table tr th, .greeting .teachweHistory dd table tr td {
    display: block;
  }
  .greeting .teachweHistory dd table tr th {
    padding: 20px 10px 10px;
  }
  .greeting .teachweHistory dd table tr td {
    padding: 0 10px 20px;
  }
  .spirits .spiritsTxt {
    text-align: center;
    margin: 0 0 40px;
  }
  .spirits .olNumList li {
    font-size: 1.6rem;
    padding: 15px 0 15px 58px;
  }
  /*=================================================================*/
  /*	アクセス
  /*=================================================================*/
  .accessWrap .accessWay {
    display: block;
  }
  .accessWrap .accessWay .txt {
    width: 100%;
  }
  .accessWrap .accessWay .img {
    width: 100%;
    max-width: unset;
    margin: 20px 0 0;
  }
  /*=================================================================*/
  /*	施設紹介
  /*=================================================================*/
  .facility .pageContents {
    padding: 60px 0 0;
  }
  .scoolFacility .inner .facilityList {
    margin: 0 0 40px;
  }
  .scoolFacility .inner .facilityList::after {
    content: none;
  }
  .scoolFacility .inner .facilityList li {
    width: 48%;
    margin: 0 0 4%;
  }
  .scoolFacility .inner .facilityList li a::before {
    width: 20px;
    height: 20px;
    background: url(../img/sec/about/facility/icon_popup.png) no-repeat 0 0;
    background-size: 20px 20px;
    top: 10px;
    right: 10px;
  }
  .scoolFacility .schoolMap {
    padding: 40px 4% 48px;
  }
  .dogran .inner h2 {
    margin: 0 0 40px;
  }
  .dogran .inner .dogranTxt {
    margin: 0 0 40px;
  }
  .dogran .inner .dogranTxt p.top {
    font-size: 3rem;
    margin: 0 0 30px;
  }
  .dogran .inner .dogranTxt p.bottom {
    margin: 0 0 40px;
  }
  .dogran .inner .dogranImg {
    margin: 0 0 70px;
  }
  .dogran .inner .dogranImg li {
    overflow: hidden;
    width: 31.25%;
    border-radius: 12px;
    filter: drop-shadow(4px 4px 0 rgb(215, 230, 214));
  }
  .dogran .inner .ogranSummary {
    background-color: #FFF;
    padding: 35px 20px 10px;
    position: relative;
    border: solid 2px #c2deb8;
    margin: 0 0 40px;
    display: block;
  }
  .dogran .inner .ogranSummary h3 {
    width: 180px;
    left: 50%;
    margin-left: -90px;
  }
  .dogran .inner .ogranSummary .txt {
    width: 100%;
    margin: 0 0 20px;
  }
  .dogran .inner .ogranSummary .txt dl dt {
    width: 80px;
  }
  .dogran .inner .ogranSummary .txt dl dd {
    width: calc(100% - 80px);
  }
  .dogran .inner .ogranSummary .img {
    width: auto;
  }
  .dogran .dogranBanner p {
    font-size: 1.5rem;
  }
  /*=================================================================*/
  /*	日章学園グループ
  /*=================================================================*/
  .groupWrap {
    background-color: #e4f5fc;
    padding: 40px 4%;
  }
  .groupWrap .inner {
    padding: 8% 5% 2%;
  }
  .groupWrap .inner .groupColumn {
    display: block;
  }
  .groupWrap .inner .groupColumn .left {
    width: 100%;
  }
  .groupWrap .inner .groupColumn .right {
    width: 100%;
  }
  /*=================================================================*/
  /*	4つの魅力
  /*=================================================================*/
  /*=================================================================*/
  /*	完全個室の学生寮
  /*=================================================================*/
  /*=================================================================*/
  /*	魅力ある単位制×全日制
  /*=================================================================*/
  /*=================================================================*/
  /*	楽しいスクールライフ
  /*=================================================================*/
  /*=================================================================*/
  /*	留学生とともに学ぶ国際交流
  /*=================================================================*/
  /*=================================================================*/
  /*	あなたが輝く進路サポート
  /*=================================================================*/
  /*=================================================================*/
  /*	卒業生・在校生・保護者/卒業生の家族の声・保護者の声
  /*=================================================================*/
  /*=================================================================*/
  /*	学校説明会・入学生徒募集要項・奨学金制度
  /*=================================================================*/
  /*=================================================================*/
  /*	よくあるご質問
  /*=================================================================*/
  /*=================================================================*/
  /*	在校生の方へ
  /*=================================================================*/
  /*=================================================================*/
  /*	卒業生の方へ
  /*=================================================================*/
  /*=================================================================*/
  /*	お知らせ
  /*=================================================================*/
  /*=================================================================*/
  /*	お問い合わせ　同窓会 情報送信フォーム　資料請求フォーム
  /*=================================================================*/
  /* privacyCheck
  -------------------------------------------------------------------*/
  /*=================================================================*/
  /*	学校視察・見学ご希望の方へ（団体用)
  /*=================================================================*/
  /*=================================================================*/
  /*	リンク集
  /*=================================================================*/
  /*=================================================================*/
  /*	個人情報保護方針
  /*=================================================================*/
  /*=================================================================*/
  /*	サイトマップ
  /*=================================================================*/
  /*=================================================================*/
  /*	ホースセラピー
  /*=================================================================*/
  /*<end>============================================================*/
}
@media screen and (max-width: 768px) and (max-width: 1280px) {
  /*<start>==========================================================*/
  .charmWrap .inner .pointList > li dl dt p {
    font-size: 2.1vw;
  }
  .charmWrap .inner .pointList > li:nth-child(4) dl dt p {
    font-size: 1.6vw;
  }
  /*<end>============================================================*/
}
@media screen and (max-width: 768px) {
  .charmWrap {
    background: url(../img/sec/charm/bg_page.svg) no-repeat center top;
    background-size: 500% auto;
    padding: 50px 4% 30px;
  }
  .charmWrap .inner .topMessage {
    font-size: 3.6rem;
  }
  .charmWrap .inner .pointList {
    display: block;
  }
  .charmWrap .inner .pointList > li {
    width: 100%;
  }
  .charmWrap .inner .pointList > li dl dt p {
    font-size: 5vw;
  }
  .charmWrap .inner .pointList > li dl dt .num {
    width: 90px;
    height: 90px;
    font-size: 1rem;
    margin-top: -45px;
    text-align: center;
  }
  .charmWrap .inner .pointList > li dl dt .num span {
    font-size: 4.2rem;
  }
  .charmWrap .inner .pointList > li dl dd .pageLink li a {
    padding: 3px 0 3px 27px;
  }
  .charmWrap .inner .pointList > li dl dd .pageLink li a.outLink {
    padding: 3px 0 3px 20px;
  }
  .charmWrap .inner .pointList > li:nth-child(4) dl dt p {
    font-size: 4.6vw;
  }
  .charmWrap .inner .pointList > li:nth-child(5) dl dt p {
    font-size: 4.2vw;
  }
  .dormitoryWrap .inner .dormitoryPoint {
    display: block;
  }
  .dormitoryWrap .inner .dormitoryPoint li {
    width: 100%;
    margin: 0 0 20px;
  }
  .dormitoryWrap .inner .dormitoryPoint li .box {
    padding: 45px 20px 15px;
  }
  .dormitoryWrap .inner .dormitoryPoint li .box .icon img {
    width: auto;
  }
  .dormitoryWrap .inner .dormitoryPoint li .box p {
    font-size: 3rem;
  }
  .dormitoryWrap .inner .dormitoryPoint li .box p span {
    font-size: 1.8rem;
  }
  .dormitoryWrap .inner .dormitoryPoint + p {
    margin: 0 0 40px;
  }
  .dormitoryWrap .inner .eat h2 {
    width: 120px;
    height: 120px;
    border-radius: 100%;
    font-size: 2.2rem;
    left: -7px;
    top: -2px;
  }
  .dormitoryWrap .inner .eat p {
    padding: 24px 10px 10px 123px;
  }
  .dormitoryWrap .inner .eat .img {
    padding: 0 4%;
  }
  .dormitoryWrap .inner .hojo {
    padding: 30px;
    display: block;
    margin: 0 0 40px;
  }
  .dormitoryWrap .inner .hojo .left {
    width: 100%;
    margin: 0 0 20px;
  }
  .dormitoryWrap .inner .hojo .left .ebino {
    margin: 0 0 10px;
    font-size: 2.6rem;
    font-weight: bold;
  }
  .dormitoryWrap .inner .hojo .left .redBg {
    font-size: 7.4vw;
    width: 100%;
  }
  .dormitoryWrap .inner .hojo .right {
    width: 100%;
  }
  .dormitoryWrap .inner .hojo .right .price {
    font-size: 2.4rem;
  }
  .dormitoryWrap .inner .hojo .right .bluetxt {
    font-size: 2rem;
  }
  .dormitoryWrap .inner .hojo .right .caution span {
    padding: 5px 10px;
    font-size: 1.4rem;
  }
  .btnWrap a {
    width: 90%;
    max-width: 300px;
    min-width: unset;
    box-sizing: border-box;
  }
  .creditWrap .imgTxtBox {
    margin: 0 0 60px;
  }
  .creditWrap .txtImg .img {
    width: 100%;
  }
  .creditWrap .creditCase {
    border-bottom: dashed 1px #d6d6d6;
    margin: 0 0 40px;
    padding: 0;
  }
  .creditWrap .creditCase h3 {
    font-size: 2rem;
    margin: 0 0 20px;
  }
  .creditWrap .txtImg h3 {
    margin-top: 0;
  }
  .creditWrap .txtImg .img img {
    border-radius: 8px;
  }
  .strongMessage {
    margin: 0 0 40px;
  }
  .strongMessage strong {
    font-size: 3rem;
  }
  .imgTxtBox {
    padding: 20px;
  }
  .imgTxtBox .box {
    display: block;
    margin: 0 0 30px;
    padding: 0 0 30px;
  }
  .imgTxtBox .box:last-child {
    border-bottom: none;
    margin: 0;
    padding: 0;
  }
  .imgTxtBox .box:nth-child(odd) {
    flex-flow: unset;
  }
  .imgTxtBox .box .txt {
    width: 100%;
    margin: 0 0 20px;
  }
  .imgTxtBox .box .txt dl dt br {
    display: none;
  }
  .imgTxtBox .box .txt dl.blueTtl dt {
    font-size: 2.2rem;
  }
  .imgTxtBox .box .txt dl.blueTtl dt.firstLarge::first-letter {
    font-size: 3.2rem;
  }
  .imgTxtBox .box .img {
    width: 100%;
  }
  .imgTxtBox.noFrame {
    border: none;
  }
  .imgTxtBox.noFrame .box {
    padding: 0 20px 40px;
  }
  .txtImg {
    display: block;
    margin: 0 0 40px;
  }
  .txtImg .txt {
    width: 100%;
    margin: 0 0 20px;
  }
  .txtImg .img {
    width: 100%;
  }
  .school-life .pageContents {
    padding: 60px 0 0;
  }
  .school-life .pageContents .strongMessage {
    padding: 0 4%;
  }
  .school-life .pageContents .imgTxtBox {
    padding: 0;
  }
  .school-life .pageContents .imgTxtBox.noFrame .box {
    padding: 0 20px 35px;
  }
  .schoolEvent .topEventBlue {
    font-size: 3.8rem;
    margin: 20px 0 60px;
  }
  .schoolEvent .eventList {
    font-size: 1.4rem;
    margin: 0;
  }
  .schoolEvent .eventList > li {
    width: 48%;
    padding: 38px 15px 10px;
    margin: 0 0 50px;
  }
  .schoolEvent .eventList > li > ul > li {
    padding: 0 0 0 12px;
    position: relative;
    margin: 0 0 5px;
  }
  .schoolEvent .eventList > li > ul > li::before {
    position: absolute;
    content: "";
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    background-color: #006cb8;
    border-radius: 100%;
  }
  .schoolEvent .eventList > li > .month {
    width: 68px;
    height: 68px;
    font-size: 3.8rem;
  }
  .schoolEvent .eventImg {
    width: 100%;
  }
  .internationalTop {
    margin: 0 0 60px;
  }
  .internationalBottom ul li {
    width: 50%;
    font-size: 3.2vw;
  }
  .internationalBottom ul li.red {
    background: #e25429 url(../img/sec/charm/international/icon_earth.png) no-repeat center top 28%;
    background-size: 60px auto;
  }
  .internationalBottom ul li.blue {
    background: #0071a3 url(../img/sec/charm/international/icon_school.png) no-repeat center top 28%;
    background-size: 60px auto;
  }
  .internationalBottom ul li.yellow {
    background: #f5ff5d url(../img/sec/charm/international/icon_japan.png) no-repeat center top 26%;
    background-size: 60px auto;
  }
  .internationalBottom ul li:nth-child(1) {
    order: 1;
  }
  .internationalBottom ul li:nth-child(2) {
    order: 2;
  }
  .internationalBottom ul li:nth-child(3) {
    order: 4;
  }
  .internationalBottom ul li:nth-child(4) {
    order: 3;
  }
  .internationalBottom ul li:nth-child(5) {
    order: 5;
  }
  .internationalBottom ul li:nth-child(6) {
    order: 6;
  }
  .imgTxtBox2 {
    padding: 30px 20px;
    margin: 0 0 40px;
  }
  .imgTxtBox2 .box {
    margin: 0 0 30px;
    padding: 0 0 30px;
  }
  .imgTxtBox2 .box:nth-child(even) .img {
    float: unset;
    margin: 0 0 20px;
    text-align: center;
    width: auto;
  }
  .imgTxtBox2 .box .txt .blueTtl dt {
    font-size: 2.2rem;
  }
  .imgTxtBox2 .box .txt .blueTtl dt.firstLarge::first-letter {
    font-size: 3.2rem;
  }
  .imgTxtBox2 .box .img {
    float: unset;
    margin: 0 0 20px;
    text-align: center;
    width: auto;
  }
  .career-support .pageContents {
    padding: 60px 0 0;
  }
  .supportList {
    display: block;
  }
  .supportList li {
    width: 100%;
    margin: 0 0 20px;
  }
  .supportList li .icon {
    margin: 0 0 15px;
  }
  .supportList li .icon img {
    width: 110px;
  }
  .supportList li dl dt {
    margin: 0 0 10px;
  }
  .courseStatus .courseCase {
    padding: 40px 25px 30px;
  }
  .courseStatus .courseCase dl {
    display: block;
    margin: 0 0 30px;
    padding: 0 0 20px;
  }
  .courseStatus .courseCase dl dt {
    width: 100%;
    display: block;
    margin: 0 0 20px;
  }
  .courseStatus .courseCase dl dd {
    width: 100%;
  }
  .voiceList li {
    display: block;
    padding: 0 0 40px;
    margin: 0 0 40px;
  }
  .voiceList li .img {
    width: 100%;
    padding: 0;
    margin: 0 0 40px;
  }
  .voiceList li .img img {
    width: auto;
  }
  .voiceList li .txt {
    width: 100%;
  }
  .voiceList li .txt > strong {
    font-size: 1.8rem;
    margin: 0 0 20px;
    display: block;
  }
  .telWrap {
    display: block;
  }
  .telWrap dt {
    width: 100%;
    border-right: none;
    border-bottom: solid 1px #b9d6f4;
    padding: 0 0 10px;
  }
  .telWrap dd {
    width: 100%;
    padding: 10px 0 0;
    text-align: center;
  }
  .telWrap dd a {
    display: block;
    pointer-events: all;
  }
  .contactBox {
    display: block;
    text-align: center;
  }
  .contactBox dt {
    border-bottom: dotted 1px #333;
    border-right: none;
    width: 100%;
    padding: 0 0 10px;
  }
  .contactBox dt.center {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .contactBox dd {
    width: 100%;
    padding: 10px 0 0;
  }
  .contactBox.innerW50 {
    text-align: left;
  }
  .contactBox.innerW50 dt {
    width: 100%;
    padding: 0 0 10px;
  }
  .contactBox.innerW50 dd {
    width: 100%;
    padding: 10px 0 0;
  }
  .blueBtn a {
    min-width: unset;
    width: 80%;
  }
  .blueBtn.doc a {
    background: #3677c7 url(../img/sec/summary/icon_doc.png) no-repeat left 20px center;
    background-size: 18px auto;
  }
  .dotBlue dl {
    display: block;
  }
  .dotBlue dl dt {
    flex: 0 0 100%;
    font-size: 1.8rem;
  }
  .dotBlue dl dd {
    width: 100%;
    padding: 20px 0;
  }
  .dotdl dl {
    display: block;
  }
  .dotdl dl dt {
    flex: 0 0 100%;
    font-size: 1.8rem;
    padding: 20px 0 0px;
  }
  .dotdl dl dd {
    width: 100%;
    padding: 20px 0;
  }
  .questionTop {
    margin: 0 0 40px;
  }
  .questionPageLink {
    text-align: left;
    margin: 0 auto 20px;
  }
  .questionPageLink li {
    margin: 0 5px 10px 5px;
  }
  .questionPageLink li a {
    padding: 10px 26px 10px 15px;
  }
  .questionPageLink li a::after {
    width: 4px;
    height: 4px;
    margin-top: -4px;
  }
  .qaBox {
    padding: 20px 10px;
  }
  .qaBox::after {
    width: 19px;
    height: 19px;
    right: 11px;
    top: 31px;
  }
  .qaBox dt > span {
    padding: 7px 24px 7px 48px;
    font-size: 1.8rem;
  }
  .qaBox dt > span::before {
    width: 38px;
    height: 38px;
    font-size: 2rem;
  }
  .qaBox dt::before {
    width: 11px;
    right: 5px;
    top: 20px;
  }
  .qaBox dt::after {
    height: 11px;
    right: 10px;
    top: 15px;
  }
  .qaBox dd {
    padding: 20px 0 0 46px;
    margin: 20px 0 0;
  }
  .qaBox dd::before {
    width: 38px;
    height: 38px;
    font-size: 2rem;
    top: 14px;
  }
  .lineFrame {
    padding: 25px;
    margin: 0 0 40px;
  }
  .grayBox {
    padding: 6%;
  }
  .grayBox.flex {
    display: block;
  }
  .grayBox.flex ul {
    width: 100%;
  }
  .grayBox.flex ul li {
    margin: 0 0 5px;
  }
  .newsWrap {
    background: #ecf4ff url(../img/sec/charm/bg_page.svg) no-repeat center top;
    background-size: 500% auto;
    padding: 50px 4% 30px;
  }
  .newsWrap .inner .newsNav {
    margin: 0 auto 40px;
    width: 96%;
  }
  .newsWrap .inner .newsNav a {
    padding: 15px 10px;
    font-size: 1.6rem;
  }
  .newsWrap .inner .newsNav a::after {
    right: 17px;
  }
  .newsWrap .inner .newsList {
    margin: 0 0 30px;
  }
  .newsWrap .inner .newsList li {
    display: block;
    padding: 12px 10px;
  }
  .newsWrap .inner .newsList li .date {
    display: block;
    width: 100%;
    margin: 0 0 5px;
  }
  .newsWrap .inner .newsList li a {
    width: 100%;
  }
  .newsWrap .inner .pageNav {
    text-align: center;
  }
  .newsWrap .inner .pageNav a {
    padding: 8px 14px;
    margin-bottom: 15px;
  }
  .newsWrap .inner .pageNav .current {
    padding: 8px 14px;
  }
  .postWrap {
    background: #ecf4ff url(../img/sec/charm/bg_page.svg) no-repeat center top;
    background-size: 500% auto;
    padding: 50px 4% 30px;
  }
  .postWrap .inner {
    padding: 6% 4% 8%;
  }
  .postWrap .inner .categoryTag {
    padding: 7px 10px;
    font-size: 1.4rem;
    margin: 0 0 5px;
  }
  .postWrap .inner h1 {
    padding: 15px 0 15px;
    margin: 0 0 25px;
    font-size: 3rem;
    border-bottom: solid 3px #dddddd;
    line-height: 1.3;
  }
  .postWrap .inner h1::after {
    width: 120px;
    height: 3px;
    bottom: -3px;
  }
  .postWrap .inner .postContents {
    padding: 0 0 30px;
    margin: 0 0 30px;
  }
  .postWrap .inner .listBack {
    text-align: center;
  }
  .postWrap .inner .listBack a {
    padding: 14px 40px;
  }
  .formTbl.docForm th, .formTbl.contactForm th {
    width: 100%;
  }
  .formTbl tr th, .formTbl tr td {
    display: block;
    padding: 15px;
  }
  .formTbl tr th {
    border-right: unset;
    border-bottom: solid 2px #FFF;
  }
  .formTbl tr th.req {
    position: relative;
  }
  .formTbl tr th.req::before {
    right: 15px;
    margin-top: -13px;
    padding: 4px 7px;
    line-height: 1;
    font-size: 1.5rem;
  }
  .formTbl tr td .postNum input {
    width: 10em;
  }
  .formTbl tr td .address01 input[type=text], .formTbl tr td .address02 input[type=text] {
    width: 100%;
  }
  .formTbl tr td textarea {
    height: 10em;
  }
  .privacyCheck {
    padding: 0px 0 20px;
  }
  .visitBtn {
    text-align: center;
    margin: 0 0 40px;
  }
  .visitBtn > a {
    display: block;
    width: 80%;
    margin: 0 auto 30px;
    min-width: unset;
  }
  .visitBtn > a.doc {
    background: #FFF url(../img/sec/school-visit/icon_doc.png) no-repeat left 16px center;
    background-size: 20px auto;
  }
  .visitBtn > a.mail {
    background: #FFF url(../img/sec/school-visit/icon_mail.png) no-repeat left 16px center;
    background-size: 20px auto;
  }
  .blue2Tone {
    background: #ecf4ff url(../img/sec/charm/bg_page.svg) no-repeat center top;
    background-size: 500% auto;
    padding: 50px 4% 30px;
  }
  .blue2Tone .inner {
    padding: 8% 6%;
  }
  .linkDl dl {
    display: block;
    margin: 0 0 20px;
    padding: 0 0 20px;
  }
  .linkDl dl dt {
    width: 100%;
    margin: 0 0 20px;
  }
  .linkDl dl dd {
    width: 100%;
  }
  .linkDl dl dd ul li {
    position: relative;
    padding: 0 0 0 20px;
    margin: 0 0 7px;
  }
  .linkDl dl dd ul li a {
    padding: 0 20px 0 20px;
    background: url(../img/union/icon_blue_arrow.svg) no-repeat left top 3px, url(../img/sec/icon_outlink.svg) no-repeat right top 6px;
    background-size: 14px auto, 14px auto;
  }
  .col2LinkWrap {
    display: block;
  }
  .col2LinkWrap .left {
    width: 100%;
  }
  .col2LinkWrap .right {
    width: 100%;
  }
  .col2LinkWrap .col > ul {
    margin: 0 0 15px;
  }
  .col2LinkWrap .col > ul > li {
    margin: 0 0 20px;
  }
  .col2LinkWrap .col > ul > li:last-child {
    margin: 0;
  }
  .col2LinkWrap .col > ul > li > a {
    color: #000;
    font-size: 2rem;
    font-weight: bold;
    padding: 0 25px 0 25px;
    display: inline-block;
    background: url(../img/union/icon_blue_arrow.svg) no-repeat left top 7px;
    background-size: 14px auto;
  }
  .col2LinkWrap .col > ul > li > ul {
    padding: 10px 0 0 15px;
  }
  .col2LinkWrap .col > ul > li > ul > li {
    margin: 0 0 5px;
  }
  .col2LinkWrap .col > ul > li > ul > li > a {
    color: #000;
    font-size: 1.6rem;
    background: url(../img/union/icon_black_arrow.svg) no-repeat left top 7px;
    padding: 0 0 0 15px;
  }
  .horse_therapy .pageContents {
    padding: 40px 0 0;
  }
  .horse_therapy .inner {
    margin: 0 auto;
    padding: 0 4%;
  }
  .horse_therapy .horse_profile {
    background: #d9f1f4;
    padding-top: 60px;
    margin-bottom: 60px;
  }
  .horse_therapy .horse_profile .imgTxtBox {
    padding: 0;
  }
  .horse_therapy .horse_profile .imgTxtBox .box .txt {
    margin-bottom: 30px;
  }
  .horse_therapy .horse_profile .imgTxtBox .box .img p {
    font-size: 2rem;
  }
  .horse_therapy .horse_course {
    margin-bottom: 60px;
  }
  .horse_therapy .horse_course ul.horse_col {
    display: block;
    margin-top: 100px;
  }
  .horse_therapy .horse_course ul.horse_col li {
    width: 100%;
    margin-bottom: 80px;
  }
  .horse_therapy .horse_course ul.horse_col li dl dt {
    font-size: 2rem;
    min-height: 100px;
  }
  .horse_therapy .horse_path {
    margin-bottom: 60px;
  }
  .horse_therapy .horse_path .path_col {
    display: block;
    padding: 30px 20px 20px 20px;
  }
  .horse_therapy .horse_path .path_col dl {
    margin-bottom: 20px;
  }
  .horse_therapy .horse_path .path_col dl dt {
    display: block;
  }
  .horse_therapy .horse_path .path_col dl dt ul li {
    margin-bottom: 10px;
  }
  .horse_therapy .horse_path .path_col .img {
    width: 100%;
  }
  .horse_therapy .horse_path .path_col .img img {
    border-radius: 8px;
  }
  .horse_therapy .horse_lesson .imgTxtBox {
    padding: 0;
  }
  .horse_therapy .horse_facility {
    background: url(../img/sec/horse_therapy/fence03.svg) center bottom repeat-x;
    background-size: 71px 100px;
  }
  .horse_therapy .horse_facility .horse_fc_img {
    margin-bottom: 20px;
    display: auto;
  }
  .horse_therapy .horse_facility .horse_fc_img li {
    width: 100%;
  }
}/*# sourceMappingURL=sec.css.map */