@charset "UTF-8";
/****************************************

特設ページ（レスポンシブ）2019.4作成

****************************************/
/*リセット
----------------------------------------------------*/
div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  /*color: #fff;*/
}

/*マウスオーバー*/
a img, .mover {
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

a img:hover, .mover:hover {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 0.5;
  filter: alpha(opacity=50); /* ie lt 8 */
  -ms-filter: "alpha(opacity=50)"; /* ie 8 */
  -moz-opacity: 0.5; /* FF lt 1.5, Netscape */
  -khtml-opacity: 0.5; /* Safari 1.x */
}

body {
  width: 100%;
  min-width: initial;
  padding-top: 70px;
}

@media screen and (max-width: 768px) {
  body {
    padding-top: 50px;
  }
}
/*共通
----------------------------------------------------*/
.inner980 {
  width: 980px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  .inner980 {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  img {
    max-width: 100%;
    height: auto;
  }
}
/*ヘッダー
----------------------------------------------------*/
header {
  background: #000000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  height: 70px;
}

header h1 {
  position: absolute;
  left: 0;
  top: 15px;
}

/*ハンバーガーメニュー*/
#h-nav .sub-wrap {
  display: block;
}

.sub-menu {
  position: absolute;
  right: 0;
  top: 25px;
}

.sub-menu li {
  display: inline-block;
  margin-right: 30px;
}

.sub-menu li:last-child {
  margin-right: 0;
}

.sub-menu li a {
  color: #fff;
  padding: 0;
  text-decoration: none;
}

.sub-menu li a:hover {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 0.5;
  filter: alpha(opacity=50); /* ie lt 8 */
  -ms-filter: "alpha(opacity=50)"; /* ie 8 */
  -moz-opacity: 0.5; /* FF lt 1.5, Netscape */
  -khtml-opacity: 0.5; /* Safari 1.x */
}

.sub-menu li a span {
  padding: 0 25px 0 0;
  position: relative;
}

.sub-menu li:nth-child(2) a span {
  padding: 0 30px 0 0;
}

.sub-menu li a span:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.sub-menu li:nth-child(1) a span:before {
  width: 15px;
  height: 20px;
  background: url(../img/hd_icon01.png) no-repeat left top;
  background-size: contain;
  right: 0;
}

.sub-menu li:nth-child(2) a span:before {
  width: 20px;
  height: 17px;
  background: url(../img/hd_icon02.png) no-repeat left top;
  background-size: contain;
  right: 0;
}

.sub-menu li:nth-child(3) a span:before {
  width: 20px;
  height: 20px;
  background: url(../img/hd_icon03.png) no-repeat left top;
  background-size: contain;
  right: 0;
}

@media screen and (max-width: 768px) {
  header {
    height: 50px;
  }
  header h1 {
    left: 5px;
  }
  header h1 img {
    width: 70%;
  }
  /*	#h-nav　ハンバーガーメニュー*/
  #h-nav {
    position: fixed;
    top: 10px;
    right: 5px;
    z-index: 2;
  }
  #h-nav .sub-wrap {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
  }
  #h-nav ul.sub-menu {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
  }
  #h-nav ul.sub-menu li {
    display: block;
  }
  #h-nav ul.sub-menu li a {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    color: #fff;
    text-decoration: none;
    text-align: left;
    padding: 0 10px;
    box-sizing: border-box;
  }
  #h-nav ul.sub-menu li:hover {
    background-color: rgba(255, 255, 255, 0.3);
  }
  .menu-trigger,
  .menu-trigger span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
    z-index: 3;
  }
  .menu-trigger {
    position: relative;
    width: 40px;
    height: 24px;
    cursor: pointer;
  }
  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 4px;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 10px;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(11px) rotate(-45deg);
    transform: translateY(11px) rotate(-45deg);
  }
  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-11px) rotate(45deg);
    transform: translateY(-11px) rotate(45deg);
  }
}
/*パンくずエリア
----------------------------------------------------*/
#topicpath {
  min-width: 1023px;
  background: #fff;
  border-bottom: 1px solid #cbc9c8;
}

/*snsボタン付けた場合用*/
.fb_iframe_widget > span {
  vertical-align: baseline !important;
}

.fb_edge_widget_with_comment span.fb_edge_comment_widget {
  display: none !important;
}

#topicpath ul {
  /*width:400px;*/
  margin: 0;
}

#topicpath .snslink {
  position: absolute;
  top: 7px;
  right: 0;
  text-align: right;
}

#topicpath .snslink .snsb {
  float: left;
  margin-right: 5px;
}

@media screen and (max-width: 768px) {
  #topicpath {
    height: initial;
    height: auto;
    padding: 10px 5px;
    box-sizing: border-box;
  }
  #topicpath ul {
    /*padding-right: 170px;*/
    padding-top: 0;
    width: initial;
    width: auto;
  }
  #topicpath ul li {
    font-size: 71%;
    letter-spacing: -0.05em;
  }
  #topicpath ul li:nth-of-type(2+n) {
    display: none;
  }
  #topicpath .snslink {
    top: 4px;
  }
}
@media screen and (max-width: 767px) {
  #topicpath {
    min-width: auto;
  }
}
@media screen and (max-width: 374px) {
  #topicpath ul li {
    font-size: 2.2vw;
  }
}
/* ページトップ
----------------------------------------------------*/
.l-pagetop {
  width: 80px;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 11;
  opacity: 0.8;
}

.l-pagetop img {
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .l-pagetop {
    width: 50px;
    bottom: 10px;
    right: 10px;
  }
}
/*レイアウト
----------------------------------------------------*/
#container {
  width: 100%;
}

#container #contents {
  float: none;
  width: 980px;
  padding: 50px 0 80px;
  margin: auto;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  #container #contents {
    width: 100%;
  }
}
/*汎用
----------------------------------------------------*/
.btn {
  margin: 20px auto;
  text-align: center;
}

.btn a {
  display: block;
  width: 100%;
  height: 70px;
  line-height: 70px;
  background: #FF7400;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  text-decoration: none;
  border-radius: 8px;
}

.l-box {
  float: left;
}

.r-box {
  float: left;
}

.mg20 {
  margin: 20px;
}

.mgt20 {
  margin-top: 20px;
}

.mgb20 {
  margin-bottom: 20px;
}

.mgl20 {
  margin-left: 20px;
}

.mgr20 {
  margin-right: 20px;
}

.mg30 {
  margin: 30px;
}

.mgt30 {
  margin-top: 30px;
}

.mgb30 {
  margin-bottom: 30px;
}

.mgl30 {
  margin-left: 30px;
}

.mgr30 {
  margin-right: 30px;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
/*フッター
----------------------------------------------------*/
#footer {
  min-width: 1023px;
}

@media screen and (max-width: 768px) {
  #ft-inner {
    width: 100%;
    padding-bottom: 20px;
  }
  #footer #copy {
    text-align: center;
  }
  #footer .ft-nav img {
    width: auto;
    height: 17px;
  }
  #footer .ft-nav_02 section:nth-of-type(2) img {
    height: auto;
    width: 120px;
  }
  #footer .ft-nav_01 {
    width: 45%;
  }
  #footer .ft-nav_02 {
    width: 45%;
    margin-bottom: 25px;
  }
  #footer .ft-nav_03 {
    width: 45%;
    padding-left: 7px;
  }
  #footer .ft-nav_04 {
    width: 45%;
  }
  #footer .ft-nav_01, #footer .ft-nav_02, #footer .ft-nav_03 {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  #footer {
    min-width: auto;
  }
}
@media only screen and (max-width: 767px) {
  #topicpath ul li:nth-of-type(n+2) {
    display: none;
  }
}

#container {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  #container {
    min-width: 1000px;
  }
}
@media only screen and (max-width: 767px) {
  #container {
    overflow: hidden;
  }
}
#container * {
  word-break: break-all;
}
#container *:focus, #container *:active {
  outline: none;
}
#container *:hover {
  -webkit-tap-highlight-color: transparent;
}
#container table {
  border-collapse: collapse;
}
#container img,
#container svg {
  image-rendering: -webkit-optimize-contrast;
  vertical-align: top;
  max-width: 100%;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  #container img,
  #container svg {
    image-rendering: auto;
  }
}
_::-webkit-full-page-media,
_:future, :root #container img,
:root #container svg {
  image-rendering: auto;
}

@-moz-document url-prefix() {
  #container img,
  #container svg {
    image-rendering: auto;
  }
}
#container ul,
#container ol {
  list-style: none;
}
#container a,
#container button,
#container .btn {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all 300ms;
}
#container a:hover,
#container button:hover,
#container .btn:hover {
  text-decoration: underline;
}
#container button {
  background: transparent;
  appearance: none;
  border: none;
  vertical-align: top;
  padding: 0;
}
#container button:hover {
  text-decoration: none;
}
#container .btn {
  text-align: initial;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  #container .wrapper {
    background: url(../img/bg_01.jpg) no-repeat center 0/cover;
    min-width: 1000px;
  }
}
@media only screen and (max-width: 767px) {
  #container .wrapper {
    background: url(../img/bg_01_sp.jpg) no-repeat center 0/cover;
  }
}
@media only screen and (min-width: 768px) {
  #container .container {
    width: 77.5510204082%;
    margin: 0 auto;
  }
}
#container .sec {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
#container .column_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) {
  #container .sec--mv {
    padding-top: 3.2894736842%;
  }
}
@media only screen and (max-width: 767px) {
  #container .sec--mv {
    padding-top: 2.9333333333vw;
  }
}
#container .sec--mv .mv__title {
  position: relative;
}
#container .sec--mv .mv__title::before {
  content: "";
  display: block;
}
@media only screen and (min-width: 768px) {
  #container .sec--mv .mv__title::before {
    padding-top: 37.6315789474%;
  }
}
@media only screen and (max-width: 767px) {
  #container .sec--mv .mv__title::before {
    padding-top: 90.6768837803%;
  }
}
#container .sec--mv .mv__title .img {
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(50%);
}
@media only screen and (min-width: 768px) {
  #container .sec--mv .mv__title .img {
    width: 108.8157894737%;
  }
}
@media only screen and (max-width: 767px) {
  #container .sec--mv .mv__title .img {
    width: 104.4%;
  }
}
#container .sec--mv .mv__text {
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  #container .sec--mv .mv__text {
    width: 66.8421052632%;
    margin-top: 1.5789473684%;
  }
}
@media only screen and (max-width: 767px) {
  #container .sec--mv .mv__text {
    width: 81.3333333333%;
    margin-top: 2.9333333333vw;
  }
}
@media only screen and (min-width: 768px) {
  #container .sec--employee {
    padding-top: 5.9210526316%;
  }
}
@media only screen and (max-width: 767px) {
  #container .sec--employee {
    padding-top: 10vw;
  }
}
#container .sec--employee .employee-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  #container .sec--employee .employee-list {
    width: 94.7368421053%;
    margin-top: -3.9473684211%;
  }
}
@media only screen and (max-width: 767px) {
  #container .sec--employee .employee-list {
    margin-top: -8vw;
    padding: 0 4.6666666667vw;
  }
}
@media only screen and (min-width: 768px) {
  #container .sec--employee .employee-list__item {
    width: 20.8333333333%;
    margin-top: 4.1666666667%;
  }
}
@media only screen and (max-width: 767px) {
  #container .sec--employee .employee-list__item {
    width: 40vw;
    margin-top: 8vw;
  }
}
#container .sec--employee .employee-list__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 150/200;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  #container .sec--employee .employee-list__img {
    border-radius: 15px;
  }
}
@media only screen and (max-width: 767px) {
  #container .sec--employee .employee-list__img {
    border-radius: 4vw;
  }
}
#container .sec--employee .employee-list__img::before, #container .sec--employee .employee-list__img::after {
  content: "";
  box-sizing: border-box;
}
#container .sec--employee .employee-list__img::after {
  position: absolute;
  top: 0;
  left: 0;
  border: solid #fff;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 768px) {
  #container .sec--employee .employee-list__img::after {
    border-width: 4px;
    border-radius: 15px;
  }
}
@media only screen and (max-width: 767px) {
  #container .sec--employee .employee-list__img::after {
    border-width: 1.0666666667vw;
    border-radius: 4vw;
  }
}
@media only screen and (min-width: 768px) {
  #container .sec--employee .employee-list__btn {
    margin-top: 8px;
  }
}
@media only screen and (max-width: 767px) {
  #container .sec--employee .employee-list__btn {
    margin-top: 2.1333333333vw;
  }
}
#container .sec--employee .employee-list__btn:hover {
  opacity: 0.65;
}
@media only screen and (min-width: 768px) {
  #container .sec--equipment {
    padding-top: 12.1052631579%;
    padding-bottom: 1.3157894737%;
  }
}
@media only screen and (max-width: 767px) {
  #container .sec--equipment {
    padding-top: 22.9333333333vw;
    padding-bottom: 22.9333333333vw;
  }
}
#container .sec--equipment .equipment-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  #container .sec--equipment .equipment-list {
    margin-top: -3.9473684211%;
  }
}
@media only screen and (max-width: 767px) {
  #container .sec--equipment .equipment-list {
    margin-top: -6vw;
  }
}
#container .sec--equipment .equipment-list__item {
  position: relative;
}
@media only screen and (min-width: 768px) {
  #container .sec--equipment .equipment-list__item {
    width: 47.8947368421%;
    margin-top: 3.9473684211%;
  }
}
@media only screen and (max-width: 767px) {
  #container .sec--equipment .equipment-list__item {
    width: 66vw;
    margin-top: 6vw;
  }
}
#container .sec--equipment .equipment-list__orn {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
#container .sec--equipment .equipment-list__orn--01 {
  top: -10.6463878327%;
  left: -21.978021978%;
  width: 140.9340659341%;
}
#container .sec--equipment .equipment-list__orn--02 {
  top: -21.2927756654%;
  left: -23.3516483516%;
  width: 149.4505494505%;
}
#container .sec--equipment .equipment-list__orn--03 {
  top: -34.2205323194%;
  left: -21.978021978%;
  width: 143.1318681319%;
}
#container .sec--equipment .equipment-list__img {
  position: relative;
}
#container .sec--equipment .equipment-list__img--01 {
  aspect-ratio: 499/384;
}
#container .sec--equipment .equipment-list__img--02 {
  aspect-ratio: 499/375;
}
#container .sec--equipment .equipment-list__img--03 {
  aspect-ratio: 729/549;
}
#container .sec--equipment .equipment-list__img img {
  width: 100%;
  height: auto;
}
#container .sec--equipment .equipment-list__video {
  aspect-ratio: 16/9;
}
#container .sec--equipment .equipment-list__video video {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 768px) {
  #container .sec--cp {
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #container .sec--cp {
    padding-bottom: 6.6666666667vw;
  }
}
@media only screen and (max-width: 767px) {
  #container .sec--cp::before {
    content: "";
    display: block;
    padding-top: 74.5333333333%;
  }
}
@media only screen and (min-width: 768px) {
  #container .sec--cp .cp__img {
    width: 97.6315789474%;
    margin-left: -3.2894736842%;
  }
}
@media only screen and (max-width: 767px) {
  #container .sec--cp .cp__img {
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    width: 110.1333333333%;
  }
}/*# sourceMappingURL=design.css.map */