@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;
    }
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;
}
h1 {
  font-size: 3.6rem;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
}

h2 {
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 2px;
  color: #2E3677;
  font-size: 3rem;
  margin-bottom: 40px;
}

h3 {
   font-size: 2.4rem;
  font-weight: 600;
}

h4 {
  font-size: 1.8rem;
  font-weight: 700;
}
.wrapper {
  overflow: hidden;
}



a.anchor{
    display: block;
    padding-top: 90px;
    margin-top: -90px;
}
/*==================================================
　5-2-4 MENUがCLOSEに
===================================*/

.openbtn{
  position: relative;
  background:#2E3677;
  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:1px;
  color: #fff;
  font-size: 0.6rem;
  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;
}
/*========= ボタンのためのCSS ===============*/
.openbtn{
  position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
  top:10px;
  right: 10px;
  cursor: pointer;
    width: 50px;
    height:50px;
} 
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
  background-color: #fff;
    width: 45%;
  }
.openbtn span:nth-of-type(1) {
  top:15px; 
}
.openbtn span:nth-of-type(2) {
  top:23px;
}
.openbtn span:nth-of-type(3) {
  top:31px;
}
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    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: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
.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; }
}


header {
  height: 100vh;
  width: 100%;
  position: relative;
}
.carousel-item img {
  height: 100vh;
  width: 100vw;
  object-fit: cover;
}
header .fv01 h1 {
    font-size: 2.8vw;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-20%, -40%);
    font-weight: 400;
    text-shadow: 1px 2px 4px #000;
    }
header .fv02 h1 {
      font-size: 2.8vw;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-20%, -40%);
    font-weight: 400;
    text-shadow: 1px 2px 4px #000;
}
nav {
  background-color: #fff;
  color: #000;
  font-family: "Noto Serif JP", serif;
}
nav .contact-bt {
  background-color: #2E3677;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  border-radius: 5px;
  padding: 10px;
  width: 140px;
}
.navbar-brand img {
  width: 200px;
  margin-left: 5%;
}
nav a {
  color: #000;
}
.cont01 {
  padding-top: 100px;
  padding-bottom: 70px;
}
.strongth {
  background-color: #2E3677;
  color: #fff;
  padding: 15px;
  height: 100%;
}
.strongth h3 {
  font-size: 1.7rem;
  margin-bottom: 30px;
}
.strongth img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 20px;
}
.cont02 {
  background-color: #efefef;
  padding: 100px 0;
}
.cont02 h2 {
  color: #2E3677;
  font-size: 3rem;
  margin-bottom: 40px;
}

.service-bt {
    border: 1px solid #999;
    border-radius: 5px;
    padding: 30px 5px 20px 10px;
    background-color: #fff;
    position: relative;
    letter-spacing: 0;
    height: 82px;
    font-size: 1.4rem;
    text-align: center;
}
/*.service-bt:after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../img/s-arrow.png);
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: 40%;
  right: 0;
}*/
.service-bt a:after {
  font-family: "Font Awesome 7 Free";
  content: "\f105";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: 40%;
  right: 10px;
}

.service-bt a {
  color: #222;
}
.service-bt:hover {
  background-color: #FFFCE3;
  transition : all 0.5s ease 0s;
}
.service-bt02 a {
  padding: 34px 5px 20px 10px;
}
.top-service02 {
  margin-top: 30px;
}
.cont02 h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  margin-top: 50px;
}
.cont02 .kanmin {
  margin-bottom: 50px;
}
.cont02 .col-lg-3 {
padding-left: 8px;
padding-right: 8px;
}
.cont02 .serv-first {
  padding-left: 0;
}
.cont03 {
  padding-top: 100px;
  padding-bottom: 70px;
}
.cont03 h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 2.7rem;
  margin-bottom: 40px;
}
.btn-area {
  margin-top: 50px;
  text-align: right;
}
.cont04 {
  border: 1px solid #999;
  background-color: #efefef;
  padding: 50px 30px;
}
.cont04-01 {
  padding-bottom: 20px;
}
.cont04 li {
  margin-bottom: 10px;
}
footer {
    margin-top: 70px;
    margin: 0 auto;
    position: relative;
    bottom: 0;
    width: 100%;
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
}
.footer-main {
    padding: 50px 4% 50px;
    background-color: #2E3677;
    color: #fff;
}
footer ul li {
  margin-right: 15px;
  vertical-align: middle;
  margin-bottom: 10px;
}
footer ul li a {
  color: #fff;
  font-size: 1.4rem;
}
footer a:hover {
  color: #fff000;
  transition: all .4s;
}
.f-horse {
  margin-top: 100px;
}
.f-horse img {
  width: 30%;
  margin-left: auto;
  margin-right: 50px;
}
footer .copy {
  background-color: #000952;
  text-align: center;
  padding: 10px;
  color: #fff;
  font-size: 1.2rem;;
}
footer .f-logo img {
  width: 80%;
}
footer .btn06 {
  border: 1px solid #fff;
  border-radius: 0;
  padding-left: 60px;
}
footer .btn06:before {
    content: '';
    display: inline-block;
    width: 27px;
    height: 22px;
    background-image: url(../img/mail.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: 25%;
    left: 10px;
}
.yamadasan img{
  border-radius: 10px;
}
#service {
  background-color: #efefef;
}
#service header {
  height: 400px;
  width: 100%;
  background: url("../img/service_fv.jpg")no-repeat;
  background-size: cover;
  position: relative;
}
#service header h1 {
  position: absolute;
  top: 180px;
  left: 10%;
  color: #fff;
  font-weight: 400;
}
.breadcrumb {
  margin-left: 4%;
    background-color: unset;
  font-size: 1.3rem;
  margin-top: 20px;
  margin-bottom: 40px;
  color: #999;
}
.breadcrumb a {
  color: #2E3677;
}
.breadcrumb span {
  margin: 0 5px;
}
.se-cont01 h2 span {
  color: #969696;
}
.service-cont {
  background-color: #fff;
  padding: 30px 30px 0;
  margin-bottom: 50px;
  border-radius: 5px;
  height: 100%;
}
.service-cont img {
      border-radius: 10px;
    width: 100%;
    height: 270px;
    object-fit: cover;
}
.service-cont h3 {
  font-size: 2.2rem;
  padding-bottom: 20px;
  margin-bottom: 20px;
  text-align: center;
  margin-top: 20px;
}
.service-cont a {
  text-align: right;
  margin-left: auto;
  display: block;
  color: #2e2677;
}
.service-cont a:hover {
  color: #001BF8;
}
.service-flex {
  margin-bottom: 50px;
}
.service-cont a:after {
  font-family: "Font Awesome 7 Free";
  content: "\f063";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-weight: bold;
  line-height: 1;
  margin-left: 5px;
}
.carousel-item img {
  height: 100vh;
  width: 100vw;
  object-fit: cover;
}
.serv-tit02 {
  color: #772E2E;
}
.service-txt {
  margin-bottom: 30px;
}
.service-txt li {
  margin-bottom: 10px;
}
.se-cont01 {
  border-bottom: 1px solid #707070;
  padding-bottom: 100px;
  margin-bottom: 100px;
}
.se-cont02 h3 {
  font-weight: 500;
    font-family: "Noto Serif JP", serif;
    letter-spacing: 2px;
    color: #2E3677;
    font-size: 3rem;
    margin-bottom: 40px;
}
.se-detail {
  margin-bottom: 70px;
  border-bottom:  1px solid #707070;
  padding-bottom: 50px;
}

#company {
  background-color: #efefef;
}
#company header {
  height: 400px;
  width: 100%;
  background: url("../img/company_fv.jpg")no-repeat;
  background-size: cover;
  position: relative;
}
#company header h1 {
  position: absolute;
  top: 200px;
  left: 10%;
  color: #fff;
}
.access {
  border: 1px solid #999;
  padding: 20px;
}
#company header::after {
  content: "";
  display: block;
  width: 100%;
  height: 400px;
  min-height: 400px;
  background: rgba(0, 0, 0, .5);
}
#company .table td,
#company .table th{
padding: 25px 10px;
}
#company .table th {
  font-weight: 400;
}
#company iframe {
  margin: 20px 0;
}
#company .co-cont01 ul {
  margin-bottom: 30px;
}
.co-cont01 th {
  color: #2e3677;
  font-family: "Noto Serif JP", serif;
}
.co-cont01 .en {
  color: #2e3677;
  font-size: 1.4rem;
}
.co-cont01 h4 {
  margin-bottom: 20px;
}
#profile {
  background-color: #efefef;
}
#profile header {
  height: 400px;
  width: 100%;
  background: url("../img/profile-tit.jpg")no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
#profile header h1 {
  position: absolute;
  top: 200px;
  left: 10%;
  color: #000;
}
.pr-cont01 {
  border: 1px solid #ccc;
  padding: 30px;
  background-color: #fff;
  margin-bottom: 70px;
}
#profile h2 {
  border-bottom: 1px dotted #2e3677;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.yamada-name {
  font-size: 1.8rem;
  font-family: "Noto Serif JP", serif;
  margin-top: 30px;
  text-align: right;
}
.pr-body {
  line-height: 1.8;
}

.pr-cont02,
.pr-cont03,
.pr-cont04,
.pr-cont05,
.pr-cont06 {
  border: 1px solid #ccc;
  padding: 30px;
  background-color: #fff;
  margin-bottom: 70px;
}
.pr-cont03 li {
  margin-bottom: 15px;
}
.pr-cont02 th,
.pr-cont02 td,
.pr-cont04 th,
.pr-cont04 td {
  padding: 15px;
}
.pr-cont02 th {
  width: 30%;
}
.pr-cont04 th {
  width: 20%;
}
.pr-cont05 li,
.pr-cont06 li {
  margin-bottom: 20px;
}
.nav-justified .nav-item {
  margin: 0 20px;
  align-content: center;
}
.navbar {
  height: 70px;
}
.top-img01 img {
  height: 420px;
  width: 100%;
  object-fit: cover;
}
.service-zentai-txt {
  margin-bottom: 30px;
}
.pr-cont01 img,
.pr-cont06 img {
  border-radius: 10px;
}

#faq header {
  height: 400px;
  width: 100%;
  background: url("../img/faq-tit.jpg")no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
#faq header h1 {
  position: absolute;
  top: 200px;
  left: 10%;
  color: #fff;
}
.faq-midashi .faq-ti:after {
  font-family: "Font Awesome 7 Free";
  content: "\f063";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-weight: bold;
  line-height: 1;
  padding-left: 5px;
}
.faq-midashi {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}
#faq .card-header h3 {
  font-size: 1.6rem;
  color: #222;
  text-align: left;
  line-height: 2.4;
}
#faq .card-header .btn {
  padding: 0;
}
#faq h2 {
  margin-top: 100px;
  text-align: center;
}
#faq .card-header {
    padding: 10px 20px 15px;
  }
#faq .card-body {
    padding: 30px 20px;
  }
.card img {
  width: 24px;
  height: 31px;
  margin-right: 15px;
}
#faq .card:last-child {
  border-bottom: 1px solid #ddd;
}
#contact header {
  height: 400px;
  width: 100%;
  background: url("../img/contact-tit.jpg")no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
#contact header h1 {
  position: absolute;
  top: 200px;
  left: 10%;
  color: #222;
}
#page header {
  height: 400px;
  width: 100%;
  background: url("../img/page-tit.jpg")no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
#page header h1 {
  position: absolute;
  top: 200px;
  left: 10%;
  color: #fff;
}
h2.wp-block-heading {
  margin-top: 50px;
}
.wp-block-list li {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 5px;
}
ul.wp-block-list {
  margin-top: 10px;
  margin-bottom: 10px;
}
#contact #company {
    background-color: #fff;
}







































/* タブレット */
@media only screen and (min-width: 767px) and (max-width: 991px) {
.navbar-brand {
  position: absolute;
  left: 15px; /* ロゴの位置を調整 */
  top: 16px;  /* 上下の位置も調整可能 */
  z-index: 1050; /* toggleより前面に */
}
.navbar-toggler {
  position: absolute;
  right: 15px;
  top: 10px;
  z-index: 1060;
}
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: #fff; /* 背景を固定 */
  z-index: 1040;
  padding: 0;
}
.navbar-nav {
    position: relative;
    top: 68px;
    background-color: #fff;
}
.nav-justified .nav-item {
    margin: 0 20px;
    align-content: center;
    padding: 20px;
    border-bottom: 1px solid #ccc;
}
nav .contact-bt {
    background-color: unset;
    color: #000;
    font-size: 1.6rem;
    text-align: center;
    border-radius: 0;
    padding: 0;
    width: auto;
}
.nav-justified .nav-item:last-child {
  border-bottom:none;
}
.strongth {
  margin-bottom: 30px;
}
.cont02 .col-lg-3 {
  padding-right: 0;
  padding-left: 0;
}
.service-bt {
  margin-bottom: 20px;
}
.ceo-txt {
  margin-bottom: 30px;
}
#service header {
    height: 340px;
    background-position: center;
}
.service-cont h3 {
    line-height: 1.7;
}
#profile header {
    height: 340px;
    background-position: 60%;
    position: relative;
}
#profile header h1,
#company header h1 {
    top: 180px;
  }

.pr-cont01 .pr-body {
    width: 100%;
    padding-bottom: 200px;
}
.pr-cont01 {
    background-position: bottom center;
    background-size: 45%;
    margin-bottom: 70px;
}
.pr-cont05 li {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.pr-cont05 li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
#company header {
    height: 340px;
  }
#company header::after {
    height: 340px;
    min-height: 340px;
  }










}















































/* スマホ */
@media screen and (max-width: 590px) {
header .fv01 h1,
header .fv02 h1 {
    font-size: 2.1rem;
    line-height:2;
  }
header .fv02 h1 {
    left: 30%;
  }
.cont01 .col-lg-4 {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 30px;
}

.cont01 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
.cont02 .col-lg-3 {
    padding-left: 0;
    padding-right: 0;
}
.service-bt {
  margin-bottom: 20px;
}
.cont02 {
    padding: 50px 0;
}

.cont03 .col-lg-7 {
  padding-left: 0;
  padding-right: 0;
}
.ceo-txt {
  margin-bottom: 50px;
}
.cont04 {
    padding: 50px 10px;
}
.cont04-01 {
    padding-bottom: 0;
}
.f-horse img {
    width: 70%;
  }
.f-logo {
  margin-bottom: 40px;
}
footer ul li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
  }
.btn06 {
    padding: 20px 40px 20px 30px;
    width: 100%;
}
.navbar-nav {
  background-color: #fff;
}
.nav-justified .nav-item {
    margin: 0 20px;
    align-content: center;
    border-bottom: 1px solid #2e3677;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.navbar-collapse {
        background-color: #fff;
        padding-top: 20px;
        padding-bottom: 20px;
    }
        .navbar-expand-lg .navbar-collapse {
        padding-top: 30px;
        background-color: #fff;
        position: relative;
        top: 60px;
    }
        .navbar-nav {
        align-items: unset;
    }
    .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;
    }
  .nav-justified .nav-item {
        text-align: left;
        position: relative;
    }
    .navbar-collapse .child_menu_button .icon:before {
        content: '';
        background: url(../img/arrow.png);
        background-size: contain;
        text-align: center;
        display: block;
        width: 20px;
        height: 20px;
        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 button {
  padding-block: 0;
  padding-inline: 0;
  border-width: 0;
  border-style: unset;
  border-color: unset;
  background-color: unset;
}
.navbar-brand {
  position: absolute;
  left: 15px; /* ロゴの位置を調整 */
  top: 16px;  /* 上下の位置も調整可能 */
  z-index: 1050; /* toggleより前面に */
}
.navbar-toggler {
  position: absolute;
  right: 15px;
  top: 10px;
  z-index: 1060;
}
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: #fff; /* 背景を固定 */
  z-index: 1040;
  padding: 0;
}
nav .contact-bt {
    background-color: unset;
    color: #000;
    font-size: 1.6rem;
    text-align: left;
    border-radius: 0;
    padding: 0;
    width: auto;
}
.nav-justified .nav-item:last-child {
  border-bottom:none;
}
#service header,
#profile header,
#company header,
#faq header,
#page header {
    height: 340px;
    background-position: bottom center;
  }
#contact header {
    height: 340px;
    background-position: 30%;
  }
.service-cont h3 {
  font-size: 2rem;
    line-height: 1.8;
}
.service-cont {
    padding: 30px 20px;
  }
#service header h1 {
  text-shadow: 1px 2px 2px #000;
}
.breadclumb {
    margin-left: 4%;
  }
#profile header {
  background-position: 73%;
      }
#profile header h1 {
    top: 180px;
  }
.pr-cont01 {
  background-size: 100%;
    background-position: bottom center;
    padding: 15px;
}
.pr-cont01 .pr-body {
    width: 100%;
    padding-bottom: 20px;
}
.pr-cont02 th, .pr-cont02 td, .pr-cont04 th, .pr-cont04 td {
    padding: 15px 0;
    display: block;
  }
.pr-body th {
        background-color: #efefef;
        width: 100%;
        padding: 10px;
    }
.pr-cont02 td {
          padding: 15px 10px 20px;
}

.pr-body th.pr-th {
  background-color: #fff;
}
.pr-cont05 .pr-body li {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}
.pr-cont05 .pr-body li:last-child {
  border-bottom: none;
}
#company header::after {
    width: 100%;
    height: 340px;
    min-height: 340px;
  }
#company header h1 {
    top: 180px;
  }
#company .table td, #company .table th {
    padding: 25px 10px;
    display: block;
}
#company .table td {
    border-top: none;
    padding: 25px 10px 30px;
}
#company .table th {
  padding: 10px;
}
.access {
    border: 1px solid #999;
    padding: 20px 10px;
}
.faq-ti {
  margin-bottom: 20px;
}
.se-detail img {
  margin-bottom: 20px;
}
.se-detail h3 {
  text-align: center;
}
.service-cont img {
    height: 200px;
  }
.pr-body img {
  margin-top: 20px;
}
.pr-cont02, .pr-cont03, .pr-cont04, .pr-cont05, .pr-cont06 {
    padding: 30px 15px;
  }
#page h2.wp-block-heading {
  font-size: 2.2rem;
}
.breadcrumb {
  padding: 0;
    margin-left: 15px;
  }




























  }


  