@charset "UTF-8";

@media (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

@media (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

body {
  font-size: 1rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1;
  position: relative;
  -webkit-animation: fadeIn 2s ease 6s 1 normal;
  animation: fadeIn 2s ease 6s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

img {
  width: 100%;
}

.inner {
  max-width: 100%;
  margin: 0 auto;
  max-width: 1080px;
  box-sizing: content-box;
}

@media (max-width: 767px) {
  .inner {
    padding: 0 15px;
  }
}

.util-title {
  font-size: 3.25rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  text-align: center;
  margin-bottom: 5rem;
}

@media (max-width: 767px) {
  .util-title {
    font-size: 2rem;
  }
}

.util-link {
  font-size: 14px;
  padding: 14px 60px;
  margin-top: 6rem;
  background: #DDC8BB;
  color: #000;
  display: inline-block;
  border-radius: 20px;
  transition: 0.4s, color 0.4s;
  box-shadow: 5px 5px 4px rgba(0, 0, 0, 0.3);
}

.util-link:hover {
  opacity: .6;
}

/* header */
@media (min-width: 768px) {
  .header {
    background: rgba(255, 255, 255, 0.9);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100000;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-weight: bold;
  }
}

@media (max-width: 767px) {
  .header {
    background: rgba(255, 255, 255, 0.9);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100000;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  }

  .header.is-color {
    opacity: 0.7;
    transition: all 0.5s ease 0s;
    z-index: 100000;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  height: 90px;
}

.header-logo {
  width: 200px;
  height: 60px;
}

@media (max-width: 767px) {
  .header-logo {
    width: 140px;
    height: 35px;
  }
}

.header-nav {
  margin-left: auto;
}

@media (max-width: 767px) {
  .header-nav {
    top: 60px;
    background: #FAF4E4;
    padding-top: 45px;
  }
}

@media (min-width: 768px) {
  .header-nav-list {
    display: flex;
  }
}

@media (max-width: 767px) {
  .header-nav-list {
    display: none;
  }
}

@media (min-width: 768px) {
  .header-nav-item:not(:first-child) {
    margin-left: 46px;
  }
}

.header-nav-item-link {
  display: block;
  color: #333;
  height: 70px;
  line-height: 70px;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  .header-nav-item-link {
    color: #fff;
    font-size: 1.125rem;
    text-align: right;
    padding: 0 15px;
    height: 60px;
    line-height: 60px;
  }
}

@media (min-width: 768px) {
  .header-nav-item-link {
    transition: 0.4s;
    font-size: 1.25rem;
  }

  .header-nav-item-link:hover {
    color: #DCC8BB;
  }
}

.sns-img {
  vertical-align: middle;
  width: 27px;
  height: 27px;
}

@media (max-width: 767px) {
  .sns-img {
    width: 27px;
    height: 27px;
  }
}

.drawer-icon {
  position: fixed;
  top: 35px;
  right: 35px;
  z-index: 1004;
  transition: transform 0.5s ease 0s;
}

@media (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon.is-active .drawer-icon-bar1 {
  transform: rotate(-45deg);
  top: 8px;
  background: #9B6112;
  transition: transform 0.5s ease 0s;
}

.drawer-icon.is-active .drawer-icon-bar2 {
  top: 10px;
  display: none;
}

.drawer-icon.is-active .drawer-icon-bar3 {
  top: 8px;
  transform: rotate(45deg);
  background: #9B6112;
  transition: transform 0.5s ease 0s;
}

.drawer-icon-bars {
  width: 30px;
  height: 30px;
  position: relative;
  display: block;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  width: 30px;
  height: 3px;
  background: #9B6112;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
}

.drawer-icon-bar1 {
  top: 0;
}

.drawer-icon-bar2 {
  top: 10px;
}

.drawer-icon-bar3 {
  top: 20px;
}

@media (min-width: 768px) {
  .drawer-content {
    display: none;
  }
}

@media (max-width: 767px) {
  .drawer-content {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    position: fixed;
    top: 5.6rem;
    right: 0;
    z-index: 1002;
    transform: translateX(100%);
    transition: transform 0.5s ease 0s;
  }

  .drawer-content.is-active {
    transform: translateX(0);
  }
}

@media (max-width: 767px) {
  .drawer-content-items {
    position: relative;
  }

  .drawer-content-items::before {
    content: "";
    background-image: url(../../dog/image/pc/dog-right.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 20%;
    width: 30%;
    position: absolute;
    bottom: 6rem;
    right: 0rem;
  }

  .drawer-content-item {
    transition: color 0.4s;
    position: relative;
  }

  .drawer-content-item:first-child {
    margin-top: 50px;
  }

  .drawer-content-item:hover {
    color: #DCC8BB;
  }
}

.drawer-content-item a {
  display: block;
  color: #9B6112;
  padding: 20px;
  text-align: center;
  font-size: 1.6rem;
}

.drawer-content-item:last-child {
  border-top: 2px solid #9B6112;
  padding-top: 1.7rem;
  margin: 1rem auto 0;
  width: 50%;
}

/* top */
.fv {
  background-image: url(../image/pc/fv-img.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  width: 100%;
  position: relative;
}

@media (max-width: 767px) {
  .fv {
    background-image: url(../image/sp/fv-img.jpg);
    background-position: 13% 50%;
  }
}

.fv::after {
  content: "";
  background-image: url(../image/pc/onpu.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 300px;
  width: 200px;
  position: absolute;
  top: 20%;
  left: 2%;
}

@media (max-width: 767px) {
  .fv::after {
    height: 150px;
    width: 120px;
    top: 20%;
    left: 5%;
  }
}

.top-container-logo {
  position: absolute;
  top: 30%;
  right: 0;
  width: 45%;
}

@media (max-width: 767px) {
  .top-container-logo {
    top: 60%;
    left: 44%;
    width: 55%;
  }
}

.top-page {
  position: fixed;
  bottom: 100px;
  right: 50px;
  font-weight: bold;
  padding: 0.7em;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  width: 3%;
  z-index: 100000;
}

@media (max-width: 767px) {
  .top-page {
    width: 8%;
    right: 0;
    bottom: 200px;
  }
}


/* about */
.about {
  background-image: url(../image/pc/about-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 90vh;
  width: 100%;
  position: relative;
}

@media (max-width: 767px) {
  .about {
    height: 80vh;
  }
}

.about::after {
  content: "";
  background-image: url(../image/pc/about-bg-top.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 30vh;
  width: 100%;
  position: absolute;
  top: -20%;
  left: 0;
  z-index: 0;
}

@media (max-width: 767px) {
  .about::after {
    height: 10vh;
    top: -7%;
  }
}

.about::before {
  content: "";
  background-image: url(../image/pc/about-bg-bottom.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 30vh;
  width: 100%;
  position: absolute;
  bottom: -30%;
  left: 0;
  z-index: 0;
}

@media (max-width: 767px) {
  .about::before {
    height: 18vh;
    bottom: -17%;
  }
}

.about-container {
  padding-top: 8rem;
  text-align: center;
}

@media (max-width: 767px) {
  .about-container {
    padding: 0 20px;
    margin-top: -5rem;
  }
}

.about-title {
  font-size: 3.25rem;
  font-weight: bold;
	line-height: 1.3;
}

@media (max-width: 767px) {
  .about-title {
    font-size: 1.5rem;
    padding-top: 2rem;
    line-height: 1.5;
  }
}

.about-text {
  margin-top: 3rem;
  line-height: 2;
}

@media (max-width: 767px) {
  .about-text {
    font-size: .81rem;
  }
}

.hata-left {
  position: absolute;
  top: -15%;
  left: 0;
  z-index: 1;
  width: 60%;
}

@media (max-width: 767px) {
  .hata-left {
    top: -7%;
    width: 80%;
  }
}

.hata-right {
  position: absolute;
  bottom: -15%;
  right: 0;
  z-index: 1;
  width: 65%;
}

@media (max-width: 767px) {
  .hata-right {
    bottom: 0;
    width: 87%;
  }
}

.wood-left {
  position: absolute;
  bottom: 20%;
  left: 10%;
  z-index: 1;
  width: 11%;
}

@media (max-width: 767px) {
  .wood-left {
    bottom: 3%;
  }
}

.wood-right {
  position: absolute;
  bottom: -5%;
  left: 21%;
  z-index: 1;
  width: 11%;
}

@media (max-width: 767px) {
  .wood-right {
    bottom: -3%;
    left: 25%;
  }
}

.dog-right {
  position: absolute;
  bottom: 17%;
  right: 7%;
  z-index: 1;
  width: 25%;
}

@media (max-width: 767px) {
  .dog-right {
    top: 14%;
    right: 3%;
  }
}

/* service */
.service {
  margin-top: 15rem;
}

@media (max-width: 767px) {
  .service {
    padding: 0 20px;
    margin-top: 7rem;
  }
}

.service-container {
  max-width: 1000px;
  margin: 0 auto;
}

.util-title {
  position: relative;
  z-index: 10000;
}

.util-title::before {
  content: "";
  background-image: url(../image/pc/line.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 25%;
  width: 30%;
  position: absolute;
  top: 50%;
  left: 5%;
}

@media (max-width: 767px) {
  .util-title::before {
    width: 24%;
  }
}

.util-title::after {
  content: "";
  background-image: url(../image/pc/line.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 25%;
  width: 30%;
  position: absolute;
  top: 50%;
  right: 5%;
}

@media (max-width: 767px) {
  .util-title::after {
    width: 24%;
  }
}

.service-container span::before {
  content: "";
  width: 60px;
  height: 2px;
  background: #707070;
  position: absolute;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .service-container span::before {
    top: 3rem;
  }
}

.service-item {
  display: flex;
  position: relative;
}

@media (max-width: 767px) {
  .service-item {
    display: block;
  }
}

.service-img {
  width: 500px;
  max-width: 100%;
}

.service-content {
  display: block;
  width: calc(calc(100% - 500px));
  margin-left: 4rem;
}

@media (max-width: 767px) {
  .service-content {
    width: 100%;
    margin-left: 0;
    margin-top: 1.5rem;
  }
}

.service-img-logo {
  margin-left: 1.4rem;
}

@media (max-width: 767px) {
  .service-img-logo {
    width: 80px;
    height: 70px;
  }
}

.service-content-text {
  text-align: center;
  display: flex;
}

@media (max-width: 767px) {
  .service-content-text {
    width: 100%;
    margin: 0 auto;
  }
}

.service-title-sub-1 {
  text-align: left;
  margin-left: 4rem;
}

@media (max-width: 767px) {
  .service-title-sub-1 {
    margin-left: 2.5rem;
  }
}

.service-title-sub-2 {
  text-align: left;
  margin-left: 5rem;
}

@media (max-width: 767px) {
  .service-title-sub-2 {
    margin-left: 3.5rem;
  }
}

.service-title-sub-3 {
  text-align: left;
  margin-left: 6rem;
}

@media (max-width: 767px) {
  .service-title-sub-3 {
    margin-left: 4.3rem;
  }
}

.service-title-sub-4 {
  text-align: left;
  margin-left: 6rem;
}

@media (max-width: 767px) {
  .service-title-sub-4 {
    margin-left: 4.2rem;
  }
}

.service-title-sub-5 {
  text-align: left;
  margin-left: 4rem;
}

@media (max-width: 767px) {
  .service-title-sub-5 {
    margin-left: 2rem;
  }
}

.service-title {
  text-align: left;
  font-size: 2.5rem;
  margin-top: .5rem;
}

@media (max-width: 767px) {
  .service-title {
    font-size: 1.8rem;
  }
}

.service-text {
  text-align: left;
  line-height: 2;
  position: relative;
}

.service-radius-img {
  width: 65%;
  margin-left: -.5rem;
  margin-top: 1rem;
}

@media (max-width: 767px) {
  .service-radius-img {
    width: 65%;
    margin: 0 auto;
  }
}

.service-item:not(:last-child) {
  margin-bottom: 80px;
}

.service-item:nth-child(even) {
  flex-direction: row-reverse;
}

/* news */
.news {
  margin-top: 16rem;
  background-image: url(../image/pc/news-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 70vh;
  width: 100%;
  position: relative;
}

@media (max-width: 767px) {
  .news {
    margin-top: 2rem;
  }
}

.news::after {
  content: "";
  background-image: url(../image/pc/news-bg-top.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 30vh;
  width: 100%;
  position: absolute;
  top: -20%;
  left: 0;
  z-index: 0;
}

@media (max-width: 767px) {
  .news::after {
    height: 15vh;
    top: -2%;
  }
}

.news::before {
  content: "";
  background-image: url(../image/pc/news-bg-bottom.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 30vh;
  width: 100%;
  position: absolute;
  bottom: -27%;
  left: 0;
  z-index: 0;
}

@media (max-width: 767px) {
  .news::before {
    height: 11vh;
    bottom: -11%;
  }
}

.news-container {
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .news-container {
    padding: 0 20px;
  }
}

.news-container span::before {
  content: "";
  width: 60px;
  height: 2px;
  background: #707070;
  position: absolute;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .news-container span::before {
    top: 3rem;
  }
}

.news-items {
  max-width: 600px;
  margin: 0 auto;
}

.newslist {
  max-width: 500px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .newslist {
    font-size: 1rem;
    padding: 0 15px;
  }
}

.newslist li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 20px 10px;
  border-top: 1px solid black;
  line-height: 1.5;
}

.newslist li:last-child {
  border-bottom: 1px solid black;
}

.newslist li time {
  padding-right: 20px;
}

.newslist li a {
  color: #000;
  text-decoration: none;
}


/* contact */
.contact {
  margin-top: 10rem;
}

@media (max-width: 767px) {
  .contact {
    margin-top: 5rem;
  }
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
}
/* 
.contact-container span::before {
  content: "";
  width: 60px;
  height: 2px;
  background: #707070;
  position: absolute;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
} */

@media (max-width: 767px) {
  .contact-container span::before {
    top: 3rem;
    padding: 0 20px;
  }
}

.contact-items {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .contact-items {
    flex-direction: column-reverse;
  }
}

@media (max-width: 767px) {
  .contact-item {
    margin-top: 1rem;
  }
}

table {
  border-collapse: separate;
  border-spacing: 40px;
  font-size: 1.2rem
}

@media (max-width: 767px) {
  table {
    border-spacing: 14px;
    font-size: 1rem;
    padding: 0 20px;
  }
}

.td-1 {
  width: 170px;
  letter-spacing: 2px;
}

.td-2 {
  width: 300px;
  line-height: 1.5;
  letter-spacing: 1.5px;
}

@media (max-width: 767px) {
	.td-3 {
		font-size: 1rem;
	}
}

.td-3 {
	line-height: 1.5;
}

.google_map {
  margin: auto 0;
}

@media (max-width: 767px) {
  .iframe {
    display: block;
    margin: 0 auto;
    max-width: 90%;
  }
}

button a {
  padding: .5rem 2rem;
  border-radius: 10px;
}

.contact-btn {
  text-align: center;
}

@media (max-width: 767px) {
  .contact-btn .util-link {
    margin-top: 3rem;
  }
}

/* footer */
.footer {
  position: relative;
  background: #FAF4E4;
  padding-bottom: 1.5rem;
  margin-top: 30rem;
}

@media (max-width: 767px) {
  .footer {
    padding-bottom: .4rem;
    margin-top: 13rem;
  }
}

.footer-top-img {
  background-image: url(../image/pc/footer_img.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: 100%;
  left: 0;
}

@media (max-width: 767px) {
  .footer-top-img {
    height: 25%;
    width: 100%;
    bottom: 100%;
    left: 0;
  }
}

.footer-nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #000;
  max-width: 600px;
  margin: 0 auto;
  padding-bottom: 1rem;
  font-size: 1.3rem;
}

@media (max-width: 767px) {
  .footer-nav-list {
    flex-wrap: wrap;
    max-width: 300px;
    font-size: 1.1rem;
  }
}

.footer-nav-item {
  list-style: none;
}

@media (max-width: 767px) {
  .footer-nav-item {
    margin: 5px 0;
    width: 30%;
    text-align: center;
  }
}

@media (min-width: 767px) {
  .footer-nav-item:not(:first-child) {
    margin-left: 70px;
  }
}

.footer-nav-item-link {
  color: #000;
  font-weight: bold;
}

.footer-nav-item-link:hover {
  opacity: .5;
}

.footer-service {
  text-align: center;
}

.footer-service-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 3rem;
}

@media (max-width: 767px) {
  .footer-service-title {
    margin-top: 2rem;
  }
}

.footer-service-title a {
  color: #000;
  font-weight: bold;
}

.footer-service-title a:hover {
  opacity: .5;
}

.footer-nav-list-service {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  list-style: none;
}

@media (max-width: 767px) {
  .footer-nav-list-service {
    flex-wrap: wrap;
    font-size: .9rem;
    margin-top: 1.5rem;
  }
}

.footer-nav-item-service:not(:first-child) {
  margin-left: 40px;
}

@media (max-width: 767px) {
  .footer-nav-item-service:not(:first-child) {
    margin-left: 20px;
  }
}

@media (max-width: 767px) {
  .footer-nav-item-service {
    padding-bottom: 1rem;
  }
}

.footer-nav-item-link-service {
  color: #000;
  margin-top: 3rem;
}

.footer-nav-item-link-service:hover {
  opacity: .5;
}

.footer-copy-right {
  border-top: 1px solid #000;
  margin-top: 3rem;
  padding-top: 1.5rem;
}

@media (max-width: 767px) {
  .footer-copy-right {
    padding: 1.5rem;
    margin-top: 1rem;
  }
}

.top-page {
  position: fixed;
  bottom: 100px;
  right: 50px;
  font-weight: bold;
  padding: 0.7em;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  width: 3%;
  z-index: 5000;
}

@media (max-width: 767px) {
  .top-page {
    width: 8%;
    right: 0;
    bottom: 80px;
  }
}

.footer-title {
  margin-top: 2.6rem;
  font-size: 1.4rem;
}

@media (max-width: 767px) {
  .footer-title {
    margin-top: 1rem;
    font-size: 1.4rem;
  }
}

.footer-nav-item-another {
  margin-top: 1.3rem;
}

.footer-nav-item-another a {
  color: #000;
}

.footer-nav-item-another:hover {
  opacity: .5;
}

/* model */
.model {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000000;
  display: none;
}

.model-bg {
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}



/* news詳細ページ */
/* .news {
  padding-top: 100px;
} */
.news-container {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 100px;
}
.news__title {
  font-size: 30px;
  font-weight: 700;
  padding-left: 16px;
  position: relative;
  margin-bottom: 10px;
}
.news__title::before {
  position: absolute;
  content: '';
  width: 8px;
  height: 100%;
  background: #9DBDBB;
  border-radius: 40px;
  top: 0;
  left: 0;
}
.news__time {
  font-size: 14px;
}
.news__contents {
  margin-top: 30px;
  line-height: 1.7;
}
.wp-post-image {
  object-fit: cover;
  max-width: 100%;
}

.contact-sub-text {
	font-size: .75rem;
}
