/* -----------------------------------------------
FileName : style.styl
Date     : 2018/05/09

 * 共通部分のCSS
-------------------------------------------------- */
@charset 'utf-8';
@-webkit-keyframes hamburger-menu {
  0% {
    width: 0%;
    height: 0;
  }
  100% {
    width: 100%;
    height: calc(100vh - 88px);
  }
}
@keyframes hamburger-menu {
  0% {
    width: 0%;
    height: 0;
  }
  100% {
    width: 100%;
    height: calc(100vh - 88px);
  }
}
@-webkit-keyframes hamburger-menu-sm {
  0% {
    width: 0%;
    height: 0;
  }
  100% {
    width: 100%;
    height: calc(100vh - 58px);
  }
}
@keyframes hamburger-menu-sm {
  0% {
    width: 0%;
    height: 0;
  }
  100% {
    width: 100%;
    height: calc(100vh - 58px);
  }
}
html {
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  html {
    font-size: 12px;
  }
}
body {
  font-family: "Roboto", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  color: #333;
  background-color: #f4f3ef;
}
/* -----------------------------------------------
--- common component start -----------------------
-------------------------------------------------- */
.article-blc__card {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 30px 0;
  text-decoration: none;
  color: #333;
  background-color: #fff;
  opacity: 1;
  -webkit-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
  box-shadow: 0 3px 3px rgba(0,0,0,0.2);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
body:not(.ios) .article-blc__card:hover {
  opacity: 0.8;
  -webkit-box-shadow: 5px 5px 7px rgba(0,0,0,0.2);
  box-shadow: 5px 5px 7px rgba(0,0,0,0.2);
}
.article-blc__pct {
  width: 100%;
  height: auto;
}
.article-blc__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px;
  line-height: 1.2;
}
.article-blc__hdg-lv4 {
  width: auto;
  line-height: 1.4;
  text-align: justify;
  font-size: 1.2rem;
  font-weight: bold;
}
.article-blc__hdg-lv4 .break:nth-child(2) {
  text-align: right;
}
.article-blc__hdg-lv4 .break {
  display: inline-block;
}
.hdg-lv2,
.main-q__hdg-lv2 {
  display: inline-block;
  margin: 0 auto 50px auto;
  padding: 0 0 10px 0;
  border-bottom: 3px solid #333;
  font-size: 2.4rem;
  font-weight: bold;
  font-style: italic;
  font-family: "Noto Sans Japanese";
}
.article-card {
  position: relative;
  overflow: hidden;
  width: 17vw;
  max-width: 261px;
  margin: 0 1vw 2.5vw 1vw;
  text-decoration: none;
  color: #555;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
  box-shadow: 0 3px 3px rgba(0,0,0,0.2);
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
body:not(.ios) .article-card:hover {
  -webkit-box-shadow: 5px 5px 7px rgba(0,0,0,0.2);
  box-shadow: 5px 5px 7px rgba(0,0,0,0.2);
  opacity: 0.8;
}
@media only screen and (max-width: 1200px) {
  .article-card {
    width: 20.5vw;
    margin: 0 1vw 2.5vw 1vw;
  }
}
@media only screen and (max-width: 992px) {
  .article-card {
    width: 21.5vw;
  }
}
@media only screen and (max-width: 768px) {
  .article-card {
    width: 34vw;
    margin: 0 3vw 5vw 3vw;
  }
}
@media only screen and (max-width: 600px) {
  .article-card {
    width: 45.5vw;
    margin: 0 1vw 2.5vw 1vw;
  }
}
.article-card__pct-blc {
  position: relative;
  overflow: hidden;
  width: 100%;
  vertical-align: bottom;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
.article-card__pct-blc::after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  background: #28b7bc;
  opacity: 0.2;
}
.article-card__pct-main {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.article-card__label-blc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.article-card__label-blc--category,
.article-card__label-blc--date {
  width: 50%;
  text-align: center;
  font-size: 0.8rem;
  padding: 1.4vh;
}
@media only screen and (max-width: 1200px) {
  .article-card__label-blc--category,
  .article-card__label-blc--date {
    padding: 1vw;
  }
}
@media only screen and (max-width: 768px) {
  .article-card__label-blc--category,
  .article-card__label-blc--date {
    padding: 1.5vw;
  }
}
@media only screen and (max-width: 600px) {
  .article-card__label-blc--category,
  .article-card__label-blc--date {
    padding: 2vw;
  }
}
.article-card__label-blc--category {
  font-weight: bold;
  color: #fff;
}
.article-card__label-blc--category.category-color-employee {
  background-color: #ec6e65;
}
.article-card__label-blc--category.category-color-work {
  background-color: #23ade5;
}
.article-card__label-blc--category.category-color-environment {
  background-color: #ecb935;
}
.article-card__label-blc--category.category-color-event {
  background-color: #f18888;
}
.article-card__label-blc--category.category-color-hunting {
  background-color: #5976b9;
}
.article-card__title {
  text-align: justify;
  text-justify: inter-ideograph;
  color: #555;
  line-height: 1.4;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 15px 15px 0 15px;
}
.article-card__writer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  padding: 15px;
  line-height: 40px;
}
.article-card__writer--top {
  line-height: normal;
}
.article-card__writer--pct {
  width: 3vw;
  max-width: 58px;
  height: 3vw;
  max-height: 58px;
  margin: 0 auto 0 0;
}
@media only screen and (max-width: 1200px) {
  .article-card__writer--pct {
    width: 4.2vw;
    height: 4.2vw;
  }
}
@media only screen and (max-width: 768px) {
  .article-card__writer--pct {
    width: 6vw;
    height: 6vw;
  }
}
@media only screen and (max-width: 600px) {
  .article-card__writer--pct {
    width: 8vw;
    height: 8vw;
  }
}
.article-card__writer--name {
  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;
  line-height: normal;
  margin: 0 0 0 auto;
}
@media only screen and (max-width: 768px) {
  .article-card__writer--name {
    margin: 0;
  }
}
.js-display-none {
  display: none;
  opacity: 0;
}
.js-show {
  opacity: 1;
}
.common-design-link01 {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  height: 60px;
  margin: 0 auto;
  border: 2px solid #28b7bc;
  line-height: 56px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  color: #28b7bc;
  background-color: #fff;
  overflow: hidden;
  -webkit-transition: color 0.2s ease, background-color 0.2s ease;
  transition: color 0.2s ease, background-color 0.2s ease;
}
@media only screen and (max-width: 600px) {
  .common-design-link01 {
    max-width: 200px;
    height: 50px;
    line-height: 45px;
  }
}
.common-design-link01__word::after {
  content: "\f105";
  position: relative;
  left: 5px;
  font-family: "Font Awesome 5 Free";
  -webkit-transition: left 0.2s;
  transition: left 0.2s;
}
.common-design-link01::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -2px;
  left: -300px;
  width: 100%;
  height: 60px;
  background-color: #f4f3ef;
  opacity: 0.2;
  -webkit-transition: left 0.2s ease;
  transition: left 0.2s ease;
}
@media only screen and (min-width: 768px) {
  .common-design-link01::before {
    height: 60px;
  }
}
body:not(.ios) .common-design-link01:hover {
  background-color: #28b7bc;
  color: #fff;
}
body:not(.ios) .common-design-link01:hover::before {
  left: 0;
}
.common-design-link02 {
  position: relative;
  display: inline-block;
  width: 356px;
  max-width: 100%;
  height: 85px;
  margin: 0 auto;
  border: 2px solid #28b7bc;
  line-height: 85px;
  text-align: center;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: bold;
  color: #28b7bc;
  background-color: #fff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media only screen and (max-width: 600px) {
  .common-design-link02 {
    width: 240px;
    height: 55px;
    line-height: 55px;
    font-size: 1.2rem;
  }
}
.common-design-link02::before,
.common-design-link02::after {
  content: '';
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  border: 2px solid #28b7bc;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.common-design-link02::before {
  top: -8px;
  left: -8px;
  border-width: 2px 0 0 2px;
}
.common-design-link02::after {
  bottom: -8px;
  right: -8px;
  border-width: 0 2px 2px 0;
}
body:not(.ios) .common-design-link02:hover {
  border: 2px solid #28b7bc;
  color: #fff;
  background-color: #28b7bc;
}
body:not(.ios) .common-design-link02:hover::before,
body:not(.ios) .common-design-link02:hover::after {
  width: calc(100% + 16px);
  height: calc(100% + 16px);
}
.common-design-link03 {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  height: 74px;
  margin: 0 auto;
  border: 2px solid #28b7bc;
  line-height: 70px;
  text-align: center;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  background-color: #28b7bc;
  overflow: hidden;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media only screen and (max-width: 600px) {
  .common-design-link03 {
    max-width: 250px;
    height: 60px;
    line-height: 56px;
  }
}
body:not(.ios) .common-design-link03:hover {
  background-color: #fff;
  color: #28b7bc;
}
.common-design-link03 .fa-clone {
  margin: 0 0 0 5px;
}
.fas-icon--another-tab {
  margin: 0 0 0 5px;
  font-size: 1.4rem;
}
.common-page-header {
  width: 100%;
  margin: 88px 0 0 0;
  padding: 80px 0;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  background-color: #fff;
  color: #28b7bc;
}
@media only screen and (max-width: 768px) {
  .common-page-header {
    margin: 58px 0 0 0;
    padding: 50px 0;
  }
}
.more-disp-link {
  display: block;
  position: relative;
  top: 0;
  width: 200px;
  height: 60px;
  margin: 50px auto 0 auto;
  padding: 15px 0 0 0;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  color: #666;
  -webkit-transition: color 0.2s linear, top 0.2s linear;
  transition: color 0.2s linear, top 0.2s linear;
}
.more-disp-link::before {
  content: '';
  position: absolute;
  top: -7px;
  right: 0;
  left: 0;
  width: 30px;
  height: 30px;
  margin: auto;
  border: 0;
  border-top: 2px solid #666;
  border-right: 2px solid #666;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: border-top 0.2s linear, border-right 0.2s linear;
  transition: border-top 0.2s linear, border-right 0.2s linear;
}
body:not(.ios) .more-disp-link:hover {
  top: 5px;
  color: #28b7bc;
}
body:not(.ios) .more-disp-link:hover::before {
  border-top: 2px solid #28b7bc;
  border-right: 2px solid #28b7bc;
}
/* -----------------------------------------------
------------------------- common component end ---
-------------------------------------------------- */
/* -----------------------------------------------
--- js component start ---------------------------
-------------------------------------------------- */
.fade--main-category,
.fade--main-new-article,
.fade--main-q {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: opacity ease-out 0.4s, -webkit-transform ease-out 0.8s;
  transition: opacity ease-out 0.4s, -webkit-transform ease-out 0.8s;
  transition: transform ease-out 0.8s, opacity ease-out 0.4s;
  transition: transform ease-out 0.8s, opacity ease-out 0.4s, -webkit-transform ease-out 0.8s;
}
/* -----------------------------------------------
----------------------------- js component end ---
-------------------------------------------------- */
/* -----------------------------------------------
--- global header start --------------------------
-------------------------------------------------- */
.header {
  position: fixed;
  z-index: 99;
  top: 0;
  width: 100%;
  background-color: #28b7bc;
  color: #fff;
}
.header .nav-global {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
}
@media only screen and (max-width: 768px) {
  .header .nav-global {
    padding: 10px 20px;
  }
}
@media only screen and (max-width: 768px) {
  .site-title-blc {
    height: 38px;
  }
}
.site-title-blc__main-title-logo {
  width: auto;
  height: 45px;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .site-title-blc__main-title-logo {
    height: 38px;
    padding: 3px 0;
  }
}
.menu-icon-blc {
  width: 40px;
  height: 48px;
  margin-right: 0;
  margin-left: auto;
}
@media only screen and (max-width: 768px) {
  .menu-icon-blc {
    width: 30px;
  }
}
.menu-icon-blc:hover {
  cursor: pointer;
}
.menu-icon-blc__border {
  position: relative;
  top: 22px;
  display: block;
  width: 40px;
  height: 4px;
  background-color: #fff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media only screen and (max-width: 768px) {
  .menu-icon-blc__border {
    width: 30px;
    height: 3px;
  }
}
.menu-icon-blc__border::before,
.menu-icon-blc__border::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 4px;
  background-color: inherit;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media only screen and (max-width: 768px) {
  .menu-icon-blc__border::before,
  .menu-icon-blc__border::after {
    width: 30px;
    height: 3px;
  }
}
.menu-icon-blc__border::before {
  top: 16px;
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .menu-icon-blc__border::before {
    top: 12px;
  }
}
.menu-icon-blc__border::after {
  top: -16px;
}
@media only screen and (max-width: 768px) {
  .menu-icon-blc__border::after {
    top: -12px;
  }
}
.menu-icon-blc__border.active {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menu-icon-blc__border.active::before {
  opacity: 0;
}
.menu-icon-blc__border.active::after {
  top: 0;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.hamburger-blc {
  position: fixed;
  top: 88px;
  right: 0;
  width: 0%;
  height: 0vh;
  background-color: #28b7bc;
}
@media only screen and (max-width: 768px) {
  .hamburger-blc {
    top: 58px;
  }
}
.hamburger-blc.is-show {
  -webkit-animation: hamburger-menu 0.2s ease;
  animation: hamburger-menu 0.2s ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@media only screen and (max-width: 768px) {
  .hamburger-blc.is-show {
    -webkit-animation: hamburger-menu-sm 0.2s ease;
    animation: hamburger-menu-sm 0.2s ease;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
}
.hamburger-blc.is-show .hamburger-blc__container {
  width: 80vw;
  height: calc(85vh - 88px);
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .hamburger-blc.is-show .hamburger-blc__container {
    width: 90vw;
    height: calc(85vh - 58px);
  }
}
.hamburger-blc__container {
  overflow-y: scroll;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 1000px;
  margin: auto;
  border-radius: 30px;
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.hamburger-blc__container::-webkit-scrollbar {
  width: 15px;
}
.hamburger-blc__container::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #fff;
}
.hamburger-blc__container::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(40,183,188,0.4);
}
.hamburger-blc .nav-list {
  width: 100%;
  height: 100%;
  padding: 25px 25px 25px 50px;
}
.hamburger-blc .nav-list::after {
  content: '';
  display: block;
  clear: both;
}
.hamburger-blc .nav-list .nav-item {
  float: left;
  display: inline-block;
  min-width: 200px;
  margin: 0 0 50px 0;
  color: #fff;
}
.hamburger-blc .nav-list .nav-item--hdg-wrp {
  float: none;
  min-width: calc(100% + 25px);
  margin: 0 0 25px -25px;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #fff;
}
.hamburger-blc .nav-list .nav-item__hdg-lv2 {
  font-size: 2rem;
  font-weight: bold;
}
.hamburger-blc .nav-list .nav-item__link {
  position: relative;
  display: inline-block;
  margin: 0 0 15px 0;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
}
.hamburger-blc .nav-list .nav-item__link::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 0%;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
body:not(.ios) .hamburger-blc .nav-list .nav-item__link:hover::before {
  content: '';
  width: 100%;
}
.hamburger-blc .nav-list .nav-item__lead-txt {
  font-weight: bold;
}
/* -----------------------------------------------
---------------------------- global header end ---
-------------------------------------------------- */
/* -----------------------------------------------
--- global footer start --------------------------
-------------------------------------------------- */
.footer {
  width: 100%;
  background-color: #28b7bc;
}
.footer .global-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 50px 20px;
  text-align: center;
  background-color: transparent;
}
@media only screen and (max-width: 768px) {
  .footer .global-footer {
    display: block;
  }
}
.footer .global-footer__site-logo {
  margin: auto 50px 30px 0;
}
@media only screen and (max-width: 768px) {
  .footer .global-footer__site-logo {
    margin: 0 auto;
  }
}
.footer .global-footer__site-logo-main {
  width: auto;
  height: 50px;
}
.footer .global-footer__inside-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0 20px 0 50px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .footer .global-footer__inside-link {
    display: block;
    width: 100%;
    margin: 0 auto 30px auto;
  }
  .footer .global-footer__inside-link::after {
    content: '';
    display: block;
    clear: both;
  }
}
.footer .global-footer .inside-link__lst {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 20px 0;
  line-height: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .footer .global-footer .inside-link__lst {
    display: block;
  }
}
.footer .global-footer .inside-link__item-large-hdg {
  min-width: 160px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #f5f5f5;
}
@media only screen and (max-width: 768px) {
  .footer .global-footer .inside-link__item-large-hdg {
    margin: 0 0 20px 0;
  }
}
.footer .global-footer .inside-link__item-wrp-small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footer .global-footer .inside-link__item-small-hdg {
  margin: 0 30px 10px 0;
  font-size: 1.2rem;
}
.footer .global-footer .inside-link__item-small-hdg .link {
  position: relative;
  color: #f5f5f5;
  text-decoration: none;
}
.footer .global-footer .inside-link__item-small-hdg .link::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 0%;
  height: 1px;
  background-color: #fff;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}
body:not(.ios) .footer .global-footer .inside-link__item-small-hdg .link:hover::before {
  width: 100%;
}
.footer .global-footer .inside-link__item-small-hdg .link.change-icon::after {
  content: "\f24d";
  font-family: "Font Awesome 5 Free";
  margin: 0 0 0 10px;
}
.footer .copyright {
  width: 100%;
  height: 100px;
  background-color: #fff;
  min-width: 250px;
}
.footer .copyright__wrp {
  position: relative;
  width: 1200px;
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.footer .copyright__txt {
  position: absolute;
  right: 0;
  top: 50px;
  bottom: 0;
  left: 0;
  margin: auto;
  line-height: 50px;
  text-align: center;
  font-size: 0.8rem;
}
.footer .copyright__logo {
  position: absolute;
  right: 0;
  top: -20px;
  bottom: 0;
  left: 0;
  width: auto;
  height: 30px;
  margin: auto;
}
/* -----------------------------------------------
---------------------------- global footer end ---
-------------------------------------------------- */
/* -----------------------------------------------
--- index content start --------------------------
-------------------------------------------------- */
.main-visual {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 500px;
  margin: 88px 0 0 0;
  background-color: #fff;
}
@media only screen and (max-width: 992px) {
  .main-visual {
    height: 450px;
  }
}
@media only screen and (max-width: 768px) {
  .main-visual {
    height: 300px;
    margin: 58px auto 0 auto;
  }
}
@media only screen and (max-width: 600px) {
  .main-visual {
    height: 250px;
  }
}
.main-visual__logo {
  position: absolute;
  z-index: 10;
  top: -200px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 600px;
  height: auto;
  margin: auto;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@media only screen and (max-width: 992px) {
  .main-visual__logo {
    width: 500px;
    top: -170px;
  }
}
@media only screen and (max-width: 768px) {
  .main-visual__logo {
    width: 400px;
    top: -150px;
  }
}
@media only screen and (max-width: 600px) {
  .main-visual__logo {
    width: 250px;
    top: -130px;
  }
}
.main-visual__logo--word {
  -webkit-transform: scale(0);
  transform: scale(0);
}
.main-visual__logo--megaphone {
  z-index: 9;
  top: -140px;
  right: -640px;
  width: 76px;
}
@media only screen and (max-width: 992px) {
  .main-visual__logo--megaphone {
    top: -115px;
    right: -535px;
    width: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .main-visual__logo--megaphone {
    top: -100px;
    right: -425px;
    width: 50px;
  }
}
@media only screen and (max-width: 600px) {
  .main-visual__logo--megaphone {
    top: -100px;
    right: -265px;
    width: 32px;
  }
}
.main-visual__background-wrp {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  width: 1200px;
  max-width: 100%;
  height: 500px;
  margin: auto;
}
@media only screen and (max-width: 992px) {
  .main-visual__background-wrp {
    height: 450px;
  }
}
@media only screen and (max-width: 768px) {
  .main-visual__background-wrp {
    height: 300px;
  }
}
@media only screen and (max-width: 600px) {
  .main-visual__background-wrp {
    height: 250px;
  }
}
.main-visual__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 1200px;
  max-width: 100%;
  height: 500px;
  margin: 0 auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-image: url("/-/media/orooro/2018/img/topimage-1th.jpg");
  -webkit-transition: opacity 0.5s ease-in;
  transition: opacity 0.5s ease-in;
}
@media only screen and (max-width: 992px) {
  .main-visual__background {
    height: 450px;
  }
}
@media only screen and (max-width: 768px) {
  .main-visual__background {
    height: 300px;
  }
}
@media only screen and (max-width: 600px) {
  .main-visual__background {
    height: 250px;
  }
}
.main-message {
  position: relative;
  width: 100%;
  padding: 50px;
  background-color: #fff;
  font-family: "Noto Sans Japanese";
}
.main-message__hdg-lv2 {
  margin: 0 0 20px 0;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
}
.main-message__txt,
.main-message__txt--underline {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1040px;
  margin: auto;
  padding: 0 50px;
  line-height: 2;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  word-break: break-all;
}
.main-message__txt {
  z-index: 9;
}
.main-message__txt--underline {
  z-index: 10;
  color: transparent;
}
.main-message__txt--underline .slice-txt {
  padding: 3px 0;
}
@media only screen and (max-width: 992px) {
  .main-message__txt--underline .slice-txt:nth-child(29)::before {
    content: '\A';
  }
}
@media only screen and (max-width: 600px) {
  .main-message__txt--underline .slice-txt:nth-child(29)::before {
    content: '';
  }
}
.main-message__txt--underline .slice-txt:nth-child(n+8):nth-child(-n+28) {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(88%, transparent), color-stop(60%, #28b7bc));
  background: linear-gradient(transparent 88%, #28b7bc 60%);
}
.main-message__txt--underline .slice-txt:nth-child(n+38):nth-child(-n+42) {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(88%, transparent), color-stop(60%, #28b7bc));
  background: linear-gradient(transparent 88%, #28b7bc 60%);
}
.main-category {
  width: 100%;
  margin: 0 auto;
  padding: 50px 50px 0 50px;
  background-color: #f4f3ef;
/*----- .word-blc~,.article-blc~ は共通部分に(pickup,Q活) -----*/
}
@media only screen and (max-width: 600px) {
  .main-category {
    padding: 20px 20px 0 20px;
  }
}
.main-category__content {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 50px 0;
  text-align: center;
  background-color: #f4f3ef;
}
@media only screen and (max-width: 992px) {
  .main-category__content {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 768px) {
  .main-category__content {
    padding: 20px 0 0 0;
  }
}
@media only screen and (max-width: 600px) {
  .main-category__content {
    max-width: 400px;
  }
}
.main-category__hdg-lv2--img {
  display: block;
  margin: 0 auto 15px auto;
}
@media only screen and (max-width: 600px) {
  .main-category__hdg-lv2--img {
    width: 150px;
  }
}
.main-category__hdg-lv2--txt {
  display: inline-block;
  margin: 0 auto;
  padding: 0 0 10px 0;
  border-bottom: 3px solid #333;
  font-size: 2.4rem;
  font-weight: bold;
  font-style: italic;
  word-wrap: break-word;
}
@media only screen and (max-width: 992px) {
  .main-category__hdg-lv2--txt {
    margin: 0 auto 50px auto;
  }
}
@media only screen and (max-width: 600px) {
  .main-category__hdg-lv2--txt {
    font-size: 2rem;
  }
}
.main-category__flex-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .main-category__flex-wrp {
    display: block;
  }
}
.main-category__box {
  width: 100%;
  max-width: 324px;
  padding: 0 10px;
}
@media only screen and (max-width: 992px) {
  .main-category__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 100%;
    margin: 0 auto 50px auto;
  }
}
@media only screen and (max-width: 600px) {
  .main-category__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.main-category__word-blc {
  width: auto;
  max-width: 100%;
  margin: 0 0 10px 0;
}
@media only screen and (max-width: 992px) {
  .main-category__word-blc {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 48%;
    padding: 0 20px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .main-category__word-blc {
    padding: 0 10px 0 0;
  }
}
@media only screen and (max-width: 600px) {
  .main-category__word-blc {
    max-width: 100%;
    margin: 0 auto 10px auto;
    padding: 0;
  }
}
.main-category .word-blc__pct-icon-wrp {
  width: 100%;
  height: 225px;
  line-height: 225px;
  margin: 0 auto 30px auto;
}
@media only screen and (max-width: 992px) {
  .main-category .word-blc__pct-icon-wrp {
    height: auto;
    margin: 0 auto 10px auto;
    line-height: 1;
  }
}
.main-category .word-blc__pct-icon-content {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media only screen and (max-width: 992px) {
  .main-category .word-blc__pct-icon-content {
    max-width: 250px;
  }
}
@media only screen and (max-width: 600px) {
  .main-category .word-blc__pct-icon-content {
    max-width: 300px;
  }
}
.main-category .word-blc__hdg-lv3 {
  font-family: "Noto Sans Japanese";
  margin: 0 0 30px 0;
  font-size: 2rem;
  font-weight: bold;
}
@media only screen and (max-width: 992px) {
  .main-category .word-blc__hdg-lv3 {
    margin: 0 0 15px 0;
  }
}
.main-category .word-blc__hdg-lv3--1th {
  color: #ec6e65;
}
.main-category .word-blc__hdg-lv3--2th {
  color: #23ade5;
}
.main-category .word-blc__hdg-lv3--3th {
  color: #ecb935;
}
.main-category .word-blc__question {
  margin: 0 0 10px 0;
  line-height: 1.4;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .main-category .word-blc__question {
    min-height: 20px;
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 600px) {
  .main-category .word-blc__question {
    font-size: 1.4rem;
  }
}
.main-category .word-blc__answer {
  min-height: 57px;
  line-height: 1.4;
  text-align: left;
  font-size: 1rem;
  word-break: normal;
  font-weight: bold;
}
@media only screen and (max-width: 992px) {
  .main-category .word-blc__answer {
    line-height: 1.8;
  }
}
@media only screen and (max-width: 600px) {
  .main-category .word-blc__answer {
    max-width: 383px;
    font-size: 1.1rem;
  }
}
.main-category__article-blc {
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 992px) {
  .main-category__article-blc {
    -webkit-box-flex: 0;
    -ms-flex: 0;
    flex: 0;
    -ms-flex-preferred-size: 324px;
    flex-basis: 324px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: auto;
    margin: auto;
  }
}
@media only screen and (max-width: 768px) {
  .main-category__article-blc {
    -ms-flex-preferred-size: 240px;
    flex-basis: 240px;
  }
}
@media only screen and (max-width: 992px) {
  .main-category__common-link {
    -webkit-box-flex: 0;
    -ms-flex: 0;
    flex: 0;
    -ms-flex-preferred-size: 300px;
    flex-basis: 300px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 300px;
  }
}
@media only screen and (max-width: 600px) {
  .main-category__common-link {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    width: 100%;
    max-width: 100%;
  }
}
.main-new-article {
  width: 100%;
  margin: 0 auto;
  padding: 80px 0 50px 0;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .main-new-article {
    padding: 50px 0 50px 0;
  }
}
.main-new-article__content {
  margin: 0 auto;
  text-align: center;
}
.main-new-article__hdg-lv2 {
  display: inline-block;
  margin: 0 auto 50px auto;
  padding: 0 0 10px 0;
  border-bottom: 3px solid #333;
  font-size: 2.4rem;
  font-weight: bold;
  font-style: italic;
}
.main-new-article__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 10px 0;
}
.main-q {
  width: 100%;
  padding: 80px 50px 50px 50px;
  text-align: center;
  background-color: #f4f3ef;
}
@media only screen and (max-width: 600px) {
  .main-q {
    padding: 50px 20px 50px 20px;
  }
}
.main-q__content {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}
.main-q__flex-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto 30px auto;
}
@media only screen and (max-width: 992px) {
  .main-q__flex-wrp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.main-q__word-blc {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px 0 0;
}
@media only screen and (max-width: 992px) {
  .main-q__word-blc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  .main-q__word-blc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 383px;
    margin: 0 auto 30px auto;
  }
}
@media only screen and (max-width: 600px) {
  .main-q__word-blc {
    margin: 0 auto 30px auto;
  }
}
.main-q__word-blc .word-blc__pct-icon-wrp {
  height: auto;
  line-height: 1.2;
}
@media only screen and (max-width: 992px) {
  .main-q__word-blc .word-blc__pct-icon-wrp {
    width: 31%;
    margin: 0 0 30px 0;
  }
}
@media only screen and (max-width: 768px) {
  .main-q__word-blc .word-blc__pct-icon-wrp {
    width: auto;
  }
}
.main-q__word-blc .word-blc__pct-icon-content {
  width: 120px;
  margin: -10px auto 0 auto;
}
@media only screen and (max-width: 992px) {
  .main-q__word-blc .word-blc__pct-icon-content {
    width: 200px;
  }
}
@media only screen and (max-width: 768px) {
  .main-q__word-blc .word-blc__pct-icon-content {
    width: 150px;
    margin: 0 auto;
  }
}
.main-q__word-blc .word-blc__mobile-flex-wrp {
  width: 437px;
}
@media only screen and (max-width: 992px) {
  .main-q__word-blc .word-blc__mobile-flex-wrp {
    width: 473px;
    padding: 0 0 0 30px;
  }
}
@media only screen and (max-width: 768px) {
  .main-q__word-blc .word-blc__mobile-flex-wrp {
    width: 100%;
    max-width: 375px;
    padding: 0;
  }
}
.main-q__word-blc .word-blc__hdg-lv3 {
  font-family: "Noto Sans Japanese";
  margin: 0 auto 20px auto;
  line-height: 1.4;
  font-size: 2rem;
  font-weight: bold;
}
@media only screen and (max-width: 992px) {
  .main-q__word-blc .word-blc__hdg-lv3 {
    width: 100%;
  }
}
.main-q__word-blc .word-blc__hdg-lv3 .break {
  display: inline-block;
}
.main-q__word-blc .word-blc__answer {
  text-align: left;
  line-height: 1.8;
  font-size: 1.2rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .main-q__word-blc .word-blc__answer {
    text-align: justify;
  }
}
@media only screen and (max-width: 600px) {
  .main-q__word-blc .word-blc__answer {
    font-size: 1.1rem;
  }
}
.main-q__word-blc .word-blc__answer .break {
  display: inline-block;
}
.main-q__article-blc {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}
@media only screen and (max-width: 992px) {
  .main-q__article-blc {
    -webkit-box-flex: 0;
    -ms-flex: 0;
    flex: 0;
    -ms-flex-preferred-size: 324px;
    flex-basis: 324px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: auto;
    margin: auto;
  }
}
@media only screen and (max-width: 768px) {
  .main-q__article-blc {
    -ms-flex-preferred-size: 240px;
    flex-basis: 240px;
  }
}
.main-q__article-blc .article-blc__card {
  margin: 0;
}
.recruit-button {
  margin-left: 5%;
}
@media only screen and (max-width: 768px) {
  .recruit-button {
    display: block;
    margin: 0 auto;
    margin-top: 10px;
  }
}
/* -----------------------------------------------
---------------------------- index content end ---
-------------------------------------------------- */
/* -----------------------------------------------
---------------------------- article content start ---
-------------------------------------------------- */
.list-article__top {
  position: relative;
  margin: 88px 0 0 0;
  padding: 50px 0;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .list-article__top {
    margin: 58px 0 0 0;
    padding: 30px 0;
  }
}
.list-article__top .category-article__pct-icon-wrp {
  width: 100%;
  height: 195px;
}
@media only screen and (max-width: 992px) {
  .list-article__top .category-article__pct-icon-wrp {
    height: 175px;
  }
}
@media only screen and (max-width: 600px) {
  .list-article__top .category-article__pct-icon-wrp {
    height: 150px;
  }
}
.list-article__top .category-article__pct-icon-content {
  display: block;
  width: auto;
  height: 100%;
  margin: 0 auto;
}
.list-article__top .category-article__word {
  width: 100%;
  text-align: center;
  margin-top: 5px;
  padding: 0 20px;
  font-family: "Noto Sans Japanese";
}
@media only screen and (max-width: 600px) {
  .list-article__top .category-article__word {
    margin-top: 0px;
  }
}
.list-article__top .category-article__word-title {
  min-width: 150px;
  font-size: 36px;
  color: #ec6e65;
  font-weight: bold;
}
@media only screen and (max-width: 992px) {
  .list-article__top .category-article__word-title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 600px) {
  .list-article__top .category-article__word-title {
    font-size: 25px;
  }
}
.list-article__top .category-article__word-title--work {
  color: #23ade5;
}
.list-article__top .category-article__word-title--office {
  color: #ecb935;
}
.list-article__top .category-article__word-title--event {
  color: #f18888;
}
.list-article__top .category-article__word-title--shukatsu {
  color: #5976b9;
}
.list-article__top .category-article__word-message {
  margin: 15px 0 0 0;
}
@media only screen and (max-width: 600px) {
  .list-article__top .category-article__word-message {
    margin: 5px 0 0 0;
  }
}
.list-article__top .category-article__word-message-line {
  font-size: 18px;
  display: block;
  line-height: 25px;
}
@media only screen and (max-width: 992px) {
  .list-article__top .category-article__word-message-line {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .list-article__top .category-article__word-message-line {
    font-size: 13px;
  }
}
.member-article__pct-icon-wrp {
  width: 100%;
  max-width: 225px;
  height: 225px;
  text-align: center;
  height: auto;
  margin: 0 auto 10px auto;
  line-height: 1;
}
.member-article__pct-icon-content {
  width: 100%;
  height: auto;
  margin: 0 0 30px 0;
  vertical-align: bottom;
  max-width: 400px;
}
@media only screen and (max-width: 600px) {
  .member-article__pct-icon-content {
    width: 120px;
    height: 120px;
    margin: 0 0 10px 0;
  }
}
.member-article__word {
  width: 100%;
  text-align: center;
}
.member-article__word-title {
  min-width: 100px;
  font-size: 2rem;
  font-weight: bold;
}
.member-article__word-title--small {
  padding: 0 0 0 10px;
  font-weight: normal;
  font-size: 1.4rem;
}
-title {
  min-width: 150px;
  font-size: 36px;
  color: #ec6e65;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  -title {
    font-size: 30px;
  }
}
-message {
  margin: 15px 0 0 0;
}
-message-line {
  font-size: 18px;
  display: block;
  line-height: 25px;
}
@media only screen and (max-width: 768px) {
  -message-line {
    font-size: 15px;
    line-height: 22px;
    padding: 0 20px;
  }
}
.list-article {
  max-width: 100%;
  margin: 0;
  padding: 80px 0px;
  background-color: #f5f3ef;
}
@media only screen and (max-width: 600px) {
  .list-article {
    padding: 50px 0px;
  }
}
.list-article__content {
  margin: 0 auto;
  text-align: center;
}
.list-article__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto 20px auto;
}
.list-article__box .empty-cell {
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
  visibility: hidden;
}
/* -----------------------------------------------
---------------------------- article content end ---
-------------------------------------------------- */
/* -----------------------------------------------
--- member content start --------------------------
-------------------------------------------------- */
.member {
  background: #f5f3ef;
}
.member__top {
  position: relative;
  margin: 88px 0 0 0;
  max-width: 100%;
  min-width: 250px;
  height: 200px;
  background-size: cover;
  background-color: #fff;
}
@media only screen and (max-width: 992px) {
  .member__top {
    max-height: 350px;
  }
}
@media only screen and (max-width: 768px) {
  .member__top {
    max-height: 300px;
    margin: 58px auto 0 auto;
  }
}
@media only screen and (max-width: 600px) {
  .member__top {
    max-height: 250px;
  }
}
.member__top-title-part {
  font-family: "Noto Sans Japanese";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: #28b7bc;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.member__top-title {
  min-width: 150px;
  font-size: 2.4rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .member__top-title {
    font-size: 2rem;
  }
}
.member__top-message {
  margin: 15px 0 0 0;
  line-height: 25px;
  font-size: 1.2rem;
  color: #333;
}
@media only screen and (max-width: 768px) {
  .member__top-message {
    padding: 0 20px;
    line-height: 22px;
  }
}
.member__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 50px 80px;
}
@media only screen and (max-width: 768px) {
  .member__intro {
    padding: 30px 50px;
  }
}
@media only screen and (max-width: 600px) {
  .member__intro {
    padding: 30px 20px;
  }
}
.member__intro-card {
  position: relative;
  width: 29%;
  height: auto;
  margin: 0 1% 30px 1%;
  background-color: #fff;
}
@media only screen and (max-width: 992px) {
  .member__intro-card {
    width: 45%;
    margin: 0 2% 30px 2%;
  }
}
@media only screen and (max-width: 600px) {
  .member__intro-card {
    width: 90%;
    max-width: 400px;
    margin: 0 5% 30px;
  }
}
.member__intro-card-img {
  width: 100%;
}
.member__intro-card-img::before {
  content: '';
  display: block;
  padding-top: 100%;
}
.member__intro-card-img--momita,
.member__intro-card-img--nagaya,
.member__intro-card-img--kiriyama,
.member__intro-card-img--noda,
.member__intro-card-img--seki {
  background-size: 200%;
  background-repeat: no-repeat;
  background-position-x: left;
}
.member__intro-card-img--momita:hover,
.member__intro-card-img--nagaya:hover,
.member__intro-card-img--kiriyama:hover,
.member__intro-card-img--noda:hover,
.member__intro-card-img--seki:hover {
  background-position-x: right;
}
.member__intro-card-img--momita {
  background-image: url("/-/media/orooro/2018/img/momita-connect.png");
}
.member__intro-card-img--nagaya {
  background-image: url("/-/media/orooro/2018/img/nagaya-connect.png");
}
.member__intro-card-img--kiriyama {
  background-image: url("/-/media/orooro/2018/img/kiriyama-connect.png");
}
.member__intro-card-img--noda {
  background-image: url("/-/media/orooro/2018/img/noda-connect.png");
}
.member__intro-card-img--seki {
  background-image: url("/-/media/orooro/2018/img/seki-connect.png");
}
.member__intro-card-name {
  padding: 20px 0;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
}
.member__intro-card-job {
  padding: 0 0 20px 0;
  text-align: center;
}
.member__intro-card-charactor {
  margin: 0 auto;
  padding: 0 20px 20px 20px;
  line-height: 1.8;
}
.member__intro-card-link {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  display: block;
  width: calc(100% - 40px);
  height: auto;
  margin: 0 auto;
  padding: 15px 0;
  line-height: normal;
}
@media only screen and (max-width: 768px) {
  .member__intro-card-link {
    padding: 12px 0;
  }
}
/* -----------------------------------------------
---------------------------- member content end ---
-------------------------------------------------- */
.member__intro-card-charactor {
  letter-spacing: 2px;
}
/* -----------------------------------------------
--- q content start --------------------------
-------------------------------------------------- */
.q-page {
  width: 100%;
  margin: 88px auto 0 auto;
  padding: 50px 20px;
}
@media only screen and (max-width: 768px) {
  .q-page {
    margin: 50px auto 0 auto;
  }
}
.q-page__content {
  width: 1040px;
  max-width: 100%;
  margin: 0 auto;
  padding: 50px 20px;
  background-color: #fff;
}
.q-page__all-article-link {
  width: 100%;
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
}
.q-page .flx-wrp {
  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;
}
.q-page .flx-wrp--heading {
  padding: 50px 0;
}
.q-page .flx-wrp--member {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 50px 0;
}
.q-page-article {
  width: 100%;
  max-width: 836px;
  height: 100%;
  margin: 0 auto;
}
.q-page-article::after {
  content: '';
  clear: both;
  display: block;
}
.q-page-article__hero-pct {
  display: block;
  width: 100%;
  height: auto;
}
.q-page-article__title {
  width: 100%;
  margin-top: -0.6rem;
  line-height: 1.5;
  font-size: 2.4rem;
  font-weight: bold;
}
.q-page-article__date {
  width: 100px;
  text-align: right;
}
@media only screen and (max-width: 600px) {
  .q-page-article__date {
    width: 80px;
  }
}
.q-page-article__lead {
  margin: 0 0 50px 0;
  line-height: 2.2;
  text-align: justify;
  font-size: 1.2rem;
  font-weight: bold;
}
.q-page-article__member-card {
  margin: 0 1% 20px;
  width: 18%;
}
@media only screen and (max-width: 600px) {
  .q-page-article__member-card {
    margin: 0 2% 20px;
    width: 44%;
  }
}
.q-page-article__member-card::before {
  content: '';
  display: block;
  padding-top: 100%;
  border-radius: 50%;
  background-image: url("https://placehold.jp/148x148.png");
  background-size: cover;
}
.q-page-article__member-card:nth-child(n+6)::before {
  content: none;
}
.q-page-article__member-card--momita::before,
.q-page-article__member-card--nagaya::before,
.q-page-article__member-card--noda::before,
.q-page-article__member-card--seki::before,
.q-page-article__member-card--kiriyama::before {
  background-position-x: left;
}
.q-page-article__member-card--momita:hover::before,
.q-page-article__member-card--nagaya:hover::before,
.q-page-article__member-card--noda:hover::before,
.q-page-article__member-card--seki:hover::before,
.q-page-article__member-card--kiriyama:hover::before {
  background-position-x: right;
}
.q-page-article__member-card--momita::before {
  background-image: url("/-/media/orooro/2018/img/momita-connect.png");
}
.q-page-article__member-card--noda::before {
  background-image: url("/-/media/orooro/2018/img/noda-connect.png");
}
.q-page-article__member-card--nagaya::before {
  background-image: url("/-/media/orooro/2018/img/nagaya-connect.png");
}
.q-page-article__member-card--seki::before {
  background-image: url("/-/media/orooro/2018/img/seki-connect.png");
}
.q-page-article__member-card--kiriyama::before {
  background-image: url("/-/media/orooro/2018/img/kiriyama-connect.png");
}
.q-page-article__member-card.empty-cell {
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.member-card__occupation,
.member-card__name,
.member-card__school {
  padding: 5px 0;
}
.member-card__occupation {
  font-size: 0.8rem;
}
.member-card__name {
  font-size: 1.2rem;
  font-weight: bold;
}
.member-card__school {
  line-height: 1.4;
  font-size: 0.8rem;
}
.member-card__school .break {
  display: inline-block;
}
.q-page-article__discussion-blc {
  width: 100%;
}
.q-page-article__question {
  position: relative;
  margin: 0 0 30px 0;
  padding-left: 70px;
  line-height: 1.5;
  font-size: 2rem;
}
.q-page-article__question::before {
  content: '';
  position: absolute;
  top: -0.9rem;
  left: 0;
  font-size: 3.2rem;
  font-weight: bold;
  color: #28b7bc;
}
.q-page-article .question--1th::before {
  content: 'Q1';
}
.q-page-article .question--2th::before {
  content: 'Q2';
}
.q-page-article .question--3th::before {
  content: 'Q3';
}
.q-page-article .question--4th::before {
  content: 'Q4';
}
.q-page-article__answer {
  width: 100%;
  margin: 0 0 50px 0;
}
.q-page-article__answer:last-child {
  margin: 0 0 100px 0;
}
.q-page-article .answer__face-pct {
  position: relative;
  width: 80px;
  height: 80px;
  background-size: contain;
}
@media only screen and (max-width: 600px) {
  .q-page-article .answer__face-pct {
    width: 60px;
    height: 60px;
  }
}
.q-page-article .answer__face-pct::after {
  content: '';
  position: absolute;
  top: 88px;
  width: 80px;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  .q-page-article .answer__face-pct::after {
    width: 60px;
    top: 68px;
  }
}
.q-page-article .answer__face-pct.face-pct--seki {
  background-image: url("/-/media/orooro/2018/img/sekikao.png");
}
.q-page-article .answer__face-pct.face-pct--seki::after {
  content: '関';
}
.q-page-article .answer__face-pct.face-pct--nagaya {
  background-image: url("/-/media/orooro/2018/img/nagayakao.png");
}
.q-page-article .answer__face-pct.face-pct--nagaya::after {
  content: '長屋';
}
.q-page-article .answer__face-pct.face-pct--noda {
  background-image: url("/-/media/orooro/2018/img/nodakao.png");
}
.q-page-article .answer__face-pct.face-pct--noda::after {
  content: '野田';
}
.q-page-article .answer__face-pct.face-pct--kiriyama {
  background-image: url("/-/media/orooro/2018/img/kiriyamakao.png");
}
.q-page-article .answer__face-pct.face-pct--kiriyama::after {
  content: '桐山';
}
.q-page-article .answer__face-pct.face-pct--momita {
  background-image: url("/-/media/orooro/2018/img/momitakao.png");
}
.q-page-article .answer__face-pct.face-pct--momita::after {
  content: '籾田';
}
.q-page-article .answer__message {
  width: 100%;
  max-width: calc(100% - 100px);
  margin: -6px 0 0 0;
  line-height: 2.2;
  font-size: 1.2rem;
}
@media only screen and (max-width: 600px) {
  .q-page-article .answer__message {
    max-width: calc(100% - 80px);
  }
}
.q-page-article__catch-pct {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 50px 0;
}
.q-page-article__outside-q-link {
  text-align: center;
}
/* -----------------------------------------------
---------------------------- q content end ---
-------------------------------------------------- */
/* -----------------------------------------------
--- post content start --------------------------
-------------------------------------------------- */
.single-article {
  width: 100%;
  margin: 88px auto 0 auto;
  padding: 50px 20px;
}
@media only screen and (max-width: 768px) {
  .single-article {
    margin: 58px auto 0 auto;
  }
}
.single-article__content {
  width: 1040px;
  max-width: 100%;
  margin: 0 auto;
  padding: 50px 20px;
  background-color: #fff;
}
.single-article .post-article {
  width: 100%;
  max-width: 836px;
  margin: 0 auto;
}
.single-article .post-article .post-article-header {
  margin: 0 auto;
  font-size: 1.2rem;
}
.single-article .post-article .post-article-header__time {
  display: block;
  float: right;
}
.single-article .post-article .post-article-header__category {
  display: block;
  float: left;
  margin: 0 0 20px 0;
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.single-article .post-article .post-article-header__category--employee {
  background-color: #ec6e65;
}
body:not(.ios) .single-article .post-article .post-article-header__category--employee:hover {
  background-color: rgba(236,110,101,0.8);
}
.single-article .post-article .post-article-header__category--work {
  background-color: #23ade5;
}
body:not(.ios) .single-article .post-article .post-article-header__category--work:hover {
  background-color: rgba(35,173,229,0.8);
}
.single-article .post-article .post-article-header__category--environment {
  background-color: #ecb935;
}
body:not(.ios) .single-article .post-article .post-article-header__category--environment:hover {
  background-color: rgba(236,185,53,0.8);
}
.single-article .post-article .post-article-header__category--event {
  background-color: #f18888;
}
body:not(.ios) .single-article .post-article .post-article-header__category--event:hover {
  background-color: rgba(241,136,136,0.8);
}
.single-article .post-article .post-article-header__category--hunting {
  background-color: #5976b9;
}
body:not(.ios) .single-article .post-article .post-article-header__category--hunting:hover {
  background-color: rgba(89,118,185,0.8);
}
.single-article .post-article .post-article-header__title {
  clear: both;
  margin: 0 0 20px 0;
  font-weight: bold;
  font-size: 2rem;
}
.single-article .post-article .post-article-header__author {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 20px 0;
  text-decoration: none;
}
body:not(.ios) .single-article .post-article .post-article-header__author:hover > .post-article-header__author-name {
  color: #28b7bc;
}
body:not(.ios) .single-article .post-article .post-article-header__author:hover > .post-article-header__author-name::before {
  content: '';
  width: 100%;
}
.single-article .post-article .post-article-header__author-img {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-color: #aaa;
}
.single-article .post-article .post-article-header__author-name {
  position: relative;
  margin: 0 0 0 15px;
  text-decoration: none;
  color: #28b7bc;
}
.single-article .post-article .post-article-header__author-name::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: #28b7bc;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.single-article .post-article__crosshead {
  margin: 0 auto 20px auto;
  padding: 15px;
  font-size: 1.6rem;
  font-weight: bold;
}
.single-article .post-article__crosshead--1th {
  border-top: 2px solid #28b7bc;
  border-bottom: 2px solid #28b7bc;
}
.single-article .post-article__crosshead--2th {
  position: relative;
  background-color: #28b7bc;
  color: #fff;
}
.single-article .post-article__crosshead--2th::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  border-right: solid 20px rgba(40,183,188,0.3);
  border-bottom: solid 15px transparent;
}
.single-article .post-article__crosshead--3th {
  display: inline-block;
  width: 100%;
  line-height: 1.3;
  vertical-align: middle;
  border-radius: 30px 0 0 30px;
  background-color: #28b7bc;
  color: #fff;
}
.single-article .post-article__crosshead--3th::before {
  content: '●';
  margin: 0 15px 0 0;
  color: #fff;
}
.single-article .post-article__crosshead--4th {
  position: relative;
}
.single-article .post-article__crosshead--4th::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background: repeating-linear-gradient(-45deg, #28b7bc, #28b7bc 2px, #fff 2px, #fff 4px);
}
.single-article .post-article__crosshead--5th {
  position: relative;
  padding: 15px 15px 15px 45px;
  background-color: #28b7bc;
  color: #fff;
}
.single-article .post-article__crosshead--5th::before {
  content: '\f14a';
  font-family: 'Font Awesome 5 Free';
  position: absolute;
  left: 15px;
}
.single-article .post-article__crosshead--6th {
  position: relative;
  border-left: calc(1.6rem + 30px) solid #28b7bc;
  background-color: rgba(40,183,188,0.1);
}
.single-article .post-article__crosshead--6th::before {
  content: '\f0a1';
  font-family: 'Font Awesome 5 Free';
  position: absolute;
  top: 50%;
  left: -37.5px;
  color: #fff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.single-article .post-article__crosshead--7th {
  position: relative;
  padding: 15px 10px 15px 80px;
  border-radius: 30px 15px 15px 30px;
  background-color: rgba(40,183,188,0.1);
}
.single-article .post-article__crosshead--7th::before {
  content: '\f0a1';
  font-family: 'Font Awesome 5 Free';
  position: absolute;
  top: -9px;
  left: -5px;
  width: 70px;
  height: 70px;
  border: 5px solid #fff;
  border-radius: 50%;
  line-height: 60px;
  text-align: center;
  background-color: #28b7bc;
  color: #fff;
}
.single-article .post-article__post-img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 0 30px 0;
}
.single-article .post-article__body {
  margin: 0 auto;
}
.single-article .post-article__body-text {
  margin: 0 0 30px 0;
  line-height: 2.2;
  text-align: justify;
  font-size: 1.2rem;
}
.single-article .post-article__footer {
  margin: 50px auto 0 auto;
}
.single-article .post-article__footer-message-title {
  margin: 0 0 20px 0;
  font-size: 1.6rem;
  font-weight: bold;
}
.single-article .post-article__footer-message-text {
  margin: 0 0 30px 0;
  line-height: 2.2;
  font-size: 1.2rem;
  font-weight: bold;
}
.article-footer-link {
  display: block;
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
  text-decoration: none;
  color: #333;
  -webkit-box-shadow: 3px 3px 3px 3px rgba(0,0,0,0.2);
  box-shadow: 3px 3px 3px 3px rgba(0,0,0,0.2);
  -webkit-transition: opacity ease 0.2s, -webkit-box-shadow ease 0.2s;
  transition: opacity ease 0.2s, -webkit-box-shadow ease 0.2s;
  transition: box-shadow ease 0.2s, opacity ease 0.2s;
  transition: box-shadow ease 0.2s, opacity ease 0.2s, -webkit-box-shadow ease 0.2s;
}
@media only screen and (max-width: 768px) {
  .article-footer-link {
    width: 500px;
  }
}
@media only screen and (max-width: 600px) {
  .article-footer-link {
    width: 300px;
  }
}
@media only screen and (min-width: 600px) {
  .article-footer-link::after {
    content: '';
    clear: both;
    display: block;
  }
}
body:not(.ios) .article-footer-link:hover {
  -webkit-box-shadow: 5px 5px 7px rgba(0,0,0,0.2);
  box-shadow: 5px 5px 7px rgba(0,0,0,0.2);
  opacity: 0.8;
}
.article-footer-link__pct,
.article-footer-link__txt-wrp {
  float: left;
}
@media only screen and (max-width: 600px) {
  .article-footer-link__pct,
  .article-footer-link__txt-wrp {
    float: none;
  }
}
.article-footer-link__pct {
  width: 250px;
  height: auto;
}
@media only screen and (max-width: 600px) {
  .article-footer-link__pct {
    width: 100%;
  }
}
.article-footer-link__txt-wrp {
  width: calc(100% - 250px);
  padding: 20px 30px;
}
@media only screen and (max-width: 600px) {
  .article-footer-link__txt-wrp {
    width: 100%;
    padding: 10px 20px;
  }
}
.article-footer-link__time {
  font-size: 1rem;
}
.article-footer-link__title {
  margin: 25px 0 0 0;
  line-height: 1.5;
  font-size: 1.4rem;
  font-weight: bold;
}
@media only screen and (max-width: 600px) {
  .article-footer-link__title {
    margin: 5px 0 0;
  }
}
.article-footer-link__title .break-line {
  display: block;
}
.article-footer-link__title .break-line:nth-child(2) {
  text-align: right;
}
.post-nav {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  color: #28b7bc;
}
.post-nav-wrapper {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  padding: 70px 0;
}
@media only screen and (max-width: 768px) {
  .post-nav-wrapper {
    padding: 30px 0;
  }
}
.post-nav__link::after {
  content: '';
  visibility: hidden;
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
}
.post-nav__link--top {
  text-align: center;
}
.post-nav__link--bottom {
  height: 60px;
  margin: 30px 0 0 0;
}
@media only screen and (max-width: 992px) {
  .post-nav__link--bottom {
    overflow: hidden;
  }
}
.post-nav__link-all {
  display: block;
  max-width: 500px;
}
@media only screen and (max-width: 992px) {
  .post-nav__link-all {
    max-width: 400px;
  }
}
@media only screen and (max-width: 768px) {
  .post-nav__link-all {
    max-width: 100%;
  }
}
.post-nav__link-each {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 50%;
  height: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
body:not(.ios) .post-nav__link-each:hover {
  opacity: 0.6;
}
body:not(.ios) .post-nav__link-each:hover .post-nav__link-each-words::before {
  left: -60px;
}
body:not(.ios) .post-nav__link-each:hover .post-nav__link-each-words::after {
  right: -43px;
}
.post-nav__link-each::after {
  content: '';
  visibility: hidden;
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
}
.post-nav__link-each-words {
  position: relative;
  height: 100%;
  width: 400px;
}
@media only screen and (max-width: 992px) {
  .post-nav__link-each-words {
    width: 280px;
    height: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .post-nav__link-each-words {
    width: 200px;
  }
}
.post-nav__link-each-words-text {
  position: absolute;
  color: #585858;
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .post-nav__link-each-words-text {
    display: none;
  }
}
.post-nav__link-each-words-title {
  position: absolute;
  width: 100%;
  height: 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #000;
  font-weight: bold;
  font-size: 16px;
}
@media only screen and (max-width: 992px) {
  .post-nav__link-each-words-title {
    width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  .post-nav__link-each-words-title {
    display: none;
    top: 50%;
    -webkit-transform: translateY(-45%);
    transform: translateY(-45%);
    font-size: 14px;
  }
}
.post-nav__link-each-words-title--responsive {
  display: none;
}
@media only screen and (max-width: 600px) {
  .post-nav__link-each-words-title--responsive {
    position: absolute;
    top: 50%;
    display: block;
    width: 100%;
    height: 20px;
    color: #000;
    font-weight: bold;
    font-size: 13px;
  }
}
.post-nav__link-prev {
  float: left;
  border-right: 2px solid #000;
}
.post-nav__link-prev-words {
  margin: 0 0 0 70px;
}
@media only screen and (max-width: 768px) {
  .post-nav__link-prev-words {
    margin-top: -5px;
  }
}
.post-nav__link-prev-words::before {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  content: '';
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  left: -50px;
  top: calc(50% - 6px);
  border-bottom: solid 3px;
  border-left: solid 3px;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  color: #000;
}
@media only screen and (max-width: 992px) {
  .post-nav__link-prev-words::before {
    width: 20px;
    height: 20px;
    top: calc(75% - 2px);
  }
}
@media only screen and (max-width: 600px) {
  .post-nav__link-prev-words::before {
    width: 15px;
    height: 15px;
    left: -45px;
    top: calc(60% - 1px);
  }
}
.post-nav__link-prev-words-text {
  top: 10px;
  left: 0;
}
.post-nav__link-prev-words-title {
  top: 30px;
  left: 0;
}
.post-nav__link-next {
  float: right;
}
.post-nav__link-next-words {
  float: right;
  margin: 0 70px 0 0;
}
@media only screen and (max-width: 768px) {
  .post-nav__link-next-words {
    margin-top: -5px;
  }
}
.post-nav__link-next-words::after {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  content: '';
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  right: -33px;
  top: calc(50% - 6px);
  border-top: solid 3px;
  border-right: solid 3px;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  color: #000;
}
@media only screen and (max-width: 992px) {
  .post-nav__link-next-words::after {
    width: 20px;
    height: 20px;
    top: calc(70% - 2px);
  }
}
@media only screen and (max-width: 600px) {
  .post-nav__link-next-words::after {
    width: 15px;
    height: 15px;
    right: -30px;
    top: calc(60% - 1px);
  }
}
.post-nav__link-next-words-text {
  top: 10px;
  right: 0;
}
.post-nav__link-next-words-title {
  top: 30px;
  right: 0;
  text-align: right;
}
.post-nav__link-next-words-title--responsive {
  text-align: right;
}
/* -----------------------------------------------
--- firefox bugfix start -------------------------
-------------------------------------------------- */
@-moz-document url-prefix() {
  .nav-global__modal-toggle-input:checked ~ .nav-global__modal-open .icon {
    transform: rotate(45deg);
  }
  .nav-global__modal-toggle-input:checked ~ .nav-global__modal-open .icon::before {
    top: 0px !important;
    transform: rotate(90deg);
  }
@media only screen and (max-width: 768px) {
    .nav-global__modal-toggle-input:checked ~ .nav-global__modal-open .icon::before {
      top: 0px !important;
    }
}
  .nav-global__modal-open .icon::before {
    top: -20px !important;
    bottom: 0 !important;
  }
@media only screen and (max-width: 768px) {
    .nav-global__modal-open .icon::before {
      top: -14px !important;
      bottom: 0 !important;
    }
}
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .hamburger-blc.is-show {
    height: calc(100vh - 88px);
  }
}
@media only screen and (-ms-high-contrast: active) and (max-width: 768px), only screen and (-ms-high-contrast: none) and (max-width: 768px) {
  .hamburger-blc.is-show {
    height: calc(100vh - 58px);
  }
}
@supports (-ms-ime-align: auto) {
  .hamburger-blc.is-show {
    height: calc(100vh - 88px);
  }
@media only screen and (max-width: 768px) {
    .hamburger-blc.is-show {
      height: calc(100vh - 58px);
    }
}
}

/*# sourceMappingURL=style.css.map */
