@charset "UTF-8";
/*-----------------------------
リセット
---------------------------*/
* {
  padding: 0;
}

html {
  font-size: 62.5%;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 52.6%;
  }
}

main {
  position: relative;
  width: 100%;
  color: #23234b;
  font-family: kozuka-mincho-pro, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  letter-spacing: 0.2em;
  line-height: 1.7;
  text-align: center;
  overflow-x: hidden;
}

main img {
  display: inline-block;
  width: 100%;
}

main a img:hover {
  opacity: 1;
}

html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
table,
th,
tr,
td,
img {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

a {
  color: #23234b;
  text-decoration: none;
  outline: none;
}

img {
  vertical-align: bottom;
  height: auto;
}

ul,
ol {
  list-style-type: none;
}

th,
dt {
  font-weight: normal;
}

dd {
  margin-left: 0;
}

/*-----------------------------
フォント
---------------------------*/
.bold {
  font-weight: bold;
}

.en_font {
  font-family: baskerville-display-pt, serif;
  font-weight: 400;
  font-style: normal;
}

.en_font.italic {
  font-style: italic;
}

.small_text {
  display: inline-block;
  font-size: 1rem;
  letter-spacing: .1em;
}

.slash {
  display: inline-block;
  margin: 0 0.25em;
}

.narrow {
  letter-spacing: normal;
}

.zero {
  display: inline-block;
}

/*-----------------------------
全般
---------------------------*/
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.inner {
  max-width: 1000px;
  width: 90%;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .inner {
    width: 92%;
  }
}

.brackets::before {
  content: "［";
  margin-right: 0.15em;
}

.brackets::after {
  content: "］";
  margin-left: 0.15em;
}

.sec_title .en_font {
  position: relative;
  padding-bottom: 5px;
  font-size: 4.4rem;
}

.sec_title .en_font::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: #23234b;
}

.sec_title .title {
  margin-top: 5px;
  font-size: 1.7rem;
}

.button {
  display: inline-block;
  position: relative;
}

.button:hover .arrow::before {
  -webkit-transform: translate(-50%, -50%) scale(1.25);
          transform: translate(-50%, -50%) scale(1.25);
  -webkit-transition: all .5s;
  transition: all .5s;
}

.button .btn_link {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 15px);
  height: 100%;
  z-index: 100;
}

.button .btn_text {
  margin-right: 1.5em;
  font-size: 1.5rem;
  letter-spacing: normal;
  line-height: 1;
}

.button .arrow {
  position: absolute;
  top: 50%;
  right: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.button .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  border: 1px solid #23234b;
  border-radius: 50%;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.button .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-60%, -50%) rotate(45deg);
          transform: translate(-60%, -50%) rotate(45deg);
  width: 5px;
  height: 5px;
  border: 1px solid;
  border-color: #23234b #23234b transparent transparent;
}

.wrap_pan {
  max-width: none;
  padding-left: 5%;
}

/*-----------------------------
エフェクト
---------------------------*/
.fadein {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}

.fadein.scrollin {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

@media screen and (max-width: 768px) {
  .fadein.scrollin {
    -webkit-transition: all .7s ease-in-out;
    transition: all .7s ease-in-out;
  }
}

.fadein.scrollin.delay2s {
  -webkit-transition-delay: .2s;
          transition-delay: .2s;
}

@media screen and (max-width: 768px) {
  .fadein.scrollin.delay2s {
    -webkit-transition-delay: 0;
            transition-delay: 0;
  }
}

.fadein.scrollin.delay4s {
  -webkit-transition-delay: .4s;
          transition-delay: .4s;
}

@media screen and (max-width: 768px) {
  .fadein.scrollin.delay4s {
    -webkit-transition-delay: 0;
            transition-delay: 0;
  }
}

/*-----------------------------
擬似ヘッダー＆サイドバー
あとで消す
---------------------------*/
.test_header {
  width: 100%;
  height: 160px;
  background-color: #00448b;
}

@media screen and (max-width: 768px) {
  .test_header {
    height: 56px;
  }
}

.test_header .test_header_top {
  width: 100%;
  height: 90px;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .test_header .test_header_top {
    display: none;
  }
}

.test_side_nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  height: 100vh;
  background-color: #fff;
  border-right: #00448b 1px solid;
  z-index: 9999;
}

@media screen and (max-width: 768px) {
  .test_side_nav {
    display: none;
  }
}

#container {
  padding-left: 100px;
}

@media screen and (max-width: 768px) {
  #container {
    padding-left: 0;
  }
}

/*-----------------------------
=====トップページ=====
トップ
---------------------------*/
.index_top_container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100vh;
  min-height: 700px;
}

@media screen and (max-width: 768px) {
  .index_top_container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    min-height: auto;
    height: auto;
  }
}

.index_top_container .text_box {
  width: 50%;
  margin: 2% 0 10%;
  padding-right: 3%;
  padding-left: 5%;
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .index_top_container .text_box {
    width: 90%;
    margin: auto;
    padding: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.index_top_container .text_box .department_name {
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .index_top_container .text_box .department_name {
    margin-top: 30px;
  }
}

.index_top_container .text_box .department_name .department_name_top {
  display: block;
  font-size: 2rem;
}

.index_top_container .text_box .department_name .department_name_bottom {
  display: inline-block;
  position: relative;
  margin-top: 15px;
  margin-bottom: 30px;
  font-size: 4.5vw;
  letter-spacing: 0.25em;
}

@media screen and (min-width: 1400px) {
  .index_top_container .text_box .department_name .department_name_bottom {
    font-size: 6.4rem;
  }
}

@media screen and (max-width: 768px) {
  .index_top_container .text_box .department_name .department_name_bottom {
    font-size: 4.4rem;
  }
}

.index_top_container .text_box .department_name .department_name_bottom::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 0;
  width: calc(100% - .25em);
  height: 10px;
}

.children .index_top_container .text_box .department_name .department_name_bottom::after {
  background-color: rgba(252, 149, 26, 0.3);
}

.dietetics .index_top_container .text_box .department_name .department_name_bottom::after {
  background-color: rgba(80, 183, 244, 0.3);
}

.nursing .index_top_container .text_box .department_name .department_name_bottom::after {
  background-color: rgba(252, 149, 184, 0.3);
}

.index_top_container .text_box .topic {
  margin-top: 12%;
  font-size: 2.4rem;
  line-height: 1.8;
  letter-spacing: 0.25em;
}

@media screen and (max-width: 768px) {
  .index_top_container .text_box .topic {
    margin-top: 1em;
    font-size: 2rem;
  }
}

.index_top_container .text_box .text {
  margin-top: 1.5em;
  line-height: 1.9;
}

.index_top_container .thumbnail {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  padding-right: 3%;
  padding-left: 5%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media screen and (max-width: 768px) {
  .index_top_container .thumbnail {
    display: none;
  }
}

.index_top_container .thumbnail .swiper-slide {
  width: calc(calc(100% - 9%) / 4);
  padding-top: calc(calc(100% - 9%) / 4);
}

.index_top_container .thumbnail .swiper-slide:hover {
  cursor: pointer;
}

.index_top_container .main_slide {
  width: 50%;
  height: 100%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media screen and (max-width: 768px) {
  .index_top_container .main_slide {
    width: 100%;
    height: 240px;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.index_top_container .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.index_top_container .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.children .index_top_container .swiper-wrapper .slide_img01 {
  background-image: url(../img/child/c_tp1.jpg);
}

.dietetics .index_top_container .swiper-wrapper .slide_img01 {
  background-image: url(../img/food/f_tp1.jpg);
}

@media screen and (max-width: 768px) {
  .dietetics .index_top_container .swiper-wrapper .slide_img01 {
    background-position: center 35%;
  }
}

.nursing .index_top_container .swiper-wrapper .slide_img01 {
  background-image: url(../img/nurse/n_tp1.jpg);
}

@media screen and (max-width: 768px) {
  .nursing .index_top_container .swiper-wrapper .slide_img01 {
    background-position: center 30%;
  }
}

.children .index_top_container .swiper-wrapper .slide_img02 {
  background-image: url(../img/child/c_tp2.jpg);
}

@media screen and (max-width: 768px) {
  .children .index_top_container .swiper-wrapper .slide_img02 {
    background-position: center 20%;
  }
}

.dietetics .index_top_container .swiper-wrapper .slide_img02 {
  background-image: url(../img/food/f_tp2.jpg);
}

.nursing .index_top_container .swiper-wrapper .slide_img02 {
  background-image: url(../img/nurse/n_tp2.jpg);
}

@media screen and (max-width: 768px) {
  .nursing .index_top_container .swiper-wrapper .slide_img02 {
    background-position: center 10%;
  }
}

.children .index_top_container .swiper-wrapper .slide_img03 {
  background-image: url(../img/child/c_tp3.jpg);
}

.dietetics .index_top_container .swiper-wrapper .slide_img03 {
  background-image: url(../img/food/f_tp3.jpg);
}

.nursing .index_top_container .swiper-wrapper .slide_img03 {
  background-image: url(../img/nurse/n_tp3.jpg);
}

@media screen and (max-width: 768px) {
  .nursing .index_top_container .swiper-wrapper .slide_img03 {
    background-position: center 30%;
  }
}

.children .index_top_container .swiper-wrapper .slide_img04 {
  background-image: url(../img/child/c_tp4.jpg);
}

.dietetics .index_top_container .swiper-wrapper .slide_img04 {
  background-image: url(../img/food/f_tp4.jpg);
}

@media screen and (max-width: 768px) {
  .dietetics .index_top_container .swiper-wrapper .slide_img04 {
    background-position: center 20%;
  }
}

.nursing .index_top_container .swiper-wrapper .slide_img04 {
  background-image: url(../img/nurse/n_tp4.jpg);
}

/*-----------------------------
=====トップページ=====
めざせる資格
---------------------------*/
.license_area {
  margin-top: 100px;
}

.license_area .license_container {
  margin-top: 120px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .license_area .license_container {
    margin-top: 70px;
  }
}

.children .license_area .license_container {
  background-image: url(../img/child/c_lcs_bg.jpg);
}

.dietetics .license_area .license_container {
  background-image: url(../img/food/f_lcs_bg.jpg);
}

.nursing .license_area .license_container {
  background-image: url(../img/nurse/n_lcs_bg.jpg);
}

.license_area .license_container .license_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 700px;
  width: 80%;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .license_area .license_container .license_list {
    width: 98%;
  }
}

.children .license_area .license_container .license_list .list_item.b_item {
  width: 28%;
  margin: -40px 2% 0;
}

.children .license_area .license_container .license_list .list_item.s_item {
  width: 23%;
  margin: 20px 5% -20px;
}

.dietetics .license_area .license_container .license_list {
  max-width: 800px;
  padding-bottom: 5px;
}

@media screen and (max-width: 768px) {
  .dietetics .license_area .license_container .license_list {
    max-width: 500px;
  }
}

.dietetics .license_area .license_container .license_list .list_item.b_item {
  width: 25%;
  margin: -40px 17% 0;
}

@media screen and (max-width: 768px) {
  .dietetics .license_area .license_container .license_list .list_item.b_item {
    width: 35%;
    margin: -40px 5% 0;
  }
}

.dietetics .license_area .license_container .license_list .list_item.s_item {
  width: 20%;
  margin-top: 0px;
}

@media screen and (max-width: 768px) {
  .dietetics .license_area .license_container .license_list .list_item.s_item {
    width: 25%;
  }
}

.dietetics .license_area .license_container .license_list .list_item.s_item.top_item {
  margin-top: -20px;
}

.dietetics .license_area .license_container .license_list .list_item.s_item.bottom_item {
  margin: 0 7% -80px;
}

@media screen and (max-width: 768px) {
  .dietetics .license_area .license_container .license_list .list_item.s_item.bottom_item {
    margin: 0 5% -80px;
  }
}

.nursing .license_area .license_container .license_list .list_item.b_item {
  width: 28%;
  margin: 40px 2% 0;
}

@media screen and (max-width: 768px) {
  .nursing .license_area .license_container .license_list .list_item.b_item {
    margin: 20px 2% 0;
  }
}

.nursing .license_area .license_container .license_list .list_item.top_item {
  margin: -130px 2% 0;
}

@media screen and (max-width: 768px) {
  .nursing .license_area .license_container .license_list .list_item.top_item {
    margin: -100px 2% 0;
  }
}

.nursing .license_area .license_container .license_list .list_item.bottom_item {
  margin: -60px 2% -50px;
}

@media screen and (max-width: 768px) {
  .nursing .license_area .license_container .license_list .list_item.bottom_item {
    margin: -50px 2% -30px;
  }
}

/*-----------------------------
=====トップページ=====
就職情報
---------------------------*/
.career_area {
  margin-top: 150px;
}

@media screen and (max-width: 768px) {
  .career_area {
    margin-top: 100px;
  }
}

.career_area .career_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 900px;
  width: 90%;
  margin: 50px auto 0;
}

@media screen and (max-width: 768px) {
  .career_area .career_container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 10px;
  }
}

.dietetics .career_area .career_container {
  max-width: 750px;
}

.nursing .career_area .career_container {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 750px;
}

@media screen and (max-width: 768px) {
  .nursing .career_area .career_container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.nursing .career_area .career_container .career_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6%;
}

@media screen and (max-width: 768px) {
  .nursing .career_area .career_container .career_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.nursing .career_area .career_container .career_content.top_content {
  width: 70%;
}

@media screen and (max-width: 768px) {
  .nursing .career_area .career_container .career_content.top_content {
    width: 80%;
    margin: auto;
  }
}

.nursing .career_area .career_container .career_content.top_content .career_box {
  -ms-grid-columns: 100%;
      grid-template-columns: 100%;
  -ms-grid-rows: (auto)[2];
      grid-template-rows: repeat(2, auto);
}

.nursing .career_area .career_container .career_content.bottom_content {
  width: 100%;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .nursing .career_area .career_container .career_content.bottom_content {
    margin-top: 0;
  }
}

.nursing .career_area .career_container .career_content.bottom_content .career_box {
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: calc(1em + 14px) auto;
      grid-template-rows: calc(1em + 14px) auto;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 50%;
}

@media screen and (max-width: 768px) {
  .nursing .career_area .career_container .career_content.bottom_content .career_box {
    width: 100%;
  }
}

.nursing .career_area .career_container .career_content.bottom_content .career_box .topic {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}

.nursing .career_area .career_container .career_content.bottom_content .career_box .text_box {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: (auto)[2];
      grid-template-rows: repeat(2, auto);
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  margin-top: 20px;
  border-left: 1px solid #23234b;
  letter-spacing: 0.15em;
  width: 100%;
}

.nursing .career_area .career_container .career_content.bottom_content .career_box .text_box:first-of-type {
  border-left: none;
}

.nursing .career_area .career_container .career_content.bottom_content .career_box .text_box .top_text {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  display: inline-block;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .nursing .career_area .career_container .career_content.bottom_content .career_box .text_box .top_text {
    margin-bottom: 0;
  }
}

.nursing .career_area .career_container .career_content.bottom_content .career_box .text_box .bottom_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}

.nursing .career_area .career_container .career_content.bottom_content .career_box .text_box .text_sub_box {
  -ms-flex-item-align: end;
      align-self: flex-end;
  padding-bottom: 0.35em;
  text-align: left;
  line-height: 1.3;
}

.nursing .career_area .career_container .career_content .career_box {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .nursing .career_area .career_container .career_content .career_box {
    width: 100%;
    margin-top: 20px;
  }
}

.career_area .career_container .career_box {
  line-height: 1;
}

.children .career_area .career_container .career_box {
  width: 31%;
}

@media screen and (max-width: 768px) {
  .children .career_area .career_container .career_box {
    width: auto;
    margin: 30px auto 0;
  }
}

.dietetics .career_area .career_container .career_box:nth-of-type(1) {
  width: 30%;
}

@media screen and (max-width: 768px) {
  .dietetics .career_area .career_container .career_box:nth-of-type(1) {
    width: auto;
    margin: 30px auto 0;
  }
}

.dietetics .career_area .career_container .career_box:nth-of-type(1) .text_box {
  margin-top: 38px;
}

@media screen and (max-width: 768px) {
  .dietetics .career_area .career_container .career_box:nth-of-type(1) .text_box {
    margin-top: auto;
  }
}

.dietetics .career_area .career_container .career_box:nth-of-type(2) {
  width: 65%;
}

@media screen and (max-width: 768px) {
  .dietetics .career_area .career_container .career_box:nth-of-type(2) {
    width: auto;
    margin: 30px auto 0;
  }
}

.nursing .career_area .career_container .career_box {
  margin: 0 3%;
}

@media screen and (max-width: 768px) {
  .nursing .career_area .career_container .career_box {
    margin: 30px auto 0;
  }
}

.nursing .career_area .career_container .career_box.bottom_box {
  margin-top: 10px;
  width: 44%;
}

@media screen and (max-width: 768px) {
  .nursing .career_area .career_container .career_box.bottom_box {
    width: auto;
    margin: 30px auto 0;
  }
}

.nursing .career_area .career_container .career_box.bottom_box .text {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .nursing .career_area .career_container .career_box.bottom_box .text {
    width: 100%;
    margin: 0 auto;
  }
}

.career_area .career_container .career_box .topic {
  width: 100%;
  padding: 7px;
  background-color: #23234b;
  border-radius: 50px;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

@media screen and (max-width: 1024px) {
  .career_area .career_container .career_box .topic {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .career_area .career_container .career_box .topic {
    font-size: 1.4rem;
    padding: 7px 2em;
  }
}

.career_area .career_container .career_box .topic.line2 {
  line-height: 1.2;
}

.career_area .career_container .career_box .topic.line2_same {
  line-height: 2.4;
}

@media screen and (max-width: 768px) {
  .career_area .career_container .career_box .topic.line2_same {
    line-height: 1;
  }
}

.career_area .career_container .career_box .text_box {
  position: relative;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .career_area .career_container .career_box .text_box {
    margin-top: 0;
  }
}

.children .career_area .career_container .career_box .text_box {
  padding-top: 40px;
  color: #fc951a;
}

@media screen and (max-width: 768px) {
  .children .career_area .career_container .career_box .text_box {
    padding-top: 0;
  }
}

.children .career_area .career_container .career_box .text_box .text {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}

@media screen and (max-width: 768px) {
  .children .career_area .career_container .career_box .text_box .text {
    display: block;
    position: static;
    -webkit-transform: unset;
            transform: unset;
    margin-top: 20px;
    text-align: center;
  }
}

.dietetics .career_area .career_container .career_box .text_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #50b7f4;
}

.dietetics .career_area .career_container .career_box .text_box .text {
  display: block;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .dietetics .career_area .career_container .career_box .text_box .text {
    font-size: 1.6rem;
  }
}

.dietetics .career_area .career_container .career_box .text_box .data {
  display: inline-block;
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .dietetics .career_area .career_container .career_box .text_box .data {
    margin-top: 0;
  }
}

.nursing .career_area .career_container .career_box .text_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fc95b8;
}

.career_area .career_container .career_box .text_box .box {
  border-right: 1px solid #23234b;
}

.career_area .career_container .career_box .text_box .box:last-of-type {
  border-right: none;
}

.dietetics .career_area .career_container .career_box .text_box .box {
  position: relative;
  width: 33.3333%;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .dietetics .career_area .career_container .career_box .text_box .box {
    margin-top: 20px;
  }
}

.nursing .career_area .career_container .career_box .text_box .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  width: 50%;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .nursing .career_area .career_container .career_box .text_box .box {
    margin-top: 20px;
    margin-bottom: 0;
  }
}

.nursing .career_area .career_container .career_box .text_box .box.w45_item {
  width: 45%;
}

.nursing .career_area .career_container .career_box .text_box .box.w55_item {
  width: 55%;
}

.nursing .career_area .career_container .career_box .text_box .box .text_sub {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.nursing .career_area .career_container .career_box .text_box .box .text_sub .text_sub_box {
  text-align: justify;
}

.career_area .career_container .career_box .text_box .text {
  font-size: 2rem;
}

.career_area .career_container .career_box .text_box .text.top_text {
  width: 100%;
}

.career_area .career_container .career_box .text_box .text.eligibility {
  width: 100%;
  color: #23234b;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2rem;
}

.career_area .career_container .career_box .text_box .data {
  font-size: 10rem;
  line-height: .8;
}

@media screen and (max-width: 768px) {
  .career_area .career_container .career_box .text_box .data {
    display: inline-block;
    padding-top: 20px;
  }
}

.career_area .career_container .career_box .text_box .data .sub {
  font-size: .32em;
}

.career_area .career_container .career_box .text_box .small_text {
  display: block;
  width: 100%;
  margin-top: 1em;
  color: #23234b;
}

/*-----------------------------
=====トップページ=====
新着記事一覧
---------------------------*/
.post_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1000px;
  width: 90%;
  margin: 150px auto 0;
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .post_area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin-top: 100px;
  }
}

.post_area .news_container {
  width: 50%;
  padding: 0 4%;
}

@media screen and (max-width: 768px) {
  .post_area .news_container {
    width: 100%;
    padding: 0 10%;
  }
}

.post_area .news_container:first-of-type {
  border-right: 1px solid #23234b;
}

@media screen and (max-width: 768px) {
  .post_area .news_container:first-of-type {
    margin-bottom: 40px;
    border-right: none;
  }
}

.post_area .news_container .news_top_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .post_area .news_container .news_top_box {
    margin: 0 -5% 10px;
  }
}

.post_area .news_container .news_top_box .sec_title .en_font::after {
  left: 0;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.post_area .news_container .info_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  padding: 10px 0;
  border-top: 1px solid #bbbfbf;
  letter-spacing: .075em;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.post_area .news_container .info_box:hover .info_txt {
  -webkit-transition: all .3s;
  transition: all .3s;
}

.children .post_area .news_container .info_box:hover .info_txt {
  color: #fc951a;
}

.dietetics .post_area .news_container .info_box:hover .info_txt {
  color: #50b7f4;
}

.nursing .post_area .news_container .info_box:hover .info_txt {
  color: #fc95b8;
}

.post_area .news_container .info_box:first-of-type {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-top: none;
}

.post_area .news_container .info_box:first-of-type .info_text_box,
.post_area .news_container .info_box:first-of-type .info_img {
  width: 100%;
}

.post_area .news_container .info_box:first-of-type .info_img {
  padding-top: 60%;
}

.post_area .news_container .info_box:first-of-type .info_text_box {
  margin-bottom: 2em;
  padding-top: 10px;
  padding-left: 0;
}

.post_area .news_container .info_box:first-of-type .info_text_box .info_txt {
  font-size: 1.4rem;
}

.post_area .news_container .info_box a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.post_area .news_container .info_box .info_text_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 70%;
  padding-left: 1em;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.post_area .news_container .info_box .info_text_box .info_date {
  font-size: 1.2rem;
}

.post_area .news_container .info_box .info_text_box .info_txt {
  margin-top: 1.5em;
  font-size: 1.2rem;
  line-height: 1.5;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 768px) {
  .post_area .news_container .info_box .info_text_box .info_txt {
    margin-top: 1em;
  }
}

.post_area .news_container .info_box .info_img {
  width: 30%;
  padding-top: 20%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.post_area .en_font.italic {
  letter-spacing: normal;
}

.post_area .button_area {
  width: 100%;
}

.post_area .button_area .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 350px;
  margin: 60px auto 0;
  padding: 1em 0.5em;
  border: 1px solid #23234b;
  border-radius: 50px;
}

.post_area .button_area .button:hover .arrow {
  -webkit-transform: translateX(7px) translateY(-50%);
          transform: translateX(7px) translateY(-50%);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.post_area .button_area .button .btn_text {
  margin-right: 0;
  letter-spacing: 0.1em;
}

.post_area .button_area .button .arrow {
  right: 30px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.post_area .button_area .button .arrow::before {
  border: none;
}

.post_area .button_area .button .arrow::after {
  width: 7px;
  height: 7px;
}

/*-----------------------------
=====トップページ=====
学びの特長
---------------------------*/
.study_area {
  max-width: 1400px;
  width: 100%;
  margin: 150px auto 0;
}

.study_area .study_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  max-width: 1200px;
  width: 90%;
  margin: 50px auto 0;
}

@media screen and (max-width: 768px) {
  .study_area .study_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 600px;
    margin-top: 0px;
  }
}

.study_area .study_list::before, .study_area .study_list::after {
  content: "";
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.children .study_area .study_list::before, .children .study_area .study_list::after {
  background-image: url(../img/child/c_ob.png);
}

.dietetics .study_area .study_list::before, .dietetics .study_area .study_list::after {
  background-image: url(../img/food/f_ob.png);
}

.nursing .study_area .study_list::before, .nursing .study_area .study_list::after {
  background-image: url(../img/nurse/n_ob.png);
}

.study_area .study_list::before {
  top: -6%;
  right: 5%;
  width: 120px;
  height: 120px;
}

@media screen and (max-width: 768px) {
  .study_area .study_list::before {
    top: -4%;
    right: 0;
    width: 100px;
    height: 100px;
  }
}

.nursing .study_area .study_list::before {
  top: -9%;
}

@media screen and (max-width: 768px) {
  .nursing .study_area .study_list::before {
    top: -6%;
  }
}

.study_area .study_list::after {
  top: 0%;
  right: 20%;
  width: 40px;
  height: 40px;
}

.study_area .study_list .list_item {
  position: relative;
  width: 45%;
  margin: 3% 2.5% 0;
}

@media screen and (max-width: 768px) {
  .study_area .study_list .list_item {
    width: 100%;
    margin: 50px auto 0;
  }
}

.study_area .study_list .list_item::before {
  content: "";
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.children .study_area .study_list .list_item::before {
  background-image: url(../img/child/c_ob.png);
}

.dietetics .study_area .study_list .list_item::before {
  background-image: url(../img/food/f_ob.png);
}

.nursing .study_area .study_list .list_item::before {
  background-image: url(../img/nurse/n_ob.png);
}

.study_area .study_list .list_item:nth-of-type(1)::before {
  left: -10%;
  bottom: 0;
  width: 65px;
  height: 65px;
}

.study_area .study_list .list_item:nth-of-type(3)::before {
  right: 2%;
  bottom: 7%;
  width: 40px;
  height: 40px;
}

.study_area .study_list .list_item:nth-of-type(4)::before {
  left: 50%;
  top: -13%;
  width: 120px;
  height: 120px;
}

.study_area .study_list .list_item:nth-of-type(5)::before {
  right: 30%;
  bottom: 0%;
  width: 65px;
  height: 65px;
}

.study_area .study_list .list_item:nth-of-type(6)::before {
  right: -10%;
  top: 55%;
  width: 120px;
  height: 120px;
}

.study_area .study_list .list_item:nth-of-type(even) {
  margin-top: 15%;
}

@media screen and (max-width: 768px) {
  .study_area .study_list .list_item:nth-of-type(even) {
    margin-top: 50px;
  }
}

.study_area .study_list .list_item .img_box {
  width: 100%;
  padding-top: 70%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.children .study_area .study_list .list_item .img_box.box01 {
  background-image: url(../img/child/c_pt1.jpg);
}

.children .study_area .study_list .list_item .img_box.box02 {
  background-image: url(../img/child/c_pt2.jpg);
}

.children .study_area .study_list .list_item .img_box.box03 {
  background-image: url(../img/child/c_pt3.jpg);
}

.children .study_area .study_list .list_item .img_box.box04 {
  background-image: url(../img/child/c_pt4.jpg);
}

.children .study_area .study_list .list_item .img_box.box05 {
  background-image: url(../img/child/c_pt5.jpg);
}

.children .study_area .study_list .list_item .img_box.box06 {
  background-image: url(../img/child/c_pt6.jpg);
}

.dietetics .study_area .study_list .list_item .img_box.box01 {
  background-image: url(../img/food/f_pt1.jpg);
}

.dietetics .study_area .study_list .list_item .img_box.box02 {
  background-image: url(../img/food/f_pt2.jpg);
}

.dietetics .study_area .study_list .list_item .img_box.box03 {
  background-image: url(../img/food/f_pt3.jpg);
}

.dietetics .study_area .study_list .list_item .img_box.box04 {
  background-image: url(../img/food/f_pt4.jpg);
}

.dietetics .study_area .study_list .list_item .img_box.box05 {
  background-image: url(../img/food/f_pt5.jpg);
}

.dietetics .study_area .study_list .list_item .img_box.box06 {
  background-image: url(../img/food/f_pt6.jpg);
}

.nursing .study_area .study_list .list_item .img_box.box01 {
  background-image: url(../img/nurse/n_pt1.jpg);
}

.nursing .study_area .study_list .list_item .img_box.box02 {
  background-image: url(../img/nurse/n_pt2.jpg);
}

.nursing .study_area .study_list .list_item .img_box.box03 {
  background-image: url(../img/nurse/n_pt3.jpg);
}

.nursing .study_area .study_list .list_item .img_box.box04 {
  background-image: url(../img/nurse/n_pt4.jpg);
}

.study_area .study_list .list_item .text_box {
  position: relative;
  width: 100%;
  margin: auto;
  padding: 70px 10% 0;
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .study_area .study_list .list_item .text_box {
    padding-top: 50px;
  }
}

.study_area .study_list .list_item .text_box::before {
  position: absolute;
  top: -.3em;
  left: 9%;
  font-family: baskerville-display-pt, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 8rem;
  line-height: 1;
}

.study_area .study_list .list_item .text_box.item01::before {
  content: "01.";
}

.study_area .study_list .list_item .text_box.item02::before {
  content: "02.";
}

.study_area .study_list .list_item .text_box.item03::before {
  content: "03.";
}

.study_area .study_list .list_item .text_box.item04::before {
  content: "04.";
}

.study_area .study_list .list_item .text_box.item05::before {
  content: "05.";
}

.study_area .study_list .list_item .text_box.item06::before {
  content: "06.";
}

.study_area .study_list .list_item .text_box .topic {
  font-size: 2.4rem;
}

.study_area .study_list .list_item .text_box .text {
  margin-top: 1.5em;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
}

.study_area .study_list .button {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .study_area .study_list .button {
    margin-top: 20px;
  }
}

.study_area .study_list .button .btn_text {
  letter-spacing: normal;
}

.study_area .study_list .btn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .study_area .study_list .btn_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.study_area .study_list .btn_box .button {
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .study_area .study_list .btn_box .button {
    margin: 20px auto 0 0;
  }
}

/*-----------------------------
=====全ページ=====
目次
---------------------------*/
.index_area {
  margin-top: 60px;
  padding-top: 120px;
  background-color: #f5f8f9;
}

@media screen and (max-width: 768px) {
  .index_area {
    margin-top: 100px;
    padding-top: 50px;
  }
}

.index_area .sec_title .en_font::after {
  content: none;
}

.index_area .index_link_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1000px;
  width: 90%;
  margin: 30px auto 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #23234b;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 768px) {
  .index_area .index_link_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 500px;
    border-bottom: none;
  }
}

.index_area .index_link_list .index_list_item {
  position: relative;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .index_area .index_link_list .index_list_item {
    width: 100% !important;
  }
}

.index_area .index_link_list .index_list_item:hover .img_box::before, .index_area .index_link_list .index_list_item:hover .img_box::after {
  opacity: 1;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.index_area .index_link_list .index_list_item.w100_item {
  width: 100%;
}

.index_area .index_link_list .index_list_item.w50_item {
  width: 50%;
}

.index_area .index_link_list .index_list_item.w48_item {
  width: 48%;
}

.index_area .index_link_list .index_list_item.w48_item:last-of-type {
  padding-top: 14%;
}

.index_area .index_link_list .index_list_item.w33_item {
  width: 33.33333%;
}

.index_area .index_link_list .index_list_item .index_link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}

.index_area .index_link_list .index_list_item .img_box {
  position: relative;
  width: 100%;
  height: 180px;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 70;
}

.index_area .index_link_list .index_list_item .img_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all .3s;
  transition: all .3s;
  opacity: 0;
  z-index: 80;
}

.children .index_area .index_link_list .index_list_item .img_box::before {
  background-color: rgba(252, 149, 26, 0.6);
}

.dietetics .index_area .index_link_list .index_list_item .img_box::before {
  background-color: rgba(80, 183, 244, 0.6);
}

.nursing .index_area .index_link_list .index_list_item .img_box::before {
  background-color: rgba(252, 149, 184, 0.6);
}

.index_area .index_link_list .index_list_item .img_box::after {
  content: "view more";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-family: baskerville-display-pt, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  -webkit-transition: all .3s;
  transition: all .3s;
  opacity: 0;
  z-index: 90;
}

.children .index_area .index_link_list .index_list_item .img_box.index_list_img01 {
  background-image: url(../img/child/c_idx1.jpg);
}

.children .index_area .index_link_list .index_list_item .img_box.index_list_img02 {
  background-image: url(../img/child/c_idx2.jpg);
}

.children .index_area .index_link_list .index_list_item .img_box.index_list_img03 {
  background-image: url(../img/child/c_idx3.jpg);
}

.dietetics .index_area .index_link_list .index_list_item .img_box.index_list_img01 {
  background-image: url(../img/food/f_idx1.jpg);
}

.dietetics .index_area .index_link_list .index_list_item .img_box.index_list_img02 {
  background-image: url(../img/food/f_idx2.jpg);
}

.dietetics .index_area .index_link_list .index_list_item .img_box.index_list_img03 {
  background-image: url(../img/food/f_idx3.jpg);
}

.nursing .index_area .index_link_list .index_list_item .img_box.index_list_img01 {
  background-image: url(../img/nurse/n_idx1.jpg);
}

.nursing .index_area .index_link_list .index_list_item .img_box.index_list_img02 {
  background-image: url(../img/nurse/n_idx2.jpg);
}

.nursing .index_area .index_link_list .index_list_item .img_box.index_list_img03 {
  background-image: url(../img/nurse/n_idx5.jpg);
}

.nursing .index_area .index_link_list .index_list_item .img_box.index_list_img06 {
  background-image: url(../img/nurse/n_idx6.jpg);
}

.index_area .index_link_list .index_list_item .img_box.index_list_img04 {
  background-image: url(../img/child/c_idx4.jpg);
}

.index_area .index_link_list .index_list_item .img_box.index_list_img05 {
  background-image: url(../img/child/c_idx5.jpg);
}

.index_area .index_link_list .index_list_item .index_link_text {
  display: block;
  margin: 15px 0;
  padding: 1em;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .index_area .index_link_list .index_list_item .index_link_text {
    margin: 10px 0 15px;
  }
}

.index_area .index_link_list .index_list_item .index_link_text.pause {
  border-right: 1px solid #23234b;
}

@media screen and (max-width: 768px) {
  .index_area .index_link_list .index_list_item .index_link_text.pause {
    border-right: none;
  }
}

.index_area .index_link_list .banner_item {
  margin-top: 20px;
  margin-bottom: 30px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.index_area .index_link_list .banner_item:hover {
  opacity: .6;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.index_area .index_link_list .link_list_item {
  margin-top: 20px;
}

.index_area .index_link_list .link_list_item.w48_item {
  padding-top: 0;
}

.index_area .index_link_list .link_list_item .link_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.index_area .index_link_list .link_list_item .link_list .index_list_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 50%;
  padding: 4% 0;
}

.index_area .index_link_list .link_list_item .link_list .index_list_btn .btn_text {
  margin-right: 0;
  margin-left: calc(25px + 1em);
}

.index_area .index_link_list .link_list_item .link_list .index_list_btn .arrow {
  position: relative;
  right: auto;
  left: 12.5px;
}

.index_area .top_link {
  display: inline-block;
  margin: 40px 0;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-decoration: underline;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.children .index_area .top_link:hover {
  color: #fc951a;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.dietetics .index_area .top_link:hover {
  color: #50b7f4;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.nursing .index_area .top_link:hover {
  color: #fc95b8;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/*-----------------------------
=====子ページ=====
トップ
---------------------------*/
.top_container {
  position: relative;
  margin: 5% 5% 0;
}

.top_container::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 30%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .top_container::before {
    padding-top: 40%;
  }
}

.children.career .top_container::before {
  background-image: url(../img/child/c_2_fv.jpg);
}

.dietetics.course .top_container::before {
  background-image: url(../img/food/f_2_fv.jpg);
}

.top_container .page_title {
  margin-top: 80px;
  font-size: 4.6rem;
  letter-spacing: 0.25em;
}

@media screen and (max-width: 768px) {
  .top_container .page_title {
    margin-top: 40px;
    font-size: 3rem;
  }
}

.top_container .page_title .top_text {
  display: block;
  font-size: 2rem;
  letter-spacing: 0.1em;
}

.top_container .introduction {
  margin-top: 2em;
}

@media screen and (max-width: 768px) {
  .top_container .introduction {
    text-align: justify;
  }
}

.cont_sec_title {
  position: relative;
  max-width: 1000px;
  width: 90%;
  margin: auto;
}

.cont_sec_title .title {
  display: inline-block;
  margin: auto 0;
  padding: 0 1.35em 0 1.5em;
  background-color: #fff;
  font-size: 3.4rem;
  letter-spacing: 0.15em;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .cont_sec_title .title {
    padding: 0 0.85em 0 1em;
  }
}

.cont_sec_title .title::before {
  content: "";
  position: absolute;
  top: .5em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background-color: #23234b;
  z-index: -1;
}

/*-----------------------------
=====進路ページ=====
4年間の流れ
---------------------------*/
.flow_area {
  margin-top: 80px;
  padding-top: 70px;
  background-color: #fff2e2;
}

@media screen and (max-width: 768px) {
  .flow_area {
    margin-top: 60px;
    padding-top: 40px;
  }
}

.flow_area .flow_container {
  position: relative;
  max-width: 1000px;
  width: 90%;
  margin: 160px auto 0;
}

@media screen and (max-width: 768px) {
  .flow_area .flow_container {
    margin-top: 100px;
  }
}

.flow_area .flow_container::before {
  content: "";
  position: absolute;
  top: -130px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2px;
  height: 90px;
  border-right: 4px dotted #fc951a;
}

@media screen and (max-width: 768px) {
  .flow_area .flow_container::before {
    top: -80px;
    height: 50px;
  }
}

.flow_area .flow_container.container01 {
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .flow_area .flow_container.container01 {
    margin-top: 70px;
  }
}

.flow_area .flow_container.container01::before {
  content: none;
}

.flow_area .flow_container .flow_title_box {
  position: relative;
}

.flow_area .flow_container .flow_title_box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 130px;
  height: 130px;
  background-image: url(../img/child/c_ob.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .flow_area .flow_container .flow_title_box::before {
    width: 100px;
    height: 100px;
  }
}

.flow_area .flow_container .flow_title_box .flow_title {
  position: relative;
  z-index: 20;
  font-size: 1.4rem;
}

.flow_area .flow_container .flow_title_box .flow_title .num {
  display: block;
  font-size: 5.5rem;
  line-height: 0.9;
}

@media screen and (max-width: 768px) {
  .flow_area .flow_container .flow_title_box .flow_title .num {
    font-size: 4.5rem;
  }
}

.flow_area .flow_container .flow_title_box .flow_title .period {
  display: block;
  font-size: 1.8rem;
  line-height: 0.9;
}

@media screen and (max-width: 768px) {
  .flow_area .flow_container .flow_title_box .flow_title .period {
    font-size: 1.6rem;
  }
}

.flow_area .flow_container .flow_topic {
  font-size: 3rem;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .flow_area .flow_container .flow_topic {
    font-size: 2.6rem;
  }
}

.flow_area .flow_container .topic {
  color: #fc951a;
  font-size: 3rem;
}

.flow_area .flow_container .topic .flow_license_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
}

.flow_area .flow_container .topic .flow_license_list .list_item {
  margin-right: 5px;
  padding: 3px 2px 4px 4px;
  border-radius: 3px;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1;
}

.flow_area .flow_container .topic .flow_license_list .list_item.hoikushi {
  background-color: #4ecfca;
}

.flow_area .flow_container .topic .flow_license_list .list_item.youchien {
  background-color: #f086a4;
}

.flow_area .flow_container .topic .flow_license_list .list_item.syougakkou {
  background-color: #a992ea;
}

.flow_area .flow_container .text {
  margin-top: 1em;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}

.flow_area .flow_container .activity_list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: 30px;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .flow_area .flow_container .activity_list_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.flow_area .flow_container .activity_list_item .text_box {
  width: 50%;
  padding: 5% 5% 4%;
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .flow_area .flow_container .activity_list_item .text_box {
    width: 100%;
    padding: 20px 2em 30px;
  }
}

.flow_area .flow_container .activity_list_item .activity_list_img {
  display: block;
  width: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .flow_area .flow_container .activity_list_item .activity_list_img {
    width: 100%;
    padding-top: 60%;
  }
}

.children .flow_area .flow_container .activity_list_item .activity_list_img.img01 {
  background-image: url(../img/child/c_2_fl1.jpg);
}

.children .flow_area .flow_container .activity_list_item .activity_list_img.img02 {
  background-image: url(../img/child/c_2_fl2.jpg);
}

.children .flow_area .flow_container .activity_list_item .activity_list_img.img03 {
  background-image: url(../img/child/c_2_fl3.jpg);
}

.flow_area .flow_container.decision {
  max-width: none;
  width: 100%;
  padding-bottom: 50px;
}

.flow_area .flow_container.decision::after {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 0;
  width: 100%;
  height: 87%;
  background-color: #fc951a;
  z-index: 5;
}

.flow_area .flow_container.decision .flow_title_box::before {
  background-image: url(../img/child/c_ob_bg.png);
}

.flow_area .flow_container.decision .decision_topic,
.flow_area .flow_container.decision .decision_text {
  position: relative;
  color: #fff;
  z-index: 20;
}

.flow_area .flow_container.decision .decision_topic {
  margin-top: 30px;
  font-size: 5rem;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 768px) {
  .flow_area .flow_container.decision .decision_topic {
    font-size: 3.6rem;
  }
}

.flow_area .flow_container.decision .decision_text {
  margin-top: .5em;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .flow_area .flow_container.decision .decision_text {
    max-width: 500px;
    width: 90%;
    margin: 1em auto 0;
    text-align: justify;
  }
}

.flow_area .flow_container .activity_container {
  margin-top: 30px;
  padding: 7% 5% 5%;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .flow_area .flow_container .activity_container {
    padding: 40px 0;
  }
}

.flow_area .flow_container .activity_container .topic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .flow_area .flow_container .activity_container .topic {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.flow_area .flow_container .activity_container .topic .flow_license_list {
  margin-top: 3px;
  margin-left: 10px;
}

@media screen and (max-width: 768px) {
  .flow_area .flow_container .activity_container .topic .flow_license_list {
    margin-top: .5em;
    margin-left: 0;
  }
}

.flow_area .flow_container .activity_container .seminar_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .flow_area .flow_container .activity_container .seminar_list {
    width: 80%;
    margin: 0 auto;
  }
}

.flow_area .flow_container .activity_container .seminar_list.row03 .box {
  width: 31%;
}

@media screen and (max-width: 768px) {
  .flow_area .flow_container .activity_container .seminar_list.row03 .box {
    width: 100%;
  }
}

.flow_area .flow_container .activity_container .seminar_list.row02 .box {
  width: 48%;
}

@media screen and (max-width: 768px) {
  .flow_area .flow_container .activity_container .seminar_list.row02 .box {
    width: 100%;
  }
}

.flow_area .flow_container .activity_container .seminar_list .box {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto auto 1fr;
      grid-template-rows: auto auto 1fr;
  margin-top: 40px;
}

.flow_area .flow_container .activity_container .seminar_list .seminar_topic {
  padding-left: 1em;
  background-color: #fc951a;
  border-radius: 50px;
  color: #fff;
  font-size: 2rem;
  text-align: left;
}

.flow_area .flow_container .activity_container .seminar_list .text {
  margin-top: 1.5em;
  text-align: justify;
}

.flow_area .flow_container .activity_container .seminar_list .image {
  display: -ms-grid;
  display: grid;
  margin-top: 15px;
}

.flow_area .flow_container .activity_container .seminar_list .image img {
  -ms-flex-line-pack: end;
      align-content: end;
  margin-top: auto;
}

.flow_area .flow_container .compilation_box {
  background-color: #fff;
  border-radius: 20px;
  margin-top: 30px;
  padding: 5%;
}

@media screen and (max-width: 768px) {
  .flow_area .flow_container .compilation_box {
    padding: 2em 2em 3em;
  }
}

.flow_area .flow_container .compilation_box .text {
  margin-top: 2em;
  text-align: justify;
}

.flow_area .flow_container .button {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .flow_area .flow_container .button {
    margin-top: 20px;
  }
}

.flow_area .message_container {
  position: relative;
  margin-top: 70px;
  padding-top: 230px;
  background-color: #fff;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .flow_area .message_container {
    margin-top: 50px;
    padding-top: 100px;
  }
}

.flow_area .message_container::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
  border-top: 130px solid #fff2e2;
}

@media screen and (max-width: 768px) {
  .flow_area .message_container::before {
    border-top: 60px solid #fff2e2;
  }
}

.flow_area .message_container .message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 6rem;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .flow_area .message_container .message {
    font-size: 4.2rem;
  }
}

.flow_area .message_container .message .first {
  margin-right: 0.5em;
}

.flow_area .message_container .message .text {
  width: 100%;
  font-size: 2.4rem;
  font-style: normal;
}

@media screen and (max-width: 768px) {
  .flow_area .message_container .message .text {
    margin-top: 0.5em;
  }
}

.flow_area .message_container .img_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 900px;
  width: 70%;
  margin: 40px auto 0;
}

@media screen and (max-width: 768px) {
  .flow_area .message_container .img_box {
    width: 90%;
    margin-top: 30px;
  }
}

.flow_area .message_container .img_box .message_img {
  width: 31%;
}

/*-----------------------------
=====進路ページ=====
トップ
---------------------------*/
.info_area {
  max-width: 900px;
  width: 90%;
  margin: 150px auto;
}

.info_area .info_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  height: 220px;
  margin-top: 30px;
  -webkit-transition: all .5s;
  transition: all .5s;
}

@media screen and (max-width: 768px) {
  .info_area .info_container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    max-width: 600px;
    height: auto;
    margin: 30px auto 0;
  }
}

.info_area .info_container:hover {
  opacity: .9;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.info_area .info_container:hover .img_box {
  -webkit-transition: all .7s;
  transition: all .7s;
  background-size: 110%;
}

.info_area .info_container:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .info_area .info_container:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.info_area .info_container .info_container_link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
}

.info_area .info_container .text_box {
  position: relative;
  width: 50%;
  padding: 5% 3% 1%;
  background-color: #23234b;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .info_area .info_container .text_box {
    width: 100%;
    min-height: 163px;
  }
}

.info_area .info_container .text_box .text {
  font-size: 1.7rem;
}

@media screen and (max-width: 768px) {
  .info_area .info_container .text_box .text {
    font-size: 1.5rem;
  }
}

.info_area .info_container .text_box .topic {
  margin-top: 10px;
  font-size: 3.8rem;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .info_area .info_container .text_box .topic {
    font-size: 3.4rem;
  }
}

.info_area .info_container .text_box .topic_img {
  margin-top: 20px;
}

.info_area .info_container .text_box .topic_img.career_data {
  width: 70%;
}

@media screen and (max-width: 768px) {
  .info_area .info_container .text_box .topic_img.career_data {
    max-width: 270px;
  }
}

.info_area .info_container .text_box .topic_img.career_support {
  width: 90%;
}

@media screen and (max-width: 768px) {
  .info_area .info_container .text_box .topic_img.career_support {
    max-width: 340px;
  }
}

.info_area .info_container .text_box .topic_img.lets_talk {
  width: 65%;
}

@media screen and (max-width: 768px) {
  .info_area .info_container .text_box .topic_img.lets_talk {
    max-width: 250px;
  }
}

.info_area .info_container .img_box {
  width: 50%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  -webkit-transition: all .5s;
  transition: all .5s;
}

@media screen and (max-width: 768px) {
  .info_area .info_container .img_box {
    width: 100%;
    height: auto;
    padding-top: 40%;
  }
}

.info_area .info_container .img_box.support {
  background-image: url(../img/child/c_2_kc.jpg);
}

.info_area .info_container .img_box.career_data {
  background-image: url(../img/child/c_2_cd.jpg);
}

.info_area .info_container .img_box.career_support {
  background-image: url(../img/child/c_2_cs.jpg);
}

.info_area .info_container .img_box.lets_talk {
  background-image: url(../img/child/c_2_lt.jpg);
}

.info_area .info_container .button {
  position: absolute;
  bottom: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .info_area .info_container .button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: static;
    bottom: auto;
    left: auto;
    -webkit-transform: unset;
            transform: unset;
    margin: 30px auto 20px;
  }
}

@media screen and (max-width: 768px) {
  .info_area .info_container .button .btn_text {
    margin-right: 2.5em;
  }
}

@media screen and (max-width: 768px) {
  .info_area .info_container .button .arrow {
    position: relative;
    top: auto;
    right: auto;
    -webkit-transform: unset;
            transform: unset;
  }
}

.info_area .info_container .button .arrow::before {
  border-color: #fff;
}

.info_area .info_container .button .arrow::after {
  border-color: #fff #fff transparent transparent;
}

/*-----------------------------
=====系統・履修モデルページ=====
4系統
---------------------------*/
.system_area {
  margin-top: 120px;
}

.system_area .system_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2%;
  position: relative;
  max-width: 1000px;
  width: 90%;
  margin: 50px auto 0;
}

@media screen and (max-width: 768px) {
  .system_area .system_container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 30px;
  }
}

.system_area .system_container .system_box {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 110px auto 90px;
      grid-template-rows: 110px auto 90px;
  width: 25%;
  padding: 1em 0;
  border-radius: 20px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .system_area .system_container .system_box {
    -ms-grid-rows: 70px auto 70px;
        grid-template-rows: 70px auto 70px;
    width: 48%;
    margin: 3% auto 0;
  }
}

.system_area .system_container .system_box:nth-of-type(1) {
  background-color: #a992ea;
}

.system_area .system_container .system_box:nth-of-type(2) {
  background-color: #f086a4;
}

.system_area .system_container .system_box:nth-of-type(3) {
  background-color: #f8a334;
}

.system_area .system_container .system_box:nth-of-type(4) {
  background-color: #4ecfca;
}

@media screen and (max-width: 768px) {
  .system_area .system_container .system_box:nth-of-type(3), .system_area .system_container .system_box:nth-of-type(4) {
    -ms-grid-rows: 70px auto 50px;
        grid-template-rows: 70px auto 50px;
    padding-top: 50px;
  }
}

.system_area .system_container .system_box .topic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  font-size: 3rem;
  letter-spacing: .2em;
  line-height: 1.2;
}

@media screen and (max-width: 1024px) {
  .system_area .system_container .system_box .topic {
    font-size: 2.6rem;
    padding: 0;
  }
}

.system_area .system_container .system_box .text {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  padding: 0 1.5em;
  font-size: 1.4rem;
  letter-spacing: .1em;
  text-align: justify;
}

.system_area .system_container .system_text {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 94%;
  padding: 0.5em;
  background-color: #fff;
  border: 1px solid #23234b;
  border-radius: 50px;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .system_area .system_container .system_text {
    bottom: auto;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

/*-----------------------------
=====系統・履修モデルページ=====
6つの履修モデル
---------------------------*/
.dietetics_course_area {
  margin: 150px auto 110px;
}

.dietetics_course_area .course_list .course_item {
  margin-top: 110px;
}

@media screen and (max-width: 768px) {
  .dietetics_course_area .course_list .course_item {
    margin-top: 60px;
  }
}

.dietetics_course_area .course_list .course_item .title_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  height: 200px;
  background-color: #23234b;
  color: #fff;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .dietetics_course_area .course_list .course_item .title_box {
    height: 180px;
  }
}

.dietetics_course_area .course_list .course_item .title_box .course_title {
  max-width: 1000px;
  width: 90%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 4rem;
  line-height: 1.5;
  text-align: justify;
}

@media screen and (max-width: 1024px) {
  .dietetics_course_area .course_list .course_item .title_box .course_title {
    font-size: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .dietetics_course_area .course_list .course_item .title_box .course_title {
    display: block;
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 425px) {
  .dietetics_course_area .course_list .course_item .title_box .course_title {
    font-size: 6.5vw;
  }
}

.dietetics_course_area .course_list .course_item .title_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 60%;
  width: 40%;
  height: 100%;
  z-index: 20;
}

@media screen and (max-width: 768px) {
  .dietetics_course_area .course_list .course_item .title_box::before {
    left: 70%;
    width: 30%;
  }
}

.dietetics_course_area .course_list .course_item .title_box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 65%;
  width: 50%;
  height: 170%;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 30;
}

@media screen and (max-width: 768px) {
  .dietetics_course_area .course_list .course_item .title_box::after {
    top: 20%;
    left: auto;
    right: -10%;
    height: 100%;
    background-position: center;
  }
}

.dietetics_course_area .course_list .course_item .title_box.num01::before {
  background-color: #d8d3f6;
}

.dietetics_course_area .course_list .course_item .title_box.num01::after {
  background-image: url(../img/food/f_2_fld1.png);
}

.dietetics_course_area .course_list .course_item .title_box.num02::before {
  background-color: #ffcfe5;
}

.dietetics_course_area .course_list .course_item .title_box.num02::after {
  background-image: url(../img/food/f_2_fld2.png);
}

.dietetics_course_area .course_list .course_item .title_box.num03::before {
  background-color: #c9e9e3;
}

.dietetics_course_area .course_list .course_item .title_box.num03::after {
  background-image: url(../img/food/f_2_fld3.png);
}

.dietetics_course_area .course_list .course_item .title_box.num04::before {
  background-color: #dfeb99;
}

.dietetics_course_area .course_list .course_item .title_box.num04::after {
  background-image: url(../img/food/f_2_fld4.png);
}

.dietetics_course_area .course_list .course_item .title_box.num05::before {
  background-color: #ffeaa3;
}

.dietetics_course_area .course_list .course_item .title_box.num05::after {
  background-image: url(../img/food/f_2_fld5.png);
}

.dietetics_course_area .course_list .course_item .title_box.num06::before {
  background-color: #ffc4be;
}

.dietetics_course_area .course_list .course_item .title_box.num06::after {
  background-image: url(../img/food/f_2_fld6.png);
}

.dietetics_course_area .course_list .course_item .title_box .num {
  margin-right: .75em;
  font-size: 2em;
  vertical-align: -.15em;
}

@media screen and (max-width: 768px) {
  .dietetics_course_area .course_list .course_item .title_box .num {
    display: block;
    line-height: 0.8;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.dietetics_course_area .course_list .course_item .inner {
  max-width: 1000px;
  width: 90%;
  margin: 3em auto 0;
  text-align: justify;
}

.dietetics_course_area .course_list .course_item .course_text {
  width: 60%;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 768px) {
  .dietetics_course_area .course_list .course_item .course_text {
    width: 100%;
  }
}

.dietetics_course_area .course_list .course_item .course_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .dietetics_course_area .course_list .course_item .course_container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0;
  }
}

.dietetics_course_area .course_list .course_item .course_container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: calc(100% - calc(1.6rem + 30px));
  border-right: 1px dashed rgba(35, 35, 75, 0.8);
}

@media screen and (max-width: 768px) {
  .dietetics_course_area .course_list .course_item .course_container::before {
    content: none;
  }
}

.dietetics_course_area .course_list .course_item .course_container .course_box {
  width: 46%;
}

@media screen and (max-width: 768px) {
  .dietetics_course_area .course_list .course_item .course_container .course_box {
    width: 100%;
    padding: 30px 0;
  }
}

@media screen and (max-width: 768px) {
  .dietetics_course_area .course_list .course_item .course_container .course_box:first-of-type {
    border-bottom: 1px dashed rgba(35, 35, 75, 0.8);
  }
}

.dietetics_course_area .course_list .course_item .course_container .course_box .topic {
  margin-bottom: 10px;
}

.dietetics_course_area .course_list .course_item .course_container .career_list {
  display: -ms-grid;
  display: grid;
  height: calc(100% - calc(1.6rem + 20px));
}

.dietetics_course_area .course_list .course_item .course_container .career_list .list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
  padding: .25em;
  border-radius: 50px;
  font-size: 2rem;
  text-align: center;
}

.dietetics_course_area .course_list .course_item .course_container .career_list.num01 .list_item {
  background-color: #d8d3f6;
}

.dietetics_course_area .course_list .course_item .course_container .career_list.num02 .list_item {
  background-color: #ffcfe5;
}

.dietetics_course_area .course_list .course_item .course_container .career_list.num03 .list_item {
  background-color: #c9e9e3;
}

.dietetics_course_area .course_list .course_item .course_container .career_list.num04 .list_item {
  background-color: #dfeb99;
}

.dietetics_course_area .course_list .course_item .course_container .career_list.num05 .list_item {
  background-color: #ffeaa3;
}

.dietetics_course_area .course_list .course_item .course_container .career_list.num06 .list_item {
  background-color: #ffc4be;
}

.dietetics_course_area .course_list .course_item .course_container .lesson_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .dietetics_course_area .course_list .course_item .course_container .lesson_box {
    margin-top: 20px;
  }
}

.dietetics_course_area .course_list .course_item .course_container .lesson_box .top_topic {
  width: 100%;
  margin-bottom: 1em;
  font-size: 2.4rem;
}

.dietetics_course_area .course_list .course_item .course_container .lesson_box .image {
  width: 48%;
}

.dietetics_course_area .course_list .course_item .course_container .lesson_box .text {
  width: 48%;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
}

/*-----------------------------
=====系統・履修モデルページ=====
トップ
---------------------------*/
/*-----------------------------
=====系統・履修モデルページ=====
トップ
---------------------------*/
/*-----------------------------
=====系統・履修モデルページ=====
トップ
---------------------------*/
/*-----------------------------
=====進路ページ=====
トップ
---------------------------*/
/*-----------------------------
=====進路ページ=====
トップ
---------------------------*/
/*-----------------------------
=====進路ページ=====
トップ
---------------------------*/
/*-----------------------------
イントロダクション
---------------------------*/
/*-----------------------------
=====全ページ=====
ページ下部
---------------------------*/
.bottom_area a {
  -webkit-transition: all .3s;
  transition: all .3s;
}

.bottom_area a:hover {
  opacity: .6;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.bottom_area .bottom_nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #23234b;
}

@media screen and (max-width: 768px) {
  .bottom_area .bottom_nav_list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px 0 20px;
  }
}

.bottom_area .bottom_nav_list .nav_list_item {
  margin: 20px 0;
  width: calc(100% / 5);
}

@media screen and (max-width: 768px) {
  .bottom_area .bottom_nav_list .nav_list_item {
    width: 33%;
    margin: 5px 0;
  }
}

.bottom_area .bottom_nav_list .nav_list_item .nav_link {
  display: block;
  padding: 30px 1em;
  border-right: 1px solid #fff;
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .bottom_area .bottom_nav_list .nav_list_item .nav_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    padding: 10px 0;
    border-right: none;
    line-height: 1.8;
  }
}

@media screen and (max-width: 768px) {
  .bottom_area .bottom_nav_list .nav_list_item .nav_link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background-color: #fff;
  }
}

.bottom_area .bottom_nav_list .nav_list_item:last-of-type .nav_link {
  border-right: none;
}

@media screen and (max-width: 768px) {
  .bottom_area .bottom_nav_list .nav_list_item:last-of-type .nav_link {
    border-bottom: none;
  }
}

@media screen and (max-width: 768px) {
  .bottom_area .bottom_nav_list .nav_list_item:last-of-type .nav_link::after {
    content: none;
  }
}

@media screen and (max-width: 768px) {
  .bottom_area .bottom_nav_list .nav_list_item:nth-of-type(3) .nav_link::after {
    content: none;
  }
}

/*-----------------------------
=====学部一覧トップページ=====
トップ
---------------------------*/
#academics_link_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  height: auto;
  margin-bottom: 29px;
}

#academics_link_area ul {
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
}

#academics_link_area li {
  margin: 0 1px 20px 0;
  padding: 0;
  display: inline-block;
}

.academics_link_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.academics_link_a,
.academics_link_b,
.academics_link_c,
.academics_link_d {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #FFF;
  -webkit-box-shadow: 0 0 1px #DDD;
          box-shadow: 0 0 1px #DDD;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: 33.3333%;
}

.academics_link_d {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.academics_link_a a,
.academics_link_b a,
.academics_link_c a,
.academics_link_d a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.academics_link_small {
  margin: 21px auto 0;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  font-family: "Yu Mincho", "YuMincho";
  letter-spacing: 0.05em;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}

.academics_link_large {
  margin-bottom: 10px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  font-family: "Yu Mincho", "YuMincho";
  letter-spacing: 0.05em;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}

.academics_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #00448B;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}

.academics_link_a img,
.academics_link_b img,
.academics_link_c img {
  padding: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.img_wrap_a {
  border-bottom: 4px solid #468ECB;
  overflow: hidden;
}

.img_wrap_b {
  border-bottom: 4px solid #F6CC5C;
  overflow: hidden;
}

.img_wrap_c {
  border-bottom: 4px solid #EB95A0;
  overflow: hidden;
}

.img_wrap_d {
  border-bottom: 4px solid #FB94B7;
  overflow: hidden;
}

.img_wrap_a img,
.img_wrap_b img,
.img_wrap_c img,
.img_wrap_d img {
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.academics_link_a:hover {
  background-color: #468ECB;
}

.academics_link_b:hover {
  background-color: #F6CC5C;
}

.academics_link_c:hover {
  background-color: #EB95A0;
}

.academics_link_d:hover {
  background-color: #FB94B7;
}

.academics_link_a:hover .academics_link_small,
.academics_link_b:hover .academics_link_small,
.academics_link_c:hover .academics_link_small,
.academics_link_d:hover .academics_link_small,
.academics_link_a:hover .academics_link_large,
.academics_link_b:hover .academics_link_large,
.academics_link_c:hover .academics_link_large,
.academics_link_d:hover .academics_link_large,
.academics_link_a:hover .academics_detail,
.academics_link_b:hover .academics_detail,
.academics_link_c:hover .academics_detail,
.academics_link_d:hover .academics_detail {
  color: #FFFFFF;
}

.academics_link_a:hover img,
.academics_link_b:hover img,
.academics_link_c:hover img,
.academics_link_d:hover img {
  /*	opacity: 0.9;*/
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.banner_arrow_button {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #00448B;
  border-radius: 10px;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.banner_arrow2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-right: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
  -webkit-transform: translateY(-50%) translateX(-60%) rotateZ(-45deg);
          transform: translateY(-50%) translateX(-60%) rotateZ(-45deg);
  -webkit-transition: border 0.2s;
  transition: border 0.2s;
}

.disappear3 {
  display: none;
}

.academics_link_a:hover .banner_arrow_button,
.academics_link_b:hover .banner_arrow_button,
.academics_link_c:hover .banner_arrow_button,
.academics_link_d:hover .banner_arrow_button {
  border-color: #FFFFFF;
  background-color: #FFFFFF;
}

.academics_link_a:hover .link_arrow,
.academics_link_b:hover .link_arrow,
.academics_link_c:hover .link_arrow,
.academics_link_d:hover .link_arrow {
  border-right: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
}

.academics_link_a:hover .banner_arrow2 {
  border-right: 1px solid #468ECB;
  border-bottom: 1px solid #468ECB;
}

.academics_link_b:hover .banner_arrow2 {
  border-right: 1px solid #F6CC5C;
  border-bottom: 1px solid #F6CC5C;
}

.academics_link_c:hover .banner_arrow2 {
  border-right: 1px solid #EB95A0;
  border-bottom: 1px solid #EB95A0;
}

.academics_link_d:hover .banner_arrow2 {
  border-right: 1px solid #FB94B7;
  border-bottom: 1px solid #FB94B7;
}

.o_box_graduate #academics_link_area {
  margin-bottom: 0;
}

@media screen and (max-width: 640px) {
  #academics_link_area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #FFFFFF;
  }
  #academics_link_area ul {
    width: 100%;
  }
  #academics_link_area li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin: 0 0 1px 0;
  }
  .academics_link_title {
    padding-left: 10px;
  }
  .academics_link_a,
  .academics_link_b,
  .academics_link_c,
  .academics_link_d {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .academics_link_small {
    font-size: 14px;
    text-align: left;
    margin: 0;
  }
  .academics_link_large {
    font-size: 18px;
    text-align: left;
    margin: 0;
  }
  .academics_detail {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 0;
  }
  .img_wrap_a {
    border-right: 4px solid #468ECB;
    border-bottom: none;
  }
  .img_wrap_b {
    border-right: 4px solid #F6CC5C;
    border-bottom: none;
  }
  .img_wrap_c {
    border-right: 4px solid #EB95A0;
    border-bottom: none;
  }
  .img_wrap_d {
    border-right: 4px solid #FB94B7;
    border-bottom: none;
  }
  .banner_title {
    left: 10px;
    font-size: 16px;
    text-align: left;
  }
  .disappear3 {
    display: inline-block;
  }
  .banner_arrow_button {
    position: absolute;
    right: 10px;
    width: 22px;
    height: 22px;
    border-radius: 11px;
    background-color: #00448B;
  }
  .banner_arrow {
    position: absolute;
    width: 7px;
    height: 7px;
  }
  .banner_arrow2 {
    position: absolute;
    width: 7px;
    height: 7px;
    border-right: 1px solid #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
  }
  .academics_detail {
    display: none;
  }
}

@media screen and (max-width: 500px) {
  .academics_link_a img,
  .academics_link_b img,
  .academics_link_c img,
  .academics_link_d img {
    width: 150px;
    height: 98px;
  }
  .banner_row {
    height: 98px;
  }
  .banner_image,
  .banner_filter {
    width: 150px;
    height: 98px;
  }
  .banner_text {
    width: calc(100% - 150px);
    height: 98px;
  }
  .banner_image_left {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  .banner_image_right {
    -webkit-transform: translateX(80px);
            transform: translateX(80px);
  }
}

@media screen and (max-width: 440px) {
  .disappear4 {
    display: block;
  }
}

@media screen and (max-width: 400px) {
  .academics_link_a img,
  .academics_link_b img,
  .academics_link_c img,
  .academics_link_d img {
    width: 130px;
    height: 85px;
  }
  .banner_row {
    height: 85px;
  }
  .banner_image,
  .banner_filter {
    width: 130px;
    height: 85px;
  }
  .banner_text {
    width: calc(100% - 130px);
    height: 85px;
  }
}
/*# sourceMappingURL=style.css.map */