@charset "UTF-8";
/* Tools */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.text-align-center {
  text-align: center;
}

.text-align-right {
  text-align: right;
}

.display-block {
  display: block;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

.clear {
  clear: both;
}

/* show only  SP/PC
-------------------------------*/
.sp-only {
  display: none !important;
}

.sp-only-2 {
  display: none !important;
}

.pc-only {
  display: block !important;
}

.pc-only-2 {
  display: inline-block !important;
}

/* font
-------------------------------*/
.bold {
  font-weight: bold;
}

/* color
-------------------------------*/
.col-pink {
  color: rgb(233, 83, 107) !important;
}

.col-l-pink {
  color: rgb(252, 229, 231) !important;
}

.col-blue {
  color: rgb(0, 160, 233) !important;
}

.col-l-blue {
  color: rgb(211, 237, 251) !important;
}

.bg-pink {
  background-color: rgb(233, 83, 107) !important;
}

.bg-l-pink {
  background-color: rgb(252, 229, 231) !important;
}

.bg-blue {
  background-color: rgb(0, 160, 233) !important;
}

.bg-l-blue {
  background-color: rgb(211, 237, 251) !important;
}

/* margin
-------------------------------*/
/* padding
-------------------------------*/
/* base */
html {
  font-size: 62.5%;
}

body {
  font-family: YakuHanJP_Noto, "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  color: #000;
}



a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

input,
textarea,
select,
button {
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

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

button {
  cursor: pointer;
  font-size: inherit;
}

/* for development */
pre {
  padding: 15px;
  background: #eee;
  font-size: 1.2rem;
  line-height: 1.2;
}

/* Layout */
.l-body {
  width: 100%;
  overflow: hidden;
}

.l-body.is-fixed {
  position: fixed;
}

.l-header {
  background: #ffffff;
  width: 100%;
  height: 70px;
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.l-navi {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: rgba(44, 159, 164, 0.8);
  display: none;
  z-index: 1000;
  overflow: auto;
}

.l-wrapper {
  position: relative;
  width: 89.333333%;
  margin-left: auto;
  margin-right: auto;
}

.l-wrapper--lg {
  width: 89.333333%;
}

.l-article {
  position: relative;
  border: 1px solid #000;
  padding: 50px 4% 20px;
}
.l-article--bd-pink {
  border: 1px solid rgb(233, 83, 107);
}
.l-article--bd-blue {
  border: 1px solid rgb(0, 160, 233);
}

.l-article:not(:last-of-type) {
  margin-bottom: 70px;
}

.l-section:not(:last-child) {
  margin-bottom: 40px;
}

/* Module */
.header {
  padding: 0 0 0 calc(33.333vw + 25px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header-logo {
  position: absolute;
  top: 20px;
  left: 15px;
  display: block;
  width: 33.33%;
  max-width: 120px;
}

.header-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 5px;
}

.header-buttons__item {
  width: 50px;
  height: 50px;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.08;
  text-align: center;
}

.header-buttons__item a {
  display: block;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header-buttons__item:first-child {
  border-radius: 5px 0 0 5px;
}

.header-buttons__item:last-child {
  border-radius: 0 5px 5px 0;
}

.header-buttons__item:not(:last-child) {
  margin-right: 1px;
}

.header-buttons__item span {
  /*font: 700 1rem "Roboto", sans-serif;*/
  font-size: 1rem;
  line-height: 1;
}

.header-buttons__item--green {
  background: #006441;
}

.header-buttons__item--yellow {
  background: #e99600;
}

.header-buttons__item--orange {
  background: #e96e00;
}

.header-buttons__icon {
  display: none;
}

.navi {
  color: #ffffff;
  padding: 20px;
}

.navi__list__item {
  padding: 6px 0 7px;
}

.navi__list__item a {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.47;
}

.navi__list__item a span {
  font-size: 1.3rem;
}

.navi__child {
  margin-top: 4px;
}

.navi__child__item {
  padding-left: 10px;
}

.navi__child__item:not(:last-child) {
  margin-bottom: 5px;
}

.navi__child__item::before {
  content: "";
  width: 8px;
  height: 14px;
  display: inline-block;
  background: url(../img/icon_navi_list.svg) no-repeat center/contain;
  margin-right: 12px;
  vertical-align: middle;
}

.navi__child__item a {
  font-size: 1.3rem;
}

.navi__button {
  display: block;
  font-weight: 700;
  border: 1px solid #ffffff;
  padding: 9px 0;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-top: 17px;
}

.navi__button span::before {
  content: "";
  width: 30px;
  height: 30px;
  display: inline-block;
  background: url(../img/icon_line_white.svg) no-repeat center/contain;
  margin-right: 5px;
  vertical-align: middle;
}

.menu-btn {
  /*width: 50px;
  height: 50px;
  border: none;
  background: none;
  padding: 0;
  position: relative;
  margin: 0 5px 0 3px;*/
  display: none;
}

.menu-btn span {
  display: block;
  width: 26px;
  height: 1px;
  background: #c6c6c6;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.menu-btn span:first-child {
  top: 15px;
}

.menu-btn span:nth-child(2) {
  top: 25px;
}

.menu-btn span:nth-child(3) {
  top: 35px;
}

.menu-btn.is-opened span:first-child {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-btn.is-opened span:nth-child(2) {
  opacity: 0;
}

.menu-btn.is-opened span:nth-child(3) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (min-width: 681px) {
  .l-header { /* pc */
    height: 100px;
    padding: 20px 0;
  }
  .l-navi { /* pc */
    top: 100px;
    min-width: 1100px;
    height: calc(100vh - 100px);
  }
  .header-logo { /* pc */
    top: 30px;
    left: 40px;
    width: 150px;
    max-width: none;
  }
  .header-buttons {
    margin-right: 30px;
  }
  .header-buttons__item { /* pc */
    width: 140px;
    height: 60px;
    border-radius: 5px;
    font-size: 1.6rem;
    line-height: 1;
  }
  .header-buttons__item a { /* pc */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .header-buttons__item a:hover {
    opacity: 0.6;
  }
  .header-buttons__item:first-child { /* pc */
    border-radius: 5px;
  }
  .header-buttons__item:first-child .header-buttons__icon {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }
  .header-buttons__item:last-child { /* pc */
    border-radius: 5px;
  }
  .header-buttons__item:not(:last-child) { /* pc */
    margin-right: 10px;
  }
  .header-buttons__item span { /* pc */
    font-size: 2rem;
  }
  .header-buttons__icon { /* pc */
    display: block;
    width: 30px;
    margin: -6px 0 -3px;
  }
  .navi { /* pc */
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    width: 90%;
    max-width: 670px;
    margin: 20.7vh auto;
  }
  .navi__list { /* pc */
    width: 47.8%;
    border-top: 1px solid #ffffff;
  }
  .navi__list__item { /* pc */
    padding: 16px 0 18px;
    border-bottom: 1px solid #ffffff;
  }
  .navi__list__item a { /* pc */
    font-size: 1.8rem;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .navi__list__item a:hover {
    opacity: 0.6;
  }
  .navi__child { /* pc */
    margin-top: 12px;
  }
  .navi__child__item { /* pc */
    padding-left: 20px;
  }
  .navi__child__item:not(:last-child) { /* pc */
    margin-bottom: 10px;
  }
  .navi__child__item a { /* pc */
    font-size: 1.3rem;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .navi__child__item a:hover {
    opacity: 0.6;
  }
  .navi__button { /* pc */
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    padding: 14px 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .navi__button:hover {
    opacity: 0.6;
  }
  .menu-btn { /* pc */
    /*width: 60px;
    height: 60px;
    margin: 0 30px 0 30px;*/
    width: 0;
    margin-right: 30px;
  }
  .menu-btn span { /* pc */
    /*width: 40px;*/
    display: none;
  }
  .menu-btn span:nth-child(2) { /* pc */
    top: 30px;
  }
  .menu-btn span:nth-child(3) { /* pc */
    top: 45px;
  }
}
/*最初のアニメーション*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fff;
  text-align: center;
  color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 300px;
  min-width: 300px;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*//最初のアニメーション*/
.mainvisual {
  height: 100vh;
  position: relative;
  margin-top: 70px;
}

.firstview__item {
  display: block;
  width: 100%;
  height: 50%;
  overflow: hidden;
  position: relative;
}
.firstview__item-main {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  height: 100%;
  width: 100%;
}
.firstview__item-txt {
  height: 95px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(233, 83, 107, 0.7);
  text-align: center;
  line-height: 1.2;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.firstview__item-txt--02 {
  background-color: rgba(0, 166, 233, 0.7);
}
.firstview__item-txt span {
  font-size: 1.3rem;
  color: #fff;
  margin-top: -25px;
}
.firstview__item-txt span::after {
  content: "more";
  display: inline-block;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 30px;
  width: 50px;
  text-align: center;
  line-height: 1;
  padding: 0px 10px 4px;
  position: absolute;
  left: 50%;
  bottom: 8px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.firstview__item-txt span b {
  font-weight: 500;
  font-size: 2.2rem;
  display: inline-block;
  margin-top: 2px;
}

.mainvisual__main {
  width: 80.5%;
  height: calc(100% - 190px);
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 19%;
}

.mainvisual__catch {
  -webkit-transform: translateX(80px);
  transform: translateX(80px);
  opacity: 0;
}

.mainvisual__catch.is-visible {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  -webkit-transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mainvisual__sub {
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.35)), color-stop(50%, rgba(0, 0, 0, 0.35)), color-stop(50%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0))) no-repeat top right/200% auto;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%) no-repeat top right/200% auto;
  color: #FFFFFF;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px 0 20px;
}

.mainvisual__sub.is-visible {
  background-position: left top;
  -webkit-transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mainvisual__text {
  margin-bottom: 22px;
  -webkit-transform: translateX(-60px);
  transform: translateX(-60px);
  opacity: 0;
}

.mainvisual__text.is-visible {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  -webkit-transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mainvisual__text img {
  width: 303px;
}

.mainvisual__detail {
  border: 1px solid #FFFFFF;
  padding: 5px;
  -webkit-transform: translateX(60px);
  transform: translateX(60px);
  opacity: 0;
}

.mainvisual__detail.is-visible {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  -webkit-transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mainvisual__label {
  background: #000;
  color: #FFFFFF;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 8px 0;
  margin-bottom: 5px;
}

.mainvisual__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.mainvisual__item {
  width: 50%;
  text-align: center;
  padding: 4px 0 4px;
}

.mainvisual__item:not(:last-child) {
  border-right: 1px dotted #FFFFFF;
}

.button {
  background: #000;
  color: #FFFFFF;
  line-height: 1.3;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  display: block;
  position: relative;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.button--long {
  font-size: 1.5rem;
}

.button[target=_blank]:after {
  position: absolute;
  top: 50%;
  right: 6px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/icon_ex.svg) no-repeat center/contain;
}

.heading-1 {
  color: #FFFFFF;
  background: #B3B364;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font: 500 2.2rem YakuHanJP_Noto, "Noto Sans JP", serif;
  padding: 7px 5px;
  width: 240px;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.heading-1.bg-pink {
  background-color: rgb(233, 83, 107);
}
.heading-1.bg-blue {
  background-color: rgb(0, 160, 233);
}

.heading-2 {
  font: 500 2.2rem YakuHanJP_Noto, "Noto Sans JP", serif;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}

.heading-3 {
  font: 500 1.8rem YakuHanJP_Noto, "Noto Sans JP", serif;
  border-bottom: 1px solid #000;
  padding-bottom: 14px;
  margin-bottom: 12px;
}

.heading-3::before {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  background: url(../img/icon_head.svg) no-repeat center/contain;
  margin-right: 12px;
  vertical-align: middle;
}

.heading-3--icon-pink::before {
  background: url("../img/icon_head-pink.svg") no-repeat center/contain;
}

.heading-3--icon-blue::before {
  background: url("../img/icon_head-blue.svg") no-repeat center/contain;
}

.heading-4 {
  font: 500 2rem YakuHanJP_Noto, "Noto Sans JP", serif;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

.heading-4--border {
  border-bottom: 1px solid #ECECDC;
  padding-bottom: 10px;
  margin-bottom: 23px;
}

.facility-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;
}

.facility-list:not(:last-child) {
  margin-bottom: 30px;
}

.facility-list__item {
  border: none;
  border-radius: 10px;
  width: 31.3333333333%;
  margin-bottom: 10px;
  padding: 10px 5px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}
.facility-list__item::after {
  content: "more";
  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;
  width: 60px;
  height: 16px;
  padding-bottom: 3px;
  position: absolute;
  bottom: 6px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 20px;
  font-size: 1.2rem;
}

.facility-list__item--yellow {
  background: rgb(245, 162, 0);
}

.facility-list__item--pink {
  background: rgb(233, 83, 131);
}

.facility-list__item--blue {
  background: rgb(0, 147, 212);
}

.facility-list__item--orange {
  background: rgb(53, 181, 151);
}

.facility-list__item--green {
  background: rgb(121, 107, 175);
}

.facility-list__icon {
  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;
}
.facility-list__icon.icon_distribution img {
  width: 60px;
}
.facility-list__icon.icon_management img {
  width: 50px;
}

.facility-list__text {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.33;
  color: #ffffff;
  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;
}

.lg-text {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: #B3B364;
  padding: 8px 0;
  border-radius: 15px;
  color: #ffffff;
  line-height: 1.78;
}

.exam-detail {
  border-top: 1px dotted #000;
  padding-top: 20px;
}

.exam-detail__item:not(:last-child) {
  margin-bottom: 18px;
}

.exam-detail__heading {
  font-size: 1.5rem;
  font-weight: 500;
  background: #006644;
  color: #ffffff;
  text-align: center;
  padding: 8px 0 7px;
  margin-bottom: 8px;
}

.exam-detail__content {
  font-weight: 500;
  line-height: 1.47;
  text-align: justify;
}

.opencampus {
  background: #f4efea;
  padding: 26px 4%;
}

.opencampus__heading {
  text-align: center;
  color: #a3a064;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.opencampus__heading span {
  font-size: 2.2rem;
  line-height: 1.4;
}

.opencampus__text {
  margin-top: 15px;
  margin-bottom: 20px;
  font-size: 1.3rem;
  line-height: 1.7;
  color: #333333;
}

.diversity {
  background: url(../img/bg_diversity_sp.jpg) no-repeat center center/cover;
  padding: 40px 0 40px;
  color: #fff;
}

.diversity__heading {
  font-size: 2.9rem;
  line-height: 0.8888;
  letter-spacing: 0.08em;
  font-family: YakuHanJP_Noto, "Noto Sans JP", serif;
}

.diversity__text {
  margin-top: 25px;
  line-height: 2;
  letter-spacing: 0.1em;
  font-family: YakuHanJP_Noto, "Noto Sans JP", serif;
}

.shindan { /* pc */
  padding: 66px 0 62px;
  background: #efeae6;
}

.shindan__heading {
  font-size: 3rem;
  letter-spacing: 0.09em;
  font-family: YakuHanJP_Noto, "Noto Sans JP", serif;
  text-align: center;
}
.shindan__heading.heading01 {
  color: #fff;
  background-color: #aeae64;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 9px 20px;
  margin: 0 auto;
  font-weight: bold;
}
.shindan__heading.heading02 {
  margin-top: 0;
  color: #aeae64;
}
.shindan__heading.heading02 span {
  display: block;
  font-size: 2rem;
  margin-bottom: 6px;
}

.shindan__lead {
  line-height: 1.75;
  font-size: 2rem;
  text-align: center;
  margin-top: 30px;
}
.shindan__main { /* pc */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 42px;
}

.shindan__main li { /* pc */
  width: 32%;
  background-color: #aeae64;
  color: #fff;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.75;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px 35px 30px 60px;
  text-align: justify;
}

.shindan__main li:nth-of-type(n+4) {
  margin-top: 25px;
}

.shindan__main li p {
  position: relative;
  line-height: 1.4;
}

.shindan__main li p::after {
  content: "";
  display: block;
  width: 21px;
  height: 24px;
  position: absolute;
  top: 2px;
  left: -28px;
  background: url(../img/icon_check_wh.svg) no-repeat center/contain;
}

.shindan__kakudai-wrap {
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 35px 20px 30px;
  margin-top: 62px;
}

.shindan__kakudai {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 30px auto 0;
}
.shindan__kakudai .heading-3 {
  width: 100%;
}
.shindan__kakudai--table {
  width: 49%;
  margin: 0;
}
.shindan__kakudai--table thead tr th {
  padding: 5px 0;
  line-height: 1.2;
}
.shindan__kakudai--table thead tr th:nth-of-type(1) {
  width: 180px;
}
.shindan__kakudai--table thead tr th:nth-of-type(2), .shindan__kakudai--table thead tr th:nth-of-type(3) {
  width: 144px;
}
.shindan__kakudai--table tbody tr td span {
  font-size: 1.2rem;
  display: block;
}
.shindan__kakudai--table tbody tr td:nth-of-type(n+2) {
  border-left: 1px solid #b3b364;
  text-align: center;
}
.shindan__kakudai--chart {
  width: 48%;
  margin: 0;
}

.overview {
  background: #fff;
  padding: 35px 0 45px;
  margin-bottom: 70px;
}

.overview__heading {
  font-size: 2.5rem;
  line-height: 1.3333;
  letter-spacing: 0.09em;
  font-family: YakuHanJP_Noto, "Noto Sans JP", serif;
  text-align: center;
}

.overview__main {
  margin-top: 25px;
}

.overview__item {
  text-align: center;
}
.overview__item:nth-of-type(1) a {
  background-color: #e9536b;
}
.overview__item:nth-of-type(2) a {
  background-color: #00a0e9;
}

.overview__item:not(:last-child) {
  margin-bottom: 30px;
}

.overview__item a {
  display: block;
  padding: 18px 0 12px;
  background: #ececdc;
}

.overview__item__title {
  font-size: 1.7rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}

.overview__item__text-wrap {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.overview__item__balloon {
  position: relative;
  margin-right: 15px;
  width: 100px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4285;
  padding: 10px 0;
}

.overview__item__balloon::after {
  position: absolute;
  content: "";
  top: 50%;
  left: calc(100% - 1px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent #fff;
}

.overview__item__text {
  text-align: center;
  font-size: 2.8rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-family: YakuHanJP_Noto, "Noto Sans JP", serif;
  color: #fff;
}

.overview__item__scroll-item {
  margin-top: 15px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-family: YakuHanJP_Noto, "Noto Sans JP", serif;
  position: relative;
  color: #fff;
}

.overview__item__scroll-item::before {
  position: absolute;
  content: "";
  top: calc(100% + 8px);
  left: 50%;
  background: #383835;
  width: 1px;
  height: 20px;
}

.overview__item__scroll-item::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #383835;
  border-right: 1px solid #383835;
  top: calc(100% + 16px);
  right: calc(50% - 6px);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.qualification__item:not(:first-child) {
  margin-top: -1px;
}

@media screen and (max-width: 680px) {
  .qualification { /* pc */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .qualification.qualification-noflex {
    display: block;
  }
  .qualification.qualification-noflex .qualification__item {
    width: 100%;
  }
  .qualification.qualification-noflex .qualification__item .table tbody tr th {
    width: 22%;
  }
  .qualification.qualification-noflex .qualification__item .table tbody tr td:nth-of-type(1) {
    width: 39%;
  }
  .qualification.qualification-noflex .qualification__item .table tbody tr td:nth-of-type(2) {
    width: 39%;
    border-left: 1px solid rgb(0, 160, 233);
  }
}
.table {
  width: 100%;
  border: 1px solid #b3b364;
  background: #FFFFFF;
}
.table.table-col-blue {
  border: 1px solid rgb(0, 160, 233);
}
.table.table-col-blue thead th {
  background: rgb(0, 160, 233);
}
.table.table-col-blue tbody th {
  color: rgb(0, 160, 233);
  border-right: 1px solid rgb(0, 160, 233);
}
.table.table-col-blue tbody th, .table.table-col-blue tbody td {
  border-bottom: 1px solid rgb(0, 160, 233);
}

.table thead th {
  background: #b3b364;
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 900;
  vertical-align: middle;
  text-align: center;
  height: 35px;
}

.table thead th:not(:last-child) {
  border-right: 1px solid #FFFFFF;
}

.table tbody {
  font-size: 1.3rem;
  line-height: 1.38;
}

.table tbody th {
  color: #b3b364;
  font-weight: 900;
  border-right: 1px solid #b3b364;
  text-align: center;
  width: 33.5%;
  padding: 5px 5px 6px;
}

.table tbody th,
.table tbody td {
  vertical-align: middle;
  border-bottom: 1px solid #b3b364;
  padding: 4px 6px 4px;
}

.table td {
  font-weight: 500;
  padding: 5px 6px 6px;
}

.skillup {
  background: #ececdc;
  padding: 20px 4%;
  margin-top: 40px;
}

.skillup__heading {
  padding: 9px 10px 10px 40px;
  position: relative;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: #FFFFFF;
  font-size: 1.8rem;
  line-height: 1.45;
  margin-bottom: 20px;
  text-align: justify;
}

.skillup__heading::before {
  content: "";
  display: block;
  width: 22px;
  height: 17px;
  position: absolute;
  top: 14px;
  left: 12px;
  background: url(../img/icon_check-blue.svg) no-repeat center/contain;
}

.skillup__col:not(:first-child) {
  margin-top: -1px;
}

.skillup__note {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.67;
  margin-top: 6px;
}

.lg-figure {
  position: relative;
  margin-bottom: 20px;
  overflow: auto;
}

.lg-figure::before {
  content: "";
  width: 130px;
  height: 102px;
  display: block;
  background: url(../img/img_scroll.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}

.lg-figure.is-announce::before {
  -webkit-animation: scrollAnnounce 2s forwards;
  animation: scrollAnnounce 2s forwards;
}

.lg-figure__inner {
  display: block;
  width: 920px;
}

.another {
  text-align: center;
  padding: 50px 0 50px;
}

.another__text {
  font-weight: 500;
  font-size: 2rem;
  font-family: YakuHanJP_Noto, "Noto Sans JP", serif;
  line-height: 1.5;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.cv-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 100%;
  left: 0;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 100;
}

.cv-button.is-visible {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.cv-button.is-absolute {
  position: absolute;
  top: auto;
  bottom: 20px;
  -webkit-transition: 0s;
  transition: 0s;
}

.cv-button__item {
  width: 50%;
  height: 50px;
}

.cv-button__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.cv-button__item a:hover {
  opacity: 0.6;
}

.cv-button__item:not(:last-child) {
  border-right: 1px solid #e1e1e1;
}

.cv-button__item--1 a {
  background: #646464;
}

.cv-button__item--2 a {
  background: #db8e2b;
}

.scrollin,
.scrollins__item {
  opacity: 0;
  -webkit-transform: translate(0, 70px);
  transform: translate(0, 70px);
}

.scrollin.is-visible,
.scrollins__item.is-visible {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  display: none;
  z-index: 5000;
  pointer-events: auto;
}

.modal__inner {
  width: 89.333333%;
  background: #FFFFFF;
  position: absolute;
  top: 50%;
  left: 50%;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.modal__inner--lg {
  height: calc(100% - 80px);
  top: 40px;
  overflow: auto;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.modal__close {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  width: 60px;
  height: 60px;
  background: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.modal__close img {
  width: 25%;
  position: relative;
  display: block;
}

.merit {
  margin-bottom: 35px;
}

.merit__lead {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.merit__item {
  background: #f4efea;
  padding: 20px;
}

.merit__item:not(:last-child) {
  margin-bottom: 20px;
}

.merit__head {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.56;
  border-bottom: 1px solid #000;
  padding-bottom: 18px;
  margin-bottom: 12px;
  text-align: center;
  color: #000;
}

.merit__text {
  line-height: 1.6;
  text-align: justify;
}

.merit__text ul li {
  padding-left: 25px;
  position: relative;
}
.merit__text ul li:nth-of-type(n+2) {
  margin-top: 10px;
}
.merit__text ul li:nth-of-type(2)::after {
  background-image: url(../img/merit_num02.svg);
}
.merit__text ul li:nth-of-type(3)::after {
  background-image: url(../img/merit_num03.svg);
}
.merit__text ul li::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 3px;
  left: 0px;
  background: url(../img/merit_num01.svg) no-repeat center/contain;
}
.merit__text ul li.numcol-pink::after {
  background-image: url("../img/merit_num01-pink.svg");
}
.merit__text ul li.numcol-pink:nth-of-type(2)::after {
  background-image: url("../img/merit_num02-pink.svg");
}
.merit__text ul li.numcol-pink:nth-of-type(3)::after {
  background-image: url("../img/merit_num03-pink.svg");
}
.merit__text ul li.numcol-blue::after {
  background-image: url("../img/merit_num01-blue.svg");
}
.merit__text ul li.numcol-blue:nth-of-type(2)::after {
  background-image: url("../img/merit_num02-blue.svg");
}
.merit__text ul li.numcol-blue:nth-of-type(3)::after {
  background-image: url("../img/merit_num03-blue.svg");
}

.document:not(:last-child) {
  margin-bottom: 30px;
}

.document__main {
  line-height: 1.7;
  text-align: justify;
}

.document__main:not(:last-child) {
  margin-bottom: 14px;
}

.document__note {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.67;
  margin-top: 18px;
  text-align: justify;
}

.schedule {
  padding: 36px 4% 33px;
}

.schedule__head {
  font: 500 1.6rem YakuHanJP_Noto, "Noto Sans JP", serif;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 13px;
  border-radius: 10px;
}

.schedule__heading {
  font-size: 1.8rem;
  font-weight: 900;
  text-align: center;
  color: #ffffff;
  padding: 10px 0;
  margin-bottom: 20px;
  border-radius: 10px;
}

.schedule__heading--yellow {
  background: rgb(245, 162, 0);
}

.schedule__heading--pink {
  background: rgb(233, 83, 131);
}

.schedule__heading--blue {
  background: rgb(0, 147, 212);
}

.schedule__heading--orange {
  background: rgb(53, 181, 151);
}

.schedule__heading--green {
  background: rgb(121, 107, 175);
}

.schedule__text {
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-align: justify;
  margin-bottom: 25px;
}

.schedule__text:last-of-type {
  margin-bottom: 0;
}

.flow {
  margin-bottom: 25px;
}

.flow__item {
  padding: 5px 8px 8px;
  background: #ECECDC;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flow__item--reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flow__item:not(:last-child) {
  margin-bottom: 20px;
  position: relative;
}

.flow__item:not(:last-child)::before {
  content: "";
  width: 0;
  height: 0;
  display: block;
  border-top: 10px solid #A9A998;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.flow__item--univ {
  background: #A9A998;
  color: #ffffff;
  text-align: center;
  border-radius: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 8px;
}

.flow__item--main {
  display: block;
}

.flow__label {
  font-size: 1.3rem;
  font-weight: 500;
  color: #ffffff;
  margin-right: 10px;
  width: 100%;
  text-align: center;
  display: block;
  padding: 5px 0;
  border-radius: 5px;
  margin-bottom: 5px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.flow__label--any {
  background: #50A9FF;
}

.flow__label--must {
  background: #FF9FA9;
}

.flow__label-2 {
  font-size: 1.7rem;
  font-weight: 900;
  text-align: center;
  color: #ffffff;
  background: #A9A998;
  display: block;
  width: 100%;
  padding: 10px 0 9px;
  border-radius: 5px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5px;
}

.flow__text {
  font-weight: 500;
  line-height: 1.5;
}

.flow__text__sm {
  font-size: 1.2rem;
  font-weight: 500;
}

.flow__text__md {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}

.flow__text__lg {
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.2;
}

.flow__text__s {
  display: block;
  font-size: 1.2rem;
}

.criteria:not(:last-child) {
  margin-bottom: 10px;
}

.criteria__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.criteria--yellow .criteria__item {
  background: rgba(239, 191, 0, 0.3);
}

.criteria--yellow .criteria__value {
  color: #F59600;
}

.criteria--pink .criteria__item {
  background: rgba(223, 112, 128, 0.3);
}

.criteria--pink .criteria__value {
  color: #C66376;
}

.criteria--blue .criteria__item {
  background: rgba(48, 135, 191, 0.3);
}

.criteria--blue .criteria__value {
  color: #2A76A0;
}

.criteria--orange .criteria__item {
  /*background: rgba(232, 128, 0, 0.3);*/
  background: rgba(53, 181, 151, 0.2);
}

.criteria--orange .criteria__value {
  color: rgb(53, 181, 151);
}

.criteria--green .criteria__item {
  /*background: rgba(64, 169, 64, 0.3);*/
  background: rgba(121, 107, 175, 0.2);
}

.criteria--green .criteria__value {
  color: rgb(121, 107, 175);
}

.criteria__item {
  width: 48%;
  padding: 15px 10px;
  margin-bottom: 15px;
}

.criteria__item:nth-child(even) {
  margin-left: 4%;
}

.criteria__item__head {
  font-weight: 700;
  line-height: 1.29;
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 5px;
  border-bottom: 1px solid #ffffff;
  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;
}

.criteria__value {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 7px;
}

.criteria__value span {
  font-size: 5rem;
}

.criteria__text {
  font-size: 1.3rem;
  line-height: 1.4;
  text-align: justify;
}

.criteria__text--center-sppc {
  text-align: center;
}

.task {
  padding: 0 2px;
}

.task:not(:last-child) {
  margin-bottom: 25px;
}

.task--yellow .task__label {
  background: rgb(245, 162, 0);
}

.task--pink .task__label {
  background: rgb(233, 83, 131);
}

.task--orange .task__label {
  background: rgb(53, 181, 151);
}

.task--green .task__label {
  background: rgb(121, 107, 175);
}

.task__lead {
  margin-bottom: 15px;
  line-height: 1.5;
}

.task__content-head {
  font: 500 1.8rem YakuHanJP_Noto, "Noto Sans JP", serif;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

.task__content--mb {
  margin-bottom: 20px;
}

.task__content-2 {
  line-height: 1.5;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}

.task__content-2__head {
  font-weight: 700;
}

.task__content-2__head::before {
  content: "●";
  color: rgb(121, 107, 175);
}

.task__content-2__text {
  text-align: justify;
}

.task__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.task__item:not(:last-child) {
  margin-bottom: 12px;
}

.task__item--sp-1col {
  display: block;
}

.task__label {
  font-weight: 700;
  color: #ffffff;
  padding: 3px 0;
  text-align: center;
  margin-right: 12px;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 2px;
}

.task__label--num {
  width: 20px;
}

.task__label--text {
  width: 100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

.task__text {
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-align: justify;
}

.task__gray-box {
  background: #F9F9F9;
  padding: 10px 20px;
}

.task__gray-box__text {
  line-height: 1.5;
  text-align: justify;
}

.task__gray-box--mb {
  margin-bottom: 33px;
}

.link {
  background: #f2f4f6;
  padding: 29px 0 30px;
  margin-top: 43px;
}

.link__head {
  font-weight: 700;
  margin-bottom: 21px;
  text-align: center;
}

.link__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.link__item {
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  display: block;
  width: 32.2%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.link__item__icon {
  display: block;
  width: 30px;
}

.link__item--gray {
  background: #646464;
}

.link__item--orange {
  background: #db8e2b;
}

.link__item--green {
  background: #34ac37;
}

.footer {
  padding: 30px 0 60px;
  text-align: center;
}

.footer__logo {
  width: 157px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
}

.copyright {
  font: 400 1rem "Roboto", sans-serif;
}

@media screen and (min-width: 681px) {
  .l-body { /* pc */
    min-width: 1100px;
  }
  .l-wrapper { /* pc */
    width: 1000px;
  }
  .l-article { /* pc */
    padding: 62px 39px 40px;
  }
  .l-article:not(:last-of-type) { /* pc */
    margin-bottom: 100px;
  }
  .l-section:not(:last-child) { /* pc */
    margin-bottom: 57px;
  }
  #splash_logo img {
    width: 700px;
    min-width: 700px;
  }
  .mainvisual {
    margin-top: 100px;
    min-height: 580px;
    height: calc(100vh - 100px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .firstview__item {
    width: 50%;
    height: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .firstview__item:hover {
    opacity: 0.8;
  }
  .firstview__item-main {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
    height: 100%;
    width: 100%;
  }
  .firstview__item-txt {
    height: 170px;
  }
  .firstview__item-txt span {
    font-size: 2.2rem;
  }
  .firstview__item-txt span::after {
    width: 80px;
    padding: 0px 10px 4px;
    bottom: 16px;
    font-size: 2rem;
  }
  .firstview__item-txt span b {
    font-size: 4rem;
  }
  .mainvisual__main { /* pc */
    height: calc(100% - 194px);
    width: 899px;
    padding-top: 7%;
  }
  .mainvisual__sub { /* pc */
    bottom: 70px;
    padding: 30px 0 30px;
  }
  .mainvisual__sub__inner { /* pc */
    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;
  }
  .mainvisual__text { /* pc */
    margin-bottom: 0;
  }
  .mainvisual__text img { /* pc */
    width: auto;
  }
  .mainvisual__detail { /* pc */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 64px;
    padding: 6px 0 6px 6px;
  }
  .mainvisual__label { /* pc */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 220px;
    height: 100%;
    margin-right: 5px;
    margin-bottom: 0;
    padding-bottom: 5px;
    font-size: 2.2rem;
    padding: 0;
  }
  .mainvisual__item { /* pc */
    width: 154px;
    height: 100%;
    padding: 0 0 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .button { /* pc */
    width: 700px;
    height: 70px;
    margin-left: auto;
    margin-right: auto;
    font-size: 2rem;
    font-weight: 900;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .button:hover {
    background: #b3b364;
  }
  .button[target=_blank]:after { /* pc */
    right: 20px;
    width: 30px;
    height: 30px;
  }
  .heading-1 { /* pc */
    font-size: 3rem;
    width: 510px;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .heading-1--lg { /* pc */
    width: 600px;
  }
  .heading-2 { /* pc */
    font-size: 3.2rem;
    margin-bottom: 25px;
  }
  .heading-3 { /* pc */
    margin-bottom: 21px;
  }
  .heading-4 { /* pc */
    font-size: 2.2rem;
  }
  .heading-4--mb-lg { /* pc */
    margin-bottom: 30px;
  }
  .facility-list__item { /* pc */
    width: 176px;
    padding: 20px 0 40px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .facility-list__item::after {
    width: 60px;
    height: 20px;
    padding-bottom: 3px;
    bottom: 10px;
    font-size: 1.4rem;
  }
  .facility-list__item:not(:last-child) {
    margin-right: 10px;
  }
  .facility-list__item:hover {
    opacity: 0.6;
  }
  .facility-list__icon { /* pc */
    height: 85px;
  }
  .facility-list__icon.icon_distribution img {
    width: 85px;
  }
  .facility-list__icon.icon_management img {
    width: 65px;
  }
  .facility-list__text { /* pc */
    font-size: 1.5rem;
  }
  .lg-text { /* pc */
    font-size: 1.8rem;
    padding: 9px 0;
    border-radius: 25px;
    margin-bottom: 40px;
  }
  .exam-detail__item { /* pc */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .exam-detail__item:not(:last-child) { /* pc */
    margin-bottom: 15px;
  }
  .exam-detail__heading { /* pc */
    width: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    margin-right: 30px;
    margin-bottom: 0;
  }
  .exam-detail__content { /* pc */
    font-size: 1.5rem;
    padding: 4px 0;
  }
  .opencampus { /* pc */
    padding: 33px 0 40px;
  }
  .opencampus__heading { /* pc */
    font-size: 1.8rem;
    line-height: 1.78;
  }
  .opencampus__heading span { /* pc */
    font-size: 3rem;
  }
  .opencampus__text { /* pc */
    text-align: center;
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 35px;
  }
  .diversity { /* pc */
    background-image: url("../img/bg_diversity_pc.jpg");
    padding: 70px 0 62px;
  }
  .diversity__heading { /* pc */
    font-size: 4.5rem;
    letter-spacing: 0.12em;
  }
  .diversity__text { /* pc */
    margin-top: 33px;
    font-size: 1.5rem;
  }
  .overview { /* pc */
    margin-bottom: 100px;
    padding: 66px 0 62px;
  }
  .overview__heading { /* pc */
    font-size: 3rem;
  }
  .overview__main { /* pc */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 46px;
  }
  .overview__item { /* pc */
    width: 48%;
  }
  .overview__item:nth-of-type(1) a:hover {
    background-color: rgba(233, 83, 107, 0.7);
  }
  .overview__item:nth-of-type(1) a:hover .overview__item__balloon {
    color: #333;
  }
  .overview__item:nth-of-type(2) a:hover {
    background-color: rgba(0, 160, 233, 0.7);
  }
  .overview__item:nth-of-type(2) a:hover .overview__item__balloon {
    color: #333;
  }
  .overview__item a { /* pc */
    padding: 26px 10px 17px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .overview__item a:hover {
    background: #b3b364;
    color: #FFFFFF;
  }
  .overview__item a:hover .overview__item__title {
    color: #FFFFFF;
  }
  .overview__item a:hover .overview__item__balloon {
    background: #FFFFFF;
    color: #b3b364;
  }
  .overview__item a:hover .overview__item__balloon::after {
    border-color: transparent transparent transparent #FFFFFF;
  }
  .overview__item__title { /* pc */
    font-size: 2rem;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .overview__item__text-wrap { /* pc */
    margin-top: 24px;
    min-height: 86px;
  }
  .overview__item__balloon { /* pc */
    -webkit-transition: 0.4s;
    transition: 0.4s;
    width: 150px;
    padding: 15px 0;
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    margin-right: 38px;
  }
  .overview__item__balloon::after { /* pc */
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-width: 7.5px 0 7.5px 17px;
  }
  .overview__item__text { /* pc */
    font-size: 3.6rem;
  }
  .overview__item__scroll-item { /* pc */
    margin-top: 30px;
  }
  .overview__item__scroll-item::before { /* pc */
    height: 30px;
  }
  .overview__item__scroll-item::after { /* pc */
    top: calc(100% + 26px);
  }
  .qualification { /* pc */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .qualification.qualification-noflex {
    display: block;
  }
  .qualification.qualification-noflex .qualification__item {
    width: 100%;
  }
  .qualification.qualification-noflex .qualification__item .table tbody tr th {
    width: 20%;
  }
  .qualification.qualification-noflex .qualification__item .table tbody tr td:nth-of-type(1) {
    width: 40%;
  }
  .qualification.qualification-noflex .qualification__item .table tbody tr td:nth-of-type(2) {
    width: 40%;
    border-left: 1px solid rgb(0, 160, 233);
  }
  .qualification.qualification-noflex .qualification__item:nth-of-type(n+2) {
    margin-top: -1px;
  }
  .qualification.qualification-noflex .qualification__item:nth-of-type(n+2) thead {
    display: none;
  }
  .qualification__item:not(:first-child) { /* pc */
    margin-top: 0;
  }
  .qualification__item { /* pc */
    width: 450px;
  }
  .table--sm tbody th { /* pc */
    width: 31%;
  }
  .skillup { /* pc */
    padding: 40px 40px;
    margin-top: 70px;
  }
  .skillup__heading { /* pc */
    font-size: 2.4rem;
    padding: 10px 0 10px 60px;
  }
  .skillup__heading::before { /* pc */
    width: 32px;
    height: 27px;
    top: 50%;
    left: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .skillup__main { /* pc */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .skillup__col:not(:first-child) { /* pc */
    margin-top: 0;
  }
  .skillup__col { /* pc */
    width: 415px;
  }
  .lg-figure { /* pc */
    margin-bottom: 40px;
  }
  .lg-figure__inner { /* pc */
    width: 100%;
  }
  .another { /* pc */
    padding: 64px 0 100px;
  }
  .another__text { /* pc */
    font-size: 2.4rem;
  }
  .cv-button { /* pc */
    display: block;
    top: 50%;
    left: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .cv-button.is-visible { /* pc */
    -webkit-transform: translate(-100px, -50%);
    transform: translate(-100px, -50%);
  }
  .cv-button__item { /* pc */
    width: 70px;
    height: 260px;
  }
  .cv-button__item a {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 35px;
  }
  .cv-button__item a:hover {
    opacity: 0.6;
  }
  .cv-button__item:not(:last-child) { /* pc */
    border-right: none;
    margin-bottom: 10px;
  }
  .modal { /* pc */ }
  .modal__inner { /* pc */
    width: 900px;
  }
  .modal__close { /* pc */
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .modal__close:hover {
    opacity: 0.5;
  }
  .modal__close img { /* pc */
    width: 30%;
  }
  .merit { /* pc */
    display: block;
  }
  .merit__item { /* pc */
    width: 100%;
    padding: 22px 30px;
  }
  .merit__item:not(:last-child) { /* pc */
    margin-bottom: 0;
  }
  .merit__text ul li {
    padding-left: 35px;
    font-size: 1.6rem;
  }
  .merit__text ul li:nth-of-type(n+2) {
    margin-top: 15px;
  }
  .merit__text ul li::after {
    width: 25px;
    height: 25px;
    top: 0px;
    left: 0px;
  }
  .document__main { /* pc */
    line-height: 1.8;
  }
  .schedule { /* pc */
    padding: 36px 30px 33px;
  }
  .schedule__heading { /* pc */
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .flow { /* pc */
    margin-bottom: 35px;
  }
  .flow__item { /* pc */
    padding: 10px 15px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .flow__item--reverse { /* pc */ }
  .flow__item--univ { /* pc */
    border-radius: 22.5px;
    padding: 8px 20px 9px;
  }
  .flow__item--main { /* pc */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
  }
  .flow__label { /* pc */
    font-size: 1.5rem;
    width: 100px;
    padding: 2px 0 3px;
    margin-right: 20px;
    margin-top: 3px;
  }
  .flow__label-2 { /* pc */
    width: 150px;
    font-size: 2rem;
    margin-left: 0;
    margin-right: 20px;
    padding: 11px 0;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .flow__text__md { /* pc */
    font-size: 1.6rem;
  }
  .flow__text__lg { /* pc */
    font-size: 2rem;
  }
  .flow__text__s {
    font-size: 1.4rem;
  }
  .criteria:not(:last-child) { /* pc */
    margin-bottom: 25px;
  }
  .criteria__inner { /* pc */
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .criteria__item { /* pc */
    width: 100%;
    padding: 13px;
  }
  .criteria__item:not(:first-child) { /* pc */
    margin-left: 15px;
  }
  .criteria__item__head { /* pc */
    padding-bottom: 10px;
    margin-bottom: 5px;
  }
  .criteria__value { /* pc */
    margin-bottom: 10px;
  }
  .criteria__text--center { /* pc */
    text-align: center;
  }
  .task__lead { /* pc */
    margin-bottom: 23px;
    text-align: center;
  }
  .task__item--sp-1col { /* pc */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .task__label--text { /* pc */
    margin-left: 0;
    margin-bottom: 0;
    margin-right: 12px;
  }
  .task__gray-box--mb:last-of-type { /* pc */
    margin-bottom: 0;
  }
  .link {
    /* pc */
    padding: 59px 0 79px;
  }
  .link__head {
    /* pc */
    font-size: 2.2rem;
    margin-bottom: 42px;
  }
  .link__inner {
    /* pc */
    width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .link__item {
    /* pc */
    width: 250px;
    height: 60px;
    font-size: 1.8rem;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .link__item:hover {
    opacity: 0.7;
  }
  .link__item__icon {
    /* pc */
    width: 31px;
    display: inline;
    vertical-align: middle;
    margin-top: 5px;
    margin-right: 10px;
  }
  .footer {
    /* pc */
    padding: 60px 0;
  }
}
@media screen and (max-width: 680px) {
  .sp-only { /* sp */
    display: block !important;
  }
  .sp-only-2 { /* sp */
    display: inline-block !important;
  }
  .pc-only { /* sp */
    display: none !important;
  }
  .pc-only-2 { /* sp */
    display: none !important;
  }
  .sp-none { /* sp */
    display: none;
  }
  .navi__list { /* sp */ }
  .navi__list:not(:first-child) {
    border-top: 1px solid #ffffff;
  }
  .navi__list__item { /* sp */ }
  .navi__list__item:not(:last-child) {
    border-bottom: 1px solid #ffffff;
  }
  .shindan {
    padding: 35px 0 45px;
  }
  .shindan__kakudai-wrap {
    padding-top: 26px;
  }
  .shindan__heading {
    font-size: 2.5rem;
    line-height: 1.3333;
    letter-spacing: 0.09em;
  }
  .shindan__heading.heading01 {
    padding: 6px 15px;
  }
  .shindan__heading.heading02 {
    margin-top: 0;
  }
  .shindan__heading.heading02 span {
    font-size: 1.7rem;
    margin-bottom: 2px;
  }
  .shindan__lead {
    font-size: 1.6rem;
    margin-top: 20px;
  }
  .shindan__main {
    margin-top: 30px;
  }
  .shindan__main li {
    width: 49%;
    padding: 15px 14px 15px 30px;
    font-size: 1.4rem;
  }
  .shindan__main li:nth-of-type(n+3) {
    margin-top: 15px;
  }
  .shindan__main li p::after {
    width: 17px;
    height: 17px;
    top: 0px;
    left: -23px;
  }
  .shindan__kakudai {
    display: block;
    margin: 30px auto 0;
  }
  .shindan__kakudai .heading-3 {
    width: 100%;
  }
  .shindan__kakudai--table {
    width: 100%;
    margin: 0 auto;
  }
  .shindan__kakudai--table thead tr th {
    padding: 5px 0;
    line-height: 1.2;
  }
  .shindan__kakudai--table thead tr th:nth-of-type(1) {
    width: 120px;
  }
  .shindan__kakudai--table thead tr th:nth-of-type(2), .shindan__kakudai--table thead tr th:nth-of-type(3) {
    width: 100px;
  }
  .shindan__kakudai--table tbody tr td {
    padding: 5px 6px 6px;
  }
  .shindan__kakudai--table tbody tr td span {
    font-size: 1rem;
  }
  .shindan__kakudai--table tbody tr td:nth-of-type(n+2) {
    border-left: 1px solid #b3b364;
  }
  .shindan__kakudai--chart {
    width: 100%;
    max-width: 500px;
    margin: 30px auto 0;
  }
  .facility-list__item { /* sp */ }
  .facility-list__item {
    margin-left: 1%;
    margin-right: 1%;
  }
  .facility-list__item:nth-child(1) {
    margin-left: 2%;
  }
  .facility-list__item:nth-child(2) {
    margin-right: 2%;
  }
}
@-webkit-keyframes scrollAnnounce {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes scrollAnnounce {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*追加 学科紹介*/
.heading-1--other {
  text-align: center;
  margin-bottom: 24px;
}
.heading-1--other .heading-1__jp {
  font-size: 2.5rem;
  font-weight: 700;
  color: #006441;
  display: block;
  position: relative;
  padding-bottom: 13px;
  margin-bottom: 18px;
}
.heading-1--other .heading-1__jp::before, .heading-1--other .heading-1__jp::after {
  content: "";
  width: 150px;
  height: 1px;
  display: block;
  background: #939393;
  position: absolute;
  bottom: 0;
}
.heading-1--other .heading-1__jp::before {
  right: calc(50% + 9px);
}
.heading-1--other .heading-1__jp::after {
  left: calc(50% + 9px);
}
.heading-1--other .heading-1__en {
  font: 700 1.6rem "Roboto", sans-serif;
  letter-spacing: 0.04em;
  color: #939393;
  display: block;
  position: relative;
}
.heading-1--other .heading-1__en::after {
  content: "";
  width: 2px;
  height: 15px;
  display: block;
  background: #006441;
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.l-wrapper-faculty {
  margin-top: 130px;
  padding-top: 0;
}

.faculty__lead {
  line-height: 1.71;
  text-align: center;
  margin-bottom: 25px;
}

.faculty__inner {
  position: relative;
  padding-bottom: 50px;
}

.faculty__inner::before {
  content: "";
  width: 100vw;
  height: calc(100% - 50px);
  display: block;
  background: #f5f5f5;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}

.faculty__item--yellow .faculty__head {
  background: #e9b900;
}

.faculty__item--yellow .faculty__content {
  background: #fdf8e6;
}

.faculty__item--yellow .faculty__main__head {
  background: #e9b900;
  border-color: #e99600;
}

.faculty__item--yellow .faculty__main__list li::before {
  background: #e99600;
}

.faculty__item--pink .faculty__head {
  background: #d97080;
}

.faculty__item--pink .faculty__content {
  background: #f8e6e9;
}

.faculty__item--pink .faculty__main__head {
  background: #d97080;
  border-color: #d15064;
}

.faculty__item--pink .faculty__main__list li::before {
  background: #d97080;
}

.faculty__item--blue .faculty__head {
  background: #3081b9;
}

.faculty__item--blue .faculty__content {
  background: #e6f0f7;
}

.faculty__item--blue .faculty__main__head {
  background: #3081b9;
  border-color: #0071b6;
}

.faculty__item--blue .faculty__main__list li::before {
  background: #3081b9;
}

.faculty__item--orange .faculty__head {
  background: #e28000;
}

.faculty__item--orange .faculty__content {
  background: #fcf3e6;
}

.faculty__item--orange .faculty__main__head {
  background: #e28000;
  border-color: #eb5a24;
}

.faculty__item--orange .faculty__main__list li::before {
  background: #e28000;
}

.faculty__item--green .faculty__head {
  background: #40a340;
}

.faculty__item--green .faculty__content {
  background: #e6f3e6;
}

.faculty__item--green .faculty__main__head {
  background: #40a340;
  border-color: #008c45;
}

.faculty__item--green .faculty__main__list li::before {
  background: #40a340;
}

.faculty__head {
  color: #ffffff;
  padding: 10px 10px 18px 10px;
  position: relative;
}

.faculty__head__main {
  padding: 0 10px;
}

.faculty__head__text {
  font-weight: 700;
  line-height: 1.5;
  text-align: justify;
  width: calc(100% - 40px);
}

.faculty__image {
  width: 100%;
  margin-bottom: 14px;
}

.faculty__image img {
  display: block;
}

.faculty__heading {
  margin-bottom: 12px;
}

.faculty__heading__jp {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  display: block;
}

.faculty__heading__en {
  font: 400 1.2rem "Roboto", sans-serif;
  line-height: 1.8;
  display: block;
}

.faculty__open {
  padding: 0;
  border: none;
  background: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.faculty__open::before {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  background: #000;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.faculty__open::after {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
  background: url(../img/icon_cross.svg) no-repeat center/contain;
  position: absolute;
  bottom: 19px;
  right: 19px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.faculty__open.is-opened::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.faculty__content {
  display: none;
}

.faculty__main {
  padding: 20px 20px 30px;
}

.faculty__main__inner {
  margin-bottom: 27px;
}

.faculty__main__item {
  margin-bottom: 18px;
}

.faculty__main__head {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  border-left: 10px solid;
  padding: 6px 10px;
  margin-bottom: 12px;
}

.faculty__main__head::before {
  content: "";
  width: 5px;
  height: 5px;
  display: inline-block;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  -webkit-transform: rotate(45deg) translateY(-3px);
  transform: rotate(45deg) translateY(-3px);
  margin-right: 18px;
  vertical-align: middle;
}

.faculty__main__text {
  line-height: 1.5;
  text-align: justify;
}

.faculty__main__list {
  line-height: 1.5;
  text-align: justify;
}

.faculty__main__list li::before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 3px;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

/* 国際コミュニケーション */
.faculty__item--yellow .faculty__head {
  border-color: #f9d389;
}

.faculty__item--yellow .faculty__head {
  background: #f5a200;
}

.faculty__item--yellow .faculty__main__head {
  background: #f5a200;
  border-color: #f58b00;
}

.faculty__item--yellow .faculty__content {
  background: #fdf1d9;
}

.faculty__item--yellow .faculty__main__list li::before {
  background: #f5a200;
}

.faculty__item--yellow .faculty__main__text .pointTxt {
  color: #f5a200;
}

/* 国際観光学科 */
.faculty__item--pink .faculty__head {
  border-color: #f3afc4;
}

.faculty__item--pink .faculty__head {
  background: #e95383;
}

.faculty__item--pink .faculty__main__head {
  background: #e95383;
  border-color: #eb074f;
}

.faculty__item--pink .faculty__content {
  background: #f8e6e9;
}

.faculty__item--pink .faculty__main__list li::before {
  background: #e95383;
}

.faculty__item--pink .faculty__main__text .pointTxt {
  color: #e95383;
}

/* 経済学科 */
.faculty__item--blue .faculty__head {
  border-color: #89c0d7;
}

.faculty__item--blue .faculty__head {
  background: #0093d4;
}

.faculty__item--blue .faculty__main__head {
  background: #0093d4;
  border-color: #0070a0;
}

.faculty__item--blue .faculty__content {
  background: #e6f0f7;
}

.faculty__item--blue .faculty__main__list li::before {
  background: #0093d4;
}

.faculty__item--blue .faculty__main__text .pointTxt {
  color: #0093d4;
}

/* 経営学科 */
.faculty__item--orange .faculty__head {
  border-color: #84d4c1;
}

.faculty__item--orange .faculty__head {
  background: #35b597;
}

.faculty__item--orange .faculty__main__head {
  background: #35b597;
  border-color: #26866f;
}

.faculty__item--orange .faculty__content {
  background: #e6f3e6;
}

.faculty__item--orange .faculty__main__list li::before {
  background: #35b597;
}

.faculty__item--orange .faculty__main__text .pointTxt {
  color: #35b597;
}

/* 総合情報学科 */
.faculty__item--green .faculty__head {
  border-color: #a79dd2;
}

.faculty__item--green .faculty__head {
  background: #796baf;
}

.faculty__item--green .faculty__main__head {
  background: #796baf;
  border-color: #4d34b3;
}

.faculty__item--green .faculty__content {
  background: #ede9ff;
}

.faculty__item--green .faculty__main__list li::before {
  background: #796baf;
}

.faculty__item--green .faculty__main__text .pointTxt {
  color: #796baf;
}

.faculty__head {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.faculty__main__text span {
  display: block;
}

.faculty__main__text span:not(:first-of-type) {
  margin-top: 8px;
}

.faculty__main__text .pointTxt {
  font-weight: 900;
  letter-spacing: 0.1em;
}

.box__list--item {
  margin-left: 1em;
  text-indent: -1em;
}

.facultyIntro__cts--faculty--btn--flex--txtArea--categoryList {
  margin-top: 0px;
  margin-bottom: 20px;
}

.facultyIntro__cts--faculty--btn--flex--txtArea--categoryList li {
  display: inline-block;
  background-color: #fff;
  border-radius: 5px;
  font-size: 1.4rem;
  font-size: min(0.8vw, 1.4rem);
  font-size: clamp(1rem, 0.8vw, 1.4rem);
  letter-spacing: 0;
  padding: 7px 13px;
  margin-right: 10px;
  margin-top: 7px;
}

.facultyIntro__cts--faculty--btn--flex--txtArea--categoryList.keiei {
  color: #35b597;
}

.facultyIntro__cts--faculty--btn--flex--txtArea--categoryList.sougou {
  color: #796baf;
}

.faculty__heading__en sup {
  font-size: 100%;
  vertical-align: top;
  position: relative;
  top: -0.3em;
  right: -0.2em;
}

.facultyIntro__attention {
  margin-top: 20px;
  font-size: 1.5rem;
  letter-spacing: 0.07em;
  width: 100%;
  margin-top: 22px;
}

.facultyIntro__attention p {
  margin-left: 1em;
  text-indent: -1em;
}

.button-1 {
  margin-top: 70px;
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.button-1 a {
  text-decoration: none;
  background: #e99600;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  display: block;
  height: 100%;
  padding: 15px 2px 17px;
}

.button-1 a:hover {
  opacity: 0.8;
}

@media screen and (min-width: 681px) {
  .heading-1--other {
    margin-bottom: 41px;
  }
  .heading-1--other .heading-1__jp {
    font-size: 4.5rem;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .heading-1--other .heading-1__jp::before, .heading-1--other .heading-1__jp::after {
    width: 360px;
  }
  .heading-1--other .heading-1__en {
    font-size: 1.8rem;
  }
  .heading-1--other .heading-1__en::after {
    bottom: calc(100% + 1px);
  }
  .faculty__lead { /* pc */
    font-size: 1.8rem;
    line-height: 2;
    margin-bottom: 42px;
  }
  .faculty__inner { /* pc */
    padding-bottom: 100px;
  }
  .faculty__inner::before { /* pc */
    height: calc(100% - 100px);
  }
  .faculty__item--yellow .faculty__head { /* pc */
    border-color: #f0cf50;
  }
  .faculty__item--pink .faculty__head { /* pc */
    border-color: #e396a2;
  }
  .faculty__item--blue .faculty__head { /* pc */
    border-color: #64a1cb;
  }
  .faculty__item--orange .faculty__head { /* pc */
    /*border-color: #eba850;*/
  }
  .faculty__item--green .faculty__head { /* pc */
    /*border-color: #64b464;*/
  }
  .faculty__head { /* pc */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 27px 27px 26px 27px;
    border-width: 3px;
    border-style: solid;
  }
  .faculty__head__main { /* pc */
    padding: 0;
    width: 70.2%;
    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: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .faculty__head__text { /* pc */
    font-size: 1.6rem;
    line-height: 1.75;
  }
  .faculty__image { /* pc */
    width: 26.6%;
    margin-bottom: 0;
    margin-right: 3.2%;
    margin-top: 5px;
  }
  .faculty__heading__jp { /* pc */
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 7px;
  }
  .faculty__heading__en { /* pc */
    font-size: 1.8rem;
  }
  .faculty__open::before { /* pc */
    width: 40px;
    height: 40px;
    bottom: 15px;
    right: 17px;
  }
  .faculty__open::after { /* pc */
    width: 16px;
    height: 16px;
    bottom: 28px;
    right: 28px;
  }
  .faculty__main { /* pc */
    padding: 30px 30px 50px;
  }
  .faculty__main__inner { /* pc */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
  }
  .faculty__main__content { /* pc */
    width: 48.4%;
  }
  .faculty__main__content:not(:last-child) {
    margin-right: 3.2%;
  }
  .faculty__main__item { /* pc */
    margin-bottom: 16px;
  }
  .faculty__main__head { /* pc */
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .faculty__main__text { /* pc */
    line-height: 1.71;
  }
  .faculty__main__list { /* pc */
    line-height: 1.71;
  }
  .faculty__main__list li::before { /* pc */
    width: 11px;
    height: 11px;
    margin-right: 5px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@media screen and (max-width: 680px) {
  .l-wrapper-faculty {
    margin-top: 50px;
    padding-top: 0;
  }
  .facultyIntro__attention {
    width: 100%;
    font-size: 1rem;
    margin-top: 10px;
    line-height: 1.7;
    margin-left: auto;
    letter-spacing: 0em;
    margin-right: auto;
  }
  .faculty__heading__en {
    font-size: 1.4rem;
  }
}
/*追加 キャンパス紹介*/
.new-building {
  position: relative;
  padding: 42px 0 48px;
  margin-bottom: 20px;
}

.new-building::before {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  width: 100vw;
  height: 100%;
  display: block;
  background: #006441;
}

.new-building__head {
  position: relative;
  color: #ffffff;
}

.new-building__head__text {
  line-height: 1.71;
  width: 87.5%;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

.new-building__head__text sup {
  font-size: 50%;
  vertical-align: top;
}

.new-building__heading {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.59;
  margin-bottom: 15px;
  text-align: center;
}

.new-building__heading span {
  font-size: 80%;
}

.new-building__heading sup {
  font-size: 50%;
  font-weight: 400;
  vertical-align: top;
}

.new-building__image-wrap {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100vw;
  margin: 25px 0 28px;
}

.new-building__image figcaption {
  position: absolute;
  top: 7.5%;
  left: 5.6%;
  background: #006441;
  color: #ffffff;
  padding: 8px 14px 10px;
  font-weight: 700;
  line-height: 1.5;
}

.new-building__image figcaption::before {
  position: absolute;
  top: 100%;
  left: 60px;
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: linear-gradient(225deg, #006441 50%, transparent 50%);
}

.new-building__detail {
  position: relative;
}

.new-building__point {
  background: #ffffff;
  width: 93.75%;
  margin-left: auto;
  margin-right: auto;
  padding: 14px 20px 20px;
}

.new-building__point__text {
  font-weight: 700;
  color: #006441;
  line-height: 1.71;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.new-building__point__list {
  font-weight: 500;
  line-height: 1.64;
  text-align: justify;
}

.new-building__point__list li {
  text-indent: -1em;
  padding-left: 1em;
}

.new-building__point__list li::before {
  content: "■";
  color: #006441;
}

.new-building__note {
  font-size: 1.1rem;
  line-height: 1.54;
  color: #ffffff;
  width: 87.5%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 12px;
  text-align: justify;
}

.facility-wrap {
  padding: 0 0 30px;
  margin-top: 60px;
}

.facility-wrap .content-lead {
  line-height: 1.71;
  margin-bottom: 34px;
  text-align: justify;
}

.facility {
  position: relative;
  padding-top: calc(179% + 10px);
  width: calc(100% + 10px);
  margin-left: -5px;
  margin-bottom: 15px;
  margin-top: -8px;
}

.facility__item {
  padding: 5px;
  position: absolute;
}

.facility__item button {
  display: block;
  padding: 0;
  background: none;
  border: none;
  position: relative;
}

.facility__item button:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: url(../img/icon_search.svg) no-repeat right bottom, #FFFFFF;
}

.facility__item--01 {
  top: 0;
  left: 0;
  width: 55.3%;
}

.facility__item--02 {
  top: 0;
  right: 0;
  width: 44.7%;
}

.facility__item--03 {
  top: 15.5%;
  right: 0;
  width: 44.7%;
}

.facility__item--04 {
  top: 31.1%;
  left: 0;
  width: 33.333333%;
}

.facility__item--05 {
  top: 31.1%;
  left: 33.333333%;
  width: 33.333333%;
}

.facility__item--06 {
  top: 31.1%;
  right: 0;
  width: 33.333333%;
}

.facility__item--07 {
  top: 50%;
  left: 0;
  width: 44.6%;
}

.facility__item--08 {
  top: 65.5%;
  left: 0;
  width: 44.6%;
}

.facility__item--09 {
  top: 50%;
  right: 0;
  width: 55.4%;
}

.facility__item--10 {
  bottom: 0;
  left: 0;
  width: 33.333333%;
}

.facility__item--11 {
  bottom: 0;
  left: 33.333333%;
  width: 33.333333%;
}

.facility__item--12 {
  bottom: 0;
  right: 0;
  width: 33.333333%;
}

.facility__item img {
  display: block;
}

.facility__main {
  display: none;
}

.facility__name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 10px;
}

.facility__detail {
  margin-top: 14px;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.facility__detail:after {
  content: "";
  background: url(../img/arrow_white.svg) no-repeat center/contain;
  width: 40px;
  height: 6px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 7px 5px;
}

.modal-facility {
  opacity: 0;
  visibility: hidden;
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: block;
}

.modal-facility.is-visible {
  opacity: 1;
  visibility: visible;
}

.modal-facility .modal__wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.modal-facility .modal__inner {
  background: rgba(0, 0, 0, 0.8);
  color: #FFFFFF;
  padding-top: 70px;
  width: 100vw;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: initial;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.modal-facility .modal__inner[data-type=course] {
  height: 100%;
}

.modal-facility .modal__item {
  overflow: auto;
  max-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  padding-top: 70px;
}

.modal-facility .modal__item.is-visible {
  opacity: 1;
  visibility: visible;
}

.modal-facility .modal__close {
  background: none;
  border: none;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
}

.modal-facility .modal__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: absolute;
  top: calc(70px + 67vw);
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.modal-facility .modal__arrows--course {
  top: calc(70px + 75vw);
}

.modal-facility .modal__arrow {
  background: none;
  border: none;
  padding: 0;
  width: 30px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.modal-facility .modal__arrow--left {
  margin-left: 20px;
}

.modal-facility .modal__arrow--right {
  margin-right: 20px;
}

.facility-detail__inner {
  padding: 0 30px 30px;
}

.facility-detail__image {
  margin-bottom: 30px;
  width: 100%;
  padding-top: 66.666666%;
  position: relative;
}

.facility-detail__image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.facility-detail__heading {
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 25px;
}

.facility-detail__text {
  line-height: 1.78;
  text-align: justify;
}

@media screen and (min-width: 681px) {
  .new-building { /* pc */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 55px;
  }
  .new-building::before { /* pc */
    min-width: 1100px;
  }
  .new-building__head { /* pc */
    width: 45%;
    padding: 44px 0;
  }
  .new-building__head__text { /* pc */
    width: 100%;
    font-weight: 500;
  }
  .new-building__heading { /* pc */
    font-size: 2.8rem;
    line-height: 1.46;
    text-align: left;
    margin-right: -1em;
    margin-bottom: 18px;
  }
  .new-building__heading sup { /* pc */
    display: inline-block;
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
  }
  .new-building__image-wrap { /* pc */
    position: static;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    width: 50%;
    margin: 0;
  }
  .new-building__image { /* pc */
    width: 50vw;
    min-width: 550px;
    height: 100%;
    max-height: 547px;
  }
  .new-building__image img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .new-building__image figcaption { /* pc */
    top: 5.5%;
    left: 6.2%;
    padding: 8px 18px 12px;
    font-size: 1.6rem;
    line-height: 1.56;
  }
  .new-building__image figcaption::before { /* pc */
    left: 95px;
  }
  .new-building__point { /* pc */
    width: 100%;
    padding: 16px 21px 22px;
    margin: 25px 0 16px;
  }
  .new-building__point__text { /* pc */
    font-size: 1.5rem;
    line-height: 1.53;
    letter-spacing: 0;
    margin-bottom: 8px;
  }
  .new-building__point__list { /* pc */
    color: #000;
    font-size: 1.3rem;
    line-height: 1.61;
  }
  .new-building__point__list li { /* pc */
    text-indent: 0;
    padding-left: 0;
  }
  .new-building__note { /* pc */
    width: 100%;
  }
  .facility-wrap { /* pc */
    padding: 0 0 60px;
    margin-top: 130px;
  }
  .facility-wrap .content-lead {
    font-size: 1.8rem;
    line-height: 2;
    text-align: center;
    margin-bottom: 49px;
  }
  .facility { /* pc */
    width: calc(100vw + 10px);
    min-width: 1110px;
    padding-top: 0;
    height: calc(62.75vw + 10px);
    min-height: 700.25px;
    margin-left: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-bottom: 0;
  }
  .facility__item button:after { /* pc */
    content: none;
  }
  .facility__item--01 { /* pc */
    width: 45.4%;
  }
  .facility__item--02 { /* pc */
    width: 25.6%;
    right: 29%;
  }
  .facility__item--03 { /* pc */
    top: 0;
    width: 29%;
  }
  .facility__item--04 { /* pc */
    top: 45%;
    width: 19.7%;
  }
  .facility__item--05 { /* pc */
    top: 31.2%;
    left: 45.4%;
    width: 34.1%;
  }
  .facility__item--06 { /* pc */
    top: 45%;
    right: auto;
    left: 19.7%;
    width: 25.6%;
  }
  .facility__item--07 { /* pc */
    top: 31.2%;
    left: auto;
    right: 0;
    width: 20.6%;
  }
  .facility__item--08 { /* pc */
    top: auto;
    bottom: 0;
    width: 19.7%;
  }
  .facility__item--09 { /* pc */
    top: auto;
    bottom: 0;
    right: auto;
    left: 19.7%;
    width: 25.6%;
  }
  .facility__item--10 { /* pc */
    left: auto;
    right: 0;
    width: 20.6%;
  }
  .facility__item--11 { /* pc */
    width: 17%;
    left: auto;
    right: 20.6%;
  }
  .facility__item--12 { /* pc */
    right: 37.6%;
    width: 17%;
  }
  .facility__main { /* pc */
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    opacity: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .facility__main:hover {
    opacity: 1;
  }
  .modal-facility .modal__inner { /* pc */ }
  .modal-facility .modal__inner[data-type=facility] {
    width: 940px;
  }
  .modal-facility .modal__inner[data-type=course] {
    width: 1080px;
  }
  .modal-facility .modal__item { /* pc */ }
  .modal-facility .modal__arrows { /* pc */
    top: 340px;
  }
  .modal-facility .modal__arrows--course {
    width: calc(100% - 60px);
  }
  .modal-facility .modal__arrow { /* pc */
    width: 40px;
  }
  .modal-facility .modal__arrow img {
    width: 20px;
  }
  .modal-facility .modal__arrow--left { /* pc */
    margin-left: 0;
  }
  .modal-facility .modal__arrow--right { /* pc */
    margin-right: 0;
  }
  .facility-detail__inner { /* pc */
    padding: 0 70px 70px;
  }
  .facility-detail__heading { /* pc */
    font-size: 3rem;
  }
  .facility-detail__text { /* pc */
    font-size: 1.7rem;
    line-height: 1.88;
  }
}
/*追加 アクセス*/
#access {
  margin-top: 70px;
  padding-top: 0;
}

.access {
  padding-bottom: 50px;
  position: relative;
}

.access__lead {
  margin-bottom: 25px;
}

.access__lead__image-wrap {
  position: relative;
  margin-bottom: 22px;
  width: 100vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.access__lead__image img {
  display: block;
}

.access__lead__campus {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #000;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2;
  padding: 0px 22px 3px 20px;
}

.access__lead__head {
  margin-bottom: 18px;
  color: #54798a;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.722;
  text-align: justify;
}

.access__lead__text {
  text-align: justify;
  line-height: 1.714;
}

.access__image {
  margin-bottom: 14px;
}

.access__note {
  margin-bottom: 26px;
  font-size: 1.2rem;
  line-height: 1.666;
  text-align: justify;
}

@media screen and (min-width: 681px) {
  .access { /* pc */
    padding-bottom: 100px;
  }
  .access__lead { /* pc */
    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;
    margin-bottom: 43px;
  }
  .access__lead__image-wrap { /* pc */
    width: 38%;
    left: 0;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    margin-bottom: 0;
  }
  .access__lead__campus { /* pc */
    padding: 0 20px 2px 15px;
  }
  .access__lead__main { /* pc */
    width: 58%;
  }
  .access__lead__head { /* pc */
    margin-top: -9px;
    margin-bottom: 17px;
    font-size: 2.6rem;
    line-height: 1.538;
  }
  .access__lead__head span { /* pc */
    display: inline-block;
    font-size: 1.4rem;
    vertical-align: middle;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  .access__lead__text { /* pc */
    line-height: 2;
  }
  .access__image { /* pc */
    margin-bottom: 25px;
  }
  .access__note { /* pc */
    margin-right: -4px;
    margin-bottom: 95px;
    text-align: right;
  }
}
@media screen and (max-width: 680px) {
  #access {
    margin-top: 40px;
    padding-top: 0;
  }
  .access__btn {
    margin-top: 40px;
  }
}
/*kyufu*/
.kyufu-wrap {
  background-color: #efeae6;
  margin: 100px 0 50px;
  padding: 50px 0;
}

#kyufu {
  max-width: 1000px;
  padding: 0;
  margin: 0 auto;
}
#kyufu.l-article {
  border: none;
}
#kyufu .qualification__item {
  width: 100%;
}
#kyufu .qualification__item .table tbody th {
  width: 16%;
}
#kyufu .qualification__item .table tbody td {
  width: 52%;
}
#kyufu .qualification__item .table tbody td:last-of-type {
  border-left: 1px solid #b3b364;
  width: 32%;
}
#kyufu .document__main ol li {
  text-indent: -1.7em;
  padding-left: 1.7em;
}

@media screen and (max-width: 680px) {
  #kyufu {
    width: 94%;
  }
}
/*追加 お問い合わせ*/
.contact {
  border: 5px solid #e6ecec;
  color: #54798a;
  font-weight: 700;
  margin-top: 0;
}

.contact__head {
  padding: 14px 10px 8px;
  border-bottom: 2px solid #e6ecec;
}

.contact__heading {
  text-align: center;
  font-size: 1.6rem;
}

.contact__heading span {
  display: block;
  font-size: 2.1rem;
  line-height: 2;
}

.contact__bottom {
  padding: 17px 10px 27px 20px;
}

.contact__phone {
  position: relative;
  font-size: 2rem;
  line-height: 1.5;
  padding-left: 35px;
}

.contact__phone a {
  text-decoration: none;
}

.contact__phone span {
  display: block;
  font-size: 1.2rem;
}

.contact__phone::before {
  position: absolute;
  content: "";
  background: url(../img/icon_phone_blue.svg) no-repeat center center/contain;
  width: 28px;
  height: 28px;
  top: 3px;
  left: 0;
}

.contact__mail {
  margin-top: 10px;
  position: relative;
  font-size: 2rem;
  padding-left: 35px;
  text-decoration: none;
  display: block;
}

.contact__mail::before {
  position: absolute;
  content: "";
  background: url(../img/icon_mail_blue.svg) no-repeat center center/contain;
  width: 28px;
  height: 28px;
  top: -1px;
  left: 0;
}

@media screen and (min-width: 681px) {
  .contact { /* pc */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 840px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px;
  }
  .contact__head { /* pc */
    border-bottom: none;
    width: 40%;
    padding: 28px 10px 14px 36px;
  }
  .contact__heading { /* pc */
    text-align: left;
    font-size: 1.8rem;
  }
  .contact__heading span { /* pc */
    margin-top: 10px;
    font-size: 3rem;
    border-top: 2px solid #e6ecec;
    line-height: 2.2;
  }
  .contact__bottom { /* pc */
    width: 60%;
    padding: 25px 10px 27px 33px;
  }
  .contact__phone { /* pc */
    font-size: 3rem;
    padding-left: 43px;
  }
  .contact__phone span { /* pc */
    display: inline-block;
    font-size: 1.4rem;
    padding-left: 9px;
    vertical-align: middle;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }
  .contact__phone::before { /* pc */
    width: 34px;
    height: 34px;
    top: 5px;
  }
  .contact__mail { /* pc */
    margin-top: 6px;
    font-size: 3rem;
    padding-left: 43px;
  }
  .contact__mail::before { /* pc */
    width: 34px;
    height: 34px;
  }
}
/*//追加 お問い合わせ*/
/*# sourceMappingURL=style.css.map */