@charset "UTF-8";
/*
/* Mixin
/*
----------------------------------------------------------------- */
/*
/* Reset
/*
----------------------------------------------------------------- */
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);
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, icenter, 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: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

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

img {
  line-height: 0;
  vertical-align: bottom;
}

/*
/* Base
/*
----------------------------------------------------------------- */
html {
  font-size: 62.5%;
  background: #fff;
}

body {
  font-family: 'Noto Sans Japanese', Verdana, Meiryo, "M+ 1p", sans-serif;
  color: #000;
  font-size: 1.4rem;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
  }
}

a:link {
  color: #222222;
}

a:visited {
  color: #222222;
}

a:hover {
  color: #f16730;
}

@font-face {
  font-family: "icon";
  src: url("../font/icon.eot");
  src: url("../font/icon.eot?#iefix") format("eot"), url("../font/icon.woff") format("woff"), url("../font/icon.ttf") format("truetype"), url("../font/icon.svg#icon") format("svg");
  font-weight: normal;
  font-style: normal;
}

.icon {
  display: inline-block;
  font-family: "icon";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-lg {
  font-size: 1.3333333333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.icon-2x {
  font-size: 2em;
}

.icon-3x {
  font-size: 3em;
}

.icon-4x {
  font-size: 4em;
}

.icon-5x {
  font-size: 5em;
}

.icon-fw {
  width: 1.2857142857142858em;
  text-align: center;
}

.icon-search:before {
  content: "\EA01";
}

.icon-secure:before {
  content: "\EA02";
}

.icon-triangle-right:before {
  content: "\EA03";
}

.icon-user:before {
  content: "\EA04";
}

/*
/* Footer
/*
----------------------------------------------------------------- */
.site-footer {
  margin: 70px 0 0;
  background: #eeeeee;
}

@media screen and (max-width: 768px) {
  .site-footer {
    margin: 40px 0 0 0;
  }
}

.site-footer__footer {
  padding: 0 0 40px;
}

@media screen and (max-width: 768px) {
  .site-footer__footer {
    background: #fff;
    padding: 15px 0 15px;
  }
}

.site-footer__banner {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .site-footer__banner {
    padding: 40px 0 20px;
  }
}

.site-footer__banner__item {
  margin: 0 0 10px 0;
}

@media screen and (max-width: 768px) {
  .site-footer__banner__item {
    width: 48.5%;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .site-footer__banner__item:first-child {
    width: auto;
  }
}

.site-footer__banner__item:first-child a {
  background: #fff;
}

.site-footer__banner__item:nth-child(2), .site-footer__banner__item:nth-child(3) {
  width: 49.1%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .site-footer__banner__item:nth-child(2), .site-footer__banner__item:nth-child(3) {
    width: 48.5%;
  }
}

.site-footer__banner__item a {
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  display: block;
  background: #fff;
}

.site-footer__banner__item a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  .site-footer__banner__item a {
    min-height: 37px;
    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;
  }
}

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

@media screen and (max-width: 768px) {
  .site-footer__logo {
    width: 210px;
    margin: 0 auto;
  }
}

.copyright {
  margin: 20px 0 0 0;
  text-align: center;
  color: #aaaaaa;
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .copyright {
    margin: 10px 0 0 0;
    font-size: 1rem;
  }
}

/*
/* Header
/*
----------------------------------------------------------------- */
.site-header {
  position: relative;
  padding: 30px 0 0;
}

@media screen and (max-width: 768px) {
  .site-header {
    padding: 20px 0 0 0;
  }
}

.site-header__inner {
  overflow: hidden;
}

.site-header__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  .site-header__link {
    display: none;
  }
}

.site-header__link__item {
  padding: 0 15px;
  border-right: 1px #dddddd solid;
}

.site-header__link__item:last-child {
  padding-right: 0;
  border-right: none;
}

.site-header__link__item a {
  text-decoration: none;
  font-size: 1.2rem;
}

@media screen and (max-width: 992px) {
  .site-header__link__item a {
    font-size: 1rem;
  }
}

.site-header__link__item a:hover {
  text-decoration: underline;
}

.site-header__member {
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 15px 0 20px 0;
}

@media screen and (max-width: 768px) {
  .site-header__member {
    display: none;
  }
}

.site-header__member__item, .site-header__member__item--logout {
  margin: 0 0 0 10px;
}

.site-header__member__item a, .site-header__member__item--logout a {
  display: inline-block;
  padding: 5px 20px;
  background: #f16730;
  border-radius: 3px;
  color: #fff;
  text-decoration: none;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.site-header__member__item a:hover, .site-header__member__item--logout a:hover {
  opacity: 0.8;
}

.site-header__member__item--logout a {
  background: #999999;
}

.logo {
  float: left;
  margin: 0 0 30px 0;
}

@media screen and (max-width: 1100px) {
  .logo {
    width: 45%;
  }
}

@media screen and (max-width: 992px) {
  .logo {
    width: 40%;
  }
}

@media screen and (max-width: 768px) {
  .logo {
    width: 235px;
    margin: 0 0 20px 0;
  }
}

@media screen and (max-width: 1100px) {
  .logo img {
    max-width: 100%;
    height: auto;
  }
}

.site-nav {
  background: -webkit-gradient(linear, left top, right top, from(#f16930), to(#f1ab30));
  background: linear-gradient(to right, #f16930, #f1ab30);
}

.site-nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.727%;
}

@media screen and (max-width: 768px) {
  .site-nav__inner {
    display: block;
    overflow: scroll;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 0;
    padding: 100px 0 100px;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.9);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    -moz-overflow-scrolling: touch;
    -webkit-transition: opacity 1s ease, visibility 1s ease, height 0.1s linear 1s;
    transition: opacity 1s ease, visibility 1s ease, height 0.1s linear 1s;
  }
}

.site-nav__item {
  position: relative;
  width: 12.5%;
}

@media screen and (max-width: 768px) {
  .site-nav__item {
    width: 100%;
  }
}

.site-nav__item:first-child a {
  border-left: 1px rgba(255, 255, 255, 0.3) solid;
}

@media screen and (max-width: 768px) {
  .site-nav__item:first-child a {
    border-left: none;
  }
}

.site-nav__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;
  text-align: center;
  height: 100%;
  padding: 16px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  line-height: 1.4;
  border-right: 1px #f5c06f solid;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.site-nav__item a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  .site-nav__item a {
    border-right: none;
    padding: 15px 20px;
    border-top: 1px rgba(255, 255, 255, 0.2) solid;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.site-nav__item a:hover + .site-nav__child {
  opacity: 1;
  visibility: visible;
}

.site-nav__child {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 1;
  background: #fff;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  border-right: 3px #eee solid;
  border-bottom: 3px #eee solid;
  border-left: 3px #eee solid;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

@media screen and (max-width: 768px) {
  .site-nav__child {
    position: static;
    opacity: 1;
    visibility: visible;
    padding: 0;
    background: none;
    border: none;
  }
}

.site-nav__child:hover {
  opacity: 1;
  visibility: visible;
}

.site-nav__child__item a {
  position: relative;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-bottom: 1px #ccc solid;
  border-right: none;
  color: #333;
  font-weight: normal;
  padding: 20px 40px 20px 20px;
  text-align: left;
  white-space: nowrap;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

@media screen and (max-width: 768px) {
  .site-nav__child__item a {
    font-size: 1.2rem;
    color: #fff;
    padding: 10px 20px;
    border-top: 1px rgba(255, 255, 255, 0.2) solid;
    border-bottom: none;
  }
}

.site-nav__child__item a:hover {
  color: #f16730;
  opacity: 1;
}

.site-nav__child__item a::after {
  font-family: 'icon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-indent: 0;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  font-size: 1rem;
  color: #f16730;
  -webkit-transform: scale(0.7) translateY(-50%);
          transform: scale(0.7) translateY(-50%);
}

@media screen and (max-width: 768px) {
  .site-nav__child__item a::after {
    color: #999;
  }
}

.site-nav__child__item:last-child a {
  border-bottom: none;
}

@media screen and (min-width: 769px) {
  .site-nav__subitem {
    display: none;
  }
}

.site-nav__subitem a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.2rem;
  border-top: 1px rgba(255, 255, 255, 0.2) solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.site-nav__btn {
  position: fixed;
  top: 0;
  right: 0;
  width: 70px;
  height: 62px;
  z-index: 101;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  -webkit-appearance: none;
}

@media screen and (min-width: 769px) {
  .site-nav__btn {
    display: none;
  }
}

.site-nav__btn:before, .site-nav__btn:after {
  position: relative;
  top: 0;
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.2s ease 0.2s;
  transition: top 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.2s ease 0.2s;
  transition: transform 0.3s ease, top 0.3s ease, box-shadow 0.2s ease 0.2s;
  transition: transform 0.3s ease, top 0.3s ease, box-shadow 0.2s ease 0.2s, -webkit-transform 0.3s ease, -webkit-box-shadow 0.2s ease 0.2s;
}

.site-nav__btn:before {
  content: '';
  display: block;
  margin: 0 auto 0;
  width: 27px;
  height: 2px;
  -webkit-box-shadow: 0 8px 0 0 #2183cc;
          box-shadow: 0 8px 0 0 #2183cc;
  background: #2183cc;
}

.site-nav__btn:after {
  content: '';
  display: block;
  margin: 14px auto 0 auto;
  width: 27px;
  height: 2px;
  background: #2183cc;
}

.site-nav__btn:focus {
  outline: none;
}

.site-nav--active .site-nav__btn:before, .site-nav--active .site-nav__btn:after {
  -webkit-transition: top 0.3s ease 0.2s, -webkit-transform 0.3s ease 0.2s, -webkit-box-shadow 0.2s ease;
  transition: top 0.3s ease 0.2s, -webkit-transform 0.3s ease 0.2s, -webkit-box-shadow 0.2s ease;
  transition: transform 0.3s ease 0.2s, top 0.3s ease 0.2s, box-shadow 0.2s ease;
  transition: transform 0.3s ease 0.2s, top 0.3s ease 0.2s, box-shadow 0.2s ease, -webkit-transform 0.3s ease 0.2s, -webkit-box-shadow 0.2s ease;
}

.site-nav--active .site-nav__btn:before {
  top: 8px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-box-shadow: 10px 8px 0 0 transparent;
          box-shadow: 10px 8px 0 0 transparent;
}

.site-nav--active .site-nav__btn:after {
  top: -8px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

@media screen and (max-width: 768px) {
  .site-nav--active .site-nav__inner {
    opacity: 1;
    visibility: visible;
    height: 100vh;
    -webkit-transition: opacity 1s ease, visibility 1s ease;
    transition: opacity 1s ease, visibility 1s ease;
  }
}

/*
/* Main
/*
----------------------------------------------------------------- */
main {
  position: relative;
  display: block;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.727%;
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.container--one {
  padding: 40px 2.727% 60px;
}

@media screen and (max-width: 768px) {
  .container--one {
    padding: 20px 20px 30px;
  }
}

.container--two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 2.727% 60px;
}

@media screen and (max-width: 768px) {
  .container--two {
    padding: 20px 20px 30px;
    display: block;
  }
}

.container--two .main {
  width: 76%;
}

@media screen and (max-width: 768px) {
  .container--two .main {
    width: auto;
  }
}

.container--two .sidebar {
  width: 20%;
  margin: 0 0 0 4%;
}

@media screen and (max-width: 768px) {
  .container--two .sidebar {
    width: auto;
    margin: 20px 0 0 0;
  }
}

@media screen and (max-width: 768px) {
  .container--reverse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.container--reverse .sidebar {
  width: 20%;
  margin: 0 4% 0 0;
}

@media screen and (max-width: 768px) {
  .container--reverse .sidebar {
    width: auto;
    margin: 20px 0 0 0;
  }
}

.inner, .site-footer__inner, .site-header__inner, .breadcrumbs {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.727%;
}

@media screen and (max-width: 768px) {
  .inner, .site-footer__inner, .site-header__inner, .breadcrumbs {
    padding: 0 20px;
  }
}

/*
/* Sidebar
/*
----------------------------------------------------------------- */
.sidebar__archive li {
  background: #eeeeee;
  padding: 0 15px;
}

.sidebar__archive li:last-child a {
  border-bottom: none;
}

.sidebar__archive li a {
  position: relative;
  display: block;
  padding: 15px 0 15px 25px;
  text-decoration: none;
  border-bottom: 1px #333 dotted;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.sidebar__archive li a::before {
  font-family: 'icon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-indent: 0;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  font-size: 1rem;
  color: #f16730;
  -webkit-transform: scale(0.6) translateY(-50%);
          transform: scale(0.6) translateY(-50%);
}

.sc, .sc--init {
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 1s ease;
  transition: transform 1s ease, opacity 1s ease, -webkit-transform 1s ease;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
}

.sc--init {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.box-primary, .box-sidebar {
  border: 4px #eee solid;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.box-primary__header, .box-sidebar__header {
  background: -webkit-gradient(linear, left top, right top, from(#f16930), to(#f1ab30));
  background: linear-gradient(to right, #f16930, #f1ab30);
  margin: -4px -4px 0;
  padding: 15px;
  border-radius: 3px 3px 0 0/ 3px 3px 0 0;
}

.box-primary__title, .box-sidebar__title {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
}

.box-primary__body {
  padding: 15px;
}

.box-secondly__header {
  padding: 0 0 5px;
  line-height: 1.6;
  font-weight: bold;
  border-bottom: 3px #eee solid;
}

.box-secondly__body {
  padding: 15px 0;
}

.branch-menu {
  border: 4px #eee solid;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.branch-menu__list__child {
  border-bottom: 1px #eee solid;
}

.branch-menu__list__child li > a {
  text-decoration: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 15px 5px 30px;
  text-decoration: none;
  font-size: 1.3rem;
}

.branch-menu__item:nth-child(4) a::after, .branch-menu__item:nth-child(4) a::before {
  content: none;
}

.branch-menu__item > span,
.branch-menu__item > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 15px;
  text-decoration: none;
  border-bottom: 1px #eee solid;
}

.branch-menu__item > span::before, .branch-menu__item > span::after,
.branch-menu__item > a::before,
.branch-menu__item > a::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  display: block;
  width: 10px;
  height: 2px;
  background: #f16730;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.branch-menu__item > span::before,
.branch-menu__item > a::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.branch-menu__item > span.current::after, .branch-menu__item > span.current::before,
.branch-menu__item > a.current::after,
.branch-menu__item > a.current::before {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

/*
/* Breadcrumbs
/*
----------------------------------------------------------------- */
.breadcrumbs__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px 0 0;
}

.breadcrumbs__item {
  position: relative;
  margin: 0 15px 5px 0;
  padding: 0 15px 0 0;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .breadcrumbs__item {
    font-size: 1.2rem;
  }
}

.breadcrumbs__item:last-child::after {
  content: none;
}

.breadcrumbs__item::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-top: 1px #111 solid;
  border-right: 1px #111 solid;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.comingsoon {
  text-align: center;
  max-width: 768px;
  margin: 80px auto 120px;
  padding: 40px 0;
  border-top: 2px #eee solid;
  border-bottom: 2px #eee solid;
}

.comingsoon__title {
  font-size: 2.4rem;
  font-weight: bold;
}

.comingsoon__caption {
  margin: 20px 0 0 0;
  font-size: 1.4rem;
}

.notfound {
  max-width: 768px;
  margin: 60px auto 0;
}

@media screen and (max-width: 768px) {
  .notfound {
    margin: 30px auto 0;
  }
}

.notfound__desc {
  margin: 1em 0;
  line-height: 1.6;
}

.notfound #searchform {
  margin: 40px 0 20px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.entry-list {
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px #eeeeee solid;
  border-radius: 3px;
}

.entry-list__header {
  position: relative;
  padding: 15px;
  margin: -4px -4px 0;
  background: -webkit-gradient(linear, left top, right top, from(#f16930), to(#f1ab30));
  background: linear-gradient(to right, #f16930, #f1ab30);
  border-radius: 3px 3px 0 0 / 3px 3px 0 0;
}

@media screen and (max-width: 768px) {
  .entry-list__header {
    padding: 10px 20px;
  }
}

.entry-list__title {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .entry-list__title {
    font-size: 1.4rem;
  }
}

.entry-list__more {
  position: absolute;
  right: 20px;
  top: 15px;
}

@media screen and (max-width: 768px) {
  .entry-list__more {
    top: 8px;
  }
}

.entry-list__more a {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.entry-list__more a:hover {
  opacity: 0.8;
}

.entry-list__more a::before {
  position: absolute;
  left: -12px;
  top: 50%;
  font-family: 'icon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-indent: 0;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  font-size: 1rem;
  margin: 0 5px 0 0;
  -webkit-transform: scale(0.7) translateY(-50%);
          transform: scale(0.7) translateY(-50%);
}

.entry-list__body {
  padding: 5px 15px;
}

.entry-list__item:last-child a {
  border-bottom: none;
}

.entry-list__item a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px #222 dotted;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .entry-list__item a {
    padding: 10px 0;
  }
}

.entry-list__item__date {
  display: inline-block;
  font-weight: bold;
  line-height: 1.6;
  text-decoration: none;
}

@media screen and (max-width: 992px) {
  .entry-list__item__date {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .entry-list__item__date {
    display: inline-block;
  }
}

.entry-list__item__no {
  position: relative;
  top: -1px;
  display: inline-block;
  color: #111;
  line-height: 1.6;
  margin: 0 0 3px 10px;
  padding: 0 6px;
  font-size: 1.1rem;
  border-radius: 3px;
  border: 1px #111 solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 992px) {
  .entry-list__item__no {
    margin: 5px 0 0 0;
  }
}

@media screen and (max-width: 768px) {
  .entry-list__item__no {
    margin: 0 0 3px 10px;
  }
}

.entry-list__item__new {
  position: relative;
  top: -1px;
  display: inline-block;
  background: #f16730;
  color: #fff;
  line-height: 1.6;
  margin: 0 0 3px 10px;
  padding: 0 6px;
  font-size: 1.2rem;
  border-radius: 3px;
}

.entry-list__item__title {
  line-height: 1.6;
}

.entry-list__item__password {
  position: absolute;
  left: 0;
  bottom: 20px;
  padding: 0 10px;
  background: #eee;
}

.entry-list__item--publication {
  position: relative;
}

.entry-list__item--publication a {
  padding-bottom: 50px;
}

.entry:first-child .entry__archive__permalink {
  padding-top: 5px;
}

.entry__title {
  font-size: 2.4rem;
}

.entry__title__date {
  font-size: 1.4rem;
  margin: 0 0 0 10px;
}

.entry__lastupdate {
  margin: 10px 0 0 0;
}

.entry__eyecatch {
  margin: 40px 0 0 0;
}

@media screen and (max-width: 768px) {
  .entry__eyecatch {
    margin: 20px 0 0 0;
  }
}

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

.entry__content {
  margin: 40px 0 0 0;
}

@media screen and (max-width: 768px) {
  .entry__content {
    margin: 20px 0 0 0;
  }
}

.entry__content p {
  margin: 1em 0;
  line-height: 1.6;
}

.entry__content em {
  font-style: italic;
}

.entry__content strong {
  font-weight: bold;
}

.entry__content ul {
  list-style: disc;
  margin: 20px 0 20px 20px;
}

.entry__content ol {
  list-style: decimal;
  margin: 20px 0 20px 20px;
}

.entry__content hr {
  margin: 40px 0;
}

.entry__content h1 {
  margin: 40px 0 20px;
  padding: 0 0 5px 0;
  font-size: 1.8rem;
  border-bottom: 2px #f16730 solid;
}

.entry__content h2 {
  position: relative;
  margin: 40px 0 20px;
  padding: 0 0 0 16px;
  font-size: 1.8rem;
}

.entry__content h2::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: -webkit-gradient(linear, left bottom, left top, from(#f16930), to(#f1ab30));
  background: linear-gradient(to top, #f16930, #f1ab30);
  width: 5px;
  height: 90%;
}

.entry__content h3 {
  margin: 30px 0 15px;
  padding: 0 0 5px 0;
  font-size: 1.8rem;
  border-bottom: 2px #eee solid;
}

.entry__content h4 {
  margin: 30px 0 15px;
  font-size: 1.6rem;
  font-weight: bold;
}

.entry__content h5 {
  margin: 30px 0 15px;
  font-size: 1.4rem;
  font-weight: bold;
}

.entry__content h5 {
  margin: 30px 0 15px;
  font-size: 1.4rem;
}

.entry__table {
  margin: 40px 0;
}

@media screen and (max-width: 768px) {
  .entry__table {
    margin: 20px 0;
    padding: 0 0 20px 0;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    -moz-overflow-scrolling: touch;
    overflow-scrolling: touch;
  }
}

.entry__table table {
  width: 100%;
  border-left: 1px #ddd solid;
  border-top: 1px #ddd solid;
}

.entry__table table th,
.entry__table table td {
  padding: 20px;
  border-right: 1px #ddd solid;
  border-bottom: 1px #ddd solid;
}

@media screen and (max-width: 768px) {
  .entry__table table th,
  .entry__table table td {
    padding: 10px;
    white-space: nowrap;
  }
}

.entry__table table th {
  background: #eee;
  font-weight: bold;
}

.entry__pdf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 40px 0;
  padding: 20px 0;
  border-top: 1px #eee solid;
  border-bottom: 1px #eee solid;
}

.entry__pdf__content {
  margin: 0 20px;
}

.entry__pdf__content:first-child {
  margin-left: 0;
}

.entry__pdf__content a {
  text-decoration: none;
}

.entry__pdf__name {
  margin: 5px 0 0 0;
  text-align: center;
}

.entry__pdf__icon {
  text-align: center;
}

.entry__photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px 0;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .entry__photo {
    margin: 0;
  }
}

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

.entry__photo__item {
  margin: 10px 2%;
  max-width: 46%;
  max-height: 320px;
}

.entry__photo__caption {
  margin: 10px 0 0 0;
  text-align: center;
  font-size: 1.2rem;
}

.entry__btn {
  margin: 80px 0 0;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .entry__btn {
    margin: 40px 0 80px;
  }
}

.entry__btn a {
  display: block;
  max-width: 320px;
  margin: 0 auto;
  padding: 15px;
  background: #f16730;
  text-decoration: none;
  color: #fff;
  border: 2px #f16730 solid;
  border-radius: 3px;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.entry__btn a:hover {
  background: #fff;
  color: #f16730;
}

.entry__archive__permalink {
  display: block;
  padding: 15px 0;
  text-decoration: none;
  border-bottom: 1px #222 dotted;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.entry__archive__date {
  display: inline-block;
  font-weight: bold;
  margin: 0 0 5px 0;
  line-height: 1.6;
}

.entry__archive__title {
  line-height: 1.6;
}

.entry__archive__category {
  display: inline-block;
  border: 1px #ccc solid;
  font-size: 1.2rem;
  padding: 0 10px;
  margin-left: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.entry__important {
  display: inline-block;
  background: #f16730;
  color: #fff;
  font-size: 1.2rem;
  padding: 0 10px;
  margin-left: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.entry__tag__wrapper {
  margin-bottom: 10px;
}

.entry__tag__wrapper .entry__archive__category:first-child,
.entry__tag__wrapper .entry__important:first-child {
  margin-left: 0;
}

.entry__file__icon {
  text-align: center;
}

.entry__file__name {
  margin-top: 5px;
  text-align: center;
}

.entry__file__link {
  text-decoration: none;
}

.login__error {
  color: #fff;
  margin: 0 0 20px 0;
  border: 2px #fff solid;
  padding: 10px;
}

.login__info {
  color: #fff;
  margin: 0 0 20px 0;
  border: 2px #fff solid;
  padding: 10px;
}

.button_div {
  width: auto;
  padding: 0;
  margin: 40px 0 20px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .button_div {
    margin: 30px 0 20px;
  }
}

.button_div input {
  -moz-appearance: none;
  -webkit-appearance: none;
  min-width: 240px;
  padding: 10px;
  background: #f16730;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  border: 2px #f16730 solid;
  border-radius: 3px;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.button_div input:hover {
  cursor: pointer;
  background: #fff;
  color: #f16730;
}

.wpmem_msg {
  border: 2px #ccc solid;
  margin: 20px 0;
  padding: 15px;
  width: auto;
  background: #eee;
  border-radius: 0;
}

.req {
  color: red;
}

.error {
  display: none;
  margin-top: 5px;
  color: red;
  font-size: 1.2rem;
}

.div_select,
.div_text {
  margin: 0 0 20px 0;
}

.textbox,
.password {
  width: 100%;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px #ccc solid;
  border-radius: 3px;
}

label.text,
label.select {
  display: block;
  margin: 0 0 10px 0;
}

#wpmem_reg legend,
#wpmem_login legend {
  display: none;
}

#wpmem_reg fieldset,
#wpmem_login fieldset {
  margin: 20px 0 0 0;
}

#wpmem_reg .noinput,
#wpmem_login .noinput {
  padding: 10px;
  border-radius: 3px;
  background: #eee;
  border: 1px #ccc solid;
  color: #666;
}

#wpmem_reg .req-text,
#wpmem_login .req-text {
  display: none;
}

#wpmem_reg .wpmem_reg__item,
#wpmem_login .wpmem_reg__item {
  display: inline-block;
}

#wpmem_reg .wpmem_reg__item--year,
#wpmem_login .wpmem_reg__item--year {
  margin: 0 20px 20px 0;
}

#wpmem_reg .wpmem_reg__item--year::after,
#wpmem_login .wpmem_reg__item--year::after {
  content: '年';
  margin: 0 0 0 10px;
}

#wpmem_reg .wpmem_reg__item--month,
#wpmem_login .wpmem_reg__item--month {
  margin: 0 20px 0 0;
}

#wpmem_reg .wpmem_reg__item--month::after,
#wpmem_login .wpmem_reg__item--month::after {
  content: '月';
  margin: 0 0 0 10px;
}

#wpmem_reg .wpmem_reg__item--day,
#wpmem_login .wpmem_reg__item--day {
  margin: 0 20px 0 0;
}

#wpmem_reg .wpmem_reg__item--day::after,
#wpmem_login .wpmem_reg__item--day::after {
  content: '日';
  margin: 0 0 0 10px;
}

#wpmem_reg .wpmem_reg__item--first_name,
#wpmem_login .wpmem_reg__item--first_name {
  width: 50%;
}

#wpmem_reg .wpmem_reg__item--first_name input,
#wpmem_login .wpmem_reg__item--first_name input {
  width: 90%;
}

@media screen and (max-width: 768px) {
  #wpmem_reg .wpmem_reg__item--first_name input,
  #wpmem_login .wpmem_reg__item--first_name input {
    width: 70%;
  }
}

#wpmem_reg .wpmem_reg__item--first_name::before,
#wpmem_login .wpmem_reg__item--first_name::before {
  content: '名';
  margin: 0 10px 0 10px;
}

#wpmem_reg .wpmem_reg__item--last_name,
#wpmem_login .wpmem_reg__item--last_name {
  width: 50%;
}

#wpmem_reg .wpmem_reg__item--last_name input,
#wpmem_login .wpmem_reg__item--last_name input {
  width: 90%;
}

@media screen and (max-width: 768px) {
  #wpmem_reg .wpmem_reg__item--last_name input,
  #wpmem_login .wpmem_reg__item--last_name input {
    width: 70%;
  }
}

#wpmem_reg .wpmem_reg__item--last_name::before,
#wpmem_login .wpmem_reg__item--last_name::before {
  content: '姓';
  margin: 0 10px 0 0;
}

/*
/* Layout
/*
----------------------------------------------------------------- */
.columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.columns--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.columns--one {
  display: block;
  max-width: 768px;
  margin: 0 auto;
}

.columns--two {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .columns--two {
    display: block;
    max-width: 480px;
    margin: 0 auto;
  }
}

.columns--two .columns__item {
  width: 49%;
}

@media screen and (max-width: 768px) {
  .columns--two .columns__item {
    width: auto;
    margin: 20px 0 20px 0;
  }
}

@media screen and (max-width: 768px) {
  .columns--three {
    display: block;
    max-width: 480px;
    margin: 0 auto;
  }
}

.columns--three .columns__item {
  width: 31%;
}

@media screen and (max-width: 768px) {
  .columns--three .columns__item {
    width: auto;
    margin: 20px 0 20px 0;
  }
}

.columns--four {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.columns--four .columns__item {
  width: 25%;
}

@media screen and (max-width: 992px) {
  .columns--four .columns__item {
    width: 33.333%;
  }
}

@media screen and (max-width: 768px) {
  .columns--four .columns__item {
    width: 50%;
  }
}

.columns--six {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.columns--six .columns__item {
  width: 18%;
}

@media screen and (max-width: 992px) {
  .columns--six .columns__item {
    width: 18%;
  }
}

@media screen and (max-width: 768px) {
  .columns--six .columns__item {
    width: 50%;
  }
}

.page-header__title {
  position: relative;
  margin: 2em 0 1em;
  padding: 0 0 0.5em 0;
  font-size: 3.2rem;
  text-align: center;
  font-weight: bold;
}

@media screen and (max-width: 992px) {
  .page-header__title {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 768px) {
  .page-header__title {
    font-size: 2.4rem;
  }
}

.page-header__title::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 2px;
  width: 45px;
  background: #f16730;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.wp-pagenavi {
  padding: 20px 0;
  text-align: center;
}

.wp-pagenavi .current,
.wp-pagenavi .page {
  display: inline-block;
  margin: 5px;
  padding: 5px 10px;
  border: 1px #ccc solid;
  text-decoration: none;
}

.wp-pagenavi .current {
  background: #eee;
  font-weight: bold;
}

.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  position: relative;
  display: inline-block;
  padding: 5px 10px;
  text-decoration: none;
}

.wp-pagenavi .nextpostslink:hover::after,
.wp-pagenavi .previouspostslink:hover::after {
  color: #f16730;
}

.wp-pagenavi .previouspostslink {
  text-indent: -5000px;
}

.wp-pagenavi .previouspostslink::after {
  font-family: 'icon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-indent: 0;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  -webkit-transform: scale(0.7) translateY(-50%) rotate(180deg);
          transform: scale(0.7) translateY(-50%) rotate(180deg);
  color: #666;
}

.wp-pagenavi .nextpostslink {
  text-indent: -5000px;
}

.wp-pagenavi .nextpostslink::after {
  font-family: 'icon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-indent: 0;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: scale(0.7) translateY(-50%);
          transform: scale(0.7) translateY(-50%);
  color: #666;
}

/*
/* Tab
/*
----------------------------------------------------------------- */
.account-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 3px #eee solid;
  border-radius: 3px;
  margin: 40px 0;
}

.account-tab__item, .account-tab__item--current {
  width: 50%;
  border-right: 1px #eee solid;
}

.account-tab__item:last-child, .account-tab__item--current:last-child {
  border-right: none;
}

.account-tab__item a, .account-tab__item--current a {
  display: block;
  padding: 10px;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  text-decoration: none;
}

.account-tab__item--current a {
  background: #eee;
}

.widget {
  padding: 30px 0;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .widget {
    margin: 0;
    padding: 10px 0;
  }
}

.widget--branch {
  position: absolute;
  right: 0;
  top: -120px;
}

@media screen and (max-width: 768px) {
  .widget--branch {
    position: static;
  }
}

.widget__search form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.widget__search__title {
  margin: 0 5px 0 0;
}

@media screen and (max-width: 768px) {
  .widget__search__title {
    display: none;
  }
}

.widget__search__input {
  width: 220px;
  padding: 10px;
  border-radius: 3px 0 0 3px / 3px 0 0 3px;
  border: 1px #d1d1d1 solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .widget__search__input {
    width: 100%;
  }
}

.widget__search__btn {
  padding: 8px 15px 7px;
  background: #f16730;
  border: none;
  color: #fff;
  border-radius: 0 3px 3px 0 / 0 3px 3px 0;
}

.widget__search__btn::after {
  font-family: 'icon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-indent: 0;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  font-size: 1.8rem;
}

.widget__search__btn:hover {
  cursor: pointer;
}

/*
/* Account/edit
/*
----------------------------------------------------------------- */
body.page-id-102 #wpmem_login label {
  display: inline-block;
  margin: 0 0 10px 0;
}

/*
/* Top
/*
----------------------------------------------------------------- */
body.post-type-archive-activity .activity__content,
body.single-activity .activity__content {
  margin: 40px 0;
}

@media screen and (max-width: 768px) {
  body.post-type-archive-activity .activity__content,
  body.single-activity .activity__content {
    margin: 20px 0;
  }
}

body.post-type-archive-activity .activity__content__item p,
body.single-activity .activity__content__item p {
  margin: 1em 0;
  line-height: 1.6;
}

body.post-type-archive-activity .activity__content__item p:first-child,
body.single-activity .activity__content__item p:first-child {
  margin-top: 0;
}

body.post-type-archive-activity .activity__content__item p:last-child,
body.single-activity .activity__content__item p:last-child {
  margin-bottom: 0;
}

/*
/* Contact
/*
----------------------------------------------------------------- */
body.post-type-archive-branch_book .box-primary + .box-primary, body.post-type-archive-branch_book .box-sidebar + .box-primary, body.post-type-archive-branch_book .box-primary + .box-sidebar, body.post-type-archive-branch_book .box-sidebar + .box-sidebar,
body.tax-branch_book_cat .box-primary + .box-primary,
body.tax-branch_book_cat .box-sidebar + .box-primary,
body.tax-branch_book_cat .box-primary + .box-sidebar,
body.tax-branch_book_cat .box-sidebar + .box-sidebar,
body.single-branch_book .box-primary + .box-primary,
body.single-branch_book .box-sidebar + .box-primary,
body.single-branch_book .box-primary + .box-sidebar,
body.single-branch_book .box-sidebar + .box-sidebar {
  margin-top: 30px;
}

body.post-type-archive-branch_book .columns__item,
body.tax-branch_book_cat .columns__item,
body.single-branch_book .columns__item {
  margin: 20px 0;
}

body.single-branch_book .box-primary, body.single-branch_book .box-sidebar {
  margin-top: 30px;
}

/*
/* Branch
/*
----------------------------------------------------------------- */
.branch-top-columns .entry:last-child .entry__archive__permalink {
  border-bottom: none;
}

/*
/* Contact
/*
----------------------------------------------------------------- */
body.page-id-104 .contact__summary {
  max-width: 768px;
  margin: 0 auto 20px;
}

body.page-id-104 .contact-form {
  max-width: 768px;
  margin: 0 auto;
}

body.page-id-104 .contact-form__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px 0;
}

@media screen and (max-width: 768px) {
  body.page-id-104 .contact-form__content {
    display: block;
  }
}

body.page-id-104 .contact-form__content__header {
  width: 30%;
}

@media screen and (max-width: 768px) {
  body.page-id-104 .contact-form__content__header {
    width: auto;
    margin: 0 0 10px 0;
  }
}

body.page-id-104 .contact-form__content__body {
  width: 70%;
}

@media screen and (max-width: 768px) {
  body.page-id-104 .contact-form__content__body {
    width: auto;
  }
}

body.page-id-104 .contact-form__content__require {
  color: red;
}

body.page-id-104 .contact-form__btn {
  text-align: center;
  margin: 40px 0;
  padding: 0 0 0 30%;
}

@media screen and (max-width: 768px) {
  body.page-id-104 .contact-form__btn {
    padding: 0;
  }
}

body.page-id-104 .contact-form__btn input {
  -moz-appearance: none;
  -webkit-appearance: none;
  min-width: 240px;
  margin: 0 10px;
  padding: 15px;
  background: #f16730;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  border: 2px #f16730 solid;
  border-radius: 3px;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

@media screen and (max-width: 768px) {
  body.page-id-104 .contact-form__btn input {
    display: block;
    width: 100%;
    margin: 20px 0;
    padding: 10px;
    font-size: 1.4rem;
  }
}

body.page-id-104 .contact-form__btn input:hover {
  cursor: pointer;
  background: #fff;
  color: #f16730;
}

body.page-id-104 .contact-form__btn input.revise {
  background: #99999A;
  border: 2px #99999A solid;
}

body.page-id-104 .contact-form__btn input.revise:hover {
  background: #aaa;
  color: #fff;
}

body.page-id-104 input[type="text"],
body.page-id-104 input[type="email"],
body.page-id-104 textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 10px;
  border: 1px #d1d1d1 solid;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.4rem;
}

body.page-id-104 .wpcf7-response-output {
  padding: 20px;
  max-width: 768px;
  margin: 40px auto 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body.page-id-104 .wpcf7c-conf {
  background-color: #eee;
  border: 1px solid #ccc;
}

/*
/* Contract
/*
----------------------------------------------------------------- */
body.page-id-92 .contract-pdf {
  margin: 10px 15px;
}

body.page-id-92 .contract-pdf a {
  text-decoration: none;
}

body.page-id-92 .contract-pdf__icon {
  text-align: center;
}

body.page-id-92 .contract-pdf__name {
  margin: 5px 0 0 0;
  text-align: center;
}

@media screen and (max-width: 768px) {
  body.page-id-92 .columns--two {
    display: block;
  }
}

body.page-id-92 .box-primary, body.page-id-92 .box-sidebar {
  margin: 40px 0 0 0;
}

body.page-id-92 .box-secondly {
  width: 100%;
  margin: 40px 0 0;
}

body.page-id-92 .box-secondly__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  body.page-id-92 .box-secondly__body {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/*
/* member-password-lost
/*
----------------------------------------------------------------- */
body.page-id-242 .lost-form {
  max-width: 768px;
  margin: 0 auto;
}

body.page-id-242 .lost-form__summary {
  margin: 10px 0 20px;
  line-height: 1.6;
}

body.page-id-242 .lost-form__error {
  margin: 20px 0;
  padding: 15px;
  border: 2px red solid;
}

body.page-id-242 .lost-form__input {
  margin: 20px 0 0 0;
}

body.page-id-242 .lost-form__input input {
  margin: 0 0 0 20px;
  padding: 10px;
  margin: 10px 0 0 0;
  border: 1px #ccc solid;
  border-radius: 3px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body.page-id-242 .lost-form__btn {
  margin: 40px 0 20px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  body.page-id-242 .lost-form__btn {
    margin: 30px 0 20px;
  }
}

body.page-id-242 .lost-form__btn input {
  -moz-appearance: none;
  -webkit-appearance: none;
  min-width: 240px;
  padding: 10px;
  background: #f16730;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  border: 2px #f16730 solid;
  border-radius: 3px;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body.page-id-242 .lost-form__btn input:hover {
  cursor: pointer;
  background: #fff;
  color: #f16730;
}

/*
/* member-password-lost
/*
----------------------------------------------------------------- */
body.page-id-243 .reset-form {
  max-width: 768px;
  margin: 0 auto;
}

body.page-id-243 .reset-form__summary {
  margin: 10px 0 20px;
  line-height: 1.6;
}

body.page-id-243 .reset-form__error {
  margin: 20px 0;
  padding: 15px;
  border: 2px red solid;
}

body.page-id-243 .reset-form__input {
  margin: 20px 0 0 0;
}

body.page-id-243 .reset-form__input input {
  margin: 0 0 0 20px;
  padding: 10px;
  margin: 10px 0 0 0;
  border: 1px #ccc solid;
  border-radius: 3px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body.page-id-243 .reset-form__hint {
  margin: 20px 0 0;
}

body.page-id-243 .reset-form__btn {
  margin: 40px 0 20px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  body.page-id-243 .reset-form__btn {
    margin: 30px 0 20px;
  }
}

body.page-id-243 .reset-form__btn input {
  -moz-appearance: none;
  -webkit-appearance: none;
  min-width: 240px;
  padding: 10px;
  background: #f16730;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  border: 2px #f16730 solid;
  border-radius: 3px;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body.page-id-243 .reset-form__btn input:hover {
  cursor: pointer;
  background: #fff;
  color: #f16730;
}

/*
/* Privacy
/*
----------------------------------------------------------------- */
body.page-id-75 .page-content h1 {
  font-size: 2.4rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  body.page-id-75 .page-content h1 {
    font-size: 1.8rem;
    margin: 2em 0 0;
  }
}

body.page-id-75 .page-content h2 {
  font-size: 1.8rem;
  margin: 2em 0 1em 0;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  body.page-id-75 .page-content h2 {
    font-size: 1.6rem;
  }
}

body.page-id-75 .page-content ol {
  list-style: decimal;
  margin: 1em 0;
  padding: 0 0 0 20px;
}

body.page-id-75 .page-content ol li {
  line-height: 1.6;
  margin: 5px 0;
}

body.page-id-75 .page-content p {
  line-height: 1.6;
}

/*
/* Publication
/*
----------------------------------------------------------------- */
body.post-type-archive-publication .box-primary, body.post-type-archive-publication .box-sidebar,
body.single-publication .box-primary,
body.single-publication .box-sidebar {
  margin: 0 0 30px;
}

@media screen and (max-width: 768px) {
  body.post-type-archive-publication .box-primary, body.post-type-archive-publication .box-sidebar,
  body.single-publication .box-primary,
  body.single-publication .box-sidebar {
    margin: 0 0 20px;
  }
}

body.post-type-archive-publication .publication-entry p,
body.single-publication .publication-entry p {
  margin-bottom: 1em;
}

body.post-type-archive-publication .publication__desc,
body.single-publication .publication__desc {
  text-align: right;
  margin: 0 0 10px 0;
}

body.post-type-archive-publication .publication__content,
body.single-publication .publication__content {
  position: relative;
  border-bottom: 1px #eee solid;
}

body.post-type-archive-publication .publication__content:hover .publication__content__pw,
body.single-publication .publication__content:hover .publication__content__pw {
  background: #eee;
}

body.post-type-archive-publication .publication__content:last-child,
body.single-publication .publication__content:last-child {
  border-bottom: none;
}

body.post-type-archive-publication .publication__content a,
body.single-publication .publication__content a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  padding: 30px 0;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

@media screen and (max-width: 768px) {
  body.post-type-archive-publication .publication__content a,
  body.single-publication .publication__content a {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 25px 0 0;
  }
}

body.post-type-archive-publication .publication__content__icon,
body.single-publication .publication__content__icon {
  text-align: center;
  margin: 0 0 0 20px;
}

@media screen and (max-width: 768px) {
  body.post-type-archive-publication .publication__content__icon,
  body.single-publication .publication__content__icon {
    width: 25%;
    margin: 0 5% 0 0;
    text-align: left;
  }
}

body.post-type-archive-publication .publication__content__number,
body.single-publication .publication__content__number {
  margin: 0 0 0 40px;
  padding: 0 10px;
  line-height: 1.6;
  font-size: 1.2rem;
  border: 1px #333 solid;
  color: #333;
  border-radius: 3px;
  white-space: nowrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  body.post-type-archive-publication .publication__content__number,
  body.single-publication .publication__content__number {
    margin: 18px 0 0;
    white-space: normal;
    width: 66%;
    border: none;
  }
}

@media screen and (max-width: 768px) {
  body.post-type-archive-publication .publication__content__body,
  body.single-publication .publication__content__body {
    width: 100%;
    margin: 15px 0 20px;
  }
}

body.post-type-archive-publication .publication__content__date,
body.single-publication .publication__content__date {
  margin: 0 0 0 40px;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  body.post-type-archive-publication .publication__content__date,
  body.single-publication .publication__content__date {
    margin: 0;
  }
}

body.post-type-archive-publication .publication__content__title,
body.single-publication .publication__content__title {
  margin: 0 0 0 40px;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  body.post-type-archive-publication .publication__content__title,
  body.single-publication .publication__content__title {
    margin: 0;
  }
}

body.post-type-archive-publication .publication__content__pw,
body.single-publication .publication__content__pw {
  position: absolute;
  top: 15px;
  right: 0;
  z-index: 1;
  border-radius: 3px;
  line-height: 1.6;
  white-space: nowrap;
  font-size: 1.2rem;
  color: #111;
  background: #fafafa;
  padding: 2px 10px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

@media screen and (max-width: 768px) {
  body.post-type-archive-publication .publication__content__pw,
  body.single-publication .publication__content__pw {
    position: static;
    margin: 0 0 20px;
    padding: 10px;
    text-align: center;
  }
}

/*
/* member-password-lost
/*
----------------------------------------------------------------- */
body.page-id-119 #wpmem_restricted_msg {
  display: none;
}

body.page-id-119 #wpmem_login {
  display: none;
}

/*
/* Register
/*
----------------------------------------------------------------- */
body.page-id-94 .register-form {
  max-width: 768px;
  margin: 0 auto;
}

body.page-id-94 .register-form legend {
  display: none;
}

body.page-id-94 .register-form p {
  line-height: 1.6;
}

body.page-id-94 .register-form #wpmem_reg fieldset {
  margin: 40px 0 0;
}

body.page-id-94 .register-form #wpmem_reg .req-text {
  display: none;
}

body.page-id-94 .register-form #wpmem_reg .textbox {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*
/* Branch
/*
----------------------------------------------------------------- */
.rental__desc {
  margin-bottom: 20px;
}

.rental__content {
  margin: 0 10px 20px;
}

.rental__content__photo img {
  max-width: 100%;
}

.rental__content__name {
  margin-top: 5px;
  text-align: center;
}

/*
/* Branch
/*
----------------------------------------------------------------- */
body.page-template-page-branch-roles .officer {
  margin: 0 -10px;
}

body.page-template-page-branch-roles .officer__content {
  margin: 30px 0;
}

@media screen and (max-width: 768px) {
  body.page-template-page-branch-roles .officer__content {
    margin: 20px 0 20px 0;
    padding: 0 10px;
  }
}

body.page-template-page-branch-roles .officer__content__photo {
  text-align: center;
}

body.page-template-page-branch-roles .officer__content__photo img {
  max-width: 100%;
  max-height: 200px;
  height: auto;
}

body.page-template-page-branch-roles .officer__content__job {
  line-height: 1.6;
  margin: 10px 0 0 0;
  font-weight: bold;
  text-align: center;
}

body.page-template-page-branch-roles .officer__content__name {
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: center;
}

@media screen and (max-width: 768px) {
  body.page-template-page-branch-roles .officer__content__name {
    font-size: 1.6rem;
  }
}

/*
/* Search
/*
----------------------------------------------------------------- */
body.search .search__desc {
  margin: 0 0 40px;
}

/*
/* Top
/*
----------------------------------------------------------------- */
body.page-id-79 .page-content ul {
  margin: 1em 20px;
}

body.page-id-79 .page-content ul li {
  margin: 10px 0;
  list-style: disc;
  line-height: 1.6;
  font-size: 1.6rem;
}

body.page-id-79 .page-content ul ul {
  margin: 0 20px 40px;
}

body.page-id-79 .page-content ul ul li {
  list-style: square;
  margin: 5px 0;
}

body.page-id-79 .page-content ul ul ul li {
  list-style: circle;
  font-size: 1.4rem;
}

/*
/* Top
/*
----------------------------------------------------------------- */
/**
 * Visual
 */
body.home .main {
  position: relative;
}

@media screen and (min-width: 769px) {
  body.home .site-nav {
    display: none;
  }
}

body.home .site-nav__inner {
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

@media screen and (min-width: 769px) {
  body.home .site-nav__subitem a {
    border: none;
  }
}

body.home .top-gallery {
  position: relative;
  height: 0;
  padding: 50% 0 0 0;
}

@media screen and (max-width: 768px) {
  body.home .top-gallery {
    padding: 100% 0 0 0;
  }
}

body.home .top-gallery__item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff 50% 50% no-repeat;
  background-size: cover;
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

body.home .top-gallery__item--visible {
  opacity: 1;
  z-index: 1;
}

body.home .top-gallery__item img {
  display: none;
}

body.home .login {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

body.home .login__year {
  font-size: 2.4rem;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 768px) {
  body.home .login__year {
    font-size: 1.1rem;
  }
}

body.home .login__copy {
  font-size: 4.6rem;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 768px) {
  body.home .login__copy {
    font-size: 2.2rem;
  }
}

body.home .login__lead {
  font-size: 2.4rem;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 768px) {
  body.home .login__lead {
    font-size: 1.1rem;
  }
}

body.home .login__content {
  margin: 30px 0 0 0;
  padding: 20px 60px 15px;
  background: url(/assets/images/common/bg_dotted_01.png) 0 0;
  border-radius: 6px;
}

@media screen and (max-width: 768px) {
  body.home .login__content {
    margin: 15px 0 0 0;
    padding: 10px;
    min-width: 280px;
  }
}

body.home .login__input {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 3px;
}

@media screen and (max-width: 768px) {
  body.home .login__input {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

body.home .login__input__user, body.home .login__input__password, body.home .login__input__btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  margin: 0;
}

body.home .login__input__user, body.home .login__input__password {
  font-size: 1.6rem;
  padding: 13px;
}

@media screen and (max-width: 768px) {
  body.home .login__input__user, body.home .login__input__password {
    font-size: 1.4rem;
  }
}

body.home .login__input__user:focus, body.home .login__input__password:focus {
  outline: none;
}

body.home .login__input__user {
  border-right: 1px #dddddd solid;
}

@media screen and (max-width: 768px) {
  body.home .login__input__user {
    border-bottom: 1px #dddddd solid;
    border-right: none;
  }
}

body.home .login__input__btn {
  background: #f16730;
  color: #fff;
  font-size: 1.6rem;
  padding: 10px 40px;
}

body.home .login__input__btn:hover {
  cursor: pointer;
}

body.home .login__link {
  margin: 10px 0 0;
}

@media screen and (max-width: 768px) {
  body.home .login__link {
    margin: 20px 0 10px;
  }
}

body.home .login__link a {
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  body.home .login__link a {
    font-size: 1.4rem;
    display: block;
    text-align: center;
  }
}

body.home .login__link a::before {
  content: '/';
  margin: 0 8px;
}

@media screen and (max-width: 768px) {
  body.home .login__link a::before {
    content: none;
  }
}

body.home .login__link a:first-child::before {
  content: none;
}

body.home .login__link a:hover {
  opacity: 0.8;
}

body.home .site-footer {
  margin-top: 0;
}

body.home.logged-in .site-footer {
  margin-top: 70px;
}

@media screen and (max-width: 768px) {
  body.home.logged-in .site-footer {
    margin-top: 40px;
  }
}

@media screen and (min-width: 769px) {
  body.home.logged-in .site-nav {
    display: block;
  }
}

/*
/* Branch
/*
----------------------------------------------------------------- */
.union__branch__title {
  text-align: center;
  margin: 20px 0 15px;
  border-bottom: 2px #f16730 solid;
  padding: 10px;
}

.union__branch__title:first-of-type {
  margin-top: 0;
}

.union__branch__roukin, .union__branch__zenrosai {
  text-align: center;
}

.union__branch__zenrosai {
  margin-top: 30px;
}

/*
/* Company/access
/*
----------------------------------------------------------------- */
body.page-id-90 .address-data {
  max-width: 768px;
  margin: 0 auto 60px;
  background: -webkit-gradient(linear, left top, right top, from(#f16930), to(#f1ab30));
  background: linear-gradient(to right, #f16930, #f1ab30);
  border-right: 1px #ccc solid;
}

@media screen and (max-width: 768px) {
  body.page-id-90 .address-data {
    border-right: none;
    margin: 0 auto 40px;
  }
}

body.page-id-90 .address-data dt {
  clear: both;
  float: left;
  width: 25%;
  padding: 20px;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px rgba(255, 255, 255, 0.3) solid;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  body.page-id-90 .address-data dt {
    float: none;
    width: auto;
    padding: 15px;
  }
}

body.page-id-90 .address-data dt:first-child + dd {
  border-top: 1px #ccc solid;
}

@media screen and (max-width: 768px) {
  body.page-id-90 .address-data dt:first-child + dd {
    border-top: none;
  }
}

body.page-id-90 .address-data dd {
  background: #fff;
  margin: 0 0 0 25%;
  padding: 20px;
  border-bottom: 1px #ccc solid;
}

@media screen and (max-width: 768px) {
  body.page-id-90 .address-data dd {
    margin: 0;
    padding: 15px;
    border-bottom: none;
    border-right: 1px #ccc solid;
    border-left: 1px #ccc solid;
  }
}

@media screen and (max-width: 768px) {
  body.page-id-90 .address-data dd:last-child {
    border-bottom: 1px #ccc solid;
  }
}

body.page-id-90 .gmap iframe {
  width: 100%;
  height: 600px;
}

@media screen and (max-width: 992px) {
  body.page-id-90 .gmap iframe {
    height: 500px;
  }
}

@media screen and (max-width: 768px) {
  body.page-id-90 .gmap iframe {
    height: 400px;
  }
}

/*
/* Company/officer
/*
----------------------------------------------------------------- */
body.page-id-84 .officer {
  margin: 0 -10px;
}

body.page-id-84 .officer__content {
  margin: 30px 0;
}

@media screen and (max-width: 768px) {
  body.page-id-84 .officer__content {
    margin: 20px 0 20px 0;
    padding: 0 10px;
  }
}

body.page-id-84 .officer__content__photo {
  text-align: center;
}

body.page-id-84 .officer__content__photo img {
  max-width: 100%;
  max-height: 200px;
  height: auto;
}

body.page-id-84 .officer__content__job {
  line-height: 1.6;
  margin: 10px 0 0 0;
  font-weight: bold;
  text-align: center;
}

body.page-id-84 .officer__content__name {
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: center;
}

@media screen and (max-width: 768px) {
  body.page-id-84 .officer__content__name {
    font-size: 1.6rem;
  }
}

/*
/* Company/roles
/*
----------------------------------------------------------------- */
body.page-id-88 .page-content {
  max-width: 768px;
  margin: 0 auto;
}

body.page-id-88 .page-content h1 {
  margin: 2em 0 1em;
  font-size: 2.4rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  body.page-id-88 .page-content h1 {
    font-size: 1.8rem;
  }
}

body.page-id-88 .page-content h2 {
  margin: 3em 0 1em;
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  body.page-id-88 .page-content h2 {
    font-size: 1.6rem;
  }
}

body.page-id-88 .page-content table {
  width: 100%;
}

body.page-id-88 .page-content table thead {
  background: #f16730;
}

body.page-id-88 .page-content table thead th {
  color: #fff;
  border-right: 1px rgba(255, 255, 255, 0.3) solid;
}

body.page-id-88 .page-content table thead th:first-child {
  width: 20%;
}

@media screen and (max-width: 768px) {
  body.page-id-88 .page-content table thead th:first-child {
    width: 30%;
  }
}

body.page-id-88 .page-content table tbody {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body.page-id-88 .page-content table tbody th {
  border-left: 1px #eee solid;
  border-right: 1px #eee solid;
  border-bottom: 1px #eee solid;
  background: #fafafa;
}

body.page-id-88 .page-content table tbody td {
  border-right: 1px #eee solid;
  border-bottom: 1px #eee solid;
}

body.page-id-88 .page-content table th,
body.page-id-88 .page-content table td {
  padding: 15px;
}

@media screen and (max-width: 768px) {
  body.page-id-88 .page-content table th,
  body.page-id-88 .page-content table td {
    padding: 10px;
  }
}

@media screen and (max-width: 768px) {
  body.page-id-88 .page-content .tbl-scroll {
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 20px 0;
  }
}

@media screen and (max-width: 768px) {
  body.page-id-88 .page-content .tbl-scroll > table thead th:first-child {
    width: auto;
  }
}

body.page-id-88 .page-content .tbl-scroll > table th,
body.page-id-88 .page-content .tbl-scroll > table td {
  white-space: nowrap;
}

/*
/* Reset
/*
----------------------------------------------------------------- */
@media screen and (min-width: 769px) {
  .hidden__pc {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .hidden__sp {
    display: none;
  }
}
