@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

body, html {
  height: 100%;
}

body {
  font-family: "Noto Sans JP","游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 400;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  color: #000;
}

body.stop-scrolling {
  height: 100%;
  overflow: hidden !important;
}

.h1, h1 {
  font-size: 26px;
}

a {
  transition: color 0.2s, background-color 0.2s, border-color 0.2s, text-decoratin 0.2s;
  transition: all 0.2s;
}

a:link, a:visited {
  color: #333;
}

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

ul, ol {
  list-style: none;
}

.row {
  margin-right: -20px;
  margin-left: -20px;
}

@media (min-width: 768px) {
  .twocolumn .col-md-3 {
    flex: 0 0 240px;
    max-width: 240px;
  }

  .twocolumn .col-md-9 {
    order: 2;
  }

  .twocolumn .col-md-9 > .row {
    display: block;
  }
}
.navbar-default .navbar-nav > li > a {
  color: #333;
  outline: none;
  position: relative;
}

@media (max-width: 767px) {
  body {
    min-width: auto;
  }

  .navbar-default .navbar-nav > li.current-menu-item > a:before,
  .navbar-default .navbar-nav > li > a:hover:before, .navbar-default .navbar-nav > li > a:focus:before {
    border-bottom: none;
  }
}
@media (min-width: 768px) {
  .container {
    width: 1120px;
    max-width: 1120px;
  }

  .header > .container {
    min-width: 1120px;
    width: auto;
    max-width: 1120px;
    padding: 0 30px;
  }

  .navbar-default .navbar-nav > li > a {
    color: #333;
    outline: none;
    padding: 8px 0 0 0;
    height: 79px;
    text-align: center;
    font-weight: bold;
    font-size: 15px;
  }

  .navbar-default .navbar-nav > li > a span {
    color: #666666;
    outline: none;
    padding: 8px 0 0 0;
    height: 79px;
    font-size: 10px;
    text-align: center;
    font-weight: normal;
    margin-top: 6px;
  }
}
/*pc sp switch*/
.pc {
  display: block !important;
}

span.pc {
  display: inline !important;
}

.sp {
  display: none !important;
}

@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }

  span.pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }

  span.sp {
    display: inline !important;
  }
}
/*共通*/
.fr.between {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between !important;
  justify-content: space-between !important;
}

.fr.start {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start !important;
  justify-content: flex-start !important;
}

.fr.reverse {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.fr.wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.fr.center {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}

.fr.hcenter {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

.fr.bottom {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end !important;
  align-items: flex-end !important;
}

.fr.top {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start !important;
  align-items: flex-start !important;
}

/*btns*/
a.btn {
  display: block;
  padding: 0;
  text-align: center;
  line-height: 48px;
  height: 50px;
  color: #000;
  max-width: 230px;
  background-color: #FFE000;
  border-radius: 0px;
  position: relative;
  transition: all 0.2s;
}

a.btn::before {
  position: absolute;
  right: 25px;
  top: 28px;
  content: "";
  height: 1px;
  width: 20px;
  display: block;
  background-color: #000;
}

a.btn::after {
  position: absolute;
  transform: rotate(42deg);
  content: "";
  width: 10px;
  height: 1px;
  right: 22px;
  top: 25px;
  background-color: #000;
}

a.btn:hover {
  background-color: #000;
  color: #FFE000 !important;
}

a.btn:hover::before {
  background-color: #FFE000;
}

a.btn:hover::after {
  background-color: #FFE000;
}

.btn-primary {
  color: #fff !important;
  background-color: #0A59A8;
  border-color: #0A59A8;
  outline: none;
}

.btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover, .open > .dropdown-toggle.btn-primary.focus, .open > .dropdown-toggle.btn-primary:focus, .open > .dropdown-toggle.btn-primary:hover {
  color: #fff;
  background-color: #0A59A8;
}

.btn-primary.active, .btn-primary:active, .open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #006AB3;
}

.btn-primary:hover {
  opacity: .8;
  color: #fff;
  background-color: #006AB3;
}

.btn-primary.focus, .btn-primary:focus {
  color: #fff;
  background-color: #006AB3;
}

#header {
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  background-color: transparent;
  transition: all 0.2s;
  height: 100px;
}

/*メニュー PC、SP同じ*/
.offcanvas-stop-scrolling {
  height: 100%;
  overflow: auto !important;
}

#offcanvas.navbar-offcanvas {
  max-width: 250px;
  left: -250px;
  padding-left: 0px;
  padding-right: 0px;
}

#offcanvas.navbar-offcanvas.navbar-offcanvas-right.offcanvas-transform {
  background-color: #FFE000;
  overflow: hidden;
  padding-top: 0px;
  height: 100vh;
}

@media (min-width: 768px) {
  .navbar-offcanvas .menu-globalmenu-container {
    position: absolute;
    left: 0;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
  }
}
#offcanvas.navbar-offcanvas .navbar-nav > li > a {
  color: #000;
  font-weight: 500;
  font-size: 20px;
  padding: 0 50px;
  line-height: 70px;
  position: relative;
}

#offcanvas.navbar-offcanvas .navbar-nav > li > a:focus,
#offcanvas.navbar-offcanvas .navbar-nav > li > a:hover {
  text-decoration: none;
  background-color: transparent;
  color: #000;
}

#offcanvas.navbar-offcanvas.offcanvas-transform.in {
  -webkit-transform: translateX(-250px);
  transform: translateX(-250px);
}

#offcanvas.navbar-offcanvas.navbar-offcanvas-right {
  left: auto;
  right: -250px;
}

#offcanvas.navbar-offcanvas.navbar-offcanvas-right {
  left: auto;
  right: -250px;
}

@media screen and (max-width: 767px) {
  #offcanvas.navbar-offcanvas .navbar-nav > li > a {
    font-size: 16px;
    padding: 0 30px;
    line-height: 1.5;
    margin-bottom: 20px;
    position: relative;
    display: block;
  }

  #offcanvas.navbar-offcanvas .navbar-nav > li .sub-menu {
    margin-bottom: 10px;
  }

  #offcanvas.navbar-offcanvas .navbar-nav > li .sub-menu > li {
    margin-bottom: 15px;
  }

  #offcanvas.navbar-offcanvas .navbar-nav > li .sub-menu > li a {
    font-size: 14px;
    padding: 0 30px 0 50px;
    line-height: 1.5;
    position: relative;
    color: #000;
    text-decoration: none;
  }

  #offcanvas.navbar-offcanvas .navbar-nav > li .sub-menu a:before {
    content: "-";
    display: inline-block;
    margin-right: 5px;
  }

  #offcanvas.navbar-offcanvas .navbar-nav > li.menu-item-object-works .sub-menu > li a {
    font-size: 16px;
    padding: 0 30px;
    line-height: 1.5;
    margin-bottom: 15px;
    position: relative;
    color: #fff;
  }

  #offcanvas.navbar-offcanvas .navbar-nav > li.menu-item-object-works .sub-menu a:before {
    display: none;
  }

  /*btns*/
  a.btn {
    line-height: 38px;
    height: 40px;
    font-size: 13px;
  }

  a.btn::before {
    position: absolute;
    right: 15px;
    top: 20px;
    content: "";
    height: 1px;
    width: 16px;
    display: block;
    background-color: #000;
  }

  a.btn::after {
    position: absolute;
    transform: rotate(42deg);
    content: "";
    width: 6px;
    height: 1px;
    right: 13px;
    top: 18px;
    background-color: #000;
  }
}
.fixed.header .navbar-default .navbar-collapse {
  width: 250px;
  float: none !important;
  margin: 0px 0px 0 0px;
  /*margin-top: 32px;*/
  padding: 0 0px 0 0;
  transition: all 0.1s;
  display: none　 !important;
  position: absolute;
  right: 0;
  /*transition: width 0.2s ease-out;*/
}

.navbar-header {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  float: none;
  position: relative;
}

.navbar-header:before,
.navbar-header:after {
  display: none;
}

.fixed.header .navbar-collapse.collapse {
  display: none　 !important;
  height: auto !important;
  padding-bottom: 0;
  overflow: visible !important;
}

@media (min-width: 767px) {
  .fixed#header {
    /*border-bottom: 1px solid #CCCCCC;*/
    transition: all 0.2s;
    background-color: #fff;
  }

  .fixed.header .navbar-nav > li:before {
    border-right: none;
  }

  .fixed.header .navbar-nav > li:first-child:after {
    border-right: none;
  }

  .header .rightmenu {
    position: absolute;
    top: 32px;
    right: 50px;
    display: block;
    margin: 0px 0 0px 0;
    line-height: 1;
    height: 34px;
    width: 34px;
  }

  .fixed.header .navbar-default .navbar-nav > li > a {
    color: #333;
    outline: none;
    padding: 0px 15px 0;
    height: 90px;
    text-align: center;
    font-weight: normal;
    font-size: 18px;
    line-height: 92px;
  }

  .fixed.header .navbar-default .navbar-nav > li > a span {
    display: none;
  }

  .fixed.header + .wrapper {
    padding-top: 100x;
  }
}
.wrapper {
  padding-top: 100px;
}

#contents {
  margin-top: 0px;
  padding-bottom: 0;
}

.social_link {
  height: auto;
  display: inline-block;
  vertical-align: top;
  padding: 0px 0px 0 0;
}

@media screen and (max-width: 767px) {
  .wrapper {
    padding-top: 62px;
    overflow: hidden;
  }

  #contents {
    margin-top: 0px;
    padding-top: 0px;
    background-size: 100% auto !important;
  }

  #offcanvas.navbar-offcanvas {
    max-width: 85%;
    left: -100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  #offcanvas.navbar-offcanvas.navbar-offcanvas-right.offcanvas-transform {
    padding-top: 60px;
    margin-top: 0px;
  }

  #offcanvas.navbar-offcanvas.offcanvas-transform.in {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    padding-left: 0;
    padding-right: 0;
  }

  #offcanvas.navbar-offcanvas.navbar-offcanvas-right {
    left: auto;
    right: -100%;
  }

  .navbar-toggle.collapsed:hover, .navbar-toggle:hover {
    background-color: #FFE000 !important;
  }

  #offcanvas.navbar-offcanvas.navbar-offcanvas-right.offcanvas-transform .menu-spmenu-container {
    height: calc(100vh - 60px) !important;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 100px;
  }
}
@media (max-width: 480px) {
  #contents {
    padding-bottom: 0;
  }
}
@media (min-width: 768px) {
  #header {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  #contents {
    min-height: 500px;
  }

  #header .logo {
    display: block;
    margin: 0px 0 0px 40px;
    vertical-align: top;
    height: 90px;
    padding-top: 11px;
  }

  .description {
    flex-grow: 5;
    padding-left: 30px;
    font-size: 10px;
  }

  .navbar-brand {
    /*transition: all 0.2s;*/
    display: block;
    margin: 0px 0 0px 0px;
    padding: 0;
    width: 264px;
    height: 66px;
    background: #fff url("../images/logo.svg") center center no-repeat;
    background-size: 264px 66px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }

  .gmenu {
    vertical-align: top;
    display: inline-block;
    margin: 0px 40px 0px 0px;
  }

  .gmenu ul.navi {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }

  .gmenu ul.navi > li {
    margin: 0;
    padding: 0;
  }
  .gmenu ul.navi > li .sub-menu {
    z-index: 1;
    height: 0px;
    overflow: hidden;
    transition: all 0.2s;
    width: 100%;
    position: absolute;
    top: 100px;
    left: 0;
    background-color: #eee;
    display: flex;
    justify-content: center;
  }
  .gmenu ul.navi > li .sub-menu li a {
    margin: 0 20px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 240px;
    height: 150px;
    text-align: center;
    color: #fff;
    font-weight: 500;
    border-bottom: 4px solid #FFE000;
    transition: all 0.2s;
  }
  .gmenu ul.navi > li .sub-menu li a:hover {
    opacity: .8;
  }
  .gmenu ul.navi > li:hover .sub-menu {
    padding: 40px 0 0;
    height: 230px;
    transition: all 0.2s;
    z-index: 2;
  }
  .gmenu ul.navi > li.nolink:hover > a {
    background-color: #eee;
  }
  .gmenu ul.navi > li.m-staff .sub-menu li:first-child a {
    background: url("../images/gmenu-staff01.jpg") no-repeat;
    background-size: cover;
  }
  .gmenu ul.navi > li.m-staff .sub-menu li:nth-child(2) a {
    background: url("../images/gmenu-staff02.jpg") no-repeat;
    background-size: cover;
  }
  .gmenu ul.navi > li.m-staff .sub-menu li:nth-child(3) a {
    background: url("../images/gmenu-staff03.jpg") no-repeat;
    background-size: cover;
  }
  .gmenu ul.navi > li.m-staff .sub-menu li:nth-child(4) a {
    background: url("../images/gmenu-staff04.jpg") no-repeat;
    background-size: cover;
  }
  .gmenu ul.navi > li.m-part .sub-menu li:first-child a {
    background: url("../images/gmenu-staff05.jpg") no-repeat;
    background-size: cover;
  }
  .gmenu ul.navi > li.m-part .sub-menu li:nth-child(2) a {
    background: url("../images/gmenu-staff06.jpg") no-repeat;
    background-size: cover;
  }

  .gmenu ul.navi > li > a {
    display: block;
    color: #000;
    line-height: 100px;
    padding: 0 16px;
    font-size: 16px;
    transition: all 0.2s;
    text-decoration: none;
    position: relative;
  }

  .gmenu ul.navi > li.nolink > a:hover,
  .gmenu ul.navi > li > a:hover {
    background-color: #eee;
  }

  .gmenu ul.navi > li.current-menu-item > a:before,
  .gmenu ul.navi > li.current-menu-parent > a:before,
  .gmenu ul.navi > li.current-menu-parent:hover > a:before,
  .gmenu ul.navi > li.current-menu-parent > a:hover:before {
    content: "";
    display: block;
    position: absolute;
    height: 8px;
    width: 86px;
    background-color: #000;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .home #contents {
    padding-top: 0px;
  }

  .navbar-header .rightmenu {
    display: none;
  }
}
/*menu*/
.navbar-toggle {
  z-index: 1000;
  position: fixed;
  top: 0;
  right: 20px;
  display: block !important;
  float: none;
  padding: 0;
  margin-top: 0px;
  margin-right: 0px !important;
  margin-bottom: 0px;
  background-image: none;
  border: 0;
  height: 86px;
  width: 86px;
  background-color: #FFE000;
  border-radius: 0;
  background: #fff url("../images/icon_menu.svg") no-repeat center center;
  background-size: 50px 22px;
}

.navbar-toggle.is-open {
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  transition: all .2s;
  background: #FFE000 url("../images/icon_close.svg") no-repeat center center;
  background-size: 22px 22px;
}

.navbar-toggle .bar {
  display: none;
  position: absolute;
  top: 52%;
  margin-top: -3px;
  left: 2px;
  -webkit-transition: background 0.3s 0.3s;
  -moz-transition: background 0.3s 0.3s;
  transition: background 0.3s 0.3s;
}

.navbar-toggle:focus {
  background-color: #FFE000;
  border-radius: 0;
}

.navbar-toggle:hover {
  background-color: #FFE000;
}

.navbar-toggle.is-open:focus,
.navbar-toggle.is-open:hover {
  background-color: #FFE000;
}

.navbar-toggle .bar, .navbar-toggle .bar::before, .navbar-toggle .bar::after {
  display: none;
  position: absolute;
  display: inline-block;
  height: 2px;
  width: 40px;
  background: #fff;
  /*006AB3*/
  left: 30px;
}

.navbar-toggle .bar {
  background-color: transparent;
}

.navbar-toggle.collapsed .bar {
  background: #fff;
  display: none;
}

.navbar-toggle .bar::before {
  left: 0px;
}

.navbar-toggle .bar::after {
  left: 0px;
}

.navbar-toggle .bar::before, .navbar-toggle .bar::after {
  content: '';
  right: 0;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 0% 50%;
  -moz-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  -o-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-transition: -webkit-transform 0.3s 0.3s;
  -moz-transition: -moz-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s;
}

.navbar-toggle .bar::before {
  top: -12px;
}

.navbar-toggle .bar::after {
  top: 12px;
}

.navbar-toggle .bar::before {
  -webkit-transform: translateX(3px) translateY(0px) rotate(45deg);
  -moz-transform: translateX(3px) translateY(0px) rotate(45deg);
  -ms-transform: translateX(3px) translateY(0px) rotate(45deg);
  -o-transform: translateX(3px) translateY(0px) rotate(45deg);
  transform: translateX(3px) translateY(0px) rotate(45deg);
}

.navbar-toggle .bar::after {
  -webkit-transform: translateX(3px) translateY(3px) rotate(-45deg);
  -moz-transform: translateX(3px) translateY(3px) rotate(-45deg);
  -ms-transform: translateX(3px) translateY(3px) rotate(-45deg);
  -o-transform: translateX(3px) translateY(3px) rotate(-45deg);
  transform: translateX(3px) translateY(3px) rotate(-45deg);
}

.navbar-toggle.collapsed .bar::before {
  -webkit-transform: translateX(0px) translateY(0px) rotate(0);
  -moz-transform: translateX(0px) translateY(0px) rotate(0);
  -ms-transform: translateX(0px) translateY(0px) rotate(0);
  -o-transform: translateX(0px) translateY(0px) rotate(0);
  transform: translateX(0) translateY(0px) rotate(0);
  background-color: #fff;
}

.navbar-toggle.collapsed .bar::after {
  -webkit-transform: translateX(0px) translateY(0px) rotate(0);
  -moz-transform: translateX(0px) translateY(0px) rotate(0);
  -ms-transform: translateX(0px) translateY(0px) rotate(0);
  -o-transform: translateX(0px) translateY(0px) rotate(0);
  transform: translateX(0px) translateY(0px) rotate(0);
  background-color: #fff;
}

#overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.64);
  z-index: 10;
}

@media (min-width: 768px) {
  .navbar-collapse {
    z-index: 9;
    position: fixed;
    top: 0;
    right: 0;
  }

  .navbar-collapse.in {
    height: 100% !important;
    background-color: #000;
  }

  .navbar-toggle {
    display: none !important;
  }
}
.navbar {
  margin-bottom: 0px !important;
}

.navbar-default {
  background-color: transparent;
  border: 0;
  padding: 0;
}

.container-fluid {
  padding-right: 0px;
  padding-left: 0px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  min-width: 1200px;
}

.page-header {
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 450px;
  position: relative;
  display: -webkit-flex;
  display: flex;
  border-bottom: 0;
}

.home .page-header {
  height: 662px;
}

.page-header > div:first-child {
  width: calc(50% - 540px);
  min-width: calc(50% - 540px);
  background-color: #fff;
}

.page-header > div.bg {
  background-size: cover;
  background-position: center center;
  background-color: #fff;
  background-repeat: no-repeat;
  -webkit-flex-grow: 3;
  flex-grow: 3;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.home .page-header > div.bg {
  background-image: url("../images/bg-top.jpg");
}

.home .page-header > div.bg::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/frame-top.svg") repeat-x;
  background-size: 1340px 662px;
}

.category-new-graduates .page-header > div.bg {
  background-image: url("../images/bg-new-graduates.jpg");
}

.category-mid-career .page-header > div.bg {
  background-image: url("../images/bg-mid-career.jpg");
}

.category-disability .page-header > div.bg {
  background-image: url("../images/bg-disability.jpg");
}

.page-contact .page-header > div.bg {
  background-image: url("../images/bg-contact.jpg");
}

.page-environment .page-header > div.bg {
  background-image: url("../images/bg-environment.jpg");
}

.page-staff-child .page-header > div.bg,
.page-staff .page-header > div.bg {
  background-image: url("../images/bg-staff.jpg");
}

.page-part .page-header > div.bg {
  background-image: url("../images/bg-part.jpg");
}

.page-message .page-header > div.bg {
  background-image: url("../images/bg-message.jpg");
}

.page-header .txtarea {
  position: absolute;
  left: 128px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.page-header .container {
  position: relative;
  height: 100%;
}

.page-header .container .row {
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
}

.page-header .ttlarea {
  text-align: left;
}

.page-header .ttlarea h1 {
  font-size: 55px;
  color: #000;
  padding: 10px;
  background-color: #FFE000;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.1;
  display: inline-block;
}

.page-header .ttlarea .sub {
  font-size: 24px;
  color: #000;
  padding: 6px 13px;
  background-color: #FFE000;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1.1;
  display: inline-block;
}

.home .page-header .ttlarea h1 {
  display: inline;
  line-height: 1.1;
  padding: 0;
  text-align: left;
  font-size: 55px;
  background-color: transparent;
  margin-bottom: 20px;
}

.home .page-header .ttlarea h1 span {
  line-height: 1;
  background-color: #FFE000;
  display: inline-block;
  padding: 0 15px 2px;
}

.home .page-header .page-header__title::before {
  content: "";
  height: 3px;
  display: block;
  width: 50px;
  background-color: #000;
  margin: 25px 0;
}

.page-header .page-header__title {
  font-size: 21px;
  padding-left: 0px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  text-align: left;
  text-shadow: 0 0 3px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff;
}

.home .page-header .page-header__title {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-shadow: 0 0 3px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff,0 0 4px #fff;
}

.home .page-header .page-header__title span {
  display: block;
  font-weight: bold;
  font-size: 23px;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .page-header {
    margin: 0;
    padding: 0px 0px;
    height: 225px;
  }

  .home .page-header {
    margin: 0;
    padding: 0px 0px;
    height: 393px;
  }

  .page-contact .page-header > div.bg {
    background-image: url("../images/bg-contact.jpg");
    background-position: 70% center;
  }

  .page-header > div:first-child {
    width: 76px;
    min-width: 76px;
  }

  .home .page-header > div:first-child {
    display: none;
  }

  .page-header .txtarea {
    position: absolute;
    left: 20px;
    z-index: 1;
  }

  .home .page-header .txtarea {
    top: 60%;
  }

  .page-header .ttlarea .sub {
    display: inline-block;
    font-size: 16px;
    padding: 2px 8px;
    font-weight: 700;
    background-color: #FFE000;
    text-align: left;
    margin-bottom: 10px;
  }

  .page-header .ttlarea h1 {
    font-size: 28px;
    color: #000;
    padding: 5px 10px;
    background-color: #FFE000;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1;
  }

  .page-header .page-header__title {
    font-size: 16px;
  }

  .home .page-header .ttlarea h1 {
    font-size: 40px;
    background-color: transparent;
    margin-bottom: 12px;
  }

  .home .page-header .ttlarea h1 span {
    padding: 0 5px 1px;
  }

  .home .page-header .page-header__title::before {
    height: 1px;
    width: 25px;
    margin: 15px 0;
  }

  .page-header .page-header__title {
    font-size: 21px;
    padding-left: 0px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    text-align: left;
  }

  .home .page-header .page-header__title {
    font-size: 12px;
    text-shadow: none;
    text-shadow: 0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
  }

  .home .page-header .page-header__title span {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .home .page-header > div.bg {
    background-image: url("../images/sp_bg-top.jpg");
  }

  .home .page-header > div.bg::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url("../images/sp_frame-top.svg") no-repeat;
    background-size: 100% auto;
    background-position: center calc(100% + 1px);
  }
}
.gmenu .nolink {
  cursor: pointer;
}

.gmenu .nolink:before {
  cursor: default;
}

.nolink > a {
  pointer-events: none;
  cursor: pointer;
}

a.nolink {
  pointer-events: none;
  cursor: pointer;
}

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

  .header .rightmenu {
    display: none;
  }

  .row {
    margin-left: 0;
    margin-right: 0;
  }

  .fixed.header .navbar-default .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }

  .navbar-nav {
    margin: 0;
  }

  .navbar-default {
    padding-left: 0;
    padding-right: 0;
  }

  .navbar-toggle {
    outline: none !important;
    height: 62px;
    width: 62px;
    z-index: 1001;
    right: 0;
    background: #FFE000 url("../images/sp_icon_menu.svg") no-repeat center center;
    background-size: 30px 14px;
  }

  .navbar-toggle .bar, .navbar-toggle .bar::before, .navbar-toggle .bar::after {
    height: 1px;
    width: 20px;
    left: 21px;
  }

  .navbar-toggle .bar::before {
    left: 0;
    top: -6px;
  }

  .navbar-toggle .bar::after {
    left: 0;
    top: 6px;
  }

  .navbar > .container, .navbar > .container-fluid {
    justify-content: flex-start;
  }

  #header .logo {
    display: inline-block;
    margin: 0px 0 0px 20px;
  }

  .description {
    padding-top: 5px;
    font-size: 9px;
    padding-left: 20px;
  }

  .navbar-brand {
    background: url(../images/logo.svg) no-repeat;
    background-size: 160px 40px;
    width: 160px;
    height: 40px;
    margin: 0;
    padding: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }

  .container-fluid > .navbar-header {
    margin-right: 0;
    margin-left: 0;
    min-height: 62px;
    border: 0 !important;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
  }

  #header {
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    transition: all 0.2s;
    height: 62px;
    z-index: 2;
    background-color: #fff;
  }

  .navbar {
    position: relative;
    min-height: 62px;
    margin-bottom: 20px;
    border: 0px solid transparent;
  }

  .menu-globalmenu-container {
    padding: 5px;
  }

  .navbar-collapse .socialarea {
    background-color: #0A59A8;
    width: 100%;
    padding: 0 15px;
  }

  aside {
    padding-top: 0 !important;
  }
}
@media (max-width: 491px) {
  .page-header {
    margin: 0;
    padding: 0px 0px;
    background-size: auto 100% !important;
  }
}
@media (max-width: 375px) {
  .navbar-collapse .navbar-nav li > a {
    height: 40px;
    line-height: 38px;
    font-size: 12px;
    padding: 0 20px;
  }
}
@media (max-width: 320px) {
  .navbar-collapse {
    overflow-y: auto;
    height: calc(100vh - 65px);
  }
}
@media (min-width: 768px) {
  	/*
    .navbar-header {
    	float:left;
  		position: relative;
  	}
    */
  .navbar-nav {
    float: none;
    margin: 0 0px 0 0;
  }

  .navbar-nav > li {
    width: auto;
    float: none;
    position: relative;
  }

  .navbar-nav > li ul {
    display: none;
  }

  .navbar-nav > li ul.sub-menu {
    display: none;
  }

  .navbar-nav > li:hover ul.sub-menu {
    list-style: none;
    display: block;
    position: absolute;
    top: 90px;
    left: calc(50% - 90px);
    background-color: #fff;
    width: 180px;
    text-align: center;
    padding: 10px 0;
  }

  .navbar-nav > li:hover ul.sub-menu li {
    text-align: center;
  }

  .navbar-nav > li:hover ul.sub-menu li a {
    display: block;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
  }

  .navbar-nav > li:hover ul.sub-menu li a:hover {
    background-color: #eee;
  }

  .navbar-nav > li:before {
    /*
    		content: "";
    		position: absolute;
    		right:0;
    		border-right: 1px solid #ccc;
    		width: 1px;
    		height: 48px;
    		display:block;
    */
  }

  .navbar-nav > li:first-child:before,
  .navbar-nav > li:nth-child(3):before {
    /*
    	content: "";
    	position: absolute;
    	width: 107px;
    	height: 90px;
    	top:0;
    	left: 0;
    	display:block;
    	z-index: 1;
    */
  }

  .navbar-default .navbar-collapse {
    transition: all 0.1s;
    margin-top: 32px;
    padding: 0;
    width: 100%;
  }
}
.page-header--has_background-image {
  padding-top: 160px;
  padding-bottom: 160px;
}

.page-header__description {
  margin-top: 20px;
  margin-bottom: -11.5px;
}

.sub-page-contents > .bread {
  background-color: #fff;
}

.breadcrumbs {
  width: 100%;
  padding: 20px 0;
  line-height: 1.3;
  border-bottom: none;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #545454;
}

.breadcrumbs a:link, .breadcrumbs a:visited,
.breadcrumbs a:active {
  text-decoration: underline;
  color: #545454;
}

.breadcrumbs a:hover {
  opacity: .8;
}

.breadcrumbs span {
  font-size: 12px;
  padding: 0 5px;
}

.breadcrumbs strong {
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .breadcrumbs {
    padding: 10px 20px;
    line-height: 1.3;
    height: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .breadcrumbs a:link, .breadcrumbs a:visited, .breadcrumbs a:hover, .breadcrumbs a:active {
    font-size: 10px !important;
  }

  .breadcrumbs span,
  .breadcrumbs strong {
    font-size: 10px !important;
  }

  .page-header .container {
    overflow: hidden;
  }
}
.pagination li > span {
  border-color: #337ab7;
  color: #fff;
}

/*メインイメージ*/
.mainslide {
  width: 100%;
  margin: 0;
  position: relative;
  height: auto;
}

.home .mainslide {
  min-width: 1200px;
  padding: 0 0px;
}

.home section #main_visual {
  height: auto;
}

.home .mainslide .s1 {
  height: calc(100vh - 90px);
  min-height: auto !important;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  outline: none;
  display: flex;
  align-items: center;
  /* opacity    : 0;*/
}

.home .mainslide .s1 {
  background-image: url(../images/main.jpg);
}

.home .scroll {
  height: 170px;
  position: absolute;
  text-align: right;
  bottom: -50px;
  left: 50%;
  margin-left: -550px;
}

.scroll a {
  width: 40px;
  height: 100%;
  display: inline-block;
  position: relative;
  transition: all 0.2s;
}

.scroll a:before {
  position: absolute;
  content: "";
  height: 110px;
  width: 1px;
  display: block;
  background-color: #000;
  top: 60px;
  left: 16px;
}

.scroll span {
  display: block;
  transform: rotate(-90deg);
  color: #000;
  font-size: 13px;
  font-weight: bold;
  width: 8em;
  position: absolute;
  top: 40px;
  left: -35px;
  letter-spacing: 0.05em;
}

#main_visual {
  position: relative;
}

.eapps-instagram-feed-posts-slider-nav,
.home .minislider .slick-prev, .home .minislider .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: calc(50% - 28px);
  display: block;
  width: 30px;
  height: 57px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  z-index: 2;
  background-repeat: no-repeat;
  background-size: cover;
  transform: none !important;
  box-shadow: none !important;
}

#eapps-instagram-feed-1 .eapps-instagram-feed-posts-slider-nav {
  display: none !important;
}

.eapps-instagram-feed-posts-slider-nav svg {
  display: none;
}

.eapps-instagram-feed-posts-slider-prev,
.home .minislider .slick-prev {
  display: none;
  left: -50px !important;
  background-image: url(../images/arrow_l.png) !important;
}

.home .minislider.slick-next::before,
.home .minislider.slick-prev::before {
  display: none;
}

.home .minislider.slick-next::after,
.home .minislider.slick-prev::after {
  display: none;
}

.eapps-instagram-feed-posts-slider-next,
.home .minislider .slick-next {
  display: none;
  right: -50px !important;
  overflow: hidden;
  background-image: url(../images/arrow_r.png) !important;
}

.home .topicarea dl {
  display: -webkit-flex;
  display: flex;
  width: calc(50% - 40px);
  margin: 0;
  position: absolute;
  top: -40px;
  left: 50%;
  z-index: 1;
  background-color: #fff;
}

.home .topicarea dt {
  max-width: 80px;
  width: calc(100% - 80px);
  flex-grow: 2;
  background-color: #000;
  color: #fff;
  text-align: center;
  line-height: 80px;
  font-size: 16px;
  min-width: 80px;
}

.home .topicarea dd {
  width: calc(100% - 80px);
  background-color: #fff;
}

.home .topicarea dd a {
  padding: 0 0px 0 30px;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #000;
  text-align: left;
  line-height: 80px;
  font-size: 16px;
  height: 80px;
  width: 100%;
}

.home .topicarea dd a span + span {
  margin-left: 20px;
}

.ancer {
  position: absolute;
  top: -120px;
}

@media (max-width: 767px) {
  .container-fluid {
    min-width: auto !important;
  }

  .container-fluid .mainslide {
    padding-top: 0;
  }

  .mainslide {
    width: 100%;
    margin: 0;
    position: relative;
    height: auto;
    top: auto;
    left: auto;
  }

  .home .mainslide {
    overflow: visible;
    min-width: auto;
    padding-right: 0px !important;
    padding-left: 0px !important;
  }

  .home section #main_visual {
    width: 100%;
    height: calc(100vh - 62px);
  }

  .home .mainslide .s1 .container,
  .home .mainslide .s1 {
    height: 100%;
  }

  .home .mainslide .s1 .container {
    display: flex;
    align-items: center;
  }

  .home .mainslide .s1 {
    background-image: url(../images/sp_main.jpg);
    background-size: cover;
  }

  .home .minislider .slick-prev, .home .minislider .slick-next {
    width: 18px;
    height: 32px;
    background-size: auto 100%;
    top: calc(50% - 16px);
  }

  .home .minislider .slick-prev {
    left: -20px !important;
    background-image: url(../images/sp_arrow_l.png);
  }

  .home .minislider .slick-next {
    right: -20px !important;
    background-image: url(../images/sp_arrow_r.png);
  }

  .home .container .row {
    margin-left: 0;
    margin-right: 0;
  }

  .home #main {
    padding-top: 0px;
  }

  .home .scroll {
    height: 100px;
    position: absolute;
    text-align: right;
    bottom: 0px;
    left: 20px;
    margin-left: 0px;
  }

  .scroll a {
    width: 40px;
    height: 100%;
    display: inline-block;
    position: relative;
    transition: all 0.2s;
  }

  .scroll a:before {
    position: absolute;
    content: "";
    height: 60px;
    width: 1px;
    display: block;
    background-color: #000;
    top: 60px;
    left: 6px;
  }

  .scroll span {
    display: block;
    transform: rotate(-90deg);
    color: #000;
    font-size: 10px;
    font-weight: bold;
    width: 8em;
    position: absolute;
    top: 40px;
    left: -35px;
    letter-spacing: 0.05em;
  }

  .home .topicarea {
    height: 30px;
  }

  .home .minislider.slick-prev, .home .minislider.slick-next {
    display: none !important;
  }

  .home .topicarea dl {
    display: -webkit-flex;
    display: flex;
    width: calc(100% - 60px);
    max-width: calc(100% - 60px);
    margin: 0;
    position: absolute;
    top: -30px;
    left: 60px;
    background-color: #fff;
  }

  .home .topicarea dt {
    flex-grow: 2;
    background-color: #000;
    color: #fff;
    text-align: center;
    line-height: 60px;
    font-size: 10px;
    font-weight: normal;
    min-width: 40px;
    width: 40px;
  }

  .home .topicarea dd {
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    background-color: #fff;
  }

  .home .topicarea dd a {
    padding: 15px 10px 0 15px;
    display: block;
    text-align: left;
    line-height: 1.5;
    font-size: 11px;
    height: 60px;
  }

  .home .topicarea dd a span + span {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin-left: 0;
    line-height: 1.3;
    display: block;
  }
}
@media (min-width: 1600px) {
  .mainslide {
    background-size: 100% auto;
  }
}
@media (max-width: 767px) {
  /*メインイメージ*/
}
.container-fluid .mainslide {
  border-radius: 0;
  padding-right: 0px;
  padding-left: 0px;
}

.container-fluid .mainslide .inner {
  border-radius: 0;
  margin-right: 0px;
  margin-left: 0px;
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  /*6*/
  .container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  /*6*/
  .container {
    padding-left: 0;
    padding-right: 0;
    max-width: none !important;
  }

  .mainslide .container > .row > .col-md-12 {
    padding: 0;
  }

  .container-fluid .mainslide .inner {
    margin-right: 0px;
    margin-left: 0px;
  }
}
@media screen and (max-width: 480px) {
  /*6*/
}
.widget_recent_entries ul,
.widget_recent_comments ul,
.widget_archive ul,
.widget_categories ul,
.widget_meta ul,
.widget_pages ul,
.widget_nav_menu ul {
  list-style: none;
  padding-left: 0;
}

.widget_recent_entries ul li,
.widget_recent_comments ul li,
.widget_archive ul li,
.widget_categories ul li,
.widget_meta ul li,
.widget_pages ul li,
.widget_nav_menu ul li {
  padding: 0px 0;
  position: relative;
}

.widget_recent_entries ul li li,
.widget_recent_comments ul li li,
.widget_archive ul li li,
.widget_categories ul li li,
.widget_meta ul li li,
.widget_pages ul li li,
.widget_nav_menu ul li li {
  padding-left: 1.5em;
}

.widget_recent_entries ul li li li,
.widget_recent_comments ul li li li,
.widget_archive ul li li li,
.widget_categories ul li li li,
.widget_meta ul li li li,
.widget_pages ul li li li,
.widget_nav_menu ul li li li {
  padding-left: 3em;
}

.widget_recent_entries ul li li li li,
.widget_recent_comments ul li li li li,
.widget_archive ul li li li li,
.widget_categories ul li li li li,
.widget_meta ul li li li li,
.widget_pages ul li li li li,
.widget_nav_menu ul li li li li {
  padding-left: 4.5em;
}

.widget_recent_entries ul li li li li li,
.widget_recent_comments ul li li li li li,
.widget_archive ul li li li li li,
.widget_categories ul li li li li li,
.widget_meta ul li li li li li,
.widget_pages ul li li li li li,
.widget_nav_menu ul li li li li li {
  padding-left: 6em;
}

.widget_recent_entries ul li li li li li li,
.widget_recent_comments ul li li li li li li,
.widget_archive ul li li li li li li,
.widget_categories ul li li li li li li,
.widget_meta ul li li li li li li,
.widget_pages ul li li li li li li,
.widget_nav_menu ul li li li li li li {
  padding-left: 7.5em;
}

.widget_recent_entries ul li ul,
.widget_recent_comments ul li ul,
.widget_archive ul li ul,
.widget_categories ul li ul,
.widget_meta ul li ul,
.widget_pages ul li ul,
.widget_nav_menu ul li ul {
  margin-top: 4px;
  margin-bottom: -4px;
}

.widget_recent_entries ul li ul ul,
.widget_recent_comments ul li ul ul,
.widget_archive ul li ul ul,
.widget_categories ul li ul ul,
.widget_meta ul li ul ul,
.widget_pages ul li ul ul,
.widget_nav_menu ul li ul ul {
  margin-left: -1.5em;
}

.widget_recent_entries ul li ul ul ul,
.widget_recent_comments ul li ul ul ul,
.widget_archive ul li ul ul ul,
.widget_categories ul li ul ul ul,
.widget_meta ul li ul ul ul,
.widget_pages ul li ul ul ul,
.widget_nav_menu ul li ul ul ul {
  margin-left: -3em;
}

.widget_recent_entries ul li ul ul ul ul,
.widget_recent_comments ul li ul ul ul ul,
.widget_archive ul li ul ul ul ul,
.widget_categories ul li ul ul ul ul,
.widget_meta ul li ul ul ul ul,
.widget_pages ul li ul ul ul ul,
.widget_nav_menu ul li ul ul ul ul {
  margin-left: -4.5em;
}

.widget_recent_entries ul li ul ul ul ul ul,
.widget_recent_comments ul li ul ul ul ul ul,
.widget_archive ul li ul ul ul ul ul,
.widget_categories ul li ul ul ul ul ul,
.widget_meta ul li ul ul ul ul ul,
.widget_pages ul li ul ul ul ul ul,
.widget_nav_menu ul li ul ul ul ul ul {
  margin-left: -6em;
}

.widget_recent_entries .newslist.newsarea ul {
  margin: 0;
}

.widget_recent_entries .newslist.newsarea ul > li {
  width: 100% !important;
  padding: 20px 0 !important;
  border-bottom: 1px solid #ddd;
}

.widget_recent_entries .newslist.newsarea dl {
  margin-bottom: 0px;
  padding: 0px 0;
}

.widget_recent_entries .newslist.newsarea dt {
  min-width: auto;
  display: -webkit-flex;
  display: flex;
}

.widget_recent_entries .newslist.newsarea dt > a {
  display: block;
  width: 45%;
  min-width: 45%;
}

.widget_recent_entries .newslist.newsarea dt .metaarea {
  padding-left: 0px;
  font-size: 14px;
}

.widget_recent_entries .newslist.newsarea .cat {
  width: 125px;
  height: 35px;
  line-height: 35px;
  margin-right: 10px;
  font-size: 14px;
  margin-bottom: 5px;
}

.widget_recent_entries .newslist.newsarea dd .title {
  font-size: 15px;
  padding: 10px 0 0;
}

.widget_archive ul li a,
.widget_categories ul li a {
  display: block;
  line-height: 50px;
  border-bottom: 1px solid #ddd;
  position: relative;
  padding-left: 20px;
}

.widget_archive ul li a:hover,
.widget_categories ul li a:hover {
  text-decoration: none;
  background-color: #eee;
}

.widget_search .input-group {
  margin-top: 0;
  padding: 24px 0px 0;
  position: relative;
}

.widget_search .btnarea {
  position: absolute;
  right: 10px;
  top: 34px;
  z-index: 2;
}

.widget_search .btnarea .btn {
  outline: none;
  background: url("../images/icon_search.svg") no-repeat center center;
  text-align: center;
  display: block;
  height: 21px;
  width: 20px;
}

.widget_search input[type="search"].form-control {
  width: 100%;
  border: 1px solid #ccc !important;
  border-radius: 5px;
  background-color: transparent;
  padding-right: 25px;
}

.widget_search .input-group-btn {
  position: relative;
}

.widget_recent_entries .post-date {
  margin-left: 0;
  position: absolute;
  top: 16px;
  left: 25px;
  text-decoration: none;
}

.widget_archive .screen-reader-text {
  display: none;
}

.widget_categories select,
.widget_archive select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  margin: 0;
  height: 42px;
  background: transparent;
  position: relative;
  z-index: 1;
  padding: 0 40px 0 10px;
  border: 1px solid #ccc !important;
  line-height: 40px;
  background-color: transparent;
  border-radius: 5px;
  outline: none;
}

.widwidget_categoriesget_archive select::-ms-expand,
.widget_archive select::-ms-expand {
  display: none;
}

.widget_categories .inner,
.widget_archive .inner {
  padding: 24px 0px 0;
}

.widget_categories .selectWrap,
.widget_archive .selectWrap {
  position: relative;
  background-color: #fff;
}

.widget_categories .selectWrap::before,
.widget_archive .selectWrap::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  height: 40px;
  width: 46px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.widget_categories .selectWrap::after,
.widget_archive .selectWrap::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 19px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: #888888 transparent transparent transparent;
}

@media screen and (max-width: 767px) {
  .recent-posts ul li dl dd {
    text-align: right;
  }

  .recent-posts ul li dl dd .date {
    display: inline-block;
  }

  .recent-posts ul li dl dd > div {
    width: 100%;
    padding: 5px 10px 5px 10px;
    margin-top: 25px;
    text-align: left;
  }
}
/*==================================================
 * layout
 *================================================*/
#container {
  /*overflow: hidden;*/
  position: relative;
}

.sub-page-contents {
  padding-top: 0px;
}

#main {
  margin-bottom: 0px;
}

.page-template-front-page #main,
.page-template-rich-front-page #main {
  margin-bottom: 0;
}

.article {
  margin-bottom: 0px;
  padding-right: 0px;
}

@media screen and (max-width: 990px) {
  .article {
    padding-right: 0px;
  }
}
@media screen and (max-width: 767px) {
  .article {
    margin-bottom: 0px;
  }
}
.sub-page-contents .entry {
  background-color: transparent;
}

@media (min-width: 992px) {
  .col-md-pull-9 {
    right: 760px;
  }

  .col-md-push-3 {
    left: 340px;
  }
}
.entry:before,
.entry:after {
  content: " ";
  display: table;
}

.entry:after {
  clear: both;
}

.entry__title {
  margin: 0 0 10px;
  color: #445853;
  font-size: 28px;
  font-weight: normal;
}

.entry__content:before,
.entry__content:after {
  content: " ";
  display: table;
}

.entry__content {
  padding: 0px;
  margin-bottom: 0px;
  width: 100%;
}

.page-thanks .entry__content,
.page-entry .entry__content,
.category .entry__content,
.search .entry__content,
.blog .entry__content,
.single-post .entry__content,
.date .entry__content {
  padding-top: 50px;
}

.entry__content p {
  line-height: 1.8;
  word-wrap: break-word;
}

.home .entry__content p {
  margin-bottom: 0;
}

.entry__content:after {
  clear: both;
}

.entry__content > *:first-child {
  margin-top: 0;
}

aside {
  padding-top: 0px;
}

.blogarea {
  background-color: #f5f5f5;
  padding-bottom: 20px !important;
}

.blogarea .section {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .blogarea .section {
    margin: 0 0px 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .entry__content {
    padding: 0px 0px;
    margin-bottom: 0px;
  }

  .entry__content .col-md-9 {
    padding: 0 20px 30px;
    width: 100%;
  }

  .entry__content .col-md-3 {
    padding: 0 20px;
    width: 100%;
  }

  .page-thanks .entry__content,
  .page-entry .entry__content,
  .category .entry__content,
  .search .entry__content,
  .blog .entry__content,
  .single-post .entry__content,
  .date .entry__content {
    padding-top: 0px;
  }
}
/*==================================================
 * header
 *================================================*/
.header {
  position: relative;
  z-index: 5;
}

.header__content {
  /* display: table;
   width: 100%;
  */
}

/*==================================================
 * sub
 *================================================*/
.sidebar-widget {
  font-size: 93%;
  margin: 0 0 36px;
  background-color: #fff;
}

.sidebar-widget__title {
  margin-top: 0;
  border-top: 2px solid #FD7032;
  border-bottom: 1px solid #ddd;
  text-align: left;
  font-weight: bold;
  background-color: #F6F6F6;
  height: 60px;
  line-height: 60px;
  font-size: 17px;
  padding: 0 20px;
  margin-bottom: 0px !important;
}

.sidebar-widget__title a {
  display: block;
  padding: 0 0 0 15px !important;
}

.sidebar-widget__title a:hover {
  text-decoration: none;
  background-color: #ddd;
}

@media screen and (max-width: 767px) {
  .sidebar {
    padding-top: 20px;
    margin: 0 -15px;
  }

  .widget-area {
    padding: 0 15px 30px;
    letter-spacing: -.4em;
  }

  .sidebar-widget__title {
    font-weight: normal !important;
    margin-top: 0;
    height: 45px;
    line-height: 45px !important;
    font-size: 14px !important;
    margin-bottom: 20px !important;
    text-align: left;
  }

  .widget_categories .sidebar-widget__title {
    margin-bottom: 0px !important;
  }

  .widget.widget_recent_entries ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    padding: 0px 0 0px 0px;
    margin: 26px -15px 0 !important;
  }

  .widget_recent_entries .newslist.newsarea ul > li {
    width: 50% !important;
    padding: 0 15px 10px !important;
    border-bottom: 0;
  }

  .widget_recent_entries .newslist.newsarea dt > a {
    display: block;
    width: 100%;
    padding-top: 0;
  }

  .widget_recent_entries .newslist.newsarea dt {
    display: block;
  }

  .widget.widget_recent_entries li a, .widget.widget_archive li a {
    position: relative;
    padding: 18px 0 0px 0px;
    color: #333;
    font-size: 14px;
  }

  .widget_recent_entries .newslist.newsarea .metaarea {
    margin: 0px 0 0;
    padding-left: 0px !important;
    font-size: 12px !important;
  }

  .widget_recent_entries .newslist.newsarea a.cat {
    text-decoration: none;
    width: 80px;
    height: 24px;
    line-height: 24px;
    margin-right: 0px;
    font-size: 10px;
    padding: 0;
    margin-bottom: 0;
  }

  .widget_categories .inner, .widget_archive .inner {
    padding: 0px 0px;
    padding: 0px 0px;
    position: relative;
  }

  .widget_categories ul li {
    padding: 0px 0;
    letter-spacing: normal;
    display: block;
    position: relative;
    vertical-align: top;
  }

  .tax-faq_category .widget_categories ul li,
  .post-type-archive-faq .widget_categories ul li {
    width: 100%;
  }

  .widget.widget_recent_entries li, .widget.widget_archive li {
    padding: 10px 0;
  }

  .sidebar-widget {
    letter-spacing: normal;
    background-color: transparent !important;
    margin-bottom: 30px;
  }

  .widget_search {
    /*width: 50%;*/
    width: 100%;
    /*padding-right: 5px;*/
    padding-right: 0px;
    display: block;
    vertical-align: top;
  }

  .widget_search .input-group {
    margin-top: 0;
    padding: 0px 0px;
    display: block;
    border-collapse: collapse;
  }

  .widget_search form .input-group {
    height: 40px;
  }

  .widget_search .btnarea {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 2;
  }

  .widget_search input[type="search"].form-control,
  .widget_search input[type="text"].form-control {
    height: 40px;
    line-height: 40px;
    border-radius: 5px !important;
    width: 100%;
    padding: 0 10px;
    display: block !important;
  }

  .widget_archive {
    /*width: 50%;*/
    width: 100%;
    /*padding-right: 5px;*/
    padding-right: 0px;
    display: inline-block;
    vertical-align: top;
  }

  .widget_categories .selectWrap::before,
  .widget_archive .selectWrap::before {
    width: 30px;
  }

  .widget_categories .selectWrap::after,
  .widget_archive .selectWrap::after {
    right: 9px;
  }

  .widwidget_categoriesget_archive select::-ms-expand,
  .widget_archive select::-ms-expand {
    display: none;
  }

  .widget_categories .selectWrap::before,
  .widget_archive .selectWrap::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: 15px;
    right: 0;
    height: 40px;
    width: 40px;
    border-radius: 5px;
  }

  .widget_categories .selectWrap::after,
  .widget_archive .selectWrap::after {
    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    right: 14px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 6px 0 6px;
  }
}
.input-group .form-control {
  z-index: 0 !important;
}

.form-control:focus {
  outline: 0;
  box-shadow: none !important;
}

/*==================================================
 * footer
 *================================================*/
/**
 * .footer-widget-area
 */
#footer {
  /*	position: absolute;
  	bottom: 0px;*/
  width: 100%;
  position: relative;
}

.footer {
  padding: 75px 0 20px;
}

#footer .container {
  position: relative;
}

@media (max-width: 767px) {
  #footer .container {
    max-width: none;
  }

  .footer {
    padding: 30px 0 0px;
  }
}
@media only screen and (max-width: 767px) {
  .home #contents {
    padding-top: 0px;
  }

  .navbar-header .rightmenu {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .footer .row {
    margin-left: 0;
    margin-right: 0;
  }
}
/**
 * .copyright
 */
.copyright {
  font-size: 15px;
  padding: 0px 0 0px;
  display: flex;
  line-height: 1.8;
  justify-content: space-between;
  align-items: flex-end;
}
.copyright .copy {
  text-align: right;
  font-size: 14px;
}

.footer .footmenu {
  padding: 0 0 30px 0;
}

.footer .footmenu ul.menu > li > a {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 20px;
  display: block;
}

.footer .footmenu ul.sub-menu > li {
  padding-left: 0;
}
.footer .footmenu ul.sub-menu > li:before {
  content: "-";
  display: inline-block;
  margin-right: 5px;
}
.footer .footmenu ul.sub-menu > li a {
  font-size: 15px;
  color: #545454;
  display: inline-block;
  line-height: 1;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .copyright {
    text-align: center;
    font-size: 13px;
    display: block;
  }

  .footer .footmenu {
    display: none;
  }

  .copyright .copy {
    margin-top: 30px;
    padding: 15px 0;
    background-color: #000;
    color: #fff;
    text-align: center;
    font-size: 11px;
  }

  .copyright .sp a {
    display: inline-block;
    margin-top: 5px;
    background: url("../images/blank.svg") no-repeat left center;
    background-size: 15px 15px;
    padding-left: 20px;
  }
}
/*==================================================
 * contents
 *================================================*/
/*問い合わせ関連*/
.page .sub-page-contents .page_submenu {
  background-color: #0A59A8;
}

.page .sub-page-contents .page_submenu ul {
  list-style: none;
  text-align: center;
  letter-spacing: -.4em;
  margin: 0;
  padding: 0;
}

.page .sub-page-contents .page_submenu ul li {
  display: inline-block;
  letter-spacing: normal;
  vertical-align: top;
  padding: 20px 0;
  color: #fff;
  font-size: 18px;
}

.page .sub-page-contents .page_submenu ul li a {
  color: #fff;
  padding: 0 40px;
  font-size: 18px;
  text-decoration: none;
}

.page .sub-page-contents .page_submenu ul li:before {
  content: "|";
}

.page .sub-page-contents .page_submenu ul li:first-child:before {
  display: none;
}

.page .sub-page-contents .page_submenu ul li a:hover {
  opacity: 0.8;
}

/*メッセージ*/
.page-message section.sec1 {
  padding: 30px 0;
}

.page-message section.sec1 h2 {
  text-align: center;
  margin-bottom: 60px;
}

.page-message section p {
  font-size: 17px;
  line-height: 2;
  margin-bottom: 35px;
}

.page-message section.sec1 p.lg {
  font-size: 32px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.page-message section.sec2,
.page-message section.sec3 {
  padding: 0px 0 75px;
}

.page-message section .img {
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  display: flex;
  align-items: center;
  margin-bottom: 75px;
}

.page-message section .img .ttlarea {
  width: 520px;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../images/bg_box.png") repeat;
  box-shadow: 12px 12px 0 0 #fff;
}

.page-message section.sec3 .img .ttlarea {
  margin: 0 0 0 auto;
}

.page-message section .img h2 {
  font-weight: bold;
  font-size: 38px;
}

.page-message section.sec2 .img {
  background-image: url("../images/bg_message01.jpg");
}

.page-message section.sec3 .img {
  background-image: url("../images/bg_message02.jpg");
}

.page-message section.sec4 .img {
  background-image: url("../images/bg_message03.jpg");
}

.page-message section h3 {
  font-weight: 700;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .page-message .page-header > div.bg {
    background-position: 35% center;
  }

  .page-message section.sec1 {
    padding: 30px 0px;
  }

  .page-message section .container {
    padding: 0 20px;
  }

  .page-message section.sec1 h2 {
    padding: 0 20px;
    margin-bottom: 20px;
  }

  .page-message section p {
    font-size: 13px;
    line-height: 2;
    margin-bottom: 25px;
    padding: 0 0px;
  }

  .page-message section.sec1 p.lg {
    font-size: 22px;
  }

  .page-message section.sec2,
  .page-message section.sec3 {
    padding: 0px 0 30px;
  }

  .page-message section .img {
    background-repeat: no-repeat;
    background-size: auto 100%;
    height: 200px;
    display: block;
    position: relative;
    margin-bottom: 75px;
  }

  .page-message section .img .ttlarea {
    position: absolute;
    text-align: center;
    left: 20px;
    bottom: -40px;
    width: 260px;
    height: 80px;
    box-shadow: 6px 6px 0 0 #fff;
  }

  .page-message section .img h2 {
    font-size: 20px;
  }

  .page-message section.sec2 .img {
    background-position: 60% center;
  }

  .page-message section.sec3 .img {
    background-position: 60% center;
  }

  .page-message section.sec4 .img {
    background-position: 65% center;
  }

  .page-message section h3 {
    font-size: 18px;
    padding: 0 20px;
  }
}
/*働く環境について*/
.page-environment section.sec1 {
  padding: 40px 0;
}

.page-environment section.sec1 .fr > div {
  padding: 0px 0;
  width: 240px;
}

.page-environment section.sec1 .fr > div .img {
  border-top: 3px solid #FFE000;
  background-color: #F6F6F6;
  height: 190px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-environment section.sec1 .fr > div .img img {
  width: 113px;
  height: 113px;
}

.page-environment section.sec1 .fr > div h2 {
  padding: 25px 0;
  line-height: 1;
  font-size: 20px;
  margin: 0;
  text-align: center;
  font-weight: 700;
}

.page-environment section.sec1 .fr > div p {
  line-height: 1.8;
  font-size: 16px;
}

.page-environment section.sec2 p {
  font-size: 17px;
  line-height: 2;
  margin-bottom: 35px;
}

.page-environment section.sec2 {
  padding: 40px 0;
}

.page-environment section.sec2 h2 {
  display: flex;
  align-items: center;
  margin: 0 0 50px 0;
}

.page-environment section.sec2 h2 span {
  padding: 12px 30px;
  background-color: #FFE000;
  text-align: center;
  font-weight: 700;
}

.page-environment section.sec2 h2::after {
  content: "";
  flex-grow: 5;
  height: 1px;
  background-color: #FFE000;
}

@media screen and (max-width: 767px) {
  .page-environment .page-header > div.bg {
    background-position: 20% center;
  }

  .page-environment section.sec1 {
    padding: 30px 20px 0;
  }

  .page-environment section.sec1 .fr {
    flex-wrap: wrap;
  }

  .page-environment section.sec1 .fr > div {
    padding: 0px 0 20px 0;
    width: 47%;
  }

  .page-environment section.sec1 .fr > div .img {
    border-top: 2px solid #FFE000;
    height: auto;
    padding-top: 100%;
    position: relative;
  }

  .page-environment section.sec1 .fr > div .img img {
    position: absolute;
    width: 50%;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .page-environment section.sec1 .fr > div h2 {
    padding: 20px 0;
    font-size: 16px;
  }

  .page-environment section.sec1 .fr > div p {
    line-height: 1.8;
    font-size: 13px;
  }

  .page-environment section.sec2 p {
    font-size: 13px;
    line-height: 2;
    margin-bottom: 35px;
  }

  .page-environment section.sec2 {
    padding: 30px 20px 0;
  }

  .page-environment section.sec2 h2 {
    display: flex;
    align-items: center;
    margin: 0 0 30px 0;
  }

  .page-environment section.sec2 h2 span {
    padding: 7px 10px;
    font-size: 18px;
  }
}
/*職種紹介*/
.page-part section.sec3,
.page-part section.sec1 {
  padding: 75px 0;
  margin-top: 50px;
  background-color: #F6F6F6;
}

.page-part section .fr.columns > div {
  padding: 0px 0;
  width: 50%;
}

.page-part section.sec1 .fr .img {
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../images/img_part01.jpg");
  height: 400px;
  position: relative;
}

.page-part section.sec3 .fr .img {
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../images/img_part02.jpg");
  height: 400px;
  position: relative;
}

.page-part section .fr.columns .img > div {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 36px;
  font-weight: bold;
  width: 100px;
  height: 100px;
  text-align: center;
  line-height: 100px;
  background-color: #FFE000;
}

.page-part section .fr.columns .txt {
  background-color: #fff;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-part section .fr.columns h2 {
  padding: 0 0 30px 0;
  line-height: 1.3;
  font-size: 36px;
  margin: 0;
  font-weight: 700;
}

.page-part section .fr.columns p {
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 0;
}

.page-part section.sec4,
.page-part section.sec2 {
  padding: 50px 0 30px;
}

.page-part section.sec4 h2,
.page-part section.sec2 h2 {
  text-align: center;
  margin: 0 0 50px 0;
  font-weight: 900;
}

.page-part section .fr.cards {
  margin: 0 -20px;
  flex-wrap: wrap;
  justify-content: flex-start !important;
}

.page-part section .fr.cards > div {
  width: 25%;
  padding: 0 20px;
}

.page-part section .fr.cards h3 {
  font-size: 20px;
  padding: 20px 0 30px;
}

.page-part section .btnarea {
  padding: 50px 0 0 0;
  text-align: center;
}

.page-part section .btn {
  display: block;
  line-height: 100px;
  font-size: 30px;
  width: 500px;
  height: 100px;
  font-weight: 700;
  margin: 0 auto;
  max-width: 500px;
}

.page-part section .btn::before,
.page-part section .btn::after {
  display: none;
}

@media screen and (max-width: 767px) {
  .page-part .page-header > div.bg {
    background-position: 10% center;
  }

  .page-part section.sec3,
  .page-part section.sec1 {
    padding: 35px 20px;
    margin-top: 30px;
  }

  .page-part section .fr.columns {
    display: block;
  }

  .page-part section .fr.columns > div {
    padding: 0px 0;
    width: 100%;
  }

  .page-part section.sec1 .fr .img {
    background-image: url("../images/img_part01.jpg");
    height: auto;
    background-size: 100% auto;
    padding-top: 52%;
  }

  .page-part section.sec3 .fr .img {
    background-image: url("../images/img_part02.jpg");
    height: auto;
    background-size: 100% auto;
    padding-top: 52%;
  }

  .page-part section .fr.columns .img > div {
    font-size: 20px;
    width: 60px;
    height: 60px;
    line-height: 60px;
  }

  .page-part section .fr.columns .txt {
    background-color: #fff;
    padding: 30px 20px;
    display: block;
  }

  .page-part section .fr.columns h2 {
    padding: 0 0 25px 0;
    font-size: 24px;
  }

  .page-part section .fr.columns p {
    font-size: 13px;
    margin-bottom: 0;
  }

  .page-part section.sec4,
  .page-part section.sec2 {
    padding: 40px 0 10px;
  }

  .page-part section.sec4 h2,
  .page-part section.sec2 h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 30px 0;
  }

  .page-part section .fr.cards {
    margin: 0 10px;
    flex-wrap: wrap;
    justify-content: flex-start !important;
  }

  .page-part section .fr.cards > div {
    width: 50%;
    padding: 0 10px;
  }

  .page-part section .fr.cards h3 {
    font-size: 14px;
    padding: 15px 0 20px;
  }

  .page-part section .btnarea {
    padding: 30px 0 0 0;
    text-align: center;
  }

  .page-part section .btn {
    line-height: 50px;
    font-size: 16px;
    width: 230px;
    height: 50px;
    max-width: 230px;
  }
}
/*社員紹介*/
.page-staff section {
  padding: 30px 0;
  margin-top: 50px;
}

.page-staff #stafflist {
  margin: 0 0px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.page-staff #stafflist li {
  padding: 0 6px 0px;
  outline: none;
}

.page-staff #stafflist li:nth-child(4),
.page-staff #stafflist li:nth-child(5) {
  margin: 0 40px;
}

.page-staff #stafflist li a {
  text-decoration: none;
  transition: all 0.3s;
}

.page-staff #stafflist li a:hover * {
  opacity: .8;
}

.page-staff #stafflist li .img {
  background-repeat: no-repeat;
  width: 348px;
  height: 454px;
  background-size: cover;
  outline: none;
  position: relative;
  overflow: hidden;
}

.page-staff #stafflist li .img span {
  display: block;
  background: url("../images/nami2.svg") no-repeat;
  background-size: 100% auto;
  background-position: top center;
  position: absolute;
  width: 100%;
  height: 20px;
  bottom: 0;
  left: 0;
}

.page-staff #stafflist li.s1 .img {
  background-image: url("../images/img_top_staff1.png");
}

.page-staff #stafflist li.s2 .img {
  background-image: url("../images/img_top_staff2.png");
}

.page-staff #stafflist li.s3 .img {
  background-image: url("../images/img_top_staff3.png");
}

.page-staff #stafflist li.s4 .img {
  background-image: url("../images/img_top_staff4.png");
}

.page-staff #stafflist li.s5 .img {
  background-image: url("../images/img_top_staff5.png");
}

.page-staff #stafflist li .txt {
  padding: 40px 40px;
}

.page-staff #stafflist li .txt p {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 0.5em;
}

.page-staff #stafflist li .txt p.small {
  font-size: 15px;
  font-weight: normal;
  margin-bottom: 0.3em;
}

@media screen and (max-width: 767px) {
  .page-staff #stafflist {
    margin: 0 20px;
  }

  .page-staff #stafflist li {
    width: 50%;
    padding: 0 3px 30px;
    outline: none;
  }

  .page-staff #stafflist li .img {
    width: 100%;
    height: auto;
    padding-top: 130.4597701149425%;
  }

  .page-staff #stafflist li .txt {
    padding: 20px 0px 0;
  }

  .page-staff #stafflist li .txt p {
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 0.5em;
  }

  .page-staff #stafflist li .txt p.small {
    font-size: 10px;
    margin-bottom: 0.3em;
  }

  .page-staff #stafflist li .img span {
    background-position: bottom center;
    padding-top: 63.2183908045977%;
    height: auto;
  }

  .page-staff #stafflist li:nth-child(3) {
    margin: 0 50px;
  }

  .page-staff #stafflist li:nth-child(4), .page-staff #stafflist li:nth-child(5) {
    margin: 0 0px;
  }
}
/*社員*/
.page-staff-child .sec1 {
  background-color: #FFE000;
  padding: 75px 0;
  margin-top: 50px;
}

.page-staff-child .sec1 .fr > div {
  width: 50%;
  height: 400px;
}

.page-staff-child .sec1 .fr > .txt {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 50px 0 70px;
}

.page-staff-child .sec1 .fr > .img {
  background-repeat: no-repeat;
  background-size: cover;
}

.page-s01 .sec1 .fr > .img {
  background-image: url("../images/img_s01_main.jpg");
}

.page-s02 .sec1 .fr > .img {
  background-image: url("../images/img_s02_main.jpg");
}

.page-s03 .sec1 .fr > .img {
  background-image: url("../images/img_s03_main.jpg");
}

.page-s04 .sec1 .fr > .img {
  background-image: url("../images/img_s04_main.jpg");
}

.page-s04 .sec2 + .sec1 .fr > .img {
  background-image: url("../images/img_s05_main.jpg");
}

.page-staff-child .sec1 .txt p {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0;
}

.page-staff-child .sec1 .txt p.small {
  font-size: 15px;
  font-weight: normal;
  margin-bottom: 0.3em;
}

.page-staff-child .sec1 .txt p.lg {
  font-size: 31px;
  margin-bottom: 1em;
}

.page-staff-child .sec2 {
  padding: 75px 0 0;
}

.page-staff-child .sec2 .joblist {
  min-width: 240px;
}

.page-staff-child .sec2 .joblist .title {
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  height: 62px;
  line-height: 62px;
  background-color: #000;
  margin-bottom: 26px;
}

.page-staff-child .sec2 .joblist li .ttl {
  font-weight: 700;
  font-size: 20px;
  padding: 20px 0;
}

.page-staff-child .sec2 .qlist {
  padding-right: 40px;
}
.page-staff-child .sec2 .qlist dl {
  margin: 0;
}
.page-staff-child .sec2 .qlist dl dt {
  margin: 0;
  padding-left: 86px;
  position: relative;
  min-height: 62px;
  font-size: 22px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.page-staff-child .sec2 .qlist dl dt::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "Q";
  display: inline-block;
  width: 62px;
  height: 62px;
  line-height: 62px;
  background-color: #000;
  text-align: center;
  color: #fff;
  margin: 0;
  font-size: 25px;
}
.page-staff-child .sec2 .qlist dl dd {
  font-size: 17px;
  line-height: 1.8;
  padding-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .page-staff-child .sec1 {
    background-color: #FFE000;
    padding: 36px 20px;
    margin-top: 30px;
  }

  .page-staff-child .sec1 .fr {
    flex-direction: column;
  }

  .page-staff-child .sec1 .fr > div {
    width: 100%;
    height: auto;
  }

  .page-staff-child .sec1 .fr > .txt {
    padding: 22px 18px;
  }

  .page-staff-child .sec1 .fr > .img {
    height: auto;
    padding-top: 52.23880597014925%;
  }

  .page-s01 .sec1 .fr > .img {
    background-image: url("../images/sp_img_s01_main.jpg");
  }

  .page-s02 .sec1 .fr > .img {
    background-image: url("../images/sp_img_s02_main.jpg");
  }

  .page-s03 .sec1 .fr > .img {
    background-image: url("../images/sp_img_s03_main.jpg");
  }

  .page-s04 .sec1 .fr > .img {
    background-image: url("../images/sp_img_s04_main.jpg");
  }

  .page-s05 .sec1 .fr > .img {
    background-image: url("../images/sp_img_s05_main.jpg");
  }

  .page-staff-child .sec1 .txt p {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 0;
  }

  .page-staff-child .sec1 .txt p.small {
    font-size: 12px;
    font-weight: normal;
    margin-bottom: 0.3em;
  }

  .page-staff-child .sec1 .txt p.lg {
    font-size: 21px;
    margin-bottom: 15px;
  }

  .page-staff-child .sec2 {
    padding: 35px 20px 0;
  }

  .page-staff-child .sec2 .fr {
    display: block;
  }

  .page-staff-child .sec2 .joblist {
    width: 100%;
  }

  .page-staff-child .sec2 .joblist ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
  }

  .page-staff-child .sec2 .joblist .title {
    padding: 0;
    font-size: 15px;
    height: 40px;
    line-height: 40px;
    margin-bottom: 25px;
  }

  .page-staff-child .sec2 .joblist li {
    width: 50%;
    padding: 0 10px;
  }
  .page-staff-child .sec2 .joblist li .ttl {
    font-size: 13px;
    padding: 10px 0;
  }

  .page-staff-child .sec2 .qlist {
    padding-right: 0px;
  }
  .page-staff-child .sec2 .qlist dl {
    margin: 0;
  }
  .page-staff-child .sec2 .qlist dl dt {
    margin: 0;
    padding-left: 45px;
    min-height: 35px;
    font-size: 14px;
    margin-bottom: 20px;
  }
  .page-staff-child .sec2 .qlist dl dt::before {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 16px;
  }
  .page-staff-child .sec2 .qlist dl dd {
    font-size: 13px;
    line-height: 1.8;
    padding-bottom: 20px;
  }
}
/*==================================================
 * single
 *================================================*/
/**
 * .single
 */
.entry__content .single-post {
  padding: 0px 0 0;
  margin-bottom: 0px;
}

.entry__content .single-post .single-head {
  padding: 0;
  margin-bottom: 50px;
}

.entry__content .single-post h1 {
  background-color: #FFE000;
  margin: 0;
  display: block;
  display: flex;
  font-weight: 700;
  padding: 0;
  line-height: 1.3;
  vertical-align: middle;
  position: relative;
}

.entry__content .single-post h1 span {
  font-size: 20px;
  display: block;
  background-color: #000;
  color: #fff;
  padding: 25px 30px;
  font-weight: normal;
}

.entry__content .single-post h1 div {
  font-size: 22px;
  padding: 25px;
}

.single-post .alinkarea {
  margin: 0 0 55px;
}

.single-post .alinkarea ul {
  margin: 0 -45px 0px;
}

.single-post .alinkarea li {
  width: 25%;
  padding: 0 45px;
}

.single-post .alinkarea li a {
  display: block;
  padding: 20px 5px;
  line-height: 1;
  font-size: 18px;
  position: relative;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid #333;
  transition: all 0.2s;
}

.single-post .alinkarea li a:hover {
  opacity: .8;
}

.single-post .alinkarea li a i {
  right: 0;
  position: absolute;
  top: 20px;
}

.single-post section .frame {
  background-color: #F6F6F6;
  padding: 50px;
}

.entry__content h2.sectitle {
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 70px;
  vertical-align: middle;
  position: relative;
  margin-top: 60px;
}

.entry__content .single-post h2 {
  font-size: 30px;
  color: #000;
  padding: 0px;
  line-height: 1.5;
  margin: 0 0 30px 0;
  font-weight: bold;
}

.single-post section .frame h3 {
  line-height: 1.5;
  font-weight: 700;
  margin: 0 0 30px 0;
  padding: 0;
  font-size: 24px;
}

.single-post section.company {
  margin-top: 50px;
}

.single-post section + section {
  margin-top: 30px;
}

.single-post section .frame .cont {
  font-size: 16px;
  line-height: 1.8;
}

.single-post section .frame .cont .img {
  margin-top: 30px;
}

.single-post section.company .fr {
  margin: 0;
}

.single-post section.company .fr a {
  display: block;
  text-decoration: none;
  transition: all 0.2s;
}

.single-post section.company .fr a:hover {
  opacity: .8;
}

.single-post section.company .fr .title {
  background-color: #FFE000;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  padding: 16px 0;
}

.single-post section.point dl {
  border-top: 1px solid #ccc;
  display: flex;
  flex-wrap: wrap;
}

.single-post section.point dt {
  width: 230px;
  padding: 25px 0 25px 30px;
  line-height: 1.5;
  min-width: 230px;
  background-color: #F6F6F6;
  border-bottom: 1px solid #ccc;
  font-size: 16px;
}

.single-post section.point dd {
  width: 850px;
  min-width: 850px;
  line-height: 1.5;
  padding: 25px 0 25px 20px;
  border-bottom: 1px solid #ccc;
  margin: 0;
  font-size: 16px;
}

.single-post section.point dd a {
  text-decoration: underline;
}

.single-post .btnarea {
  text-align: center;
  margin: 60px 0 0 0;
}

.single-post .btnarea a {
  display: inline-block;
  text-align: center;
  background-color: #FFE000;
  line-height: 100px;
  width: 500px;
}

.single-post .btnarea a span {
  display: inline-block;
  font-size: 30px;
  font-weight: bold;
  padding-left: 60px;
  background-image: url("../images/icon_mail_b.svg");
  background-repeat: no-repeat;
  background-size: 40px auto;
  background-position: left center;
}

.single-post .btnarea a:hover {
  background-color: #000;
}

.single-post .btnarea a:hover span {
  color: #FFE000;
  background-image: url("../images/icon_mail_y.svg");
}

.single-post .career {
  margin-top: 50px;
}

.entry__content .single-post h4 {
  font-size: 17px;
  font-weight: normal;
  margin: 20px 0;
}

.entry__content h5 {
  font-size: 16px;
  font-weight: normal;
}

.entry__content h6 {
  font-size: 15px;
  font-weight: normal;
}

.entry__content {
  line-height: 1.5;
}

.entry__content p {
  margin-bottom: 20px;
  line-height: 2;
  font-size: 16px;
}

.post-navigation {
  width: auto;
  height: 60px;
  line-height: 60px;
}

.post-navigation .nav-previous, .post-navigation .nav-next {
  width: 242px;
  height: 60px;
  line-height: 60px;
}

.post-navigation .nav-previous a, .post-navigation .nav-next a {
  display: block;
  width: 242px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  text-decoration: underline;
}

.post-navigation .nav-previous a:before {
  content: "\ff1c ";
  font-family: 'Genericons';
  line-height: 60px;
  padding-right: 0px;
}

.post-navigation .nav-next {
  position: absolute;
  top: 0;
  right: 0;
}

.post-navigation .nav-next a:after {
  content: " \ff1e";
  font-family: 'Genericons';
  padding-left: 0px;
  line-height: 60px;
}

.linkarea .linklist {
  border-right: 0;
  text-decoration: underline;
  display: block;
  position: absolute;
  left: 242px;
  top: 0;
  width: 317px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

.post-navigation a:hover,
.linkarea .linklist:hover {
  background-color: #eee;
}

.resentarea {
  margin-top: 80px;
  background-color: #F6F6F6;
  padding: 70px 0;
}

.resentarea .newslist.newsarea ul.fr > li {
  background-color: #fff;
  text-align: left;
  width: calc(33.3333333% - 3px);
  padding: 55px;
  position: relative;
}

.resentarea .newslist.newsarea ul.fr > li::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 27px;
  background-color: #FFE000;
  top: -14px;
}

.resentarea .newslist.newsarea ul li h3 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 20px;
}

.resentarea .newslist.newsarea ul li h3::after {
  content: "";
  width: 56px;
  height: 2px;
  background-color: #000;
  display: block;
  margin: 15px auto 0;
}

.resentarea .sub-menu li::before {
  content: "-";
  display: inline-block;
  margin: 7px 5px 7px 0;
}

.resentarea .sub-menu li a {
  color: #545454;
}

@media screen and (max-width: 767px) {
  .entry__content h2.sectitle {
    font-size: 22px;
    padding: 0;
    margin-bottom: 30px;
  }

  .entry__content .single-post {
    padding: 0;
  }

  .entry__content .single-post .single-head {
    padding: 0;
    margin-bottom: 50px;
  }

  .entry__content .single-post h1 {
    display: block;
  }

  .entry__content .single-post .container {
    padding: 0 0px;
  }

  .entry__content .single-post h1 span {
    font-size: 14px;
    padding: 15px 20px;
  }

  .entry__content .single-post h1 div {
    font-size: 14px;
    padding: 15px 20px;
  }

  .single-post .alinkarea {
    margin: 0 0 40px;
  }

  .single-post .alinkarea ul {
    margin: 0 10px 0px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .single-post .alinkarea li {
    width: 50%;
    padding: 0 10px 10px;
  }

  .single-post .alinkarea li a {
    display: block;
    padding: 10px 0;
    font-size: 13px;
  }

  .single-post .alinkarea li a i {
    right: 0;
    position: absolute;
    top: 12px;
    font-size: 11px;
  }

  .single-post section .frame {
    padding: 25px 20px;
    margin: 0 20px;
  }

  .entry__content h2.sectitle {
    text-align: center;
    font-size: 20px;
    margin-bottom: 70px;
    margin-top: 60px;
  }

  .entry__content .single-post h2 {
    text-align: center;
    font-size: 22px;
    margin: 0 0 30px 0;
  }

  .single-post section .frame h3 {
    margin: 0 0 20px 0;
    font-size: 16px;
  }

  .single-post section + section {
    margin-top: 30px;
  }

  .single-post section.company {
    margin-top: 30px;
  }

  .single-post section .frame .cont {
    font-size: 12px;
  }

  .single-post section.company .fr {
    margin: 0 20px;
    display: block;
  }

  .single-post section.company .fr > div > a {
    display: flex;
    margin-bottom: 8px;
  }

  .single-post section.company .fr .title {
    width: 50%;
    min-width: 50%;
    font-size: 14px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .single-post section.point dl {
    display: block;
    margin: 0 20px;
  }

  .single-post section.point dt {
    width: auto;
    padding: 10px 0 10px 15px;
    line-height: 1.5;
    min-width: auto;
    font-size: 12px;
    border-bottom: none;
  }

  .single-post section.point dd {
    width: auto;
    min-width: auto;
    padding: 12px 0 12px 15px;
    font-size: 12px;
    line-height: 1.8;
  }

  .single-post section.point dd:last-child {
    border-bottom: none;
  }

  .single-post .btnarea {
    text-align: center;
    margin: 30px 0px 0;
  }

  .single-post .btnarea a {
    line-height: 55px;
    width: 70%;
  }

  .single-post .btnarea a span {
    line-height: 55px;
    font-size: 16px;
    padding-left: 30px;
    background-size: 22px auto;
  }

  .resentarea {
    margin-top: 50px;
    padding: 35px 0;
  }

  .resentarea .newslist.newsarea ul.fr {
    flex-wrap: wrap;
  }

  .resentarea .newslist.newsarea ul.fr > li {
    background-color: #fff;
    text-align: left;
    width: calc(50% - 3px);
    padding: 28px 18px;
    position: relative;
    text-align: center;
  }

  .resentarea .newslist.newsarea ul.fr > li:last-child {
    width: 100%;
    margin-top: 15px;
  }

  .resentarea .newslist.newsarea ul.fr > li ul li {
    text-align: left;
  }

  .resentarea .newslist.newsarea ul.fr > li::before {
    width: 4px;
    height: 14px;
    top: -7px;
  }

  .resentarea .newslist.newsarea ul li h3 {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .resentarea .newslist.newsarea ul li h3::after {
    width: 28px;
    height: 1px;
    margin: 10px auto 0;
  }

  .resentarea .sub-menu li::before {
    content: "-";
    display: inline-block;
    margin: 2px 5px 2px 0;
  }

  .resentarea .sub-menu li a {
    font-size: 12px;
  }

  .entry__content p {
    line-height: 1.5;
    font-size: 14px;
    margin-bottom: 10px;
  }

  .entry__content .single-post p {
    line-height: 1.8;
    font-size: 13px;
    margin-bottom: 10px;
  }

  .page-contact .entry__content {
    position: relative;
    padding-top: 25px;
  }

  .page-contact .pmark {
    position: absolute;
    right: 15px;
    top: 5px;
    width: 50px;
    height: 50px;
  }

  .entry__content .single-post .linkarea {
    margin: 26px 0px 26px;
    background-color: #fff;
    display: block;
    width: auto;
    min-height: 42px;
  }

  .entry__content .single-post .linkarea > li a {
    width: 90px;
    text-decoration: none;
    border: 1px solid #006AB3;
    background-color: #fff;
    border-radius: 7px;
    color: #006AB3;
    font-size: 12px;
    line-height: 34px;
    height: 36px;
    text-align: center;
    display: inline-block;
  }

  .post-navigation .nav-previous, .post-navigation .nav-next {
    width: 33.3333333333%;
    height: 40px;
    line-height: 40px;
  }

  .post-navigation .nav-previous a, .post-navigation .nav-next a {
    display: block;
    width: auto;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 12px;
  }

  .entry__content .single-post .linkarea > li:first-child a:before {
    margin-right: 5px;
    margin-left: 0px;
  }

  .entry__content .single-post .linkarea > li:last-child a:after {
    margin-left: 5px;
    margin-right: 0px;
    line-height: 1;
  }

  .post-navigation {
    border-bottom: none;
    width: auto;
    height: auto;
    line-height: 1 !important;
    padding-bottom: 0px;
  }

  .post-navigation .nav-previous a:before {
    line-height: 34px;
    margin-right: 0px;
  }

  .post-navigation .nav-next {
    position: absolute;
    top: 0;
    right: 0;
  }

  .post-navigation .nav-next a:after {
    margin-left: 0px;
    line-height: 34px;
  }

  .linkarea .linklist {
    display: block;
    position: absolute;
    left: 34%;
    top: 0;
    width: 32%;
    height: 40px;
    line-height: 40px !important;
    text-align: center;
    font-size: 12px !important;
  }

  .single .single-post > .snsarea {
    margin: 26px 0px 26px 0px;
  }

  .single .single-post > .snsarea .sns_btn {
    text-align: center;
    margin: 10px 0 40px;
  }

  .single .single-post > .snsarea .sns_btn li a {
    width: 100%;
    height: 36px;
    font-size: 12px;
    line-height: 36px;
    font-weight: normal;
    border-radius: 3px;
  }

  .single .single-post > .snsarea .sns_btn li.ogn_hatebu a {
    font-weight: bold;
    background-color: #3372BB;
    box-shadow: 0 2px 0 0 #245083;
  }

  .single .single-post > .snsarea .sns_btn li.ogn_tweet a {
    background-color: #1CADEB;
    box-shadow: 0 2px 0 0 #1479A4;
    font-weight: bold;
  }

  .single .single-post > .snsarea .sns_btn li.ogn_facebook a {
    font-weight: bold;
    background-color: #246CB7;
    box-shadow: 0 2px 0 0 #194B80;
  }

  .single .single-post > .snsarea .sns_btn li a i:before {
    font-size: 14px !important;
    margin-right: 5px !important;
  }

  .single .single-post > .snsarea .sns_btn li.ogn_hatebu a i:before {
    content: "";
    display: inline-block;
    background: url(../images/icon-hatebu.png) left center no-repeat;
    background-size: auto 12px;
    width: 16px;
    height: 12px;
    font-style: normal;
    vertical-align: middle;
    margin-right: 5px;
  }

  .resentarea .fr.between {
    display: -webkit-flex !important;
    display: -webkit-flex !important;
    display: flex !important;
  }

  .resentarea .newsarea ul {
    margin-left: 0;
    text-align: center;
    display: inline-block;
  }

  .resentarea .newsarea ul li {
    text-align: left;
  }
}
/**
 * .section
 */
section {
  position: relative;
}

section #s1, section #s2, section #s3, section #s4, section #s5, section #s6 {
  position: absolute;
  top: -95px;
}

.home section #s1 {
  top: -70px;
}

section .anc {
  position: absolute;
  top: -102px;
}

@media screen and (max-width: 767px) {
  .home section #s1 {
    top: -50px;
  }
}
.section {
  padding-top: 0px;
  margin-bottom: 60px;
  display: block;
  position: relative;
}

.section .anc {
  position: absolute;
  top: -96px;
  width: 1px;
  height: 1px;
}

.section__title, .section-title {
  font-size: 24px;
  margin: 0 0 10px 0px;
  text-align: left;
  font-weight: normal;
  color: #445853;
}

h2.section__title {
  color: #107E67;
  font-size: 160%;
  border-bottom: 2px solid #D3D0C8;
  display: block;
  position: relative;
  padding-bottom: 8px;
  margin: 0 0px 34px 0;
  font-weight: normal;
  text-align: left;
}

h2.section__title:after {
  content: "";
  border-bottom: 2px solid #107E67;
  width: 30%;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.home .section__title, .section-title {
  font-size: 28px;
  margin: 0 0 0 0px;
}

ul.square {
  list-style: none;
  margin-left: 1.5em;
  margin-bottom: 30px;
}

ul.square li {
  text-indent: -1.5em;
}

ul.square li:before {
  content: "■";
  color: #107E67;
  padding-right: 0.5em;
}

ul.circle {
  list-style: none;
  margin-left: 1.5em;
  margin-bottom: 30px;
}

ul.circle li:before {
  content: "・";
  padding-right: 0.5em;
}

ul.circle li {
  text-indent: -1.5em;
  margin-bottom: 5px;
}

ol.numbers {
  margin-left: 1.5em;
}

.entry__content h3 + p {
  margin-bottom: 30px;
}

ul + .note {
  font-size: 12px;
  margin-top: -20px;
  margin-bottom: 30px;
}

.section dl {
  width: 100%;
  display: table;
  padding: 15px 0;
  border-bottom: 1px dotted #ccc;
  margin-bottom: 0;
}

.section dl:last-child {
  border-bottom: none;
}

.section dt {
  display: table-cell;
  width: 25%;
}

.section dd {
  display: table-cell;
  width: 75%;
  line-height: 1.5;
}

.section dd span {
  padding-left: 1em;
}

.section dd p {
  line-height: 1.5;
}

@media (max-width: 480px) {
  .section dt {
    display: block;
    width: 100%;
  }

  .section dd {
    display: block;
    width: 100%;
  }
}
.recruit-list {
  padding-bottom: 10px;
  padding-top: 10px;
}

.recruit-list table {
  width: 100%;
  margin-bottom: 0;
}

.recruit-list table.table-cont,
.recruit-list table.table-cont tr:first-child td {
  border-top: none;
}

.recruit-list .table-bordered * {
  border-color: #ccc !important;
}

.recruit-list table th {
  background-color: #F6F6F6;
  font-weight: normal;
  font-size: 17px;
  padding: 10px 20px;
  border-bottom: none;
}

.recruit-list table td {
  padding: 18px 20px;
  font-size: 17px;
}

.recruit-list table th:first-child,
.recruit-list table td:first-child {
  width: 70%;
}

.recruit-list table th:last-child,
.recruit-list table td:last-child {
  width: 30%;
}

.recruit-list table td a {
  text-decoration: underline;
}

.recruit-list table td a:hover {
  opacity: .5;
}

.recruit-list table td .cat {
  background-color: #000;
  padding: 5px 10px;
  text-align: center;
  color: #fff;
  display: inline-block;
  min-width: 120px;
  font-size: 14px;
  margin-right: 20px;
}

.recruit-list div.h3 {
  padding: 20px 20px;
  background-color: #FFE000;
  margin-bottom: 0;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
}

.recruit-list div.h3 h3 {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  position: relative;
}

.recruit-list div.h3 + div {
  display: none;
}

.recruit-list div.h3 h3 i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.recruit-list div.h3 .fa-chevron-up:before {
  content: "\f078";
}

.recruit-list div.h3.active .fa-chevron-up:before {
  content: "\f077";
}

@media screen and (max-width: 767px) {
  .recruit-list {
    padding-bottom: 0px;
    padding-top: 0px;
  }

  .recruit-list table th {
    font-size: 13px;
    padding: 10px 15px;
  }

  .recruit-list table td {
    padding: 10px 10px;
    font-size: 13px;
  }

  .recruit-list table td a {
    display: block;
  }

  .recruit-list table td .cat {
    padding: 3px 10px;
    min-width: 80px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 5px;
  }

  .recruit-list div.h3 {
    padding: 10px 15px;
  }

  .recruit-list div.h3 h3 {
    font-size: 16px;
  }
}
/*-------------------------------
 お問い合わせ
------------------------------- */
.home .sec6 .entry .ttl {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 25px;
}

.home .sec6 .entry p.txt {
  text-align: center;
  margin-bottom: 50px;
}

.home .sec6 .sub-page-contents .entry {
  background-color: #fff;
}

.home .sec6 dl {
  width: 100%;
  letter-spacing: -.4em;
}

.home .sec6 dt, .home .sec6 dd {
  vertical-align: top;
  display: inline-block;
  letter-spacing: normal;
  position: relative;
  text-align: left;
}

/*********************
フォーム
**********************/
.page-order .entry__content .container .row,
.page-contact .entry__content .container .row {
  padding: 0 0px 0px;
}

.page-contact .sec1 .row {
  display: block;
}

.page-contact .sec1 h2 {
  text-align: center;
  margin-bottom: 50px;
}

.page-contact .sec1 h3 {
  padding: 15px 20px;
  line-height: 1;
  font-weight: 700;
  font-size: 22px;
  border: 1px solid #ccc;
  background-color: #F6F6F6;
  text-align: left;
  margin-bottom: 55px;
}

.page-contact .sec1 h3 + p {
  text-align: center;
  line-height: 1;
  padding-bottom: 20px;
}

.page-contact .sec1 h3 + p span {
  font-size: 24px;
  font-weight: bold;
  margin-right: 20px;
}

.page-contact .sec1 h3 + p span strong {
  font-size: 36px;
  font-weight: bold;
}

.general-area {
  padding: 0 0 0px;
}

.general-area dl {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid #ccc;
}

.general-area dt {
  width: 230px;
  padding: 15px 0 15px 30px;
  line-height: 50px;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  background-color: #F6F6F6;
  border-bottom: 1px solid #ccc;
}

.general-area dt span {
  /*	position: absolute;
  	right: 20px;
  	height: 25px;
  	width: 45px;
  	text-align: center;
  	top:28px;
  	line-height: 25px;
  	color: #fff;
  	font-size: 13px;
  	font-weight: normal;
  	background-color: #666;
  */
}

form .general-area dt span.require {
  color: #D80000;
  margin-left: 10px;
}

.page-order .general-area dt span.require {
  background-color: #A3C82B;
}

.general-area dd {
  margin-left: 0px;
  padding: 15px 0px 15px 20px;
  width: calc(100% - 230px);
  line-height: 1.3;
  border-bottom: 1px solid #ccc;
  position: relative;
  margin-bottom: 0;
}
.mw_wp_form_confirm .general-area dd {
  display: flex;
  align-items: center;
}
.general-area dd.address {
  display: block;
}
.general-area dd.readonly {
  display: flex;
  align-items: center;
}
.general-area dd .mwform-radio-field {
  display: inline-block;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .general-area dd .mwform-radio-field {
    margin-top: 0;
    margin-left: 10px;
  }
}

.general-area dd .clink {
  display: block;
  width: 105px;
  margin: 0 0 0 10px;
  border: 1px solid #CCCCCC;
  background-color: #F6F6F6;
  border-radius: 8px;
  color: #333333;
  font-weight: normal;
  font-size: 16px;
  text-align: center;
  position: relative;
  height: 50px;
  line-height: 48px;
  outline: none;
}

.general-area dd.inline .wpcf7-list-item {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 0;
  line-height: 50px;
}

.general-area dd.inline .wpcf7-list-item label {
  margin-bottom: 0;
}

.general-area dd .wpcf7-list-item:last-child {
  margin-bottom: 0px;
}

.general-area dd a::after {
  right: 15px;
  top: 0;
  font-family: 'Genericons';
  content: "\f105";
  font-size: 20px;
  font-weight: bold;
  position: absolute;
}

.general-area dd a:hover, .general-area dd a:focus {
  background-color: #ccc;
  color: #fff;
  text-decoration: none;
}

.general-area dd a:hover:after {
  color: #fff;
}

.general-area dd input[type=text], .general-area dd input[type=tel], .general-area dd input[type=email] {
  width: 100%;
  height: 50px;
  line-height: 50px;
  border: 1px solid #CCCCCC;
  border-radius: 6px;
  padding: 0 10px;
  background-color: #fff;
}

.general-area dd select {
  width: 30%;
  height: 50px;
  line-height: 50px;
  border: 1px solid #CCCCCC;
  border-radius: 6px;
  padding: 0 10px;
}

.general-area dd select.mon, .general-area dd select.day {
  width: 5em;
}

.general-area dd input.year, .general-area dd input.num {
  width: 10em;
}

.general-area dd .input-group-addon {
  padding: 0 10px;
}

.general-area dd .your-postal1,
.general-area dd .your-postal2 {
  display: inline-block;
  width: 126px;
}

.general-area dd.multi span {
  display: block;
  margin-top: 10px;
}

.general-area dd.multi span:last-child {
  margin-bottom: 0;
}

.general-area dd span.line {
  padding: 0 5px;
}

.general-area dd p {
  margin-bottom: 0;
}

.general-area dd input.age {
  width: 6em;
}

.general-area dd textarea {
  width: 100%;
  line-height: 1.3;
  border: 1px solid #CCCCCC;
  border-radius: 6px;
  padding: 10px;
  background-color: #fff;
}

.general-area dd input[type=radio], .general-area dd input[type=checkbox], .agree input[type=checkbox] {
  width: 22px;
  height: 22px;
  line-height: 22px;
  vertical-align: middle;
  margin-top: 0;
}

.general-area dd input[type=radio] + span, .general-area dd input[type=checkbox] + span {
  vertical-align: middle;
  line-height: 25px;
  font-size: 16px;
  font-weight: normal;
  margin-right: 20px;
}

.general-area dd.half input {
  width: 50%;
}

.general-area dd .lg,
.general-area dd .sm {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
  align-items: center;
}

.general-area dd .lg span:first-child,
.general-area dd .sm span:first-child {
  width: 5em;
  display: block;
  line-height: 50px;
}

.general-area dd .sm > span {
  width: 30%;
}

.general-area dd .sm > span.error {
  width: 100%;
}

.general-area dd .sm > input {
  width: 30%;
}

.general-area dd .lg span:last-child {
  margin-bottom: 0px;
  -webkit-flex-grow: 3;
  flex-grow: 3;
}

.general-area dd .lg input {
  width: calc(100% - 5em);
}

.inline span.wpcf7-list-item {
  margin: 0 0 0 1em;
  display: inline-block;
}

:placeholder-shown {
  color: #CCCCCC;
  padding-top: 4px !important;
}

/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder {
  color: #CCCCCC;
  padding-top: 4px !important;
}

/* Firefox 19+ */
::-moz-placeholder {
  color: #ccc;
  padding-top: 4px !important;
  opacity: 1;
}

/* IE 10+ */
:-ms-input-placeholder {
  color: #CCCCCC;
}

.agree {
  text-align: center;
  padding: 50px 0 0;
}

.agree a {
  text-decoration: underline;
  color: #333;
  font-size: 20px;
}

.agree a:hover, .agree a:focus {
  color: #FFE000;
}

.agree > label {
  display: flex;
  justify-content: center;
  align-items: center;
}

.general-area .btnarea {
  padding: 0;
  text-align: center;
  position: relative;
  margin: 35px auto 0;
  display: flex;
  justify-content: center;
}

.general-area .btnarea input {
  z-index: 1;
  background-color: #FFE000;
  color: #000;
  display: block;
  width: 500px;
  margin: 0 20px;
  border: 0 !important;
  border-radius: 0;
  font-weight: bold;
  font-size: 26px;
  text-align: center;
  height: 100px;
  line-height: 100px;
}

.general-area .btnarea input:hover {
  color: #FFE000;
  background-color: #000;
}

.general-area .btnarea input.back {
  color: #FFE000;
  background-color: #000;
}

.general-area .btnarea input.back:hover {
  color: #000;
  background-color: #FFE000;
}

.custom-wpcf7c-confirmed .general-area .btnarea input {
  width: 250px;
}

.general-area .btnarea input[disabled],
.general-area .btnarea input[disabled=disabled] {
  opacity: .6;
}

.general-area .agree label {
  font-weight: normal;
  font-size: 20px;
}

.general-area span.wpcf7-not-valid-tip {
  margin-top: 5px;
  display: block;
}

.general-area dd .your-postal1 span.wpcf7-not-valid-tip,
.general-area dd .your-postal2 span.wpcf7-not-valid-tip {
  display: block;
  line-height: 1.3;
  padding-top: 10px;
}

.general-area .info-txt.form-control {
  display: block;
  width: 100%;
  height: 154px;
  padding: 5px 0 0;
  margin-top: 50px;
  margin-bottom: 35px;
  text-align: left;
}

.general-area .txt {
  height: 144px;
  overflow-y: auto;
  padding: 20px 20px 0;
}

.acceptance {
  margin-right: 10px;
}

.general-area dd input.readonly,
.general-area dd select[readonly="readonly"],
.general-area dd textarea:read-only,
.general-area dd textarea[readonly="readonly"],
.general-area dd input:not([type="checkbox"]):not([type="radio"]):read-only,
.general-area dd input:not([type="checkbox"]):not([type="radio"])[readonly="readonly"] {
  border: none !important;
  padding: 0;
  background-color: #fff !important;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}

.general-area dd textarea:focus,
.general-area dd input:focus {
  outline: none;
}

.wpcf7 p.input {
  /*	display: block;
  */
}

.page-thanks .flowlist,
.mw_wp_form .flowlist {
  margin: 30px 0 80px;
  display: flex;
  justify-content: center;
}

.page-thanks .flowlist > li,
.mw_wp_form .flowlist > li {
  display: flex;
  align-items: center;
}

.page-thanks .flowlist li > div,
.mw_wp_form .flowlist li > div {
  width: 70px;
  height: 70px;
  text-align: center;
  line-height: 70px;
  border-radius: 50%;
  color: #000;
  font-size: 18px;
  background-color: #DDDDDD;
}

.page-thanks .flowlist li::after,
.mw_wp_form .flowlist li::after {
  content: "";
  width: 60px;
  height: 1px;
  display: block;
  background-color: #ccc;
}

.page-thanks .flowlist li:last-child::after,
.mw_wp_form .flowlist li:last-child::after {
  display: none;
}

.mw_wp_form .flowlist li > div.active {
  color: #fff;
  background-color: #000;
}

.page-thanks .flowlist,
input[name=_wpcf7_unit_tag] {
  position: fixed;
  top: 0;
}

.general-area dd.half {
  position: relative;
}

.general-area dd .wpcf7-form-control-wrap.title {
  position: static;
}

.general-area dd .wpcf7-form-control-wrap.title::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  z-index: 100;
  top: 0;
  left: 0;
}

.single-post .thanks .cont h1 {
  text-align: center;
  background-color: transparent;
  display: block;
  margin-bottom: 50px;
  font-size: 40px;
  font-weight: normal;
}

.single-post .thanks .cont .link {
  display: block;
}

.single-post .thanks .cont a {
  color: #007FFF;
}

@media screen and (max-width: 767px) {
  .page-contact .sec1 h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 18px;
  }

  .page-contact .sec1 h3 {
    padding: 15px 15px;
    font-size: 16px;
    margin-bottom: 34px;
  }

  .page-contact .sec1 h3 + p {
    text-align: center;
    padding-bottom: 10px;
    line-height: 1;
  }

  .page-contact .sec1 h3 + p span {
    line-height: 1.5;
    font-size: 20px;
    margin-right: 0px;
    display: block;
  }

  .page-contact .sec1 h3 + p span strong {
    font-size: 30px;
  }

  .general-area dl {
    margin-bottom: 10px;
  }

  .general-area dt {
    padding: 15px 0 15px 20px;
    width: 100%;
    line-height: 1;
    font-size: 15px;
    margin-bottom: 0px;
    border-bottom: none;
  }

  .general-area dt span {
    display: inline-block;
    height: 22px;
    width: 45px;
    top: 13px;
    line-height: 22px;
    font-size: 13px;
    margin-left: 15px;
  }

  .general-area dd {
    display: block;
    margin-left: 0px;
    padding: 15px 0 15px;
    width: 100%;
    line-height: 25px;
    margin-bottom: 0px;
  }

  .your-kubun {
    margin-bottom: 60px;
    display: block;
  }

  .general-area dl dd:last-child {
    border-bottom: none;
  }

  .general-area dd input[type=text], .general-area dd input[type=tel], .general-area dd input[type=email] {
    width: 100%;
    height: 45px;
    line-height: 43px;
    font-size: 16px;
  }

  .general-area dd input[name=your-postal] {
    width: 50%;
  }

  .general-area dd .lg span:first-child, .general-area dd .sm span:first-child {
    width: 4.5em;
    font-size: 13px;
    min-width: 4.5em;
    line-height: 45px;
  }

  .general-area dd.half input {
    width: 100%;
  }

  .general-area dd textarea {
    font-size: 16px;
    width: 100%;
    line-height: 1.3;
    border: 1px solid #CCCCCC;
    border-radius: 6px;
    padding: 10px;
  }

  .general-area dd .wpcf7-list-item label {
    display: -webkit-flex;
    display: flex;
  }

  .general-area dd p:first-child + p {
    margin-top: 10px;
  }

  .general-area dd input[type=radio], .general-area dd input[type=checkbox], .agree input[type=checkbox] {
    width: 20px;
    height: 20px;
    line-height: 20px;
    vertical-align: middle;
    margin-top: 0;
    margin-right: 5px;
  }

  .general-area dd input[type=radio] + span, .general-area dd input[type=checkbox] + span {
    vertical-align: middle;
    line-height: 20px;
    font-size: 14px;
    font-weight: normal;
    margin-right: 15px;
  }

  .wpcf7-list-item label {
    line-height: 20px;
    margin: 10px 0;
  }

  .general-area dd .your-postal1, .general-area dd .your-postal2 {
    display: inline-block;
    width: 100px;
  }

  .general-area dd .clink {
    display: block;
    white-space: nowrap;
    width: auto;
    margin: 0 0 0 10px;
    font-size: 12px;
    padding: 0 10px;
    height: 45px;
    line-height: 43px;
    outline: none;
  }

  .general-area {
    padding: 0 20px 0px;
    margin: 0 0px;
  }

  .wpcf7 p {
    padding: 0 20px;
  }

  span.wpcf7-list-item {
    margin-left: 0;
    line-height: 20px;
  }

  .general-area span.wpcf7-list-item {
    display: block;
  }

  .general-area dd input.age {
    width: 6em;
  }

  .general-area dd .sm > span {
    width: 100%;
  }

  .general-area .agree {
    font-size: 12px;
    padding-top: 10px;
  }

  .general-area .agree label {
    font-weight: normal;
    font-size: 12px;
  }

  .agree a {
    font-size: 12px;
  }

  .acceptance {
    display: inline-block;
  }

  .general-area .info-txt.form-control {
    display: block;
    width: 100%;
    height: 115px;
    padding: 5px 0 0;
    margin-top: 0px;
    margin-bottom: 35px;
    text-align: left;
  }

  .general-area .txt {
    height: 109px;
    overflow-y: auto;
    padding: 20px 10px 0;
  }

  .general-area .btnarea {
    width: 100%;
    margin: 20px auto 30px;
    display: flex;
    justify-content: center;
  }

  .general-area .btnarea .arrow {
    width: 100%;
    font-size: 22px;
    text-align: center;
    height: 50px;
    line-height: 50px;
  }

  .custom-wpcf7c-confirmed .general-area .btnarea input {
    margin: 0 10px;
  }

  .general-area .btnarea input {
    margin: 0 10px;
    font-size: 16px;
    height: 60px;
    line-height: 60px;
  }

  .general-area .btnarea .arrow:after {
    right: 10px;
    font-size: 18px;
  }

  .page-thanks .flowlist,
  .wpcf7 .flowlist {
    margin: 20px 0 50px;
    display: flex;
    justify-content: center;
  }

  .page-thanks .flowlist li > div,
  .wpcf7 .flowlist li > div {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }

  .page-thanks .flowlist li::after,
  .wpcf7 .flowlist li::after {
    width: 40px;
  }

  .general-area dd input.year, general-area dd input.num {
    width: 6em !important;
  }

  .general-area .form-inline {
    flex-wrap: nowrap;
  }

  .general-area .form-inline .input-group {
    flex-wrap: nowrap;
    width: auto;
    margin-bottom: 0;
  }

  .general-area .input-group-addon {
    padding: 0px 3px;
    line-height: 45px;
  }

  .wpcf7-list-item label {
    margin: 0;
  }

  .custom-wpcf7c-confirmed .general-area dd input.year,
  .custom-wpcf7c-confirmed .general-area dd input.year2 {
    width: 4em !important;
    text-align: center;
  }

  .custom-wpcf7c-confirmed .general-area dd select.day,
  .custom-wpcf7c-confirmed .general-area dd select.day2, .custom-wpcf7c-confirmed .general-area dd select.mon,
  .custom-wpcf7c-confirmed .general-area dd select.mon2 {
    width: 2.5em !important;
    text-align: center;
  }

  .page-thanks .entry__content .single-post .cont h1 {
    margin-bottom: 30px;
    font-size: 30px;
  }

  .page-thanks #container {
    height: calc(100vh - 185px);
  }
}
/*-------------------------------
 home
------------------------------- */
.home section {
  text-align: center;
  padding: 0;
}

.home section > * {
  text-align: left;
}

.home section .row {
  text-align: center;
  position: relative;
}

.home .ttlarea {
  text-align: left;
}

.home .ttlarea h2,
.home .ttlarea .h2 {
  text-align: left;
  font-size: 50px;
  letter-spacing: 0.04em;
  font-weight: 700;
  position: relative;
  display: block;
  margin-bottom: 0;
  width: 350px;
  min-width: 350px;
}

.home .ttlarea p {
  font-size: 16px;
  line-height: 1.8;
}

.home .sec0 .columlist .img {
  background: url("../images/img_top_company.jpg") center center;
  background-size: cover;
  height: 300px;
  width: 50%;
}

.home .sec0 .columlist .txt {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  background-color: #fff;
  padding: 0 55px;
}

.home .sec0 .columlist .txt p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  margin: 25px 0;
}

.home .sec0 .columlist .txt a.btn {
  display: block;
  width: 230px;
  margin-top: 0px;
}

.home .ttlarea .ttl {
  display: inline-block;
  font-size: 18px;
  font-weight: normal;
  margin-top: 20px;
}

.home h3 {
  text-align: left;
  font-size: 40px;
  font-weight: 700;
  color: #000;
}

.home h3.line {
  margin: 70px 0 40px;
  display: flex;
  align-items: center;
}

.home .columlist h3 {
  margin-top: 0;
  margin-bottom: 0px;
}

.home .columlist p {
  margin-bottom: 0;
}

.home h3.line::after {
  content: "";
  height: 1px;
  background-color: #000;
  flex-grow: 10;
  margin-left: 24px;
}

.home .sec0 {
  padding: 130px 0 100px;
  position: relative;
  background-color: #FFE000;
  margin-top: -130px;
}

.home .sec0 .ttlarea {
  margin-top: 35px;
  margin-bottom: 70px;
}

.home .sec0 .ttlarea * {
  margin: 0;
  padding: 0;
}

.home .sec0 #stafflist .slick-prev,
.home .sec0 #stafflist .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 0px;
  display: block;
  width: 46px;
  height: 46px;
  border: 0;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  margin-top: -120px;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  z-index: 2;
  top: 50%;
  transform: translateY(-40%);
}

.home .sec0 #stafflist .slick-prev {
  left: -50px;
  transform: rotate(-45deg);
}

.home .sec0 #stafflist .slick-next {
  right: -50px;
  transform: rotate(135deg);
}

.home .sec0 #stafflist {
  margin: 0 -6px;
}

.home .sec0 #stafflist li {
  padding: 0 6px 40px;
  outline: none;
}

.home .sec0 #stafflist li a {
  text-decoration: none;
  transition: all 0.3s;
  outline: none;
}

.home .sec0 #stafflist li a:hover * {
  opacity: .8;
}

.home .sec0 #stafflist li .img {
  background-repeat: no-repeat;
  width: 348px;
  height: 454px;
  background-size: cover;
  outline: none;
  position: relative;
  overflow: hidden;
}

.home .sec0 #stafflist li .img span {
  display: block;
  background: url("../images/nami1.svg") no-repeat;
  background-size: 100% auto;
  background-position: top center;
  position: absolute;
  width: 100%;
  height: 20px;
  bottom: 0;
  left: 0;
}

.home .sec0 #stafflist li.s1 .img {
  background-image: url("../images/img_top_staff1.png");
}

.home .sec0 #stafflist li.s2 .img {
  background-image: url("../images/img_top_staff2.png");
}

.home .sec0 #stafflist li.s3 .img {
  background-image: url("../images/img_top_staff3.png");
}

.home .sec0 #stafflist li.s4 .img {
  background-image: url("../images/img_top_staff4.png");
}

.home .sec0 #stafflist li.s5 .img {
  background-image: url("../images/img_top_staff5.png");
}

.home .sec0 #stafflist li .txt {
  padding: 40px 30px;
}

.home .sec0 #stafflist li .txt p {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 0.5em;
}

.home .sec0 #stafflist li .txt p.small {
  font-size: 15px;
  font-weight: normal;
  margin-bottom: 0.3em;
}

.home .sec0 .columns2 {
  padding: 50px;
  background-color: #fff;
}

.home .sec0 .columns2 h3 {
  width: 50%;
  margin: 0;
  padding-right: 50px;
  text-align: center;
}

.home .sec0 .columns2 .btns {
  width: 50%;
  margin: 0;
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.home .sec0 .columns2 .btns .btn {
  width: 230px;
}

.home .sec1 {
  padding: 2px 0 0 0;
}

.home .sec1 .fr > div {
  width: 50%;
  text-align: center;
  background-size: cover;
  background-position: center center;
  padding: 55px 0;
}

.home .sec1 .fr > div .inner {
  margin: 0 auto;
  border: 4px solid #fff;
  flex-direction: column;
  justify-content: center;
  max-width: 420px;
  padding: 90px 50px;
  display: flex;
  align-items: center;
  height: 100%;
}

.home .sec1 .fr > div:first-child {
  background-image: url("../images/bg_top_sec1_left.jpg");
  border-right: 1px solid #fff;
}

.home .sec1 .fr > div:last-child {
  background-image: url("../images/bg_top_sec1_right.jpg");
  border-left: 1px solid #fff;
}

.home .sec1 .fr > div .inner h3 {
  text-align: center;
  color: #fff;
  margin-bottom: 65px;
  display: flex;
  align-items: center;
  min-height: 104px;
  line-height: 1.3;
  position: relative;
}

.home .sec1 .fr > div .inner h3::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 5px;
  background-color: #fff;
  left: 50%;
  transform: translateX(-50%);
  bottom: -35px;
}

.home .sec1 .fr > div .inner .btnarea {
  margin-top: 30px;
}

.home .sec1 .fr > div .inner p {
  font-size: 16px;
  line-height: 2;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.home .sec1 .fr > div .inner .btn {
  width: 230px;
}

.home .sec1 .fr > div .inner .btns .btn {
  width: 110px;
  margin: 0 5px;
}

.home .sec1 .fr > div .inner .btns .btn::after,
.home .sec1 .fr > div .inner .btns .btn::before {
  display: none;
}

.home .sec_company {
  padding: 95px 0 80px;
  background-color: #F6F6F6;
}

.home .sec_company .container {
  position: relative;
}

.home .sec_company h2 {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 45px;
}

.home .sec_company h3 {
  margin-bottom: 30px;
  padding-top: 105px;
}

.home .sec_company > .fr {
  margin-bottom: 80px;
}

.home .sec_company .fr .inner {
  height: 412px;
  width: 725px;
  padding: 0 50px;
  margin: 0 0 0 auto;
  position: relative;
}

.home .sec_company .fr .txt {
  height: 412px;
  width: calc(50% + 128px);
}

.home .sec_company .fr .img {
  width: calc(50% - 128px);
  background: url("../images/sp_img_top_sec2.jpg") no-repeat;
  background-size: cover;
}

.home .sec_company .fr p {
  font-size: 17px;
  line-height: 2;
}

.home .sec_company .fr .inner a {
  position: absolute;
  left: 50px;
  bottom: 0;
  width: 230px;
}

.companylist {
  margin: 0px -22px 0;
  padding-top: 57px;
}

.companylist li {
  padding: 0 22px;
  flex: 1;
}

.companylist li dl {
  background-color: #fff;
  margin: 0;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  padding-bottom: 50px;
  height: 100%;
}

.companylist li dl dt {
  position: relative;
  font-size: 22px;
  padding: 80px 0 0 0px;
  text-align: center;
  font-weight: normal;
}

.companylist li dl dt::before {
  content: "";
  width: 114px;
  height: 114px;
  border-radius: 50%;
  background-color: #FFE000;
  text-align: center;
  line-height: 114px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -57px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 70px auto;
}

.companylist li:first-child dl dt::before {
  background-image: url("../images/icon1.svg");
}

.companylist li:nth-child(2) dl dt::before {
  background-image: url("../images/icon2.svg");
}

.companylist li:nth-child(3) dl dt::before {
  background-image: url("../images/icon3.svg");
}

.companylist li dl dd {
  font-size: 30px;
  margin-bottom: 0px;
  text-align: center;
  font-weight: 900;
  padding: 0 40px 0px;
  text-align: center;
}

.companylist li dl dd span {
  font-size: 80px;
  font-weight: 900;
  margin-bottom: 30px;
  margin-right: 5px;
}

.companylist li dl dd p {
  font-weight: normal;
  margin-bottom: 0;
  line-height: 1.3 !important;
  display: inline-block;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .home .sec0 .ttlarea * {
    margin: 0;
    padding: 0;
  }

  .home .ttlarea h2,
  .home .ttlarea .h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 30px;
    width: auto;
    min-width: auto;
  }

  .home .ttlarea p {
    font-size: 13px;
    line-height: 1.8;
  }

  .home .sec0 .columlist {
    display: block;
  }

  .home .sec0 .columlist .img {
    background: url("../images/img_top_company.jpg");
    background-size: cover;
    background-position: center center;
    height: auto;
    padding-top: 52%;
    width: 100%;
  }

  .home .sec0 .columlist .txt {
    width: 100%;
    padding: 0 20px 30px;
  }

  .home .sec0 .columlist .txt p {
    font-size: 13px;
    line-height: 1.8;
    margin: 15px 0;
  }

  .home .sec0 .columlist .txt a.btn {
    width: 50%;
    margin: 0 auto;
  }

  .home .ttlarea .ttl {
    display: inline-block;
    font-size: 18px;
    font-weight: normal;
    margin-top: 20px;
  }

  .home h3 {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #000;
  }

  .home h3.line {
    margin: 30px 0 30px;
    display: block;
    text-align: center;
  }

  .home .columlist h3 {
    margin: 0px auto;
    text-align: center;
    padding: 30px 0 0px;
  }

  .home .columlist p {
    margin-bottom: 0;
  }

  .home h3.line::after {
    display: none;
  }

  .home .sec0 {
    padding: 38px 20px 45px;
    margin-top: 0px;
  }

  .home .sec0 .ttlarea {
    margin-top: 0px;
    display: block;
    text-align: center;
    margin-bottom: 30px;
  }

  .home .sec0 #stafflist .slick-prev,
  .home .sec0 #stafflist .slick-next {
    width: 24px;
    height: 24px;
    margin-top: -120px;
    top: 50%;
    transform: translateY(-40%);
  }

  .home .sec0 #stafflist .slick-prev {
    left: -5px;
    transform: rotate(-45deg);
  }

  .home .sec0 #stafflist .slick-next {
    right: -5px;
    transform: rotate(135deg);
  }

  .home .sec0 #stafflist {
    margin: 0 0px;
  }

  .home .sec0 #stafflist li {
    padding: 0 3px 30px;
    outline: none;
  }

  .home .sec0 #stafflist li .img {
    width: 100%;
    height: auto;
    padding-top: 130.4597701149425%;
  }

  .home .sec0 #stafflist li .img span {
    background-position: bottom center;
    bottom: -1px;
  }

  .home .sec0 #stafflist li .txt {
    padding: 20px 3px 0;
  }

  .home .sec0 #stafflist li .txt p {
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 0.5em;
  }

  .home .sec0 #stafflist li .txt p.small {
    font-size: 10px;
    margin-bottom: 0.3em;
  }

  .home .sec0 .columns2 {
    padding: 20px;
    display: block;
  }

  .home .sec0 .columns2 h3 {
    width: 100%;
    padding-right: 0px;
    margin-bottom: 20px;
  }

  .home .sec0 .columns2 .btns {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    text-align: center;
  }

  .home .sec0 .columns2 .btns .btn {
    width: 46%;
  }

  .home .sec1 > .fr {
    display: block;
  }

  .home .sec1 .fr > div {
    width: 100%;
    text-align: center;
    background-size: cover;
    background-position: center center;
    padding: 30px 20px;
  }

  .home .sec1 .fr > div .inner {
    margin: 0 auto;
    border: 2px solid #fff;
    flex-direction: column;
    justify-content: center;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    height: 100%;
  }

  .home .sec1 .fr > div:first-child {
    border-right: none;
    border-bottom: 1px solid #fff;
  }

  .home .sec1 .fr > div:last-child {
    border-left: none;
  }

  .home .sec1 .fr > div .inner h3 {
    text-align: center;
    color: #fff;
    margin-bottom: 0px;
    display: block;
    align-items: center;
    min-height: auto;
    line-height: 1.3;
    position: relative;
  }

  .home .sec1 .fr > div .inner h3::after {
    width: 50px;
    height: 2px;
    position: relative;
    bottom: auto;
    display: block;
    left: auto;
    transform: translate(0);
    margin: 20px auto 20px;
  }

  .home .sec1 .fr > div .inner p {
    font-size: 13px;
    line-height: 2;
    padding: 0 20px;
    margin-bottom: 15px;
  }

  .home .sec1 .fr > div .inner .btnarea {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }

  .home .sec1 .fr > div .inner .btn {
    width: 45%;
  }

  .home .sec_company {
    padding: 35px 0 35px;
  }

  .home .sec_company h2 {
    position: relative;
    font-size: 30px;
    text-align: center;
    margin-bottom: 30px;
  }

  .home .sec_company h3 {
    margin-bottom: 25px;
    padding: 25px 30px 0;
  }

  .home .sec_company > .fr {
    margin-bottom: 50px;
    flex-direction: column;
    padding: 0 20px;
  }

  .home .sec_company .fr .inner {
    height: auto;
    width: 100%;
    padding: 0 0px;
    margin: 0 0 0 auto;
    position: relative;
  }

  .home .sec_company .fr .txt {
    order: 2;
    height: auto;
    width: 100%;
  }

  .home .sec_company .fr .img {
    order: 1;
    width: 100%;
    height: auto;
    padding-top: 61.49253731343284%;
    background: url("../images/sp_img_top_sec2.jpg") no-repeat;
    background-size: cover;
  }

  .home .sec_company .fr p {
    font-size: 12px;
    line-height: 2;
  }

  .home .sec_company .fr .inner a {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 20px auto;
    max-width: 230px;
  }

  .home .sec_company .container {
    padding: 0 20px;
  }

  .companylist.fr.between {
    margin: 0px 0px 0;
    padding-top: 0px;
    display: block;
  }

  .companylist li {
    padding: 0 0px;
    margin-bottom: 15px;
  }

  .companylist li dl {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: center;
    align-items: center;
    padding: 45px 0;
  }

  .companylist li dl dt {
    position: static;
    font-size: 15px;
    padding: 0px 10px 0px 0px;
    text-align: center;
    font-weight: normal;
  }

  .companylist li dl dt::before {
    width: 76px;
    height: 76px;
    line-height: 76px;
    top: -38px;
    background-size: 50px auto;
  }

  .companylist li dl dd {
    font-size: 18px;
    margin-bottom: 0px;
    text-align: center;
    font-weight: 900;
    padding: 0 0px 0px;
  }

  .companylist li dl dd + dd {
    width: 100%;
  }

  .companylist li dl dd span {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 30px;
    margin-right: 5px;
  }

  .companylist li dl dd p {
    font-weight: normal;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .row > p {
    position: relative;
    right: auto;
    top: auto;
    font-size: 12px;
    line-height: 1.8;
  }

  .ancer {
    top: -90px;
  }
}
/*sec2*/
.home .sec2 {
  padding: 110px 0 110px 0;
  background-color: #F6F6F6;
}

.home .sec2 .container .row {
  text-align: left;
}

.newslist.newsarea {
  margin-left: 0px;
}

.newslist.newsarea ul {
  list-style: none;
  margin: 0 0px;
  justify-content: flex-start;
}

.newslist.newsarea dl {
  margin-bottom: 20px;
  padding: 0px 0;
}

.blog main .newslist.newsarea dl,
.archive main .newslist.newsarea dl {
  margin-bottom: 40px;
}

.newslist.newsarea dt, .newsbox.newsarea dd {
  padding: 0px 0 0px;
  font-weight: normal;
}

.newslist.newsarea dt {
  vertical-align: top;
  overflow: hidden;
  min-width: 120px;
}

.newslist.newsarea dt > a {
  display: block;
  overflow: hidden;
}

.newslist.newsarea dt .img {
  width: 100%;
  padding-top: 72%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transition: all 0.3s;
  overflow: hidden;
  position: relative;
  background-color: #eee;
  -webkit-transition: transform ease 0.3s;
  transition: transform ease 0.3s;
  overflow: hidden;
}

.newslist.newsarea dt:hover .img,
.search .newslist.newsarea dt:hover .img,
.archive .newslist.newsarea dt:hover .img,
.blog .newslist.newsarea dt:hover .img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.newslist.newsarea .metaarea {
  color: #535353;
  font-weight: 400;
  margin: 0px 0 0;
  text-align: left;
}

.newslist.newsarea .cat {
  text-decoration: none;
  width: 125px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  display: inline-block;
  margin-right: 10px;
  font-size: 14px;
  color: #fff;
}

.cat.cat-blog {
  background-color: #00AEDB;
}

.cat.cat-voice {
  background-color: #63BD63;
}

.cat.cat-seminar {
  background-color: #F9AE00;
}

.cat.cat-info {
  background-color: #FD7032;
}

.newslist.newsarea .cat:hover {
  opacity: .8;
}

.newslist.newsarea dd {
  vertical-align: middle;
  padding-left: 0px;
  text-align: left;
}

.newslist.newsarea dd .title {
  padding: 10px 0;
  display: block;
  font-size: 16px;
  line-height: 1.5;
}

.newslist.newsarea a.title {
  /*text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;*/
}

.newslist.newsarea dd .title:hover {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .newslist.newsarea {
    padding: 0 20px;
  }

  .readmore {
    margin-top: 30px;
  }

  .readmore a {
    font-size: 13px;
    line-height: 43px;
    height: 45px;
  }

  .readmore a::before {
    right: 15px;
    top: 25px;
    height: 1px;
    width: 15px;
    display: block;
  }

  .readmore a::after {
    transform: rotate(42deg);
    width: 10px;
    height: 1px;
    right: 12px;
    top: 22px;
  }

  .readmore a:hover {
    background-color: #eee;
  }

  .home .sec2 {
    padding: 60px 20px 30px;
  }

  .home .sec2 .container {
    position: relative;
    padding: 0px 0 0px 0;
    overflow: hidden;
  }

  .home .newslist.newsarea ul {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 11px;
  }

  .home .sec_info .newslist.newsarea ul li {
    padding: 0 9px 20px;
  }

  .newslist.newsarea dl {
    margin: 0;
  }

  .newslist.newsarea dd div.title {
    font-size: 14px;
  }

  .newslist.newsarea dd .cat {
    /*width: 60px;
    text-align: center;
    display: inline-block;
    margin-left: 10px;
    font-size: 11px;
    color: #fff;*/
  }
}
@media screen and (max-width: 767px) {
  .home .sec4 {
    padding: 30px 0px 0px;
  }

  .home .sec4 .container {
    position: relative;
  }

  .home .sec4 #gmap {
    width: 100%;
    height: 200px;
  }

  .home .newsarea {
    margin-bottom: 0px;
  }

  .newsarea dl {
    width: 100%;
    display: block;
    padding: 0px 0 0;
  }

  .newsarea dt, .newsarea dd {
    padding: 0;
    font-weight: normal;
    display: block;
    font-size: 12px;
  }

  .newsarea dt {
    width: 100%;
    padding: 0;
    font-weight: bold;
    height: auto;
    margin-bottom: 10px;
  }

  .newsarea dd {
    width: 100%;
    margin-bottom: 0;
  }

  .newsarea dt a {
    height: auto;
  }

  .newsarea dt a span {
    height: auto;
  }

  .newsarea dt a.noimg span {
    background-size: 70% auto;
  }

  .newsarea dd a {
    font-size: 13px;
    line-height: 1.5;
  }

  .home .sec_info .newsarea dd a.title {
    font-size: 12px;
    line-height: 1.5;
  }

  .newslist.newsarea .cat {
    text-decoration: none;
    width: 80px;
    height: 24px;
    line-height: 24px;
    margin-right: 10px;
    font-size: 10px;
  }

  .newslist.newsarea dd .title {
    padding: 5px 0;
  }
}
/*foot*/
#page-top {
  display: none;
  position: absolute;
  z-index: 9999;
  bottom: 0px;
  right: 30px;
  font-size: 12px;
}

#page-top a {
  line-height: 1;
  text-decoration: none;
  color: #fff;
  text-align: center;
  width: 25px;
  display: block;
  position: relative;
  padding: 0 0 8em 0;
  transition: all 0.2s;
}

#page-top a:hover {
  opacity: .8;
}

#page-top a:before {
  content: "";
  height: 75px;
  width: 3px;
  display: block;
  background-color: #fff;
}

#page-top a span {
  display: block;
  transform: rotate(-90deg);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  width: 8em;
  position: absolute;
  bottom: 38px;
  left: -55px;
}

#page-top a span:before {
  position: absolute;
  transform: rotate(40deg);
  content: "";
  width: 15px;
  height: 3px;
  right: -72px;
  top: 2px;
  background-color: #fff;
}

.contactbtn {
  position: fixed;
  z-index: 9999;
  top: 360px;
  right: 0px;
  font-size: 12px;
}

.contactbtn a {
  text-align: center;
  padding-top: 65px;
  font-size: 22px;
  text-decoration: none;
  height: 198px;
  width: 100px;
  display: block;
  font-weight: bold;
  background-color: #FFE000;
  background-image: url("../images/icon_mail_b.svg");
  background-position: center 35px;
  background-repeat: no-repeat;
  background-size: 30px auto;
  display: flex;
  align-items: center;
  color: #000;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.contactbtn a + a {
  margin-top: 1px;
  height: 230px;
  background-color: #FFE000;
  color: #000;
  padding-top: 0;
  background-image: none;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.contactbtn a + a i {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.contactbtn a:hover {
  background-color: #000;
  color: #FFE000;
  background-image: url("../images/icon_mail_y.svg");
}

.contactbtn a + a:hover {
  background-image: none;
}

@media screen and (max-width: 767px) {
  #page-top {
    display: none;
    position: fixed;
    z-index: 9999;
    bottom: 30px;
    right: 30px;
    font-size: 12px;
  }

  .contactbtn {
    display: none;
  }
}
/*contact*/
.form-control {
  box-shadow: none;
}

.form {
  width: 100%;
  margin: 0 auto;
}

.form dl {
  width: 100%;
  display: table;
  border-bottom: 1px solid #D3D0C8;
  margin-bottom: 0;
}

.form dt {
  font-weight: normal;
  padding: 18px 0px 18px 20px;
  width: 220px;
  display: table-cell;
  position: relative;
  vertical-align: top;
}

.form dd {
  vertical-align: top;
  padding: 12px 30px;
  width: 518px;
  display: table-cell;
}

.form .requre {
  font-size: 100%;
  font-weight: normal;
  color: #B33232;
  margin-left: 10px;
}

.mw_wp_form_confirm .form .requre {
  display: none;
}

.form .two .form-inline > span {
  display: inline-block;
  width: 219px;
  vertical-align: top;
}

.form .two .form-inline > span:first-child {
  margin-right: 20px;
}

.form .two .form-control {
  width: 219px;
}

.form .two .form-control:first-child {
  margin-right: 0px;
}

.form-control {
  display: block;
  width: 100%;
  height: 30px;
  padding: 4px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 7px;
}

input[type="search"].form-control,
input[type="text"].form-control {
  height: 42px;
  line-height: 40px;
}

.form .age_area > span {
  display: inline-block;
  position: relative;
  vertical-align: top;
  line-height: 30px;
}

.form .age {
  width: 80px;
  margin: 0 10px 0 10px;
  vertical-align: top;
}

.form .radioarea {
  display: inline-block;
  margin-left: 30px;
  vertical-align: top;
}

.form .mwform-radio-field {
  margin-right: 20px;
  margin-left: 0px !important;
}

.form .mwform-checkbox-field {
  margin-right: 20px;
  margin-left: 0px !important;
}

.form .radioarea .mwform-radio-field {
  margin-right: 0px;
  margin-left: 20px !important;
}

.form .mwform-radio-field input, .form .mwform-checkbox-field input {
  margin-top: 0;
}

.form .mwform-zip-field {
  display: block;
  margin-bottom: 10px;
}

.form .mwform-zip-field input:first-child {
  margin-left: 10px;
}

.form .prefecture_area {
  line-height: 30px;
  margin-bottom: 10px;
}

.form .prefecture_area span {
  display: inline-block;
  width: 4em;
}

.form .address_area span {
  display: inline-block;
  width: 4em;
}

.form .prefecture_area select {
  display: inline-block;
  margin-left: 10px;
  width: 150px;
}

.form .address_area {
  line-height: 30px;
}

.form .address_area input {
  display: inline-block;
  margin-left: 10px;
  width: 395px;
}

.mwform-checkbox-field label, .mwform-radio-field label {
  line-height: 30px;
}

.form .cbox2 {
  letter-spacing: -.4em;
}

.form .cbox2 .mwform-checkbox-field {
  display: inline-block;
  letter-spacing: normal;
  vertical-align: top;
  margin-right: 0;
}

.form .cbox2 .mwform-checkbox-field:nth-child(odd) {
  width: 198px;
}

.form .cbox2 .mwform-checkbox-field:nth-child(even) {
  width: 290px;
}

.form dd.wide {
  padding-right: 0;
}

.form .txt {
  margin-bottom: 10px;
}

.form .tdtitle {
  background-color: #F5F5F4;
  padding: 4px 10px;
  margin: 20px 0 10px;
}

.form .cbox {
  margin-bottom: 10px;
}

.form .btnarea {
  margin-top: 25px;
  text-align: center;
  letter-spacing: -.4em;
}

.form .btnarea > div {
  letter-spacing: normal;
  display: inline-block;
}

.form .btnarea .btn {
  margin: 0 15px;
  width: 214px;
  height: 50px;
  font-weight: bold;
  font-size: 120%;
  letter-spacing: 0.1em;
}

.btn-primary {
  color: #fff;
  border: 0;
  background: #0A59A8;
}

.btn-primary:hover {
  opacity: 0.8;
}

.form .btnarea .btn-default {
  color: #107E67;
  background-color: #FFF;
  border-color: #107E67;
}

.mw_wp_form {
  margin-bottom: 60px;
}

.mw_wp_form .error {
  margin-top: 5px;
}

.mw_wp_form .age_area .error {
  margin-top: 0px;
}

.form .ktitle {
  padding: 30px 0 15px 20px;
}

.formtxt {
  overflow: auto;
  height: 250px;
  border: 1px solid #eee;
  padding: 10px;
  margin: 0px 20px 10px 20px;
  line-height: 1.3;
}

.formtxt h4 {
  font-size: 14px;
  font-weight: normal;
  margin-top: 20px;
}

.formtxt h4 span {
  padding-right: 10px;
}

.formtxt h5 {
  font-weight: normal;
}

.form .confirmcheck {
  text-align: center;
  font-size: 110%;
}

.form .confirmcheck .mwform-checkbox-field {
  margin-right: 0px;
  margin-left: 0px !important;
}

.mw_wp_form_confirm .confirmcheck, .mw_wp_form_confirm .ktitle, .mw_wp_form_confirm .formtxt {
  display: none;
}

.mw_wp_form_confirm .two .form-inline > span {
  width: auto;
}

@media screen and (max-width: 767px) {
  .form dl {
    display: block;
  }

  .form dt {
    font-weight: normal;
    padding: 10px 0px 0px 0px;
    width: 100%;
    display: block;
    border-right: none;
    position: relative;
    vertical-align: top;
  }

  .form .requre {
    font-size: 100%;
    font-weight: normal;
    color: #B33232;
    margin-left: 0px;
  }

  .form dd {
    vertical-align: top;
    padding: 5px 0px 10px 0;
    width: 100%;
    display: block;
  }

  .form .two .form-inline > span {
    width: 48%;
  }

  .form .two .form-control {
    width: 100%;
  }

  .form .two .form-inline > span:first-child {
    margin-right: 4%;
  }

  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  .form .age {
    width: 80px;
    margin: 0 5px 0 5px;
  }

  .form .radioarea {
    margin-left: 15px;
  }

  .form .radioarea .mwform-radio-field {
    margin-right: 0px;
    margin-left: 10px !important;
  }

  .form .address_area input {
    display: block;
    margin-left: 0px;
    width: 100%;
  }

  .form .btnarea .btn {
    margin: 0;
    width: 100%;
    height: 50px;
    font-weight: bold;
    font-size: 120%;
    letter-spacing: 0.1em;
  }

  .form .btnarea .btn-primary {
    background: #107E67;
  }

  .form .prefecture_area {
    margin-bottom: 0px;
  }

  .form .txt {
    font-size: 90%;
  }

  .form .ktitle {
    padding: 20px 0 15px 0px;
  }

  .formtxt {
    overflow: auto;
    height: 250px;
    border: 1px solid #eee;
    padding: 10px;
    margin: 0px 0px 10px 0px;
    line-height: 1.3;
  }

  .mwform-tel-field input[type="text"], .mwform-zip-field input[type="text"] {
    max-width: 85px;
  }

  .mw_wp_form_confirm .btnarea > div {
    min-width: 100px;
    margin: 0 10px;
  }
}
/*-----------------------
pagination
---------------------------*/
.autopagination {
  text-align: center;
}

.pagination-wrapper {
  text-align: left !important;
}

.pagination {
  padding-left: 0;
  margin: 50px 0 0;
}

.pagination > li > a, .pagination > li > span {
  position: relative;
  float: left;
  padding: 7px 13px;
  margin: 0 6px;
  line-height: 1.42857143;
  color: #000;
  border-radius: 0px !important;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ccc;
}

.pagination > li > span.current, .pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover {
  z-index: 2;
  color: #FFF;
  background-color: #000;
  border-color: #000;
}

.pagination > li > a.prev,
.pagination > li > a.next {
  color: #fff;
  background-color: #999;
  border: 1px solid #999;
}

.pagination > li > span.disable {
  color: #fff;
  background-color: #CCCCCC;
  border: 1px solid #CCCCCC;
}

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

  .pagination > li > a, .pagination > li > span {
    padding: 4px 10px;
    margin: 0 4px;
  }

  .pagination-wrapper {
    text-align: center !important;
  }
}
@media screen and (max-width: 375px) {
  .pagination > li > a, .pagination > li > span {
    padding: 4px 8px;
    margin: 0 2px;
  }
}
/* top slide Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: 100px;
  display: inline-block !important;
  left: 50%;
  transform: translateX(-550px);
  width: auto;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots.thin {
  bottom: 20px;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: auto;
  height: 14px;
  margin: 0 8px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 14px;
  height: 14px;
  padding: 0px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  border: 0;
  outline: none;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li.slick-active button {
  border: 2px solid #fff;
  background-color: transparent;
}

@media screen and (max-width: 767px) {
  .slick-dots li button {
    width: 40px;
  }
}
/*==================================================
 * archive
 *================================================*/
/**
 * .entries
 */
.entries .article {
  padding-bottom: 50px;
}

.entry .article {
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.entry .article .entry_title {
  font-size: 16px;
  border-left: 2px solid #008C8C;
  padding: 0px 0 0px 15px;
  margin-bottom: 10px;
  display: block;
  padding: 0px 110px 0px 15px;
}

.entry .article .date {
  padding: 2px 7px;
  float: right;
  color: #FFF;
  display: block;
  background-color: #107E67;
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .entries .article {
    padding: 0 20px;
  }
}
@media screen and (max-width: 480px) {
  .entry .article .entry {
    text-align: right;
  }

  .entry .article .date {
    display: inline-block;
  }

  .entry .article .entry_title {
    width: 100%;
    padding: 0px 10px 0px 10px;
    margin-top: 30px;
    text-align: left;
  }

  .entry .article .entry__summary {
    text-align: left;
  }
}
.wpcf7 .ajax-loader {
  display: none;
}

/**form***************/
.mw_wp_form_input .step1 {
  display: block;
}
.mw_wp_form_input .step2 {
  display: none;
}
.mw_wp_form_input .wpcf7c-elm-step1 {
  display: block;
}
.mw_wp_form_input .wpcf7c-elm-step1 dt .require {
  display: inline-block;
}
.mw_wp_form_input .wpcf7c-elm-step2 {
  display: none;
}
.mw_wp_form_input.mw_wp_form .flowlist li > div.wpcf7c-elm-step1 {
  color: #fff !important;
  background-color: #000 !important;
  display: block !important;
}
.mw_wp_form_input.mw_wp_form .flowlist li > div.wpcf7c-elm-step2 {
  color: #000 !important;
  background-color: #DDDDDD !important;
  display: block !important;
}

.mw_wp_form_confirm .step1 {
  display: none;
}
.mw_wp_form_confirm .step2 {
  display: block;
}
.mw_wp_form_confirm .wpcf7c-elm-step1 {
  display: none;
}
.mw_wp_form_confirm .wpcf7c-elm-step2 {
  display: initial;
}
.mw_wp_form_confirm .wpcf7c-elm-step2.text-center {
  display: block !important;
}
.mw_wp_form_confirm .wpcf7c-elm-step2 dt .require {
  display: none;
}
.mw_wp_form_confirm.mw_wp_form .flowlist li > div.wpcf7c-elm-step1 {
  display: block !important;
}
.mw_wp_form_confirm.mw_wp_form .flowlist li > div.wpcf7c-elm-step2 {
  color: #fff !important;
  background-color: #000 !important;
  display: block !important;
}
.mw_wp_form_confirm #enterbtn {
  display: none;
}
.mw_wp_form_confirm .agree {
  display: none;
}
.mw_wp_form_confirm dt .require {
  display: none;
}

.wpcf7c-force-hide {
  display: inherit !important;
}

.mwform-checkbox-field-text {
  display: none;
}

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