@charset "UTF-8";
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "メイリオ", Meiryo, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
}

/* IE10以降 游ゴシック文字ずれ対応 */
html.ie10,
.ie10 input,
.ie10 textarea,
.ie10 select,
.ie10 button,
html.ie11,
.ie11 input,
.ie11 textarea,
.ie11 select,
.ie11 button {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: normal;
}

html {
  color: #222;
  background: #fff;
  font-size: 14px;
  line-height: 1;
  word-break: break-all;
}

body {
  background: #fff;
  margin: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
}

p {
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: #333;
  text-decoration: none;
}

input[type="submit"],
input[type="text"],
select,
textarea,
button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

.outer-block {
  min-width: 1340px;
}

.inner-block {
  margin: 0 auto;
  padding: 0;
  position: relative;
  width: 1300px;
}

#wrapper {
  position: relative;
}

@media screen and (min-width: 641px) {
  .sp {
    display: none !important;
  }
  a,
  a::before,
  a::after,
  button {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
  }
}

@font-face {
  font-family: JosefinSans;
  font-weight: normal;
  src: url("../font/JosefinSans-Regular.eot");
  src: url("../font/JosefinSans-Regular.woff") format("woff"), url("../font/JosefinSans-Regular.ttf") format("truetype");
}

.josefin {
  font-family: 'JosefinSans', sans-serif;
}

.pagetop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
}

.pagetop > a {
  position: relative;
  display: block;
  background-color: #283850;
  width: 60px;
  height: 60px;
}

.pagetop > a img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

/*------------------------------------------------------------------------------
  header
------------------------------------------------------------------------------*/
#header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 999;
}

#header .logo {
  float: left;
  height: 90px;
  padding: 19px 0;
}

#header .logo-link {
  display: inline-block;
  text-align: center;
}

#header .logo-link .text01 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 6px;
}

#header .logo-link .text02 {
  position: relative;
  color: #034cb9;
  display: inline-block;
  font-size: 18px;
  padding-left: 22px;
}

#header .logo-link .text02::before {
  content: '';
  background: url(../img/icon_tel.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 2px;
  margin: auto;
  width: 16px;
  height: 16px;
}

#header .logo-link .text02 > span {
  font-size: 12px;
  vertical-align: 2px;
}

#header .nav {
  float: right;
  height: 90px;
  font-size: 0;
}

#header .nav > * {
  display: inline-block;
  vertical-align: middle;
}

#header .nav > .list {
  font-size: 0;
}

#header .nav > .list > li {
  display: inline-block;
  vertical-align: middle;
}

#header .nav > .list > li + li {
  margin-left: 40px;
}

#header .nav > .list a {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 90px;
}

#header .nav > .list a::after {
  content: '';
  background-color: #024cba;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  opacity: 0;
}

@media only screen and (min-width: 641px) {
  #header .nav > .list a.is-active {
    color: #024cba;
  }
  #header .nav > .list a.is-active::after {
    opacity: 1;
  }
  #header .nav > .list a:hover {
    color: #024cba;
    opacity: 1;
  }
  #header .nav > .list a:hover::after {
    opacity: 1;
  }
}

#header .nav > .contact {
  width: 230px;
  margin-left: 60px;
}

#header .nav > .contact a {
  border-radius: 25px;
  font-size: 0;
  display: block;
  height: 50px;
  padding: 13px 0;
  text-align: center;
}

#header .nav > .contact span {
  display: inline-block;
  vertical-align: middle;
}

#header .nav > .contact .text {
  font-size: 18px;
  font-weight: bold;
  padding-top: 2px;
  padding-left: 8px;
}

/*------------------------------------------------------------------------------
  footer
------------------------------------------------------------------------------*/
#footer {
  color: #fff;
}

#footer > .content {
  background-color: #374d6c;
  padding: 50px 0 40px;
}

#footer .logo {
  text-align: center;
}

#footer .logo > a {
  color: #fff;
  display: inline-block;
}

#footer .logo-name {
  display: block;
  font-size: 0;
  margin-top: 12px;
}

#footer .logo-name > span {
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
}

#footer .logo-name > .sml {
  font-size: 12px;
  padding-right: 18px;
}

#footer .address {
  font-size: 0;
  text-align: center;
  margin-top: 25px;
}

#footer .address > li {
  display: inline-block;
  vertical-align: middle;
}

#footer .address > li + li {
  margin-left: 30px;
}

#footer .address span {
  display: inline-block;
  color: #fff;
  font-size: 22px;
  padding-left: 10px;
}

#footer > .copyright {
  background-color: #283850;
  font-size: 12px;
  text-align: center;
  padding: 10px 0;
}

/*------------------------------------------------------------------------------
  main
------------------------------------------------------------------------------*/
#main {
  display: block;
  padding-top: 90px;
}

.sec-title {
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
}

.sec-title > span {
  display: block;
}

.sec-title > .ja {
  color: #024cba;
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 20px;
}

.sec-title > .en {
  color: #6481aa;
  font-size: 20px;
}

.sec-title.wt > .ja,
.sec-title.wt > .en {
  color: #fff;
}

.cmn-btn {
  background-image: -webkit-gradient(linear, left top, right top, from(#d40028), to(#ec478d));
  background-image: linear-gradient(to right, #d40028, #ec478d 100%);
  background-size: 800%;
  color: #fff;
}

@media only screen and (min-width: 641px) {
  .cmn-btn:hover {
    background-size: 100%;
    opacity: 1;
  }
}

.vacancy {
  background-color: #ffd93f;
  color: #282828;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 15px 0 11px;
}

/*--- resolution ---*/
.resolution-container {
  background-color: #fec316;
  padding: 39px 0;
}

.resolution-container > .title {
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  text-shadow: 1.9px 2.3px 4px #b78b09;
  text-align: center;
  letter-spacing: 0.1em;
}

/*--- case ---*/
.case-container {
  background-color: #205c94;
  padding: 80px 0;
}

.case-container > .title {
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.case-container > .inner {
  width: 1060px;
  margin: 0 auto;
}

.case-container .list > li {
  border: 2px solid #fec316;
  background-color: #14518b;
  color: #fec316;
  float: left;
  font-size: 20px;
  font-weight: bold;
  width: 510px;
  padding: 25px;
  letter-spacing: 0.1em;
  text-align: center;
}

.case-container .list > li:nth-child(2n) {
  float: right;
}

.case-container .list > li:nth-child(n+3) {
  margin-top: 40px;
}

/*--- kv ---*/
.kv-block {
  position: relative;
  background: url(../img/kv_bg.jpg) center center no-repeat;
  background-size: cover;
  height: 750px;
  overflow: hidden;
  z-index: 0;
}

.kv-left {
  width: 752px;
  padding-top: 55px;
  float: left;
}

.kv-left .title {
  margin-bottom: 25px;
  text-align: center;
}

.kv-left .title > span {
  display: block;
}

.kv-left .title > .t01 {
  background-image: -webkit-gradient(linear, left top, right top, from(#00a9e7), to(#00358c));
  background-image: linear-gradient(to right, #00a9e7, #00358c);
  color: #fff;
  font-size: 25px;
  font-weight: bold;
  padding: 10px 20px;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}

.kv-left .title > .t01 span {
  font-size: 22px;
  font-weight: normal;
  letter-spacing: normal;
  vertical-align: 2px;
}

.kv-left .title > .t01 .label {
  border: 3px solid #fff;
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
  letter-spacing: 0.1em;
  padding: 10px 15px;
  margin-right: 10px;
  vertical-align: middle;
}

.kv-left .title > .t02 {
  color: #fff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-size: 70px;
  font-weight: bold;
  line-height: 1.29;
  text-shadow: 1.3px 1.5px 6px rgba(27, 23, 22, 0.3);
  margin: 0 -0.5em;
}

.kv-left .title > .t02 .fz {
  position: relative;
  font-size: 50px;
  vertical-align: 10px;
  letter-spacing: -15px;
  left: -5px;
}

.kv-left .text {
  position: relative;
  text-align: center;
  padding: 0 30px;
  margin-bottom: 60px;
}

.kv-left .text::before, .kv-left .text::after {
  content: '';
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
}

.kv-left .text::before {
  left: 0;
  border-width: 42px 30px 42px 0;
  border-right-color: #004296;
}

.kv-left .text::after {
  right: 0;
  border-width: 42px 0 42px 30px;
  border-left-color: #004296;
}

.kv-left .text > .inner {
  background-color: #004296;
  color: #fff;
  font-size: 24px;
  display: block;
  height: 84px;
  text-shadow: 1.3px 1.5px 6px rgba(27, 23, 22, 0.3);
  line-height: 1.42;
  letter-spacing: 0.07916em;
  padding: 8px 0;
}

.kv-left .box {
  background-color: #fff;
  border-radius: 10px;
}

.kv-left .box > li {
  position: relative;
  font-size: 0;
  padding: 12px 40px;
}

.kv-left .box > li + li {
  border-top: 1px solid #d5dae2;
}

.kv-left .box > li > * {
  display: inline-block;
  vertical-align: middle;
}

.kv-left .box .area {
  background-color: #283850;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  width: 70px;
  height: 70px;
  line-height: 70px;
  letter-spacing: 0.08em;
  text-align: center;
}

.kv-left .box .date {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #fec316));
  background: linear-gradient(transparent 70%, #fec316 70%);
  color: #282828;
  font-size: 24px;
  font-weight: bold;
  margin-left: 20px;
}

.kv-left .box .date > span {
  font-size: 40px;
}

.kv-left .box .place {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 490px;
  margin: auto;
  height: 49px;
  padding-left: 35px;
}

.kv-left .box .place::before {
  content: '';
  background: url(../img/icon_mark.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 21px;
  height: 30px;
}

.ie .kv-left .box .place::before {
  background-size: cover;
}

.kv-left .box .place > .t01 {
  color: #282828;
  display: block;
  font-size: 26px;
  font-weight: bold;
}

.kv-left .box .place > .t02 {
  display: block;
  font-size: 18px;
  margin-top: 5px;
}

.kv-right {
  float: right;
  padding-top: 30px;
}

.kv-right .lecturer01 {
  background: url(../img/kv_img01.png) no-repeat;
  width: 520px;
  height: 309px;
  padding-top: 185px;
  padding-left: 30px;
  margin-bottom: 30px;
}

.kv-right .lecturer01 .lecturer-belongs {
  color: #846203;
}

.kv-right .lecturer01 .lecturer-name {
  color: #283850;
}

.kv-right .lecturer02 {
  padding: 0 12px;
}

.kv-right .lecturer02 > .item {
  float: left;
}

.kv-right .lecturer02 > .item + .item {
  float: right;
}

.kv-right .lecturer02 .img {
  width: 220px;
  height: 220px;
  margin-bottom: 15px;
}

.kv-right .lecturer02 .body {
  width: 220px;
  white-space: nowrap;
}

.kv-right .lecturer02 .lecturer-name {
  font-size: 20px;
}

.kv-right .lecturer02 .lecturer-name span {
  font-size: 15px;
}

.kv-right .lecturer02 .lecturer-name span.block {
  display: block;
  margin-bottom: 0.4em;
}

.kv-right .lecturer-belongs {
  color: #ffeeba;
  font-size: 14px;
}

.kv-right .lecturer-name {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  margin-top: 0.5em;
}

.kv-right .lecturer-name > span {
  font-size: 18px;
  font-weight: normal;
}

/*--- introduction ---*/
.introduction-block {
  background-color: #f0f8ff;
  padding: 80px 0;
}

.introduction-sec01 > .title {
  position: relative;
  text-align: center;
  margin-bottom: -40px;
}

.introduction-sec01 > .title > span {
  position: relative;
  background-color: #00a9e7;
  border-radius: 40px;
  color: #fff;
  display: inline-block;
  font-size: 30px;
  padding: 25px 45px;
  height: 80px;
}

.introduction-sec01 > .title > span::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -30px;
  margin-left: -30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 30px 0 30px;
  border-color: transparent;
  border-top-color: #00a9e7;
}

.introduction-sec01 > .body {
  background: url(../img/sec01_bg01.jpg) center center no-repeat;
  background-size: cover;
  padding: 115px 80px 70px;
}

.introduction-sec01 .list {
  font-size: 0;
}

.introduction-sec01 .list > li {
  position: relative;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  display: inline-block;
  padding-left: 45px;
  margin-right: 130px;
}

.introduction-sec01 .list > li::before {
  content: '';
  background: url(../img/icon_check.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: -2px;
  left: 0;
  width: 24px;
  height: 21px;
}

.introduction-sec01 .list > li:nth-child(n+3) {
  margin-top: 45px;
}

.introduction-sec02 {
  text-align: center;
  padding: 55px 0;
}

.introduction-sec02 > .text {
  font-size: 20px;
  line-height: 1.9;
}

.introduction-sec02 > .text > span {
  font-weight: bold;
}

.introduction-sec03 {
  background-color: #fff;
  border: 3px solid #bfb2a0;
  padding: 7px;
}

.introduction-sec03 > .inner {
  border: 1px solid #bfb2a0;
  padding: 40px 70px 45px;
}

.introduction-sec03 .list {
  position: relative;
  padding-top: 130px;
  padding-bottom: 105px;
}

.introduction-sec03 .list > li {
  position: relative;
  display: inline-block;
  background-color: #004296;
  border-radius: 5px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  width: 380px;
  padding: 21px 0;
  margin-bottom: 50px;
  text-align: center;
}

.introduction-sec03 .list > li::before {
  content: '';
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  bottom: -19px;
  width: 19px;
  height: 20px;
  margin-left: -10px;
}

.introduction-sec03 .list > li:nth-child(2n) {
  float: left;
  clear: both;
}

.introduction-sec03 .list > li:nth-child(2n)::before {
  background-image: url(../img/sec01_arrow-right.svg);
}

.introduction-sec03 .list > li:nth-child(2n+1) {
  float: right;
}

.introduction-sec03 .list > li:nth-child(2n+1)::before {
  background-image: url(../img/sec01_arrow-left.svg);
}

.introduction-sec03 .list > li:first-child {
  float: none;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -350px;
  width: 700px;
  margin-bottom: 0;
}

.introduction-sec03 .list > li:nth-last-child(-n+2) {
  margin-bottom: 0;
}

.introduction-sec03 .img {
  position: relative;
  pointer-events: none;
  background-color: #283850;
  border-radius: 50%;
  width: 310px;
  height: 310px;
  margin: -310px auto 40px;
}

.introduction-sec03 .img > .text {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: 1.6;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  white-space: nowrap;
}

.introduction-sec03 .textarea {
  position: relative;
  width: 1060px;
  margin: 0 auto;
  z-index: 0;
}

.introduction-sec03 .textarea > .name {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.introduction-sec03 .textarea > .text {
  font-size: 18px;
  line-height: 1.78;
  text-align: justify;
}

.introduction-sec03 .textarea > .text + .text {
  margin-top: 1.78em;
}

.introduction-movie {
  padding-bottom: 55px;
}

.introduction-movie .title {
  text-align: center;
}

.introduction-movie .title > span {
  background-color: #283850;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  display: block;
  padding: 9px 10px;
  line-height: 1.5;
}

.introduction-movie .main {
  width: 760px;
  margin: 0 auto;
}

.introduction-movie .main .title > span {
  font-size: 16px;
}

.introduction-movie .youtube {
  position: relative;
  padding-top: 56.25%;
}

.introduction-movie .youtube > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.introduction-movie .thumbnail {
  width: 1024px;
  margin: 40px auto 0;
}

.introduction-movie .thumbnail .list > li {
  position: relative;
  cursor: pointer;
  width: calc((100% - 30px) / 4);
  float: left;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.introduction-movie .thumbnail .list > li.current {
  pointer-events: none;
}

.introduction-movie .thumbnail .list > li.current .img::after {
  opacity: 1;
}

.introduction-movie .thumbnail .list > li + li {
  margin-left: 10px;
}

.introduction-movie .thumbnail .list > li .img {
  position: relative;
}

.introduction-movie .thumbnail .list > li .img::after {
  content: '';
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.introduction-movie .thumbnail .list > li .img img {
  width: 100%;
}

@media only screen and (min-width: 641px) {
  .introduction-movie .thumbnail .list > li {
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
  }
  .introduction-movie .thumbnail .list > li:hover {
    opacity: 0.7;
  }
}

/*--- lecturer ---*/
.lecturer-block {
  background: url(../img/sec02_bg.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 80px 0;
}

.lecturer-container {
  background-color: #fff;
  padding: 50px;
}

.lecturer-container + .lecturer-container {
  margin-top: 50px;
}

.lecturer-container .img {
  float: left;
  width: 340px;
}

.lecturer-container .body {
  overflow: hidden;
  padding-left: 30px;
}

.lecturer-container .head {
  margin-bottom: 30px;
}

.lecturer-container .post {
  color: #205c94;
  display: block;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 30px;
}

.lecturer-container .name {
  font-size: 50px;
  font-weight: bold;
}

.lecturer-container .name > span {
  font-size: 35px;
}

.lecturer-container .text {
  font-size: 18px;
  line-height: 1.78;
  text-align: justify;
}

.lecturer-container .text + .text {
  margin-top: 1.78em;
}

.lecturer-container .profile {
  margin-top: 50px;
}

.lecturer-container .profile > .title {
  position: relative;
  color: #283850;
  font-size: 22px;
  font-weight: normal;
  margin-bottom: 20px;
  z-index: 0;
}

.lecturer-container .profile > .title::after {
  content: '';
  background-color: #283850;
  position: absolute;
  top: 0;
  bottom: 5px;
  right: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  z-index: -1;
}

.lecturer-container .profile > .title > span {
  display: inline-block;
  background-color: #fff;
  padding-right: 20px;
}

.lecturer-container .author {
  display: table;
  width: 100%;
  margin-top: 40px;
}

.lecturer-container .author > * {
  display: table-cell;
  vertical-align: middle;
  padding: 22px 20px;
}

.lecturer-container .author > .title {
  background-color: #283850;
  color: #fff;
  font-size: 16px;
  width: 100px;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}

.lecturer-container .author > .text {
  background-color: #eaf0f9;
}

/*--- program ---*/
.program-block {
  background: url(../img/pt01.png);
  padding: 80px 0;
}

.program-theme {
  font-size: 0;
  margin-bottom: 15px;
}

.program-theme > span {
  display: inline-block;
  vertical-align: middle;
}

.program-theme > .number {
  background-color: #283850;
  color: #fec316;
  font-size: 20px;
  width: 170px;
  padding: 18px 0 14px;
  text-align: center;
}

.program-theme > .number > span {
  font-size: 40px;
  vertical-align: -2px;
}

.program-theme > .title {
  color: #fec316;
  font-size: 30px;
  font-weight: bold;
  padding-left: 20px;
  line-height: 1.33;
}

.program-list > li {
  font-size: 22px;
  position: relative;
  padding-left: 23px;
  line-height: 2.27;
}

.program-list > li::before {
  content: '';
  border-radius: 50%;
  background-color: #fec316;
  position: absolute;
  top: 19px;
  left: 0;
  width: 8px;
  height: 8px;
}

.program-list.type02 > li {
  font-size: 20px;
  line-height: 2.25;
}

.program-table {
  font-size: 34px;
  font-weight: bold;
  padding-left: 40px;
  line-height: 1.76;
}

.program-table th,
.program-table td {
  text-align: left;
  vertical-align: top;
}

.program-table th {
  color: #205c94;
  padding-right: 1em;
}

.program-table .name > span {
  font-size: 23px;
}

.program-table .post {
  color: #7b7b7b;
  font-size: 18px;
  margin-top: -12px;
}

.program-subhead {
  display: table;
  width: 100%;
  margin-bottom: 20px;
}

.program-subhead > span {
  font-size: 22px;
  font-weight: bold;
  display: table-cell;
  vertical-align: middle;
  padding: 8px 20px 4px;
}

.program-subhead > .number {
  background-color: #283850;
  color: #fec623;
  width: 50px;
  text-align: center;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  padding-left: 0;
  padding-right: 0;
}

.program-subhead > .text {
  background-color: #fff6dc;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  color: #283850;
  line-height: 1.4;
  text-align: justify;
}

.program-step {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 140px;
  height: 140px;
  padding: 20px;
  z-index: 1;
}

.program-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 140px 140px 0 0;
  border-color: transparent;
  border-top-color: #205c94;
  z-index: -1;
}

.program-step .text {
  color: #fff;
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.program-step .text > span {
  display: block;
  font-size: 36px;
  margin-top: 5px;
}

.program-type01 > .title {
  position: relative;
  text-align: center;
  width: 1060px;
  margin: 0 auto;
  padding: 0 30px;
  margin-bottom: -35px;
}

.program-type01 > .title::before, .program-type01 > .title::after {
  content: '';
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
}

.program-type01 > .title::before {
  left: 0;
  border-width: 35px 30px 35px 0;
  border-right-color: #004296;
}

.program-type01 > .title::after {
  right: 0;
  border-width: 35px 0 35px 30px;
  border-left-color: #004296;
}

.program-type01 > .title span {
  background-color: #004296;
  color: #fff;
  display: block;
  font-size: 25px;
  font-weight: bold;
  padding: 22.5px 0;
  height: 70px;
  letter-spacing: 0.08em;
}

.program-type01 > .body {
  background-color: #fff;
  padding: 100px 120px 80px;
}

.program-type01 .head {
  font-size: 0;
  text-align: center;
  margin-bottom: 50px;
}

.program-type01 .head > .item {
  display: inline-block;
  vertical-align: middle;
}

.program-type01 .head > .item + .item {
  padding-left: 40px;
}

.program-type01 .head > .img img + img {
  margin-left: 20px;
}

.program-type01 .box + .box {
  margin-top: 40px;
}

.program-type01 + .program-type01 {
  margin-top: 60px;
}

.program-type01 + .program-type01 > .body {
  padding-top: 75px;
}

.program-type02 {
  position: relative;
  border: 5px solid #205c94;
  background-color: #fff;
  margin-top: 40px;
  padding: 60px 115px;
}

.program-type02 .head {
  margin-bottom: 50px;
  text-align: center;
}

.program-type02 .title {
  color: #004296;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}

.program-type02 .sub {
  font-size: 0;
  text-align: center;
}

.program-type02 .sub > span {
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
}

.program-type02 .sub > .name {
  font-size: 22px;
  font-weight: bold;
}

.program-type02 .sub > .name > span {
  font-size: 18px;
}

.program-type02 .sub > .company {
  color: #787878;
  padding-left: 1em;
}

.program-type02 .box + .box {
  margin-top: 25px;
}

/*--- guidelines ---*/
.guidelines-block {
  padding: 80px 0;
}

.guidelines-box {
  background-color: #f1f6fd;
  float: left;
  width: 620px;
}

.guidelines-box + .guidelines-box {
  float: right;
}

.guidelines-box .title {
  background-image: -webkit-gradient(linear, left top, right top, from(#00a9e7), to(#00358c));
  background-image: linear-gradient(to right, #00a9e7, #00358c);
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 15px 0;
  text-align: center;
}

.guidelines-box > .list > li {
  display: table;
  width: 100%;
  padding: 28px 0;
}

.guidelines-box > .list > li > * {
  display: table-cell;
  vertical-align: top;
}

.guidelines-box > .list > li + li {
  border-top: 1px solid #d4dfef;
}

.guidelines-box .head {
  font-size: 22px;
  font-weight: bold;
  width: 100px;
  padding: 0 28px;
  padding-right: 0;
  line-height: 20px;
}

.guidelines-box .head.t01 {
  line-height: 48px;
}

.guidelines-box .head.t04 {
  line-height: 32px;
}

.guidelines-box .body {
  font-size: 20px;
  padding: 0 45px;
  padding-right: 0;
  text-align: justify;
}

.guidelines-box .body.t01 {
  font-size: 26px;
}

.guidelines-box .body.t01 span {
  display: inline-block;
  font-size: 48px;
}

.guidelines-box .body.t02 > .place {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  margin-top: 12px;
  padding-left: 27px;
  padding-top: 4px;
}

.guidelines-box .body.t02 > .place::before {
  content: '';
  background: url(../img/icon_mark.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 17px;
  height: 24px;
}

.ie .guidelines-box .body.t02 > .place::before {
  background-size: cover;
}

.guidelines-box .body.t04 {
  line-height: 1.6;
}

.guidelines-box .body.t04 > .note {
  font-size: 18px;
}

/*--- application ---*/
.application-block {
  background: url(../img/sec05_bg.jpg) center center no-repeat;
  background-size: cover;
  padding: 80px 0 130px;
}

.application-box {
  background-color: #fff;
  padding: 50px 0 55px;
  width: 1060px;
  margin: 0 auto;
  text-align: center;
}

.application-box > .list {
  display: inline-block;
}

.application-box > .list > li {
  font-size: 20px;
  line-height: 1.9;
  position: relative;
  text-align: left;
  padding-left: 27px;
}

.application-box > .list > li + li {
  margin-top: 12px;
}

.application-box > .list > li::before {
  content: '';
  background-color: #6481aa;
  border-radius: 50%;
  position: absolute;
  top: 14px;
  left: 0;
  width: 8px;
  height: 8px;
}

.application-box .text-area {
  margin-top: 40px;
}

.application-box .text {
  font-size: 18px;
  line-height: 2.11;
}

.application-box .contact {
  font-size: 0;
  text-align: center;
  margin-top: 45px;
}

.application-box .contact > li {
  color: #00388f;
  display: inline-block;
  vertical-align: middle;
  font-size: 42px;
}

.application-box .contact > li + li {
  position: relative;
  padding-left: 80px;
  margin-left: 80px;
}

.application-box .contact > li + li::before {
  content: '';
  background-color: #d4dfef;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1px;
  height: 60px;
}

.application-box .contact span {
  position: relative;
  display: inline-block;
  padding-left: 54px;
}

.application-box .contact span::before {
  content: '';
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 36px;
}

.application-box .contact span.tel::before {
  background-image: url(../img/icon_tel.svg);
  height: 36px;
}

.application-box .contact span.fax::before {
  background-image: url(../img/icon_printer-bl.svg);
  height: 38px;
}

.application-box .btn-wrap {
  margin-top: 45px;
}

.application-box .btn {
  position: relative;
  display: inline-block;
  border-radius: 40px;
  font-size: 24px;
  width: 540px;
  height: 80px;
  padding: 28px 0;
}

.application-box .btn::after {
  content: '';
  background: url(../img/arrow_right.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 40px;
  margin: auto;
  width: 8px;
  height: 14px;
}

.application-box .btn > span {
  position: relative;
  display: inline-block;
  padding-left: 40px;
}

.application-box .btn > span::before {
  content: '';
  background: url(../img/icon_form.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 23px;
  height: 24px;
}

/*--- fixed ---*/
.fixed-container {
  display: none;
  position: fixed;
  top: 25%;
  right: 0;
  z-index: 99;
}

@media only screen and (min-width: 641px) {
  .fixed-container {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}

.fixed-container > a {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#d40028), to(#ec478d));
  background-image: linear-gradient(to bottom, #d40028, #ec478d 100%);
  background-size: auto 800%;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  display: block;
  padding: 70px 26px 20px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  letter-spacing: 0.05em;
  max-height: 260px;
}

@media only screen and (min-width: 641px) {
  .fixed-container > a:hover {
    background-size: auto 100%;
  }
}

.fixed-container > a::after {
  content: '';
  background: url(../img/icon_form.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  margin: auto;
  width: 29px;
  height: 30px;
}

/*------------------------------------------------------------------------------
  clearfix
------------------------------------------------------------------------------*/
.clearfix:after {
  clear: both;
  content: "";
  display: block;
  height: 0px;
  font-size: 0;
  visibility: hidden;
}