@charset "UTF-8";

/* ----------------------------------------------------------------------
 reset css
---------------------------------------------------------------------- */
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:not(.tinymce-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;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

html * {
        box-sizing: border-box;
    }
ul, ol {
  list-style: none;
}

body {
        -webkit-text-size-adjust: 100%;
        font-size: 1.6rem;
        font-family: "Noto Sans JP", sans-serif;
        font-weight: 400;
        font-style: normal;
        color: #222;
        line-height: 1.7;
        letter-spacing: 1px;
        background-color: #f8f8f8;
    }
img {
        display: block;
        height: auto;
        max-width: 100%;
    }

a,
a:before,
a:after,
input {
  -webkit-transition-property: background-color, color;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease;
  -moz-transition-property: background-color, color;
  -moz-transition-duration: 0.2s;
  -moz-transition-timing-function: ease;
  -o-transition-property: background-color, color;
  -o-transition-duration: 0.2s;
  -o-transition-timing-function: ease;
  transition-property: background-color, color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
a:hover {
  text-decoration: none;
  color: #ccc;
  animation-delay: 0.2s;
}
h1 {
  font-size: 3.6rem;
  font-family: "Shippori Mincho", serif;
}
h2 {
  font-size: 2.2rem;
  font-family: "Shippori Mincho", serif;
}
h3 {
   font-size: 2.4rem;
}
h4 {
  font-size: 1.8rem;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}
.wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.delay02 {
  animation-delay: 0.2s;
}
.delay04 {
  animation-delay: 0.4s;
}
.delay06 {
  animation-delay: 0.6s;
}
.delay08 {
  animation-delay: 0.8s;
}
.delay10 {
  animation-delay: 1s;
}
.delay12 {
  animation-delay: 1.2s;
}
a.anchor{
    display: block;
    padding-top: 70px;
    margin-top: -70px;
}
/*==================================================
　5-2-4 MENUがCLOSEに
===================================*/

.openbtn{
  position: relative;
  background:#B72A24;
  cursor: pointer;
    width: 50px;
    height:50px;
  border-radius: 5px;
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 5px;
  background: #fff;
    width: 45%;
  }


.openbtn span:nth-of-type(1) {
  top:13px; 
}

.openbtn span:nth-of-type(2) {
  top:19px;
}

.openbtn span:nth-of-type(3) {
  top:25px;
}

.openbtn span:nth-of-type(3)::after {
  content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
  position: absolute;
  top:6px;
      left: 0px;
    color: #fff;
    font-size: 0.8rem;
  text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

.openbtn.active span:nth-of-type(1) {
    top: 14px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(3)::after {
  content:"Close";/*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
  top:5px;
  left:4px;
}

.animate__delay-03s {
 animation-delay: calc(var(--animate-delay) * 0.3);
}
.animate__delay-05s {
 animation-delay: calc(var(--animate-delay) * 0.5);
}
.animate__delay-08s {
 animation-delay: calc(var(--animate-delay) * 0.8);
}
.animate__delay-13s {
 animation-delay: calc(var(--animate-delay) * 1.3);
}
.animate__delay-16s {
 animation-delay: calc(var(--animate-delay) * 1.6);
}
* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
.tb { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 590px) {
.pc { display: none !important; }
.tb { display: none !important; }
.sp { display: block !important; }
}
@media screen and (min-width:591px) and (max-width:920px){
.pc { display: none !important; }
.tb { display: block !important; }
.sp { display: none !important; }
}
.wrapper {
  overflow: hidden;
}

/*========= 上部固定させるためのCSS ===============*/

nav{
  position: fixed;/*fixedを設定して固定*/
  height: 70px;/*高さ指定*/
  width:100%;/*横幅指定*/
 z-index: 999;/*最前面へ*/
 background-color: #fff;
}

/*==ふわっと出現させるためのCSS*/
/*　上に上がる動き　*/

#nav.UpMove{
  position: fixed;
  width:100%;
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 0;
  transform: translateY(-100px);
  }
}

/*　下に下がる動き　*/

#nav.DownMove{
  position: fixed;
  width:100%;
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}
#top header {
  height: 500px;
  background-color: #b72a24;
}

#top header h1 {
  color: #fff;
  font-size: 4rem;
  font-family: "Shippori Mincho", serif;
  position: absolute;
  top:100px;
  left: 10%;
  margin-bottom: 100px;
}
#header nav.navbar {
  background-color: #fff;
  font-size: 1.6rem;
}
.navbar {
  position: fixed;
}
nav .navbar-brand img {
  width: 250px;
}

#top header .fv-area {
  height: 500px;
}
#top header .fv01 {
  height: 40%;
   position: relative;
   margin-top: 70px;
}
#top header .fv02 {
  height: 60%;
}
#top header .fv01 h1 {
  color: #fff;
  font-size: 4rem;
  font-family: "Shippori Mincho", serif;
  font-weight:400;
  line-height: 1.7;
  margin-bottom: 100px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#top header .fv02 img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    object-position: left top;
}
.cont01 h2,
.cont02 h2 {
  text-align: center;
  font-size: 3rem;
  font-family: "Shippori Mincho", serif;
  margin-bottom: 10px;
}
.cont01 {
  padding-top: 70px;
  padding-bottom: 20px;
}
.cont01 .btn-area {
  margin-bottom: 0;
}
.cont02 {
  padding-top: 30px;
  padding-bottom: 70px;
}
.h2-en {
  margin-bottom: 30px;
  font-size: 1.3rem;
  color: #B72A24;
  text-align: center;
}
.cont01-txt {
  line-height: 1.8;
  margin: 30px auto;
  width: 70%;
}
.serv-column {
  padding-left: 5%;
  padding-right: 5%;
}
.serv-cont {
  width: 24%;
  margin: 0 8px;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  height: auto;
}
.service-cont img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.serv-cont h3 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 30px;
}
.serv-cont-line {
    height: 2px;
    width: 30px;
    background-color: #b72a24;
    margin: 15px auto;
}

/* ボタン共通設定 */
.btn06 {
    position: relative;
    text-decoration: none;
    display: inline-block;
    background: #fff;
    color: #333;
    padding: 25px 30% 25px 30%;
    border: 1px solid #707070;
    border-radius: 10px;
    text-align: center;
    outline: none;
    transition: ease .2s;
}
.btn06:hover{
  background:#FFFADE;
  color: #B72A24;
}

/* 矢印が右に移動 */
.btnarrow1::after {
    content: '';
    position: absolute;
    top: 40%;
    right: 13px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #B72A24;
    border-right: 2px solid #B72A24;
    transform: rotate(45deg);
    transition: all .3s;
}
.btnarrow1:hover::after{
    right: 11px;
}
.btn-area {
  text-align: right;
  margin-top: 40px;
  margin-bottom: 50px;
}
.cont02 .serv-cont img {
  margin: 20px auto;
  width: 115px;
}
.contact-column {
  padding-left: 5%;
  padding-right: 5%;
  margin-bottom: 100px;
}
.contact-cont {
  padding: 30px;
  border: 1px solid #c7c7c7;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
}
.contact01 {
  position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.contact02,
.contact03 {
  border: 1px solid #B72A24;
  border-radius: 10px;
  background-color: #efefef;
  padding: 20px 30px;
  text-align: center;
  height: 100%;
}
.contact02 h3,
.contact03 h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.phone-num {
      font-size: 2.6rem;
    margin-top: 20px;
    font-weight: 600;
}
.contact02 img,
.contact03 img {
  margin: 0 auto;
  width: 100px;
}
footer {
  margin-top: auto;
}
.footer-cont {
  background-color: #B72A24;
  color: #fff;
  padding: 50px 5%;
}
footer .address {
  margin-top: 20px;
  margin-bottom: 20px;
}
.footer-c {
  padding-top: 100px;
}
.footer-c li,
.footer-r li  {
  margin-bottom: 25px;
} 
footer a {
  color: #fff;
}
.copy {
  text-align: center;
  font-size: 1.1rem;
  background-color: #901E19;
  padding: 5px;
  color: #fff;
}

.f-line img {
    width: 100px;
    margin-left: auto;
}

.footer-r .pri {
  text-align: center;
    margin-left: 19%;
}
.logo-bk-area {
    background: url(../img/logo-bk-w.png) no-repeat;
    background-position: -354px 500px;
}
nav .btn06 {
    padding: 10px 10px;
    width: 153px;
    margin-left: 20px;
    font-size: 1.4rem;
    border-radius: 5px;
  }
nav a {
  color: #222;
}
.navbar-expand-lg .navbar-nav {
        align-items: center;
    }
.fv-area02 h1 {
 color: #fff;
  font-size: 4rem;
  font-family: "Shippori Mincho", serif;
  font-weight:400;
  padding-top: 53px;
  padding-left: 5%;
}
.fv-area02 {
  margin-top: 70px;
}
.fv-area02 .h1-en {
    color: #fff;
    font-size: 1.3rem;
    padding-left: 5.5%;
    padding-top: 5px;
}
#service header {
  height: 257px;
  background-color: #B72A24;
}
.se-cont01 {
  margin-top: 40px;
  margin-bottom: 50px;
}
.serv {
  border: 1px solid #c7c7c7;
  padding: 40px 30px;
  background-color: #fff;
  border-radius: 5px;
  margin-bottom: 40px;
}
.serv p {
  padding-right: 30px;
}
.serv h2 {
  text-align: center;
   font-family: "Noto Sans JP", sans-serif;
   font-weight: 600;
}
.serv ul {
  margin-top: 20px;
}
.syoku {
  font-size: 1.3rem;
  color: #B72A24;
  margin-bottom: 10px;
}
.pr-cont01 h2 {
  margin-bottom: 50px;
}
.pro-comment {
  line-height: 2.2;
}
.prof-l {
  padding-right: 10%;
}
.pr-cont01 {
  margin-top: 50px;
  margin-bottom: 50px;
}
.pr-cont01 h2 {
  font-size: 3rem;
}
.pr-cont02 {
  border: 1px solid #d6d6d6;
  padding: 50px 70px;
  background-color: #fff;
  margin-bottom: 50px;
}
.pr-cont02 h2 {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
.pr-cont02 ul {
  display: flex;
}
.pr-cont02 .year {
  padding-right: 30px;
}
.pr-cont02 .year02 {
  width: 223px;
}
.pr-cont02 table {
  margin-top: 60px;
  margin-bottom: 0;
}
.pr-cont02 .table td,
.pr-cont02 .table th {
    padding: 2rem;
  }
.pr-cont02 .table th {
  font-weight: 500;
}
.pr-cont02 table li {
  margin-bottom: 10px;
}
.co-cont01 th {
  color:#B72A24;
  padding: 2rem;
  width: 25%;
  font-weight: 500;
}
.co-cont01 td {
  padding: 2rem;
}
.co-cont01 table {
  width: 90%;
  margin: 50px auto;
}
.co-cont02 {
  border: 1px solid #D6D6D6;
  padding: 50px 30px;
  background-color: #fff;
  margin-bottom: 50px;
}
.co-cont02 h2 {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
.access {
  margin-top: 40px;
  margin-bottom: 40px;
}
.co-cont02 h3 {
  color: #B72A24;
  margin-bottom: 10px;
}
.co-cont02 .acc {
  margin-left: 10px;
  margin-bottom: 30px;
}
.access h3 {
  font-size: 1.6rem;
}
.contact-cont .contact01 h2 {
  font-size: 3rem;
  text-align: center;
}
.contact-cont .contact01 .h2-en {
  font-size: 1.3rem;
  margin-top: 10px;
}
.contact-cont a {
  color: #000;
}
.pr-cont02 td {
  line-height: 2.2;
}
.cont01 .btn-area {
    text-align: right;
    margin-top: 40px;
    margin-bottom: 0;
    width: 25%;
    margin-left: auto;
}
.line-btn {
  margin: 0 20px;
}
.foot-contact {
  text-align: right;
}
.cont01 .serv-cont img {
    width: 100%;
    height: 125px;
    object-fit: cover;
}
.breadcrumbs {
  font-size: 1.2rem;
  padding: 20px 20px 0;
}
/*メールフォーム*/
.mw_wp_form {
  width: 100%;
  color: #333;
}
input {
    border: 1px solid #ccc;
    margin: 0;
    padding: 20px;
    color: #222;
}

.mw_wp_form table.mailform-tbl {
width: 80%;
    margin: 0 auto;
}

.mw_wp_form table tr {
  width: 100%;
  border-bottom: 1px dotted #ccc;
  padding: 30px 0;
  font-weight: normal;
}

.mw_wp_form table tr:first-child {
  border-top: 1px dotted #ccc;
}

.mw_wp_form table th {
  padding: 20px 0;
  text-align: left;
  vertical-align: top;
  font-weight: normal;
  width: 30%;
  float: left;
}

.mw_wp_form table th .attention,
.mw_wp_form table td .attention,
.mw_wp_form .attention {
  font-size: 80%;
  margin-left: 10px;
  color: red;
  padding: 3px;
}
.atten {
  font-size: 1.4rem;
  margin-bottom: 20px;
  text-align: right;
}

.mw_wp_form table td {
  padding: 20px 0;
  width: 70%;
  float: left;
}
.mw_wp_form table td.att{
    width: 100%;
    font-size: 14px;
    line-height: 1.7;
}

.mw_wp_form table td.w50 input, .mw_wp_form table td.w50 select {
  width: 50%;
  box-sizing: border-box;
}

.mw_wp_form table td.w80 input, .mw_wp_form table td.w80 select {
  width: 80%;
  box-sizing: border-box;
}

.mw_wp_form table td.w80 textarea {
  width: 80%;
  box-sizing: border-box;
}

.mw_wp_form #submit-button {
  text-align: center;
}

.mw_wp_form #submit-button input {
    margin: 30px;
    display: inline-block;
    padding: 10px 50px;
    border: 1px solid #B72A24;
    background: #B72A24;
    color: #fff;
    box-sizing: border-box;
    height: 60px;
    -webkit-appearance: none;
    border-radius: 5px;
    font-size: 100%;
}

.mw_wp_form #submit-button input[name="submitBack"] {
  margin: 1em;
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid #999;
  background: #999;
  color: white;
  box-sizing: border-box;
  height: 40px;
  -webkit-appearance: none;
  border-radius: 5px;
  font-size: 90%;
}

.mw_wp_form .form_step {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0 40px 0;
  list-style: none;
}

.mw_wp_form .form_step>li {
  display: block;
  position: relative;
  padding: 0.5em;
  width: 22%;
  border: 1px solid currentColor;
  color: #B72A24;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 0;
}
.mw_wp_form textarea {
  padding: 10px;
}
.mw_wp_form .form_step>li:nth-of-type(n + 2) {
  margin: 0px 0px 0px 4%;
}

.mw_wp_form .form_step>li:nth-of-type(n + 2):before {
  position: absolute;
  top: 50%;
  left: -1.5em;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #B72A24;
  border-left: 2px solid #B72A24;
  transform: translateY(-50%) rotate(135deg);
  content: "";
}

.mw_wp_form_input .form_step>li:nth-of-type(1), .mw_wp_form_preview .form_step>li:nth-of-type(2), .mw_wp_form_complete .form_step>li:nth-of-type(3) {
  background-color: #B72A24;
  color: #fff;
}


@media screen and (max-width: 768px) {
  .mw_wp_form .form_step>li {
    font-size: 10px;
    width: 100%;
  }
  .mw_wp_form table td {
    width: 100%;
    float: right;
  }
  .mw_wp_form table td.w50 input, .mw_wp_form table td.w50 select {
    width: 100%;
    box-sizing: border-box;
  }
  .mw_wp_form table td.w80 input, .mw_wp_form table td.w80 select {
    width: 100%;
    box-sizing: border-box;
  }
  .mw_wp_form table td.w80 textarea {
    max-width: 100%;
    box-sizing: border-box;
  }
  .mailform-tbl textarea {
    width: 100%;
    padding: 20px;
  }
  .mw_wp_form table.mailform-tbl {
    width: 85%;
  }
  .mw_wp_form table.mailform-tbl td.w-70 span.mwform-radio-field {
    width: 100%;
  }
  .mw_wp_form table th{
    width: 100%;
  }
  .mw_wp_form textarea {
    border-top: 1px solid #999;
  }
}
.thanks-body .link {
  margin-bottom: 70px;
  margin-top: 70px;
}
.pri-cont01 h2 {
  font-size: 2.2rem;
  font-family: "Shippori Mincho", serif;
  margin-top: 50px;
  margin-bottom: 20px;
}
.pri-cont01 li {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 7px;
}
.pri-cont01 {
  margin-bottom: 50px;
}
.pri-cont01 ul {
  margin-top: 10px;
}
.breadcrumbs a {
  color: #999;
}
.breadcrumbs a:hover {
  color: #B72A24;
}
.navbar-nav a:hover {
  color: #B72A24;
}






























/* タブレット */
@media only screen and (min-width: 767px) and (max-width: 991px) {
    .navbar-nav {
        margin-left: auto;
        align-items: initial;
    }

.nav-justified .nav-item {
        text-align: center;
        width: 100%;
    }
.navbar-nav li {
    margin-right: 0;
    position: relative;
    padding: 10px 20px;
}
.line-btn img {
  margin: 0 auto;
  width: 125px;
}
.navbar-collapse {
        background-color: #fff;
        margin-top: 10px;
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.2);
    }
.navbar-collapse .child_menu_button {
        display: block;
        position: absolute;
        text-align: center;
        width: 60px;
        height: 39px;
        right: 0px;
        top: 1px;
        z-index: 5;
        cursor: pointer;
    }
.navbar-collapse .child_menu_button .icon:before {
        content: '';
        background: url(../img/angle-right-solid.svg);
        background-size: contain;
        text-align: center;
        display: block;
        width: 16px;
        height: 22px;
        line-height: 20px;
        position: absolute;
        left: 20px;
        top: 10px;
        -webkit-transition: transform 0.5s ease;
        -moz-transition: transform 0.5s ease;
        -ms-transition: transform 0.5s ease;
        -o-transition: transform 0.5s ease;
        transition: transform 0.5s ease;
    }
.contact-bt {
    border: none;
    padding: 0;
}
.nav-link
 {
    color: #333;
}

.co-cont01 table {
    width: 100%;
  }
.serv-cont {
    width: 100%;
    margin-bottom: 30px;
    padding: 20px;
}
.cont01 .serv-cont img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.cont01-txt {
    width: 90%;
  }

.cont01 .btn-area {
    width: 40%;
    margin-top: 10px;
  }
.contact01 {
    transform: unset;
}
.contact02, .contact03 {
    margin-bottom: 30px;
}
footer .btn06 {
    padding: 25px 40px 25px 25px;
  }
.footer-c {
    padding-top: 76px;
}
.se-cont-l {
  margin-bottom: 30px;
}
.serv img {
      height: 250px;
    width: 100%;
    object-fit: cover;
}
.pr-cont02 {
    border: 1px solid #d6d6d6;
    padding: 50px 30px;
  }






























}



/* スマホ */
@media screen and (max-width: 590px) {
.navbar {
        padding: 0;
    }
.navbar-brand {
  padding: 10px;
}
.navbar-toggler {
  padding: 10px;
}
.navbar-collapse {
    background-color: #fff;
    margin-top: -1px;
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.2);
    }
nav a {
    color: #333;
}
.navbar-nav {
    margin-left: auto;
    align-items: initial;
  }
.navbar-nav li {
    padding: 20px 30px;
    border-bottom: 1px solid #ccc;
    width: 100%;
  }
.navbar-nav li:last-child {
  border-bottom: none;
}
header h1 {
    top: 150px;
    left: 37%;
}
#top header .fv01 h1 {
    font-size: 3rem;
  }
#top header .fv02 {
    height: 27%;
}
#top header {
    height: 355px;
    background-color: #b72a24;
}
.cont01-txt {
    line-height: 1.8;
    margin: 30px auto;
    width: 88%;
}

.serv-cont {
    width: 100%;
    margin: 0;
    padding: 10px;
    margin-bottom: 20px;
}
.cont01 .serv-cont img {
    height: 190px;
  }
.cont01 .btn-area {
    text-align: center;
    width: 100%;
    margin: 10px auto;
  }
.contact-cont {
   padding: 30px 10px 0;
  }
.contact01 {
    position: relative;
    top: 30px;
    transform: none;
    padding-bottom: 20px;
}
.contact02, .contact03 {
  margin-bottom: 30px;
}
.footer-c {
    padding-top: 20px;
    margin-top: 30px;
}
.footer-c li {
    border-top: 1px solid #efefef;
    padding-top: 20px;
}
.footer-c ul {
  border-bottom: 1px solid #efefef;
}
.footer-r {
  padding-top: 30px;
}
.footer-r .pri {
    text-align: center;
    margin-left: 0;
}
.foot-contact {
    text-align: center;
}

.logo-bk-area {
    background: url(../img/logo-bk-w.png) no-repeat;
    background-position: -304px 59%;
    background-size: 200%;
}
.cont02 {
  padding-bottom: 50px;
}
main {
    margin-bottom: 50px;
}
.fv-area02 h1 {
    font-size: 3rem;
    padding-top: 62px;
}
    .serv p {
        padding-right: 0;
        margin-top: 20px;
    }
.se-cont01 .col-md-7,
.se-cont01 .col-md-5 {
  padding-left: 0;
  padding-right: 0;
}
.serv {
    border: 1px solid #c7c7c7;
    padding: 30px 15px;
  }
.serv ul {
    margin-top: 10px;
    margin-bottom: 20px;
}
.prof-l {
    padding-right: 0;
    margin-bottom: 20px;
}
.pr-cont01 h2 {
    margin-bottom: 40px;
}

    .pr-cont02 {
        padding: 50px 15px 30px;
  }
.pr-cont02 .table td, .pr-cont02 .table th {
    padding: 2rem;
    display: block;
}
.pr-cont02 .table th {
    font-weight: 500;
    background-color: #efefef;
    padding: 15px 10px;
}
.pr-cont02 table {
    margin-top: 50px;
  }
.pr-cont02 ul {
    display: block;
}
.pr-cont02 ul {
    display: block;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}
.pr-cont02 {
  margin-bottom: 50px;
}
.co-cont01 .table td, .table th {
  display: block;
}
.co-cont01 th {
    padding: 2rem;
    width: 100%;
    padding-left: 1rem;
}
.co-cont02 {
    padding: 50px 15px;
  }
.co-cont01 table {
    width: 100%;
  }
.nav-item img {
          margin: 0 auto;
        width: 40%;
    }
  .navbar-collapse .nav-item {
    position: relative;
  }
.navbar-collapse .child_menu_button {
        display: block;
        position: absolute;
        text-align: center;
        width: 60px;
        height: 39px;
        right: 0px;
        top: 20px;
        z-index: 5;
        cursor: pointer;
    }
.navbar-collapse .child_menu_button .icon:before {
        content: '';
        background: url(../img/angle-right-solid.svg);
        background-size: contain;
        text-align: center;
        display: block;
        width: 16px;
        height: 22px;
        line-height: 20px;
        position: absolute;
        left: 20px;
        top: 10px;
        -webkit-transition: transform 0.5s ease;
        -moz-transition: transform 0.5s ease;
        -ms-transition: transform 0.5s ease;
        -o-transition: transform 0.5s ease;
        transition: transform 0.5s ease;
    }
nav .btn06 {
    margin-left: 0;
  }























































  }


  