@charset "utf-8";
/* CSS Document */

/* -----------------------------------
  リセット
----------------------------------- */

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, caption, canvas, center, cite, code, dd, del, details, dfn, dialog, div, dl, dt, em, embed, fieldset, figcaption, figure, form, footer, header, hgroup, h1, h2, h3, h4, h5, h6, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, tt, table, tbody, textarea, tfoot, thead, time, tr, th, td, u, ul, var, video {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 16px;
  font-weight: normal;
  line-height: 1em;
}

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

ol, ul {
  list-style: none;
}

a {
  outline: none;
  color: #39f;

  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
a:link, a:visited {
  color: #39f;
  text-decoration: none;
}
a:hover {
  outline: none;
  color: #039;
}
a:active {
  outline: none;
}

a:hover {
  opacity: 0.85;

  filter: alpha(opacity=85);
  -moz-opacity: 0.85;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

table {
  border-spacing: 0;
}

img {
  max-width: 100%;
  width /***/: auto;
  height: auto;
  vertical-align: bottom;
}

.clearfix:after {
  display: block;
  clear: both;
  content: "";
}

.clearfix:before {
  display: block;
  clear: both;
  content: "";
}

.clearfix {
  display: block;
}

/* -----------------------------------
  全体設定
----------------------------------- */

html {
  overflow: auto;
}

body {
  overflow: hidden;
  position: relative;
  min-width: 1080px;
  color: #333;
  font-family: "Poppins Light", "Poppins", "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", san-serif;
  font-size: 16px;
  line-height: 2em;
  letter-spacing: 0.05em;

  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-feature-settings: "palt";
}

.wrap {
  position: relative;
}

.inner {
  position: relative;
  width: 960px;
  margin: 0 auto;
  padding: 5em 0;
}

pre code {
  white-space: pre;
  word-wrap: normal;
}

br.pc {
  display: block;
}

br.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  body {
    min-width: 100%;
  }

  .inner {
    width: 90%;
    padding: 3em 0;
  }

  br.pc {
    display: none;
  }

  br.sp {
    display: block;
  }
}


/* -----------------------------------
  ヘッダー
----------------------------------- */

header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 3px rgba(0,0,0,0.3);
}

header .inner {
  width: 100%;
  padding: 0;
}

header .inner h1 {
  display: inline-block;
  padding: 20px;
}

header .inner h1 img {
  height: 40px;
}

.globalMenu {
  display: block;
  position: absolute;
  z-index: 9999;
  top: 0;
  right: 0;
}

.gml {
  display: none;
}

nav.globalMenuSp {
  width: 100%;
}

nav.globalMenuSp ul {
  display: flex;
  height: 80px;
  text-align: center;

  justify-content: space-between;
  align-items: center;
}

nav.globalMenuSp a {
  display: block;
  margin: 0 10px;
  padding: 6px 0;
  color: #444;
  font-size: 16px;
  font-weight: bold;
  line-height: 1em;
}

nav.globalMenuSp li:last-of-type {
  display: table;
  width: 200px;
  height: 80px;
  margin-left: 20px;
}

nav.globalMenuSp li:last-of-type a {
  display: table-cell;
  position: relative;
  padding-left: 48px;
  background: rgba(0, 160, 200, 1);
  color: #fff;
  vertical-align: middle;
}

nav.globalMenuSp li:last-of-type a:before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -112px;
  width: 32px;
  height: 32px;
  margin: auto;
  background: url("../img/contact.svg") no-repeat;
  background-size: 32px 32px;
  content: "";
}

.globalMenuBg {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transition: all 0.6s;
  transform: translateX(100%);
}

.globalMenuBg.active {
  transform: translateX(0);
}

@media screen and (min-width: 1081px) {
  #about .globalMenu li:nth-of-type(1) a {
    padding: 6px 0 4px;
    border-bottom: 2px solid rgba(0, 160, 200, 0.9);
  }

  #service .globalMenu li:nth-of-type(2) a {
    padding: 6px 0 4px;
    border-bottom: 2px solid rgba(0, 160, 200, 0.9);
  }

  #strength .globalMenu li:nth-of-type(3) a {
    padding: 6px 0 4px;
    border-bottom: 2px solid rgba(0, 160, 200, 0.9);
  }

  #company .globalMenu li:nth-of-type(4) a {
    padding: 6px 0 4px;
    border-bottom: 2px solid rgba(0, 160, 200, 0.9);
  }

  #voice .globalMenu li:nth-of-type(5) a {
    padding: 6px 0 4px;
    border-bottom: 2px solid rgba(0, 160, 200, 0.9);
  }
}

@media screen and (max-width: 1080px) {
  .globalMenu {
    top: 10px;
    right: 10px;
    width: 60px;
  }

  .gml {
    display: block;
    position: relative;
    width: 60px;
    height: 60px;
    color: #fff;
    font-weight: normal;
    text-align: center;
    line-height: 1em;
    letter-spacing: 0.1em;
  }

  .hamburger {
    padding: 10px 10px;
    cursor: pointer;
  }

  .gml .icon {
    position: relative;
    height: 40px;
  }

  .hamburger .icon span {
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    width: 40px;
    height: 1px ;
    margin: 0 auto;
    background: #000;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .hamburger .icon span:nth-child(1) {
    top: 4px;
  }

  .hamburger .icon span:nth-child(2) {
    top: 19px;
  }

  .hamburger .icon span:nth-child(3) {
    top: 34px;
  }

  .hamburger.active .icon span:nth-child(1) {
    top: 19px;
    background: #fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .hamburger.active .icon span:nth-child(2), .hamburger.active .icon span:nth-child(3) {
    top: 19px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  nav.globalMenuSp {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    padding-top: 80px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    text-align: center;
    transition: all 0.6s;
    transform: translateX(100%);
  }

  nav.globalMenuSp.active {
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    transform: translateX(0);
  }

  nav.globalMenuSp .lift {
    overflow: auto;
    height: 100%;
  }

  nav.globalMenuSp ul {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0 1em;
  }

  nav.globalMenuSp li {
    padding: 0;
    border-bottom: 1px dotted #fff;
  }

  nav.globalMenuSp li:first-of-type {
    border-top: 1px dotted #fff;
  }

  nav.globalMenuSp li a {
    display: block;
    position: relative;
    margin: 0;
    padding: 24px 12px;
    color: #fff;
    font-size: 16px;
    font-weight: normal;
    text-align: left;
    line-height: 1em;
    letter-spacing: 0;
  }

  nav.globalMenuSp li a:after {
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    width: 6px;
    height: 6px;
    margin: auto;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    content: "";
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  nav.globalMenuSp li:last-of-type {
    display: block;
    width: auto;
    height: auto;
    margin: 0;
  }

  nav.globalMenuSp li:last-of-type a {
    display: block;
    position: relative;
    padding: 24px 12px;
    background: transparent;
  }

  nav.globalMenuSp li:last-of-type a:before {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  header .inner h1 {
    padding: 12px;
  }

  header .inner h1 img {
    height: 24px;
  }

  .globalMenu {
    top: 4px;
    right: 4px;
    width: 40px;
  }

  .gml {
    width: 40px;
    height: 40px;
  }

  .hamburger {
    padding: 6px 6px;
  }

  .gml .icon {
    height: 24px;
    margin-bottom: 4.5px;
  }

  .hamburger .icon span {
    width: 20px;
  }

  .hamburger .icon span:nth-child(1) {
    top: 5px;
  }

  .hamburger .icon span:nth-child(2) {
    top: 12px;
  }

  .hamburger .icon span:nth-child(3) {
    top: 19px;
  }

  .hamburger.active .icon span:nth-child(1) {
    top: 12px;
  }

  .hamburger.active .icon span:nth-child(2), .hamburger.active .icon span:nth-child(3) {
    top: 12px;
  }

  nav.globalMenuSp {
    width: 85%;
    padding-top: 48px;
  }

  nav.globalMenuSp li a {
    padding: 18px 12px;
  }

  nav.globalMenuSp li:last-of-type a {
    padding: 18px 12px;
  }
}

/* -----------------------------------
  タイトル＆コンテンツテンプレ
----------------------------------- */

.titleColumn {
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-top: 80px;
  padding: 108px 0;
  text-align: center;
}

.titleColumn:after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("../img/bg_info.jpg");
  background-position: center;
  background-size: cover;
  opacity: 1;
  content: "";
}

#about .titleColumn:after {
  background-image: url("../img/bg_about.jpg");
}

#service .titleColumn:after {
  background-image: url("../img/bg_service.jpg");
}

#strength .titleColumn:after {
  background-image: url("../img/bg_strength.jpg");
}

#company .titleColumn:after {
  background-image: url("../img/bg_company.jpg");
}

#voice .titleColumn:after {
  background-image: url("../img/bg_voice.jpg");
}

#contact .titleColumn:after {
  background-image: url("../img/bg_contact.jpg");
}

.titleColumn .page-ttl {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.25), -1px -1px 3px rgba(0,0,0,0.25), 1px -1px 3px rgba(0,0,0,0.25), -1px 1px 3px rgba(0,0,0,0.25);
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  line-height: 1em;
  letter-spacing: 0.08em;
}

.titleColumn .page-ttl span {
  display: block;
  padding-top: 12px;
  color: rgba(0, 160, 200, 1);
  font-family: "Poppins", san-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1em;
}

.breadCrumbs {
  overflow: auto;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  z-index: 1;
  padding: 15px 25px;
  color: #999;
  font-size: 14px;
  line-height: 1em !important;
}

.breadCrumbs ul {
  display: block;
  white-space: nowrap;
}

.breadCrumbs li {
  display: inline;
  margin-right: 30px;
}

.breadCrumbs a {
  position: relative;
  color: #999;
}
.breadCrumbs a::after {
  position: absolute;
  top: 0;
  right: -1.8em;
  bottom: 0;
  width: 1em;
  height: 1em;
  margin: auto;
  content: "／";
}

.breadCrumbs img {
  width: 16px;
  height: 16px;
}

.contentColumn .mainArea .contentBox {
  margin: 0 0 5em;
  padding-top: 5em;
  border-top: 1px solid #ccc;
}

.contentColumn .mainArea .contentBox:first-of-type {
  padding: 0;
  border: 0;
}

.contentColumn .mainArea .contentBox:last-of-type {
  margin: 0;
}

.contentColumn .ttl {
  position: relative;
  margin: 0 0 2.4em;
  color: rgba(0, 160, 200, 1);
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}

.contentColumn .mbl::before {
  position: absolute;
  right: 0;
  bottom: -1em;
  left: 0;
  width: 60px;
  height: 3px;
  margin: 0 auto;
  background: url("../img/h3before.svg") no-repeat;
  content: "";
}

.contentColumn .sttl {
  position: relative;
  margin: 0 0 1em;
  padding-left: 10px;
  border-left: 5px solid rgba(0, 160, 200, 1);
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2em;
}

.contentColumn .cttl {
  position: relative;
  margin: 0 0 0.5em;
  color: rgba(0, 160, 200, 1);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5em;
}

a[href^="tel:"] {
  color: #333;
  pointer-events: none;
}

.contentColumn .desc {
  margin: 0 0 2em;
}

.contentColumn .desc2 {
  margin: 0 0 3em;
}

.contentColumn ul.li_circle {
  list-style-type: circle;
  margin: 0 0 2em;
}

.contentColumn ul.li_decimal {
  list-style-type: decimal;
  margin: 0 0 2em;
}

.contentColumn ul.li_circle li, .contentColumn ul.li_decimal li {
  margin-left: 1em;
}

.contentColumn .caution {
  margin: -1em 0 2em;
  font-size: 0.875em;
  line-height: 1.7em;
}

.red {
  color: #f00;
}

.contentColumn table {
  box-sizing: border-box;
  border-collapse: collapse;
  width: 100%;
  margin: 0 0 2em;
}

.contentColumn table.table2 {
  width: 48%;
}

.contentColumn table th {
  box-sizing: border-box;
  padding: 12px 18px;
  border-top: 1px dotted #ccc;
  border-bottom: 1px dotted #ccc;
  text-align: left;
  vertical-align: top;
}

.contentColumn thead th {
  background-color: #ccc;
  color: #fff;
}

.contentColumn table td {
  box-sizing: border-box;
  padding: 12px 18px;
  border-top: 1px dotted #ccc;
  border-bottom: 1px dotted #ccc;
  text-align: left;
  vertical-align: top;
}

.contentColumn table td ul.li_circle {
  margin: 0;
}

.contentColumn table .nowrap {
  white-space: nowrap;
}

.contentColumn table .width15 {
  width: 15%;
}

.contentColumn table .width20 {
  width: 20%;
}

.contentColumn table .width25 {
  width: 25%;
}

.contentColumn table .width30 {
  width: 30%;
}

.contentColumn table .width35 {
  width: 35%;
}

.contentColumn table .width40 {
  width: 40%;
}

.contentColumn table .width45 {
  width: 45%;
}

.contentColumn table .width50 {
  width: 50%;
}

.contentColumn table .width60 {
  width: 60%;
}

.contentColumn .txt-c {
  text-align: center;
}

.contentColumn .txt-l {
  text-align: left;
}

.contentColumn .txt-r {
  text-align: right;
}



@media screen and (max-width: 767px) {
  .titleColumn {
    margin-top: 48px;
    padding: 72px 0;
  }

  .titleColumn .page-ttl {
    font-size: 24px;
    line-height: 1em;
  }

  .titleColumn .page-ttl span {
    padding-top: 4px;
    font-size: 14px;
    line-height: 1em;
  }

  .contentColumn .mainArea .contentBox {
    margin: 0 0 3em;
    padding-top: 3em;
  }

  .contentColumn .mainArea .contentBox:first-of-type {
    padding: 0;
    border: 0;
  }

  .contentColumn .mainArea .contentBox:last-of-type {
    margin: 0;
  }

  .contentColumn .ttl {
    margin: 0 0 2.4em;
    font-size: 24px;
  }

  .contentColumn .mbl::before {
    bottom: -1em;
    width: 40px;
    height: 2px;
    background-size: 40px 2px;
  }

  .contentColumn .sttl {
    padding-left: 8px;
    border-left: 4px solid rgba(0, 160, 200, 1);
    font-size: 18px;
  }

  .contentColumn .cttl {
    font-size: 16px;
  }

  a[href^="tel:"] {
    pointer-events: auto;
  }

  .contentColumn .desc {
    margin: 0 0 1.5em;
  }

  .contentColumn .desc2 {
    margin: 0 0 2em;
  }

  .contentColumn ul.li_circle {
    margin: 0 0 1.5em;
  }

  .contentColumn table {
    margin: 0 0 1.5em;
  }

  .contentColumn table.table2 {
    width: 100%;
  }

  .contentColumn table th {
    display: block;
    padding: 0;
    border: 0;
  }

  .contentColumn table td {
    display: block;
    padding: 0 0 1em;
    border: 0;
  }

  table.tb-sp-scroll {
    display: block;
    overflow-x: auto;
    width: 100%;

    -webkit-overflow-scrolling: touch;
  }

  table.tb-sp-scroll th, table.tb-sp-scroll td {
    display: table-cell;
    white-space: nowrap;
  }

  .tb-sp-scroll::-webkit-scrollbar {
    height: 5px;
  }

  .tb-sp-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .tb-sp-scroll::-webkit-scrollbar-thumb {
    background: #bcbcbc;
  }
}

/* -----------------------------------
  フッター
----------------------------------- */

footer {
  position: relative;
  background: rgba(0, 160, 200, 1);
  color: #fff;
  line-height: 1.7;
}

footer .inner {
  width: 90%;
  padding: 4em 0 2em;
}

footer .footer_addr {
  float: left;
  width: 480px;
}

footer .footer_addr p {
  margin-top: 0.5em;
}

footer .footer_addr p.tel {
  margin-top: 0;
  font-family: "Poppins", san-serif;
  font-weight: 600;
}

footer .footer_addr a {
  color: #fff;
  font-size: 28px;
  line-height: 1.7;
}

footer .footer_nav {
  float: right;
  width: 360px;
}

footer .footer_nav li {
  list-style-type: circle;
  float: left;
  width: calc(50% - 2em);
  margin: 0.2em 1em;
}

footer .footer_nav li a {
  color: #fff;
}

footer .footer_nav li:last-of-type {
  display: table;
  width: 360px;
  height: 54px;
  margin: 0.5em 0;
}

footer .footer_nav li:last-of-type a {
  display: table-cell;
  position: relative;
  padding-left: 48px;
  background: #fff;
  color: rgba(0, 160, 200, 1);
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}

footer .footer_nav li:last-of-type a:before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -112px;
  width: 32px;
  height: 32px;
  margin: auto;
  background: url("../img/footer_contact.svg") no-repeat;
  background-size: 32px 32px;
  content: "";
}

footer .copy {
  font-size: 12px;
  text-align: left;
  line-height: 2em;
}

#page-top {
  position: fixed;
  z-index: 5;
  right: 10px;
  bottom: 10px;
}

#page-top a {
  display: block;
  position: relative;
  width: 48px;
  height: 48px;
  padding: 12px;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
  color: #fff;
  line-height: 1;
}

#page-top a::before {
  display: inline-block;
  position: absolute;
  top: 6px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  border: solid #fff;
  border-width: 1px 1px 0 0;
  content: "";
  -webkit-transform: rotate(-45deg) translate3d(0, 0, 0);
  transform: rotate(-45deg) translate3d(0, 0, 0);
}

@media screen and (max-width: 767px) {
  footer .inner {
    padding: 2em 0 1em;
  }

  footer .footer_addr {
    float: none;
    width: 100%;
    font-size: 14px;
    text-align: center;
  }

  footer .footer_addr a {
    font-size: 24px;
  }

  footer .footer_nav {
    display: none;
  }

  footer .copy {
    text-align: center;
  }

  #page-top a {
    width: 36px;
    height: 36px;
  }

  #page-top a::before {
    width: 12px;
    height: 12px;
  }
}

/* -----------------------------------
  INDEX
----------------------------------- */

.visual {
  overflow: hidden;
  position: relative;
  z-index: 5;
  width: 100%;
  height: 720px;
  margin: 80px auto 0;
  padding: 0;
}

.visual .copy {
  display: block;
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.slick-slide {
  font-size: 0;
  line-height: 0;
}

.mv-slider-li {
  text-align: center;
}

.mv-slider-li li {
  height: auto;
  margin: 0 auto;
}

.mv-slider-li img {
  width: 100%;
  height: 720px;
  font-family: "object-fit: cover;"; /*IE対策*/

  object-fit: cover;
}

.slide-animation {
  animation: fadezoom 8s 0s forwards;
}

@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.slick-slide a {
  display: block;
  overflow: hidden;
  outline: none;
}

.mv-slider-li .slick-dots {
  position: absolute;
  right: 0;
  bottom: 80px;
  left: 0;
  margin: auto;
  font-size: 0;
  text-align: center;
}

.mv-slider-li .slick-dots li {
  display: inline-block;
}

.mv-slider-li .slick-dots li + li {
  margin-left: 14px;
}

.mv-slider-li .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  font-size: 0;
  cursor: pointer;
}

.mv-slider-li .slick-dots .slick-active button {
  background: #fff;
}

.mv-slider-li .slick-arrow {
  display: none !important;
}

.btn a {
  display: inline-block;
  width: 180px;
  border: 1px solid #666;
  color: #333;
  text-align: center;
}

.btn a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.en {
  position: relative;
  margin: 0 0 0.5em;
  color: #333;
  font-family: "Poppins", san-serif;
  font-size: 36px;
  font-weight: bold;
  text-align: left;
  line-height: 1.5em;
  letter-spacing: 0.1em;
}

.en:first-letter {
  color: rgba(0, 160, 200, 1);
  font-size: 48px;
}

.infoColumn {
  position: relative;
  z-index: 5;
  width: 1080px;
  margin: -4em auto 0;
  padding: 4em 3em;
  background: #fff;
}

.infoColumn .btn {
  position: absolute;
  top: 4.6em;
  right: 3em;
}

.infoColumn ul {
  display: flex;

  justify-content: space-between;
}

.infoColumn li {
  width: 300px;
}

.infoColumn p {
  line-height: 1.7;
}

.infoColumn p.date {
  padding: 0.5em 0 0;
  color: rgba(0, 160, 200, 1);
}

.infoColumn a {
  color: #333;
}

.serviceColumn {
  background: url("../img/service_pc.jpg") #f4f1ea right no-repeat;
  background-size: cover;
}

.serviceColumn .inner {
  height: 480px;
  padding-right: 540px;
}

.serviceColumn .btn {
  position: absolute;
  bottom: 4em;
  left: 0;
}

.voiceColumn ul {
  margin: -3em 0 4em;
}

.voiceColumn li {
  position: relative;
  margin-bottom: 80px;
  padding: 0 40px;
}

.voiceColumn li a {
  display: inline-block;
}

.voiceColumn li img {
  height: 320px;

  object-fit: cover;
}

.voiceColumn dl {
  display: block;
  position: absolute;
  bottom: -4em;
  left: 0;
  width: 240px;
  padding: 1.25em;
  background: #f6f6f6;
  box-shadow: 5px 5px 0 rgba(0,0,0,0.1);
  font-size: 16px;
  text-align: center;
  line-height: 1.7;
}

.voiceColumn dt {
  margin-bottom: 0.5em;
  color: rgba(0, 160, 200, 1);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.7;
}

.voiceColumn dd {
  text-align: left;
}

.voiceColumn dd .btn {
  margin-top: 1em;
  text-align: center;
}

.contactColumn {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 78px 0;
  text-align: center;
}

.contactColumn:after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("../img/bg_contact.jpg");
  background-position: center;
  background-size: cover;
  opacity: 1;
  content: "";
}

.contactColumn .en {
  color: #fff;
  text-align: center;
}

.contactColumn .desc {
  color: #fff;
  margin: 0 0 2em;
}

.contactColumn .btn a {
  border: 1px solid #fff;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .visual {
    height: auto;
    margin: 48px auto 0;
  }

  .visual .copy {
    width: 80%;
  }

  .mv-slider-li img {
    height: auto;
  }

  .mv-slider-li .slick-dots {
    bottom: 20px;
  }

  .en {
    margin: 0 0 0.5em;
    color: #333;
    font-size: 24px;
    text-align: center;
  }

  .en:first-letter {
    font-size: 36px;
  }

  .infoColumn {
    width: 90vw;
    margin: 0 auto;
    padding: 3em 0;
  }

  .infoColumn .btn {
    position: relative;
    top: 0;
    right: 0;
    text-align: center;
  }

  .infoColumn ul {
    flex-direction: column;
  }

  .infoColumn li {
    width: 100%;
    margin-bottom: 1.2em;
  }

  .serviceColumn {
    background: url("../img/service_sp.jpg") #f4f1ea right bottom no-repeat;
    background-size: 100% auto;
  }

  .serviceColumn .inner {
    height: auto;
    padding-right: 0;
    padding-bottom: 50VW;
  }

  .serviceColumn .btn {
    position: relative;
    bottom: 0;
    text-align: center;;
  }

  .voiceColumn ul {
    width: 90vw;
    margin: -1.5em auto 3em;
  }

  .voiceColumn li {
    margin: 0;
    padding: 0;
  }

  .voiceColumn li img {
    height: 45vw;

    object-fit: cover;
  }

  .voiceColumn dl {
    position: relative;
    bottom: 0;
    left: 0;
    width: 90vw;
    padding: 1.25em 0 0;
    background: transparent;
    box-shadow: none;
  }

  .contactColumn {
    padding: 3em 0;
  }

  .contactColumn .en {
    margin: 0 0 0.25em;
    color: #fff;
  }

  .contactColumn .desc {
    font-size: 0.8em;
    line-height: 2em;
    margin: 0 0 1.5em;
  }
}

/* -----------------------------------
  各ページコンテンツ
----------------------------------- */

#about .contentColumn .contentBox {
  padding-top: 0;
  border-top: 0;
}

#about .contentColumn .prologue {
  margin: 0 0 2em;
  font-size: 20px;
  text-align: center;
  line-height: 2.5em;
}

#about .contentColumn .message {
  background: url("../img/profile_pc.jpg") #edf5fb right no-repeat;
  background-size: cover;
}

#about .message .inner {
  padding-right: 360px;
}

#about .message .ttl {
  margin: 0 0 0.6em;
  text-align: left;
}

#about .contentColumn .message .sign {
  display: block;
  text-align: right;
  margin-top: 1em;
}

#about .contentColumn .message h5 {
  position: relative;
  color: #333;
}

#about .contentColumn .message h5::before {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #333;
  content: "";
}

#about .contentColumn .message h5 span {
  position: relative;
  z-index: 5;
  padding-right: 10px;
  background: #edf5fb;
}
#about .contentColumn .message .profileDesc {
  font-size: 14px;
  line-height: 2em;
}

#service .contentColumn .serviceList {
  display: flex;
  margin: 0 0 2em;

  flex-wrap: wrap;
  justify-content: space-between;
}

#service .contentColumn .serviceList li {
  width: 220px;
  text-align: center;
}

#service .contentColumn .serviceList li ul {
  padding: 1em 0.5em 0;
}

#service .contentColumn .serviceList li li {
  width: auto;
  font-weight: bold;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0;
}

#strength .flow .step {
  display: table;
  position: relative;
  width: calc(100% - 40px);
  margin: 0 20px 25px;
  background-color: #f6f6f6;
  box-shadow: 5px 5px 0 rgba(0,0,0,0.1);
}

#strength .flow .step::before {
  position: absolute;
  right: -6px;
  bottom: -20px;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-width: 15px 15px 0 15px;
  border-style: solid;
  border-color: rgba(0,0,0,0.1) transparent transparent transparent;
  content: "";
}

#strength .flow .step::after {
  position: absolute;
  right: 0;
  bottom: -15px;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-width: 15px 15px 0 15px;
  border-style: solid;
  border-color: #f6f6f6 transparent transparent transparent;
  content: "";
}

#strength .flow .step:last-of-type::before, #strength .flow .step:last-of-type::after {
  display: none;
}

#strength .flow .step .num {
  display: table-cell;
  width: 80px;
  padding: 24px 20px;
  background-color: rgba(0, 160, 200, 1);
  vertical-align: middle;
}

#strength .flow .step dl {
  display: table-cell;
  padding: 24px 24px;
  vertical-align: middle;
}

#strength .flow .step dt {
  color: rgba(0, 160, 200, 1);
  font-size: 24px;
  font-weight: bold;
}

#strength .flow .step dd {
  padding: 10px 0 0;
}

#strength .flow .step ul {
  margin: 0;
  display: flex;
}

#strength .flow .step li {
  margin-right: 2em;
}

#strength .contentColumn .difference li {
  margin: 1em 0 1em 1em;
}

#strength .contentColumn .difference li span {
  display: block;
  font-size: 14px;
  line-height: 1.7em;
}

#company .contentColumn table p {
  margin-bottom: 1em;
}

#company .contentColumn table p:last-of-type {
  margin-bottom: 0;
}

#company .contentColumn .map iframe {
  width: 100%;
  margin-bottom: 2em;
}

#voice .voiceBox, #voice .voiceDetail {
  position: relative;
  margin: 0 0 6em;
}

#voice .voiceBox .pic, #voice .voiceDetail .pic {
  display: inline-block;
}

#voice .voiceBox:nth-of-type(2n+1) .pic {
  margin-left: 240px;
}

#voice .voiceBox:nth-of-type(2n) .pic {
  margin-right: 240px;
}

#voice .voiceBox img {
  height: 360px;

  object-fit: cover;
}

#voice .voiceBox dl, #voice .voiceDetail dl {
  display: block;
  position: absolute;
  bottom: -2em;
  width: 360px;
  padding: 1.25em;
  background: #f6f6f6;
  box-shadow: 5px 5px 0 rgba(0,0,0,0.1);
  font-size: 16px;
  line-height: 1.7;
}

#voice .voiceBox:nth-of-type(2n+1) dl {
  left: 0;
}

#voice .voiceBox:nth-of-type(2n) dl {
  right: 0;
}

#voice .voiceDetail dl {
  left: -2em;
}

#voice .voiceBox dt, #voice .voiceDetail dt {
  margin-bottom: 0.5em;
  color: rgba(0, 160, 200, 1);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.7;
}

#voice .voiceBox dd, #voice .voiceDetail dd {
  text-align: left;
}

.wp-pagenavi {
  margin: 0 0 1em;
  text-align: center;
}

#voice .wp-pagenavi {
  margin: -1em 0 1em;
}

#info .wp-pagenavi {
  margin: 4em 0 1em;
}

.wp-pagenavi > a, .wp-pagenavi > span {
  display: inline-block;
  margin-right: 5px;
  padding: 0 10px;
  border: 1px solid rgba(0, 160, 200, 1);
  border-radius: 2px;
  background: #fff;
  color: rgba(0, 160, 200, 1);
  text-decoration: none;
  vertical-align: middle;
  line-height: 28px;
  transition: all 0.4s;
}

.wp-pagenavi > a:hover {
  background: rgba(0, 160, 200, 1);
  color: #fff;
}

.wp-pagenavi span {
  border-color: rgba(0, 160, 200, 1);
  background: rgba(0, 160, 200, 1);
  color: #fff;
}

#voice.detail .mainArea span {
  background: #ff0;
}

@media screen and (max-width: 767px) {
  #about .contentColumn .prologue {
    font-size: 16px;
    line-height: 2em;
  }

  #about .contentColumn .message {
    background: url("../img/profile_sp.jpg") #edf5fb right bottom no-repeat;
    background-size: 100% auto;
  }

  #about .message .inner {
    padding-right: 0;
    padding-bottom: 70%;
  }

  #about .message .ttl {
    margin: 0 0 2em;
    font-size: 24px;
    text-align: center;
  }

  #about .message .ttl:before {
    display: block;
    position: absolute;
    right: 0;
    bottom: -1em;
    left: 0;
    width: 40px;
    height: 2px;
    margin: 0 auto;
    background: url("../img/h3before.svg") no-repeat;
    background-size: 40px 2px;
    content: "";
  }

  #about .contentColumn .message .sign {
    margin-top: 0.5em;
  }

  #service .contentColumn .serviceList li {
    width: 48%;
  }

  #service .contentColumn .serviceList li img {
    width: 80%;
  }

  #service .contentColumn .serviceList li ul {
    padding: 1em 0 0;
  }

  #service .contentColumn .serviceList li li {
    width: auto;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
  }

  #strength .contentColumn .difference li {
    font-size: 16px;
    line-height: 1.7em;
  }

  #strength .contentColumn .difference li span {
    font-size: 14px;
    line-height: 1.7em;
  }

  #strength .flow .step {
    width: 100%;
    margin: 0 0 25px;
  }

  #strength .flow .step .num {
    width: 50px;
    padding: 12px 10px;
  }

  #strength .flow .step .num img {
    width: 30px;
  }

  #strength .flow .step dl {
    padding: 12px;
  }

  #strength .flow .step dt {
    font-size: 18px;
  }

  #strength .flow .step dd {
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
  }

  #strength .flow .step ul {
    flex-direction: column;
  }

  #voice .voiceBox, #voice .voiceDetail {
    margin: 0 0 3em;
  }

  #voice .voiceBox .pic, #voice .voiceDetail .pic {
    margin: 0 !important;
  }

  #voice .voiceBox img, #voice .voiceDetail img {
    height: 45vw;

    object-fit: cover;
  }

  #voice .voiceBox dl {
    position: relative;
    bottom: 0;
    width: 90vw;
    padding: 1.25em 0 0;
    background: transparent;
    box-shadow: none;
  }

  #voice .voiceDetail dl {
    position: relative;
    bottom: 0;
    left: 0;
    width: 90vw;
    padding: 1.25em 0 0;
    background: transparent;
    box-shadow: none;
  }
}

/* -----------------------------------
  各ページコンテンツ
----------------------------------- */

.row {
  display: flex;
  margin-right: -20px;
  margin-left: -20px;

  flex-wrap: wrap;
}

.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
  position: relative;
  min-height: 1px;
  padding-right: 20px;
  padding-left: 20px;
}

.col-md-1 {
  width: 8.333333%;
}
.col-md-2 {
  width: 16.666667%;
}
.col-md-3 {
  width: 25%;
}
.col-md-4 {
  width: 33.333333%;
}
.col-md-5 {
  width: 41.666667%;
}
.col-md-6 {
  width: 50%;
}
.col-md-7 {
  width: 58.333333%;
}
.col-md-8 {
  width: 66.666667%;
}
.col-md-9 {
  width: 75%;
}
.col-md-10 {
  width: 83.333333%;
}
.col-md-11 {
  width: 91.666667%;
}
.col-md-12 {
  width: 100%;
}

.info-list {
  display: flex;
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}

.info-list .info-list-image {
  overflow: hidden;
  position: relative;
  z-index: 2;
  max-width: 120px;
  width: 120px;
  padding-right: 20px;
}

.info-list .info-list-image a {
  display: block;
  width: 100px;
  height: 100px;
}

.info-list .info-list-image img {
  height: 100%;

  object-fit: cover;
}

.info-list .info-list-body {
  flex: 1;
}

.info-list .info-list-title a {
  color: #333;
  line-height: 1.7;
}

.info-list .info-list-date {
  padding: 0;
  color: rgba(0, 160, 200, 1);
}


.sideArea .side-title {
  position: relative;
  margin-bottom: 1.25em;
  padding: 8px 0;
  color: rgba(0, 160, 200, 1);
  font-weight: 700;
  letter-spacing: 1px;;
}

.sideArea .side-title::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  border-bottom: 2px solid rgba(0, 160, 200, 1);
  content: "";;
}

.sideArea .cat-list {
  margin-bottom: 1.25em;
}

.sideArea .cat-list li {
  margin-bottom: 0.3em;
}

.sideArea .cat-list li a {
  display: block;
  position: relative;
  padding: 5px 0;
  padding-left: 20px;
  color: #333;
  text-decoration: none;
}

.sideArea .cat-list li a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  height: 6px;
  margin: auto;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  content: "";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.form-control, input[type="date"], input[type="email"], input[type="tel"], input[type="text"], input[type="time"], select, textarea {
  display: block;
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 3px;
  background-color: #fff;
  background-image: none;
  background-clip: padding-box;
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s;
}

.sideArea .select-wrap {
  margin-bottom: 2em;
}

.select-wrap select {
  position: relative;
  z-index: 1;
  padding-right: 10px;
  padding-left: 10px;
  background: 0 0;
}

.sideArea .recent-list {
  margin-bottom: 1.25em;
}

.sideArea .recent-list li {
  margin-bottom: 0.3em;
}

.sideArea .recent-list li a {
  display: block;
  position: relative;
  padding: 5px 0;
  color: #333;
  text-decoration: none;
}

.recent-list p {
  color: #333;
  line-height: 1.5;
}

.recent-list p.date {
  padding: 0.4em 0;
  color: rgba(0, 160, 200, 1);
}

.info-detail-title {
  color: #333;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.7;
  padding: 0 0 0.5em;
  border-bottom: 2px solid rgba(0, 160, 200, 1);
}

.info-detail-date {
  padding: 0.5em 0 1em;
  color: rgba(0, 160, 200, 1);
  text-align: right;
}

.info-detail-body p {
  margin: 0 0 2em;
}

@media screen and (max-width: 767px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    width: 100%;
  }

  .info-list {
    padding: 10px 0;
  }

  .info-list .info-list-image {
    max-width: 80px;
    width: 80px;
    padding-right: 10px;
  }

  .info-list .info-list-image a {
    display: block;
    width: 70px;
    height: 70px;
  }

  .info-list .info-list-title a {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
  }

  .info-list .info-list-date {
    padding: 0.25em 0;
    font-size: 14px;
    line-height: 1.5;
  }

  .sideArea .side-title {
    margin-bottom: 1em;
  }

  .sideArea .cat-list li a {
    font-size: 14px;
    line-height: 1.5;
  }

  .sideArea .recent-list li a {
    font-size: 14px;
    line-height: 1.5;
  }

  .info-detail-title {
    font-size: 18px;
    line-height: 1.7;
  }
}
