@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: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
        color: #222;
        line-height: 1.7;
        letter-spacing: 1px;
        background-color: #FFFDF5;
    }
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;
}
h2 {
  font-weight: 500;
  letter-spacing: 2px;
  color: #5F3A00;
  font-size: 3rem;
  margin-bottom: 40px;
  font-weight: 700;
}

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: 70px;
    margin-top: -70px;
}
/*==================================================
　5-2-4 MENUがCLOSEに
===================================*/

.openbtn{
  position: relative;
  background:#5f3a00;
  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: 5px;
    right: 8px;
  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; }
}
.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100vh;
}
.nav-item {
  margin-right: 20px;
}
.fv01 img,.fv02 img {
    width: 50%;
    position: absolute;
    top: 30vh;
    left: 25%;
}

.fv01 h1, .fv02 h1 {
    position: absolute;
    top: 170px;
    left: 37%;
    font-size: 3rem;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    text-align: center;
}
.fv01 h1 p,
.fv02 h1 p {
	font-size: 2.5rem;
	margin-bottom: 20px;
}
.header-Logo img {
	width: 50px;
}
.header-Logo {
	font-size: 1.4rem;
	color: #5F3A00;
}

nav {
	color: #5F3A00;
  background-color: #FFFDF5;
}
nav a {
  color: #5f3a00;
}
.contact-bt {
	background-color:#5F3A00;
	color: #fff;
	border-radius: 30px;
	padding: 10px 30px;
}
#top header {
	height: 100vh;
	width: 100%;
}
.navbar-brand {
	display: flex;
	align-items: center;
}
.cont01 {
	padding-top: 100px;
	padding-bottom: 20px;
}
.cont01 h2 {
	text-align: center;
	margin-bottom: 30px;
}
.cont01-waku {
	border: 3px solid #5F3A00;
	border-radius: 20px;
	padding: 20px 30px;
	height: 100%;
}
.cont01-waku h3 {
	text-align: center;
	color: #5f3a00;
	font-size: 2.2rem;
	margin-bottom: 40px;
}
.cont01-01 {
	background: url("../img/top-serv01.png")no-repeat bottom right;
	background-size: 100px auto;
	background-color: #fff;
}
.cont01-02 {
	background: url("../img/top-serv02.png")no-repeat bottom right;
	background-size: 100px auto;
	background-color: #fff;
}
.cont01-03 {
	background: url("../img/top-serv03.png")no-repeat bottom right;
	background-size: 100px auto;
	background-color: #fff;
}
.cont01-04 {
	background: url("../img/top-serv04.png")no-repeat bottom right;
	background-size: 100px auto;
	background-color: #fff;
}
.cont01-waku li {
	margin-bottom: 20px;
}
.cont01-oowaku {
	margin-top: 30px;
	margin-bottom: 40px;
}
.cont01 .btn-area {
	margin-bottom: 100px;
	text-align: right;
}
.cont02 {
  border-top: 2px dashed #5f3a00;
  padding-top: 70px;
}
.cont02 h2 {
  font-size: 3.4rem;
  color: #5f3a00;
  margin-bottom: 30px;
  line-height: 1.8;
}
.cont02-txt01 {
  margin-bottom: 100px;
}
.cont02 h3 {
  font-size: 2.2rem;
  color:#5f3a00;
  margin-bottom: 30px;
}
.komatta01 {
  margin-bottom: 100px;
}
.komatta01 img {
  width: 80%;
}
.cont03 {
  border-top: 2px dashed #5f3a00;
  padding-top: 70px;
}
.tree-line01 {
  width: 50%;
}
.cont03 h2 {
  font-size: 3.4rem;
  color: #5f3a00;
  margin-bottom: 30px;
  line-height: 1.8;
}
.about-txt {
  margin-bottom: 40px;
}
.speechBubble {
  position: relative;
  display: inline-block;
  margin-right: 13px;
  padding: 30px;
  border: 2px solid #5f3a00;
  border-radius: 20px;
  background-color: #ffffff;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.01em;
  color: #000000;
}

.speechBubble::before {
  content: "";
  position: absolute;
  top: 51%;
  right: 0;
  border-style: solid;
  border-width: 10px 0 10px 13px;
  border-color: transparent transparent transparent #5f3a00;
  translate: 100% -50%;
}

.speechBubble::after {
  content: "";
  position: absolute;
  top: 51%;
  right: 0;
  border-style: solid;
  border-width: 7.5px 0 7.5px 9.7px;
  border-color: transparent transparent transparent #ffffff;
  translate: 100% -50%;
}
.bout-ph img {
  height: 300px;
}
.about-ph img {
  border-radius: 10px;
}
.cont03 .btn-area {
  margin-top: 40px;
  text-align: right;
}
.cont04 {
  background: url("../img/top-blog.png")no-repeat top right;
  background-size: 50%;
   border-top: 2px dashed #5f3a00;
  padding-top: 70px;
  margin-top: 100px;
}
.blog-cont {
  width: 28%;
  margin-right: 20px;
}
.t-blog {
  position: relative;
}
.t-blog .blog-cont:first-child {
  position: relative;
    top: 0;
}
.t-blog .blog-cont:nth-child(2) {
  position: relative;
    top: 70px;
}
.t-blog .blog-cont:nth-child(3) {
  position: relative;
    top: 140px;
}
.blog-inner {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 20px;
}
.blog-cont img {
  border-radius: 10px;
  height: 180px;
  width: 100%;
  margin-bottom: 30px;
  object-fit: cover;
}
.top-blog-cate-area {
  text-align: center;
  margin-bottom: 20px;
}
.top-blog-cate {
  background-color: #5f3a00;
  padding: 3px 20px;
  border-radius: 30px;
  color: #fff;
  text-align: center;
  display: inline-block;
  font-size: 1.4rem;
}
.cont04-txt {
  margin-bottom: 70px;
}
.blog-inner h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.blog-cont02 {
  margin-top: 70px;
}
.blog-cont03 {
  margin-top: 140px;
}
.cont04 .btn-area {
  text-align: right;
  margin-top: 180px;
  margin-bottom: 100px;
}
.ft-contact {
      border: 2px solid #5f3a00;
    border-radius: 25px;
    padding: 70px 50px 50px;
    background: url(../img/books.png) no-repeat;
    background-position: 95% 100%;
    background-size: 30%;
    background-color: #fff;
}
.ft-contact h2 {
  font-size: 3.4rem;
  color: #5f3a00;
  margin-bottom: 40px;
}
.ft-contact-txt {
  margin-bottom: 40px;
}
.ft-cats {
  text-align: right;
  padding-right: 5%;
}
.ft-cats img {
  width: 50%;
  margin-left: auto;
}
footer {
  margin-top: 150px;
}
footer a {
  color: #fff;
}
footer a:hover {
  color: #F5C35E;
}
.footer-main {
   background-color: #5f3a00;
  color: #fff;
  padding-top: 70px;
  padding-bottom: 50px;
  padding-left: 5%;
  padding-right: 10%;
}
.f-logo {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.f-logo img {
  width: 60px;
}
.f-le li {
  margin-bottom: 20px;
}
.ft-address {
  padding-left: 70px;
}

.btn03{
    position: relative;
  text-decoration: none;
  display: inline-block;
    text-align: center;
    background: transparent;
  border-radius: 25px;
    outline: none;
    transition: all 0.2s ease;
}

.btn03:hover{
  border-color:transparent; 
}

.btn03 span {
  position: relative;
  z-index: 2;
  display: block;
    padding: 10px 40px 10px 40px;
  background:#FFD696;
  border-radius: 25px;
  color:#000;
    transition: all 0.3s ease;
}
/*影の設定*/
.pushright:before {
    content: "";
    position: absolute;
  z-index: -1;
    top: 4px;
    left: 4px;
    width: 100%;
    height: 100%;
  border-radius: 25px;
    background-color: #4b6007;
}
/*hoverの際にX・Y軸に4pxずらす*/
.pushright:hover span {
  background-color: #4b6007;
  color: #fff;
  transform: translate(4px, 4px);
}
.f-btn-area {
  text-align: right;
  position: relative;
}
.f-btn-area a {
  text-decoration: none;
}
.f-btn-area img {
  width: 45px;
  position: absolute;
  right: 20px;
  top: -45px;
  transition: all 0.3s ease;
}
.pushright:hover img {
  top: -60px;
}
.pp {
  text-align: right;
  margin-top: 30px;
}
.copy {
  background-color: #865200;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  padding: 10px;
}
.nav-btn-area {
  text-align: right;
  position: relative;
}
.nav-btn-area a {
  text-decoration: none;
}
.nav-btn-area img {
  width: 45px;
  position: absolute;
  right: 20px;
  top: -45px;
  transition: all 0.3s ease;
}
.nav-btn-area .btn03 span {
  position: relative;
  display: block;
    padding: 5px 50px 5px 25px;
  background:#5f3a00;
  border-radius: 25px;
  color:#fff;
  transition: all 0.3s ease;
}
.nav-btn-area .pushright:before {
    content: "";
    position: absolute;
  z-index: -1;
    top: 4px;
    left: 4px;
    width: 100%;
    height: 100%;
  border-radius: 25px;
    background-color: unset;
}
.nav-btn-area .pushright:hover span {
  background-color: #FFD696;
  color: #000;
  transform: translate(4px, 4px);
}
.nav-btn-area img {
  width: 40px;
    position: absolute;
    right: 10px;
    top: -20px;
  transition: all 0.3s ease;
  z-index: 99;
}
.nav-btn-area .pushright:hover img {
  top: -21px;
  right: 7px;
  width: 45px;
}
.navbar {
  padding-top: 15px;
}
#service header {
    height: 450px;
    width: 100%;
    position: relative;
    background: url(../img/service-ti.png) no-repeat;
    background-position: 53% 80%;
    background-size: 40%;
}
#service header h1 {
  position: absolute;
    top: 190px;
    left: 10%;
    font-size: 3.8rem;
    color: #5f3a00;
}
#service header .h1-sub {
  position: absolute;
  top: 240px;
  left: 12%;
  font-size: 1.8rem;
  color: #5f3a00;
}
.bread-corumb {
  margin-top: 20px;
  font-size: 1.3rem;
  color: #999;
  margin-top: 20px;
  margin-bottom: 50px;
}
.se-cont01 {
  text-align: center;
}
.se-cont02 h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-top:70px;
  margin-bottom: 50px;
}
.se-cont02 h2:after {
  border-top: 1px solid;
  content: "";
  width: 75%; 
}
.se-cont02 h2:before {
    content: '';
    background: url(../img/cat-icon.png);
    width: 17px;
    height: 20px;
    background-size: contain;
    margin-right: 10px;
}
.se-cont02 h2:after {
  margin-left: 1em; /* 文字の左隣 */
}
.solution-a {
  border: 2px solid #5f3a00;
  border-radius: 20px;
  background-color: #fff;
  padding: 30px;
  width: 100%;
}
.solution-a h3 {
  color: #5f3a00;
  font-size: 1.8rem;
  margin-bottom: 30px;
}
.solution .col-lg-1 img {
  margin: auto;
}
.solution {
  margin-bottom: 70px;
}
.solution-a ul {
  margin-top: 20px;
}
.solution-a li {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 10px;
}
#company header {
    height: 450px;
    width: 100%;
    position: relative;
    background: url(../img/company-ti.png) no-repeat;
    background-position: bottom center;
    background-size: contain;
}
#company header h1 {
  position: absolute;
    top: 190px;
    left: 10%;
    font-size: 3.8rem;
    color: #5f3a00;
}
#company header .h1-sub {
  position: absolute;
  top: 240px;
  left: 10%;
  font-size: 1.8rem;
  color: #5f3a00;
}
.co-cont01 h2 {
  color: #5f3a00;
  font-size: 2rem;
}
.co-cont01 h2:before {
      content: '';
    background-image: url(../img/cat-icon.png);
    width: 23px;
    height: 26px;
    background-size: contain;
    margin-right: 15px;
    display: inline-block;
    vertical-align: bottom;
}
.co-cont01 table th {
  color: #5f3a00;
}
.co-cont01 table th,
.co-cont01 table td {

  padding: 23px;
}
.co-cont01 table td li {
  margin-bottom: 10px;
}
.co-cont02 {
 border: 2px solid #5f3a00;
 border-radius: 20px;
 padding: 40px 200px 40px 40px;
 background: url("../img/company-about.png")no-repeat;
 background-position: center right;
 background-size: contain; 
 margin-top: 100px;
 margin-bottom: 100px;
 background-color: #fff;
}
.pr-cont01 .pr {
  font-size: 1.4rem;
  color: #5f3a00;
  margin-bottom: 20px;
}
.pr-cont01 h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}
.pr-cont01 h2 span {
  font-size: 1.4rem;
}
.pr-cont01 {
  margin-bottom: 100px;
}
.pr-cont02 h2:before {
      content: '';
    background-image: url(../img/cat-icon.png);
    width: 23px;
    height: 26px;
    background-size: contain;
    margin-right: 15px;
    display: inline-block;
    vertical-align: bottom;
}
.pr-cont02 th {
  color: #5f3a00;
}
.pr-cont02 li {
  margin-bottom: 10px;
}
.pr-cont01 img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.pr-cont01 .col-lg-4 {
  padding-right: 40px;
}
#profile header {
    height: 450px;
    width: 100%;
    position: relative;
    background: url(../img/profile-ti.jpg) no-repeat;
    background-position: bottom center;
    background-size: cover;
}
#profile header h1 {
  position: absolute;
    top: 190px;
    left: 10%;
    font-size: 3.8rem;
    color: #5f3a00;
}
#profile header .h1-sub {
  position: absolute;
  top: 240px;
  left: 10%;
  font-size: 1.8rem;
  color: #5f3a00;
}

.yama img {
  margin: 50px auto 130px;
  width: 50%;
}
.pr-cont03 h2 {
  padding-left: 8%;
  padding-right: 8%;
}
.person-area {
    position: relative;
    padding-right: 10%;
    padding-left: 10%;
    max-width: 1300px;
    margin: 0 auto;
}
.person-area img {
  width: 400px;
}
.person01 {
  position: absolute;
  left: 10%;
  top: 0;
  z-index: 77;
}
.person02 {
  position: absolute;
  right: 2%;
  top: 30px;
}
.person03 {
   position: absolute;
  top: 400px;
  left: 4%;
}
.person04 {
  position: absolute;
  right: 3%;
  top: 600px;
  z-index: 88;
}
.person05 {
  position: absolute;
  left: 28%;
    top: 650px;
}
.person06 {
  position: absolute;
  left: 37%;
  top: 300px;
  z-index: 99;
}
.kikasete .speech {
  position: relative;
  display: inline-block;
  margin-right: 20px;
  padding: 40px;
  border: 2px solid #5f3a00;
  border-radius: 8px;
  background-color: #ffffff;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
}

.kikasete .speech::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #5f3a00;
  translate: 100% -50%;
}

.kikasete .speech::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  border-style: solid;
  border-width: 7.8px 0 7.8px 15.5px;
  border-color: transparent transparent transparent #ffffff;
  translate: 100% -50%;
}
.kikasete {
  display: flex;
  margin-top: 100px;
  margin-bottom: 100px;
  justify-content: space-between;
}
.kikasete-l {
  padding: 40px 0;
}
.kikasete-ph img {
  border-radius: 50%;
  width: 300px;
  height: 300px;
  object-fit: cover;
}
.jiro-area {
  margin-bottom: 100px;
}
.jiro-body {
  background-color: #F8F3D9;
  padding-top: 50px;
  padding-bottom: 50px;
}
.jiro-body h2 {
  color: #5f3a00;
  font-size: 2.4rem;
  border-bottom: 2px dashed #5f3a00;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.jiro-body img {
  border-radius: 20px;
}
.jiro-name {
  color: #5f3a00;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.jiro-name li {
  margin-bottom: 10px;
}
.jiro-top img {
  width: 100%;
}
#price header {
    height: 450px;
    width: 100%;
    position: relative;
    background: url(../img/price-ti.png) no-repeat;
        background-position: 60% 50%;
    background-size: 55%;
}
#price header h1 {
  position: absolute;
    top: 190px;
    left: 10%;
    font-size: 3.8rem;
    color: #5f3a00;
}
#price header .h1-sub {
  position: absolute;
  top: 240px;
  left: 10%;
  font-size: 1.8rem;
  color: #5f3a00;
}
.pri-cont01 h2:before,
.pri-cont02 h2:before,
.pri-cont03 h2:before {
      content: '';
    background-image: url(../img/cat-icon.png);
    width: 23px;
    height: 26px;
    background-size: contain;
    margin-right: 15px;
    display: inline-block;
    vertical-align: bottom;
}
.pri-cont02,
.pri-cont03 {
  margin-bottom: 100px;
}
#price h2 span {
  font-size: 1.3rem;
}
#price h2 {
  font-size: 2rem;
}
.pri-cont01 th {
  background-color: #efefef;
  width: 25%;
}
tr.komon-ti th {
  background-color: #5f3a00;
  color: #fff;
  font-size: 1.6rem;
}
.pri-cont02 {
  margin-top:100px;
}
.pri-cont01 td,
.pri-cont01 th {
  text-align: center;
}
.komon-ti {
  text-align: center;
}
.pri-cont02 th,
.pri-cont02 td,
.pri-cont03 th,
.pri-cont03 td {
  padding: 20px;
}
.pri-cont02 th,
.pri-cont03 th {
  width: 30%;
}
#blog header {
    height: 450px;
    width: 100%;
    position: relative;
    background: url(../img/blog-ti.png) no-repeat;
    background-position: 60% 80%;
    background-size: 60%;
}
#blog header h1 {
  position: absolute;
    top: 190px;
    left: 10%;
    font-size: 3.8rem;
    color: #5f3a00;
}
#blog header .h1-sub {
  position: absolute;
  top: 240px;
  left: 10%;
  font-size: 1.8rem;
  color: #5f3a00;
}
.bl-cont01 {
  padding-left: 3%;
  padding-right: 3%;
}
.blog-content {
  border-left: 1px solid #ccc;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 10px;
  width: 25%;
  margin-bottom: 10px;
}
.blog-content:nth-child(4n){
  border-right: 1px solid #ccc;
}
.blog-content:last-child{
  border-right: 1px solid #ccc;
}
.blog-content img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 20px;
}
.blog-day-area {
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.blog-day-area .cate {
  display: inline-block;
  background-color: #5f3a00;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  padding: 2px 10px;
  border-radius: 5px;
}
.bl-title {
  margin-bottom: 10px;
}
.blog-txt {
  border-top: 1px dashed #5f3a00;
  padding-top: 10px;
}
.bl-cont01 {
  margin-bottom: 100px;
}
.carousel-control-prev-icon {
    background-image: url("../img/fv-arrow-l.svg");
  }
.carousel-control-next-icon {
    background-image: url("../img/fv-arrow-r.svg");
  }
.cont01 a {
  color: #5f3a00;
}
.cont01-waku:hover {
  background-color: #FFFCE8;
}
.content-side h3 {
    background-color: #AFAFAF;
    padding: 10px 20px;
    text-align: center;
    color: #fff;
    font-size: 1.6rem;
    border: 1px solid #ccc;
}
.content-main {
    width: 75%;
    padding-right: 50px;
    border-right: 1px solid #CBCBCB;
    margin-top: 10px;
    padding-bottom: 70px;
}
.content-side {
    padding-left: 20px;
    letter-spacing: 0;
    width: 25%;
}
.jisseki {
    background-color: #efefef;
    padding: 0 10px;
    border-bottom: 1px solid #ccc;
    align-items: center;
}
.jisseki-ph {
    width: 50%;
}
.jisseki-ph img {
    height: 110px;
    width: 100%;
    object-fit: cover;
}
.jisseki-ti {
    padding-left: 15px;
    width: 50%;
    font-size: 1.4rem;
}
.jisseki-item {
    display: flex;
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
}
.jisseki-item:last-child {
    border-bottom: none;
}
.news-tit-area {
    margin: 0 0 40px;
    border-bottom: 1px dotted #ccc;
}
.news-date {
    color: #999;
    font-size: 1.2rem;
    margin-right: 30px;
}
.news-category {
    font-size: 1.2rem;
}

.news-category a {
    color: #679E32;
}
.news-tit-area h2 {
    font-size: 2.4rem;
    margin: 20px 0 30px;
    text-align: left;
}
.content-main {
    padding-bottom: 150px;
}
.entry-content {
    margin-bottom: 100px;
    padding-bottom: 50px;
    line-height: 1.8;
}
ul.prev_next_list {
    display: flex;
    justify-content: space-between;
}
.prev_next_list li.next, .prev_next_list li.prev {
    width: 50%;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 300;
}
.prev_next_list li {
    margin: 0 10px;
}
.prev_next_list {
    border-top: 1px solid #ccc;
    padding-top: 30px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 30px;
    margin-top: 100px;
}
.prev-c {
    border-left: 1px solid #ccc;
    margin-left: 10px;
}
.breadcrumbs {
    font-size: 1.2rem;
    color: #999;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 10px;
    margin-bottom: 50px;
}

.bl-title a {
  color: #5f3a00;
}
.blog-day-area a {
  color: #999;
}
.cate a {
  color: #fff;
}
#blog .fv01 span {
  font-size: 1.6rem;
}
#contact header {
    height: 350px;
    width: 100%;
    position: relative;
    background: url(../img/contact-ti.png) no-repeat;
    background-position: bottom right;
    background-size: 70%;
}
#contact header h1 {
  position: absolute;
    top: 190px;
    left: 10%;
    font-size: 3.8rem;
    color: #5f3a00;
}
#contact header .h1-sub {
  position: absolute;
  top: 240px;
  left: 12%;
  font-size: 1.8rem;
  color: #5f3a00;
}

#page header {
    height: 350px;
    width: 100%;
    position: relative;
    background: url(../img/contact-ti.png) no-repeat;
    background-position: bottom right;
    background-size: 70%;
}
#page header h1 {
  position: absolute;
    top: 190px;
    left: 10%;
    font-size: 3.8rem;
    color: #5f3a00;
}
#page header .h1-sub {
  position: absolute;
  top: 240px;
  left: 12%;
  font-size: 1.8rem;
  color: #5f3a00;
}
#page .page-cont01 p {
  margin-bottom: 50px;
}
#page .page-cont01 li {
  list-style-type: disc;
  margin-left: 30px;
  margin-bottom: 10px;
}
#page .page-cont01 ul {
  margin-bottom: 30px;
}
.blog-cont a {
  color: #5f3a00;
}
.top-blog-cate a {
  color: #fff;
}
.blog-cont01:hover {
  background-color: #FFFCE8;
}
#blog .post-thumbnail img {
  width: 80%;
  height: 400px;
  object-fit: cover;
  margin: 20px auto;
      border: 1px solid #ddd;
}































/* タブレット */
@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;
  margin: 0 10px;
}
.navbar-nav {
    position: relative;
    top: 68px;
    background-color: #fff;
    padding: 30px;
}
.navbar-nav li {
  padding: 10px 20px;
  border-bottom: 1px dashed #5f3a00;
  text-align: center;
}
.navbar-nav li .nav-btn-area {
        margin: 30px auto 10px;
        text-align: center;
        }
.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;
}
.fv01 img, .fv02 img {
  left: 30%;
}
.cont01 h2,
.cont02 h2,
.cont03 h2 {
  line-height: 1.8;
  font-size: 2.6rem;
}
.cont01-waku {
    margin-bottom: 30px;
  }
.komatta01 img {
    width: 40%;
    margin: 30px auto;
}
.tree-line01 {
    width: 100%;
}
#service h2 {
  line-height: 1.8;
  font-size: 2.6rem;
}
.se-text {
  text-align: left;
}
.person-area img {
    width: 320px;
}
.jiro-intro {
  margin-bottom: 30px;
}




























}















































/* スマホ */
@media screen and (max-width: 590px) {
.fv01 img, .fv02 img {
    width: 100%;
    position: absolute;
    top: 40vh;
    left: 0;
}
.fv01 h1, .fv02 h1 {
  top: 146px;
    left: 5%;
}
.cont01 h2,
.cont02 h2,
.cont03 h2 {
  font-size: 2.4rem;
    line-height: 1.8;
    text-align: left;
}
.cont01 .col-lg-6 {
  padding-left: 0;
  padding-right: 0;
}
.cont01-waku {
  margin-bottom: 30px;
}
.cont01-oowaku {
    margin-top: 0;
    margin-bottom: 0;
}
.cont01-read {
  margin-bottom: 40px;
}
.btn06 {
    width: 100%;
  }
.cont02 .col-lg-9 {
  padding-left: 0;
  padding-right: 0;
}
.cont02 img {
  margin: 20px auto;
}
.komatta01 {
    margin-bottom: 70px;
}
.komatta01 h3 {
  line-height: 1.7;
}
.tree-line01 {
    width: 100%;
}

.speechBubble {
  margin-top: 50px;
}

.speechBubble {
  position: relative;
  display: inline-block;
  margin-top: 30px;
  padding: 16px;
  border: 2px solid #5f3a00;
  border-radius: 8px;
  background-color: #ffffff;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  width: 100%;
}

.speechBubble::before {
  content: unset;
}

.speechBubble::after {
  content: unset;
}
.about-ph img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.blog-cont {
    width: 100%;
    margin-right: 0;
}
.cont04 {
  background-size: 75%;
}
.cont04-txt {
    margin-bottom: 30px;
    padding-top: 40px;
}
.blog-cont02 {
    margin-top: 30px;
}
.blog-cont03 {
    margin-top: 30px;
}
.ft-contact {
    border: 2px solid #5f3a00;
    border-radius: 25px;
    padding: 50px 30px 200px;
    background: url(../img/books.png) no-repeat;
    background-position: 95% 100%;
    background-size: 80%;
    background-color: #fff;
}
.ft-contact h2 {
  text-align: center;
}
.ft-cats img {
    width: 100%;
    }
.footer-main {
  padding-right: 5%;
}
.f-le {
  margin-top: 50px;
}
.f-le li {
    margin-bottom: 20px;
    border-bottom: 1px dashed #fff;
    padding-bottom: 20px;
    text-align: center;
}

.f-btn-area {
    text-align: center;
    }
.btn03 {
    width: 100%;
    padding-top: 40px;
}
.f-btn-area img {
  top: -5px;
}
.pp {
    text-align: center;
  }
.f-logo {
    margin-bottom: 10px;
  }
.navbar-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    background-color: #fff;
}
 .nav-item {
        margin-right: 0;
        position: relative;
        border-bottom: 1px solid #ccc;
        padding: 10px 20px;
    }
.navbar-collapse .child_menu_button {
        display: block;
        position: absolute;
        text-align: center;
        width: 60px;
        height: 39px;
        right: 0px;
        top: 10px;
        z-index: 5;
        cursor: pointer;
    }
.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;
    }
.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
}
.nav-link {
    display: block;
    padding: .5rem 1rem;
}
.navbar {
  padding: 0;
}
.navbar-collapse {
  margin-top: 10px;
}
#service header {
 background-position: bottom center;
    background-size: 90%;
}
#service header h1 {
    top: 150px;
  }
#service header .h1-sub {
    top: 200px;
  }
.se-cont01 h2 {
  font-size: 2.2rem;
  line-height: 1.8;
}
.se-text {
  text-align: left;
}
.se-cont02 h2 {
    justify-content: left;
  }
.se-cont02 h2:after {
    width: 40%;
}
.solution .solu-arro img {
  transform: rotate(90deg);
  margin: 0 auto;
}
.solu-arro {
  margin-top: 20px;
  margin-bottom: 20px;
}
#company .table td,
#company .table th {
display: block;
}
.co-cont01 table th {
    color: #5f3a00;
    background-color: #efefef;
    padding: 10px;
}
.co-cont02 {
    padding: 40px 50px 60px 20px;
    background: url(../img/company-about.png) no-repeat;
    background-position: bottom right;
    background-size: 30%;
    background-color: #fff;
}
.co-cont02 h2 {
    font-size: 2.2rem;
    line-height: 1.8;
}
#company header,
#service header {
    height: 350px;
  }
#company header h1,
 {
    position: absolute;
    top: 140px;
  }
#company header .h1-sub {
    top: 190px;
  }

#service header h1
 {
    top: 100px;
  }
  #price header h1
 {
    top: 120px;
  }
#service header .h1-sub {
    top: 150px;
  }
#price header .h1-sub {
    top: 170px;
  }
#profile header {
  height: 350px;
}
#company header h1 {
    top: 140px;
  }
#price header {
  height: 350px;
}
#price header {
    background-position: bottom center;
    background-size: 90%;
}
.pri-cont02 td,
.pri-cont02 th,
.pri-cont03 td,
.pri-cont03 th {
  display: block;
  padding: 20px 10px;
  line-height: 1.9;
}
.pri-cont02 th, .pri-cont03 th {
    width: 100%;
    background-color: #efefef;
    padding: 10px;
}
.pr-cont02 .table td,
.pr-cont02 .table th {
  display: block;
}
.yama img {
    width: 100%;
  }
.pr-cont03 h2 {
    padding-left: 4%;
    padding-right: 4%;
    font-size: 2.8rem;
    text-align: center;
}
.person-area img {
    width: 100%;
}
.person-area img.person06 {
    width: 95%;
}
.person01,
.person02,
.person03,
.person04,
.person05,
.person06 {
  position: relative;
  top:0;
}
.person06{
 left: 2%;
}

.person02 {
    right: 2%;
}
.person04,
.person05 {
  right:0;
}
.person05,
.person01 {
  left: 0;
}
.kikasete {
    display: block;
  }
.kikasete .speech {
    margin-right: 0;
  }
.kikasete .speech::after,
.kikasete .speech::before {
    content: unset;
    }

.jiro-body img {
    margin-top: 30px;
}
.footer-main .col-md-4 {
  padding-left: 0;
  padding-right: 0;
}
#blog header {
  height: 350px;
      background-position: bottom center;
    background-size: 100%;
}
#blog header h1 {
    top: 114px;
  }
#blog header .h1-sub {
    top: 161px;
  }
.blog-content {
    border-left: 1px solid #ccc;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 10px;
    width: 100%;
    margin-bottom: 30px;
    border-right: 1px solid #ccc;
}
    #page header {
        height: 350px;
            background-size: 100%;
    }
#page header h1 {
    position: absolute;
    top: 150px;
    left: 5%;
  }
.mw_wp_form table.mailform-tbl {
    width: 100%;
  }
.mw_wp_form table th {
    width: 100%;
}
    .mailform-tbl textarea {
        border-top: 1px solid #666;
    }

#page .page-cont01 li {
    list-style-type: disc;
    margin-left: 18px;
    margin-bottom: 0px;
}
.content-main {
    width: 100%;
    padding-right: 0;
    border-right: none;
    margin-top: 0;
    padding-bottom: 70px;
  }
.content-side {
    padding-left: 0;
    letter-spacing: 0;
    width: 100%;
    margin-bottom: 70px;
}
.prev_next_list li.next {
  text-align: right;
}
.prev_next_list li.prev {
  text-align: left;
}
.navbar-toggler-icon {
  display: unset;
}
#profile header h1 {
    position: absolute;
    top: 150px;
  }
#profile header .h1-sub {
    position: absolute;
    top: 200px;
  }
.pr-cont01 .pr {
  margin-top: 30px;
}
#blog .post-thumbnail img {
    width: 100%;
    height: 240px;
  }































  }


  