@charset "UTF-8";
/*************************************
MIXINS
*************************************/
/*
//------------------------------------------------
//	Color Setting
//------------------------------------------------
*/
/*-----------------------------------------------------------------
 Loading
----------------------------------------------------------------- */
body .l-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9000;
}
body .l-transition::after {
  content: "";
  display: block;
  height: 200vh;
  width: 200vw;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #666;
  transform: translate(0, 0);
}
body.is-loading .l-transition::after {
  transform: translate(0, 0);
}
body.is-loaded .l-transition::after {
  animation: transition-fadein 0.8s linear 0s 1 both;
}
body.is-leave .l-transition::after {
  animation: transition-fadeout 0.8s linear 0.5s 1 both;
}
body .l-transition .transition-wrap {
  position: relative;
  z-index: 9999;
  height: 100%;
  width: 100%;
}
body .l-transition .transition-logo {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 40%;
  min-width: 500px;
  font-size: 10rem;
  color: #fff;
}
body .l-transition .transition-logo img {
  width: 100%;
}
body.is-loaded .l-transition .transition-logo {
  animation: logo-fadein 1s linear 0s 1 both;
}
body.is-leave .l-transition .transition-logo {
  animation: logo-fadeout 1s linear 0.5s 1 both;
}
body .l-transition .transition-anime {
  position: relative;
  margin: 8rem auto 0 auto;
  width: 6.7rem;
  height: 6.7rem;
}
body.is-loading .l-transition .transition-anime, body.is-leave .l-transition .transition-anime {
  opacity: 1;
  transition: opacity 0.5s linear;
}
body.is-loaded .l-transition .transition-anime {
  opacity: 0;
}
body .l-transition .transition-anime-logo {
  width: 4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body .l-transition .transition-anime-img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body.is-loading .l-transition .transition-anime-img img {
  animation: loadingimg 0.5s linear infinite;
}

@keyframes transition-fadein {
  0% {
    transform: skewX(0) translate(0, 0);
  }
  10% {
    transform: skewX(-10deg) translate(10%, 0);
  }
  80% {
    transform: skewX(-5deg) translate(80%, 0);
  }
  100% {
    transform: skewX(0) translate(100%, 0);
  }
}
@keyframes transition-fadeout {
  0% {
    transform: skewX(0) translate(-100%, 0);
  }
  10% {
    transform: skewX(-10deg) translate(-90%, 0);
  }
  80% {
    transform: skewX(-5deg) translate(-20%, 0);
  }
  100% {
    transform: skewX(0) translate(0, 0);
  }
}
@keyframes logo-fadein {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes logo-fadeout {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes loadingimg {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 896px) {
  body .l-transition .transition-logo {
    width: 90%;
    min-width: inherit;
  }
}
@media screen and (max-width: 480px) {
  body .l-transition .transition-anime {
    width: 10rem;
    height: 10rem;
    margin-top: 3.8rem;
  }
  body .l-transition .transition-anime-logo {
    width: 5rem;
  }
}
#modal {
  -ms-overflow-style: none;
  -webkit-transform: translateZ(0);
  -webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  position: fixed;
  right: 0;
  top: 0;
  display: none;
  z-index: -10;
  width: 100%;
  height: 100%;
  padding: 120px 40px 60px 40px;
  opacity: 0;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  background: rgba(39, 39, 39, 0.85);
  box-sizing: border-box;
}
#modal .modal-inner {
  height: 70vh;
  overflow: auto;
}
#modal a {
  color: #fff;
}
#modal .modal-box {
  height: 100%;
  overflow: auto;
}
#modal .modal-box .modal-nav {
  list-style: none;
  margin-bottom: 2em;
  padding-bottom: 2em;
  border-bottom: #fff 1px solid;
}
#modal .modal-box .modal-nav li {
  font-size: 1.8rem;
  margin-bottom: 1em;
  font-weight: 700;
}
#modal .modal-box .modal-nav li:last-child {
  margin-bottom: 0;
}
#modal .modal-box .sns-nav {
  list-style: none;
  display: flex;
}
#modal .modal-box .sns-nav li {
  width: 34px;
  margin-right: 1.5em;
}
#modal .modal-box .sns-nav li a {
  display: block;
}
#modal .modal-nav-list {
  list-style: none;
  margin-bottom: 3em;
}
#modal .modal-nav-list li {
  margin-bottom: 1em;
  text-align: center;
}
#modal .modal-nav-list li a {
  display: block;
  font-size: 2.4rem;
  line-height: 1.4;
}
#modal .modal-nav-list li a span {
  display: block;
  font-size: 1.6rem;
}
#modal .menu-links {
  text-align: center;
}
#modal .menu-links a {
  display: block;
}
#modal .menu-links a.num {
  font-size: 2.4rem;
}
#modal .btns {
  margin-bottom: 2.5em;
}
#modal .btns .btn {
  border: #fff 1px solid;
}
#modal .addr,
#modal .tel {
  font-size: 1.4rem;
  color: #fff;
}
#modal .addr a,
#modal .tel a {
  color: #fff;
}
#modal .tel {
  font-size: 2rem;
  font-weight: 700;
}
#modal .menu-button {
  position: absolute;
  top: 2.5%;
  right: 2.5%;
}

body.show #modal {
  z-index: 55;
  display: block;
}

body.show #modal {
  -webkit-animation: modal-open 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  animation: modal-open 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

body.closed #modal {
  -webkit-animation: modal-closed 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  animation: modal-closed 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes modal-open {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes modal-closed {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}
.menu-button {
  pointer-events: auto;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.1em;
  font-size: 1rem;
  color: #333333;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-radius: 0;
  transition: 0.2s ease-in;
  transition-property: padding;
  height: 52px;
}
.menu-button a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 40px;
  min-height: 40px;
  cursor: pointer;
  box-sizing: content-box;
  padding: 7px 5px 5px;
  transition: 0.2s ease-in;
  transition-property: color, background, padding;
}
.menu-button a .menu-button__icon-wrap {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
}
.menu-button a .menu-button__icon-wrap .menu-button__icon {
  position: relative;
  display: block;
  height: 1px;
  width: 40px;
  padding: 0;
  background: #333333;
  text-indent: -200px;
  top: calc(50% - 1px);
  left: 0;
  right: 0;
  margin: 0 auto;
  transform-origin: center 15px;
}
.menu-button a .menu-button__icon-wrap .menu-button__icon::before, .menu-button a .menu-button__icon-wrap .menu-button__icon::after {
  transition: 0.25s ease;
  transition-property: background, top, left, width, transform;
  box-sizing: border-box;
  position: absolute;
  display: block;
  height: 1px;
  width: 30px;
  padding: 0;
  background: #333333;
  text-indent: -200px;
}
.menu-button a .menu-button__icon-wrap .menu-button__icon::before {
  content: "";
  transform-origin: center center;
  top: 10px;
  width: 25px;
}
.menu-button a .menu-button__icon-wrap .menu-button__icon::after {
  content: "";
  transform-origin: center center;
  top: -10px;
  width: 40px;
}
.menu-button a .menu-button__txt-wrap {
  position: absolute;
  display: flex;
  right: 100%;
  height: 40px;
  align-items: center;
  text-align: right;
  transition: opacity 0.2s ease-in;
  padding-right: 5px;
  font-size: 1.1rem;
  line-height: 1;
  color: #333333;
}

.show .menu-button a .menu-button__icon-wrap .menu-button__icon {
  left: -10px;
  transform: translateX(10px);
  background-color: rgba(255, 255, 255, 0);
}
.show .menu-button a .menu-button__icon-wrap .menu-button__icon::before {
  transform: rotate(45deg) translate(-6px, -6px);
  width: 40px;
  background-color: #fff;
}
.show .menu-button a .menu-button__icon-wrap .menu-button__icon::after {
  transform: rotate(-45deg) translate(-8px, 8px);
  width: 40px;
  background-color: #fff;
}
.show .menu-button a .menu-button__txt-wrap {
  opacity: 0;
}
.show .gh {
  z-index: 600;
}
.show .gh .gh--inner {
  transform: translateX(0);
  opacity: 1;
  background: #5eb74f;
}
.show .gh .gh--inner .close {
  display: block;
}

#top .top-inner {
  padding: 23px 40px;
}
#top .top-inner .flex {
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
#top .top-inner .flex .logo {
  font-size: 3rem;
  font-weight: 700;
}

.menu-fixed #top {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 5;
}
.menu-fixed #top .top-inner .flex .logo a {
  color: #fff;
}
.menu-fixed .menu-button {
  color: #fff;
}
.menu-fixed .menu-button a {
  color: #fff;
}
.menu-fixed .menu-button a .menu-button__icon-wrap .menu-button__icon {
  background: #fff;
}
.menu-fixed .menu-button a .menu-button__icon-wrap .menu-button__icon::before, .menu-fixed .menu-button a .menu-button__icon-wrap .menu-button__icon::after {
  background: #fff;
}
.menu-fixed .menu-button a .menu-button__txt-wrap {
  color: #fff;
}

#top2 {
  height: 117px;
  line-height: 117px;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 5;
}
#top2 .inner {
  box-sizing: border-box;
  padding: 0 2.5em;
  background: #fff;
}
#top2 .flex-wrap {
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
#top2 .flex-wrap .logo .site-ttl {
  font-size: 2.4rem;
}
#top2 .flex-wrap .navi .flex-inner {
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
}
#top2 .flex-wrap .navi #pc-nav ul {
  list-style: none;
  display: flex;
}
#top2 .flex-wrap .navi #pc-nav ul li {
  margin-right: 2em;
}
#top2 .flex-wrap .navi #pc-nav ul li a:hover {
  text-decoration: underline;
}
#top2 .flex-wrap .navi #pc-nav ul li.current_page_item a {
  text-decoration: underline;
  font-weight: 700;
}
#top2 .flex-wrap .navi .contact {
  display: inline-block;
  width: 175px;
  height: 40px;
  line-height: 40px;
  background: #333333;
  color: #fff;
  text-align: center;
}
#top2 .flex-wrap .menu-button {
  display: none;
}

#hero {
  width: 100%;
  max-width: calc(100% - 80px);
  height: calc(100vh - 140px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  max-height: 1080px;
}
#hero::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  content: "";
  z-index: 1;
}
#hero .inner {
  height: calc(100vh - 140px);
  position: relative;
  max-height: 1080px;
  z-index: 2;
}
#hero .inner .box {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
}
#hero .inner .box .ttl-wrap {
  opacity: 0;
  transition: all 1.5s;
  text-align: center;
  color: #fff;
  display: inline-block;
  -webkit-transform: translateY(25px);
  transform: translateY(25px);
}
#hero .inner .box .ttl-wrap .ttl {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}
#hero .inner .box .ttl-wrap .excerpt {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
#hero .inner .box .ttl-wrap.visible {
  opacity: 1;
  -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
  transform: matrix(1, 0, 0, 1, 0, 0);
}

#hero2,
#hero3 {
  width: 100%;
  height: 100vh;
  position: relative;
  max-height: 1080px;
}
#hero2::before,
#hero3::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  content: "";
  z-index: 1;
}
#hero2 .inner,
#hero3 .inner {
  height: 100vh;
  max-height: 1080px;
  position: relative;
  position: relative;
  z-index: 2;
}
#hero2 .inner .box,
#hero3 .inner .box {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
  z-index: 3;
}
#hero2 .inner .box .ttl-wrap,
#hero3 .inner .box .ttl-wrap {
  opacity: 0;
  transition: all 1.5s;
  text-align: center;
  color: #fff;
  display: inline-block;
  -webkit-transform: translateY(25px);
  transform: translateY(25px);
}
#hero2 .inner .box .ttl-wrap .ttl,
#hero3 .inner .box .ttl-wrap .ttl {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}
#hero2 .inner .box .ttl-wrap .excerpt,
#hero3 .inner .box .ttl-wrap .excerpt {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
#hero2 .inner .box .ttl-wrap.visible,
#hero3 .inner .box .ttl-wrap.visible {
  opacity: 1;
  -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
  transform: matrix(1, 0, 0, 1, 0, 0);
}

#hero4 {
  width: 100%;
  height: calc(100vh - 100px);
  position: relative;
  max-height: 1080px;
}
#hero4::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  content: "";
  z-index: 1;
}
#hero4::after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/white_bottom_wave_01.png) no-repeat right bottom;
  background-size: contain;
  content: "";
  z-index: 1;
}
#hero4 .inner {
  height: calc(100vh - 100px);
  max-height: 1080px;
  position: relative;
  position: relative;
  z-index: 2;
}
#hero4 .inner .box {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
  z-index: 3;
}
#hero4 .inner .box .ttl-wrap {
  opacity: 0;
  transition: all 1.5s;
  text-align: center;
  color: #fff;
  display: inline-block;
  -webkit-transform: translateY(25px);
  transform: translateY(25px);
}
#hero4 .inner .box .ttl-wrap .ttl {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}
#hero4 .inner .box .ttl-wrap .excerpt {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
#hero4 .inner .box .ttl-wrap.visible {
  opacity: 1;
  -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
  transform: matrix(1, 0, 0, 1, 0, 0);
}

#site-footer .footer-links {
  width: 100%;
  max-width: calc(100% - 80px);
  margin-left: auto;
  margin-right: auto;
}
#site-footer .footer-links .address {
  text-align: right;
}
#site-footer .footer-links .address address {
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 10px;
}

.md-info-slider .inner {
  overflow: hidden;
}
.md-info-slider .index-more {
  text-align: center;
  margin-top: 3.5em;
}
.md-info-slider .md-info-sliders {
  width: 100%;
  max-width: calc(642px + 1em);
  margin-left: auto;
  margin-right: auto;
}
.md-info-slider .md-info-sliders .slick-list {
  overflow: visible;
}
.md-info-slider .md-info-sliders .md-info-slider-slide {
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.md-info-slider .md-info-sliders .md-info-slider-slide .thumb {
  margin-bottom: 2em;
}
.md-info-slider .md-info-sliders .md-info-slider-slide .txt {
  display: none;
}
.md-info-slider .md-info-sliders .md-info-slider-slide .txt .ttl {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
}
.md-info-slider .md-info-sliders .md-info-slider-slide .txt .date {
  text-align: center;
  color: #999999;
  font-size: 1.2rem;
  margin-bottom: 2em;
  letter-spacing: 0.07em;
}
.md-info-slider .md-info-sliders .md-info-slider-slide .txt .more {
  text-align: center;
  color: #666666;
  font-size: 1.4rem;
  letter-spacing: 0.07em;
}
.md-info-slider .md-info-sliders .md-info-slider-slide .txt .more a {
  display: inline-block;
  padding: 0.5em 1.5em;
  background: #666;
  color: #fff;
}
.md-info-slider .md-info-sliders .md-info-slider-slide .txt .more a:hover {
  opacity: 0.7;
}
.md-info-slider .md-info-sliders .md-info-slider-slide.slick-current .txt, .md-info-slider .md-info-sliders .md-info-slider-slide.slick-active .txt {
  display: block;
}
.md-info-slider .slick-prev, .md-info-slider .slick-next {
  width: 41px;
  height: 15px;
  top: inherit;
  transform: none;
  bottom: 50px;
  z-index: 5;
}
.md-info-slider .slick-prev::before, .md-info-slider .slick-prev::after, .md-info-slider .slick-next::before, .md-info-slider .slick-next::after {
  content: "";
  width: 41px;
  height: 15px;
  background-size: cover;
  display: block;
}
.md-info-slider .slick-prev {
  left: 0;
}
.md-info-slider .slick-prev::before {
  background: url(../images/arrow_prev.png) no-repeat 0 0;
}
.md-info-slider .slick-next {
  right: 0;
}
.md-info-slider .slick-next::before {
  background: url(../images/arrow_next.png) no-repeat 0 0;
}

.md-service .flex {
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -o-flex-flow: row wrap;
  flex-flow: row wrap;
}
.md-service .flex .item {
  width: 31.623931%;
  margin-bottom: 2em;
  position: relative;
}
.md-service .flex .item:not(:nth-child(3n)) {
  margin-right: 2.564102%;
}
.md-service .flex .item a {
  display: block;
  position: relative;
}
.md-service .flex .item a::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  content: "";
}
.md-service .flex .item span {
  display: inline-block;
  position: absolute;
  right: 1.5em;
  bottom: 1em;
  font-size: 2.5rem;
  color: #fff;
}
.md-service .flex.cnt-4 {
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
.md-service .flex.cnt-4 .item {
  width: 24%;
  margin-right: 0 !important;
}
.md-service .flex.cnt-4 .item span {
  font-size: 2rem;
}

#index-service {
  margin-bottom: 6em;
}

.sec-header {
  margin-bottom: 3.5em;
}
.sec-header .sec-ttl {
  text-align: center;
  font-size: 3.6rem;
}

#site-footer2 {
  background: #ebebeb;
}
#site-footer2 .min {
  padding: 6em 0 2.5em 0;
  border-top: #d0d0d0 1px solid;
}
#site-footer2 .flex {
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 2.5em;
}
#site-footer2 .flex .info {
  width: 30%;
}
#site-footer2 .flex .info .logo {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1em;
}
#site-footer2 .flex .info .excerpt {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 1.5em;
}
#site-footer2 .flex .info ul {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}
#site-footer2 .flex .info ul li {
  width: 34px;
  margin: 0 0.5em;
}
#site-footer2 .flex .fnav {
  width: 15%;
}
#site-footer2 .flex .fnav .ttl {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}
#site-footer2 .flex .fnav ul {
  list-style: none;
}
#site-footer2 .flex .fnav ul li {
  padding-left: 1em;
  position: relative;
}
#site-footer2 .flex .fnav ul li::before {
  position: absolute;
  left: 0;
  top: 12px;
  content: "";
  background: url(../images/chevron-right-solid.png) no-repeat 0 0;
  background-size: cover;
  width: 4px;
  height: 6px;
}
#site-footer2 .flex .fnav ul li a {
  font-size: 1.4rem;
}
#site-footer2 .flex .pin {
  width: 35%;
}
#site-footer2 .flex .pin .ttl {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1em;
}
#site-footer2 .flex .pin span {
  border-radius: 0 !important;
  background-color: #EBEBEB !important;
  border: none !important;
}
#site-footer2 .flex .pin span[data-pin-log=embed_user_ft], #site-footer2 .flex .pin span[class$=_hd] {
  display: none !important;
}
#site-footer2 .address {
  text-align: center;
}
#site-footer2 .address address {
  font-style: normal;
  font-size: 1rem;
  color: #666666;
}

.md-features {
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center center;
}
.md-features .flex {
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -o-flex-flow: row wrap;
  flex-flow: row wrap;
}
.md-features .flex .item {
  width: 50%;
  margin-bottom: 2em;
}
.md-features .flex .item:nth-child(2n) {
  text-align: right;
}
.md-features .flex .item:nth-child(1), .md-features .flex .item:nth-child(5) {
  padding-left: 3em;
}
.md-features .flex .item:nth-child(2), .md-features .flex .item:nth-child(6) {
  padding-right: 3em;
}
.md-features .flex .item .item-inner {
  width: 100%;
  max-width: 287px;
  display: inline-block;
}
.md-features .flex .item .item-inner .icon {
  width: 58px;
  text-align: center;
  margin: 0 auto 1em auto;
}
.md-features .flex .item .item-inner .ttl {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5em;
}
.md-features .flex .item .item-inner .excerpt {
  font-size: 1.2rem;
}

.md-news-list .row:not(:last-child) {
  margin-bottom: 1.5em;
}
.md-news-list .row .flex {
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
.md-news-list .row .flex .thumb {
  width: 150px;
  height: 150px;
  overflow: hidden;
}
.md-news-list .row .flex .thumb a:hover img {
  transform: scale(1.1);
  opacity: 1;
}
.md-news-list .row .flex .txt {
  width: calc(100% - 180px);
}
.md-news-list .row .flex .txt .ttl {
  font-size: 1.8rem;
  margin-bottom: 0.75em;
}
.md-news-list .row .flex .txt .ttl a:hover {
  text-decoration: underline;
}
.md-news-list .row .flex .txt .excerpt {
  font-size: 1.4rem;
  color: #999;
  margin-bottom: 1em;
}
.md-news-list .row .flex .txt .meta {
  font-size: 1.4rem;
  color: #999;
}
.md-news-list .row .flex .txt .meta time,
.md-news-list .row .flex .txt .meta a {
  display: inline-block;
  color: #999;
}
.md-news-list .row .flex .txt .meta time {
  margin-right: 2em;
}
.md-news-list .row .flex .txt .meta a:not(:last-child) {
  margin-right: 1em;
}
.md-news-list .row .flex .txt .meta a:hover {
  text-decoration: underline;
}

/*
//------------------------------------------------
//	Flexible Layout Setting
//------------------------------------------------
*/
#flexible {
  padding: 5em 0;
}
#flexible .flex-img-txt .flex {
  margin-bottom: 3em;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
#flexible .flex-img-txt .flex .thumb {
  width: 35%;
}
#flexible .flex-img-txt .flex .txt {
  width: 60%;
}
#flexible .flex-img-txt .flex .txt.sentry h2, #flexible .flex-img-txt .flex .txt.sentry h3, #flexible .flex-img-txt .flex .txt.sentry h4, #flexible .flex-img-txt .flex .txt.sentry h5, #flexible .flex-img-txt .flex .txt.sentry h6 {
  margin-top: 0;
}
#flexible .flex-img-txt .fullwidth {
  margin-bottom: 3em;
}
#flexible .flex-img-txt .fullwidth .top {
  margin-bottom: 1.5em;
}
#flexible .flex-cols .flex {
  flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
#flexible .flex-cols .flex .item {
  width: 31.5%;
  margin-bottom: 1.5em;
}
#flexible .flex-cols .flex .item .txtbody {
  padding: 0.5em;
  background: #f0f0f0;
}
#flexible .flex-cols .flex.cols-1 .item {
  width: 100%;
}
#flexible .flex-cols .flex.cols-2 .item {
  width: 48%;
}
#flexible .flex-cols .flex.cols-3 .item {
  width: 31.5%;
}
#flexible .flex-cols .flex.cols-4 .item {
  width: 23%;
}
#flexible .flex-cols .flex.cols-5 .item {
  width: 18%;
}
#flexible .flex-cols .flex.cols-6 .item {
  width: 14%;
}

#home #flexible {
  padding-top: 0;
}

.movie-wrap {
  position: relative;
  padding-bottom: 56.25%;
  /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
}
.movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.acf-map {
  width: 100%;
  height: 400px;
  border: #ccc solid 1px;
  margin: 20px 0;
}

.acf-map img {
  max-width: inherit !important;
}

.layout-sp-1 .flex .thumb1,
.layout-sp-1 .flex .thumb2 {
  width: 23.760683%;
}
.layout-sp-1 .flex .thumb1 {
  margin-right: 1.5em;
}
.layout-sp-1 .flex .thumb2 {
  margin-right: 2.5em;
  padding-top: 3em;
}
.layout-sp-1 .flex .txt {
  width: 47.264957%;
  padding-top: 5em;
}
.layout-sp-1 .flex .txt h2 {
  font-size: 3rem;
  padding-bottom: 1em;
  margin-bottom: 1em;
  position: relative;
}
.layout-sp-1 .flex .txt h2::before {
  position: absolute;
  width: 50px;
  height: 2px;
  background: #666;
  left: 0;
  bottom: 0;
  content: "";
}
.layout-sp-1 .flex .txt h2::after {
  position: absolute;
  width: 10px;
  height: 2px;
  background: #666;
  left: 60px;
  bottom: 0;
  content: "";
}
.layout-sp-1 .flex .txt p {
  margin-bottom: 2em;
}
.layout-sp-1 .flex .txt ul {
  list-style: none;
}
.layout-sp-1 .flex .txt ul li {
  padding-left: 1.5em;
  position: relative;
  margin-bottom: 0.5em;
}
.layout-sp-1 .flex .txt ul li::before {
  position: absolute;
  left: 0;
  top: 0px;
  font-family: "Font Awesome 5 Free", fontawesome;
  content: "\f061";
  color: #666;
}

.layout-sp-2 .table {
  width: 100%;
}
.layout-sp-2 .table .th {
  vertical-align: top;
}
.layout-sp-2 .table .th h2 {
  font-size: 2.4rem;
  padding-bottom: 1em;
  margin-bottom: 1em;
  position: relative;
}
.layout-sp-2 .table .th h2::before {
  position: absolute;
  width: 50px;
  height: 2px;
  background: #666;
  left: 0;
  bottom: 0;
  content: "";
}
.layout-sp-2 .table .th h2::after {
  position: absolute;
  width: 10px;
  height: 2px;
  background: #666;
  left: 60px;
  bottom: 0;
  content: "";
}
.layout-sp-2 .table .th p {
  margin-bottom: 2em;
}
.layout-sp-2 .table .td {
  vertical-align: top;
  padding-left: 5em;
}
.layout-sp-2 .table .td .flex {
  list-style: none;
  flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
}
.layout-sp-2 .table .td .flex li {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 4em;
}
.layout-sp-2 .table .td .flex li:nth-child(2n) {
  margin-right: 0;
}
.layout-sp-2 .table .td .flex li .thumb {
  width: 80px;
  padding-right: 1em;
  vertical-align: top;
}
.layout-sp-2 .table .td .flex li .txtbody {
  vertical-align: top;
}
.layout-sp-2 .table .td .flex li .txtbody h3 {
  margin-bottom: 0.5em;
  margin-top: -0.33em;
}
.layout-sp-2 .table .td .flex li .txtbody p {
  font-size: 1.4rem;
}

.layout-linklist .flex {
  flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.layout-linklist .flex .item {
  width: 49%;
  box-sizing: border-box;
  border: #d0d0d0 1px solid;
  margin-bottom: 1.5em;
}
.layout-linklist .flex .item .table .th {
  width: 41.666667%;
  vertical-align: top;
}
.layout-linklist .flex .item .table .td {
  box-sizing: border-box;
  padding: 1em;
  vertical-align: top;
}
.layout-linklist .flex .item .table .td p {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1em;
}

.layout-flow .flowitem:not(:last-of-type)::after {
  content: "";
  background: url(../images/arrow_bottom.svg) center 50% no-repeat;
  background-size: 50px 50px;
  display: block;
  overflow: hidden;
  height: 50px;
  width: 50px;
  margin: 0 auto;
}
.layout-flow .flowitem .flowitem-inner {
  border: #d0d0d0 3px solid;
  padding: 1.5em;
}
.layout-flow .flowitem .flowitem-inner .flow-ttl {
  font-size: 1.8rem;
  border-bottom: #d0d0d0 1px dashed;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
}

.ggmap {
  position: relative;
  height: 0;
  padding-top: 56.25%;
  overflow: hidden;
}
.ggmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.layout-cta .cta-ttl {
  font-size: 1.8rem;
  padding: 0.5em 1em;
  background: #fff;
  color: #fff;
}
.layout-cta .cta-body {
  padding: 1em;
  background: #f0f0f0;
}
.layout-cta .cta-body .table {
  margin-bottom: 1.5em;
}
.layout-cta .cta-body .table .th,
.layout-cta .cta-body .table .td {
  vertical-align: top;
}
.layout-cta .cta-body .table .th {
  width: 60%;
  box-sizing: border-box;
  padding-right: 1.5em;
}
.layout-cta .cta-body .btn {
  box-sizing: border-box;
  width: 100%;
}

/*
//------------------------------------------------
//	SEntry Setting
//------------------------------------------------
*/
.sentry h1, .sentry h2, .sentry h3, .sentry h4, .sentry h5, .sentry h6 {
  margin: 1.5em 0;
}
.sentry p, .sentry ul, .sentry ol, .sentry table, .sentry dl, .sentry blockquote {
  margin-bottom: 1.5em;
}
.sentry p, .sentry ul, .sentry ol {
  text-align: justify;
  text-justify: distribute;
}
.sentry blockquote p {
  text-align: left;
  text-justify: inherit;
  word-wrap: break-word;
}
.sentry h2 {
  font-size: 2.2rem;
  padding: 0.5em 0;
  border-top: #333333 2px solid;
  border-bottom: #333333 1px solid;
}
.sentry h3 {
  padding: 0.5em;
  background: #666;
  font-size: 2.1rem;
  color: #fff;
}
.sentry h4 {
  font-size: 1.8rem;
}
.sentry blockquote {
  padding: 3em 1em 1em 1em;
  background: #f2f2f2;
  position: relative;
  border: #ddd 1px solid;
}
.sentry blockquote::before {
  position: absolute;
  left: 15px;
  top: 10px;
  content: "“";
  line-height: 1;
  color: #666;
  font-size: 6rem;
  font-weight: bold;
}
.sentry blockquote p:last-child {
  margin-bottom: 0;
}
.sentry blockquote span {
  color: #989898;
}
.sentry blockquote span a {
  color: #989898;
  text-decoration: underline;
}
.sentry a {
  text-decoration: underline;
  word-break: break-all;
}
.sentry a.chr {
  position: relative;
}
.sentry a.chr::after {
  font-family: fontawesome;
  content: "\f105";
  text-decoration: none;
}
.sentry ul {
  list-style: disc;
  padding-left: 1.2em;
}
.sentry ol {
  padding-left: 1.2em;
}
.sentry ul li, .sentry ol li {
  margin-bottom: 0.5em;
}
.sentry table {
  width: 100%;
  border-collapse: collapse;
}
.sentry table th, .sentry table td {
  padding: 0.5em 1em;
  border: #DDDDDD 1px solid;
  text-align: left;
}
.sentry table th {
  background: #f2f2f2;
}
.sentry img {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  max-width: 100%;
  height: auto;
}
.sentry a:hover img {
  opacity: 0.7;
}
.sentry dl dt {
  font-weight: bold;
  margin-bottom: 0.5em;
}
.sentry dl dd {
  padding-left: 1.5em;
}
.sentry .alignleft {
  float: left;
  clear: left;
  margin: 0 1em 1.5em 0px;
}
.sentry img.aligncenter, .sentry img.centered, .sentry img.center {
  display: block;
  margin: 0 auto 1.5em;
  float: none;
  clear: both;
}
.sentry img.alignright {
  float: right;
  clear: right;
  margin: 0 0 1.5em 1em;
}

.md-news .tabs {
  list-style: none;
  /*justify-content: center;
  -webkit-justify-content: center;*/
  border-top: #e6e6d2 1px solid;
  border-bottom: #e6e6d2 1px solid;
  flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
}
.md-news .tabs li {
  width: 25%;
  text-align: center;
  box-sizing: border-box;
}
.md-news .tabs li:not(:last-child) {
  border-right: #000 2px solid;
}
.md-news .tabs li a {
  display: block;
  font-size: 1.3rem;
  padding: 1em 2em;
  border-bottom: #333333 2px solid;
  letter-spacing: 0.3em;
  font-weight: 700;
}
.md-news .tabs li a.current-tab, .md-news .tabs li a:hover {
  color: #666;
  border-color: #666;
}
.md-news .panels .panel:not(:first-of-type) {
  display: none;
}
.md-news .panels .panel .flex {
  padding: 1em 0;
  letter-spacing: 0.08em;
  border-bottom: #e6e6d2 1px solid;
}
.md-news .panels .panel .flex .date {
  width: 12em;
  color: #666;
  font-size: 1.4rem;
  letter-spacing: 0.3em;
}
.md-news .panels .panel .flex .txt {
  font-size: 1.4rem;
}
.md-news .panels .panel .flex .txt a:hover {
  text-decoration: underline;
}

.md-news-2 {
  border-top: #e6e6d2 1px solid;
}
.md-news-2 .flex {
  padding: 1em 0;
  letter-spacing: 0.08em;
  border-bottom: #e6e6d2 1px solid;
}
.md-news-2 .flex .date {
  width: 12em;
  color: #666;
  font-size: 1.4rem;
  letter-spacing: 0.3em;
}
.md-news-2 .flex .txt {
  font-size: 1.4rem;
}
.md-news-2 .flex .txt a:hover {
  text-decoration: underline;
}

.md-news-3 .item.table {
  margin-bottom: 1.5em;
}
.md-news-3 .item.table .th,
.md-news-3 .item.table .td {
  box-sizing: border-box;
  vertical-align: top;
}
.md-news-3 .item.table .th {
  width: 140px;
}
.md-news-3 .item.table .td {
  padding-left: 1.5em;
}
.md-news-3 .item.table .td .itemTitle {
  font-size: 16px;
  padding-right: 1.5em;
}
.md-news-3 .item.table .td .itemMeta time {
  display: inline-block;
  font-size: 16px;
  color: #999;
  margin-right: 1.5em;
}
.md-news-3 .item.table .td .itemMeta time i {
  margin-right: 0.5em;
}
.md-news-3 .item.table .td .itemMeta span {
  line-height: 1;
  padding: 2px 10px;
  background: #00863e;
  color: #fff;
  font-size: 12px;
}
.md-news-3 .item.table .td .itemMeta span a {
  color: #fff;
}

.md-carousel .slide-item .txt {
  padding: 2em;
}
.md-carousel .slide-item .txt .ttl {
  margin-bottom: 1em;
  font-size: 1.8rem;
  font-weight: 700;
}
.md-carousel .slide-item .txt .excerpt {
  margin-bottom: 1.5em;
}
.md-carousel .slick-prev:before, .md-carousel .slick-next:before {
  color: #666;
}
.md-carousel .slick-prev {
  left: -50px;
}
.md-carousel .slick-next {
  right: -50px;
}

.md-styled-menu .flex {
  flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.md-styled-menu .flex .item {
  width: 30.612244%;
  margin-bottom: 4em;
}
.md-styled-menu .flex .item .thumb {
  margin-bottom: 2em;
}
.md-styled-menu .flex .item .txt .ttl {
  margin-bottom: 1em;
  font-size: 1.8rem;
  font-weight: 700;
}
.md-styled-menu .flex .item .txt .excerpt {
  font-size: 1.4rem;
}

.md-styled-linklist .flex {
  flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
}
.md-styled-linklist .flex .item {
  width: 33.333333%;
  background: #fff;
}
.md-styled-linklist .flex .item .thumb {
  width: 100%;
  overflow: hidden;
}
.md-styled-linklist .flex .item .thumb img {
  width: 100%;
  height: auto;
  max-height: 100%;
}
.md-styled-linklist .flex .item .txt {
  padding: 2em;
}
.md-styled-linklist .flex .item .txt .ttl {
  margin-bottom: 0.5em;
}
.md-styled-linklist .flex .item .txt .excerpt {
  margin-bottom: 1em;
}

.flex-header {
  text-align: center;
  margin-top: 5em;
  margin-bottom: 2em;
  letter-spacing: 0.4em;
}
.flex-header .sub-ttl {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 0.7em;
  font-weight: 400;
  line-height: 1.4;
}
.flex-header .flex-ttl {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  color: #666;
}

.section-margin {
  margin-bottom: 4.5em;
}

#sub-hero {
  width: 100%;
  height: 450px;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
  -moz-align-items: flex-end;
  -o-align-items: flex-end;
  align-items: flex-end;
}
#sub-hero::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  content: "";
}
#sub-hero .sub-hero-ttl {
  position: absolute;
  text-align: center;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3.6rem;
  z-index: 1;
  color: #fff;
}
#sub-hero .sub-hero-ttl span {
  display: block;
  font-size: 1.6rem;
}
#sub-hero .sub-hero-ttl.upper {
  text-transform: uppercase;
}
#sub-hero .breadcrumbs {
  margin-bottom: 0;
  width: 100%;
  background: none;
  color: #fff;
  position: relative;
}
#sub-hero .breadcrumbs a {
  color: #fff;
}

.breadcrumbs {
  background: #f5f5f5;
  padding: 0.5em 0;
  font-size: 1.4rem;
  margin-bottom: 3.5em;
}
.breadcrumbs ol {
  list-style: none;
}
.breadcrumbs ol li {
  display: inline-block;
  position: relative;
}
.breadcrumbs ol li:not(:last-child)::after {
  content: "/";
  display: inline-block;
  margin: 0 1em;
}
.breadcrumbs ol li a {
  text-decoration: underline;
}

.bg-gray {
  background: #f5f5f5;
}

.md-products .flex {
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -o-flex-flow: row wrap;
  flex-flow: row wrap;
}
.md-products .flex .item {
  width: 30%;
  margin-right: 5%;
  margin-bottom: 3.5em;
}
.md-products .flex .item:nth-child(3n) {
  margin-right: 0;
}
.md-products .flex .item .txt {
  padding: 1em;
  background: #fff;
  border: #f5f5f5 1px solid;
}
.md-products .flex .item .txt .sub {
  font-size: 1.4rem;
  color: #666;
}
.md-products .flex .item .txt .ttl {
  font-size: 2rem;
  margin-bottom: 0.5em;
}
.md-products .flex .item .txt .excerpt {
  font-size: 1.4rem;
  color: #999;
  margin-bottom: 1em;
}
.md-products .flex .item .txt .price {
  font-size: 2rem;
  letter-spacing: 0.07em;
}
.md-products .flex .item .txt .price .num {
  font-size: 3.2rem;
}
.md-products .flex .item .txt .price .tax {
  display: inline-block;
  font-size: 1.2rem;
}

.md-testimonials .item {
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
.md-testimonials .item:not(:last-child) {
  margin-bottom: 4em;
}
.md-testimonials .item .thumb {
  width: 150px;
}
.md-testimonials .item .thumb .icon {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 1em;
  overflow: hidden;
}
.md-testimonials .item .thumb .meta {
  text-align: center;
  font-size: 1.4rem;
}
.md-testimonials .item .txt {
  width: calc(100% - 200px);
  position: relative;
  padding: 28px 30px;
  background-color: #fff;
  border: 3px solid #d0d0d0;
  border-radius: 10px;
  text-align: left;
  box-sizing: border-box;
}
.md-testimonials .item .txt::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: -20px;
  top: 25px;
  border-right: 20px solid #d0d0d0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
}
.md-testimonials .item .txt::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: -15px;
  top: 25px;
  border-right: 20px solid #fff;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
}
.md-testimonials .item .txt .row:not(:last-child) {
  margin-bottom: 1.5em;
}
.md-testimonials .item .txt .row .ttl {
  color: #666;
}
.md-testimonials .item .txt .row .excerpt {
  font-size: 1.4rem;
}

.md-staff .flex {
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
.md-staff .flex .item {
  width: 32%;
  border-bottom: #d0d0d0 1px solid;
}
.md-staff .flex .item .txt {
  padding: 1em 1em 2.5em 1em;
}
.md-staff .flex .item .txt .pos {
  font-size: 1.2rem;
  color: #999;
  margin-bottom: 0.5em;
}
.md-staff .flex .item .txt .name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1em;
}
.md-staff .flex .item .txt .name span {
  font-size: 1.2rem;
  display: inline-block;
  margin-left: 1.5em;
  color: #666;
}
.md-staff .flex .item .txt .excerpt {
  font-size: 1.4rem;
}

.md-staff2 .flex {
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
.md-staff2 .flex .item {
  width: 32%;
  margin-right: 2%;
}
.md-staff2 .flex .item:nth-child(3n) {
  margin-right: 0;
}
.md-staff2 .flex .item .txt {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: -3.5em;
  background: #fff;
  box-sizing: border-box;
  padding: 2.5em;
  position: relative;
}
.md-staff2 .flex .item .txt .pos {
  text-align: center;
  font-size: 1.2rem;
  color: #999;
}
.md-staff2 .flex .item .txt .name {
  font-size: 2.4rem;
  color: #666;
  text-align: center;
}
.md-staff2 .flex .item .txt .name small {
  font-size: 1.6rem;
  display: block;
  color: #333333;
}

.md-hover-tab {
  margin-bottom: 2.5em;
}
.md-hover-tab .flex {
  -webkit-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  list-style: none;
}
.md-hover-tab .flex li {
  width: 30%;
  border: #666 1px solid;
  border-radius: 7px;
  text-align: center;
  margin: 0 1em;
  -webkit-transition: all ease-in-out 0.2s;
  -ms-transition: all ease-in-out 0.2s;
  -moz-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}
.md-hover-tab .flex li a {
  display: block;
  padding: 2.5em;
}
.md-hover-tab .flex li span {
  display: block;
}
.md-hover-tab .flex li span.icon {
  width: 60px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1em;
}
.md-hover-tab .flex li span.ttl {
  font-size: 2rem;
  font-weight: 400;
  color: #666;
}
.md-hover-tab .flex li a {
  cursor: default;
}
.md-hover-tab .flex li a:hover, .md-hover-tab .flex li a.current-tab {
  background: #666;
}
.md-hover-tab .flex li a:hover span.icon svg path, .md-hover-tab .flex li a.current-tab span.icon svg path {
  fill: #fff;
  stroke: #fff;
}
.md-hover-tab .flex li a:hover span.ttl, .md-hover-tab .flex li a.current-tab span.ttl {
  color: #fff;
}
.md-hover-tab .flex li:first-child span.icon .cls-1, .md-hover-tab .flex li:nth-child(2) span.icon .cls-1 {
  fill: #F6F9FB;
}
.md-hover-tab .flex li:first-child a:hover span.icon .cls-1, .md-hover-tab .flex li:first-child a.current-tab span.icon .cls-1, .md-hover-tab .flex li:nth-child(2) a:hover span.icon .cls-1, .md-hover-tab .flex li:nth-child(2) a.current-tab span.icon .cls-1 {
  fill: #666;
}
.md-hover-panels {
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}
.md-hover-panels-panel {
  padding: 2.5em;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 15px;
}
.md-hover-panels-panel:not(:first-of-type) {
  display: none;
}
.md-hover-panels-panel-inner {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.md-hover-panels-panel-inner .sentry {
  color: #666;
}
.md-hover-panels-panel-inner .sentry .btn {
  text-decoration: none;
}

.md-styled-layout.mgbs {
  margin-bottom: 6em;
  padding-bottom: 6em;
  border-bottom: #d0d0d0 1px dashed;
}
.md-styled-layout .flex {
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
}
.md-styled-layout .flex .txt {
  width: 60%;
}
.md-styled-layout .flex .thumb {
  width: 35%;
}
.md-styled-layout .flex .txt .ttl {
  font-size: 2.4rem;
  margin-bottom: 0.5em;
}
.md-styled-layout .flex .txt .date {
  margin-bottom: 1em;
}
.md-styled-layout .flex .txt .date span {
  display: inline-block;
  margin-right: 8px;
  font-size: 1.4rem;
  line-height: 1;
  padding: 5px 10px 7px 10px;
  background: #666;
  color: #fff;
  border-radius: 3px;
}
.md-styled-layout .flex .txt .en {
  color: #e5c360;
  font-size: 1.8rem;
  margin-bottom: 1em;
}
.md-styled-layout .flex .txt .excerpt {
  margin-bottom: 2em;
}
.md-styled-layout .flex .txt .sig {
  text-align: right;
}
.md-styled-layout .flex .txt table {
  width: 100%;
  border-spacing: 0;
}
.md-styled-layout .flex .txt table th,
.md-styled-layout .flex .txt table td {
  text-align: left;
  padding: 0.5em;
}
.md-styled-layout .flex .txt table th {
  border-bottom: solid 2px #fff;
  min-width: 100px;
}
.md-styled-layout .flex .txt table td {
  border-bottom: solid 2px #000;
}
.md-styled-layout .flex .txt table dl {
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -o-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
.md-styled-layout .flex .txt table dl dt {
  width: 7em;
}
.md-styled-layout .flex .txt table dl dd {
  width: calc(100% - 7em);
}
.md-styled-layout .flex .txt .andmore {
  margin-top: 2em;
}
.md-styled-layout.reverse .flex .txt {
  order: 2;
}
.md-styled-layout.reverse .flex .thumb {
  order: 1;
}

.md-workplace {
  padding-top: 2em;
}
.md-workplace .flex {
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
.md-workplace .flex .item {
  width: 20%;
}
.md-workplace .flex .item a {
  display: block;
  color: #666;
  padding: 1.5em 0;
}
.md-workplace .flex .item a span {
  display: block;
}
.md-workplace .flex .item a .icon {
  text-align: center;
  margin-bottom: 2em;
}
.md-workplace .flex .item a .icon img,
.md-workplace .flex .item a .icon svg {
  height: 70px;
  width: auto;
  max-width: inherit;
}
.md-workplace .flex .item a .icon img .cls-1,
.md-workplace .flex .item a .icon svg .cls-1 {
  fill: #666;
  stroke: none;
}
.md-workplace .flex .item a .ttl {
  line-height: 1;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}
.md-workplace .flex .item a .sub {
  font-size: 1.4rem;
  text-align: center;
}
.md-workplace .flex .item a:hover {
  background: #666;
  color: #fff;
}
.md-workplace .flex .item a:hover .icon svg .cls-1 {
  stroke: #fff;
  fill: none;
}
.md-workplace .flex .item:nth-child(2) a .icon img .cls-1,
.md-workplace .flex .item:nth-child(2) a .icon svg .cls-1 {
  fill: none;
  stroke: #666;
}
.md-workplace .flex .item:nth-child(2) a:hover {
  background: #666;
  color: #fff;
}
.md-workplace .flex .item:nth-child(2) a:hover .icon svg .cls-1 {
  stroke: #fff;
  fill: none;
}

.hidden-content {
  display: none;
}
.hidden-content .hidden-inner {
  max-width: 1170px;
}
.hidden-content .hidden-inner .main {
  text-align: center;
  font-weight: 700;
  margin-bottom: 1em;
  font-size: 2.4rem;
}
.hidden-content .hidden-inner .ttl {
  padding: 10px 1em;
  background: #f0f0f0;
  margin-bottom: 1em;
  font-size: 2rem;
}
.hidden-content .hidden-inner .centered {
  text-align: center !important;
}
.hidden-content .hidden-inner .thumbs {
  margin-top: 2.5em;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.hidden-content .hidden-inner .thumbs .flex {
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
.hidden-content .hidden-inner .thumbs .flex .item {
  width: 32%;
}
.hidden-content .hidden-inner .sub {
  margin-top: 1.5em;
  font-size: 2rem;
  text-align: center;
}
.hidden-content .hidden-inner .box-list {
  margin-top: 2em;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.hidden-content .hidden-inner .box-list .flex {
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
.hidden-content .hidden-inner .box-list .flex .item {
  width: 31%;
  box-sizing: border-box;
  padding: 1.5em;
  border: #d0d0d0 1px solid;
}
.hidden-content .hidden-inner .box-list .flex .item .lttl {
  font-size: 2rem;
  margin-bottom: 0.5em;
  text-align: center;
}
.hidden-content .hidden-inner .frame {
  padding: 0 1.5em 1.5em 1.5em;
  border: #d0d0d0 1px solid;
  margin-top: 1.5em;
}

.md-concept .top {
  margin-bottom: 4.5em;
}
.md-concept .top .flex {
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
.md-concept .top .flex .item {
  width: 32%;
}
.md-concept .bottom-inner {
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 2.4;
}

.md-images {
  padding-bottom: 6em;
  background: #f5f5f5;
}
.md-images .hero-image {
  width: 100%;
  height: 600px;
  position: relative;
}
.md-images .hero-image::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
}
.md-images .hero-image-inner {
  position: absolute;
  width: 100%;
  height: 600px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}
.md-images .hero-content {
  padding-bottom: 6em;
  position: relative;
}
.md-images .hero-content-inner {
  width: 100%;
  max-width: 1170px;
  box-sizing: border-box;
  padding: 2.5em 2.5em 1.5em 2.5em;
  background: #fff;
  margin-left: auto;
  margin-right: auto;
  margin-top: -140px;
}
.md-images .hero-content-inner .flex {
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -o-flex-flow: row wrap;
  flex-flow: row wrap;
}
.md-images .hero-content-inner .flex .item {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 1em;
}
.md-images .hero-content-inner .flex .item:nth-child(3n) {
  margin-right: 0;
}

.styled-tbl {
  width: 100%;
  border-spacing: 0;
  font-size: 1.4rem;
}
.styled-tbl th,
.styled-tbl td {
  text-align: left;
  padding: 1.5em;
  vertical-align: top;
}
.styled-tbl th {
  border-bottom: solid 2px #666;
  min-width: 200px;
}
.styled-tbl td {
  border-bottom: solid 2px #ddd;
}
.styled-tbl dl {
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -o-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
.styled-tbl dl dt {
  width: 7em;
}
.styled-tbl dl dd {
  width: calc(100% - 7em);
}
.styled-tbl ol {
  padding-left: 1.5em;
}

#about-bottom .thumb {
  text-align: center;
  margin-top: 3.5em;
}

#contactform .row {
  margin-bottom: 2em;
}
#contactform .ttl {
  color: #000;
  margin-bottom: 0.5em;
}
#contactform .ttl a {
  text-decoration: underline;
}
#contactform .sub {
  margin-bottom: 1em;
  font-size: 1.4rem;
  padding: 0.5em 1em;
  background: #f0f0f0;
}
#contactform .sub.mgt {
  margin-top: 1em;
}
#contactform .flex {
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -o-flex-flow: row wrap;
  flex-flow: row wrap;
}
#contactform .flex .item {
  width: 48%;
}
#contactform input[type=text], #contactform input[type=password], #contactform input[type=email], #contactform input[type=url], #contactform input[type=tel], #contactform input[type=number], #contactform input[type=range], #contactform input[type=date], #contactform textarea, #contactform input.text {
  background: #fff;
  border: 1px solid #e3e3e3;
  color: inherit;
  padding: 12px 15px;
  display: block;
  font-size: 16px !important;
  margin: 10px 0 10px;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  outline: none !important;
}
#contactform .selection-box {
  display: block;
  position: relative;
  background-color: #fff;
  background-image: url(images/select-box.jpg);
  background-position: center right;
  background-repeat: no-repeat;
  border: 1px solid #e3e3e3;
  color: #808080;
  cursor: pointer;
  display: block;
  height: 50px;
  margin: 10px 0;
  padding: 0 10px;
  outline: none;
  text-indent: 0.01px;
  text-overflow: "";
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
#contactform .selection-box::before, #contactform .selection-box::after {
  content: "";
  pointer-events: none;
  position: absolute;
}
#contactform .selection-box::before {
  z-index: 1;
  right: 20px;
  top: 3px;
  bottom: 0;
  height: 0;
  margin: auto;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(0, 0, 0, 0.2);
}
#contactform .selection-box::after {
  width: 48px;
  height: 47px;
  right: 0px;
  top: 1px;
  border-left: 1px solid #e3e3e3;
  background: #fff;
}
#contactform .selection-box select {
  background: #fff;
  display: block;
  padding: 12px 0;
  width: 100%;
  box-sizing: border-box;
}
#contactform .selection-box select:focus {
  outline: none;
}
#contactform .selection-box.inline {
  display: inline-block;
  width: auto;
  min-width: 120px;
  margin-right: 5px;
  margin-left: 5px;
}
#contactform .btns {
  text-align: center;
}
#contactform input[type=submit] {
  display: inline-block;
  padding: 15px 3em;
  font-size: 1.4rem;
  background: #666;
  color: #fff;
  cursor: pointer;
}
#contactform span.wpcf7-not-valid-tip,
#contactform span.error {
  font-size: 1em;
  display: block;
  background: #ffb0af;
  border: 1px solid #ff7b79;
  color: #cc0000;
  left: 0;
  padding: 4px 10px;
  position: relative;
  top: 0;
  font-size: 1.4rem;
}
#contactform span.wpcf7-not-valid-tip:before,
#contactform span.error:before {
  content: "";
  background-image: url(images/error-arrow.png);
  background-position: top left;
  background-repeat: no-repeat;
  position: absolute;
  left: 14px;
  top: -6px;
  height: 6px;
  width: 16px;
}
#contactform.border .row {
  padding-bottom: 2em;
  border-bottom: #ddd 1px dashed;
}
#contactform .half {
  width: 50%;
}
#contactform .narrow {
  width: 25%;
}
#contactform .row-box {
  padding: 1em;
  margin-bottom: 0.5em;
  background: #f8f8f8;
}
#contactform .row-box .flx {
  display: flex;
}
#contactform .row-box .flx .item {
  width: 35%;
  margin-right: 2%;
}
#contactform .row-box .flx .item:nth-child(3n) {
  margin-right: 0;
  width: 15%;
}
#contactform .table .th {
  width: 30px;
  text-align: center;
  vertical-align: middle;
}
#contactform .table .td {
  padding-left: 1.5em;
}
#contactform .pdn-row {
  padding: 1.5em;
  border: #d0d0d0 1px solid;
  margin-bottom: 2.5em;
  background: #eeffff;
  color: #666;
  font-weight: 400;
}
#contactform .md-timeline {
  margin-bottom: 4.5em;
}
#contactform ul.circle {
  font-size: 1.4rem;
  padding-left: 2.5em;
}
#contactform input[type=file] {
  font-size: 1.4rem;
}
#contactform .birth-box {
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -o-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
#contactform .birth-box .item {
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
}
#contactform .birth-box .item:first-child {
  width: 35%;
}
#contactform .birth-box .item:nth-child(2) {
  width: 27%;
}
#contactform .birth-box .item:last-child {
  width: 30%;
}
#contactform .birth-box .item .selection-box {
  display: inline-block;
  margin-top: 0;
}
#contactform .birth-box .item .yeat-txt {
  margin-left: 0.5em;
}
#contactform .birth-box .item .str {
  margin-top: -10px;
}

span.req {
  display: inline-block;
  margin-left: 8px;
  color: red;
  font-size: 1.2rem;
}

.mwform-checkbox-field {
  line-height: 1;
  display: inline-block;
  padding: 5px 10px;
  border: #d0d0d0 3px solid;
  box-sizing: border-box;
  min-width: 250px;
  margin-top: 1em;
  margin-right: 10px;
  background: #fff;
}
.mwform-checkbox-field span {
  font-size: 1.4rem;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}

.content-header {
  text-align: center;
  margin-bottom: 3em;
}
.content-header-inner {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  display: inline-block;
  text-align: left;
}
.content-header-inner .en {
  color: #000;
  margin-left: 1.2em;
  font-size: 1.8rem;
}
.content-header-inner .content-ttl {
  font-size: 3.6rem;
  color: #666;
  font-weight: 400;
  margin-left: 1em;
}
.content-header-inner .excerpt {
  font-size: 1.8rem;
}

@media screen and (max-width: 1170px) {
  .md-service .flex .item span {
    font-size: 1.8rem;
    padding: 1em;
  }
}
@media screen and (max-width: 812px) {
  .min,
.micro {
    max-width: 90%;
  }

  #top2 {
    background: #fff;
    height: 80px;
    line-height: 80px;
  }
  #top2 .inner {
    max-width: 100%;
  }
  #top2 .flex-wrap .navi {
    display: none;
  }
  #top2 .flex-wrap .menu-button {
    display: block;
    position: absolute;
    top: 15.5%;
    right: 2.5%;
  }

  #hero.hero-flex,
#hero2.hero-flex,
#hero3.hero-flex {
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    -o-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  #hero.hero-flex .hero-flex-txt,
#hero.hero-flex .hero-flex-thumb,
#hero2.hero-flex .hero-flex-txt,
#hero2.hero-flex .hero-flex-thumb,
#hero3.hero-flex .hero-flex-txt,
#hero3.hero-flex .hero-flex-thumb {
    width: 100%;
  }
  #hero.hero-flex .hero-flex-txt,
#hero2.hero-flex .hero-flex-txt,
#hero3.hero-flex .hero-flex-txt {
    order: 2;
    height: calc(50vh - 80px);
    height: calc(50svh - 80px);
  }
  #hero.hero-flex .hero-flex-thumb,
#hero2.hero-flex .hero-flex-thumb,
#hero3.hero-flex .hero-flex-thumb {
    order: 1;
    height: 50vh;
    height: 50svh;
  }
  #hero .inner .box .ttl-wrap .ttl,
#hero2 .inner .box .ttl-wrap .ttl,
#hero3 .inner .box .ttl-wrap .ttl {
    font-size: 3.2rem;
  }
  #hero .inner .box .ttl-wrap .excerpt,
#hero2 .inner .box .ttl-wrap .excerpt,
#hero3 .inner .box .ttl-wrap .excerpt {
    font-size: 1.8rem;
  }

  #hero3 .inner .box .ttl-wrap .ttl {
    font-size: 3.2rem;
  }
  #hero3 .inner .box .ttl-wrap .excerpt {
    font-size: 1.8rem;
  }

  #hero4 .inner .box .ttl-wrap .ttl {
    font-size: 3.2rem;
  }
  #hero4 .inner .box .ttl-wrap .excerpt {
    font-size: 1.8rem;
  }

  #site-footer2 .flex {
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    -o-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  #site-footer2 .flex .info,
#site-footer2 .flex .fnav,
#site-footer2 .flex .pin {
    width: 100%;
  }
  #site-footer2 .flex .info,
#site-footer2 .flex .fnav {
    margin-bottom: 2.5em;
  }

  .md-staff2 .flex .item .txt .name {
    font-size: 1.8rem;
  }

  .md-hover-tab .flex li a {
    padding: 1em;
  }
  .md-hover-tab .flex li a span {
    font-size: 1.6rem;
  }

  #sub-hero .sub-hero-ttl {
    transform: translateY(0);
  }

  .md-news-list .row .flex .thumb {
    padding: 1.5em;
    width: 180px;
  }
  .md-news-list .row .flex .txt {
    width: calc(100% - 180px);
  }

  #hero2 .inner .box .ttl-wrap .ttl, #hero3 .inner .box .ttl-wrap .ttl {
    font-size: 3.2rem;
  }

  #hero2 .inner .box .ttl-wrap .excerpt, #hero3 .inner .box .ttl-wrap .excerpt {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  #hero.hero-flex .hero-flex-txt .box .ttl,
#hero2.hero-flex .hero-flex-txt .box .ttl,
#hero3.hero-flex .hero-flex-txt .box .ttl {
    font-size: 2rem;
  }
  #hero.hero-flex .hero-flex-txt .box .excerpt,
#hero2.hero-flex .hero-flex-txt .box .excerpt,
#hero3.hero-flex .hero-flex-txt .box .excerpt {
    font-size: 1.4rem;
  }

  #hero4 .inner .box .ttl-wrap .ttl {
    font-size: 2.4rem;
  }
  #hero4 .inner .box .ttl-wrap .excerpt {
    font-size: 1.4rem;
  }

  .sec-header .sec-ttl {
    font-size: 3.2rem;
  }

  .flex-header .sub-ttl {
    line-height: 1.2;
    margin-bottom: 0.3em;
  }

  .section-margin {
    margin-bottom: 2.5em;
  }

  .md-service .flex {
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    -o-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .md-service .flex .item {
    width: 100% !important;
    margin-right: 0 !important;
  }
  .md-service .flex .item:not(:last-child) {
    margin-bottom: 1.5em;
  }

  #site-footer2 .min {
    padding-top: 3em;
  }

  .md-concept .top {
    margin-bottom: 2.5em;
  }

  .md-images {
    padding-bottom: 1.5em;
  }
  .md-images .hero-image,
.md-images .hero-image-inner {
    height: 400px;
  }
  .md-images .hero-image-inner {
    background-attachment: unset;
    background-size: cover;
  }
  .md-images .hero-content {
    padding-bottom: 1.5em;
  }

  .styled-tbl {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .styled-tbl tbody,
.styled-tbl tr,
.styled-tbl th,
.styled-tbl td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .breadcrumbs {
    margin-bottom: 2em;
  }

  .layout-sp-1 .flex {
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    -o-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    -moz-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
  }
  .layout-sp-1 .flex .item.txt {
    width: 100%;
    padding-top: 2.5em;
  }
  .layout-sp-1 .flex .item.txt h2 {
    font-size: 2rem;
  }
  .layout-sp-1 .flex .item.thumb1, .layout-sp-1 .flex .item.thumb2 {
    width: 40%;
  }

  .md-products .flex .item {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 1.5em;
  }
  .md-products .flex .item:last-child {
    margin-bottom: 0 !important;
  }

  .md-staff .flex {
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    -o-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .md-staff .flex .item {
    width: 100%;
  }
  .md-staff .flex .item:not(:last-child) {
    margin-bottom: 2em;
  }

  .md-staff2 .flex {
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    -o-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .md-staff2 .flex .item {
    width: 100%;
  }
  .md-staff2 .flex .item:not(:last-child) {
    margin-bottom: 2em;
  }

  .md-hover-tab .flex {
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    -o-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .md-hover-tab .flex li {
    width: 100%;
  }
  .md-hover-tab .flex li:not(:last-child) {
    margin-bottom: 0.5em;
  }

  .md-styled-layout .flex {
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    -o-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .md-styled-layout .flex .txt,
.md-styled-layout .flex .thumb {
    width: 100%;
  }
  .md-styled-layout .flex .txt {
    margin-bottom: 2.5em;
  }

  .md-workplace .flex {
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    -o-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .md-workplace .flex .item {
    width: 100%;
  }
  .md-workplace .flex .item:not(:last-child) {
    margin-bottom: 1.5em;
  }

  #contactform .flex {
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    -o-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  #contactform .flex .item {
    width: 100%;
  }

  .md-faq dl dd {
    padding: 1em 1.5em 1em 4em;
  }
  .md-faq dl dd::before {
    left: 0.7em;
  }

  .md-testimonials .item {
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    -o-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .md-testimonials .item .thumb,
.md-testimonials .item .txt {
    width: 100%;
  }
  .md-testimonials .item .thumb {
    margin-bottom: 1em;
  }
  .md-testimonials .item .thumb .icon {
    margin-left: auto;
    margin-right: auto;
    width: 100px;
    height: 100px;
  }
  .md-testimonials .item .txt::before, .md-testimonials .item .txt::after {
    display: none;
  }

  .md-news-list .row .flex {
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    -o-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .md-news-list .row .flex .thumb {
    padding: 1em;
    width: 100%;
  }
  .md-news-list .row .flex .txt {
    width: 100%;
    padding: 1em;
  }

  #hero2 .inner .box .ttl-wrap .ttl, #hero3 .inner .box .ttl-wrap .ttl {
    font-size: 2.4rem;
  }

  #hero2 .inner .box .ttl-wrap .excerpt, #hero3 .inner .box .ttl-wrap .excerpt {
    font-size: 1.4rem;
  }

  #top2 .inner {
    padding: 0 1em;
  }
  #top2 .flex-wrap .logo .site-ttl {
    font-size: 1.8rem;
  }
}

/*# sourceMappingURL=style-tmpl-2.css.map */
