@charset "utf-8";
/* linkApply */
  .ocContent .linkApply {
    position: fixed;
    bottom: 70px;
    right: 70px;
    width: 150px;
    height: 150px;
    display: block;
    text-align: center;
    z-index: 10;
  }
  .ocContent .linkApply:not(.sumiBox) .sumi {
    display: none;
  }
  .ocContent .linkApply a {
    color: var(--reverse-color);
    font-family: var(--font-family);
    font-weight: var(--font-weight-Bold);
    text-decoration: none;
    text-align: center;
    font-size: var(--font-size-md);
    line-height: 1.4;
    border: 5px solid transparent;
    display: block;
    width: 100%;
    height: 100%;
    padding-top: 42px;
    border-radius: 50%;
    background: #f15a24;
    transition: all .3s ease;
  }
  .ocContent .linkApply.sumiBox a {
    padding-top: 32px;
  }
  .ocContent .linkApply.sumiBox .sumi {
    position: absolute;
    font-size: 1rem;
    display: block;
    white-space: nowrap;
    color: #f15a24;
    left: 50%;
    transform: translateX(-50%);
    background: var(--reverse-color);
    border: 5px solid #F15A24;
    border-radius: 7px;
    padding: 0 .4em;
    transition: all .3s ease;
  }
  .ocContent .linkApply a:hover {
    border-color: #F15A24;
    background: var(--reverse-color);
    color: #F15A24;
  }
  .ocContent .linkApply.disabled a {
    pointer-events: none;
    opacity: .5;
    background: #acc4d1;
  }
  .ocContent .linkApply.disabled .sumi {
    color: #acc4d1;
    border-color: #acc4d1;
  }

/* 959px以下 */
@media screen and (max-width: 959px){

  .ocContent .linkApply {
    right: 0;
    bottom: 0;
    padding: 5px 8px;
    z-index: 2000;
    width: calc(100% - 55px);
    left: 55px;
    height: auto;
  }
  .ocContent .linkApply a {
    border-radius: var(--border-radius);
    font-size: 0.9375rem;
    padding: 0.83em;
    border-width: 2px;
  }
  .ocContent .linkApply a > br {
    display: none;
  }
  .ocContent .linkApply.sumiBox .sumi {
    font-size: .7em;
    border-width: 0;
    margin-top: 0.25em;
  }
  .ocContent .linkApply.sumiBox a {
    padding-top: 0.23em;
    padding-bottom: 1.43em;
  }
  ul.sub.menuFixed li:not(:first-child) {
    display: none;
  }

}


