@charset "UTF-8";
/*見出し用*/
/*.common.css********************
ORANGE
f0832c
**********************************/
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

当CSSには、リセット要素 及び webサイト全体を通して 既存クラスに追記して使用する要素（floatクリア・margin width などの数値要素・displayの有無・文字詰め設定など）を記述しています。
初期設定後は基本的に追記不可です。

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* reset */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@400;500;600&family=Shippori+Mincho:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alegreya+SC&display=swap");
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  font-size: 62.5%;
  width: 100%;
  height: 100%;
  font-family: sans-serif;
}

body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  color: #000;
  line-height: 1.5;
  vertical-align: baseline;
  letter-spacing: 0.1em;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  background-color: transparent;
  font-size: 1.4rem;
  height: 100%;
  font-feature-settings: "palt";
}

div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-weight: normal;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, textarea {
  display: block;
}

ul {
  list-style: none;
  list-style-position: outside;
  margin: 0;
  padding: 0;
}

ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

ol {
  list-style: decimal;
  list-style-position: inside;
}

ol li {
  margin-bottom: 5px;
}

li img {
  vertical-align: bottom;
}

div img {
  vertical-align: bottom;
}

caption, th {
  text-align: left;
}

q:before, q:after {
  content: "";
}

a img, :link img, :visited img {
  border: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

strong {
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

input, select {
  vertical-align: middle;
  max-width: 100%;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ins {
  background-color: #dfdfdf;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #dfdfdf;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #dfdfdf;
  margin: 1em 0;
  padding: 0;
}

/*input[type="button"],input[type="submit"] {
-webkit-appearance: none;
border-radius: 0;
	border:none;
	background: #000;
	color:#fff;
	font-size: 14px;
	padding: 10px ;
}*/
/* placeholder */
input::-webkit-input-placeholder {
  color: #666;
  font-size: 14px;
  font-size: 1.4rem;
}

input:-moz-placeholder {
  color: #666;
  font-size: 14px;
  font-size: 1.4rem;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  cursor: pointer;
  outline: none;
  text-decoration: none;
}

a:link {
  text-decoration: none;
  color: #363636;
}

a:visited {
  text-decoration: underline;
  color: #363636;
}

a:active, a:focus {
  opacity: 0.7;
  outline: none;
}

a:hover {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0.7;
}

/*________________ ■全体設定 ________________*/
body {
  width: 100%;
  height: 100%;
  background: #fff;
}

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

■共通設定

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* clear________________*/
.clear {
  clear: both;
}

/*clearfix_2016*/
/* div:after,
ul:after,
dl:after {
	content: "";
	display: block;
	clear: both;
} */
/*非表示*/
.hide-content {
  display: none;
}

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

レスポンシブ 表示切り替え用 汎用設定

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* responsive*/
.mb-object {
  display: none !important;
}

.mb-object_fl {
  display: none !important;
}

.pc-object {
  display: block !important;
}

.pc-object_fl {
  display: flex !important;
}

@media screen and (max-width: 1024px) and (orientation: portrait) {
  .mb-object {
    display: block !important;
  }
  .mb-object_fl {
    display: flex !important;
  }
  .pc-object {
    display: none !important;
  }
  .pc-object_fl {
    display: none !important;
  }
}
/* responsive*/
h3.section-title {
  font-size: calc(1.6rem + 0.3vw);
  font-weight: 500;
  color: #8cced9;
  border: solid 1px #8cced9;
  padding: 0.3em 0.7em;
  margin-bottom: 3vh;
}

h4.center-title {
  font-size: calc(2rem + 1vw);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 3vw;
}

.common-copy {
  font-size: calc(1.4rem + 0.3vw);
  line-height: 1.4;
  font-weight: 500;
  color: #8cced9;
  margin-bottom: 2vh;
}

.border-bottom-title {
  font-size: calc(1.4rem + 0.3vw);
  line-height: 1.4;
  font-weight: 500;
  padding-bottom: 5px;
  border-bottom: 2px solid #8cced9;
  margin-bottom: 2vh;
}

.icon-title {
  font-size: calc(1.4rem + 0.3vw);
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 2vh;
  position: relative;
  padding-left: 1.5em;
}

.icon-title::before {
  content: "";
  position: absolute;
  top: 0.32em;
  left: 0;
  width: 1em;
  height: 1em;
  display: block;
  background: #8cced9;
}

.paragraph {
  display: block;
  margin-bottom: 4vh;
  font-size: 1.5rem;
  line-height: 1.9em;
}

.paragraph.small {
  font-size: 1.3rem;
  line-height: 1.7em;
}

.paragraph.center {
  text-align: center;
}

.paragraph.right {
  text-align: right;
}

.paragraph > a {
  border-bottom: 1px dashed #8cced9;
}

table.table_std {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
  border-top: 3px solid #8cced9;
  border-bottom: 3px solid #8cced9;
  border-left: 1px solid #8cced9;
}

table.table_std th,
table.table_std td {
  border-bottom: 1px solid #8cced9;
  padding: 10px;
  font-size: 14px;
  color: #000;
  text-align: left;
  vertical-align: middle;
  border-right: 1px solid #8cced9;
  background: #FFF;
}

table.table_std th {
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
}

table.table_std th:last-child {
  border-right: 1px solid #8cced9;
}

table.table_std th {
  text-align: center;
  background: #8cced9;
  color: #FFF;
  font-weight: bold;
}

table.table_std th.black {
  color: #000;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}

table.table_std.center td {
  text-align: center;
}

table.table_std.right_td td {
  text-align: right;
}

table.table_std.left_th th {
  text-align: left;
}

table.table_std.small-text th {
  font-size: 12px;
  padding: 5px;
  font-weight: bold;
}

table.table_std.small-text td {
  font-size: 10px;
  padding: 5px;
}

table.table_std th.al_left, table.table_std td.al_left {
  text-align: left;
}

table.table_std th.al_center, table.table_std td.al_center {
  text-align: center;
}

table.table_std th.al_right, table.table_std td.al_right {
  text-align: right;
}

.table_res {
  width: auto;
}

.more-btn {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2vw;
  margin-right: 8vw;
}

.more-btn a {
  background: #fff;
  padding: 0.7em 6vw 0.7em 2vw;
  font-size: 1.6rem;
  font-weight: 500;
  border-radius: 2vw;
  border: solid 1px #000;
  position: relative;
  transition: all 0.4s;
}

.more-btn a::before {
  content: "";
  position: absolute;
  background: url(../images/common/arrow-img01.svg) no-repeat center center;
  background-size: contain;
  width: 2vw;
  height: 1vw;
  top: 50%;
  right: 2vw;
  transition: all 0.4s;
  transform: translateY(-70%);
}

.more-btn a:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}

.more-btn a:hover::before {
  background: url(../images/common/arrow-img02.svg) no-repeat center center;
  background-size: contain;
}

.more-btn.center {
  justify-content: center;
  margin-right: 0;
}

a.link_btn {
  display: flex;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 5px 50px 5px 15px;
  margin-bottom: 10px;
  position: relative;
  color: #8cced9;
  font-size: 1.4rem;
  border: 1px solid #8cced9;
  border-radius: 5px;
}

a.link_btn::after {
  content: "";
  top: 50%;
  right: 10px;
  margin-top: -13px;
  width: 26px;
  height: 26px;
  background: url(../images/common/link-icon.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
}

a.link_btn:hover {
  opacity: 1;
  color: #FFF;
  background: #8cced9;
}

a.link_btn:hover::after {
  background: url(../images/common/link-icon-white.svg) no-repeat center center;
  background-size: contain;
}

a[target=_blank].link_btn::after {
  margin-top: -13px;
  width: 26px;
  height: 26px;
  background: url(../images/common/link-icon-other.svg) no-repeat center center;
  background-size: contain;
}

a[target=_blank].link_btn:hover::after {
  background: url(../images/common/link-icon-other-white.svg) no-repeat center center;
  background-size: contain;
}

a[href$=".pdf"].link_btn::after {
  margin-top: -16px;
  width: 32px;
  height: 32px;
  background: url(../images/common/link-icon-pdf.svg) no-repeat center center;
  background-size: contain;
}

a[href$=".pdf"].link_btn:hover::after {
  background: url(../images/common/link-icon-pdf-white.svg) no-repeat center center;
  background-size: contain;
}

a[href$=".doc"].link_btn::after,
a[href$=".docx"].link_btn::after {
  margin-top: -16px;
  width: 32px;
  height: 32px;
  background: url(../images/common/link-icon-docx.svg) no-repeat center center;
  background-size: contain;
}

a[href$=".doc"].link_btn:hover::after,
a[href$=".docx"].link_btn:hover::after {
  background: url(../images/common/link-icon-docx-white.svg) no-repeat center center;
  background-size: contain;
}

a[href$=".xls"].link_btn::after,
a[href$=".xlsx"].link_btn::after {
  margin-top: -16px;
  width: 32px;
  height: 32px;
  background: url(../images/common/link-icon-excel.svg) no-repeat center center;
  background-size: contain;
}

a[href$=".xls"].link_btn:hover::after,
a[href$=".xlsx"].link_btn:hover::after {
  background: url(../images/common/link-icon-excel-white.svg) no-repeat center center;
  background-size: contain;
}

.disc-list {
  margin-bottom: 4vh;
}

.disc-list li {
  margin-left: 1.5em;
  list-style-type: disc;
}

.disc-list li::marker {
  color: #007497;
}

@media screen and (max-width: 1024px) and (orientation: portrait) {
  .table_res {
    overflow-x: auto;
    width: 100%;
    position: relative;
    padding-top: 1.5em;
  }
  .table_res::before {
    content: "← 左へスワイプしてください";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.2rem;
  }
  .table_res table {
    width: 800px;
  }
  .more-btn a {
    padding: 0.7em 8vw 0.7em 2vw;
    font-size: 1.4rem;
    border-radius: 7vw;
  }
  .more-btn a::before {
    width: 4vw;
    height: 2vw;
  }
  .disc-list li {
    letter-spacing: 0.08em;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(1.3rem + 0.25vw);
  font-weight: 400;
  line-height: 1.8em;
  letter-spacing: 0.1em;
  background: #fff;
  width: 100%;
}

.header {
  width: 100%;
  height: 4vw;
  padding: 0 100px 0 2%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  z-index: 20;
  transition: all 0.4s ease;
}

.header .header-logo {
  width: fit-content;
  height: 3.5vw;
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
}

.header .header-logo img {
  height: 100%;
  display: block;
}

.header .header-target-list {
  display: flex;
  justify-content: space-between;
}

.header .header-target-list li {
  position: relative;
  padding-right: 1em;
  margin-right: 1em;
}

.header .header-target-list li a {
  display: block;
  font-size: 1.5rem;
  line-height: 1.5em;
}

.header .header-target-list li::before {
  content: "";
  position: absolute;
  background: #000;
  width: 1px;
  height: 100%;
  top: 0;
  right: 0;
}

.header .header-target-list li:last-child::before {
  content: unset;
}

.header .header-btn {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10000;
}

.header .header-btn p.btn-border {
  position: relative;
  width: 100px;
  height: 100px;
  background: #8cced9;
  cursor: pointer;
}

.header .header-btn p.btn-border span {
  position: absolute;
  left: 0;
  width: 50px;
  height: 4px;
  background: #fff;
  transition: all 0.3s;
}

.header .header-btn p.btn-border span:nth-of-type(1) {
  top: 33px;
  left: 25px;
}

.header .header-btn p.btn-border span:nth-of-type(2) {
  top: 48px;
  left: 25px;
}

.header .header-btn p.btn-border span:nth-of-type(3) {
  bottom: 33px;
  left: 25px;
}

.header .header-btn.is-show p.btn-border span:nth-of-type(1) {
  top: 48px;
  transform: rotate(45deg);
}

.header .header-btn.is-show p.btn-border span:nth-of-type(2) {
  display: none;
}

.header .header-btn.is-show p.btn-border span:nth-of-type(3) {
  bottom: 48px;
  transform: rotate(-45deg);
}

.header-menu-box {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #8cced9;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s;
  z-index: 15;
  padding: 10vw 7vw 10vw 4vw;
}

.header-menu-box .header-menu-inner {
  display: flex;
  justify-content: space-between;
}

.header-menu-box .header-menu-inner ul.header-menu-list {
  display: flex;
  flex-direction: column;
}

.header-menu-box .header-menu-inner ul.header-menu-list li {
  margin-bottom: 3vw;
}

.header-menu-box .header-menu-inner ul.header-menu-list li dl dt a, .header-menu-box .header-menu-inner ul.header-menu-list li dl dd a {
  display: block;
  color: #fff;
}

.header-menu-box .header-menu-inner ul.header-menu-list li dl dt {
  margin-bottom: 1vh;
  font-size: 2.4rem;
  line-height: 1.5em;
  padding: 0.2em 0;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #fff;
  border-bottom: solid 1px #fff;
}

.header-menu-box .header-menu-inner ul.header-menu-list li dl dd {
  margin-bottom: 1vh;
}

.header-menu-box .header-menu-inner ul.header-menu-list li dl dd a {
  position: relative;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3em;
  transition: all 0.3s;
  padding-left: 1vw;
}

.header-menu-box .header-menu-inner ul.header-menu-list li dl dd a::before {
  content: "";
  position: absolute;
  background: #fff;
  width: 7px;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.header-menu-box .header-menu-inner ul.header-menu-list li dl dd a:hover {
  opacity: 1;
  padding-left: 2vw;
}

.header-menu-box .header-menu-inner ul.header-menu-list li dl dd a:hover::before {
  width: 12px;
}

.header-menu-box .header-menu-inner ul.header-menu-list:nth-of-type(1) {
  width: 20%;
}

.header-menu-box .header-menu-inner ul.header-menu-list:nth-of-type(2) {
  width: 30%;
}

.header-menu-box .header-menu-inner ul.header-menu-list:nth-of-type(3) {
  width: 25%;
}

.header-menu-box .header-menu-inner ul.header-menu-list:nth-of-type(4) {
  width: 20%;
}

.header-menu-box ul.header-menu-target {
  display: flex;
  justify-content: space-between;
}

.header-menu-box ul.header-menu-target li {
  width: 45%;
}

.header-menu-box ul.header-menu-target li a {
  display: block;
  border: solid 1px #fff;
  text-align: center;
  padding: 1em 0;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  transition: all 0.3s;
}

.header-menu-box ul.header-menu-target li a:hover {
  opacity: 1;
  background: #fff;
  color: #8cced9;
}

.header-menu-box.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@keyframes fade_menu_top {
  0% {
    opacity: 0;
    transform: translateY(-30%);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(-10%);
  }
}
@keyframes menuAnime01 {
  from {
    opacity: 0;
    width: 0;
  }
  to {
    opacity: 1;
    width: 100%;
  }
}
@keyframes menuAnime02 {
  from {
    opacity: 0;
    width: 0;
  }
  to {
    opacity: 1;
    width: 60%;
  }
}
.page-head {
  width: 100%;
  position: relative;
  padding-top: 4vw;
}

.page-head .mainvisual {
  background: #CCC;
  width: 100%;
  height: 30vw;
  padding: 0 5vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
}

.page-head .mainvisual h2.page-title-category {
  position: absolute;
  z-index: 2;
  line-height: 1em;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translateX(-50%) translateY(-50%);
}

.page-head .mainvisual h2.page-title-category .en {
  font-size: calc(2.4rem + 0.7vw);
  font-weight: 600;
  letter-spacing: 0.35em;
  margin-bottom: 2vh;
  display: block;
  font-family: "Alegreya SC", serif;
  color: #fff;
}

.page-head .mainvisual h2.page-title-category .jp {
  font-size: calc(4rem + 1vw);
  font-weight: bold;
  letter-spacing: 0.2em;
  display: block;
  color: #fff;
  line-height: 1.3em;
}

.page-head .mainvisual::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  mix-blend-mode: multiply;
}

.about .page-head .mainvisual {
  background: url(../images/mainvisual/mainvisual-about-img.jpg) no-repeat center center;
  background-size: cover;
}

.course.ca .page-head .mainvisual {
  background: url(../images/mainvisual/mainvisual-course-img01.jpg) no-repeat center center;
  background-size: cover;
}

.course.gh .page-head .mainvisual {
  background: url(../images/mainvisual/mainvisual-course-img02.jpg) no-repeat center center;
  background-size: cover;
}

.course.aa .page-head .mainvisual {
  background: url(../images/mainvisual/mainvisual-course-img03.jpg) no-repeat center center;
  background-size: cover;
}

.course.as .page-head .mainvisual {
  background: url(../images/mainvisual/mainvisual-course-img04.jpg) no-repeat center center;
  background-size: cover;
}

.course.main-oc .page-head .mainvisual {
  background: url(../images/mainvisual/mainvisual-course-oc-img.jpg) no-repeat center center;
  background-size: cover;
}

.course.dx-esports .page-head .mainvisual, .course.dx .page-head .mainvisual, .course.e-sports .page-head .mainvisual, .course.illustration .page-head .mainvisual, .course.correspondence .page-head .mainvisual, .course.dx-oc .page-head .mainvisual, .course.illustration-oc .page-head .mainvisual, .course.correspondence-oc .page-head .mainvisual, .course.e-sports-oc .page-head .mainvisual {
  background: url(../images/mainvisual/mainvisual-other-course-img01.jpg) no-repeat center center;
  background-size: cover;
}

.course.communication .page-head .mainvisual, .course.ib .page-head .mainvisual, .course.db .page-head .mainvisual, .course.ha .page-head .mainvisual, .course.ground-h .page-head .mainvisual, .course.es .page-head .mainvisual, .course.communication-oc .page-head .mainvisual {
  background: url(../images/mainvisual/mainvisual-other-course-img02.jpg) no-repeat center center;
  background-size: cover;
}

.course.ib-oc .page-head .mainvisual {
  background: url(../images/mainvisual/mainvisual-other-course-img03.jpg) no-repeat center center;
  background-size: cover;
}

.course.db-oc .page-head .mainvisual {
  background: url(../images/mainvisual/mainvisual-other-course-img04.jpg) no-repeat center center;
  background-size: cover;
}

.course.ha-oc .page-head .mainvisual {
  background: url(../images/mainvisual/mainvisual-other-course-img05.jpg) no-repeat center center;
  background-size: cover;
}

.course.ground-h-oc .page-head .mainvisual {
  background: url(../images/mainvisual/mainvisual-other-course-img06.jpg) no-repeat center center;
  background-size: cover;
}

.course.es-oc .page-head .mainvisual {
  background: url(../images/mainvisual/mainvisual-other-course-img07.jpg) no-repeat center center;
  background-size: cover;
}

.support .page-head .mainvisual {
  background: url(../images/mainvisual/mainvisual-support-img.jpg) no-repeat center center;
  background-size: cover;
}

.campuslife .page-head .mainvisual {
  background: url(../images/mainvisual/mainvisual-campuslife-img.jpg) no-repeat center center;
  background-size: cover;
}

.admission .page-head .mainvisual {
  background: url(../images/mainvisual/mainvisual-admission-img.jpg) no-repeat center center;
  background-size: cover;
}

.target .page-head .mainvisual {
  background: url(../images/mainvisual/mainvisual-target-img.jpg) no-repeat center center;
  background-size: cover;
}

.information .page-head .mainvisual {
  background: url(../images/mainvisual/mainvisual-information-img.jpg) no-repeat center center;
  background-size: cover;
}

.special.reason .page-head .mainvisual {
  background: url(../images/mainvisual/mainvisual-reason-img.jpg) no-repeat center center;
  background-size: cover;
}

.special.message .page-head .mainvisual {
  background: url(../images/mainvisual/mainvisual-message-img.jpg) no-repeat center center;
  background-size: cover;
}

.cms .page-head .mainvisual {
  background: url(../images/mainvisual/mainvisual-about-img.jpg) no-repeat center center;
  background-size: cover;
}

.content-wrap {
  width: 100%;
  display: block;
  z-index: 0;
  margin: 0 auto;
  position: relative;
}

.content-inner {
  width: calc(100% - 20vw);
  margin: 0 10vw 8vh;
}

.content-inner.wd100 {
  width: 100%;
  margin: 0 0 8vh;
}

.content-section {
  width: 100%;
  padding-bottom: 5vw;
  padding-top: 50px;
}

.point-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4vw;
}

.point-content .point-photo {
  width: 57%;
  height: 25vw;
  min-height: 350px;
  background: gray;
}

.point-content .point-textbox {
  width: 40%;
}

.point-content .point-textbox p.point-copy {
  color: #8cced9;
  font-size: calc(1.8rem + 0.5vw);
  font-weight: 500;
  line-height: 1.5em;
  margin-bottom: 2vh;
}

.point-content .point-textbox p.point-text {
  font-size: 1.5rem;
  line-height: 1.9em;
}

.point-content .point-textbox .point-number-box {
  display: inline-block;
}

.point-content .point-textbox .point-number-box .number {
  position: relative;
  display: flex;
  align-items: center;
  background: #8cced9;
  color: #fff;
  font-size: 1.4rem;
  padding: 0.35em 1em 0.35em 2em;
  height: 2.5vw;
  margin-bottom: 2vh;
}

.point-content .point-textbox .point-number-box .number span {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1em;
  padding-left: 2px;
  transform: translateY(-5%);
}

.point-content .point-textbox .point-number-box .number::before {
  content: "";
  position: absolute;
  background: #fff;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 50%;
  left: 0.4em;
  transform: translateY(-50%);
}

.point-content .point-textbox .point-number-box .number::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.25vw 0 1.25vw 20px;
  border-color: transparent transparent transparent #8cced9;
  top: 0;
  right: 0;
  transform: translateX(100%);
}

.point-content:nth-of-type(2n) {
  flex-direction: row-reverse;
}

.footer {
  width: 100%;
  padding: 3vw 0 0;
  position: relative;
}

.footer ul.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2vh 0;
  background: #969fa9;
}

.footer ul.footer-links li {
  position: relative;
  padding-right: 1em;
  margin-right: 1em;
  line-height: 1em;
}

.footer ul.footer-links li::before {
  content: "";
  position: absolute;
  background: #fff;
  width: 1px;
  height: 100%;
  top: 0;
  right: 0;
}

.footer ul.footer-links li a {
  font-size: 1.6rem;
  line-height: 1em;
  color: #FFF;
  display: inline-block;
  padding: 0.3em 1em;
}

.footer ul.footer-links li:last-child::before {
  content: unset;
}

.footer ul.footer-sns-links {
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle, rgba(154, 200, 210, 0.3) 0%, rgba(84, 155, 206, 0.3) 100%);
  padding: 2.5vw 0;
}

.footer ul.footer-sns-links li {
  padding-right: 2em;
}

.footer ul.footer-sns-links li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5px;
  width: 6vw;
  height: 6vw;
  border-radius: 50%;
  background: #fff;
}

.footer ul.footer-sns-links li a img {
  width: 40%;
  margin-bottom: 3px;
}

.footer ul.footer-sns-links li a p.sns-text {
  font-size: clamp(1rem, 1vw, 1.6rem);
  font-weight: 500;
  color: #8cced9;
  letter-spacing: normal;
  line-height: 1em;
}

.footer ul.footer-sns-links li:last-child {
  padding-right: 0;
}

.footer .footer-inner {
  position: relative;
  background: #84c6d1;
  padding: 3vw 0;
  z-index: 1;
}

.footer .footer-inner::before {
  content: "";
  position: absolute;
  background: linear-gradient(270deg, rgba(154, 200, 210, 0.4) 0%, rgba(84, 155, 206, 0.4) 100%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.footer .footer-inner a.footer-logo {
  width: 33%;
  line-height: 0;
  margin: 0 auto 1vw;
  display: block;
}

.footer .footer-inner a.footer-logo img {
  width: 100%;
  display: block;
}

.footer .footer-inner .info-box {
  width: 100%;
}

.footer .footer-inner .info-box:first-of-type {
  margin-bottom: 2vw;
}

.footer .footer-inner .info-box p.school-name {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5em;
}

.footer .footer-inner .info-box .footer-add {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
}

.footer .footer-inner .info-box .footer-tel {
  text-align: center;
  color: #007497;
  font-size: 1.5rem;
  line-height: 1.5em;
  font-weight: 600;
}

.footer .footer-inner .info-box .footer-tel span {
  font-size: calc(2.4rem + 0.5vw);
  line-height: 1em;
  font-weight: 600;
}

.footer p.copyright {
  font-size: 1.1rem;
  font-weight: 500;
  color: #FFF;
  background: #007497;
  text-align: center;
}

@keyframes pulldown {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes pullup {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
}
.slide-up {
  opacity: 0;
}

.is-show .slide-up {
  animation: section_fade_in 0.8s ease-in-out both;
}

.slide-up02 {
  opacity: 0;
}

.is-show .slide-up02 {
  animation: section_fade_in02 0.3s ease-in-out both;
  transition-delay: 0.2s;
}

@keyframes section_fade_in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes section_fade_in02 {
  0% {
    opacity: 0.8;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade_left {
  0% {
    opacity: 0;
    transform: translateX(-30%);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade_right {
  0% {
    opacity: 0;
    transform: translateX(30%);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade_top {
  0% {
    opacity: 0;
    transform: translateY(-10%);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade_bottom {
  0% {
    opacity: 0;
    transform: translateY(10%);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.anchor {
  padding-top: 7vw;
  margin-top: -7vw;
}

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

.mw_wp_form .horizontal-item {
  display: block;
  margin-left: 0 !important;
  margin-bottom: 0.5em;
}

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

CMS記事設定

**********************************************/
.cms .content-inner.single {
  /* テーブルのスタイル */
  /* リストのスタイル */
  /* ネストされたリストのスタイル */
  /* h1 - タイトル */
  /* h2 - サブタイトル */
  /* h3 - サブセクションのタイトル */
  /* h4 - さらなるサブセクション */
  /* h5 - テキストの強調 */
  /* 共通のマージンとパディングのリセット */
}

.cms .content-inner.single table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.cms .content-inner.single table th, .cms .content-inner.single table td {
  border: 1px solid #ddd;
  padding: 8px 12px;
  text-align: left;
}

.cms .content-inner.single table th {
  background-color: #f0f0f0;
  font-weight: bold;
}

.cms .content-inner.single table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.cms .content-inner.single ul, .cms .content-inner.single ol {
  margin: 20px 0;
  list-style: disc;
}

.cms .content-inner.single li {
  margin-bottom: 10px;
  list-style: disc;
}

.cms .content-inner.single ol li {
  list-style: decimal;
}

.cms .content-inner.single ul ul, .cms .content-inner.single ul ol, .cms .content-inner.single ol ul, .cms .content-inner.single ol ol {
  margin-top: 10px;
  margin-bottom: 10px;
}

.cms .content-inner.single h1:not([class]) {
  font-size: 2.5em;
  margin-top: 0;
  margin-bottom: 20px;
  color: #222;
  font-weight: bold;
  line-height: 1.2;
}

.cms .content-inner.single h2:not([class]) {
  font-size: 2em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #444;
  font-weight: bold;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
}

.cms .content-inner.single h3:not([class]) {
  font-size: 1.75em;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #555;
  font-weight: bold;
}

.cms .content-inner.single h4:not([class]) {
  font-size: 1.5em;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #666;
  font-weight: bold;
  font-style: italic;
}

.cms .content-inner.single h5:not([class]) {
  font-size: 1.25em;
  margin-top: 15px;
  margin-bottom: 10px;
  color: #777;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cms .content-inner.single h1:not([class]), .cms .content-inner.single h2:not([class]), .cms .content-inner.single h3:not([class]), .cms .content-inner.single h4:not([class]), .cms .content-inner.single h5:not([class]) {
  padding: 0;
  margin-left: 0;
  margin-right: 0;
}

.cms .content-inner.single img {
  width: unset !important;
}

html :where(img[class*=wp-image-]) {
  height: unset !important;
  max-width: 100%;
}

.overflow {
  overflow: hidden;
}

@media screen and (max-width: 1024px) and (orientation: portrait) {
  body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: calc(1.3rem + 0.25vw);
    font-weight: 400;
    line-height: 1.8em;
    letter-spacing: 0.1em;
    background: #fff;
    width: 100%;
  }
  .header {
    height: 17vw;
  }
  .header .header-logo {
    height: 10vw;
    margin-top: 3px;
  }
  .header .header-target-list {
    display: none;
  }
  .header .header-btn p.btn-border {
    width: 17vw;
    height: 17vw;
  }
  .header .header-btn p.btn-border span {
    left: 50%;
    width: 10vw;
    height: 2px;
    transform: translateY(-50%) translateX(-50%);
  }
  .header .header-btn p.btn-border span:nth-of-type(1) {
    top: 30%;
    left: 50%;
  }
  .header .header-btn p.btn-border span:nth-of-type(2) {
    top: 50%;
    left: 50%;
  }
  .header .header-btn p.btn-border span:nth-of-type(3) {
    top: 70%;
    left: 50%;
  }
  .header .header-btn.is-show p.btn-border span:nth-of-type(1) {
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) rotate(45deg);
  }
  .header .header-btn.is-show p.btn-border span:nth-of-type(2) {
    display: none;
  }
  .header .header-btn.is-show p.btn-border span:nth-of-type(3) {
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) rotate(-45deg);
  }
  .header-menu-box {
    height: 100%;
    padding: 20vw 6vw 10vw;
    padding-bottom: env(safe-area-inset-bottom, 10vw);
    overflow-y: scroll;
  }
  .header-menu-box .header-menu-inner {
    display: block;
  }
  .header-menu-box .header-menu-inner ul.header-menu-list {
    display: flex;
  }
  .header-menu-box .header-menu-inner ul.header-menu-list li dl dt {
    font-size: 2rem;
  }
  .header-menu-box .header-menu-inner ul.header-menu-list li dl dd a {
    padding-left: 4vw;
  }
  .header-menu-box .header-menu-inner ul.header-menu-list li dl dd a:hover {
    padding-left: 6vw;
  }
  .header-menu-box .header-menu-inner ul.header-menu-list:nth-of-type(1) {
    width: 100%;
  }
  .header-menu-box .header-menu-inner ul.header-menu-list:nth-of-type(2) {
    width: 100%;
  }
  .header-menu-box .header-menu-inner ul.header-menu-list:nth-of-type(3) {
    width: 100%;
  }
  .header-menu-box .header-menu-inner ul.header-menu-list:nth-of-type(4) {
    width: 100%;
  }
  .header-menu-box ul.header-menu-target {
    flex-wrap: wrap;
    margin-bottom: 5vw;
  }
  .header-menu-box ul.header-menu-target li {
    width: 49%;
    margin-bottom: 2%;
  }
  .header-menu-box ul.header-menu-target li a {
    padding: 0.7em 0;
  }
  @keyframes fade_menu_top {
    0% {
      opacity: 0;
      transform: translateY(-30%);
    }
    60% {
      opacity: 1;
    }
    100% {
      opacity: 1;
      transform: translateY(-10%);
    }
  }
  @keyframes menuAnime01 {
    from {
      opacity: 0;
      width: 0;
    }
    to {
      opacity: 1;
      width: 100%;
    }
  }
  @keyframes menuAnime02 {
    from {
      opacity: 0;
      width: 0;
    }
    to {
      opacity: 1;
      width: 60%;
    }
  }
  .page-head {
    width: 100%;
    position: relative;
    padding-top: 17vw;
  }
  .page-head .mainvisual {
    height: 55vw;
  }
  .page-head .mainvisual h2.page-title-category {
    width: 100%;
  }
  .page-head .mainvisual h2.page-title-category .en {
    font-size: calc(2.2rem + 0.7vw);
  }
  .page-head .mainvisual h2.page-title-category .jp {
    font-size: calc(3rem + 1vw);
    line-height: 1.1em;
  }
  .page-head .mainvisual::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.3);
    mix-blend-mode: multiply;
  }
  .about .page-head .mainvisual {
    background: url(../images/mainvisual/mainvisual-about-img.jpg) no-repeat center center;
    background-size: cover;
  }
  .course.ca .page-head .mainvisual {
    background: url(../images/mainvisual/mainvisual-course-img01.jpg) no-repeat center left;
    background-size: cover;
  }
  .course.gh .page-head .mainvisual {
    background: url(../images/mainvisual/mainvisual-course-img02.jpg) no-repeat center left;
    background-size: cover;
  }
  .course.dx-esports .page-head .mainvisual, .course.dx .page-head .mainvisual, .course.e-sports .page-head .mainvisual, .course.dx-oc .page-head .mainvisual, .course.e-sports-oc .page-head .mainvisual {
    background: url(../images/mainvisual/mainvisual-other-course-img01.jpg) no-repeat center center;
    background-size: cover;
  }
  .course.communication .page-head .mainvisual, .course.ib .page-head .mainvisual, .course.db .page-head .mainvisual, .course.ha .page-head .mainvisual, .course.ground-h .page-head .mainvisual, .course.es .page-head .mainvisual {
    background: url(../images/mainvisual/mainvisual-other-course-img02.jpg) no-repeat center center;
    background-size: cover;
  }
  .course.ib-oc .page-head .mainvisual {
    background: url(../images/mainvisual/mainvisual-other-course-img03.jpg) no-repeat center center;
    background-size: cover;
  }
  .course.db-oc .page-head .mainvisual {
    background: url(../images/mainvisual/mainvisual-other-course-img04.jpg) no-repeat center center;
    background-size: cover;
  }
  .course.ha-oc .page-head .mainvisual {
    background: url(../images/mainvisual/mainvisual-other-course-img05.jpg) no-repeat center center;
    background-size: cover;
  }
  .course.ground-h-oc .page-head .mainvisual {
    background: url(../images/mainvisual/mainvisual-other-course-img06.jpg) no-repeat center center;
    background-size: cover;
  }
  .course.es-oc .page-head .mainvisual {
    background: url(../images/mainvisual/mainvisual-other-course-img07.jpg) no-repeat center center;
    background-size: cover;
  }
  .support .page-head .mainvisual {
    background: url(../images/mainvisual/mainvisual-support-img.jpg) no-repeat center center;
    background-size: cover;
  }
  .campuslife .page-head .mainvisual {
    background: url(../images/mainvisual/mainvisual-campuslife-img.jpg) no-repeat center center;
    background-size: cover;
  }
  .admission .page-head .mainvisual {
    background: url(../images/mainvisual/mainvisual-admission-img.jpg) no-repeat center center;
    background-size: cover;
  }
  .target .page-head .mainvisual {
    background: url(../images/mainvisual/mainvisual-target-img.jpg) no-repeat center center;
    background-size: cover;
  }
  .information .page-head .mainvisual {
    background: url(../images/mainvisual/mainvisual-information-img.jpg) no-repeat center center;
    background-size: cover;
  }
  .special.reason .page-head .mainvisual {
    background: url(../images/mainvisual/mainvisual-reason-img.jpg) no-repeat center center;
    background-size: cover;
  }
  .content-inner {
    width: calc(100% - 16vw);
    margin: 0 8vw 8vh;
  }
  .point-content {
    display: block;
  }
  .point-content .point-photo {
    width: 100%;
    height: 55vw;
    min-height: inherit;
    margin-bottom: 3vw;
  }
  .point-content .point-textbox {
    width: 100%;
  }
  .point-content .point-textbox .point-number-box .number {
    height: 8vw;
  }
  .point-content .point-textbox .point-number-box .number::after {
    border-width: 4vw 0 4vw 20px;
  }
  .footer {
    width: 100%;
    padding: 3vw 0 0;
  }
  .footer ul.footer-links {
    display: block;
    padding: 0;
  }
  .footer ul.footer-links li {
    padding-right: 0;
    margin-right: 0;
    line-height: 2.5em;
    text-align: center;
  }
  .footer ul.footer-links li::before {
    content: "";
    width: 100%;
    height: 1px;
  }
  .footer ul.footer-links li a {
    font-size: 1.5rem;
  }
  .footer ul.footer-links li:first-child::before {
    content: unset;
  }
  .footer ul.footer-links li:last-child::before {
    content: "";
    position: absolute;
    background: #fff;
    width: 100%;
    height: 1px;
    top: 0;
    right: 0;
  }
  .footer ul.footer-sns-links {
    display: flex;
    padding: 8vw 0;
  }
  .footer ul.footer-sns-links li {
    padding-right: 0.8em;
  }
  .footer ul.footer-sns-links li a {
    padding: 6px;
    width: 15.5vw;
    height: 15.5vw;
  }
  .footer ul.footer-sns-links li a img {
    width: 42%;
    margin-bottom: 2px;
  }
  .footer ul.footer-sns-links li a p.sns-text {
    font-size: 1rem;
  }
  .footer .footer-inner {
    padding: 4vw 0 4.2vw;
  }
  .footer .footer-inner a.footer-logo {
    width: 60%;
    margin: 0 auto 2vw;
  }
  .footer .footer-inner .info-box {
    width: 100%;
  }
  .footer .footer-inner .info-box:first-of-type {
    margin-bottom: 5vw;
  }
  .footer .footer-inner .info-box p.school-name {
    font-size: 1.4rem;
  }
  .footer .footer-inner .info-box .footer-add {
    font-size: 1.4rem;
    line-height: 1.5em;
    margin-bottom: 3vw;
  }
  .footer .footer-inner .info-box .footer-tel {
    font-size: 1.3rem;
  }
  .footer .footer-inner .info-box .footer-tel span {
    font-size: calc(2.6rem + 0.5vw);
    line-height: 1.5em;
  }
  .footer .footer-inner .info-box .footer-tel a {
    color: #007497;
  }
  .footer .footer-inner .info-box:first-child {
    margin-bottom: 6vw;
  }
}
/*# sourceMappingURL=maps/style.css.map */
