@charset "UTF-8";
/*--------------------------------
font
---------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP:wght@100..900&display=swap");
/*--------------------------------
color
---------------------------------*/
/*--------------------------------
common 全体に共通するクラス
---------------------------------*/
body {
  font-size: 16px;
  color: #333333;
  background: #ffffff;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴシック", "ヒラギノ角ゴ ProN", "ヒラギノ角ゴ Pro", "Yu Gothic", "Meiryo", sans-serif;
}

img {
  width: 100%;
}

.inner {
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media (min-width: 1280px) {
  .is-sp {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .inner {
    padding: 0 40px;
  }
  .is-pc {
    display: none;
  }
}
@media (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
  .is-pc {
    display: none;
  }
}
/*--------------------------------
main
---------------------------------*/
/*--------------------------------
section
---------------------------------*/
.section {
  padding-top: 120px;
  padding-bottom: 100px;
}

@media (min-width: 768px) and (max-width: 1279px) {
  .section {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .section {
    padding-top: 80px;
    padding-bottom: 60px;
  }
}
/*--------------------------------
util
---------------------------------*/
.util_title {
  font-size: 48px;
  font-weight: 600;
  text-align: center;
  color: #333333;
  position: relative;
  margin-bottom: 100px;
}
.util_title::after {
  position: absolute;
  content: "";
  display: block;
  border-bottom: 3px solid #093B8C;
  width: 150px;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
}

.util_text {
  text-align: center;
}
.util_text.passed {
  max-width: 900px;
  text-align: left;
  margin: 0 auto;
  line-height: 1.8;
}

@media (min-width: 1280px) {
  .util_text {
    font-size: 24px;
  }
  .util_text.passed {
    max-width: 900px;
    text-align: left;
    margin: 0 auto;
    line-height: 1.8;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .util_text {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .util_title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .util_title {
    font-size: 22px;
    margin-bottom: 60px;
  }
  .util_title::after {
    border-bottom: 2px solid #093B8C;
    width: 100px;
  }
}
/*--------------------------------
header
---------------------------------*/
.header {
  background: #fff;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
}

.header_inner {
  display: flex;
  align-items: center;
  height: 80px;
}

.header_logo {
  width: 250px;
}
.header_logo img {
  width: 100%;
}

.header_menu {
  margin-left: auto;
  font-size: 14px;
}

.header_nav_link {
  color: #333333;
}

@media (min-width: 1280px) {
  .header_nav {
    display: flex;
  }
  .header_nav_list:not(:first-child) {
    margin-left: 64px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .header_logo {
    width: 200px;
  }
  .header_nav {
    margin-top: 80px;
  }
  .header_nav_list {
    text-align: center;
    padding: 20px 0;
    width: 100%;
    font-size: 16px;
  }
  .header_nav_link {
    width: 100%;
  }
  .header_pamphlet_list {
    margin-top: 30px;
  }
  .header_pamphlet_link {
    color: #ffffff;
    background: #00bf29;
    padding: 20px 92px;
  }
  .header_oc_list {
    margin-top: 30px;
  }
  .header_oc_link {
    color: #ffffff;
    background: #326CCB;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .header_inner {
    padding: 0 20px;
    height: 60px;
  }
  .header_logo {
    width: 200px;
  }
  .header_nav {
    margin-top: 80px;
  }
  .header_nav_list {
    text-align: center;
    padding: 20px 0;
    width: 100%;
  }
  .header_nav_link {
    width: 100%;
  }
  .header_pamphlet_list {
    top: 20px;
  }
  .header_pamphlet_link {
    color: #ffffff;
    background: #00bf29;
    padding: 20px 82px;
  }
  .header_oc_list {
    margin-top: 20px;
  }
  .header_oc_link {
    color: #ffffff;
    background: #326CCB;
    padding: 20px;
  }
}
/*drawer*/
@media (min-width: 1280px) {
  .drawer-toggle {
    display: none;
  }
}

.drawer--right .drawer-hamburger {
  top: 10px;
  right: 15px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .drawer--right .drawer-hamburger {
    right: 35px;
  }
}

.drawer-hamburger-icon {
  background-color: #093B8C;
  width: 40px;
  height: 3px;
}
.drawer-open .drawer-hamburger-icon {
  background-color: transparent;
}
.drawer-hamburger-icon::before, .drawer-hamburger-icon::after {
  background-color: #093B8C;
  width: 40px;
  height: 3px;
}

@media (min-width: 768px) and (max-width: 1279px) {
  .drawer--right.drawer-open .drawer-hamburger {
    right: 400px;
  }
  .drawer-nav {
    width: 400px;
    padding: 0 10px;
  }
  .drawer--right .drawer-nav {
    right: -400px;
  }
}
@media (max-width: 767px) {
  .drawer--right.drawer-open .drawer-hamburger {
    right: 250px;
  }
  .drawer--right .drawer-hamburger {
    top: 0;
  }
  .drawer-nav {
    width: 300px;
    padding: 0 10px;
  }
  .drawer--right .drawer-nav {
    right: -300px;
  }
}
/*--------------------------------
top
---------------------------------*/
.top {
  background: url(../img/top_image.jpg) no-repeat center center/cover;
  aspect-ratio: 144/65;
  height: 100%;
  margin-top: 80px;
}

@media (max-width: 767px) {
  .top {
    background: url(../img/sp/top_image_sp.jpg) no-repeat center center/cover;
    aspect-ratio: 15/16;
    height: 100%;
    margin-top: 60px;
  }
}
/*--------------------------------
floating
---------------------------------*/
.floating {
  position: fixed;
  z-index: 10;
  top: 25%;
  right: 0;
  width: 64px;
}

.floating_pamphlet {
  display: block;
  background: #00bf29;
  color: #ffffff;
  writing-mode: vertical-rl;
  padding: 60px 20px 20px;
  font-weight: 600;
  letter-spacing: 3px;
  position: relative;
}
.floating_pamphlet::after {
  position: absolute;
  content: "";
  display: block;
  background: url(../img/cv_pamphlet_icon.png) no-repeat center center/contain;
  width: 35px;
  height: 35px;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.floating_oc {
  display: block;
  background: #326CCB;
  color: #ffffff;
  writing-mode: vertical-rl;
  padding: 50px 20px 20px;
  font-weight: 600;
  position: relative;
  margin-top: 20px;
}
.floating_oc::after {
  position: absolute;
  content: "";
  display: block;
  background: url(../img/cv_oc_icon.png) no-repeat center center/contain;
  width: 35px;
  height: 35px;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

/*--------------------------------
top_btn
---------------------------------*/
.page-top {
  position: fixed;
  z-index: 10;
  bottom: 50px;
  right: 10px;
  width: 56px;
}
.page-top img {
  width: 100%;
}

/*--------------------------------
about
---------------------------------*/
.about {
  display: none;
}

@media (max-width: 767px) {
  .about {
    display: block;
    background: #093B8C;
    font-weight: 600;
    padding: 50px 0;
  }
  .about_body {
    max-width: 575px;
    margin: 0 auto;
  }
  .about_title {
    font-size: 20px;
    color: #ffffff;
  }
  .about_title .strong {
    color: #FFF700;
    font-size: 24px;
  }
  .about_title:not(:first-child) {
    margin-top: 20px;
  }
}
/*--------------------------------
point
---------------------------------*/
.point .util_title {
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.point .util_title::before {
  position: absolute;
  display: block;
  content: "";
  background: url(../img/point_bubble.png) no-repeat center center/contain;
  top: -80px;
  right: 40px;
  width: 374px;
  height: 336px;
}

.point_area {
  border-top: 1px solid #000000;
  padding-top: 50px;
  padding-bottom: 50px;
}
.point_area:last-child {
  border-bottom: 1px solid #000000;
}

.point_container {
  max-width: 1080px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  color: #333333;
}

.point_image {
  width: 400px;
}
.point_image img {
  width: 100%;
}

.point_body {
  margin-left: 50px;
  width: 650px;
}

.point_btn {
  display: flex;
  justify-content: space-evenly;
  margin-top: 60px;
}

.site_btn {
  display: block;
  width: 350px;
  height: 90px;
  transition: all 0.6s ease 0s;
}
.site_btn:hover {
  opacity: 0.8;
  transition: all 0.6s ease 0s;
}

.pdf_btn {
  display: block;
  width: 350px;
  height: 90px;
  transition: all 0.6s ease 0s;
}
.pdf_btn:hover {
  opacity: 0.8;
  transition: all 0.6s ease 0s;
}

.point_item {
  display: flex;
  align-items: center;
}
.point_item:not(:first-child) {
  margin-top: 30px;
}

.point_item_head {
  color: #ffffff;
  background: #25389b;
  width: 150px;
  height: 50px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 50px;
}

.point_item_description {
  font-size: 20px;
  font-weight: 600;
}
.point_item_description .strong {
  color: #ff6b00;
}

@media (min-width: 768px) and (max-width: 1279px) {
  .point .util_title {
    width: 400px;
  }
  .point .util_title::before {
    top: 24px;
    right: -170px;
    width: 250px;
    height: 225px;
  }
  .point_area {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .point_container {
    display: block;
  }
  .point_image {
    width: 300px;
    max-width: 100%;
    margin: 0 auto;
  }
  .point_image img {
    max-width: 100%;
  }
  .point_body {
    max-width: 600px;
    margin: 40px auto 0;
    text-align: center;
  }
  .point_item_head {
    color: #ffffff;
    background: #25389b;
    width: 100px;
    height: 35px;
    text-align: center;
    font-size: 16px;
    line-height: 35px;
  }
  .point_item_description {
    font-size: 16px;
    font-weight: 400;
  }
  .point_item_description .strong {
    font-weight: 600;
  }
}
@media (max-width: 767px) {
  .point {
    padding-top: 140px;
  }
  .point .util_title {
    width: 300px;
    display: block;
  }
  .point .util_title::before {
    top: -150px;
    right: -20px;
    width: 180px;
    height: 163px;
  }
  .point_area {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .point_container {
    display: block;
  }
  .point_image {
    width: 250px;
    max-width: 100%;
    margin: 0 auto;
  }
  .point_image img {
    max-width: 100%;
  }
  .point_body {
    width: 500px;
    max-width: 100%;
    margin: 40px auto 0;
  }
  .point_btn {
    margin-top: 40px;
  }
  .site_btn {
    max-width: 300px;
    height: 100%;
    margin-right: 20px;
  }
  .pdf_btn {
    max-width: 300px;
    height: 100%;
  }
  .point_item_head {
    color: #ffffff;
    background: #25389b;
    width: 100px;
    height: 35px;
    text-align: center;
    font-size: 16px;
    line-height: 35px;
  }
  .point_item_description {
    font-size: 14px;
    font-weight: 400;
  }
  .point_item_description .strong {
    font-weight: 600;
  }
}
/*--------------------------------
flow
---------------------------------*/
.flow {
  background: #D9E7FF;
}

.flow_required {
  display: flex;
  justify-content: space-evenly;
}

.flow_entry {
  width: 550px;
}

.flow_document {
  width: 413px;
}

.flow_schedule {
  margin-top: 80px;
}

@media (min-width: 768px) and (max-width: 1279px) {
  .flow_entry {
    width: 443px;
  }
  .flow_document {
    width: 331px;
  }
}
@media (max-width: 767px) {
  .flow_required {
    display: block;
    width: 277px;
    margin: 0 auto;
  }
  .flow_entry {
    width: 277px;
  }
  .flow_document {
    width: 207px;
    margin-top: 20px;
  }
  .flow_schedule {
    margin-top: 25px;
  }
}
/*--------------------------------
method
---------------------------------*/
.method {
  position: relative;
}

.method_score {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  align-items: center;
}

.method_interview {
  width: 400px;
}

.method_plus {
  position: relative;
  width: 60px;
  height: 60px;
}

.method_plus_bar {
  position: absolute;
  content: "";
  display: block;
  width: 60px;
  height: 5px;
  background: #093B8C;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
}
.method_plus_bar:not(:first-child) {
  left: 0;
  transform: rotate(90deg);
}

.method_research {
  width: 400px;
  letter-spacing: 10px;
}

.method_equal {
  width: 50px;
  height: 25px;
  position: relative;
}

.method_equal_bar {
  position: absolute;
  content: "";
  display: block;
  width: 50px;
  height: 5px;
  background: #093B8C;
  top: 50%;
  left: 0;
}

.method_full {
  width: 200px;
}

.method_person_comment {
  position: absolute;
  content: "";
  bottom: 0;
  left: 80px;
}
.method_person_comment img {
  width: 680px;
  height: 320px;
}

.method_fee {
  margin-top: 100px;
  font-size: 36px;
  font-weight: 800;
  color: #093B8C;
  text-align: right;
}

@media (min-width: 1280px) {
  .method_equal_bar:not(:first-child) {
    margin-top: 20px;
  }
  .method_fee {
    margin-bottom: 100px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .method_score {
    margin-top: 40px;
    display: block;
    font-size: 20px;
  }
  .method_interview {
    width: 500px;
    max-width: 100%;
    border: 2px solid #093B8C;
    margin: 0 auto;
  }
  .method_interview_name {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .method_interview_score {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .method_plus {
    width: 30px;
    height: 30px;
    margin: 20px auto;
  }
  .method_plus_bar {
    width: 30px;
    height: 2px;
    background: #093B8C;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
  }
  .method_plus_bar:not(:first-child) {
    left: 0;
    transform: rotate(90deg);
  }
  .method_research {
    width: 500px;
    max-width: 100%;
    border: 2px solid #093B8C;
    letter-spacing: 10px;
    margin: 0 auto;
  }
  .method_equal {
    width: 50px;
    height: 25px;
    margin: 20px auto;
    position: relative;
  }
  .method_equal_bar {
    width: 30px;
    height: 2px;
    background: #093B8C;
    top: 50%;
    left: 0;
    transform: rotate(-90deg);
  }
  .method_equal_bar:not(:first-child) {
    margin-left: 16px;
  }
  .method_full {
    width: 300px;
    border: 1px solid #093B8C;
    margin: 0 auto;
  }
  .method_fee {
    margin-top: 30px;
    font-size: 30px;
    font-weight: 800;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .method_full {
    width: 250px;
  }
}
@media (max-width: 767px) {
  .method_score {
    margin-top: 40px;
    display: block;
    font-size: 20px;
  }
  .method_interview {
    width: 300px;
    max-width: 100%;
    border: 1px solid #093B8C;
    margin: 0 auto;
  }
  .method_plus {
    width: 30px;
    height: 30px;
    margin: 20px auto;
  }
  .method_plus_bar {
    width: 30px;
    height: 2px;
    background: #093B8C;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
  }
  .method_plus_bar:not(:first-child) {
    left: 0;
    transform: rotate(90deg);
  }
  .method_research {
    width: 300px;
    max-width: 100%;
    border: 1px solid #093B8C;
    letter-spacing: 10px;
    margin: 0 auto;
  }
  .method_equal {
    width: 50px;
    height: 25px;
    margin: 20px auto;
    position: relative;
  }
  .method_equal_bar {
    width: 30px;
    height: 2px;
    background: #093B8C;
    top: 50%;
    left: 0;
    transform: rotate(-90deg);
  }
  .method_equal_bar:not(:first-child) {
    margin-left: 16px;
  }
  .method_full {
    width: 150px;
    border: 1px solid #093B8C;
    margin: 0 auto;
  }
  .method_fee {
    margin-top: 30px;
    font-size: 22px;
    font-weight: 800;
  }
}
/*--------------------------------
scholarship
---------------------------------*/
.scholarship {
  background: #D9E7FF;
}

.qa {
  max-width: 970px;
  margin: 0 auto;
}

.qa_box {
  border-bottom: 1px solid #878787;
}
.qa_box:not(:first-child) {
  margin-top: 30px;
}

.question {
  display: flex;
  justify-content: space-between;
  padding: 40px 0 30px 90px;
  position: relative;
}
.question::before {
  position: absolute;
  content: "";
  display: block;
  background: url(../img/scholarship_circle.png) no-repeat center center/contain;
  width: 60px;
  height: 60px;
  left: 0;
  top: 24px;
}
.question.one {
  position: relative;
}
.question.one:after {
  position: absolute;
  content: "1";
  display: block;
  font-size: 36px;
  font-family: "Lato", sans-serif;
  color: #ffffff;
  top: 24px;
  left: 19px;
}
.question.two {
  position: relative;
}
.question.two:after {
  position: absolute;
  content: "2";
  display: block;
  font-size: 36px;
  font-family: "Lato", sans-serif;
  color: #ffffff;
  top: 24px;
  left: 19px;
}
.question.three {
  position: relative;
}
.question.three:after {
  position: absolute;
  content: "3";
  display: block;
  font-size: 36px;
  font-family: "Lato", sans-serif;
  color: #ffffff;
  top: 24px;
  left: 19px;
}
.question.four {
  position: relative;
}
.question.four:after {
  position: absolute;
  content: "4";
  display: block;
  font-size: 36px;
  font-family: "Lato", sans-serif;
  color: #ffffff;
  top: 24px;
  left: 19px;
}

.question_title {
  font-size: 20px;
}

.question_btn {
  transition: all 0.3s ease 0s;
}
.question_btn.is-open {
  transform: rotate(180deg);
  transition: all 0.3s ease 0s;
}
.question_btn img {
  width: 28px;
}

.answer {
  display: none;
  padding: 10px 0px 30px 90px;
}

.answer_text {
  line-height: 1.8;
}
.answer_text .scholarship_link {
  color: #093B8C;
  text-decoration: underline;
}

@media (min-width: 1280px) {
  .answer_text {
    width: 800px;
  }
}
@media (max-width: 767px) {
  .question {
    padding: 10px 0 30px 56px;
  }
  .question::before {
    width: 40px;
    height: 40px;
    left: 0;
    top: 4px;
  }
  .question.one {
    position: relative;
  }
  .question.one:after {
    position: absolute;
    content: "1";
    display: block;
    font-size: 24px;
    font-family: "Lato", sans-serif;
    color: #ffffff;
    top: 6px;
    left: 13px;
  }
  .question.two {
    position: relative;
  }
  .question.two:after {
    position: absolute;
    content: "2";
    display: block;
    font-size: 24px;
    font-family: "Lato", sans-serif;
    color: #ffffff;
    top: 6px;
    left: 13px;
  }
  .question.three {
    position: relative;
  }
  .question.three:after {
    position: absolute;
    content: "3";
    display: block;
    font-size: 24px;
    font-family: "Lato", sans-serif;
    color: #ffffff;
    top: 6px;
    left: 13px;
  }
  .question.four {
    position: relative;
  }
  .question.four:after {
    position: absolute;
    content: "4";
    display: block;
    font-size: 24px;
    font-family: "Lato", sans-serif;
    color: #ffffff;
    top: 6px;
    left: 13px;
  }
  .question_title {
    font-size: 16px;
  }
  .answer {
    padding: 10px 30px 30px 56px;
  }
  .answer_text {
    font-size: 14px;
  }
}
/*--------------------------------
passed
---------------------------------*/
.passed_admission-policy {
  margin-top: 80px;
}

.passed_admission-policy_links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 60px;
}

.passed_link {
  width: 600px;
  height: 300px;
  color: #ffffff;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.passed_link img {
  width: 600px;
  transition: transform 0.6s ease;
}
.passed_link:nth-child(n+3) {
  margin-top: 60px;
}
.passed_link:hover img {
  transform: scale(1.1);
}

.passed_name {
  position: absolute;
  content: "";
  display: block;
  top: 45%;
  left: 50%;
  transform: translate(-50%);
  font-size: 32px;
  font-weight: 600;
}

.passed_mark {
  position: absolute;
  content: "";
  display: block;
  bottom: 10%;
  left: 45%;
  transform: translate(-50%);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 5px;
}
.passed_mark::after {
  position: absolute;
  content: "";
  display: block;
  background: url(../img/passed_link_arrow.png) no-repeat center center/contain;
  width: 50px;
  height: 15px;
  bottom: 10px;
  right: -65px;
}

@media (min-width: 768px) and (max-width: 1279px) {
  .passed_link {
    width: 48%;
    height: 100%;
  }
  .passed_link img {
    width: 100%;
  }
  .passed_link:nth-child(n+3) {
    margin-top: 40px;
  }
  .passed_name {
    font-size: 24px;
    letter-spacing: 5px;
    top: 40%;
  }
  .passed_mark {
    font-size: 20px;
  }
  .passed_mark::after {
    position: absolute;
    content: "";
    display: block;
    background: url(../img/passed_link_arrow.png) no-repeat center center/contain;
    width: 30px;
    height: 9px;
    bottom: 6px;
    right: -40px;
  }
}
@media (max-width: 767px) {
  .passed_admission-policy {
    margin-top: 40px;
  }
  .passed_admission-policy_title {
    font-size: 18px;
  }
  .passed_link {
    width: 48%;
    height: 100%;
  }
  .passed_link img {
    width: 100%;
  }
  .passed_link:nth-child(n+3) {
    margin-top: 40px;
  }
  .passed_name {
    font-size: 14px;
    letter-spacing: 2px;
    top: 40%;
  }
  .passed_mark {
    font-size: 12px;
  }
  .passed_mark::after {
    position: absolute;
    content: "";
    display: block;
    background: url(../img/passed_link_arrow.png) no-repeat center center/contain;
    width: 16px;
    height: 5px;
    bottom: 6px;
    right: -20px;
  }
}
/*--------------------------------
oc
---------------------------------*/
.oc {
  background: #D9E7FF;
}

.oc_slider {
  display: flex;
  justify-content: space-evenly;
}

.oc_item {
  width: 400px;
  box-shadow: 0 0 20px #5e5e5e;
}

.oc_item_image img {
  width: 100%;
}

.oc_item_body {
  width: 100%;
  height: 300px;
  background: #ffffff;
  padding: 50px;
}

.oc_item_title {
  text-align: center;
  font-size: 24px;
}

.oc_item_text {
  margin-top: 50px;
  line-height: 1.8;
}

@media (min-width: 1280px) {
  .oc_item {
    margin-top: 40px;
  }
  .slick-slide img.is-sp {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .oc_item {
    width: 300px;
  }
  .oc_item_body {
    height: 245px;
    padding: 40px 10px;
  }
  .oc_item_text {
    margin-top: 25px;
  }
}
@media (max-width: 767px) {
  .oc_slider {
    width: 220px;
    height: 300px;
    box-shadow: 0 0 20px #5e5e5e;
    margin: 0 auto;
    position: relative;
  }
  .slick-slide img.is-pc {
    display: none;
  }
  .oc_item_body {
    height: 180px;
    background: #ffffff;
    padding: 30px 10px 0;
  }
  .oc_item_title {
    font-size: 14px;
  }
  .oc_item_text {
    margin-top: 20px;
    font-size: 12px;
  }
  .slick-prev {
    position: absolute;
    content: "";
    display: block;
    background: url(../img/sp/passed_prev_btn_sp.png) no-repeat center center/contain;
    width: 16px;
    height: 33px;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
  }
  .slick-next {
    position: absolute;
    content: "";
    display: block;
    background: url(../img/sp/passed_next_btn_sp.png) no-repeat center center/contain;
    width: 16px;
    height: 33px;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
  }
}
/*--------------------------------
cv
---------------------------------*/
.cv_pamphlet {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.cv_pamphlet:hover .cv_pamphlet_link img {
  transform: scale(1.04);
}

.cv_pamphlet_link {
  width: 50%;
  height: 100%;
}

.cv_pamphlet_image {
  width: 100%;
  position: relative;
}
.cv_pamphlet_image img {
  transition: transform 0.6s ease;
}

.cv_pamphlet_btn {
  position: absolute;
  content: "";
  display: block;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 16px 0 16px 100px;
  width: 400px;
  color: #ffffff;
  background: rgba(255, 138, 0, 0.8);
  font-weight: 600;
  border: 2px solid #ffffff;
  z-index: 10;
}
.cv_pamphlet_btn::after {
  position: absolute;
  content: "";
  display: block;
  background: url(../img/cv_pamphlet_icon.png) no-repeat center center/contain;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
}

.cv_oc {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.cv_oc:hover .cv_oc_image img {
  transform: scale(1.04);
}

.cv_oc_link {
  width: 50%;
  height: 100%;
}

.cv_oc_image {
  width: 100%;
  position: relative;
}
.cv_oc_image img {
  transition: transform 0.6s ease;
}

.cv_oc_btn {
  position: absolute;
  content: "";
  display: block;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 16px 0 16px 80px;
  width: 400px;
  color: #ffffff;
  background: rgba(50, 108, 203, 0.8);
  font-weight: 600;
  border: 2px solid #ffffff;
  z-index: 10;
}
.cv_oc_btn::after {
  position: absolute;
  content: "";
  display: block;
  background: url(../img/cv_oc_icon.png) no-repeat center center/contain;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

@media (min-width: 1280px) {
  .cv {
    display: flex;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .cv {
    display: flex;
  }
  .cv_pamphlet_btn {
    bottom: 15px;
    padding: 13px 38px 13px 63px;
    border: 1px solid #ffffff;
    font-size: 12px;
    width: 280px;
  }
  .cv_pamphlet_btn::after {
    width: 30px;
    height: 30px;
    left: 30px;
  }
  .cv_oc_btn {
    bottom: 15px;
    padding: 13px 0 13px 55px;
    border: 1px solid #ffffff;
    font-size: 12px;
    width: 280px;
  }
  .cv_oc_btn::after {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 767px) {
  .cv_pamphlet_btn {
    bottom: 15px;
    padding: 12px 22px 12px 55px;
    border: 1px solid #ffffff;
    font-size: 12px;
    width: 250px;
  }
  .cv_pamphlet_btn::after {
    width: 30px;
    height: 30px;
    left: 15px;
  }
  .cv_oc_btn {
    bottom: 15px;
    padding: 12px 0 12px 36px;
    border: 1px solid #ffffff;
    font-size: 12px;
    width: 250px;
  }
  .cv_oc_btn::after {
    width: 30px;
    height: 30px;
    left: 5px;
  }
}
/*--------------------------------
footer
---------------------------------*/
.footer {
  background: #093B8C;
  color: #ffffff;
  padding-top: 120px;
  padding-bottom: 100px;
}

.footer_inner {
  display: flex;
  justify-content: space-between;
}

.footer_campus {
  display: flex;
}

.footer_campus_name {
  display: inline-block;
  font-size: 24px;
  padding-left: 40px;
  position: relative;
}
.footer_campus_name::after {
  position: absolute;
  content: "";
  display: block;
  background: url(../img/footer_access_icon.png) no-repeat center center/contain;
  width: 40px;
  height: 40px;
  top: -3px;
  left: 0;
}

.footer_campus_info {
  margin-top: 30px;
  line-height: 1.8;
}

.footer_nav {
  max-width: 400px;
}

.footer_nav_top {
  display: flex;
  justify-content: space-between;
}

.footer_nav_bottom {
  display: flex;
  justify-content: space-evenly;
  margin-top: 40px;
}

.footer_list_link {
  color: #ffffff;
  font-size: 14px;
}

.footer_copy-right {
  margin-top: 50px;
  font-weight: 300;
}

@media (min-width: 1280px) {
  .footer_campus_item:first-child {
    margin-right: 40px;
  }
  .footer_campus_info {
    padding-left: 10px;
  }
  .footer_detail {
    max-width: 440px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .footer {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .footer_inner {
    display: block;
  }
  .footer_campus {
    display: block;
    text-align: center;
  }
  .footer_campus_item:not(:first-child) {
    margin-top: 30px;
  }
  .footer_campus_name {
    font-size: 16px;
    padding-left: 30px;
  }
  .footer_campus_name::after {
    width: 30px;
    height: 30px;
    top: -3px;
    left: 0;
  }
  .footer_campus_info {
    font-size: 12px;
    margin-top: 10px;
  }
  .footer_nav {
    margin: 40px auto;
  }
  .footer_list_link {
    font-size: 13px;
  }
  .footer_copy-right {
    margin-top: 40px;
    font-size: 11px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .footer {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .footer_inner {
    display: block;
  }
  .footer_campus {
    display: block;
    text-align: center;
  }
  .footer_campus_item:not(:first-child) {
    margin-top: 30px;
  }
  .footer_campus_name {
    font-size: 16px;
    padding-left: 30px;
  }
  .footer_campus_name::after {
    width: 30px;
    height: 30px;
    top: -3px;
    left: 0;
  }
  .footer_campus_info {
    font-size: 12px;
    margin-top: 10px;
  }
  .footer_nav {
    margin: 40px auto;
  }
  .footer_list_link {
    font-size: 13px;
  }
  .footer_copy-right {
    margin-top: 40px;
    font-size: 11px;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */