@charset "UTF-8";
/*======================
  reset
======================*/

html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
p,
a,
img,
dl,
dt,
dd,
ol,
ul,
li,
label,
table,
tbody,
tr,
th,
td,
figure,
blockquote {
  border: 0;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

article,
aside,
figure,
footer,
header,
nav,
section {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s linear;
}

li {
  list-style: none;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

video {
  height: auto;
  max-width: 100%;
}

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

tr,
th,
td {
  vertical-align: middle;
}

input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}

small {
  font-size: inherit;
}

html,
body {
  height: 100%;
}

/* -----------------------------------------------------------------
 common
----------------------------------------------------------------- */

/*======================
  base
======================*/

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #6c5042;
  line-height: 2.5;
  letter-spacing: 0.1em;
  font-size: 20px;
}

.sp-only,
.sp-only-header {
  display: none;
}

.pc-only {
  display: block;
}

.bold {
  font-weight: bold;
}

.medium {
  font-weight: 500;
}

:target {
  scroll-margin-top: 140px;
}

/************************
　スクロールアニメーション用
*************************/

.fadeIn {
  opacity: 0;
  transition: opacity 800ms;
}

.fadeIn.is-scrolled {
  opacity: 1;
}

.fadeInUp {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 800ms,
    transform 800ms;
}

.fadeInUp.is-scrolled {
  opacity: 1;
  transform: translateY(0);
}

.fadeInLeft {
  opacity: 0;
  transform: translateX(-20px);
  transition:
    opacity 800ms,
    transform 800ms;
}

.fadeInLeft.is-scrolled {
  opacity: 1;
  transform: translateX(0);
}

.fadeInRight {
  opacity: 0;
  transform: translateX(20px);
  transition:
    800ms,
    transform 800ms;
}

.fadeInRight.is-scrolled {
  opacity: 1;
  transform: translateX(0);
}

/* ----------------------
  animation
---------------------- */

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/*======================
  header
======================*/

header {
  position: fixed;
  width: 100%;
  z-index: 999;
}

.header-inner {
  height: 140px;
  background-color: #fcfaf5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
}

.header-logo {
  width: 150px;
  line-height: 0;
  z-index: 999;
}

.logo {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.logo p {
  margin-bottom: 12px;
}

.logo img {
  width: 100%;
  line-height: 0;
  vertical-align: baseline;
}

/*=======================
  gnav
=======================*/

.gnav-list {
  display: flex;
  font-size: 16px;
  gap: 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  align-items: center;
}

.gnav-item a {
  transition: 0.3s linear;
}

.gnav-contact {
  color: #fff;
  background-color: #6c5042;
  border: 1px solid #6c5042;
  transition: 0.3s linear;
}

.gnav-contact:hover {
  background-color: transparent;
  color: #6c5042;
}

/*** 二階層目のサブメニュー ***/
.has-child {
  visibility: hidden;
  /*非表示*/
  transform: scale(1, 0);
  /*高さを0に*/
  transform-origin: top;
  /*上からアニメーション*/
  opacity: 0;
  transition: 0.3s;
  background: #fff;
  color: #6c5042;
  font-size: 14px;
  position: absolute;
  padding: 15px 21px;
  border-radius: 12px;
  margin-top: 16px;
  width: 154px;
}

nav ul li.gnav-item-service {
  padding-right: 25px;
  position: relative;
}

nav ul li.gnav-item-service::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/material-symbols_arrow-drop-down-rounded.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 4px;
  right: -2px;
  height: 20px;
  width: 20px;
}

nav ul li.gnav-item-service:hover::before {
  background-image: url(./assets/images/material-symbols_arrow-drop-down-rounded-w.png);
}

/* 装飾用 */
.has-child li:not(:last-child) {
  margin-bottom: 10px;
}

.has-child li:hover {
  color: #9c9c9c;
}

.gnav-item:not(:last-child):hover {
  color: #9c9c9c;
}

/*hoverしたら表示*/
.gnav-item-service:hover > .has-child,
.gnav-item-service:active > .has-child {
  visibility: visible;
  opacity: 1;
  transform: scale(1, 1);
}

/*======================
  footer
======================*/

footer {
  background-color: #fcfaf5;
  padding: 46px 0 14px 0;
}

.footer-inner {
  max-width: 1467px;
  margin: 0 auto;
  padding: 0 60px;
}

.footer-box {
  font-size: 16px;
  display: flex;
  width: 100%;
  margin-bottom: 48px;
  justify-content: space-between;
}

.footer-logo {
  display: block;
  width: 166px;
}

.footer-logo img {
  width: 100%;
}

.footer-textarea {
  display: flex;
  padding-top: 39px;
  margin-left: 50px;
  line-height: 1.7;
}

.footer-name {
  font-size: 22px;
  margin-bottom: 18px;
}

.footer-address,
.footer-phonenumber {
  margin-bottom: 26px;
  margin-left: 44px;
}

.footer-address {
  position: relative;
}

.footer-address::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/TOP/Vector.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 20px;
  top: 3px;
  left: -39px;
}

.footer-phonenumber {
  position: relative;
}

.footer-phonenumber::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/TOP/Vector-1.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  top: 3px;
  left: -38px;
}

.footer-nav {
  display: flex;
  margin-left: 175px;
  font-weight: 500;
}

.footer-nav-left,
.footer-nav-right {
  display: flex;
}

.footer-nav-left {
  margin-right: 60px;
}

.footer-items,
.footer-items-service {
  display: flex;
  flex-direction: column;
}

.footer-items {
  gap: 28px;
}

.footer-items a:hover {
  color: #9c9c9c;
}

.footer-items:not(:last-child) {
  margin-right: 95px;
}

.footer-items-service {
  gap: 14px;
  font-weight: 400;
}

.footer-items-service a {
  position: relative;
  margin-left: 44px;
}

.footer-items-service a::before {
  position: absolute;
  content: "";
  background-color: #5c3826;
  width: 11px;
  height: 1px;
  display: block;
  position: absolute;
  left: -22%;
  bottom: 44%;
}

.footer-items-service a:hover::before {
  background-color: #9c9c9c;
  transition: 0.3s linear;
}

.footer-contact-btn {
  color: #5c3826;
  border: 1px solid #5c3826;
}

.footer-contact-btn:hover {
  background-color: #5c3826;
  color: #fff;
}

.footer-copyright {
  text-align: center;
  font-size: 12px;
  line-height: 1.7;
}

/*======================
  section-head
======================*/

.section-head {
  padding: 206px 0 120px 0;
  background-color: #fcfaf5;
}

.section-head-inner {
  max-width: 1616px;
  margin: 0 auto;
}

.breadcrumb {
  margin-left: 9%;
  margin-bottom: 34px;
  max-width: 1000px;
}

.breadcrumb-list {
  color: #9c9c9c;
  font-size: 12px;
  display: flex;
}

.breadcrumb-item a:hover {
  opacity: 0.4;
}

.breadcrumb-item > a.is-current {
  pointer-events: none;
}

.breadcrumb-item {
  white-space: nowrap;
}

.breadcrumb-item:not(:last-child) {
  margin-right: 21px;
  position: relative;
}

.breadcrumb-item:not(:last-child)::after {
  content: "/";
  position: absolute;
  font-size: 12px;
  right: -13px;
  top: 0;
}

.breadcrumb-item:last-child {
  padding-right: 50px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section-heading {
  text-align: center;
  line-height: 2;
  font-size: 32px;
}

/*=======================
  btn
=======================*/

.btn-white {
  color: #8a6857;
  border: 1px solid #8a6857;
  transition:
    color 0.3s linear,
    background-color 0.3s linear;
}

.btn-white:hover {
  color: #fff;
  background-color: #8a6857;
}

.detail-btn {
  padding: 10px 54px 10px 30px;
  position: relative;
  line-height: 1.45;
  transition: 0.3s linear;
}

.detail-btn::after {
  background-image: url(./assets/images/fe_arrow-left.png);
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  bottom: 11px;
  right: 30px;
  background-size: contain;
  transition: background-image 0.3s linear;
}

.detail-btn:hover::after {
  background-image: url(./assets/images/fe_arrow-left-w.png);
}

.btn {
  border-radius: 50px;
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s linear;
}

.contact-btn {
  padding: 7px 20px;
  line-height: 1.7;
  font-weight: 500;
  transition: 0.3s linear;
}

/*=======================
  renovate,gardening,exterior
=======================*/

.single-head {
  padding: 206px 0 0 0;
  position: relative;
}

.single-head::before {
  position: absolute;
  content: "";
  background-color: #fcfaf5;
  height: 82%;
  width: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}

.single-breadcrumb {
  margin-bottom: 64px;
}

.single-head-box {
  display: flex;
  align-items: center;
}

.single-head-img {
  width: 59.9%;
}

.single-head-img img {
  border-radius: 0px 80px 80px 0px;
}

.single-head-box h1 {
  font-size: 32px;
  line-height: 1.7;
  width: 40.1%;
  text-align: center;
  padding: 0 20px;
}

.service-detail {
  padding: 160px 0 200px 0;
}

.service-detail-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 73px;
  text-align: center;
}

.service-detail-desc {
  margin-bottom: 160px;
}

.renovate-sp-only > span {
  font-size: 36px;
}

.service-detail-desc p:first-child {
  margin-bottom: 40px;
}

.service-detail-desc p:nth-child(2) {
  margin-bottom: 50px;
}

.service-detail-gallery {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 160px;
}

.service-detail-gallery img {
  width: calc(33.33% - 54px * 2 / 3);
  border-radius: 10px;
}

.service-works-desc {
  max-width: 1318px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 100px;
}

.service-works-banner {
  display: block;
  height: 170px;
  max-width: 602px;
  margin: 0 auto;
  transition: 0.3s linear;
}

.service-works-banner:hover {
  opacity: 0.5;
}

/* -----------------------------------------------------------------
 top-page
----------------------------------------------------------------- */

/*=======================
  common parts
=======================*/

.top-section-textarea {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.text-body {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/*=======================
  fv
=======================*/

.fv {
  position: relative;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  padding-top: 140px;
}

.fv-img {
  margin-inline-start: 0;
  margin-inline-end: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}

.fv-img img {
  width: 100%;
  height: 68vh;
  object-fit: cover;
  border-radius: 80px 0px 0px 80px;
}

.fv::before {
  position: absolute;
  content: "";
  background-color: #fcfaf5;
  height: 60%;
  width: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}

.fv-slider {
  max-width: 76%;
  margin-left: auto;
  position: relative;
}

.fv-slider::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/蜂.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 66%;
  left: -25%;
  width: 19%;
  height: 23%;
  z-index: 1;
}

.fv-text {
  position: absolute;
  top: 34%;
  left: 11%;
  display: flex;
  flex-direction: column;
}

.fv-text-first {
  width: fit-content;
  margin-bottom: 10px;
}

.fv-text p {
  font-size: 50px;
  line-height: 1.7;
  background-color: #fff;
  padding: 14px 30px;
  display: inline-block;
}

.fv-news {
  padding: 25px 0;
}

.fv-news-inner {
  max-width: 1217px;
  padding: 0 40px;
  margin: 0 auto;
}

.fv-news-box {
  font-size: 16px;
  line-height: 1.7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px dashed #8a6857;
  padding: 38px 0;
}

.fv-news-inner article {
  width: 50%;
}

.fv-news-inner article > a:hover {
  color: #9c9c9c;
}

.top-news-post-body {
  display: flex;
}

.top-news-title {
  font-size: 16px;
  font-weight: 400;
  margin-left: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

/*=======================
  about
=======================*/

.top-about {
  background-image: url(./assets/images/TOP/about-bg.png);
  background-size: cover;
  background-position: bottom;
  padding: 140px 0;
}

.about-inner {
  max-width: 1367px;
  margin: 0 auto;
  padding: 0 128px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  line-height: 1.45;
  margin-bottom: 28px;
  margin-left: 25px;
}

.about-title {
  margin-bottom: 80px;
  margin-left: 0;
}

.about-desc p:not(:last-child) {
  margin-bottom: 30px;
}

.about-desc p:nth-child(3) {
  margin-bottom: 60px;
}

.top-section-inner {
  display: flex;
  align-items: center;
  width: 71.1%;
  margin: 0 auto;
  gap: 54px;
}

/*=======================
  service
=======================*/

.top-service {
  padding: 140px 0 105px 0;
  background-image: url(./assets/images/wave\ \(2\)\ 1.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
}

.service-img {
  position: relative;
}

.service-img::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/TOP/猫.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 82%;
  left: -17%;
  width: 27.9%;
  height: 38.2%;
}

.service-title {
  position: relative;
}

.service-title::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/TOP/1.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: -105%;
  left: -4%;
  width: 100%;
  height: 70px;
  z-index: -1;
}

/*=======================
  showroom
=======================*/

.top-showroom {
  padding: 105px 0;
  background-color: #f8f3e9;
  z-index: -2;
}

.showroom-title {
  position: relative;
  z-index: 1;
}

.showroom-title::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/TOP/2.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: -105%;
  left: -4%;
  width: 100%;
  height: 70px;
  z-index: -1;
}

/*=======================
  works
=======================*/

.top-works {
  padding: 105px 0 140px 0;
  background-image: url(./assets/images/wave\ \(4\)\ 1.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
}

.works-title {
  position: relative;
}

.works-title::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/TOP/3.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: -105%;
  left: -4%;
  width: 100%;
  height: 70px;
  z-index: -1;
}

.works-title::after {
  position: absolute;
  content: "";
  background-image: url(./assets/images/TOP/猫2.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: -32%;
  left: 154px;
  width: 16%;
  height: 52px;
}

.showroom-inner {
  flex-direction: row-reverse;
}

.top-section-img,
.top-section-textarea {
  width: 47.9%;
}

.top-section-img img {
  border-radius: 70px 10px;
}

/*=======================
  instagram
=======================*/

.top-instagram {
  padding: 140px 0 200px 0;
}

.instagram-inner {
  margin: 0 auto;
}

.instagram-title {
  font-family: YuGothic, sans-serif;
  text-align: center;
  margin-left: 0;
  margin-bottom: 42px;
}

.top-instagram-box {
  max-width: 68%;
  margin: 0 auto;
  position: relative;
}

.top-instagram-box::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/TOP/bee-flower.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18%;
  height: 210px;
  top: -5%;
  right: -22%;
}

.acc-first {
  padding-bottom: 120px;
  border-bottom: 2px dashed #8a6857;
}

.acc-second {
  padding-top: 120px;
}

.acc-second::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/company/綿毛.png);
  transform: scale(-1, 1);
  background-repeat: no-repeat;
  background-size: contain;
  width: 13%;
  height: 174px;
  top: 67%;
  left: -19%;
}

/* -----------------------------------------------------------------
 service-page
----------------------------------------------------------------- */

.service {
  padding: 240px 0 200px 0;
}

.service-inner {
  max-width: 100%;
  margin: 0 auto;
}

.service-item {
  padding: 0 60px;
}

.service-item-box {
  display: flex;
  justify-content: space-between;
  max-width: 1620px;
  margin: 0 auto;
}

.renovate-box,
.gardening-box {
  padding-bottom: 120px;
  border-bottom: 2px dashed #8a6857;
}

.service-item:not(:first-child) {
  padding-top: 120px;
}

.service-item-img {
  width: 42%;
}

.service-item-img img {
  border-radius: 10px;
}

.service-item-text {
  width: 51.9%;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.service-item-title {
  font-size: 28px;
  line-height: 1.7;
  margin-bottom: 50px;
}

.service-text-body {
  margin-bottom: 40px;
}

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

.service-item-text > .service-btn {
  text-align: right;
}

.renovate {
  background-image: url(./assets/images/service/rectangle-yellow.jpg);
  background-repeat: no-repeat;
  background-size: 346px 356px;
  background-position-x: 100%;
  background-position-y: 79%;
}

.gardening {
  background-image: url(./assets/images/service/rectangle-pink.jpg);
  background-repeat: no-repeat;
  background-size: 429px 419px;
  background-position-x: 0%;
  background-position-y: 304px;
  position: relative;
}

.gardening::before {
  position: absolute;
  background-image: url(./assets/images/綿毛.png);
  content: "";
  left: 0%;
  top: 600px;
  width: 165px;
  height: 174px;
  background-size: contain;
}

.exterior {
  background-image: url(./assets/images/service/rectangle-green.jpg);
  background-repeat: no-repeat;
  background-size: 302px 295px;
  background-position-x: 95%;
  background-position-y: 120px;
}

/* -----------------------------------------------------------------
 showroom-page
----------------------------------------------------------------- */

.showroom {
  padding-top: 170px;
}

.showroom-inner {
  max-width: 100%;
  margin: 0 auto;
}

/*=======================
  about
=======================*/

.showroom-about {
  padding-bottom: 160px;
  position: relative;
  background-image: url(./assets/images/showroom/展示場植物bg上部.jpg);
  background-size: cover;
  z-index: -2;
}

.showroom-about::after {
  position: absolute;
  content: "";
  background-image: url(./assets/images/showroom/wave\ \(5\).png);
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.showroom-about-heading {
  font-size: 28px;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 160px;
  padding: 0 80px;
}

.showroom-about-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1582px;
  margin: 0 auto;
  padding: 0 80px;
}

.showroom-about-img {
  width: 40.1%;
}

.showroom-about-img img {
  border-radius: 10px;
}

.showroom-about-textarea {
  width: 50.6%;
}

.showroom-about-textarea p {
  text-align: left;
  font-size: 20px;
}

.showroom-about-textarea p:first-child {
  margin-bottom: 50px;
}

.showroom-info p:first-child {
  margin-bottom: 6px;
}

/*=======================
  gallery
=======================*/

.showroom-gallery {
  padding: 120px 0 190px 0;
  background-color: #f8f3e9;
}

.showroom-gallery h2 {
  font-size: 32px;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 120px;
}

.showroom-gallery p {
  font-size: 24px;
  line-height: 1.7;
  text-align: right;
  margin-right: 10.4%;
}

.showroom-gallery-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}

.showroom-gallery-list img:first-child {
  width: 25.9%;
  height: 100%;
  border-radius: 0px 10px 10px 0px;
}

.showroom-gallery-items {
  display: flex;
  flex-direction: column;
  margin-top: 10.4%;
  width: 23.2%;
}

.showroom-gallery-items img {
  border-radius: 10px;
}

.showroom-gallery-list > .showroom-gallery-items img:first-child {
  width: 100%;
  height: 100%;
  margin-bottom: 48px;
  border-radius: 10px;
}

.showroom-gallery-list > .showroom-gallery-items img:last-child {
  width: 100%;
  height: 100%;
}

.showroom-gallery-list img:nth-child(3) {
  width: 22.4%;
  height: 100%;
  border-radius: 10px;
}

.showroom-gallery-list img:nth-child(4) {
  width: 21%;
  height: 100%;
  margin-top: 5.4%;
  border-radius: 10px 0px 0px 10px;
}

/*=======================
  showroom-lower
=======================*/

.showroom-lower {
  background-image: url(./assets/images/showroom/展示場植物bg下部.jpg);
  background-size: cover;
  z-index: -2;
  background-position: top;
}

.tsutanoha::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/showroom/wave\ \(6\).png);
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  top: 0;
  left: 0;
  z-index: 0;
}

.tsutanoha {
  z-index: 1;
  padding-bottom: 240px;
  position: relative;
}

.tsutanoha-box {
  display: flex;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 80px;
}

.tsutanoha-left {
  max-width: 790px;
  margin-right: 40px;
  z-index: 0;
}

.tsutanoha-left-textarea {
  font-size: 20px;
  margin-bottom: 36%;
}

.tsutanoha-left-textarea p:first-child {
  margin-bottom: 70px;
}

.tsutanoha-left-textarea p:nth-child(2) {
  margin-bottom: 22px;
}

.payment {
  margin-bottom: 22px;
}

.payment p {
  margin-right: 12px;
}

.payment img {
  height: 34px;
}

.tsutanoha-left-textarea > .tsutanoha-info > .payment p,
.tsutanoha-left-textarea > .tsutanoha-info > .instagram p {
  margin-bottom: 0;
}

.payment,
.instagram {
  display: flex;
  align-items: center;
}

.instagram:hover {
  opacity: 0.5;
}

.instagram img {
  height: 30px;
  margin-right: 12px;
}

.instagram p {
  font-size: 16px;
  line-height: 1.7;
}

.tsutanoha-left-img {
  width: 79%;
}

.tsutanoha-right {
  max-width: 630px;
  margin-top: 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 0;
}

.tsutanoha-right-img {
  width: 91.9%;
  margin-bottom: 30%;
}

.tsutanoha-left-img img,
.tsutanoha-right-img img {
  border-radius: 10px;
}

.tsutanoha-right-textarea p {
  text-align: left;
}

/*=======================
  access
=======================*/

.showroom-access {
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 170px;
}

.showroom-access-box {
  display: flex;
  justify-content: flex-end;
  margin-right: 13.3%;
  align-items: center;
}

.access-title {
  margin-bottom: 100px;
}

.showroom-map {
  width: 46%;
  height: auto;
  position: relative;
  margin-bottom: 30px;
  padding-top: 28.1%;
}

.showroom-map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.showroom-access-info {
  text-align: left;
  margin-left: 68px;
}

.access-company-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 26px;
}

.access-address p {
  line-height: 1.7;
}

.access-address p:not(:last-child) {
  margin-bottom: 6px;
}

/* -----------------------------------------------------------------
 news-page
----------------------------------------------------------------- */

.news {
  padding: 110px 0 200px 0;
}

.news-inner {
  max-width: 1100px;
  padding: 0 50px;
  margin: 0 auto;
}

.news-post a {
  display: flex;
  padding: 50px 0;
}

.news-post-thumbnail {
  width: 165px;
  height: 108px;
  overflow: hidden;
}

.news-post-thumbnail img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-post-body {
  margin-left: 44px;
  max-width: 67%;
}

.news-post {
  border-bottom: 2px dashed #8a6857;
}

.news-post a {
  margin-left: 68px;
}

.news-post a:hover {
  opacity: 0.5;
}

.date {
  line-height: 1.7;
  font-size: 14px;
  margin-bottom: 20px;
}

.news-title {
  font-size: 18px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

/*=======================
  pager
=======================*/

.pager {
  padding-top: 120px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 30px;
  list-style-type: none;
  padding: 0;
}

.pagination a,
.pagination span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 57px;
  height: 57px;
  border: 2px solid #6c4c42;
  border-radius: 50%;
  color: #6c4c42;

  font-family:
    Patua One,
    sans-serif;
  font-size: 20px;
  line-height: 1.7;
}

.pagination a:hover {
  background-color: #6c4c42;
  color: #fff;
}

.pagination a:not(:hover) {
  text-decoration: none;
}

.pagination .current {
  background-color: #6c4c42;
  color: #fff;
  pointer-events: none;
}

.nav-links {
  display: flex;
  gap: 30px;
}

/* -----------------------------------------------------------------
 news-single-page
----------------------------------------------------------------- */

.breadcrumb-news {
  margin-bottom: 0;
}

.section-head-news {
  background-color: #fff;
}

.news-single {
  padding-bottom: 200px;
}

.news-single-inner {
  max-width: 1200px;
  padding: 0 100px;
  margin: 0 auto;
}

.news-single-inner article {
  width: 100%;
}

.date,
.news-title-single {
  line-height: 1.7;
}

.date {
  margin-bottom: 20px;
  font-size: 16px;
}

.news-title-single {
  margin-bottom: 60px;
  font-size: 24px;
}

.news-post-thumbnail-single {
  margin-bottom: 60px;
}

.news-post-thumbnail-single img {
  width: 100%;
  border-radius: 10px;
}

.wp-block-image img {
  border-radius: 10px;
}

.news-content {
  line-height: 2;
  font-size: 18px;
}

.news-content img {
  border-radius: 10px;
}

/* -----------------------------------------------------------------
 company-page
----------------------------------------------------------------- */

.company-upper {
  padding: 170px 0 258px 0;
  background-color: #fcfaf5;
  position: relative;
}

.company-upper::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/wave\ \(2\)\ 1.png);
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  bottom: 0;
  right: 0;
}

.company-lower {
  padding: 240px 0;
  position: relative;
  max-width: 100%;
}

.company-lower::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/wave\ \(4\)\ 1.png);
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  top: 0;
  left: 0;
}

.history-item,
.qualified-list,
.membership-list {
  line-height: 2;
}

/*======================
  overview
======================*/

.company-overview {
  padding-bottom: 230px;
}

.company-overview-box {
  display: flex;
  justify-content: space-between;
  max-width: 1355px;
  padding: 0 80px;
  margin: 0 auto;
}

.overview-title {
  margin-right: 40px;
  white-space: nowrap;
}

.company-overview-desc {
  width: 81.5%;
}

/*======================
  greeting
======================*/

.company-greeting-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1495px;
  padding: 0 40px;
  margin: 0 auto;
}

.company-greeting-img {
  width: 38.3%;
}

.company-greeting-img img {
  border-radius: 40px 5px;
}

.company-greeting-textarea {
  width: 53.9%;
}

.greeting-title {
  margin-bottom: 46px;
}

/*======================
  history
======================*/

.company-history {
  background-color: #f8f3e9;
  padding: 70px 0;
  position: relative;
}

.company-history::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/蜂.png);
  transform: rotate(-10deg) scale(-1, 1);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15.2%;
  height: 195px;
  bottom: 95%;
  right: 6%;
}

.company-history-box {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.history-title {
  margin-bottom: 50px;
}

.history-list {
  font-size: 24px;
  max-width: 782px;
  padding: 0 80px;
  margin: 0 auto;
}

.history-item {
  display: flex;
}

.history-item:not(:last-child) {
  margin-bottom: 10px;
}

.history-item p:first-child {
  margin-right: 50px;
}

/*======================
  lower
======================*/

.company-lower {
  display: flex;
  justify-content: space-between;
}

.company-lower-textarea {
  margin-left: 12.5%;
  width: 38%;
}

.qualified-title,
.membership-title {
  margin-bottom: 48px;
}

.qualified-list li,
.membership-list li:not(:last-child) {
  margin-bottom: 16px;
}

.qualified {
  margin-bottom: 140px;
}

.company-lower-img {
  width: 46.4%;
  height: 100%;
  margin-top: 87px;
}

/*======================
  access
======================*/

.company-access {
  padding-bottom: 186px;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  background-image: url(./assets/images/company/綿毛.png);
  background-repeat: no-repeat;
  background-size: 164px 174px;
  background-position-x: 94%;
  background-position-y: 77%;
}

.access-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  max-width: 1563px;
  padding: 0 80px;
  margin: 0 auto;
}

.company-access-title {
  margin-bottom: 80px;
}

.map {
  width: 54%;
  height: auto;
  position: relative;
  margin-bottom: 30px;
  padding-top: 34.1%;
}

.map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.company-access-textarea {
  line-height: 2;
  margin-left: 30px;
  width: 40%;
}

.company-access-textarea img {
  width: 120px;
  right: 0;
  bottom: 0;
}

.company-access-textarea div {
  display: flex;
}

.company-access-textarea p:not(:last-child) {
  margin-bottom: 6px;
}

.company-access-textarea div > p:not(:last-child) {
  white-space: nowrap;
}

/* -----------------------------------------------------------------
 staff-page
----------------------------------------------------------------- */

.section-head-staff {
  position: relative;
}

.section-head-staff::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/蜂.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15.2%;
  height: 170px;
  top: 80%;
  left: 79%;
}

.staff {
  padding: 200px 0;
}

.staff-inner {
  max-width: 1250px;
  padding: 0 80px;
  margin: 0 auto;
}

.staff-item {
  display: flex;
  max-width: 1150px;
  margin: 0 auto;
}

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

.staff-img {
  width: 288px;
}

.staff-img img {
  border-radius: 40px 5px;
}

.staff-textarea {
  width: 71%;
  margin-left: 4.6%;
}

.staff-position {
  font-size: 12px;
}

.staff-position,
.staff-name-jp,
.staff-name-en {
  line-height: 1.7;
}

.staff-name {
  display: flex;
  align-items: center;
  margin-top: 8px;
}

.staff-name-jp {
  margin-right: 8px;
  font-size: 18px;
}

dt {
  line-height: 1.45;
  padding: 2px 5px;
  display: inline-block;
  border-radius: 5px;
  margin-bottom: 8px;
}

.staff-detail {
  margin-top: 24px;
  line-height: 0;
}

.qualification {
  background-color: #f2cfbc;
}

.intro {
  background-color: #e9f2e7;
}

.comment {
  background-color: #fff0ad;
}

dd {
  font-size: 16px;
  line-height: 1.85;
}

dd:not(:last-child) {
  margin-bottom: 16px;
}

.staff-position,
.staff-name-en,
dt {
  font-size: 12px;
}

/* kotoe emura */
.comment-insta {
  display: flex;
  justify-content: space-between;
}

.comment-box {
  max-width: 629px;
}

.instagram-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.instagram-box:hover {
  opacity: 0.5;
}

.instagram-acc {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.instagram-acc img {
  width: 20px;
  height: 20px;
}

.instagram-acc p {
  font-size: 12px;
  line-height: 1.85;
  margin-left: 8px;
}

.insta-qr {
  width: 89px;
  height: 89px;
}

/* -----------------------------------------------------------------
 404-page
----------------------------------------------------------------- */

.c-404 {
  padding: 290px 0 150px 0;
}

.l-404-inner {
  text-align: center;
}

.c-404__description {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.c-404__link {
  margin-top: 40px;
  text-decoration: underline;
}

/* -----------------------------------------------------------------
 index-page
----------------------------------------------------------------- */

.index-inner {
  padding: 160px 0 200px 0;
}

.content-text {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 0 50px;
}

/* -----------------------------------------------------------------
 works-page
----------------------------------------------------------------- */
.section.works {
  padding: 240px 0 200px 0;
}

.works-inner {
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 50px;
}

.works-list-wrap {
  display: grid;
  grid-template-columns: 320px 320px 320px;
  gap: 40px 20px;
}

.works-list .link {
  transition: opacity 0.4s;
}

.works-list .link:hover {
  opacity: 0.8;
}

.works-list img {
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.works-list .noimage {
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  background: center / auto no-repeat url(./assets/images/news/cat_thumbnail.png) #fff0ad;
}

.txt-day {
  font-size: 14px;
  margin: 0 1em 0 0;
}

.tag-cat {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  min-width: 108px;
  padding: 0.5em 1em;
  background: #e9f2e7;
  border-radius: 2em;
}

.tag-cat + .tag-cat{
  margin-left: 10px;
}  

a.tag-cat{
  transition: opacity 0.4s;
}

a.tag-cat:hover{
  opacity: 0.8;
}

.tag-cat.cat-exterior {
  background: #f8f3e9;
}

.tag-cat.cat-gardening {
  background: #fff0ad;
}

.works-list .post-texts {
  line-height: 1.4;
  margin: 0;
}

.works-list .ttl-post {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 10px 0 0;
}

/* -----------------------------------------------------------------
 works-single-page
 taxonomy-cat_works
----------------------------------------------------------------- */

.works-title-single {
  padding-bottom: 20px;
  border-bottom: 2px dashed #8a6857;
}

.category-title{
  font-size: 20px;
  margin-bottom: 20px;
}

/* -----------------------------------------------------------------
 contact-page
----------------------------------------------------------------- */
.section.contact {
  padding: 240px 0 200px 0;
}

.contact-inner {
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 50px;
}

.dl-contact {
  padding: 60px 0;
}

.section.contact dt {
  display: flex;
  align-items: center;
  gap: 1em;
  font-size: 18px;
  font-weight: 700;
}

.section.contact dd:not(:last-child) {
  margin-bottom: 20px;
}

.section.contact .req {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 0.5em;
  line-height: 1;
  border-radius: 5px;
  background: #f2cfbc;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  margin: 4px 0 0;
  padding: 0.8em 1em;
  font-size: 16px;
  line-height: 1.4rem;
  background: #fcfaf5;
  border-radius: 10px;
  box-sizing: border-box;
  border: none;
}

input[type="radio"] {
  accent-color: #6c5042;
  inline-size: 16px;
  block-size: 16px;
  margin: auto 4px auto auto;
}

textarea {
  width: 100%;
  height: 20em;
  margin: 4px 0 0;
  padding: 1em;
  font-size: 16px;
  line-height: 1.4rem;
  background: #fcfaf5;
  border-radius: 10px;
  border: none;
  box-sizing: border-box;
}

.wpcf7-list-item label {
  display: flex;
  gap: 4px;
  cursor: pointer;
}

.wpcf7-list-item,
.wpcf7-list-item.first {
  margin: 0 1em 0 0;
}

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

.btn-wrap input[type="submit"] {
  position: relative;
  display: block;
  width: 180px;
  height: 40px;
  margin: 0 auto 40px;
  padding: 0;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  background: 84% center / 14px 14px no-repeat url(./assets/images/fe_arrow-left-w.png) #8a6857;
  text-align: center;
  line-height: 1;
  overflow: hidden;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.4s;
}

input[type="submit"]:hover {
  opacity: 0.8;
}

.wpcf7 form .wpcf7-response-output {
  text-align: center;
}

@media screen and (max-width: 1440px) {
  /* -----------------------------------------------------------------
 common
----------------------------------------------------------------- */

  body {
    font-size: 18px;
  }

  .single-head-box h1 {
    font-size: 26px;
  }

  .renovate-sp-only > span {
    font-size: 32px;
  }

  /*======================
  footer
======================*/

  footer {
    background-color: #fcfaf5;
    padding: 46px 0 14px 0;
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
  }

  .footer-logo {
    display: block;
    width: 14%;
  }

  .footer-textarea {
    margin-left: 42px;
    font-size: 14px;
  }

  .footer-address,
  .footer-phonenumber {
    margin-left: 34px;
  }

  .footer-nav {
    display: flex;
    margin-left: 50px;
    font-weight: 500;
  }

  .footer-nav-left,
  .footer-nav-right {
    display: flex;
  }

  .footer-nav-left {
    margin-right: 30px;
  }

  .footer-items:not(:last-child) {
    margin-right: 30px;
  }

  /* -----------------------------------------------------------------
 top-page
----------------------------------------------------------------- */

  .fv-text {
    top: 34%;
  }

  .fv-text p {
    font-size: 40px;
  }

  .text-body {
    font-size: 16px;
  }

  .section-title {
    font-size: 24px;
  }

  .top-section-inner {
    width: 80%;
    gap: 40px;
  }

  .works-title::after {
    left: 125px;
  }

  /* -----------------------------------------------------------------
 service-page
----------------------------------------------------------------- */

  .service-item {
    padding: 0 80px;
  }

  .gardening {
    background-size: 300px 290px;
    background-position-x: 0%;
    background-position-y: 260px;
  }

  .gardening::before {
    left: 0%;
    top: 480px;
    width: 125px;
    height: 134px;
  }

  /* -----------------------------------------------------------------
 showroom-page
----------------------------------------------------------------- */

  .showroom-about-textarea p {
    text-align: left;
    font-size: 18px;
  }

  .showroom-about-textarea {
    width: 53.6%;
  }

  .showroom-about-heading {
    font-size: 22px;
  }

  .showroom-gallery h2 {
    font-size: 28px;
  }

  .tsutanoha-left-textarea {
    font-size: 18px;
  }

  /* -----------------------------------------------------------------
 company-page
----------------------------------------------------------------- */

  .history-list {
    font-size: 20px;
  }

  .company-access {
    padding-bottom: 186px;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    background-image: url(./assets/images/company/綿毛.png);
    background-repeat: no-repeat;
    background-size: 124px 134px;
    background-position-x: 101%;
    background-position-y: 77%;
  }
}

@media screen and (max-width: 1280px) {
  /* -----------------------------------------------------------------
 common
----------------------------------------------------------------- */

  :target {
    scroll-margin-top: 100px;
  }

  .sp-only-header {
    display: block;
  }

  .header-inner {
    height: 100px;
    background-color: #fcfaf5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
  }

  /*======================
  gnav
======================*/

  .gnav-btn {
    background-image: url(./assets/images/Home\ 5.png);
    background-size: contain;
    width: 60px;
    height: 60px;
    position: relative;
    z-index: 999;
  }

  .gnav-btn-bar {
    position: absolute;
    left: 28%;
    top: 47%;
    width: 24px;
    height: 1px;
    background-color: #6c5042;
    transition: all 0.4s;
  }

  .gnav {
    overflow: scroll;
    position: fixed;
    top: 0;
    right: 0;
    right: -100%;
    transition: right 0.5s;
    box-sizing: content-box;
    width: 100%;
    text-align: center;
    background-color: #fcfaf5;
    height: 100vh;
    z-index: 998;
    /* padding-top: 128px; */
  }

  .gnav-box {
    padding: 128px 0 50px 0;
  }

  .gnav-sp {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-top: 40%;
  }

  /* gnav hamburger */
  .gnav.sp-open {
    right: 0;
    /* これを入れるとopenの間は-100だったのが0になって表示される */
    display: block;
    position: absolute;
  }

  /* navが開いてる間のバツボタン */
  .gnav-btn.open .gnav-btn-bar.bar-top {
    transform: translate(0, 8px) rotate(45deg);
  }

  .gnav-btn.open .gnav-btn-bar.bar-bottom {
    transform: translate(0, 8px) rotate(-45deg);
  }

  .gnav-btn.open .gnav-btn-bar.bar-middle {
    display: none;
  }

  .gnav-list {
    flex-direction: column;
    gap: 27px;
    padding-bottom: 60px;
    border-bottom: 2px dashed #c7c6c6;
    width: 80%;
    margin: 0 auto;
  }

  .gnav-contact {
    color: #6c5042;
    background-color: #fcfaf5;
    font-size: 16px;
    padding: 0;
    border: none;
  }

  .gnav-contact:hover {
    color: #9c9c9c;
  }

  .bar-middle {
    transform: translateY(8px);
  }

  .bar-bottom {
    transform: translateY(16px);
  }

  .gnav-insta {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 52px;
    padding-top: 40px;
  }

  .insta-icon {
    width: 32px;
    height: 32px;
    line-height: 0;
  }

  .insta-acc {
    font-size: 12px;
    line-height: 1.7;
    gap: 8px;
    margin-left: 18px;
  }

  .insta-acc a {
    display: block;
  }

  .insta-acc a:first-child {
    margin-bottom: 8px;
  }

  .insta-acc a:hover {
    color: #9c9c9c;
  }

  nav {
    padding: 0;
  }

  nav ul {
    display: block;
  }

  .has-child {
    font-size: 12px;
  }

  nav ul li.gnav-item-service ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible;
    /*JSで制御するため一旦表示*/
    opacity: 1;
    /*JSで制御するため一旦表示*/
    display: none;
    /*JSのslidetoggleで表示させるため非表示に*/
    transition: none;
    /*JSで制御するためCSSのアニメーションを切る*/
  }

  nav ul li.gnav-item-service {
    padding-right: 0;
    width: 154px;
  }

  nav ul li.gnav-item-service:active::before {
    background-image: url(./assets/images/material-symbols_arrow-drop-down-rounded-w.png);
  }

  .section-head {
    padding-top: 166px;
  }

  .single-head {
    padding-top: 166px;
  }

  /* -----------------------------------------------------------------
 top-page
----------------------------------------------------------------- */

  .fv {
    padding-top: 100px;
  }

  .top-instagram-box::before {
    width: 23%;
    height: 140px;
    top: -4%;
    right: -17%;
  }
}

@media screen and (max-width: 1024px) {
  /* -----------------------------------------------------------------
 common
----------------------------------------------------------------- */

  .renovate-sp-only > span {
    font-size: 28px;
  }

  .service-detail-gallery {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 100px;
  }

  .service-detail-gallery img {
    width: calc(80% - 54px * 2 / 3);
  }

  .single-head-box h1 {
    font-size: 20px;
  }

  /*======================
  footer
======================*/

  .footer-inner {
    max-width: 850px;
    padding: 0 40px;
  }

  .footer-box {
    flex-direction: column;
  }

  .footer-logo {
    width: 120px;
  }

  .footer-textarea {
    font-size: 12px;
    margin-left: 0;
  }

  .footer-name {
    font-size: 18px;
  }

  .footer-address,
  .footer-phonenumber {
    margin-left: 20px;
  }

  .footer-address::before {
    position: absolute;
    content: "";
    background-image: url(./assets/images/TOP/Vector.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 18px;
    height: 14px;
    top: 3px;
    left: -25px;
  }

  .footer-phonenumber::before {
    position: absolute;
    content: "";
    background-image: url(./assets/images/TOP/Vector-1.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 14px;
    height: 14px;
    top: 3px;
    left: -24px;
  }

  .footer-textarea {
    justify-content: center;
  }

  /* -----------------------------------------------------------------
 top-page
----------------------------------------------------------------- */

  .fv-text p {
    font-size: 28px;
  }

  .text-body {
    margin-bottom: 32px;
  }

  .top-section-inner {
    align-items: flex-start;
  }

  .works-title::after {
    top: -10%;
    left: 122px;
    height: 34px;
  }

  /* -----------------------------------------------------------------
 service-page
----------------------------------------------------------------- */

  .service {
    padding: 200px 0 200px 0;
  }

  .service-item-title {
    font-size: 20px;
  }

  .service-item-desc {
    font-size: 16px;
  }

  .service-item-box {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .service-item-img {
    width: 70%;
  }

  .service-item-title {
    text-align: center;
    margin-bottom: 30px;
  }

  .service-item-text {
    width: 80%;
    padding-top: 50px;
  }

  .renovate {
    background-size: 220px 230px;
  }

  .gardening {
    background-size: 220px 210px;
    background-position-y: 353px;
  }

  .exterior {
    background-size: 202px 195px;
    background-position-x: 95%;
    background-position-y: 350px;
  }

  /* -----------------------------------------------------------------
 company-page
----------------------------------------------------------------- */

  .company-upper {
    padding: 160px 0 180px 0;
    background-color: #fcfaf5;
    position: relative;
  }

  .company-overview-desc p,
  .company-greeting-textarea p {
    font-size: 16px;
  }

  .company-access-textarea {
    font-size: 14px;
  }

  .company-overview {
    padding-bottom: 120px;
  }

  .history-list {
    font-size: 18px;
  }

  .company-lower {
    padding: 180px 0;
  }

  .qualified {
    margin-bottom: 80px;
  }

  /* -----------------------------------------------------------------
 news-page
----------------------------------------------------------------- */

  .news-post a {
    margin-left: 30px;
  }
}

@media screen and (max-width: 768px) {
  /* -----------------------------------------------------------------
 common
----------------------------------------------------------------- */

  :target {
    scroll-margin-top: 100px;
  }

  .sp-only {
    display: block;
  }

  .pc-only {
    display: none;
  }

  body {
    line-height: 2;
    font-size: 12px;
  }

  /*======================
  btn
======================*/

  .btn {
    font-size: 12px;
  }

  .detail-btn {
    padding: 8px 35px 8px 20px;
    position: relative;
    line-height: 1.45;
  }

  .detail-btn::after {
    width: 12px;
    height: 12px;
    bottom: 10px;
    right: 16px;
    background-size: contain;
  }

  /*======================
  header
======================*/

  .header-inner {
    height: 68px;
    padding: 0 14px;
  }

  .header-logo {
    width: 95px;
    line-height: 0;
    z-index: 999;
  }

  .logo {
    font-size: 8px;
    font-weight: 400;
  }

  .logo p {
    margin-bottom: 4px;
  }

  .logo img {
    width: 100%;
    line-height: 0;
    vertical-align: baseline;
  }

  /*======================
  gnav
======================*/

  .gnav-btn {
    background-image: url(./assets/images/Home\ 5.png);
    background-size: contain;
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 999;
  }

  .gnav {
    overflow: scroll;
    position: fixed;
    top: 0;
    right: 0;
    right: -100%;
    transition: right 0.5s;
    box-sizing: content-box;
    width: 100%;
    text-align: center;
    background-color: #fcfaf5;
    height: 100vh;
    z-index: 998;
    /* padding-top: 128px; */
  }

  .gnav-box {
    padding: 128px 0 100px 0;
  }

  .gnav-sp {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-top: 40%;
  }

  /* gnav hamburger */
  .gnav.sp-open {
    right: 0;
    /* これを入れるとopenの間は-100だったのが0になって表示される */
    display: block;
    position: absolute;
  }

  /* navが開いてる間のバツボタン */
  .gnav-btn.open .gnav-btn-bar.bar-top {
    transform: translate(0, 4px) rotate(45deg);
  }

  .gnav-btn.open .gnav-btn-bar.bar-bottom {
    transform: translate(0, 4px) rotate(-45deg);
  }

  .gnav-btn.open .gnav-btn-bar.bar-middle {
    display: none;
  }

  .gnav-list {
    flex-direction: column;
    gap: 27px;
    padding-bottom: 60px;
    border-bottom: 2px dashed #c7c6c6;
    width: 80%;
    margin: 0 auto;
  }

  .gnav-contact {
    color: #6c5042;
    background-color: #fcfaf5;
    font-size: 16px;
    padding: 0;
    border: none;
  }

  .gnav-contact:hover {
    color: #9c9c9c;
  }

  .gnav-btn-bar {
    position: absolute;
    left: 28%;
    top: 43%;
    width: 16px;
    height: 1px;
    background-color: #6c5042;
    transition: all 0.4s;
  }

  .bar-middle {
    transform: translateY(5px);
  }

  .bar-bottom {
    transform: translateY(10px);
  }

  .gnav-insta {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 52px;
    padding-top: 40px;
  }

  .insta-icon {
    width: 32px;
    height: 32px;
  }

  .insta-acc {
    font-size: 12px;
    line-height: 1.7;
    gap: 8px;
    margin-left: 18px;
  }

  .insta-acc a {
    display: block;
  }

  .insta-acc a:first-child {
    margin-bottom: 8px;
  }

  .insta-acc a:hover {
    color: #9c9c9c;
  }

  /*** 二階層目のサブメニュー ***/
  .child-menu {
    visibility: hidden;
    /*非表示*/
    transform: scale(1, 0);
    /*高さを0に*/
    transform-origin: top;
    /*上からアニメーション*/
    opacity: 0;
    transition: 0.3s;
    background: #fff;
    color: #6c5042;
    font-size: 14px;
    position: absolute;
    padding: 15px 21px;
    border-radius: 12px;
    margin-top: 16px;
    width: 154px;
  }

  .gnav-item-service {
    position: relative;
  }

  /*======================
  section-head
======================*/

  .section-head {
    padding: 98px 0 62px 0;
  }

  .section-heading {
    line-height: 1.7;
    font-size: 20px;
  }

  .breadcrumb {
    margin-left: 3.7%;
    margin-bottom: 70px;
  }

  .breadcrumb-item:not(:last-child) {
    margin-right: 17px;
  }

  .breadcrumb-item:not(:last-child)::after {
    right: -13px;
    top: 0;
  }

  /*======================
  footer
======================*/

  .footer-box {
    flex-direction: column;
  }

  .footer-logo {
    margin: 0 auto;
    width: 142px;
  }

  .footer-textarea {
    flex-direction: column-reverse;
    margin: 0 auto;
  }

  .footer-nav {
    margin-left: 0;
    margin-bottom: 50px;
    font-size: 14px;
  }

  .footer-nav-left,
  .footer-nav-right {
    flex-direction: column;
  }

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

  .footer-address,
  .footer-phonenumber {
    margin-bottom: 14px;
    margin-left: 34px;
  }

  .footer-address {
    margin-bottom: 14px;
    margin-left: 5px;
  }

  .footer-phonenumber {
    margin-bottom: 30px;
    margin-left: -12px;
  }

  .footer-address::before {
    width: 18px;
    height: 16px;
    top: 3px;
    left: 8px;
  }

  .footer-phonenumber::before {
    width: 14px;
    height: 14px;
    top: 5px;
    left: 46px;
  }

  /*=======================
  renovate,gardening,exterior
  =======================*/

  .single-head {
    padding-top: 98px;
  }

  .single-head::before {
    height: 80%;
  }

  .single-breadcrumb {
    margin-bottom: 70px;
  }

  .single-head-box {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .single-head-img {
    width: 96%;
  }

  .single-head-img img {
    border-radius: 0px 40px 40px 0px;
  }

  .single-head-box h1 {
    width: 100%;
    margin-bottom: 60px;
  }

  .service-detail-inner {
    padding: 0 27px;
  }

  .service-detail {
    padding: 80px 0 140px 0;
  }

  .renovate-sp-only {
    font-size: 16px;
  }

  .service-detail-desc {
    max-width: 450px;
    margin: 0 auto;
    padding-bottom: 80px;
  }

  .renovate-sp-only > span {
    font-size: 20px;
  }

  .service-detail-desc p:first-child {
    margin-bottom: 30px;
  }

  .service-detail-desc p:nth-child(2) {
    margin-bottom: 40px;
  }

  .service-detail-gallery img {
    width: 86.3%;
  }

  .service-works-banner {
    height: 100%;
    max-width: 70%;
  }

  .service-works-desc {
    max-width: 450px;
    margin-bottom: 50px;
  }

  /*======================
  footer
======================*/

  .footer-box {
    margin-bottom: 55px;
  }

  .footer-nav-left {
    margin-right: 40px;
  }

  .footer-items:not(:last-child) {
    margin-right: 0;
  }

  .footer-items-service a {
    margin-left: 30px;
  }

  .footer-items {
    gap: 18px;
  }

  .footer-items:not(:last-child) {
    margin-bottom: 18px;
  }

  .footer-items-service {
    gap: 18px;
  }

  .footer-name {
    font-size: 16px;
    margin-bottom: 28px;
  }

  /* -----------------------------------------------------------------
 top-page
----------------------------------------------------------------- */

  /*=======================
  common parts
=======================*/

  .top-section-inner {
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    gap: 0;
    padding: 0 14px;
    max-width: 500px;
  }

  .top-section-img {
    width: 100%;
    padding: 0 28px;
    margin-bottom: 30px;
  }

  .top-section-img img {
    border-radius: 40px 5px;
  }

  .top-section-textarea {
    width: 100%;
  }

  .text-body {
    margin-bottom: 20px;
    padding: 0 35px;
  }

  .section-title {
    font-size: 20px;
    text-align: center;
    line-height: 1.7;
    margin-bottom: 20px;
    margin-left: 0;
  }

  .top-section-textarea p {
    font-size: 14px;
  }

  /*=======================
fv
=======================*/

  .fv {
    padding-top: 68px;
  }

  .fv::before {
    height: 61%;
  }

  .fv-slider {
    max-width: 86%;
    margin-left: auto;
    position: relative;
  }

  .slick-list {
    border-radius: 40px 0px 0px 40px;
  }

  .fv-img img {
    height: 62vh;
    border-radius: 40px 0px 0px 40px;
  }

  .fv-slider::before {
    position: absolute;
    content: "";
    background-image: url(./assets/images/蜂.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 94%;
    left: -15%;
    width: 19%;
    height: 17%;
    z-index: 1;
  }

  .fv-text {
    top: 43%;
    left: 7%;
  }

  .fv-text p {
    font-size: 26px;
    padding: 4px 20px;
  }

  .fv-text-first {
    margin-bottom: 5px;
  }

  .fv-news-inner {
    padding: 0 34px;
    max-width: 600px;
  }

  .fv-news-box {
    flex-direction: column;
    padding: 0 0 30px 0;
  }

  .fv-news-inner article {
    width: 100%;
    margin-bottom: 24px;
  }

  .fv-news-heading {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .top-news-post-body p,
  .top-news-title {
    font-size: 12px;
  }

  .top-news-title {
    -webkit-line-clamp: 2;
    margin-left: 39px;
  }

  .news-btn {
    margin-left: auto;
  }

  /*=======================
about
=======================*/

  .top-about {
    padding: 70px 0;
    background-image: url(./assets/images/TOP/about-bg-sp.png);
  }

  .about-inner {
    max-width: 600px;
    padding: 0 29px;
  }

  .about-title {
    margin-bottom: 50px;
  }

  .about-desc {
    font-size: 14px;
  }

  .about-desc p:not(:last-child) {
    margin-bottom: 36px;
  }

  .about-desc p:nth-child(3) {
    margin-bottom: 50px;
  }

  /*=======================
service
=======================*/

  .top-service {
    padding: 70px 0 30px 0;
  }

  .service-img::before {
    top: 85%;
    left: -1%;
    width: 16%;
    height: 26%;
  }

  .service-title::before {
    top: -14%;
    left: 50%;
    width: 17px;
    height: 41px;
    transform: translateX(-50%);
  }

  /*=======================
showroom
=======================*/

  .top-showroom {
    padding: 80px 0 30px 0;
  }

  .showroom-title::before {
    top: -19%;
    left: 50%;
    width: 27px;
    height: 39px;
    transform: translateX(-50%);
  }

  /*=======================
works
=======================*/

  .top-works {
    padding: 80px 0 70px 0;
  }

  .works-title::before {
    top: -19%;
    left: 50%;
    width: 27px;
    height: 39px;
    transform: translateX(-50%);
  }

  .works-title::after {
    top: 13%;
    left: 69%;
    width: 15%;
    height: 73%;
  }

  /*=======================
  instagram
=======================*/

  .top-instagram {
    padding: 70px 0 70px 0;
  }

  .instagram-title {
    margin-bottom: 60px;
  }

  .top-instagram-box {
    max-width: 93%;
  }

  .top-instagram-box::before {
    width: 22%;
    height: 112px;
    top: -5%;
    right: -5%;
  }

  .acc-first {
    padding-bottom: 60px;
    border-bottom: 2px dashed #8a6857;
  }

  .acc-second {
    padding-top: 60px;
  }

  .acc-second::before {
    display: none;
  }

  /* -----------------------------------------------------------------
 service-page
----------------------------------------------------------------- */

  .service {
    padding: 80px 0 140px 0;
  }

  .service-item {
    padding: 0 28px;
  }

  .renovate-box,
  .gardening-box {
    padding-bottom: 60px;
  }

  .service-item-img {
    width: 70%;
  }

  .service-item-text {
    width: 80%;
    padding-top: 50px;
  }

  .service-item-title {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .service-item-desc {
    font-size: 12px;
  }

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

  .service-text-body {
    margin-bottom: 30px;
  }

  .service-item:not(:first-child) {
    padding-top: 70px;
  }

  .renovate {
    background-size: 161px 166px;
    background-position-x: 100%;
    background-position-y: 93%;
  }

  .gardening {
    background-image: url(./assets/images/service/rectangle-pink.jpg);
    background-repeat: no-repeat;
    background-size: 180px 185px;
    background-position-x: 0%;
    background-position-y: 39%;
    position: relative;
  }

  .gardening::before {
    position: absolute;
    background-image: url(./assets/images/綿毛.png);
    content: "";
    left: 0%;
    top: 360px;
    width: 80px;
    height: 83px;
    background-size: contain;
  }

  .exterior {
    background-image: url(./assets/images/service/rectangle-green.jpg);
    background-repeat: no-repeat;
    background-size: 150px 147px;
    background-position-x: 95%;
    background-position-y: 69%;
  }

  /* -----------------------------------------------------------------
 showroom-page
----------------------------------------------------------------- */

  /*=======================
  about
=======================*/

  .showroom {
    padding-top: 70px;
    line-height: 2.5;
  }

  .showroom-about {
    padding-bottom: 90px;
    background-image: url(./assets/images/showroom/展示場植物bg上部-sp.png);
  }

  .showroom-about-heading {
    font-size: 16px;
    margin-bottom: 70px;
    padding: 0 20px;
  }

  .showroom-about-box {
    flex-direction: column;
    padding: 0 36px;
    max-width: 600px;
  }

  .showroom-about-img {
    width: 67.3%;
    margin-bottom: 40px;
  }

  .showroom-about-textarea {
    width: 100%;
  }

  .showroom-about-textarea p {
    font-size: 12px;
    text-align: center;
  }

  .showroom-about-textarea p:first-child {
    margin-bottom: 40px;
  }

  .showroom-info p:first-child {
    margin-bottom: 0;
  }

  /*=======================
gallery
=======================*/

  .showroom-gallery {
    padding: 46px 0 100px 0;
  }

  .showroom-gallery h2 {
    font-size: 16px;
    margin-bottom: 60px;
  }

  .showroom-gallery-list {
    flex-wrap: wrap;
    margin-bottom: 40px;
    row-gap: 42px;
  }

  .showroom-gallery-list img:first-child {
    width: 44.8%;
  }

  .showroom-gallery-items {
    margin-top: 0;
  }

  .showroom-gallery-items {
    width: 40.3%;
    margin-right: 10.7%;
  }

  .showroom-gallery-list > .showroom-gallery-items img:first-child {
    margin-bottom: 11px;
  }

  .showroom-gallery-list img:nth-child(3) {
    width: 47.5%;
    margin-left: 10.7%;
  }

  .showroom-gallery-list img:nth-child(4) {
    width: 37.3%;
    margin-top: 0;
  }

  .showroom-gallery p {
    font-size: 12px;
    text-align: center;
    margin-right: 0;
  }

  /*=======================
showroom-lower
=======================*/

  .showroom-lower {
    background-image: url(./assets/images/showroom/展示場植物bg下部-sp.png);
    background-size: cover;
    z-index: -2;
  }

  .tsutanoha {
    flex-direction: column;
    padding: 0 14px;
    padding-bottom: 100px;
  }

  .tsutanoha-box {
    max-width: 600px;
    padding: 0 14px;
    flex-direction: column;
  }

  .tsutanoha-left {
    margin-right: 0;
    max-width: 100%;
  }

  .tsutanoha-left-textarea {
    font-size: 12px;
    margin-bottom: 100px;
  }

  .tsutanoha-left-textarea p:first-child {
    margin-bottom: 30px;
  }

  .tsutanoha-left-textarea p:nth-child(2) {
    margin-bottom: 12px;
  }

  .payment {
    margin-bottom: 18px;
  }

  .payment p {
    margin-right: 6px;
  }

  .payment img {
    height: 18px;
  }

  .instagram img {
    height: 24px;
    margin-right: 12px;
  }

  .instagram p {
    font-size: 12px;
  }

  .tsutanoha-left-img {
    width: 62.8%;
  }

  .tsutanoha-right {
    max-width: 100%;
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .tsutanoha-right-img {
    width: 47.6%;
    margin-bottom: 60px;
  }

  .tsutanoha-right-textarea p {
    text-align: center;
  }

  /*=======================
access
=======================*/
  .showroom-access {
    max-width: 600px;
    padding-bottom: 140px;
  }

  .access-title {
    margin-bottom: 40px;
  }

  .showroom-access-box {
    margin: 0 auto;
    flex-direction: column;
    padding: 0 43px;
  }

  .showroom-map {
    width: 100%;
    padding-top: 63.1%;
  }

  .showroom-access-info {
    text-align: center;
    margin-left: 0;
  }

  .access-company-name {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .access-address p:not(:last-child) {
    margin-bottom: 4px;
  }

  /* -----------------------------------------------------------------
 news-page
----------------------------------------------------------------- */

  .news {
    padding: 70px 0 100px 0;
  }

  .news-inner {
    padding: 0 21px;
    max-width: 600px;
  }

  .news-post-body {
    margin-left: 13px;
    max-width: 61%;
  }

  .news-post a {
    padding: 34px 0;
    margin-left: 8px;
  }

  .news-title {
    font-size: 12px;
    -webkit-line-clamp: 2;
    padding-right: 19px;
  }

  .date {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .news-post-thumbnail {
    width: 135px;
    height: 92px;
  }

  /*=======================
pager
=======================*/

  .pager {
    padding-top: 70px;
  }

  .pagination a,
  .pagination span {
    width: 38px;
    height: 38px;
    border: 1px solid #6c4c42;
    font-size: 16px;
  }

  .nav-links {
    gap: 12px;
  }

  /* -----------------------------------------------------------------
 news-single-page
----------------------------------------------------------------- */

  .breadcrumb-news {
    margin-bottom: 0;
  }

  .section-head-news {
    padding: 98px 0 80px 0;
  }

  .news-single {
    padding-bottom: 100px;
  }

  .news-single-inner {
    padding: 0 30px;
    max-width: 600px;
  }

  .date,
  .news-title-single,
  .news-content {
    font-size: 12px;
  }

  .date {
    margin-bottom: 16px;
  }

  .news-title-single {
    margin-bottom: 40px;
  }

  .news-post-thumbnail-single {
    margin-bottom: 40px;
  }

  /* -----------------------------------------------------------------
 company-page
----------------------------------------------------------------- */

  .company-upper {
    padding: 70px 0 120px 0;
  }

  /*======================
overview
======================*/

  .company-overview {
    padding-bottom: 60px;
  }

  .company-overview-box {
    flex-direction: column;
    align-items: center;
    padding: 0 42px;
    text-align: center;
    max-width: 620px;
  }

  .overview-title {
    margin-right: 0;
    margin-bottom: 40px;
  }

  .company-overview-desc {
    width: 100%;
  }

  .company-overview-desc p:first-child {
    margin-bottom: 20px;
  }

  .company-overview-desc p,
  .company-greeting-textarea p {
    font-size: 12px;
  }

  /*======================
greeting
======================*/

  .company-greeting-box {
    flex-direction: column;
    max-width: 600px;
  }

  .company-greeting-img {
    width: 78.6%;
    margin-bottom: 40px;
  }

  .company-greeting-textarea {
    width: 100%;
    text-align: center;
  }

  .greeting-title {
    text-align: center;
  }

  .company-greeting-textarea p:first-of-type {
    margin-bottom: 20px;
  }

  /*======================
history
======================*/

  .company-history {
    padding: 60px 0;
  }

  .history-list {
    font-size: 12px;
    padding: 0 25px;
    max-width: 375px;
  }

  .history-item p:first-child {
    margin-right: 22px;
  }

  .company-history::before {
    width: 93px;
    height: 50px;
    bottom: 79%;
    right: 6%;
    background-size: cover;
  }

  .history-item:not(:last-child) {
    margin-bottom: 8px;
  }

  .history-title {
    margin-bottom: 40px;
  }

  /*======================
lower
======================*/

  .company-lower {
    padding: 120px 0;
    flex-direction: column;
    align-items: flex-end;
  }

  .company-lower-textarea {
    margin-left: 0;
    text-align: center;
    width: 100%;
  }

  .company-lower-img {
    width: 85.9%;
  }

  .company-lower-img::after {
    bottom: 2%;
    right: 62%;
    width: 82.2%;
    height: 46%;
  }

  .qualified {
    margin-bottom: 70px;
  }

  .qualified-title,
  .membership-title {
    margin-bottom: 40px;
  }

  .qualified-list li,
  .membership-list li:not(:last-child) {
    margin-bottom: 10px;
  }

  /*======================
access
======================*/
  .company-access {
    padding-bottom: 140px;
    max-width: 600px;
    background-size: 86px 90px;
    background-position-x: 105%;
    background-position-y: 85%;
  }

  .company-access-title {
    margin-bottom: 40px;
  }

  .access-box {
    flex-direction: column;
    padding: 0px;
    padding: 0 40px;
  }

  .map {
    width: 100%;
    padding-top: 63.1%;
  }

  .company-access-textarea {
    width: 100%;
    margin-left: 0;
    font-size: 12px;
  }

  /* -----------------------------------------------------------------
 staff-page
----------------------------------------------------------------- */

  .section-head-staff::before {
    width: 26.2%;
    height: 102px;
    top: 90%;
    left: 68%;
  }

  .staff {
    padding: 70px 0 140px 0;
  }

  .staff-inner {
    padding: 0 40px;
  }

  .staff-item {
    flex-direction: column;
    align-items: center;
  }

  .staff-item:not(:last-child) {
    margin-bottom: 100px;
  }

  .staff-img {
    width: 71.7%;
  }

  .staff-textarea {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }

  .staff-profile {
    text-align: center;
  }

  .staff-name {
    flex-direction: column;
    margin-top: 10px;
  }

  .staff-name-jp {
    margin-right: 0;
    margin-bottom: 2px;
    font-size: 16px;
  }

  dt {
    margin-bottom: 12px;
  }

  dd {
    font-size: 12px;
  }

  dd:not(:last-child) {
    margin-bottom: 20px;
  }

  .staff-detail {
    margin-top: 28px;
  }

  .comment-insta {
    flex-direction: column;
  }

  .instagram-box {
    margin-top: 24px;
  }

  .insta-qr {
    width: 30.9%;
    height: 30.9%;
  }

  /* -----------------------------------------------------------------
 404-page
----------------------------------------------------------------- */

  .c-404 {
    padding: 168px 0 100px 0;
  }

  /* -----------------------------------------------------------------
 index-page
----------------------------------------------------------------- */

  .index-inner {
    padding: 70px 0 100px 0;
  }

  .content-text {
    padding: 0 20px;
    max-width: 600px;
  }

  /* -----------------------------------------------------------------
 works-page
----------------------------------------------------------------- */
  .section.works {
    padding: 70px 0;
  }

  .works-inner {
    padding: 0 40px;
  }

  .works-list-wrap {
    grid-template-columns: 1fr;
  }

  .works-list .ttl-post {
    font-size: 16px;
  }

  .tag-cat {
    font-size: 12px;
  }

  .works-title-single {
    font-size: 16px;
  }

  /* -----------------------------------------------------------------
contact-page
----------------------------------------------------------------- */
  .section.contact {
    padding: 70px 0;
  }

  .contact-inner {
    padding: 0 40px;
  }

  .section.contact dt {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .section.contact .req {
    font-size: 11px;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"] {
    padding: 0.5em;
  }
}

@media screen and (max-width: 425px) {
  /* -----------------------------------------------------------------
 common
----------------------------------------------------------------- */

  .single-head-box h1 {
    font-size: 16px;
  }

  .service-works-banner {
    max-width: 88.5%;
  }

  .footer-nav {
    font-size: 12px;
  }

  .footer-address,
  .footer-phonenumber {
    font-size: 12px;
    position: relative;
  }

  .footer-address::before {
    /* left: 0px;
    top: 3px; */
    position: relative;
    top: 4px;
    left: -4px;
    display: inline-block;
  }

  .footer-phonenumber::before {
    /* left: 42px;
    top: 4px; */
    position: relative;
    top: 4px;
    left: -4px;
    display: inline-block;
  }

  .footer-nav-left {
    margin-right: 30px;
  }

  /* -----------------------------------------------------------------
 top-page
----------------------------------------------------------------- */

  .fv-img img {
    height: 57vh;
  }

  .fv::before {
    height: 59%;
  }

  .fv-slider::before {
    top: 99%;
    left: -14%;
    width: 19%;
    height: 10%;
  }

  .fv-text {
    top: 43.5%;
    left: 4%;
  }

  .fv-text p {
    font-size: 16px;
    padding: 4px 20px;
  }

  .top-section-textarea p {
    font-size: 12px;
  }

  .top-instagram-box::before {
    width: 28%;
    height: 76px;
    top: -3%;
    right: -5%;
  }

  /* -----------------------------------------------------------------
 sevice-page
----------------------------------------------------------------- */

  .service-item-img {
    width: 92.3%;
  }

  .service-item-text {
    width: 100%;
    padding-top: 50px;
  }

  .gardening {
    background-size: 108px 105px;
    background-position-y: 30%;
  }

  .gardening::before {
    top: 283px;
    width: 47px;
    height: 50px;
  }

  /* -----------------------------------------------------------------
 showroom-page
----------------------------------------------------------------- */

  .showroom-about-heading {
    font-size: 14px;
  }

  .showroom-gallery h2 {
    font-size: 12px;
    margin-bottom: 60px;
  }

  /* -----------------------------------------------------------------
 company-page
----------------------------------------------------------------- */

  .company-access {
    background-size: 46px 50px;
    background-position-x: 94%;
    background-position-y: 85%;
  }

  /* -----------------------------------------------------------------
 news-page
----------------------------------------------------------------- */

  .news-post-thumbnail {
    width: 34%;
    height: 72px;
  }
}
