@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

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

/****************************************

          $breakpoint

@include maxs($breakpoint-sp) {}
/Volumes/Documents/komehyo_190410/sass/_mixins.scss
*****************************************/
/*============================
font
============================*/
/*============================
color
============================*/
/*============================
base
============================*/
* {
  box-sizing: border-box;
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
a:hover {
  opacity: 0.7;
}

.marker {
  background: linear-gradient(rgba(0, 0, 0, 0) 80%, #c9a063 40%);
  font-weight: 700;
}

.merit {
  border: solid 2px #493528;
  background-color: #ffcc00;
  padding: 10px;
  color: #493528;
  font-weight: 700;
  text-align: center;
  font-size: 20px;
}

/*============================
body
============================*/
body {
  font-family: 'Noto Sans JP',"Roboto","Yu Gothic","游ゴシック",YuGothic,"游ゴシック体","Source Sans Pro","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","メイリオ","Meiryo",sans-serif;
  font-weight: 400;
  font-feature-settings: "palt" 1;
  font-kerning: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.05em;
  background: url(../img/bg.jpg) center center fixed no-repeat;
  background-size: cover;
}

/*============================
#wrap
============================*/
div#wrap.wrap {
  position: relative;
}

/*============================
#header
============================*/
header#header.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background-color: #003f8b;
  z-index: 1000;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}
header#header.header .logo {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 197px;
  height: auto;
  z-index: 1;
}
header#header.header div.btn-hamburger-menu {
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  width: 48px;
  height: 48px;
  z-index: 3;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  header#header.header div.btn-hamburger-menu {
    width: 32px;
    height: 32px;
    right: 16px;
  }
}
header#header.header div.btn-hamburger-menu span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
header#header.header div.btn-hamburger-menu span.border1 {
  top: 25%;
}
header#header.header div.btn-hamburger-menu span.border2 {
  top: 50%;
}
header#header.header div.btn-hamburger-menu span.border3 {
  top: 75%;
}
header#header.header div.btn-hamburger-menu:hover {
  cursor: pointer;
}
header#header.header div.btn-hamburger-menu:hover span {
  opacity: 0.5;
}
header#header.header div.btn-hamburger-menu.close span {
  width: 80%;
}
header#header.header div.btn-hamburger-menu.close span.border1 {
  top: 50%;
  left: 10%;
  transform: rotate(45deg);
}
header#header.header div.btn-hamburger-menu.close span.border2 {
  opacity: 0;
}
header#header.header div.btn-hamburger-menu.close span.border3 {
  top: 50%;
  left: 10%;
  transform: rotate(-45deg);
}

/*============================
  ハンバーガーメニュー
　#hamburger-menu
============================*/
nav#hamburger-menu.hamburger-menu {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  visibility: hidden;
  background-color: #003f8b;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
nav#hamburger-menu.hamburger-menu ul.hamburger-nav {
  opacity: 0;
  transform: translate(0, 5%);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  padding: 20px 20px 60px;
}
@media screen and (max-width: 768px) {
  nav#hamburger-menu.hamburger-menu ul.hamburger-nav {
    overflow-y: auto;
  }
}
nav#hamburger-menu.hamburger-menu ul.hamburger-nav li {
  display: block;
  padding: 30px 0 0;
}
nav#hamburger-menu.hamburger-menu ul.hamburger-nav li a {
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 1;
  text-align: left;
  color: #fff;
}
nav#hamburger-menu.hamburger-menu ul.hamburger-nav li a::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: -25px;
  width: 15px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}
nav#hamburger-menu.hamburger-menu ul.hamburger-nav li a.sub {
  margin-left: 20px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  nav#hamburger-menu.hamburger-menu ul.hamburger-nav li a {
    font-size: 18px;
  }
}
nav#hamburger-menu.hamburger-menu.open {
  visibility: visible;
  opacity: 1;
}
nav#hamburger-menu.hamburger-menu.open ul.hamburger-nav {
  opacity: 1;
  transform: translate(0, 0);
  transition: all 1.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s;
}

/*============================
#cover
============================*/
section#cover.cover {
  position: relative;
  height: 768px;
  background-image: url(../img/bg-cover.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  section#cover.cover {
    height: 70vh;
    background-image: url(../img/bg-cover-sp.jpg);
  }
}
section#cover.cover h1.cover-ttl {
  position: absolute;
  top: 340px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: auto;
}
@media screen and (max-width: 768px) {
  section#cover.cover h1.cover-ttl {
    top: auto;
    bottom: 180px;
    width: 80%;
  }
}
section#cover.cover p.cover-read {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  font-size: 50px;
  font-weight: 700;
  line-height: 2;
  color: #fff;
  text-align: center;
  font-family: Hiragino Mincho ProN, Hiragino Mincho Pro, Yu Mincho, YuMincho, serif;
}
@media screen and (max-width: 768px) {
  section#cover.cover p.cover-read {
    bottom: 50px;
    font-size: 5.5vw;
    line-height: 2.2;
    padding: 1px 12px;
  }
}
section#cover.cover p.cover-read span {
  padding: 7px 12px;
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, #7484be 0%);
}

/*============================
section 共通パーツ
============================*/
section .inner {
  width: 980px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  position: relative;
}
@media screen and (max-width: 768px) {
  section .inner {
    width: 96%;
  }
}
section h2.sec-ttl {
  margin: 0 30px;
  padding: 25px 0;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #003f8b;
  text-align: center;
  font-family: Hiragino Mincho ProN, Hiragino Mincho Pro, Yu Mincho, YuMincho, serif;
}
section h2.sec-ttl .en {
  display: inline-block;
  font-size: 36px;
  transform: translateY(3px);
}
@media screen and (max-width: 768px) {
  section h2.sec-ttl {
    margin: 0 20px;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 400;
  }
  section h2.sec-ttl .en {
    font-size: 20px;
    transform: translateY(1px);
  }
}
section .frame_top::before {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100px;
  height: 100px;
  background: url(../img/frame.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  section .frame_top::before {
    top: 10px;
    left: 10px;
    width: 70px;
    height: 70px;
  }
}
section .frame_top::after {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  background: url(../img/frame.svg) no-repeat;
  background-size: contain;
  transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  section .frame_top::after {
    top: 10px;
    right: 10px;
    width: 70px;
    height: 70px;
  }
}
section#cover .frame_top::before, section#cover .frame_top::after, section#cover .frame_bottom::before, section#cover .frame_bottom::after {
  background: url(../img/cover_frame.svg) no-repeat;
}
section .frame_bottom::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 100px;
  height: 100px;
  background: url(../img/frame.svg) no-repeat;
  background-size: contain;
  transform: rotate(-90deg);
}
@media screen and (max-width: 768px) {
  section .frame_bottom::before {
    bottom: 10px;
    left: 10px;
    width: 70px;
    height: 70px;
  }
}
section .frame_bottom::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  background: url(../img/frame.svg) no-repeat;
  background-size: contain;
  transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
  section .frame_bottom::after {
    bottom: 10px;
    right: 10px;
    width: 70px;
    height: 70px;
  }
}

/*============================
#feature
============================*/
section#feature.feature {
  padding: 60px 0 0;
}
@media screen and (max-width: 768px) {
  section#feature.feature {
    padding: 20px 0;
  }
}
section#feature.feature .inner {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  section#feature.feature .inner {
    padding: 40px 0;
  }
}
section#feature.feature p.sec-read {
  margin: 30px 30px 0;
  font-size: 28px;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
  color: #392a22;
  text-shadow: 1px 2px 1px #ffffff;
  font-family: Hiragino Mincho ProN, Hiragino Mincho Pro, Yu Mincho, YuMincho, serif;
}
@media screen and (max-width: 768px) {
  section#feature.feature p.sec-read {
    margin: 15px 20px 0;
    font-size: 5vw;
    line-height: 1.6;
  }
}
section#feature.feature section.child-block.needs {
  margin: 30px 30px 0;
  padding: 30px 0;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  section#feature.feature section.child-block.needs {
    margin: 20px 20px 0;
    padding: 20px 0;
  }
}
section#feature.feature section.child-block.needs h3.child-ttl {
  margin: 0 30px;
  padding: 15px 0;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  font-family: Hiragino Mincho ProN, Hiragino Mincho Pro, Yu Mincho, YuMincho, serif;
  color: #003f8b;
  text-align: center;
  border: 2px solid #003f8b;
}
@media screen and (max-width: 768px) {
  section#feature.feature section.child-block.needs h3.child-ttl {
    margin: 0 20px;
    padding: 10px 0;
    font-size: 18px;
    border: 1px solid #003f8b;
  }
}
section#feature.feature section.child-block.needs ul.needs-list {
  counter-reset: section;
}
@media screen and (min-width: 768px) {
  section#feature.feature section.child-block.needs ul.needs-list {
    display: -webkit-flex;
    display: flex;
    margin: 0 15px;
  }
}
@media screen and (max-width: 768px) {
  section#feature.feature section.child-block.needs ul.needs-list {
    width: auto;
    margin: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  section#feature.feature section.child-block.needs ul.needs-list > li + li {
    margin: 20px 0 0;
  }
}
section#feature.feature section.child-block.needs ul.needs-list > li {
  position: relative;
  margin: 0;
  padding: 20px 0 0;
}
@media screen and (min-width: 768px) {
  section#feature.feature section.child-block.needs ul.needs-list > li {
    width: calc(33.3333% - 30px);
    margin: 0 15px;
    padding: 30px 0 0;
  }
}
@media screen and (max-width: 768px) {
  section#feature.feature section.child-block.needs ul.needs-list > li + li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 80%;
    height: 1px;
    background-color: #ccc;
    transform: translate(-50%, 0);
  }
}
section#feature.feature section.child-block.needs ul.needs-list > li::after {
  counter-increment: section;
  content: counter(section);
  position: absolute;
  top: 20px;
  left: 0;
  font-size: 4em;
  line-height: 1;
  font-weight: 700;
  color: #003f8b;
  font-family: Hiragino Mincho ProN, Hiragino Mincho Pro, Yu Mincho, YuMincho, serif;
}
@media screen and (max-width: 768px) {
  section#feature.feature section.child-block.needs ul.needs-list > li::after {
    top: 15px;
    font-size: 3em;
  }
}
section#feature.feature section.child-block.needs ul.needs-list > li h4.item-ttl {
  padding: 0 0 0 50px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: #003f8b;
  min-height: 50px;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  section#feature.feature section.child-block.needs ul.needs-list > li h4.item-ttl {
    padding: 0 0 0 40px;
    font-size: 16px;
    line-height: 1.3;
  }
}
section#feature.feature section.child-block.needs ul.needs-list > li p {
  margin: 15px 0 0;
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  section#feature.feature section.child-block.needs ul.needs-list > li p {
    font-size: 14px;
    line-height: 1.8;
  }
}
section#feature.feature section.plus {
  margin: 30px 0;
  position: relative;
  height: 48px;
}
section#feature.feature section.plus::before, section#feature.feature section.plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 48px;
  background-color: #003f8b;
  transform: translate(-50%, -50%) rotate(0);
}
section#feature.feature section.plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
section#feature.feature section.child-block.strength {
  margin: 30px 30px 0;
  padding: 30px 0;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  section#feature.feature section.child-block.strength {
    margin: 20px 20px 0;
    padding: 20px 0;
  }
}
section#feature.feature section.child-block.strength h3.child-ttl {
  margin: 0 30px;
  padding: 15px 0;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  font-family: Hiragino Mincho ProN, Hiragino Mincho Pro, Yu Mincho, YuMincho, serif;
  color: #003f8b;
  text-align: center;
  border: 2px solid #003f8b;
}
@media screen and (max-width: 768px) {
  section#feature.feature section.child-block.strength h3.child-ttl {
    margin: 0 20px;
    padding: 10px 0;
    font-size: 18px;
    border: 1px solid #003f8b;
  }
}
@media screen and (min-width: 768px) {
  section#feature.feature section.child-block.strength ul.strength-list {
    display: -webkit-flex;
    display: flex;
    margin: 0 15px;
  }
}
@media screen and (max-width: 768px) {
  section#feature.feature section.child-block.strength ul.strength-list {
    width: auto;
    margin: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  section#feature.feature section.child-block.strength ul.strength-list > li + li {
    border-top: 1px dashed #ccc;
    margin: 20px 0 0;
  }
}
section#feature.feature section.child-block.strength ul.strength-list > li {
  margin: 0;
  padding: 20px 0 0;
}
@media screen and (min-width: 768px) {
  section#feature.feature section.child-block.strength ul.strength-list > li {
    width: calc(33.3333% - 30px);
    margin: 0 15px;
  }
}
section#feature.feature section.child-block.strength ul.strength-list > li:nth-child(1) h4,
section#feature.feature section.child-block.strength ul.strength-list > li:nth-child(1) ul.item-list li:before {
  color: #c9a268;
}
section#feature.feature section.child-block.strength ul.strength-list > li:nth-child(2) h4,
section#feature.feature section.child-block.strength ul.strength-list > li:nth-child(2) ul.item-list li:before {
  color: #c47848;
}
section#feature.feature section.child-block.strength ul.strength-list > li:nth-child(3) h4,
section#feature.feature section.child-block.strength ul.strength-list > li:nth-child(3) ul.item-list li:before {
  color: #86989f;
}
section#feature.feature section.child-block.strength ul.strength-list > li h4.item-ttl {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  section#feature.feature section.child-block.strength ul.strength-list > li h4.item-ttl {
    font-size: 16px;
  }
}
section#feature.feature section.child-block.strength ul.strength-list > li ul.item-list > li {
  position: relative;
  margin: 5px 0 0;
  padding: 0 0 0 20px;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  section#feature.feature section.child-block.strength ul.strength-list > li ul.item-list > li {
    font-size: 14px;
  }
}
section#feature.feature section.child-block.strength ul.strength-list > li ul.item-list > li::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  line-height: 1.5;
}

/*============================
#service サービス
============================*/
section#service.service {
  padding: 60px 0 0;
}
@media screen and (max-width: 768px) {
  section#service.service {
    padding: 20px 0;
  }
}
section#service.service > .inner {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  section#service.service > .inner {
    padding: 40px 0;
  }
}
section#service.service .anker_nav {
  width: 900px;
  margin: 40px auto 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  section#service.service .anker_nav {
    width: 94%;
    flex-direction: column;
  }
}
section#service.service .anker_nav a {
  display: block;
  position: relative;
  width: 47%;
  padding: 10px 20px;
  box-sizing: border-box;
  color: #003f8b;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  border: solid 2px #003f8b;
  margin: 0px 5px 15px;
}
@media screen and (max-width: 768px) {
  section#service.service .anker_nav a {
    font-size: 13px;
    padding: 10px 1px;
    width: 90%;
  }
}
section#service.service .anker_nav a:hover {
  background-color: #7484be;
}
section#service.service .anker_nav a:before {
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  border-top: solid 2px #003f8b;
  border-right: solid 2px #003f8b;
  -webkit-transform: rotate(45deg);
  transform: rotate(135deg);
  top: 50%;
  left: 15px;
  margin-top: -3px;
}
section#service.service section.child-block {
  margin: 0 0 0;
  padding: 60px 0 0;
  z-index: -5;
}
@media screen and (max-width: 768px) {
  section#service.service section.child-block {
    margin: 0px 0 0;
    padding: 20px 0 20px;
  }
}
section#service.service section.child-block:nth-child(odd) {
  z-index: -5;
}
section#service.service section.child-block .inner {
  position: relative;
  width: 920px;
  overflow: hidden;
  padding-bottom: 20px;
  background-color: #FFF;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  section#service.service section.child-block .inner {
    width: 96%;
  }
}
section#service.service section.child-block.bg1 {
  background-image: url(../img/bg-service_1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
section#service.service section.child-block.bg2 {
  background-image: url(../img/bg-service_2.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
section#service.service section.child-block figure {
  position: relative;
  margin: 0 0px 0;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  section#service.service section.child-block figure {
    margin: 0 0 0;
  }
}
section#service.service section.child-block .service-header {
  position: relative;
  width: 640px;
  margin: -60px auto 0;
  padding: 45px 0 0;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  section#service.service section.child-block .service-header {
    width: calc(100% - 40px);
    margin: -30px 20px 0;
    padding: 20px 0 0;
  }
}
section#service.service section.child-block .service-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.2);
  z-index: -1;
}
section#service.service section.child-block h3.child-ttl {
  margin: 0 30px 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #493528;
  font-family: Hiragino Mincho ProN, Hiragino Mincho Pro, Yu Mincho, YuMincho, serif;
}
@media screen and (max-width: 768px) {
  section#service.service section.child-block h3.child-ttl {
    margin: 0 20px 0;
    font-size: 5vw;
  }
}
section#service.service section.child-block p {
  margin: 30px 30px 0;
  font-size: 16px;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  section#service.service section.child-block p {
    margin: 15px 20px 0;
    font-size: 14px;
    line-height: 1.8;
  }
}
section#service.service section.child-block p.height {
  line-height: 3;
}
section#service.service section.child-block div.flow {
  margin: 60px 30px 0;
  padding: 30px 0 0;
  background-color: #eeeff7;
}
@media screen and (max-width: 768px) {
  section#service.service section.child-block div.flow {
    margin: 20px 20px 0;
    padding: 20px 0 20px;
  }
}
section#service.service section.child-block div.flow h4 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #003f8b;
}
@media screen and (max-width: 768px) {
  section#service.service section.child-block div.flow h4 {
    font-size: 16px;
  }
}
section#service.service section.child-block div.flow ul.flow-list {
  counter-reset: section;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 15px 15px 30px;
}
@media screen and (max-width: 768px) {
  section#service.service section.child-block div.flow ul.flow-list {
    padding: 0 10px;
    margin: 10px 0 0;
  }
}
section#service.service section.child-block div.flow ul.flow-list li {
  position: relative;
  width: calc(25% - 30px);
  margin: 15px 15px 0;
  padding: 30px 0;
  background-color: #003f8b;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  section#service.service section.child-block div.flow ul.flow-list li {
    width: calc(25% - 20px);
    margin: 10px 10px 0;
    padding: 15px 0;
  }
}
section#service.service section.child-block div.flow ul.flow-list li::after {
  counter-increment: section;
  content: counter(section);
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  font-size: 18px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  color: #ffffff;
  border-radius: 50%;
  background-color: #7484bc;
  font-family: Hiragino Mincho ProN, Hiragino Mincho Pro, Yu Mincho, YuMincho, serif;
}
@media screen and (max-width: 768px) {
  section#service.service section.child-block div.flow ul.flow-list li::after {
    top: -5px;
    left: -5px;
    width: 20px;
    height: 20px;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
  }
}
section#service.service section.child-block div.flow ul.flow-list li + li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  transform: translate(0, -50%);
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-left-color: #7484bc;
}
@media screen and (max-width: 768px) {
  section#service.service section.child-block div.flow ul.flow-list li + li::before {
    left: -13px;
  }
}
section#service.service section.child-block div.flow ul.flow-list li h5 {
  text-align: center;
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
}
@media screen and (max-width: 768px) {
  section#service.service section.child-block div.flow ul.flow-list li h5 {
    font-size: 14px;
  }
}

/*============================
#voice 声
============================*/
div.voice {
  padding: 30px 0 60px;
}
@media screen and (max-width: 768px) {
  div.voice {
    padding: 20px 0 20px;
  }
}
div.voice h3.voice-ttl {
  width: 50%;
  margin: 30px auto 0;
  padding: 15px 0;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  background-color: #7484bc;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  div.voice h3.voice-ttl {
    width: 80%;
    margin: 20px auto 0;
    padding: 10px 0;
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  div.voice ul.performance-list {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 15px;
  }
  div.voice ul.performance-list + h3.voice-ttl {
    margin: 60px auto 0;
  }
}
@media screen and (max-width: 768px) {
  div.voice ul.performance-list {
    padding: 0 10px;
  }
  div.voice ul.performance-list + h3.voice-ttl {
    margin: 40px auto 0;
  }
}
div.voice ul.performance-list li {
  position: relative;
  margin: 20px 10px 0;
  padding: 20px 20px 20px;
  background-color: #eeeff7;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  div.voice ul.performance-list li {
    width: calc(50% - 30px);
    margin: 30px 15px 0;
  }
}
div.voice ul.performance-list li::before {
  content: "";
  position: absolute;
  bottom: -30px;
  right: 40px;
  transform: translate(0, -50%);
  width: 0;
  height: 0;
  border: 15px solid transparent;
  border-right: 15px solid #eeeff7;
}
div.voice ul.performance-list li h3 {
  font-size: 20px;
  font-weight: 700;
  color: #003f8b;
}
@media screen and (max-width: 768px) {
  div.voice ul.performance-list li h3 {
    font-size: 16px;
  }
}
div.voice ul.performance-list li p {
  text-align: left !important;
  margin: 10px 0 0 !important;
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  div.voice ul.performance-list li p {
    font-size: 14px;
    line-height: 1.5;
  }
}

/*============================
#performance 実績
============================*/
section#performance.performance {
  padding: 60px 0 0;
}
@media screen and (max-width: 768px) {
  section#performance.performance {
    padding: 20px 0;
  }
}
section#performance.performance .inner {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  section#performance.performance .inner {
    padding: 40px 0;
  }
}
section#performance.performance ul.performance-list {
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  section#performance.performance ul.performance-list {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 15px;
  }
}
section#performance.performance ul.performance-list li {
  margin: 20px 10px 0;
  padding: 20px 20px 20px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  section#performance.performance ul.performance-list li {
    width: calc(50% - 30px);
    margin: 30px 15px 0;
  }
}
section#performance.performance ul.performance-list li h3 {
  font-size: 20px;
  font-weight: 700;
  color: #493528;
  text-align: center;
}
@media screen and (max-width: 768px) {
  section#performance.performance ul.performance-list li h3 {
    font-size: 16px;
  }
}
section#performance.performance ul.performance-list li p {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  section#performance.performance ul.performance-list li p {
    font-size: 14px;
    line-height: 1.5;
  }
}

/*============================
#voice 声
============================*/
section#voice.voice {
  background-color: #c3a885;
  padding: 60px 0 60px;
}
@media screen and (max-width: 768px) {
  section#voice.voice {
    padding: 20px 0 20px;
  }
}
section#voice.voice h3.voice-ttl {
  width: 50%;
  margin: 30px auto 0;
  padding: 15px 0;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  background-color: #493528;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  section#voice.voice h3.voice-ttl {
    width: 80%;
    margin: 20px auto 0;
    padding: 10px 0;
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  section#voice.voice ul.performance-list {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 15px;
  }
  section#voice.voice ul.performance-list + h3.voice-ttl {
    margin: 60px auto 0;
  }
}
@media screen and (max-width: 768px) {
  section#voice.voice ul.performance-list {
    padding: 0 10px;
  }
  section#voice.voice ul.performance-list + h3.voice-ttl {
    margin: 40px auto 0;
  }
}
section#voice.voice ul.performance-list li {
  position: relative;
  margin: 20px 10px 0;
  padding: 20px 20px 20px;
  background-color: #fff;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  section#voice.voice ul.performance-list li {
    width: calc(50% - 30px);
    margin: 30px 15px 0;
  }
}
section#voice.voice ul.performance-list li::before {
  content: "";
  position: absolute;
  bottom: -30px;
  right: 40px;
  transform: translate(0, -50%);
  width: 0;
  height: 0;
  border: 15px solid transparent;
  border-right: 15px solid #fff;
}
section#voice.voice ul.performance-list li h3 {
  font-size: 20px;
  font-weight: 700;
  color: #493528;
}
@media screen and (max-width: 768px) {
  section#voice.voice ul.performance-list li h3 {
    font-size: 16px;
  }
}
section#voice.voice ul.performance-list li p {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  section#voice.voice ul.performance-list li p {
    font-size: 14px;
    line-height: 1.5;
  }
}

/*============================
#compliance
============================*/
section#compliance.compliance {
  padding: 60px 0 0;
}
@media screen and (max-width: 768px) {
  section#compliance.compliance {
    padding: 20px 0 20px;
  }
}
section#compliance.compliance .inner {
  padding: 60px 0 0;
}
@media screen and (max-width: 768px) {
  section#compliance.compliance .inner {
    padding: 40px 0;
  }
}
@media screen and (min-width: 768px) {
  section#compliance.compliance div.man-list {
    width: 980px;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    margin: 0 15px;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  section#compliance.compliance div.man-list {
    width: 100%;
  }
}
section#compliance.compliance div.man-block {
  padding: 20px 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  section#compliance.compliance div.man-block {
    width: calc(50% - 30px);
    margin: 0px 15px 30px;
  }
}
@media screen and (max-width: 768px) {
  section#compliance.compliance div.man-block {
    width: calc(100% - 40px);
    margin: 20px 20px 0;
    padding: 0 30px 20px;
  }
  section#compliance.compliance div.man-block + .man-block {
    border-top: 1px dashed #ccc;
    margin: 0 20px 0;
    padding: 20px 0 20px;
  }
}
section#compliance.compliance div.man-block figure.col {
  width: 50%;
}
section#compliance.compliance div.man-block h3 {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  width: 50%;
  padding: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
section#compliance.compliance div.man-block p {
  width: 100%;
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.8;
}

/*============================
#contact
============================*/
section#contact.contact {
  padding: 60px 0 60px;
}
@media screen and (max-width: 768px) {
  section#contact.contact {
    padding: 20px 0;
  }
}
section#contact.contact h2.sec-ttl {
  margin-bottom: 30px;
}
section#contact.contact div.contact-dl-block {
  margin: 30px 30px 0;
}
@media screen and (max-width: 768px) {
  section#contact.contact div.contact-dl-block {
    margin: 20px 20px 0;
  }
}
section#contact.contact div.contact-dl-block dl dt {
  padding: 15px;
  font-size: 16px;
  background-color: #eeeff7;
}
@media screen and (max-width: 768px) {
  section#contact.contact div.contact-dl-block dl dt {
    font-size: 14px;
  }
}
section#contact.contact div.contact-dl-block dl dd {
  padding: 15px;
  background-color: #fff;
}

section#contact2.contact {
  padding: 60px 0 60px;
}
@media screen and (max-width: 768px) {
  section#contact2.contact {
    padding: 20px 0;
  }
}
section#contact2.contact h2.sec-ttl {
  margin-bottom: 30px;
}
section#contact2.contact div.contact-dl-block {
  margin: 30px 30px 0;
}
@media screen and (max-width: 768px) {
  section#contact2.contact div.contact-dl-block {
    margin: 20px 20px 0;
  }
}
section#contact2.contact div.contact-dl-block dl dt {
  padding: 15px;
  font-size: 16px;
  background-color: #eeeff7;
}
@media screen and (max-width: 768px) {
  section#contact2.contact div.contact-dl-block dl dt {
    font-size: 14px;
  }
}
section#contact2.contact div.contact-dl-block dl dd {
  padding: 15px;
  background-color: #fff;
}

section#contact.contact, section#contact2.contact {
  padding: 100px 0 60px;
}
@media screen and (max-width: 768px) {
  section#contact.contact, section#contact2.contact {
    padding: 50px 0;
  }
}
section#contact.contact h2.sec-ttl, section#contact2.contact h2.sec-ttl {
  margin-bottom: 30px;
}
section#contact.contact .inner, section#contact2.contact .inner {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  section#contact.contact .inner, section#contact2.contact .inner {
    padding: 40px 0;
  }
}
section#contact.contact .center, section#contact2.contact .center {
  text-align: center;
  font-weight: 600;
  padding: 60px 0;
}
section#contact.contact p, section#contact2.contact p {
  text-align: center;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 20px;
}
section#contact.contact p strong, section#contact2.contact p strong {
  font-size: 18px;
  font-weight: 600;
}
section#contact.contact div.contact-dl-block, section#contact2.contact div.contact-dl-block {
  margin: 30px 30px 0;
}
@media screen and (max-width: 768px) {
  section#contact.contact div.contact-dl-block, section#contact2.contact div.contact-dl-block {
    margin: 20px 20px 0;
  }
}
section#contact.contact div.contact-dl-block dl dt, section#contact2.contact div.contact-dl-block dl dt {
  padding: 15px;
  font-size: 16px;
  background-color: #f5f5f5;
}
@media screen and (max-width: 768px) {
  section#contact.contact div.contact-dl-block dl dt, section#contact2.contact div.contact-dl-block dl dt {
    font-size: 14px;
  }
}
section#contact.contact div.contact-dl-block dl dd, section#contact2.contact div.contact-dl-block dl dd {
  padding: 15px;
  background-color: #fff;
}
section#contact.contact .arrow_r_b, section#contact2.contact .arrow_r_b {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  color: #003f8b;
  text-decoration: none;
}
section#contact.contact .arrow_r_b:before, section#contact2.contact .arrow_r_b:before {
  content: '';
  width: 18px;
  height: 18px;
  background: #003f8b;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -3px;
  margin-top: -9px;
}
section#contact.contact .arrow_r_b:after, section#contact2.contact .arrow_r_b:after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -4px;
  transform: rotate(45deg);
}

.btn-block input.fsSubmitButton {
  width: 216px;
  height: 52px;
  background-color: #EF9816;
  font-size: 16px;
  color: #fff;
  border: none;
  margin: 20px auto;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  -webkit-appearance: none;
}

.btn-block_2 .fsSubmitButton2 {
  width: 300px;
  line-height: 1.7;
  font-weight: 600;
  display: block;
  padding: 10px 20px;
  background-color: #EF9816;
  font-size: 16px;
  color: #fff;
  border: none;
  margin: 20px auto;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  -webkit-appearance: none;
}
@media screen and (max-width: 768px) {
  .btn-block_2 .fsSubmitButton2 br {
    display: none;
  }
}

/*============================
#footer
============================*/
footer#footer.footer {
  padding: 30px 0;
  background-color: #707275;
}
footer#footer.footer div.logo {
  display: block;
  width: 197px;
  height: auto;
  margin: 0 auto;
}
footer#footer.footer p.copyright {
  margin: 30px 0 0;
  color: #fff;
  text-align: center;
  font-size: 12px;
}

/*====================================================================
form
====================================================================*/
div.form input,
div.form button,
div.form textarea,
div.form select {
  font-family: inherit;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
div.form input,
div.form textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #eee;
  background-color: #fff;
}
div.form .mw_wp_form .error {
  margin: 5px 0 0;
  font-size: 12px;
  color: #B70000;
  display: block;
}
div.form dl dt span {
  display: inline-block;
  margin: 0 5px;
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 10px;
  color: #fff;
  font-weight: 700;
  background-color: #B70000;
}
div.form .mw_wp_form_preview dd {
  width: 100%;
  margin: 10px 0 0;
  padding: 20px;
  font-size: 14px;
  background-color: #fff;
}
div.form .mw_wp_form_preview dd::after {
  content: " ";
}
div.form p.note {
  text-align: center;
  font-size: 14px;
  margin: 20px 0 0;
}
div.form div.btn-block {
  text-align: center;
}
div.form div.btn-block .submit,
div.form div.btn-block .back {
  display: inline-block;
  width: 33.3333%;
  margin: 20px 10px 0;
  padding: 15px;
  font-size: 14px;
  color: #fff;
  background-color: #1e3048;
  border: 1px solid #1e3048;
  transition: liner,.5s;
}
div.form div.btn-block .back {
  color: #1e3048;
  background-color: #fff;
  border: 1px solid #1e3048;
  transition: liner,.5s;
}
div.form div.btn-block .submit:hover,
div.form div.btn-block .back:hover {
  cursor: pointer;
  color: #fff;
  background-color: #8b7a36;
  border: 1px solid #8b7a36;
}

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