@charset "UTF-8";
/*********************************************************************
* ブレークポイント
**********************************************************************/
/*********************************************************************
* メディアクエリー定義
**********************************************************************/
/* ************************************************ 
 *	base
 * ************************************************ */
html,
html *,
body,
header,
footer {
  margin: 0;
  padding: 0;
  font-family: 'Yu Gothic', YuGothic, 'Helvetica Neue', 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', Arial, Meiryo, sans-serif;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
}

body {
  background: #E7EAEB;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

@media print, screen and (min-width: 1024px) {
  main:not(#login) {
    width: calc(100% - 180px);
    margin-left: auto;
  }
}

@media print, screen and (min-width: 1200px) {
  main:not(#login) {
    width: calc(100% - 210px);
  }
}

@media print, screen and (min-width: 1024px) {
  a:hover {
    opacity: 0.6;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
}

/*********************************************************************
* PC／SP切替
**********************************************************************/
.sp_only {
  display: block;
}

@media print, screen and (min-width: 768px) {
  .sp_only {
    display: none;
  }
}

.sp_only_ib {
  display: inline-block;
}

@media print, screen and (min-width: 768px) {
  .sp_only_ib {
    display: none;
  }
}

.tab_only {
  display: none;
}

@media print, screen and (min-width: 768px) {
  .tab_only {
    display: block;
  }
}

@media print, screen and (min-width: 1024px) {
  .tab_only {
    display: none;
  }
}

.pc_only {
  display: none;
}

@media print, screen and (min-width: 1024px) {
  .pc_only {
    display: block;
  }
}

.tab_sp_only {
  display: block;
}

@media print, screen and (min-width: 1024px) {
  .tab_sp_only {
    display: none;
  }
}

.tab_pc_only {
  display: none;
}

@media print, screen and (min-width: 768px) {
  .tab_pc_only {
    display: block;
  }
}

.tab_pc_only_ib {
  display: none;
}

@media print, screen and (min-width: 768px) {
  .tab_pc_only_ib {
    display: inline-block;
  }
}

@media print, screen and (min-width: 1024px) {
  a:hover {
    opacity: 0.6;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*********************************************************************
* flexbox外枠
**********************************************************************/
.flex_between,
.flex_start,
.flex_center,
.flex_end,
.flex_around {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media print, screen and (min-width: 768px) {
  .flex_between_tab,
  .flex_start_tab,
  .flex_center_tab,
  .flex_end_tab,
  .flex_around_tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media print, screen and (min-width: 1024px) {
  .flex_between_pc,
  .flex_start_pc,
  .flex_center_pc,
  .flex_end_pc,
  .flex_around_pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.flex_between,
.flex_between_tab,
.flex_between_pc {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex_start,
.flex_start_tab,
.flex_start_pc {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex_center,
.flex_center_tab,
.flex_center_pc {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex_end,
.flex_end_tab,
.flex_end_pc {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex_around,
.flex_around_tab,
.flex_around_pc {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.align_stretch {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

@media print, screen and (min-width: 1024px) {
  .row_reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media print, screen and (min-width: 768px) {
  .row_reverse_tab {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

/* ************************************************ 
 *	ヘッダー
 * ************************************************ */
header {
  position: fixed;
  top: 0;
  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;
  width: 100%;
  height: 56px;
  background-color: #fff;
  padding: 0 10px;
  z-index: 1;
}

@media print, screen and (min-width: 1024px) {
  header {
    height: 70px;
    padding: 0 30px;
  }
}

h1.logo {
  margin-left: 46px;
}

@media print, screen and (min-width: 1024px) {
  h1.logo {
    margin-left: 0;
  }
}

h1.logo img {
  display: block;
  width: 90px;
}

@media print, screen and (min-width: 1024px) {
  h1.logo img {
    width: 110px;
  }
}

.login_select {
  background: none;
  border: none;
}

.login_select:hover {
  cursor: pointer;
}

/* SPメニュートリガー
----------------------------------------*/
.menu-trigger {
  display: inline-block;
  width: 45px;
  height: 56px;
  vertical-align: middle;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  text-align: center;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@media print, screen and (min-width: 1024px) {
  .menu-trigger {
    display: none;
  }
}

.menu-trigger span {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  left: 10px;
  width: 25px;
  height: 2px;
  background-color: #2C2D2E;
  border-radius: 1px;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.menu-trigger span:nth-of-type(1) {
  top: 18px;
}

.menu-trigger span:nth-of-type(2) {
  top: 27px;
}

.menu-trigger span:nth-of-type(3) {
  top: 36px;
  width: 14px;
}

.menu-trigger.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  position: fixed;
  width: 45px;
  height: 59px;
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
          transform: translateY(8px) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  width: 25px;
  -webkit-transform: translateY(-10px) rotate(45deg);
          transform: translateY(-10px) rotate(45deg);
}

/* メニュー
----------------------------------------*/
nav.side_nav {
  position: fixed;
  top: 56px;
  left: 0;
  width: 180px;
  height: calc(100vh - 56px);
  background-color: #2C2D2E;
  padding-top: 40px;
  -webkit-transform: translate(-100%);
          transform: translate(-100%);
  -webkit-transition: all .5s;
  transition: all .5s;
  overflow: scroll;
  z-index: 12;
}

@media print, screen and (min-width: 1024px) {
  nav.side_nav {
    height: calc(100vh - 70px);
    top: unset;
    left: 0;
    bottom: 0;
    z-index: unset;
    -webkit-transform: unset;
            transform: unset;
    -webkit-transition: unset;
    transition: unset;
    overflow: unset;
  }
}

@media print, screen and (min-width: 1200px) {
  nav.side_nav {
    width: 210px;
  }
}

nav.side_nav li.current {
  background-color: #474747;
}

nav.side_nav a, nav.side_nav a:link, nav.side_nav a:visited, nav.side_nav a:hover {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  padding: 1.5em;
}

nav.open {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

/* オーバーレイ
----------------------------------------*/
.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 56px;
  left: 0;
  z-index: 11;
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}

/* ************************************************ 
 *	コンテンツ
 * ************************************************ */
#content {
  padding: 76px 20px 50px;
}

@media print, screen and (min-width: 768px) {
  #content {
    padding: 86px 40px 50px;
  }
}

@media print, screen and (min-width: 1024px) {
  #content {
    padding: 110px 70px 50px;
  }
}

h2.content_ttl {
  font-size: 18px;
  margin-bottom: 20px;
}

@media print, screen and (min-width: 768px) {
  h2.content_ttl {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
/*# sourceMappingURL=style.css.map */