@charset "UTF-8";
/*
---------------------------------------------------------------------------------------------------------------------
ヘッダー
---------------------------------------------------------------------------------------------------------------------
*/
#header {
  z-index: 1000;
  width: 100%;
  position: fixed;
  height: 64px;
  top: 0;
  transition: .5s; }
  @media (min-width: 1250px) {
    #header {
      height: 100px; } }
  #header.open {
    background-color: rgba(240, 240, 240, 0.9);
    height: 64px; }
    @media (min-width: 1250px) {
      #header.open {
        height: 60px; } }
  #header .main-logo {
    position: absolute;
    display: flex;
    align-items: center;
    height: 100%;
    left: 2%;
    z-index: 1000; }
    #header .main-logo a.name-header img {
      width: 220px;
      height: auto; }
      @media (min-width: 1250px) {
        #header .main-logo a.name-header img {
          width: 240px; } }
    #header .main-logo a.name-header h2 {
      font-size: 0.65em;
      font-weight: 300;
      color: #000;
      margin: 5px 0 0 0; }
      @media (min-width: 1250px) {
        #header .main-logo a.name-header h2 {
          font-size: 0.8em;
          margin: 3px 0 0 0; } }

#pc-header {
  display: none;
  /*hoverしたら表示*/ }
  @media (min-width: 1024px) {
    #pc-header {
      display: flex;
      align-items: center;
      height: 100%; } }
  #pc-header nav {
    position: absolute;
    right: 2%;
    display: flex;
    align-items: center;
    /*2階層目以降は横並びにしない*/ }
    #pc-header nav ul {
      margin: 0;
      display: flex;
      align-items: center; }
      #pc-header nav ul li {
        margin-right: 15px;
        position: relative; }
        @media (min-width: 1250px) {
          #pc-header nav ul li {
            margin-right: 20px; } }
        #pc-header nav ul li:nth-child(1) {
          margin-right: 30px; }
        #pc-header nav ul li:nth-child(4) {
          margin-right: 30px; }
        #pc-header nav ul li a {
          color: #000;
          font-size: 0.8em;
          position: relative;
          display: inline-block;
          transition: .3s;
          text-decoration: none; }
          @media (min-width: 1250px) {
            #pc-header nav ul li a {
              font-size: 0.9em; } }
          #pc-header nav ul li a::after {
            position: absolute;
            bottom: 0;
            left: 0;
            content: '';
            width: 0;
            height: 1px;
            background-color: #000;
            transition: .3s; }
          #pc-header nav ul li a:hover::after {
            width: 100%; }
        #pc-header nav ul li li {
          margin-right: 0; }
          #pc-header nav ul li li:nth-child(1) {
            margin-right: 0; }
          #pc-header nav ul li li:nth-child(4) {
            margin-right: 0; }
          #pc-header nav ul li li:last-child {
            margin-right: 0; }
          #pc-header nav ul li li a {
            padding: 10px 10px; }
            #pc-header nav ul li li a::after {
              background-color: rgba(0, 0, 0, 0); }
        #pc-header nav ul li.has-child::before {
          content: '';
          position: absolute;
          right: -14px;
          top: 8px;
          width: 6px;
          height: 6px;
          border-top: 1px solid #000;
          border-right: 1px solid #000;
          transform: rotate(135deg); }
    #pc-header nav ul ul {
      display: block; }
    #pc-header nav li.has-child ul {
      position: absolute;
      left: 0;
      top: 30px;
      z-index: 4;
      background-color: #fff;
      width: 180px;
      visibility: hidden;
      opacity: 0;
      transition: all .3s; }
      #pc-header nav li.has-child ul li a {
        color: #000;
        border-bottom: solid 1px rgba(0, 0, 0, 0.2);
        width: 100%; }
      #pc-header nav li.has-child ul li:last-child > a {
        border-bottom: none; }
    #pc-header nav .MenuBtn.Interview {
      margin-right: 10px; }
  #pc-header nav li.has-child:hover > ul,
  #pc-header nav li.has-child ul li:hover > ul,
  #pc-header nav li.has-child:active > ul,
  #pc-header nav li.has-child ul li:active > ul {
    visibility: visible;
    opacity: 1; }
  #pc-header nav li.has-child ul li a:hover,
  #pc-header nav li.has-child ul li a:active {
    background-color: #ef858c;
    color: #fff; }

.MenuBtn {
  display: inline-block;
  padding: 2px 30px 2px 20px;
  border-radius: 50px;
  text-align: center;
  position: relative; }
  .MenuBtn.Interview {
    border: 1px solid #fff; }
  .MenuBtn.Entry {
    background-color: #ef858c; }
  .MenuBtn a {
    color: #fff;
    display: inline-block;
    font-size: 0.85em;
    transition: .5s;
    line-height: 34px; }
  .MenuBtn::after {
    position: absolute;
    top: 50%;
    right: 15px;
    content: '';
    margin-top: -3px;
    width: 6px;
    height: 6px;
    border: 0px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: .5s; }
  .MenuBtn:hover::after {
    right: -2px;
    margin-right: 10px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff; }

/*
---------------------------------------------------------------------------------------------------------------------
フッター
---------------------------------------------------------------------------------------------------------------------
*/
#footer {
  max-width: 1600px;
  margin: auto;
  width: 90%;
  position: relative;
  padding: 40px 0 25px; }
  @media (min-width: 1250px) {
    #footer {
      padding: 40px 0 25px; } }
  #footer .footerMenu {
    margin-bottom: 10px; }
    #footer .footerMenu a:hover {
      opacity: 0.7; }
    #footer .footerMenu a img {
      width: 100%;
      border-radius: 10px;
      transition: .5s; }
      @media (min-width: 1024px) {
        #footer .footerMenu a img {
          border-radius: 20px; } }
  #footer p {
    font-size: 0.5em;
    line-height: 1.6em;
    text-align: center;
    margin-top: 50px; }
    @media (min-width: 1024px) {
      #footer p {
        font-size: 0.75em;
        text-align: right; } }
  @media only screen and (min-width: 1024px) {
    #footer .o-6column .col-lg-3 {
      padding: 0 10px; }
    #footer .o-6column {
      margin: 0 -10px; } }
