@charset "UTF-8";
@media screen and (max-width: 699px) {
  header .menu-trigger,
  header .menu-trigger span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
  header .menu-trigger {
    position: absolute;
    top: 12px;
    right: 8px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
    z-index: 2;
  }
  header .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #fff;
    border-radius: 4px;
  }
  header .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  header .menu-trigger span:nth-of-type(2) {
    top: 14px;
  }
  header .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  header .menu-trigger.active span:nth-of-type(1) {
    width: 49%;
    transform: translate3d(4px, 9px, 0) rotate(405deg);
  }
  header .menu-trigger.active span:nth-of-type(2) {
    transform: translate3d(0px, 0, 0) rotate(-45deg);
  }
  header .menu-trigger.active span:nth-of-type(3) {
    width: 49%;
    transform: translate3d(15px, -8px, 0) rotate(405deg);
  }
  header {
    /*----------------------------
    * メニュー本体
    *----------------------------*/
  }
  header .menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #555;
    padding-left: 0;
    margin-top: 0;
  }
  header .page_item {
    width: 100%;
    height: auto;
    padding: 0.5em 1em;
    text-align: center;
    box-sizing: border-box;
  }
  header .page_item > a {
    color: #fff;
  }
  header {
    /*----------------------------
    * アニメーション部分
    *----------------------------*/
    /* アニメーション前のメニューの状態 */
  }
  header .menu {
    transform: translateY(-100vh);
    transition: all 0.35s linear;
  }
  header {
    /* アニメーション後のメニューの状態 */
  }
  header .menu.active {
    transform: translateY(0);
  }
  .article-wrap > article {
    margin-bottom: 72px;
    display: flex;
    align-items: center;
  }
  .article-wrap > article .text-area {
    flex-shrink: 3;
  }
  .article-wrap > article > figure img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 24px;
  }
  .footermenu > .container-width {
    padding: 24px;
  }
  .subcontents > .wrapper > section > h1 {
    margin: 48px 0 12px 0;
  }
  .sidebar-search {
    margin-top: 24px;
  }
}