@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/* FOUNDATION
---------------------------------------------------------------------*/
html {
  overflow-y: scroll; }

body, div, p, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, blockquote, pre, form, input, textarea, header, footer, nav, figure, figcaption {
  margin: 0;
  padding: 0;
  zoom: 1; }

header, footer, main, nav, article, aside, section {
  display: block; }

ul, ol {
  list-style-type: none; }

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle; }

hr {
  display: none;
  margin: 0;
  padding: 0;
  width: 1px;
  height: 1px; }

a {
  outline: none; }

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

@media all and (-ms-high-contrast: none) {
  select::-ms-expand {
    display: none; } }
.clearfix:before,
.clearfix:after {
  content: "";
  display: table; }

.clearfix:after {
  clear: both; }

.clear-both {
  clear: both; }

/* For IE 6/7 */
.clearfix {
  zoom: 1; }

/* Base */
* {
  font-style: normal; }

body {
  position: relative;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  color: #333; }
  @media screen and (max-width: 768px) {
    body {
      font-size: 0.875rem;
      line-height: 1.8;
      -webkit-text-size-adjust: 100%; } }
  @media screen and (min-width: 769px) {
    body {
      min-width: 1200px;
      font-size: 1rem;
      line-height: 2; } }
  body a {
    color: #333;
    text-decoration: none; }

input, textarea {
  font-family: "Roboto", sans-serif; }

button, input[type="submit"] {
  font-family: "Roboto", sans-serif; }

a[href*="mailto"]:hover {
  text-decoration: underline; }

/* COMMON
---------------------------------------------------------------------*/
/* Header　------------------------*/
.header {
  position: relative;
  display: flex;
  justify-content: space-between;
  z-index: 100; }
  @media screen and (max-width: 768px) {
    .header {
      position: sticky;
      top: 0;
      left: 0;
      height: 65px;
      background-color: #fff; } }
  .header-logo {
    margin: 18px 20px 18px 5%; }
    @media screen and (max-width: 768px) {
      .header-logo {
        margin: 12px 15px 12px 5%; } }
    .header-logo img {
      width: 220px; }
      @media screen and (max-width: 768px) {
        .header-logo img {
          width: 150px; } }
  @media screen and (max-width: 768px) {
    .header-bm {
      position: absolute;
      top: 0;
      right: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 65px;
      height: 100%;
      transform: translateX(-100%);
      padding: 10px;
      text-align: center;
      background-color: #373962;
      z-index: 101; }
      .header-bm::before {
        content: 'Menu';
        position: absolute;
        top: 37px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.6875rem;
        color: #fff; }
      .header-bm-trigger {
        position: relative;
        width: 50%;
        height: 28px;
        margin: 0 auto; }
        .header-bm-trigger > span {
          position: absolute;
          left: 0;
          width: 100%;
          height: 2px;
          background-color: #fff;
          transition: all .4s; }
          .header-bm-trigger > span:nth-of-type(1) {
            top: 2px; }
          .header-bm-trigger > span:nth-of-type(2) {
            top: 10px; }
        .header-bm-trigger.is-active > span {
          background-color: #fff; }
          .header-bm-trigger.is-active > span:nth-of-type(1) {
            transform: translateY(4px) rotate(-45deg); }
          .header-bm-trigger.is-active > span:nth-of-type(2) {
            transform: translateY(-4px) rotate(45deg); } }
  @media screen and (min-width: 769px) {
    .header-bm {
      display: none; } }
  .header-nav {
    display: flex;
    margin-left: auto; }
    @media screen and (max-width: 768px) {
      .header-nav {
        position: absolute;
        top: 100%;
        display: block;
        width: 100%;
        padding: 5% 10%;
        visibility: hidden;
        opacity: 0;
        transition: all .3s;
        overflow-y: scroll; }
        .header-nav.is-active {
          visibility: visible;
          background-color: #373962;
          opacity: 1; } }
    @media screen and (min-width: 769px) {
      .header-nav {
        margin-right: 120px; } }
  .header-list {
    display: flex;
    align-items: center; }
    @media screen and (max-width: 768px) {
      .header-list {
        display: block; } }
    .header-list li {
      height: 100%;
      margin-right: 50px; }
      @media screen and (max-width: 768px) {
        .header-list li {
          height: auto;
          margin-right: 0; } }
      .header-list li a {
        position: relative;
        display: flex;
        align-items: center;
        height: 100%; }
        @media screen and (max-width: 768px) {
          .header-list li a {
            font-size: 0.9375rem;
            color: #fff;
            padding: 7px 10px; } }
        @media screen and (min-width: 769px) {
          .header-list li a::after {
            content: '';
            display: block;
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #222d5d;
            transition: all .5s; }
          .header-list li a:hover::after {
            width: 100%; } }
      .header-list li.is-current a::after {
        width: 100%; }
  .header-lang {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%; }
    .header-lang dt {
      width: 95px;
      height: 100%;
      color: #fff;
      text-align: center;
      padding-top: 50px;
      background-color: #222d5d;
      background-image: url("/en/img/common/header_ic_lang.png");
      background-repeat: no-repeat;
      background-position: center 30%;
      cursor: pointer; }
      @media screen and (max-width: 768px) {
        .header-lang dt {
          width: 65px;
          font-size: 0.6875rem;
          padding-top: 38px;
          background-position: center 35%;
          background-size: 20px auto; } }
      @media screen and (min-width: 769px) {
        .header-lang dt {
          transition: all .5s; }
          .header-lang dt:hover {
            opacity: .7; } }
    .header-lang dd {
      position: absolute;
      right: 0;
      width: max-content;
      min-width: 100%;
      background-color: #fff;
      padding: 15px 10px;
      visibility: hidden;
      opacity: 0;
      transition: all .5s; }
      .header-lang dd.is-open {
        visibility: visible;
        opacity: 1; }
      .header-lang dd ul li a {
        display: block;
        font-size: 0.875rem;
        text-align: center;
        padding: 3px 0; }

/* Footer　------------------------*/
.test {
  width: 90%;
  max-width: 1360px;
  margin: 0 auto;
  height: 100px;
  background-color: #333; }

.footer-top {
  display: flex; }
  @media screen and (max-width: 768px) {
    .footer-top {
      display: block; } }
.footer-l, .footer-r {
  display: flex;
  align-items: center;
  width: 50%; }
  @media screen and (max-width: 768px) {
    .footer-l, .footer-r {
      display: block;
      width: 100%; } }
.footer-l {
  justify-content: flex-end;
  background-color: #222d5d;
  padding-left: 5%; }
  @media screen and (max-width: 768px) {
    .footer-l {
      padding: 7% 5%; } }
  .footer-l .footer-inner {
    padding-right: 10%; }
    @media screen and (max-width: 768px) {
      .footer-l .footer-inner {
        padding: 0; } }
.footer-r {
  justify-content: flex-start;
  background-color: #373962;
  padding-right: 5%; }
  @media screen and (max-width: 768px) {
    .footer-r {
      padding: 7% 5%; } }
  .footer-r .footer-inner {
    padding-left: 10%; }
    @media screen and (max-width: 768px) {
      .footer-r .footer-inner {
        padding-left: 0; } }
.footer-inner {
  width: 100%;
  max-width: 680px;
  padding: 50px 0; }
  @media screen and (max-width: 768px) {
    .footer-inner {
      max-width: none;
      padding: 0; } }
.footer-access {
  display: flex;
  align-items: flex-end;
  gap: 20px; }
  @media screen and (max-width: 768px) {
    .footer-access {
      display: block; } }
  .footer-access-r {
    padding-left: 10%; }
    @media screen and (max-width: 768px) {
      .footer-access-r {
        padding: 0; } }
  @media screen and (max-width: 768px) {
    .footer-access-link {
      display: flex;
      justify-content: space-between;
      margin-bottom: 20px; } }
  @media screen and (max-width: 768px) {
    .footer-access-link li {
      width: 47.5%; } }
  .footer-access-link li:not(:last-child) {
    margin-bottom: 15px; }
    @media screen and (max-width: 768px) {
      .footer-access-link li:not(:last-child) {
        margin-bottom: 0; } }
  .footer-access-link li a {
    display: block;
    font-size: 1.125rem;
    color: #fff;
    text-align: center;
    padding: 4px 10px;
    border: 1px solid #fff;
    transition: all .5s; }
    @media screen and (max-width: 768px) {
      .footer-access-link li a {
        font-size: 0.875rem; } }
    .footer-access-link li a:hover {
      color: #222d5d;
      background-color: #fff; }
  .footer-access-txt {
    font-size: 0.875rem;
    color: #fff; }
    .footer-access-txt:not(:last-child) {
      margin-bottom: 25px; }
      @media screen and (max-width: 768px) {
        .footer-access-txt:not(:last-child) {
          margin-bottom: 15px; } }
    .footer-access-txt a {
      color: #fff; }
      .footer-access-txt a:hover {
        text-decoration: underline; }
.footer-logo {
  margin-bottom: 20px; }
  @media screen and (max-width: 768px) {
    .footer-logo {
      text-align: center; } }
  .footer-logo img {
    width: 220px; }
    @media screen and (max-width: 768px) {
      .footer-logo img {
        width: 150px; } }
.footer-cr {
  font-size: 0.875rem;
  color: #fff;
  margin-top: 15px; }
  @media screen and (max-width: 768px) {
    .footer-cr {
      font-size: 0.75rem; } }
.footer-nav {
  display: flex;
  flex-wrap: wrap; }
  @media screen and (max-width: 768px) {
    .footer-nav {
      justify-content: space-between;
      margin-top: -3%; } }
  .footer-nav li {
    width: 40%;
    margin-top: 15px;
    margin-left: 25px; }
    @media screen and (max-width: 768px) {
      .footer-nav li {
        width: 47.5%;
        margin-top: 3%;
        margin-left: 0; } }
    .footer-nav li a {
      display: block;
      height: 100%;
      font-size: 1.125rem;
      color: #fff;
      padding: 4px 10px;
      background-color: #1e2d58;
      transition: all .5s; }
      @media screen and (max-width: 768px) {
        .footer-nav li a {
          font-size: 0.8125rem;
          padding: 2px 10px; } }
      .footer-nav li a::before {
        content: '・';
        font-size: 1.875rem;
        line-height: 1;
        vertical-align: middle; }
      .footer-nav li a:hover {
        color: #373962;
        background-color: #fff; }
.footer-founded {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background-color: #000;
  padding: 20px; }
  @media screen and (max-width: 768px) {
    .footer-founded {
      font-size: 0.8125rem;
      padding: 10px; } }

/* Parts　------------------------*/
.pagetitle {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 240px;
  background-color: #f5f5f5;
  background-image: url("/en/img/common/pagetitle_bg.png");
  background-repeat: no-repeat;
  background-position: 50vw center;
  background-size: auto 100%; }
  @media screen and (max-width: 768px) {
    .pagetitle {
      min-height: 120px;
      background-position: 70vw center; } }
  .pagetitle::before, .pagetitle::after {
    content: '';
    display: block;
    position: absolute;
    width: 12vw;
    height: 12vw;
    max-height: 100%;
    z-index: 3;
    background-repeat: no-repeat;
    background-size: cover; }
  .pagetitle::before {
    top: 0;
    left: 0;
    background-image: url("/en/img/common/pagetitle_bg_l.png"); }
  .pagetitle::after {
    bottom: 0;
    right: 0;
    background-image: url("/en/img/common/pagetitle_bg_r.png"); }
  .pagetitle-hn {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 5rem;
    font-weight: bold; }
    @media screen and (max-width: 768px) {
      .pagetitle-hn {
        font-size: 1.875rem;
        padding-left: 5%; } }

.breadcrumb-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 0;
  border-bottom: 1px solid #c8c8c8; }
  @media screen and (max-width: 768px) {
    .breadcrumb-inner {
      width: 100%;
      max-width: 100%;
      padding: 10px 5%; } }
.breadcrumb-list {
  display: flex; }
  @media screen and (max-width: 768px) {
    .breadcrumb-list li {
      font-size: 0.75rem; } }
  .breadcrumb-list li:not(:first-child) {
    margin-left: 10px; }
  .breadcrumb-list li:not(:last-child)::after {
    content: '>';
    margin-left: 10px; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 0 100px; }
  @media screen and (max-width: 768px) {
    .container {
      padding: 40px 0; } }

.scroll-hint-icon {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

@media screen and (max-width: 768px) {
  .js-scrollable {
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch; } }

.c-hn02 {
  font-size: 2.5rem;
  font-weight: bold;
  background-image: url("/en/img/common/title_hn02_bg.svg");
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 70px;
  margin-bottom: 35px; }
  @media screen and (max-width: 768px) {
    .c-hn02 {
      font-size: 1.25rem;
      line-height: 1.4;
      background-size: 25px auto;
      padding-left: 40px;
      margin-bottom: 25px; } }
  .c-hn02:not(:first-child) {
    margin-top: 70px; }
    @media screen and (max-width: 768px) {
      .c-hn02:not(:first-child) {
        margin-top: 40px; } }

.c-hn03 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.4;
  background-color: #222d5d;
  padding: 8px 30px;
  margin-top: 70px;
  margin-bottom: 30px; }
  @media screen and (max-width: 768px) {
    .c-hn03 {
      font-size: 1rem;
      padding: 7px 15px;
      margin-top: 30px;
      margin-bottom: 15px; } }
  .c-hn02 + .c-hn03 {
    margin-top: 50px; }
    @media screen and (max-width: 768px) {
      .c-hn02 + .c-hn03 {
        margin-top: 25px; } }

.c-lead {
  font-size: 1.5rem;
  margin-bottom: 30px; }
  @media screen and (max-width: 768px) {
    .c-lead {
      font-size: 1rem;
      margin-bottom: 20px; } }

.c-txt:not(:last-child) {
  margin-bottom: 30px; }
  @media screen and (max-width: 768px) {
    .c-txt:not(:last-child) {
      margin-bottom: 20px; } }

.c-note {
  text-indent: -.45em;
  padding-left: .45em; }
  .c-note:not(:last-child) {
    margin-bottom: 30px; }
    @media screen and (max-width: 768px) {
      .c-note:not(:last-child) {
        margin-bottom: 20px; } }

.c-annot {
  position: relative;
  top: 5px;
  font-size: 100%;
  line-height: 1; }

.c-photo {
  margin: 60px 0; }
  @media screen and (max-width: 768px) {
    .c-photo {
      margin: 30px 0; } }
  .c-photo:last-child {
    margin-bottom: 0; }

.c-num-list > li {
  position: relative;
  padding-left: 1.8em;
  counter-increment: num-list; }
  .c-num-list > li::before {
    display: flex;
    justify-content: center;
    align-items: center;
    content: counter(num-list);
    position: absolute;
    top: 5px;
    left: 0;
    width: 1.5em;
    height: 1.5em;
    font-size: 0.75rem;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    background-color: #222d5d;
    border-radius: 50%; }
    @media screen and (max-width: 768px) {
      .c-num-list > li::before {
        top: 3px; } }
  .c-num-list > li:not(:last-child) {
    margin-bottom: 10px; }

.c-table:not(:last-child) {
  margin-bottom: 30px; }
  @media screen and (max-width: 768px) {
    .c-table:not(:last-child) {
      margin-bottom: 20px; } }
.c-table table {
  width: 100%;
  border-spacing: 2px; }
  .c-table table th, .c-table table td {
    line-height: 1.6;
    padding: .7em 1em; }
  .c-table table thead th {
    color: #fff;
    background-color: #4e587c; }
  .c-table table tbody th, .c-table table tbody td {
    background-color: #e4e4ea; }
  .c-table table tbody th {
    font-weight: bold;
    text-align: center; }
  .c-table table tfoot th, .c-table table tfoot td {
    color: #fff;
    background-color: #222d5d; }

/* PAGE
---------------------------------------------------------------------*/
/* Top　------------------------*/
/* Mv */
.mv {
  position: relative;
  margin-bottom: 60px; }
  @media screen and (max-width: 768px) {
    .mv {
      margin-bottom: 20px; } }
  .mv-title {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    transform: translateY(-50%);
    z-index: 2; }
    @media screen and (max-width: 768px) {
      .mv-title {
        padding: 10px; } }
    .mv-title p {
      font-size: clamp(3.75rem, 0.405rem + 6.96vw, 5.625rem);
      font-weight: bold;
      color: #fff;
      line-height: 1.2; }
      @media screen and (max-width: 768px) {
        .mv-title p {
          font-size: clamp(1.5rem, -0.266rem + 7.07vw, 3.125rem); } }
      @media all and (-ms-high-contrast: none) {
        .mv-title p {
          font-size: 5vw; } }
  .mv-swiper .swiper-wrapper {
    width: 100%; }
    .mv-swiper .swiper-wrapper::before, .mv-swiper .swiper-wrapper::after {
      content: '';
      display: block;
      position: absolute;
      z-index: 3;
      background-repeat: no-repeat;
      background-size: cover; }
    .mv-swiper .swiper-wrapper::before {
      top: 0;
      left: 0;
      width: 22%;
      padding-top: 22%;
      background-image: url("/en/img/mv_l.png"); }
      @media screen and (max-width: 768px) {
        .mv-swiper .swiper-wrapper::before {
          width: 15%;
          padding-top: 15%; } }
    .mv-swiper .swiper-wrapper::after {
      bottom: 0;
      right: 0;
      width: 19%;
      padding-top: 19%;
      background-image: url("/en/img/mv_r.png"); }
      @media screen and (max-width: 768px) {
        .mv-swiper .swiper-wrapper::after {
          width: 15%;
          padding-top: 15%; } }
  .mv-swiper .swiper-slide {
    position: relative;
    background-position: center center;
    background-size: cover; }
    .mv-swiper .swiper-slide::before {
      content: '';
      display: block;
      padding-top: 44.444444444%; }
      @media screen and (max-width: 768px) {
        .mv-swiper .swiper-slide::before {
          padding-top: 130.208333333%; } }
    .mv-swiper .swiper-slide.slide01 {
      background-image: url("/en/img/mv_01.png?ver=250416"); }
      @media screen and (max-width: 768px) {
        .mv-swiper .swiper-slide.slide01 {
          background-image: url("/en/img/mv_01_sp.png?ver=250416"); } }
    .mv-swiper .swiper-slide.slide02 {
      background-image: url("/en/img/mv_02.png?ver=250416"); }
      @media screen and (max-width: 768px) {
        .mv-swiper .swiper-slide.slide02 {
          background-image: url("/en/img/mv_02_sp.png?ver=250416"); } }
    .mv-swiper .swiper-slide.slide03 {
      background-image: url("/en/img/mv_03.png"); }
      @media screen and (max-width: 768px) {
        .mv-swiper .swiper-slide.slide03 {
          background-image: url("/en/img/mv_03_sp.png"); } }
  .mv-swiper .swiper-pagination {
    position: relative;
    bottom: auto;
    padding: 10px; }
    .mv-swiper .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
      margin-left: 8px !important;
      margin-right: 8px !important; }
      .mv-swiper .swiper-pagination-bullet-active {
        background-color: #222d5d; }

/* top-menu */
.top-menu {
  margin-bottom: 120px; }
  @media screen and (max-width: 768px) {
    .top-menu {
      margin-bottom: 40px; } }
  .top-menu-list {
    display: flex;
    flex-wrap: wrap; }
    @media screen and (max-width: 768px) {
      .top-menu-list {
        display: block; } }
    .top-menu-list li {
      width: 33.3333%; }
      @media screen and (max-width: 768px) {
        .top-menu-list li {
          width: 100%; } }
      .top-menu-list li a {
        position: relative;
        display: block;
        transition: all .5s; }
        .top-menu-list li a:hover {
          opacity: .7; }
  .top-menu-img img {
    width: 100%; }
  .top-menu-txt {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 2.25rem;
    color: #fff;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    background-image: url("/en/img/menu_ic.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    z-index: 1; }
    @media screen and (max-width: 768px) {
      .top-menu-txt {
        font-size: 1.125rem;
        padding: 10px; } }

/* top-news */
.top-news {
  background-color: #f5f5f5; }
  .top-news-inner {
    width: 90%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 75px 0; }
    @media screen and (max-width: 768px) {
      .top-news-inner {
        padding: 30px 0; } }
  .top-news-hn {
    font-size: 3.75rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px; }
    @media screen and (max-width: 768px) {
      .top-news-hn {
        font-size: 1.875rem;
        margin-bottom: 20px; } }
  .top-news-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1%; }
    @media screen and (max-width: 768px) {
      .top-news-list {
        margin: 0; } }
    .top-news-list li {
      width: 23%;
      margin: 0 1%;
      background-color: #fff;
      box-shadow: 5px 0 20px 5px rgba(0, 0, 0, 0.1); }
      @media screen and (max-width: 768px) {
        .top-news-list li {
          width: 100%;
          margin: 0; }
          .top-news-list li:not(:last-child) {
            margin-bottom: 5%; } }
      .top-news-list li a {
        display: block;
        height: 100%;
        transition: all .5s; }
        .top-news-list li a:hover {
          opacity: .7; }
  .top-news-thumb {
    position: relative; }
    .top-news-thumb img {
      width: 100%;
      aspect-ratio: 310/240;
      object-fit: cover;
      background-color: #eee; }
    .top-news-thumb figcaption {
      position: absolute;
      top: 0;
      left: 0;
      font-size: 0.875rem;
      color: #fff;
      line-height: 1;
      padding: 5px 20px;
      background-color: rgba(0, 0, 0, 0.5); }
      @media screen and (max-width: 768px) {
        .top-news-thumb figcaption {
          font-size: 0.75rem; } }
  .top-news-cont {
    padding: 25px; }
    @media screen and (max-width: 768px) {
      .top-news-cont {
        padding: 5%; } }
  .top-news-dl dt {
    font-weight: bold;
    border-bottom: 1px solid #c8c8c8;
    padding-bottom: 15px;
    margin-bottom: 15px; }
  .top-news-dl dd {
    font-size: 0.875rem; }
  .top-news-link {
    margin-top: 15px; }
    .top-news-link-btn {
      display: block;
      font-size: 1rem;
      text-align: center;
      color: #fff;
      padding: 5px 10px;
      border-radius: 2em;
      background-color: #222d5d; }
      @media screen and (max-width: 768px) {
        .top-news-link-btn {
          font-size: 0.875rem; } }

/* top-pamphlet */
.top-pamphlet {
  padding: 75px 5%; }
  .top-pamphlet-block {
    display: flex;
    justify-content: center;
    align-items: center; }
  .top-pamphlet-img img {
    box-shadow: 5px 0 20px 5px rgba(0, 0, 0, 0.1); }
  .top-pamphlet-r {
    padding-left: 50px; }
  .top-pamphlet-link-btn {
    display: block;
    background-color: #333;
    padding: 12px 100px;
    transition: all .5s; }
    .top-pamphlet-link-btn:hover {
      opacity: .7; }
    .top-pamphlet-link-btn span {
      font-size: 1.125rem;
      font-weight: bold;
      text-align: center;
      color: #fff;
      background-image: url("/en/img/common/ic_pdf.png");
      background-repeat: no-repeat;
      background-position: right center;
      background-size: 26px 32px;
      padding: 5px 40px 5px 0; }

/* Greetings　------------------------*/
.greetings-row {
  display: flex;
  justify-content: space-between; }
  @media screen and (max-width: 768px) {
    .greetings-row {
      flex-direction: column; } }
.greetings-col-l {
  width: 63.333333333%; }
  @media screen and (max-width: 768px) {
    .greetings-col-l {
      order: 2;
      width: 100%; } }
.greetings-col-r {
  width: 31.666666666%; }
  @media screen and (max-width: 768px) {
    .greetings-col-r {
      order: 1;
      width: 100%; } }
.greetings-txt {
  margin-bottom: 30px; }
.greetings-pre {
  font-size: 1.125rem;
  font-weight: bold;
  text-align: right;
  margin-bottom: 10px; }
  @media screen and (max-width: 768px) {
    .greetings-pre {
      font-size: 1rem; } }
.greetings-name {
  text-align: right; }
  @media screen and (max-width: 768px) {
    .greetings-name img {
      width: 80%;
      max-width: 388px; } }
@media screen and (max-width: 768px) {
  .greetings-photo {
    text-align: center;
    margin-bottom: 30px; } }

/* About Us　------------------------*/
.about-history {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 30px; }
  @media screen and (max-width: 768px) {
    .about-history {
      margin-top: 30px;
      margin-bottom: 20px; } }
  .about-history dt {
    display: flex;
    width: 6em;
    font-weight: bold; }
    @media screen and (max-width: 768px) {
      .about-history dt {
        width: 5.5em; } }
    .about-history dt::before {
      content: '・';
      position: relative;
      top: 2px;
      font-size: 1.625rem;
      line-height: 1; }
  .about-history dd {
    width: calc(100% - 6em); }
    @media screen and (max-width: 768px) {
      .about-history dd {
        width: calc(100% - 5.5em); } }

/* Study in Osaka　------------------------*/
/* Faculties　------------------------*/
.faculties-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  @media screen and (max-width: 768px) {
    .faculties-list li {
      width: 100%; }
      .faculties-list li:nth-of-type(n+2) {
        margin-top: 5%; } }
  @media screen and (min-width: 769px) {
    .faculties-list li {
      width: 47.5%; }
      .faculties-list li:nth-of-type(n+3) {
        margin-top: 5%; } }
  .faculties-list li a {
    display: flex;
    transition: all .5s; }
    .faculties-list li a:hover {
      opacity: .7; }
  .faculties-list li:nth-of-type(1) {
    background-color: #74318e; }
  .faculties-list li:nth-of-type(2) {
    background-color: #eb611e; }
  .faculties-list li:nth-of-type(3) {
    background-color: #004ea2; }
  .faculties-list li:nth-of-type(4) {
    background-color: #3bb149; }
  .faculties-list li:nth-of-type(5) {
    background-color: #008095; }
  .faculties-list li:nth-of-type(6) {
    background-color: #df3174; }
  @media screen and (max-width: 768px) {
    .faculties-list img {
      width: 30%; } }
  .faculties-list-txt {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    color: #fff;
    background-image: url("/en/img/faculties/list_bg.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%; }
    .faculties-list-txt p {
      font-size: 1.5rem;
      text-align: center;
      margin-top: auto;
      margin-bottom: auto; }
      @media screen and (max-width: 768px) {
        .faculties-list-txt p {
          font-size: 1rem; } }
    .faculties-list-txt span {
      position: absolute;
      bottom: 10px;
      right: 10px; }
      @media screen and (max-width: 768px) {
        .faculties-list-txt span {
          font-size: 0.75rem; } }
.faculties-graduate {
  margin-top: 70px; }
  @media screen and (max-width: 768px) {
    .faculties-graduate {
      margin-top: 30px; } }
  .faculties-graduate a {
    display: block;
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
    padding: 20px;
    background-color: #222d5d;
    background-image: url("/en/img/faculties/graduate_bg_l.png"), url("/en/img/faculties/graduate_bg_r.png");
    background-repeat: no-repeat, no-repeat;
    background-position: left top, right bottom;
    background-size: auto 100%, auto 100%;
    transition: all .5s; }
    .faculties-graduate a:hover {
      opacity: .7; }
    @media screen and (max-width: 768px) {
      .faculties-graduate a {
        font-size: 1rem; } }
.faculties-footer {
  background-color: #f5f5f5; }
  .faculties-footer-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0; }
    @media screen and (max-width: 768px) {
      .faculties-footer-inner {
        padding: 30px 0; } }
  .faculties-footer-list {
    display: flex;
    flex-wrap: wrap; }
    .faculties-footer-list li {
      width: 31.666666666%; }
      @media screen and (max-width: 768px) {
        .faculties-footer-list li {
          width: 100%; } }
      .faculties-footer-list li:nth-of-type(1) {
        background-color: #74318e; }
      .faculties-footer-list li:nth-of-type(2) {
        background-color: #eb611e; }
      .faculties-footer-list li:nth-of-type(3) {
        background-color: #004ea2; }
      .faculties-footer-list li:nth-of-type(4) {
        background-color: #3bb149; }
      .faculties-footer-list li:nth-of-type(5) {
        background-color: #008095; }
      .faculties-footer-list li:nth-of-type(6) {
        background-color: #df3174; }
      @media screen and (max-width: 768px) {
        .faculties-footer-list li:nth-of-type(n+2) {
          margin-top: 3%; } }
      @media screen and (min-width: 769px) {
        .faculties-footer-list li:nth-of-type(n+4) {
          margin-top: 2.5%; }
        .faculties-footer-list li:not(:nth-of-type(3n+1)) {
          margin-left: 2.5%; } }
      .faculties-footer-list li a {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        font-size: 1.125rem;
        color: #fff;
        text-align: center;
        line-height: 1.4;
        padding: 15px;
        background-image: url("/en/img/faculties/f_list_bg.png");
        background-repeat: no-repeat;
        background-position: right bottom;
        background-size: 200px auto;
        transition: all .5s; }
        .faculties-footer-list li a:hover {
          opacity: .7; }
        @media screen and (max-width: 768px) {
          .faculties-footer-list li a {
            font-size: 0.875rem;
            padding: 10px;
            background-size: 80px auto; } }
  .faculties-footer-graduate {
    margin-top: 2.5%; }
    @media screen and (max-width: 768px) {
      .faculties-footer-graduate {
        margin-top: 4%; } }
    .faculties-footer-graduate a {
      display: block;
      font-size: 1.125rem;
      color: #fff;
      text-align: center;
      padding: 15px;
      background-color: #222d5d;
      background-image: url("/en/img/faculties/f_list_bg.png");
      background-repeat: no-repeat;
      background-position: right bottom;
      background-size: 200px auto;
      transition: all .5s; }
      .faculties-footer-graduate a:hover {
        opacity: .7; }
      @media screen and (max-width: 768px) {
        .faculties-footer-graduate a {
          font-size: 0.875rem;
          padding: 17px 10px;
          background-size: 80px auto; } }

.f-hn02 {
  font-size: 3.75rem;
  font-weight: bold;
  line-height: 1.4;
  padding-bottom: 10px;
  border-bottom: 3px solid #333;
  margin-bottom: 70px; }
  @media screen and (max-width: 768px) {
    .f-hn02 {
      font-size: 1.25rem;
      border-bottom-width: 2px;
      margin-bottom: 30px; } }
.f-hn03 {
  font-size: 2.5rem;
  font-weight: bold;
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 70px;
  margin-top: 70px;
  margin-bottom: 50px; }
  @media screen and (max-width: 768px) {
    .f-hn03 {
      font-size: 1.25rem;
      line-height: 1.4;
      background-size: 25px auto;
      padding-left: 40px;
      margin-top: 35px;
      margin-bottom: 20px; } }
.f-hn04 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.4;
  padding: 8px 30px;
  margin-bottom: 30px; }
  @media screen and (max-width: 768px) {
    .f-hn04 {
      font-size: 1rem;
      padding: 7px 15px;
      margin-bottom: 15px; } }
.f-hn05 {
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.6;
  padding-left: 45px;
  margin-bottom: 30px; }
  @media screen and (max-width: 768px) {
    .f-hn05 {
      font-size: 1rem;
      padding-left: 25px;
      margin-bottom: 15px; } }
  .f-hn05::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: #333; }
    @media screen and (max-width: 768px) {
      .f-hn05::before {
        width: 15px;
        height: 15px; } }
  .f-hn05 + .f-hn05 {
    margin-top: -25px; }
    @media screen and (max-width: 768px) {
      .f-hn05 + .f-hn05 {
        margin-top: -15px; } }
@media screen and (max-width: 768px) {
  .f-txt {
    margin-bottom: 15px; } }
.f-row {
  display: flex;
  justify-content: space-between; }
  @media screen and (max-width: 768px) {
    .f-row {
      flex-direction: column; } }
  .f-row:not(:last-child) {
    margin-bottom: 70px; }
    @media screen and (max-width: 768px) {
      .f-row:not(:last-child) {
        margin-bottom: 35px; } }
.f-col {
  width: 47.5%; }
  @media screen and (max-width: 768px) {
    .f-col {
      width: 100%; } }
.f-features {
  position: relative;
  background-color: #e8eaee;
  padding: 100px 6.666666666% 6.666666666%;
  margin-top: 70px;
  margin-bottom: 70px; }
  @media screen and (max-width: 768px) {
    .f-features {
      padding: 60px 5% 5%;
      margin-top: 35px;
      margin-bottom: 35px; } }
  .f-features-hn {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    background-color: #333;
    padding: 5px 50px; }
    @media screen and (max-width: 768px) {
      .f-features-hn {
        font-size: 1rem;
        padding: 5px 20px; } }
    .f-features-hn::after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 100%;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 58px 38px 0 0;
      border-color: #333 transparent transparent transparent; }
      @media screen and (max-width: 768px) {
        .f-features-hn::after {
          border-width: 38px 28px 0 0; } }
  .f-features-list > li {
    position: relative;
    font-weight: bold;
    padding-left: 40px;
    counter-increment: num-list; }
    @media screen and (max-width: 768px) {
      .f-features-list > li {
        padding-left: 30px; } }
    .f-features-list > li::before {
      display: flex;
      justify-content: center;
      align-items: center;
      content: counter(num-list);
      position: absolute;
      top: 5px;
      left: 0;
      width: 24px;
      height: 24px;
      font-size: 1.25rem;
      font-weight: normal;
      color: #fff;
      line-height: 1;
      background-color: #333;
      border-radius: 50%; }
      @media screen and (max-width: 768px) {
        .f-features-list > li::before {
          top: 3px;
          width: 20px;
          height: 20px;
          font-size: 0.8125rem; } }
    .f-features-list > li:not(:last-child) {
      margin-bottom: 15px; }
      @media screen and (max-width: 768px) {
        .f-features-list > li:not(:last-child) {
          margin-bottom: 10px; } }
  .f-features-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px; }
    @media screen and (max-width: 768px) {
      .f-features-row {
        margin-top: 20px; } }
  .f-features-col {
    width: 48.076923076%; }
    @media screen and (max-width: 768px) {
      .f-features-col {
        width: 100%; }
        .f-features-col:nth-of-type(n+2) {
          margin-top: 5%; } }
  .f-features-photo {
    text-align: center; }
.f-card {
  display: flex;
  margin-top: 100px; }
  @media screen and (max-width: 768px) {
    .f-card {
      display: block;
      margin-top: 40px; } }
  .f-card-l {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    background-color: #333;
    padding: 30px 50px; }
    @media screen and (max-width: 768px) {
      .f-card-l {
        font-size: 1.125rem;
        padding: 10px 5%;
        border-top: 5px solid #ccc; } }
    @media screen and (min-width: 769px) {
      .f-card-l {
        border-left: 10px solid #ccc; } }
  .f-card-r {
    flex: 1;
    padding: 3% 5%; }
    @media screen and (max-width: 768px) {
      .f-card-r {
        padding: 5%; } }
  .f-card-hn {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 20px; }
    @media screen and (max-width: 768px) {
      .f-card-hn {
        font-size: 0.9375rem;
        margin-bottom: 15px; } }

/* management */
#faculties-management .f-hn02 {
  color: #74318e;
  border-bottom-color: #74318e; }
#faculties-management .f-hn03 {
  background-image: url("/en/img/faculties/management/hn03_bg.svg"); }
#faculties-management .f-hn04 {
  background-color: #74318e; }
#faculties-management .f-hn05 {
  color: #74318e; }
  #faculties-management .f-hn05::before {
    background-color: #9b6aad; }
#faculties-management .f-features {
  background-color: #f1eaf3; }
  #faculties-management .f-features-hn {
    background-color: #74318e; }
    #faculties-management .f-features-hn::after {
      border-top-color: #74318e; }
  #faculties-management .f-features-list > li::before {
    background-color: #9b6aad; }
#faculties-management .f-card-l {
  background-color: #74318e; }
  @media screen and (max-width: 768px) {
    #faculties-management .f-card-l {
      border-top-color: #9b6aad; } }
  @media screen and (min-width: 769px) {
    #faculties-management .f-card-l {
      border-left-color: #9b6aad; } }
#faculties-management .f-card-r {
  background-color: #f1eaf3; }
#faculties-management .f-card-hn {
  color: #74318e; }

/* global */
#faculties-global .f-hn02 {
  color: #eb611e;
  border-bottom-color: #eb611e; }
#faculties-global .f-hn03 {
  background-image: url("/en/img/faculties/global/hn03_bg.svg"); }
#faculties-global .f-hn04 {
  background-color: #eb611e; }
#faculties-global .f-hn05 {
  color: #eb611e; }
  #faculties-global .f-hn05::before {
    background-color: #f18d5d; }
#faculties-global .f-features {
  background-color: #fdefe8; }
  #faculties-global .f-features-hn {
    background-color: #eb611e; }
    #faculties-global .f-features-hn::after {
      border-top-color: #eb611e; }
  #faculties-global .f-features-list > li::before {
    background-color: #f18d5d; }
#faculties-global .f-card-l {
  background-color: #eb611e; }
  @media screen and (max-width: 768px) {
    #faculties-global .f-card-l {
      border-top-color: #f18d5d; } }
  @media screen and (min-width: 769px) {
    #faculties-global .f-card-l {
      border-left-color: #f18d5d; } }
#faculties-global .f-card-r {
  background-color: #fdefe8; }
#faculties-global .f-card-hn {
  color: #eb611e; }

/* education */
#faculties-education .f-hn02 {
  color: #004ea2;
  border-bottom-color: #004ea2; }
#faculties-education .f-hn03 {
  background-image: url("/en/img/faculties/education/hn03_bg.svg"); }
#faculties-education .f-hn04 {
  background-color: #004ea2; }
#faculties-education .f-hn05 {
  color: #004ea2; }
  #faculties-education .f-hn05::before {
    background-color: #477fbc; }
#faculties-education .f-features {
  background-color: #e5edf6; }
  #faculties-education .f-features-hn {
    background-color: #004ea2; }
    #faculties-education .f-features-hn::after {
      border-top-color: #004ea2; }
  #faculties-education .f-features-list > li::before {
    background-color: #477fbc; }
#faculties-education .f-card-l {
  background-color: #004ea2; }
  @media screen and (max-width: 768px) {
    #faculties-education .f-card-l {
      border-top-color: #477fbc; } }
  @media screen and (min-width: 769px) {
    #faculties-education .f-card-l {
      border-left-color: #477fbc; } }
#faculties-education .f-card-r {
  background-color: #e5edf6; }
#faculties-education .f-card-hn {
  color: #004ea2; }

/* arts */
#faculties-arts .f-hn02 {
  color: #3bb149;
  border-bottom-color: #3bb149; }
#faculties-arts .f-hn03 {
  background-image: url("/en/img/faculties/arts/hn03_bg.svg"); }
#faculties-arts .f-hn04 {
  background-color: #3bb149; }
#faculties-arts .f-hn05 {
  color: #3bb149; }
  #faculties-arts .f-hn05::before {
    background-color: #72c77c; }
#faculties-arts .f-features {
  background-color: #ebf7ec; }
  #faculties-arts .f-features-hn {
    background-color: #3bb149; }
    #faculties-arts .f-features-hn::after {
      border-top-color: #3bb149; }
  #faculties-arts .f-features-list > li::before {
    background-color: #72c77c; }
#faculties-arts .f-card-l {
  background-color: #3bb149; }
  @media screen and (max-width: 768px) {
    #faculties-arts .f-card-l {
      border-top-color: #72c77c; } }
  @media screen and (min-width: 769px) {
    #faculties-arts .f-card-l {
      border-left-color: #72c77c; } }
#faculties-arts .f-card-r {
  background-color: #ebf7ec; }
#faculties-arts .f-card-hn {
  color: #3bb149; }

/* data */
#faculties-data .f-hn02 {
  color: #008095;
  border-bottom-color: #008095; }
#faculties-data .f-hn03 {
  background-image: url("/en/img/faculties/data/hn03_bg.svg"); }
#faculties-data .f-hn04 {
  background-color: #008095; }
#faculties-data .f-hn05 {
  color: #008095; }
  #faculties-data .f-hn05::before {
    background-color: #47a3b3; }
#faculties-data .f-features {
  background-color: #e5f2f4; }
  #faculties-data .f-features-hn {
    background-color: #008095; }
    #faculties-data .f-features-hn::after {
      border-top-color: #008095; }
  #faculties-data .f-features-list > li::before {
    background-color: #47a3b3; }
#faculties-data .f-card-l {
  background-color: #008095; }
  @media screen and (max-width: 768px) {
    #faculties-data .f-card-l {
      border-top-color: #47a3b3; } }
  @media screen and (min-width: 769px) {
    #faculties-data .f-card-l {
      border-left-color: #47a3b3; } }
#faculties-data .f-card-r {
  background-color: #e5f2f4; }
#faculties-data .f-card-hn {
  color: #008095; }

/* nursing */
#faculties-nursing .f-hn02 {
  color: #df3174;
  border-bottom-color: #df3174; }
#faculties-nursing .f-hn03 {
  background-image: url("/en/img/faculties/nursing/hn03_bg.svg"); }
#faculties-nursing .f-hn04 {
  background-color: #df3174; }
#faculties-nursing .f-hn05 {
  color: #df3174; }
  #faculties-nursing .f-hn05::before {
    background-color: #e86a9b; }
#faculties-nursing .f-features {
  background-color: #fceaf1; }
  #faculties-nursing .f-features-hn {
    background-color: #df3174; }
    #faculties-nursing .f-features-hn::after {
      border-top-color: #df3174; }
  #faculties-nursing .f-features-list > li::before {
    background-color: #e86a9b; }
#faculties-nursing .f-card-l {
  background-color: #df3174; }
  @media screen and (max-width: 768px) {
    #faculties-nursing .f-card-l {
      border-top-color: #e86a9b; } }
  @media screen and (min-width: 769px) {
    #faculties-nursing .f-card-l {
      border-left-color: #e86a9b; } }
#faculties-nursing .f-card-r {
  background-color: #fceaf1; }
#faculties-nursing .f-card-hn {
  color: #df3174; }

/* Partnerships　------------------------*/
@media screen and (max-width: 768px) {
  .partnerships-row-2 {
    margin-bottom: 20px; }
    .partnerships-row-2 .partnerships-col:nth-of-type(n+2) {
      margin-top: 20px; } }
@media screen and (min-width: 769px) {
  .partnerships-row-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px; }
    .partnerships-row-2 .partnerships-col {
      width: 47.5%; }
      .partnerships-row-2 .partnerships-col:nth-of-type(n+3) {
        margin-top: 3%; } }
@media screen and (max-width: 768px) {
  .partnerships-row-3 .partnerships-col:nth-of-type(n+2) {
    margin-top: 20px; } }
@media screen and (min-width: 769px) {
  .partnerships-row-3 {
    display: flex;
    flex-wrap: wrap;
    margin-left: -5%; }
    .partnerships-row-3 .partnerships-col {
      width: 33.3333%;
      padding-left: 5%; }
      .partnerships-row-3 .partnerships-col:nth-of-type(n+4) {
        margin-top: 3%; } }
.partnerships-note {
  margin-top: 30px;
  margin-bottom: 40px;
  padding: 10px 30px;
  background-color: #f5f5f5; }
  @media screen and (max-width: 768px) {
    .partnerships-note {
      margin-top: 20px;
      margin-bottom: 30px;
      padding: 10px 20px; } }
.partnerships-hn04 {
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
  color: #4e587c;
  padding-left: 45px;
  margin-bottom: 10px; }
  @media screen and (max-width: 768px) {
    .partnerships-hn04 {
      font-size: 1.125rem;
      padding-left: 25px; } }
  .partnerships-hn04::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: #4e587c; }
    @media screen and (max-width: 768px) {
      .partnerships-hn04::before {
        width: 15px;
        height: 15px; } }
  .partnerships-hn04 span {
    position: relative;
    display: flex; }
    .partnerships-hn04 span::after {
      flex: 1;
      content: '';
      align-self: center;
      display: inline-block;
      width: 100%;
      height: 3px;
      background-color: #4e587c;
      margin-left: 25px; }
      @media screen and (max-width: 768px) {
        .partnerships-hn04 span::after {
          height: 2px;
          margin-left: 15px; } }
.partnerships-hn05 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 5px; }
  @media screen and (max-width: 768px) {
    .partnerships-hn05 {
      font-size: 1rem; } }
.partnerships-list:not(:last-child) {
  margin-bottom: 30px; }
  @media screen and (max-width: 768px) {
    .partnerships-list:not(:last-child) {
      margin-bottom: 20px; } }

/* Apply　------------------------*/
/* Access　------------------------*/
.access-row {
  display: flex;
  justify-content: space-between; }
  @media screen and (max-width: 768px) {
    .access-row {
      flex-direction: column; } }
.access-col-l {
  width: 63.333333333%; }
  @media screen and (max-width: 768px) {
    .access-col-l {
      width: 100%; } }
.access-col-r {
  width: 31.666666666%; }
  @media screen and (max-width: 768px) {
    .access-col-r {
      width: 100%; } }
.access-txt {
  margin-bottom: 30px; }
  @media screen and (max-width: 768px) {
    .access-txt {
      margin-bottom: 20px; } }
.access-photo-1 {
  text-align: center; }
  @media screen and (max-width: 768px) {
    .access-photo-1 {
      margin-bottom: 30px; }
      .access-photo-1 img {
        max-width: none; } }
.access-photo-2 {
  text-align: center; }
.access-railway {
  position: relative;
  background-color: #e8eaee;
  padding: 100px 6.666666666% 6.666666666%;
  margin-top: 70px; }
  @media screen and (max-width: 768px) {
    .access-railway {
      padding: 60px 5% 5%;
      margin-top: 40px; } }
  .access-railway-hn02 {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    background-color: #222d5d;
    padding: 5px 50px; }
    @media screen and (max-width: 768px) {
      .access-railway-hn02 {
        font-size: 1rem;
        padding: 5px 20px; } }
    .access-railway-hn02::after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 100%;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 58px 38px 0 0;
      border-color: #222d5d transparent transparent transparent; }
      @media screen and (max-width: 768px) {
        .access-railway-hn02::after {
          border-width: 38px 28px 0 0; } }
  .access-railway-hn03 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background-color: #222d5d;
    padding: 5px 30px;
    margin-bottom: 30px; }
    @media screen and (max-width: 768px) {
      .access-railway-hn03 {
        font-size: 1rem;
        padding: 5px 20px;
        margin-bottom: 20px; } }
  .access-railway-row {
    display: flex;
    justify-content: space-between; }
    @media screen and (max-width: 768px) {
      .access-railway-row {
        flex-direction: column; } }
  .access-railway-col-l {
    width: 61.538461538%; }
    @media screen and (max-width: 768px) {
      .access-railway-col-l {
        width: 100%; } }
  .access-railway-col-r {
    width: 34.615384615%; }
    @media screen and (max-width: 768px) {
      .access-railway-col-r {
        width: 100%; } }
  .access-railway-photo {
    text-align: center; }
    @media screen and (max-width: 768px) {
      .access-railway-photo {
        margin-bottom: 30px; }
        .access-railway-photo img {
          max-width: none; } }
  .access-railway-dl {
    font-weight: bold;
    line-height: 1.6;
    background-image: url("/en/img/common/title_hn02_bg.svg");
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 30px auto;
    padding-left: 45px; }
    @media screen and (max-width: 768px) {
      .access-railway-dl {
        background-size: 22px auto;
        padding-left: 32px; } }
    .access-railway-dl:not(:last-child) {
      margin-bottom: 20px; }
      @media screen and (max-width: 768px) {
        .access-railway-dl:not(:last-child) {
          margin-bottom: 15px; } }
    .access-railway-dl dd {
      font-size: 1.5rem; }
      @media screen and (max-width: 768px) {
        .access-railway-dl dd {
          font-size: 1.125rem; } }

/* UTILITY
---------------------------------------------------------------------*/
.fs-italic {
  font-style: italic; }

.font-bold {
  font-weight: bold; }

.font-normal {
  font-weight: normal !important; }

.text-center {
  text-align: center; }

.text-right {
  text-align: right; }

.font-bold-red {
  font-weight: bold;
  color: #dc0014; }

@media screen and (max-width: 768px) {
  .mb-5-sp {
    margin-bottom: 5px !important; } }

.none {
  display: none; }
  @media screen and (max-width: 768px) {
    .none-sp {
      display: none; } }
  @media screen and (min-width: 769px) {
    .none-pc {
      display: none; } }

/* =============================
250417 Add
 ==============================*/
@media screen and (min-width: 769px) {
  .f-row.pc-2col {
    flex-wrap: wrap; } }
@media screen and (max-width: 768px) {
  .f-row.pc-2col.photo-list .f-col {
    margin-bottom: 10px; }
    .f-row.pc-2col.photo-list .f-col:last-child {
      margin-bottom: 0; } }
@media screen and (min-width: 769px) {
  .f-row.pc-2col.photo-list .f-col {
    margin-top: 20px; }
    .f-row.pc-2col.photo-list .f-col:nth-child(-n + 2) {
      margin-top: 0; } }

.keywords {
  font-size: 0.88em; }

.f-txt + .f-txt {
  margin-top: 1em; }

@media screen and (max-width: 768px) {
  .col2-txtL-imgR .col-txtL {
    display: flex;
    flex-direction: column; }
    .col2-txtL-imgR .col-txtL .img-flR {
      order: 2; }
  .col2-txtL-imgR .col-imgR {
    margin-top: 10px; } }
@media screen and (min-width: 769px) {
  .col2-txtL-imgR {
    display: flex;
    justify-content: space-between; }
    .col2-txtL-imgR .col-txtL {
      width: 55%; }
      .col2-txtL-imgR .col-txtL .font-bold {
        margin-bottom: 1em; }
    .col2-txtL-imgR .col-imgR {
      width: 41.7%; }
    .col2-txtL-imgR .img-flR {
      text-align: right;
      float: right;
      width: 42%;
      padding-left: 1em;
      padding-bottom: 1em;
      box-sizing: content-box; } }

/* Registered Nurse Program */
.plus-wrap .f-hn04 {
  margin-bottom: 0; }
.plus-wrap .step-2nd-3rd-wrap {
  display: flex;
  justify-content: space-between; }
  @media screen and (max-width: 768px) {
    .plus-wrap .step-2nd-3rd-wrap {
      padding-top: 60px; } }
  @media screen and (min-width: 769px) {
    .plus-wrap .step-2nd-3rd-wrap {
      width: 1040px;
      margin-left: auto;
      margin-right: auto;
      padding-top: 120px; } }
  .plus-wrap .step-2nd-3rd-wrap > div {
    position: relative; }
    @media screen and (max-width: 768px) {
      .plus-wrap .step-2nd-3rd-wrap > div {
        width: 48%; } }
    .plus-wrap .step-2nd-3rd-wrap > div::before {
      content: '';
      background-image: url("/en/img/faculties/nursing/icon_plus.svg");
      background-repeat: no-repeat;
      background-position: center center;
      background-size: 100% auto;
      display: block;
      position: absolute;
      left: 0;
      right: 0;
      margin: auto; }
      @media screen and (max-width: 768px) {
        .plus-wrap .step-2nd-3rd-wrap > div::before {
          width: 30px;
          height: 30px;
          top: -45px; } }
      @media screen and (min-width: 769px) {
        .plus-wrap .step-2nd-3rd-wrap > div::before {
          width: 40px;
          height: 40px;
          top: -80px; } }
