@charset "utf-8";
/* CSS Document */

/* -----------------------------------
  リセット
----------------------------------- */

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, caption, canvas, center, cite, code, dd, del, details, dfn, dialog, div, dl, dt, em, embed, fieldset, figcaption, figure, form, footer, header, hgroup, h1, h2, h3, h4, h5, h6, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, tt, table, tbody, textarea, tfoot, thead, time, tr, th, td, u, ul, var, video {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 16px;
  font-weight: normal;
  line-height: 1em;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

a {
  outline: none;
  color: rgba(102,102,102,1);

  -webkit-tap-highlight-color: rgba(102,102,102,0);
}
a:link, a:visited {
  color: rgba(102,102,102,1);
  text-decoration: none;
}

a:hover {
  opacity: 0.85;
  color: rgba(102,102,102,1);
}


blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

table {
  border-spacing: 0;
}

img {
  max-width: 100%;
  width /***/: auto;
  height: auto;
  vertical-align: bottom;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/* -----------------------------------
  全体設定
----------------------------------- */

html {
  overflow: auto;
}

body {
  overflow: hidden;
  position: relative;
  min-width: 1080px;
  background: url("../img/footer_bg.jpg") bottom no-repeat;
  background-color: #fff;
  background-size: contain;
  color: #333;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 2em;
  letter-spacing: 0.05em;

  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.inner {
  position: relative;
  width: 1080px;
  margin: 0 auto;
}

section {
  padding: 0 0 5em;
}

@media screen and (max-width: 767px) {
  body {
    min-width: 100%;
    background-size: 175% auto;
    line-height: 1.7em;
  }
  .inner {
    width: 86%;
  }
  section {
    padding: 0 0 2.5em;
  }
}

/* -----------------------------------
  テンプレート
----------------------------------- */

header {
  position: relative;
  z-index: 10;
  text-align: center;
}

header .inner {
  padding: 15px 0 21px;
}

header .inner h1 img {
  height: 100px;
}

.hamburger {
  display: block;
  position: fixed;
  z-index: 9999;
  top: 33px;
  right: 13px;
  width: 64px;
  height: 64px;
  text-align: center;
  cursor: pointer;
}

.hamburger span {
  display: block;
  position: absolute;
  left: 12px;
  width: 40px;
  height: 1px ;
  background: #000;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 25px;
}

.hamburger span:nth-child(2) {
  top: 38px;
}

.hamburger.active span {
  background: #fff;
}

.hamburger.active span:nth-child(1) {
  top: 32px;
  left: 12px;
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2) {
  top: 32px;
  transform: rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: 15;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background: #000;
  background: rgba(0,0,0,0.85);
  box-shadow: 0 0 3px rgba(0,0,0,0.3);
  color: #fff;
  text-align: center;
  transition: all 0.6s;
  transform: translateX(100%);
}

nav.globalMenuSp ul {
  width: 100%;
  margin: 0 auto;
  padding: 2.4em 0 1em;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  width: 100%;
  padding: 0;
}

nav.globalMenuSp ul li:hover {
  background: rgba(30,30,30,0.85);
}

nav.globalMenuSp ul li a {
  display: block;
  padding: 0.4em 0 0.4em 2em;
  color: #eee;
  font-family: "Oswald", san-serif;
  font-size: 19px;
  text-decoration: none;
  text-align: left;
  line-height: 2em;
  letter-spacing: 0;
}

nav.globalMenuSp ul li span {
  display: inline-block;
  position: relative;
  margin-left: 8px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  line-height: 2em;
}

nav.globalMenuSp.active {
  transform: translateX(0);
}

.globalMenuBg {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transition: all 0.6s;
  transform: translateX(100%);
}

.globalMenuBg.active {
  transform: translateX(0);
}

@media screen and (max-width: 767px) {
  header .inner {
    padding: 8px 0 12px;
  }

  header .inner h1 img {
    height: 64px;
  }
  nav.globalMenuSp {
    width: 85%;
  }

  nav.globalMenuSp ul {
    padding: 0.6em 0;
  }

  nav.globalMenuSp ul li a {
    padding: 0.2em 0 0.2em 1.4em;
  }

  .hamburger {
    top: 8px;
    right: 12px;
  }

  .hamburger span {
    left: 14px;
    width: 36px;
  }

  .hamburger.active span:nth-child(1) {
    left: 14px;
  }
}

/* ------- */

footer {
  padding: 0 0 18em;
  text-align: center;
  letter-spacing: 0.1em;
}

footer h2 {
  font-size: 36px;
  line-height: 2em;
}

footer .desc {
  font-size: 14px;
  line-height: 2em;
}

footer .copy {
  padding: 12px 0 0;
  font-family: "Oswald", san-serif;
  font-size: 14px;
  line-height: 2em;
}

#page-top {
  position: fixed;
  right: 13px;
  bottom: 13px;
}

#page-top a {
  display: block;
  position: relative;
  width: 64px;
  height: 64px;
  padding: 12px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: #fff;
  line-height: 1;
}

#page-top a::before {
  display: inline-block;
  position: absolute;
  top: 6px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  border: solid #fff;
  border-width: 1px 1px 0 0;
  content: "";
  -webkit-transform: rotate(-45deg) translate3d(0, 0, 0);
  transform: rotate(-45deg) translate3d(0, 0, 0);
}

@media screen and (max-width: 767px) {
  footer {
    padding: 0 0 10em;
  }

  footer h2 {
    font-size: 24px;
    line-height: 2em;
  }

  footer .desc {
    font-size: 12px;
    line-height: 2em;
  }

  footer .copy {
    font-size: 12px;
    line-height: 2em;
  }

  #page-top a {
    width: 48px;
    height: 48px;
  }

  #page-top a::before {
    width: 12px;
    height: 12px;
  }
}

/* ----------------------------
スライダー
 ---------------------------- */

.slick-slide {
  font-size: 0;
  line-height: 0;
}

.mv-slider-li {
  display: none;
}

.mv-slider-li.slick-initialized {
  display: block; 
  text-align: center;
}

.content-column button {
  border: none;
  cursor: pointer;
}

.slick-slide a {
  display: block;
  overflow: hidden;
  height: 540px;
  margin: 0;
  outline: none;
}

.home_visual_p .slick-slide a {
  height: 720px;
}


.fit {
  display: block;
  height: 540px;
}

.home_visual_p .fit {
  height: 720px;
}

.slick-slide img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-out;

  object-fit: cover;
}

.slick-slide a:hover img {
  transform: scale(1.01);
}

.slick-dots {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  margin: auto;
  font-size: 0;
  text-align: center;
}

.slick-dots li {
  display: inline-block;
}

.slick-dots li + li {
  margin-left: 14px;
}

.slick-dots li button {
  width: 14px;
  height: 14px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #fff;
  font-size: 0;
  cursor: pointer;
}

.slick-dots .slick-active button {
  background: rgba(0,0,0,0.5);
}

.page-link {
  display: none;
}


@media screen and (max-width: 767px) {
  .slick-slide a {
    margin: 0;
  }

  .slick-slide a {
    height: 240px;
  }

  .home_visual_p .slick-slide a {
    height: 280px;
  }

  .fit {
    height: 240px;
  }

  .home_visual_p .fit {
    height: 280px;
  }

  .slick-dots {
    display: none !important;
  }

  .slick-arrow {
    width: 24px;
    height: 48px;
    border: 0 !important;
    background: rgba(0,0,0,0.7);
  }

  .slick-arrow::before {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 12px;
    height: 12px;
    border: solid #fff;
    border-width: 1px 1px 0 0;
  }

  .slick-arrow.slick-next, .slick-arrow.slick-prev {
    z-index: 2;
    right: 0;
    left: 0;
    margin: auto;
  }

  .slick-arrow.slick-next {
    left: auto;
    transform: none;
  }

  .slick-arrow.slick-prev {
    right: auto;
    transform: none;
  }

  .slick-arrow.slick-next::before {
    right: 6px;
  }

  .slick-arrow.slick-prev::before {
    left: 6px;
  }

  .page-link {
    display: block;
    width: 90%;
    margin: 20px auto;
  }

  .page-link li {
    float: left;
    width: 33.33334%;
    border-right: 1px solid #333;
    text-align: center;
  }

  .page-link li:nth-of-type(3n) {
    border-right: 0;
  }

  .page-link li:nth-of-type(1), .page-link li:nth-of-type(2), .page-link li:nth-of-type(3) {
    border-bottom: 1px solid #333;
  }

  .page-link li a {
    display: block;
    padding: 20px 10px;
    font-size: 12px;
    line-height: 1em;
  }
}

/* ----------------------------
 ---------------------------- */

.visual-column {
  position: relative;
  padding: 0 0 10em;
  text-align: right;
}

.home_visual {
  display: block;
  position: relative;
}

.home_visual_p {
  position: relative;
  width: 90%;
  height: 720px;
  margin-left: 10%;
  object-fit: cover;
}

.home_visual_copy {
  position: absolute;
  bottom: 64px;
  left: 64px;
  width: 460px;
}

.st0 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: none;
}
.st1 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: none;
}

.home_visual_copy svg path {
  transition: fill-opacity 0.5s;

  fill-opacity: 0;
  fill: none;
  stroke: #333;
}

.home_visual_copy svg.done path.st0 {
  fill: #fff;
  fill-opacity: 1;
  stroke: none;
}

.home_visual_copy svg.done path.st1 {
  fill: #333;
  fill-opacity: 1;
  stroke: none;
}

.headline {
  position: relative;
  margin: 12em 0 5em;
}

.headline_visual {
  display: block;
  position: absolute;
  top: -12em;
  left: 0;
  width: 60%;
  height: 640px;

  object-fit: cover;
}

.index .medical-sciences .headline_visual {
  right: 0;
  left: auto;
}

.headline_link:hover {
  opacity: 1;
}

.headline_inner {
  position: relative;
  min-width: 640px;
  width: 40%;
  min-height: calc(480px - 5em);
  margin: 0 auto;
  padding: 5em 4.5em;
  color: #fff;
}

.single .headline_inner {
  top: 5em;
  left: 25%;
}

.index .headline_inner {
  width: 480px;
  min-height: calc(480px - 5em);
}

.index .medicine .headline_inner, .index .health-sciences .headline_inner {
  left: 25%;
}

.index .medical-sciences .headline_inner {
  right: 25%;
}

.medicine .headline_inner {
  background: linear-gradient(150deg, #4d438e 0%, #245597 100%);
}

.medical-sciences .headline_inner {
  background: linear-gradient(150deg, #60a71e 0%, #b4c83e 100%);
}

.health-sciences .headline_inner {
  background: linear-gradient(150deg, #d61f3e 0%, #e844a3 100%);
}

.headline_inner:before {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 10%;
  font-family: "Oswald", san-serif;
  font-size: 102px;
  text-align: right;
  line-height: 0.9em;
}

.medicine .headline_inner:before {
  content: "Medicine";
}

.medical-sciences .headline_inner:before {
  content: "Medical Sciences";
}

.health-sciences .headline_inner:before {
  content: "Health Sciences";
}

.headline_inner h2 {
  margin-left: 0.5em;
  text-shadow: 0 0 5px rgba(0,0,0,0.2);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, Georgia, Meiryo, serif;
  font-size: 44px;
  font-weight: normal;
  line-height: 1.2em;
  letter-spacing: 0.05em;
}

.headline_inner h2 span {
  position: relative;
}

.headline_inner h2 span:before {
  display: block;
  position: absolute;
  top: -8px;
  left: -32px;
  font-size: 64px;
  content: "｢";
}

.headline_inner h2 span:after {
  display: block;
  position: absolute;
  right: -32px;
  bottom: -4px;
  font-size: 64px;
  content: "｣";
}

.headline_inner h3 {
  margin: 1.25em 0 0.75em;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, Georgia, Meiryo, serif;
  font-size: 32px;
  line-height: 1.4em;
}

.headline_inner .desc {
  position: relative;
  margin: 2em 0 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, Georgia, Meiryo, serif;
  font-size: 24px;
  line-height: 1.7em;
}

.headline_inner .name {
  position: relative;
  font-size: 22px;
  line-height: 1em;
}

.headline_inner .name::after {
  position: relative;
  font-size: 16px;
  line-height: 1.5em;
  content: " さん";
}

.single .content-column .inner {
  width: 760px;
  padding: 80px 0 0;
}

.content-column .inner h4 {
  margin: 0 0 1em;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, Georgia, Meiryo, serif;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5em;
}

.medicine .content-column .inner h4 {
  color: #4d438e;
}

.medical-sciences .content-column .inner h4 {
  color: #60a71e;
}

.health-sciences .content-column .inner h4 {
  color: #d61f3e;
}

.content-column .inner .interview {
  margin: 0 0 4em;
}

.content-column .inner .interview .desc, .content-column .inner .interview .photo {
  margin: 0 0 2em;
}

.content-column .inner .interview .photo ul {
  display: flex;

  flex-wrap: wrap;
  justify-content: space-between;
}

.content-column .inner .interview .photo ul:after {
  display: block;
  width: 31%;
  /* between左寄せ対策 */
  content: "";
}

.content-column .inner .interview .photo ul li {
  width: 31%;
  margin: 0 0 2em;
}

.content-column .inner .interview .photo ul li dl {
  font-size: 0.85em;
  line-height: 1.5em;
  letter-spacing: 0.08em;
}

.content-column .inner .interview .mov {
  position: relative;
  margin: 0 0 2em;
}

.content-column .inner .interview .mov::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.content-column .inner .interview .mov iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.content-column .footer-btn a {
  display: block;
  width: 50%;
  margin: 0 auto;
  padding: 20px;
  border-radius: 5px;
  text-shadow: 0 0 5px rgba(0,0,0,0.2);
  color: #fff;
  text-align: center;
}

.medicine .content-column .footer-btn a {
  background: linear-gradient(150deg, #4d438e 0%, #245597 100%);
}

.medical-sciences .content-column .footer-btn a {
  background: linear-gradient(150deg, #60a71e 0%, #b4c83e 100%);
}

.health-sciences .content-column .footer-btn a {
  background: linear-gradient(150deg, #d61f3e 0%, #e844a3 100%);
}

br.pc {
  display: block;
}

br.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .visual-column {
    padding: 0 0 2.5em;
  }

  .home_visual_p {
    width: 93%;
    height: 280px;
    margin-left: 7%;
  }

  .home_visual_copy {
    position: absolute;
    bottom: 5%;
    left: 5%;
    width: 60%;
  }

  .st0 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: none;
  }
  .st1 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: none;
  }

  .home_visual_copy svg path {
    transition: fill-opacity 0.5s;

    fill-opacity: 0;
    fill: none;
    stroke: #333;
  }

  .home_visual_copy svg.done path.st0 {
    fill: #fff;
    fill-opacity: 1;
    stroke: none;
  }

  .home_visual_copy svg.done path.st1 {
    fill: #333;
    fill-opacity: 1;
    stroke: none;
  }


  .headline {
    margin: 8em 0 4em;
  }

  .headline_visual {
    top: -8em;
    width: 93%;
    height: 240px;
  }

  .headline_inner {
    min-width: auto;
    width: 93%;
    min-height: auto;
    padding: 2.4em 1.8em;
    top: 4em;
  }

  .single .headline_inner {
    top: 5em;
    left: 3.5%;
  }

  .index .headline_inner {
    width: 93%;
    min-height: calc(260px - 5em);
  }

  .index .medicine .headline_inner, .index .health-sciences .headline_inner {
    left: 3.5%;
  }

  .index .medical-sciences .headline_inner {
    right: 3.5%;
  }

  .headline_inner:before {
    font-size: 56px;
  }

  .headline_inner h2 {
    margin-left: 0.5em;
    font-size: 24px;
  }

  .headline_inner h2 span:before {
    top: -4px;
    left: -16px;
    font-size: 32px;
  }

  .headline_inner h2 span:after {
    right: -16px;
    bottom: 0;
    font-size: 32px;
  }

  .headline_inner h3 {
    font-size: 18px;
  }

  .headline_inner .desc {
    margin: 1.25em 0 0;
    font-size: 16px;
  }

  .headline_inner .company {
    font-size: 14px;
    line-height: 1.5em;
  }

  .headline_inner .name {
    font-size: 16px;
    margin-top: 0.25em;
  }

  .headline_inner .name::after {
    font-size: 12px;
  }

  .single .content-column .inner {
    width: 86%;
    margin: 0 auto;
    padding: 40px 0 0;
  }

  .content-column .inner h4 {
    margin: 0 0 0.5em;
    font-size: 21px;
  }

  .content-column .inner .interview .desc, .content-column .inner .interview .photo {
    margin: 0 0 1em;
  }

  .content-column .inner .interview .photo ul {
    flex-direction: column;
  }

  .content-column .inner .interview .photo ul li {
    width: 100%;
    margin: 0 0 1em;
  }

  .content-column .footer-btn a {
    width: 90%;
  }

  br.pc {
    display: none;
  }

  br.sp {
    display: block;
  }
}

/* カテゴリーページ */

.category .content-column h2 {
  padding: 30px 0;
  color: #fff;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, Georgia, Meiryo, serif;
  font-size: 40px;
  font-weight: normal;
  text-align: center;
  line-height: 1em;
  letter-spacing: 0.05em;
}

.medicine.category .content-column h2 {
  background: linear-gradient(150deg, #4d438e 0%, #245597 100%);
}

.medical-sciences.category .content-column h2 {
  background: linear-gradient(150deg, #60a71e 0%, #b4c83e 100%);
}

.health-sciences.category .content-column h2 {
  background: linear-gradient(150deg, #d61f3e 0%, #e844a3 100%);
}

.category .content-column .inner {
  width: 1080px;
  padding: 80px 0 0;
}

.category .cate-list {
  display: flex;
  position: relative;

  flex-wrap: wrap;
  justify-content: space-between;
}

.category .cate-list:after {
  display: block;
  width: 31.11112%;
  /* between左寄せ対策 */
  content: "";
}

.category .cate-list .box {
  width: 31.11112%;
  margin: 0 0 4em;
}

.category .cate-list .box a {
  display: block;
  overflow: hidden;
  position: relative;
}

.category .cate-list .box a img {
  transition: all 0.3s ease-out;
}

.category .cate-list .box a:hover img {
  transform: scale(1.05);
}

.category .content-column .inner .cate-title {
  margin: 0 0 2em;
  padding: 16px;
  background: #ddd;
  color: #333;
  font-size: 24px;
  text-align: left;
  line-height: 1em;
}

.medicine.category .content-column .inner .cate-title {
  border-left: 5px solid #4d438e;
}

.medical-sciences.category .content-column .inner .cate-title {
  border-left: 5px solid #60a71e;
}

.health-sciences.category .content-column .inner .cate-title {
  border-left: 5px solid #d61f3e;
}

.category .content-column .inner h4 {
  margin: 0.6em 0 0;
  font-size: 20px;
}

.category .content-column .inner .desc {
  margin-top: 0.5em;
  line-height: 1.5em;
}

@media screen and (max-width: 767px) {
  .category .content-column h2 {
    padding: 18px 0;
    font-size: 24px;
  }

  .category .content-column .inner {
    width: 86%;
    margin: 0 auto;
    padding: 40px 0 0;
  }

  .category .cate-list {
    flex-direction: column;
  }

  .category .cate-list .box {
    width: 100%;
    margin: 0 0 2em;
  }

  .category .content-column .inner .cate-title {
    margin: 0 0 1.5em;
    padding: 12px;
    font-size: 18px;
  }

  .category .content-column .inner h4 {
    margin: 0.6em 0 0;
    font-size: 20px;
  }
}
