/* ##############################################################################

    KEYFRAMES

############################################################################## */
@keyframes hero_scroll {
  0% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(24px);
  }
}

@keyframes kihachi {
  0% {
    bottom: 0;
    left: -130px;
    transform: scale(-1, 1);
  }

  14% {
    left: 40%;
    bottom: 0;
  }

  15% {
    bottom: 20px;
  }

  16% {
    bottom: 0;
  }

  35% {
    left: 85%;
    transform: scale(-1, 1);
  }

  36% {
    transform: scale(1, 1);
  }

  100% {
    left: -130px;
    transform: scale(1, 1);
  }
}

.waypoint {
  transform: scale(1.05);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: url(
    data:image/svg + xml;charset=utf-8,
    <svgxmlns="http://www.w3.org/2000/svg"><f…terid="filter"><feGaussianBlurstdDeviation="10"/></filter></svg>#filter
  );
  -webkit-filter: blur(10px);
  filter: blur(10px);
  transition: transform 0.5s ease-in-out, opacity 0.5s linear, filter 0.5s linear;
}

.waypoint.active {
  transform: scale(1);
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: url(
    data:image/svg + xml;charset=utf-8,
    <svgxmlns="http://www.w3.org/2000/svg"><filterid="filter"><feGaussianBlurstdDeviation="0"/></filter></svg>#filter
  );
  -webkit-filter: blur(0);
  filter: blur(0);
}

/* ##############################################################################

    COMMON

############################################################################## */

@font-face {
  font-family: "imagine_yokohama";
  src: url("../fonts/imagine_yokohama.woff") format("woff"), url("../fonts/imagine_yokohama.ttf") format("truetype");
}

@font-face {
  font-family: "signatura_monoline";
  src: url("../fonts/signatura_monoline.woff") format("woff"), url("../fonts/signatura_monoline.ttf") format("truetype");
}

html {
  height: 100%;
  overflow-y: scroll;
}

body {
  height: 100%;
}

body.page-contact {
  padding-top: 0;
}

/* layout
**************************************** */

/* --- inner --- */
.inner {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.inner-md {
  max-width: 1180px;
}

.inner-sm {
  max-width: 960px;
}

.inner-xs {
  max-width: 800px;
}

.inner-lg {
  max-width: calc(100% - 112px);
}

/* --- section_pdg --- */
.section_pdg {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section_pdg-sm {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* --- float --- */
.flt-rgt {
  float: right;
}

.flt-lft {
  float: left;
}

/* --- position --- */
.pos_rel {
  position: relative;
  z-index: 0;
}

/* --- margin --- */
.mgn-btm8 {
  margin-bottom: 8px;
}

.mgn-btm16 {
  margin-bottom: 16px;
}

.mgn-btm24 {
  margin-bottom: 24px;
}

.mgn-btm32 {
  margin-bottom: 32px;
}

.mgn-btm40 {
  margin-bottom: 40px;
}

.mgn-btm48 {
  margin-bottom: 48px;
}

.mgn-btm56 {
  margin-bottom: 56px;
}

.mgn-btm64 {
  margin-bottom: 64px;
}

.mgn-btm72 {
  margin-bottom: 72px;
}

.mgn-btm80 {
  margin-bottom: 80px;
}

/* --- pc or sp --- */
.pc-none,
.pc-none-inline,
.pc-none-table,
.pc-none-flex {
  display: none;
}

.sp-none {
  display: block;
}

.sp-none-inline {
  display: inline;
}

.sp-none-table {
  display: table;
}

.sp-none-flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .inner-lg {
    max-width: 100%;
  }

  .section_pdg {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section_pdg-sm {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .mgn-btm16 {
    margin-bottom: 8px;
  }

  .mgn-btm24 {
    margin-bottom: 16px;
  }

  .mgn-btm32 {
    margin-bottom: 16px;
  }

  .mgn-btm40 {
    margin-bottom: 24px;
  }

  .mgn-btm48 {
    margin-bottom: 24px;
  }

  .mgn-btm56 {
    margin-bottom: 32px;
  }

  .mgn-btm64 {
    margin-bottom: 32px;
  }

  .mgn-btm72 {
    margin-bottom: 40px;
  }

  .mgn-btm80 {
    margin-bottom: 40px;
  }

  .sp-none,
  .sp-none-inline,
  .sp-none-table,
  .sp-none-flex {
    display: none;
  }

  .pc-none {
    display: block;
  }

  .pc-none-inline {
    display: inline;
  }

  .pc-none-table {
    display: table;
  }

  .pc-none-flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

/* flex
**************************************** */

/* --- ブロック要素 --- */
.flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

/* --- インライン要素 --- */
.flex-inline {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/* --- 逆向き --- */
.flex-reverse {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

/* --- 縦並び --- */
.flex-column {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* --- 水平方向揃え --- */
.flex-j-start {
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-j-end {
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-j-ctr {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-j-between {
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-j-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

/* --- 垂直方向揃え --- */
.flex-a-start {
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-a-end {
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-a-ctr {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-a-baseline {
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.flex-a-stretch {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

/* --- 子要素の折り返し設定 --- */
.flex-c-nowrap {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.flex-c-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* --- 子要素の複数行設定 --- */
.flex-c-reverse {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.flex-c-start {
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.flex-c-start {
  -webkit-align-items: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.flex-c-end {
  -webkit-align-content: flex-end;
  -ms-flex-line-pack: end;
  align-content: flex-end;
}

.flex-c-ctr {
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

.flex-c-baseline {
  -webkit-align-content: baseline;
  -ms-flex-line-pack: baseline;
  align-content: baseline;
}

.flex-c-stretch {
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

/* --- ざっくりflexレイアウト --- */
.flex-col2,
.flex-col3,
.flex-col4 {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-col2 > * {
  width: 48.5%;
  margin-right: 3%;
  margin-bottom: 3%;
}

.flex-col3 > * {
  width: 31.33%;
  margin-right: 3%;
  margin-bottom: 3%;
}

.flex-col4 > * {
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 2%;
}

.flex-col2:not(.flex-reverse) > *:nth-child(even),
.flex-col2.flex-reverse > *:nth-child(odd),
.flex-col3 > *:nth-child(3n),
.flex-col4 > *:nth-child(4n) {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  /* --- 縦並び - sp --- */
  .flex-sp-block {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .flex-sp-block.flex-col2 > *,
  .flex-sp-block.flex-col3 > *,
  .flex-sp-block.flex-col4 > * {
    width: 100%;
    margin-right: 0;
    margin-bottom: 6%;
  }

  /* --- 並び順変更 - sp --- */
  .flex-sp-reverse {
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  /* --- ざっくりflexレイアウト - sp --- */
  .flex-sp-col2 > *,
  .flex-sp-col2.flex-col3 > *:nth-child(3n + 3) {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 3%;
  }

  .flex-sp-col2 > *:nth-child(even) {
    margin-right: 0;
  }

  .flex-sp-col3 > *,
  .flex-sp-col3.flex-col4 > *:nth-child(4n + 4) {
    width: 31.33%;
    margin-right: 3%;
    margin-bottom: 3%;
  }

  .flex-sp-col3 > *:nth-child(3n + 3) {
    margin-right: 0;
  }
}

/* bg
**************************************** */

.bg-white {
  background: #f4f2ed url(../images/common/bg-white.png);
}

.bg-wh {
  background-color: #fff;
}

.bg-ivory {
  background: #e3e1cf url(../images/common/bg-ivory.png);
}

.bg-lightyellow {
  background: #e3dfbe url(../images/common/bg-lightyellow.png);
}

.bg-yellow {
  background: #d2c79f url(../images/common/bg-yellow.png);
}

.bg-green {
  background: #90ab90 url(../images/common/bg-green.png);
}

.bg-brown {
  background: #26201c url(../images/common/bg-brown.png);
}

.bg-deco {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.bg-deco span {
  position: absolute;
  z-index: -1;
  display: block;
  width: 1778px;
  height: 1333px;
  mix-blend-mode: multiply;
  background: url(../images/common/bg-deco.png) no-repeat;
}

.bg-deco span:nth-child(1) {
  top: -590px;
  left: -730px;
}

.bg-deco span:nth-child(2) {
  top: 630px;
  right: -690px;
}

.bg-deco span:nth-child(3) {
  top: 1600px;
  left: -1030px;
}

.bg-deco span:last-child {
  top: auto;
  bottom: -400px;
  right: -590px;
}

/* ttl
**************************************** */

/* --- page_ttl --- */
.page_ttl {
  height: 520px;
  padding-top: 80px;
  color: #fff;
  text-align: center;
  background-color: #eee;
  background-position: center;
  background-image: url(../images/page_ttl/page_ttl-common.jpg);
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.33), 0 0 16px rgba(0, 0, 0, 0.33);
}

.page-contact .page_ttl,
.page-entry .page_ttl,
.single .page_ttl {
  height: 360px;
  padding-top: 60px;
}

.page-housing .page_ttl {
  background-image: url(../images/page_ttl/page_ttl-housing.jpg);
}

.page-companies .page_ttl {
  background-image: url(../images/page_ttl/page_ttl-companies.jpg);
}

.page-smile .page_ttl {
  background-image: url(../images/page_ttl/page_ttl-smile.jpg);
}

.page-faq .page_ttl {
  background-image: url(../images/page_ttl/page_ttl-faq.jpg);
}

.page-about .page_ttl {
  background-image: url(../images/page_ttl/page_ttl-about.jpg);
}

.page-recruit .page_ttl,
.archive-requirements .page_ttl,
.archive-interview .page_ttl,
.single-requirements .page_ttl,
.single-interview .page_ttl {
  background-image: url(../images/page_ttl/page_ttl-recruit.jpg);
}

.archive-works .page_ttl,
.single-works .page_ttl,
.page-ama .page_ttl {
  background-image: url(../images/page_ttl/page_ttl-works.jpg);
}

.archive-blog .page_ttl,
.single-blog .page_ttl {
  background-image: url(../images/page_ttl/page_ttl-blog.jpg);
}

.archive-news .page_ttl,
.single-news .page_ttl {
  background-image: url(../images/page_ttl/page_ttl-news.jpg);
}

.page_ttl-jp,
.page_ttl-en {
  display: block;
}

.page_ttl-jp {
  font-size: 428.57%;
  letter-spacing: 0.01em;
}

.page_ttl-en {
  font-size: 114.28%;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* --- section_ttl --- */
.section_ttl {
  position: relative;
  z-index: 1;
  color: #47352c;
  font-size: 428.57%;
  font-weight: normal;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.section_ttl-en {
  display: block;
  margin-top: 20px;
  color: #d0cbb4;
  font-size: 26.63%;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  -webkit-font-smoothing: subpixel-antialiased;
}

.section_ttl-en.green {
  color: #6c864a;
}

.section_ttl-en.yellow {
  color: #bcb07a;
}

.section_ttl-en.white {
  color: #fff;
}

.section_ttl-en.brown {
  color: #47352c;
}

.section_ttl-sm {
  font-size: 285.71%;
}

.section_ttl-sm .section_ttl-en {
  margin-top: 6px;
  font-size: 39.99%;
}

/* --- heading --- */
.heading-1 {
  font-size: 400%;
  line-height: 1.4;
}

.heading-2 {
  font-size: 228.57%;
  line-height: 1.4;
}

.heading-3 {
  font-size: 171.42%;
  line-height: 1.4;
}

.heading-4 {
  font-size: 128.57%;
}

.heading-5 {
  font-size: 250%;
  line-height: 1.4;
}

/* --- ttl-dotline --- */
.ttl-dotline::after {
  content: "";
  display: block;
  width: 36px;
  height: 6px;
  margin-top: 32px;
  background-image: url(../images/common/ttl-dotline.svg);
}

.ttl-dotline.txt-ctr::after,
.ttl-dotline.txt-ctr-pc::after {
  margin-left: auto;
  margin-right: auto;
}

.ttl-dotline-wh::after {
  background-image: url(../images/common/ttl-dotline-wh.svg);
}

.ttl-dotline-near::after {
  margin-top: 0;
}

/* --- ttl-ine --- */
.ttl-line {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.ttl-line::before,
.ttl-line::after {
  content: "";
  display: block;
  width: 135px;
  height: 7px;
  background-image: url("../images/common/line.png");
}

.ttl-line::before {
  margin-right: 40px;
}

.ttl-line::after {
  margin-left: 40px;
}

/* --- ttl-line-naname --- */
.ttl-line-naname {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 342.85%;
  line-height: 1.5;
}

.ttl-line-naname::before,
.ttl-line-naname::after {
  content: "";
  display: block;
  width: 40px;
  height: 39px;
  margin-bottom: -20px;
  background-image: url("../images/common/line-naname.png");
}

.ttl-line-naname::before {
  transform: scale(-1, 1);
  margin-right: 16px;
}

.ttl-line-naname::after {
  margin-left: 16px;
}

.ttl-line-naname-lg::before,
.ttl-line-naname-lg::after {
  width: 47px;
  height: 47px;
  background-image: url("../images/common/line-naname-lg.png");
}

.ttl-line-naname-lg::before {
  margin-left: -32px;
  margin-right: 32px;
}

.ttl-line-naname-lg::after {
  margin-left: 32px;
  margin-right: -32px;
}

@media screen and (max-width: 1140px) {
  /* --- ttl-line-naname --- */
  .ttl-line-naname {
    font-size: 300%;
  }
}

@media screen and (max-width: 767px) {
  /* --- page_ttl --- */
  .page_ttl {
    height: 284px;
    padding-top: 32px;
    background-image: url(../images/page_ttl/page_ttl-common_sp.jpg);
    background-size: cover;
  }

  .page-contact .page_ttl,
  .page-entry .page_ttl,
  .single .page_ttl {
    height: 200px;
    padding-top: 16px;
  }

  .page-housing .page_ttl {
    background-image: url(../images/page_ttl/page_ttl-housing_sp.jpg);
  }

  .page-companies .page_ttl {
    background-image: url(../images/page_ttl/page_ttl-companies_sp.jpg);
  }

  .page-smile .page_ttl {
    background-image: url(../images/page_ttl/page_ttl-smile_sp.jpg);
  }

  .page-faq .page_ttl {
    background-image: url(../images/page_ttl/page_ttl-faq_sp.jpg);
  }

  .page-about .page_ttl {
    background-image: url(../images/page_ttl/page_ttl-about_sp.jpg);
  }

  .page-staff .page_ttl {
    background-image: url(../images/page_ttl/page_ttl-staff_sp.jpg);
  }

  .page-recruit .page_ttl,
  .archive-requirements .page_ttl,
  .archive-interview .page_ttl,
  .single-requirements .page_ttl,
  .single-interview .page_ttl {
    background-image: url(../images/page_ttl/page_ttl-recruit_sp.jpg);
  }

  .archive-works .page_ttl,
  .single-works .page_ttl {
    background-image: url(../images/page_ttl/page_ttl-works_sp.jpg);
  }

  .archive-blog .page_ttl,
  .single-blog .page_ttl {
    background-image: url(../images/page_ttl/page_ttl-blog_sp.jpg);
  }

  .archive-news .page_ttl,
  .single-news .page_ttl {
    background-image: url(../images/page_ttl/page_ttl-news_sp.jpg);
  }

  .page_ttl-jp {
    font-size: 206%;
  }

  .page_ttl-en {
    font-size: 86%;
  }

  /* --- section_ttl --- */
  .section_ttl {
    font-size: 230%;
  }

  .single .section_ttl {
    font-size: 180%;
  }

  .section_ttl-en {
    margin-top: 12px;
    font-size: 40%;
  }

  /* --- heading --- */
  .heading-1 {
    font-size: 200%;
  }

  .heading-2 {
    font-size: 170%;
  }

  .heading-3 {
    font-size: 140%;
  }

  .heading-4 {
    font-size: 110%;
  }

  .heading-5 {
    font-size: 190%;
  }

  /* --- ttl-dotline --- */
  .ttl-dotline::after {
    width: 30px;
    height: 5px;
    margin-top: 16px;
    border-width: 5px;
    background-size: cover;
  }

  .ttl-dotline.txt-ctr-pc::after {
    margin-left: 0;
  }

  /* --- ttl-ine --- */
  .ttl-line::before,
  .ttl-line::after {
    width: 35px;
  }

  .ttl-line::before {
    margin-right: 24px;
  }

  .ttl-line::after {
    margin-left: 24px;
  }

  /* --- ttl-line-naname --- */
  .ttl-line-naname {
    font-size: 160%;
  }

  .ttl-line-naname::before,
  .ttl-line-naname::after {
    width: 29px;
    height: 29px;
    margin-bottom: -10px;
    background-size: cover;
  }

  .ttl-line-naname-lg::before,
  .ttl-line-naname-lg::after {
    width: 37px;
    height: 37px;
    background-size: cover;
  }

  .ttl-line-naname-lg::before {
    margin-left: -16px;
    margin-right: 16px;
  }

  .ttl-line-naname-lg::after {
    margin-left: 16px;
    margin-right: -16px;
  }
}

/* breadcrumbs
**************************************** */
.breadcrumbs {
  width: 100%;
  padding: 16px 0;
  font-size: 87%;
}

.breadcrumbs a {
  text-decoration: underline;
}

.breadcrumbs,
.breadcrumbs a {
  color: #47352c;
}

.page .breadcrumbs {
  position: absolute;
  left: 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .breadcrumbs {
    padding: 8px 0;
  }
}

/* txt
**************************************** */
.txt-lg {
  font-size: 114.28%;
  line-height: 2;
  letter-spacing: 0.12em;
}

.txt-sm {
  font-size: 85.71%;
}

.txt-xl {
  font-size: 132%;
}

.txt-ctr,
.txt-ctr-pc {
  text-align: center;
}

.txt-rgt,
.txt-rgt-pc {
  text-align: right;
}

.txt-attention {
  font-size: 88%;
  color: #999;
}

.txt-attention-kome {
  position: relative;
  padding-left: 1.4em;
}

.txt-attention-kome::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.txtarea p:not(:last-child) {
  margin-bottom: 1em;
}

.txt-excerpt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/* --- color --- */
.txt-wh {
  color: #fff;
}

.txt-brown {
  color: #47352c;
}

.txt-green {
  color: #207723;
}

/* fonts
**************************************** */
.font-jp,
.single .wp-pagenavi .current,
.single .wp-pagenavi a {
  font-family: imagine_yokohama, "Kaimin Sora Medium";
  font-weight: normal;
  letter-spacing: 0;
}

.gnav--list.flex.flex-sp-block.nav-size {
  font-size: 80%;
}

.gnav--list.flex.flex-sp-block.nav-ssize {
  font-size: 75%;
}

.font-jp strong {
  font-family: imagine_yokohama, "Kaimin Sora Bold";
  font-weight: bold;
}

.font-en,
.archive .wp-pagenavi .current,
.archive .wp-pagenavi a {
  font-family: "garamond-premier-pro", serif;
}

.font-en-hw {
  font-family: "signatura_monoline";
  font-weight: normal;
  font-style: italic;
}

.font-en-din {
  font-family: "din-2014", sans-serif;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .txt-ctr-pc,
  .txt-rgt-pc {
    text-align: left;
  }

  .gnav--list.flex.flex-sp-block.nav-size {
    font-size: 100%;
  }

  .gnav--list.flex.flex-sp-block.nav-ssize {
    font-size: 100%;
  }
}

/* table & list
**************************************** */
table {
  width: 100%;
}

/* --- table_default --- */
.table_default th,
.table_default td {
  padding: 24px 48px;
}

.table_default th {
  color: #96b397;
  text-align: left;
  border-bottom: 2px solid #96b397;
}

.table_default td {
  padding: 24px 64px;
  border-bottom: 1px solid #96b397;
  border-left: 4px solid #fff;
}

/* --- table_line --- */
.table_line th,
.table_line td {
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 24px;
  padding-right: 24px;
  text-align: center;
}

.table_line th {
  background-color: #96b397;
  border: 1px solid #96b397;
  color: #fff;
  font-size: 114.28%;
}

.table_line td {
  border: 1px solid #d2d2d2;
  font-size: 93%;
}

/* --- list ---- */
.list {
  list-style-type: none;
}

.list li {
  position: relative;
  padding-left: 1.8em;
}

.list-disc-sm li {
  line-height: 1.6;
  padding-left: 1.4em;
}

.list li:not(:last-child) {
  margin-bottom: 4px;
}

.list-disc-sm li:not(:last-child) {
  margin-bottom: 2px;
}

.list-disc li::before,
.list-square li::before,
.list-circle li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background-color: #96b397;
}

.list-disc-sm li::before,
.list-square-sm li::before,
.list-circle-sm li::before,
.list-disc-sm li ul li::before,
.list-square-sm li ul li::before,
.list-circle-sm li ul li::before {
  width: 8px !important;
  height: 8px !important;
}

.list-disc-wh li::before,
.list-square-wh li::before,
.list-circle-wh li::before {
  background-color: #e7e0c2;
}

.list-disc-gr li::before,
.list-square-gr li::before,
.list-circle-gr li::before {
  background-color: #beb66d;
}

/* 数字付きリスト */
.list-num {
  padding-left: 1.4em;
  list-style-type: decimal;
}

.list-num li {
  padding-left: 0;
}

.list-num li::before {
  display: none;
}

/* 白丸付きリスト */
.list-circle li::before {
  border: 1px solid #96b397;
  background-color: transparent;
}

/* 四角付きリスト */
.list-square li::before {
  border-radius: 0;
  background-color: #96b397;
}

/* 入れ子のスタイル */
.list li ul {
  margin-top: 12px;
}

.list li ul li::before {
  width: 12px;
  height: 12px;
  top: 0.5em;
}

/* サイトバー */
.side_column .list li:not(:last-child) {
  margin-bottom: 2px;
}

.side_column .list li ul {
  margin-top: 2px;
}

.side_column.full .side--list > li:not(:last-child) {
  margin-right: 40px;
}

/* --- dlリスト --- */
.list-dl {
  position: relative;
  font-size: 107.14%;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.list-dl dt {
  position: absolute;
  padding-top: 20px;
  font-weight: 700;
}

.bg-ivory .list-dl dt {
  color: #6c864a;
}

.bg-green .list-dl dt {
  color: #fff;
}

.list-dl dt,
.article--post .list-dl dt {
  color: #96b397;
}

.list-dl dd {
  padding-left: 180px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767px) {
  /* --- dlリスト --- */
  .list-dl dt {
    position: relative;
    padding-top: 12px;
  }

  .list-dl dd {
    padding-top: 4px;
    padding-bottom: 12px;
    padding-left: 0;
  }

  /* サイトバー */
  .side_column .list li ul {
    margin-bottom: 8px;
  }
}

.img_cont img {
  margin-right: 24px;
}

@media screen and (max-width: 767px) {
  .img_cont img {
    margin-right: 0;
    margin-bottom: 16px;
  }
}

/* btn
**************************************** */
.btn a {
  position: relative;
  display: inline-block;
  min-width: 280px;
  min-height: 48px;
  padding: 15px 42px;
  color: #161615;
  font-size: 128.57%;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.1em;
  border-radius: 2px;
  background-color: #beb66d;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), 0 0 10px rgba(0, 0, 0, 0.1);
}

.btn a::before {
  content: "";
  position: absolute;
  top: calc(50% - 18px / 2);
  right: 20px;
  display: block;
  width: 18px;
  height: 18px;
  background-image: url(../images/common/btn-deco.svg);
  transition: 0.4s ease-out;
}

.bg-green .btn a {
  background-color: #f0b915;
}

.btn-wh a {
  color: #161615;
  background-color: #fff;
}

.btn-wh a::before {
  background-image: url(../images/common/btn-deco-yellow.svg);
}

.btn-wh a:hover::before {
  background-image: url(../images/common/btn-deco.svg);
}

.flex > .btn + .btn {
  margin-left: 16px;
}

@media screen and (min-width: 768px) {
  /* hover */
  .btn a:hover {
    color: #fff;
    background-color: #96b397;
    box-shadow: none;
  }

  .btn-wh a:hover {
    color: #fff;
  }

  .bg-green .btn a:hover {
    background-color: #beb66d;
  }
}

@media screen and (max-width: 1080px) {
  .flex > .btn + .btn {
    margin-left: 8px;
  }
}

@media screen and (max-width: 767px) {
  .btn a {
    min-width: auto;
    padding: 12px 48px;
    min-height: 0;
  }

  .flex > .btn,
  .flex > .btn + .btn {
    margin-top: 8px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* cta
**************************************** */
.cta {
  overflow: hidden;
  padding: 64px 0 134px;
  background: #d4caa0 url("../images/common/cta_bg.jpg");
  background-size: cover;
}

.cta-common {
  padding-bottom: 64px;
}

.cta--txt {
  font-size: 120%;
  margin-bottom: 24px;
}

.cta--btn .cta--contact a,
.cta--btn .cta--line a {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 250px;
  padding: 16px;
  font-size: 171.42%;
  text-align: left;
  line-height: 1.2;
}

.contact_page a {
  width: fit-content;
  margin-inline: auto;
}

@media all and (-ms-high-contrast: none) {
  /* IE hack */
  .cta--ttl em {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .cta--btn .cta--contact a,
  .cta--btn .cta--line a {
    padding: 24px 16px 16px 16px;
  }
}

.cta--btn .cta--contact a::before,
.cta--btn .cta--line a::before {
  content: "";
  position: relative;
  right: auto;
  display: block;
  margin-right: 16px;
}

.cta--btn .cta--btn {
  -webkit-flex: 1px;
  -ms-flex: 1px;
  flex: 1px;
}

/* --- cta--contact --- */
.cta--btn .cta--contact a {
  background-color: #f0b914;
}

.cta--btn .cta--contact a::before {
  width: 24px;
  height: 24px;
  background-image: url("../images/common/cta--mailicon.png");
}

/* --- cta--line --- */
.cta--btn .cta--line a {
  color: #00b901;
  background-color: #fff;
  border: 1px solid #00b901;
}

.cta--btn .cta--line a::before {
  width: 36px;
  height: 36px;
  top: auto;
  background-image: url(../images/common/icon-line.svg);
}

@media screen and (max-width: 767px) {
  /* hover */
  .cta--btn .cta--line a:hover {
    background-color: #00b901;
  }
}

/* --- cta--tel --- */
.cta--tel {
  margin-right: 32px;
}

.page-contact .cta--tel {
  position: relative;
}

.page-contact .cta--tel::before {
  content: "";
  position: absolute;
  top: -80px;
  left: calc(100% + 40px);
  background: url(../images/contact_img01.png);
  background-size: cover;
  width: 248px;
  height: 270px;
}

.page-contact .cta--tel::after {
  content: "";
  position: absolute;
  top: -24px;
  right: calc(100% + 96px);
  background: url(../images/contact_img02.png);
  background-size: cover;
  width: 102px;
  height: 122px;
}

.page-contact .cta--tel,
.page-entry .cta--tel {
  max-width: 430px;
  margin-left: auto;
  margin-right: auto;
}

.cta--tel .tel_txt {
  color: #057b26;
  font-size: 420%;
  letter-spacing: 0;
}

.cta--tel .tel_txt::before {
  content: "";
  display: block;
  width: 69px;
  height: 40px;
  background-image: url("../images/common/cta--freedial.png");
}

.cta_time {
  padding: 4px 16px;
  line-height: 1.5;
  border: 1px solid #bcb9b0;
  border-radius: 2px;
}

.cta--form {
  padding: 40px 64px;
  background-color: #fff;
}

/* --- kazari --- */
.cta .deco-kazari-left {
  left: -119px;
  bottom: -75px;
  width: 140px;
  height: 224px;
  background-image: url("../images/common/cta--people-left.png");
}

.cta .deco-kazari-left .kirakira01 {
  top: -3px;
  left: -44px;
}

.cta .deco-kazari-left .kirakira02 {
  top: 44px;
  left: -74px;
}

.cta .deco-kazari-right {
  right: -121px;
  bottom: -75px;
  width: 142px;
  height: 226px;
  z-index: 0;
  background-image: url("../images/common/cta--people-right.png");
}

.cta .deco-kazari-right .kirakira01 {
  top: -25px;
  right: -40px;
}

.cta .deco-kazari-right .kirakira02 {
  top: 33px;
  right: -68px;
}

@media screen and (max-width: 1300px) {
  .cta .white_box {
    font-size: 90%;
  }

  .cta--contact a {
    min-width: 320px;
  }

  .cta .deco-kazari-left {
    left: -40px;
  }

  .cta .deco-kazari-right {
    right: -50px;
  }
}

@media screen and (max-width: 1200px) {
  .cta--btn a {
    min-width: 210px;
    font-size: 150%;
  }

  .cta--tel .tel_txt {
    font-size: 380%;
  }
}

@media screen and (max-width: 1080px) {
  .cta .white_box {
    font-size: 80%;
  }

  .cta--btn .cta--contact a,
  .cta--btn .cta--line a {
    min-width: 210px;
  }

  .cta--tel .tel_txt::before {
    width: 49px;
    height: 28px;
    background-size: cover;
  }

  .cta--tel {
    margin-right: 16px;
  }
}

@media screen and (max-width: 767px) {
  .cta {
    padding: 40px 0 104px;
  }

  .cta-common {
    padding-bottom: 40px;
  }

  .cta .white_box {
    font-size: 90%;
  }

  .cta--btn,
  .cta--btn .btn {
    width: 100%;
  }

  .cta--btn .cta--contact a,
  .cta--btn .cta--line a {
    width: 100%;
    min-width: auto;
    font-size: 150%;
  }

  .cta--btn .cta--line a::before {
    width: 26px;
    height: 26px;
  }

  /* --- cta--contact --- */
  .cta--contact a {
    width: 100%;
    min-width: 0;
    padding: 15px 32px;
    font-size: 140%;
  }

  .cta--contact a::before {
    width: 16px;
    height: 16px;
    margin-right: 8px;
  }

  .page-contact .cta--tel::before,
  .page-contact .cta--tel::after {
    display: none;
  }

  /* --- cta--tel --- */
  .cta--tel {
    margin-right: 0;
    margin-bottom: 16px;
  }

  .cta--tel .tel_txt {
    margin-bottom: 8px;
    font-size: 300%;
  }

  .cta--tel .tel_txt::before {
    width: 49px;
    height: 27px;
    background-size: cover;
  }

  /* --- kazari --- */
  .cta .deco-kazari-left {
    left: -24px;
    width: 87px;
    height: 140px;
    background-size: cover;
  }

  .cta .deco-kazari-right {
    right: -24px;
    width: 90px;
    height: 140px;
    background-size: cover;
  }

  .cta .deco-kirakira {
    display: none;
  }
}

/* cta-page
**************************************** */
.cta-page {
  padding-top: 80px;
  padding-bottom: 40px;
}

.cta-page .imgarea {
  margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
  /* hover */
  .cta-page a:hover {
    opacity: 0.6;
  }
}

@media screen and (max-width: 767px) {
  .cta-page {
    padding: 40px 0 24px;
  }

  .cta-page .imgarea {
    margin-bottom: 8px;
  }
}

/* parts - deco
**************************************** */
.deco {
  position: absolute;
  z-index: 0;
  background-size: cover;
}

.deco-inu {
  width: 188px;
  height: 195px;
  background-image: url("../images/common/illust-inu01.png");
}

.deco-roller {
  width: 112px;
  height: 118px;
  background-image: url("../images/common/illust07.png");
}

.deco-roller2 {
  width: 102px;
  height: 122px;
  background-image: url("../images/common/illust03.png");
}

.deco-roller-wh {
  width: 118px;
  height: 125px;
  background-image: url("../images/common/illust01.png");
}

.deco-bucket {
  width: 117px;
  height: 124px;
  background-image: url("../images/common/illust02.png");
}

.deco-bucket2 {
  width: 81px;
  height: 87px;
  background-image: url("../images/common/illust06.png");
}

.deco-helmet {
  width: 139px;
  height: 111px;
  background-image: url("../images/common/illust04.png");
}

.deco-brush {
  width: 73px;
  height: 88px;
  background-image: url("../images/common/illust05.png");
}

.deco-balloon {
  width: 109px;
  height: 167px;
  background-image: url("../images/common/illust08.png");
}

.deco-kirakira {
  width: 70px;
  height: 70px;
  background-image: url("../images/common/kirakira.png");
}

/* text-dot
**************************************** */
.text-dot i {
  position: relative;
  line-height: 1;
}

.text-dot i::before {
  content: "";
  position: absolute;
  top: -0.3em;
  left: 0.4em;
  display: block;
  width: 6px;
  height: 6px;
  background-color: #cb9902;
  border-radius: 50%;
}

@media screen and (max-width: 767px) {
  .text-dot i::before {
    width: 4px;
    height: 4px;
  }
}

/* yellow-line_box
**************************************** */
.yellow-line_box-wrap {
  padding: 40px;
}

.yellow-line_box,
.yellow-line_box span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: block;
  pointer-events: none;
}

.yellow-line_box::before,
.yellow-line_box::after,
.yellow-line_box span::before,
.yellow-line_box span::after {
  content: "";
  position: absolute;
  display: block;
  background-image: url("../images/common/line-yellow.png");
}

.yellow-line_box::before,
.yellow-line_box::after {
  left: 0;
  width: 100%;
  height: 2px;
}

.yellow-line_box::before {
  top: 0;
}

.yellow-line_box::after {
  bottom: 0;
}

.yellow-line_box span::before,
.yellow-line_box span::after {
  top: 0;
  width: 2px;
  height: 100%;
}

.yellow-line_box span::before {
  left: 0;
}

.yellow-line_box span::after {
  right: 0;
}

@media screen and (max-width: 767px) {
  .yellow-line_box-wrap {
    padding: 32px;
  }
}

/* white_box
**************************************** */
.white_box {
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 64px;
  padding-right: 64px;
  background-color: #fff;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767px) {
  .white_box {
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* cont_box
**************************************** */
.cont_box {
  position: relative;
}

.cont_box .txtarea {
  position: relative;
  width: 50%;
  left: 50%;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 150px;
}

.cont_box-reverse .txtarea {
  left: auto;
  padding-left: 0;
  padding-right: 150px;
}

.cont_box .imgarea {
  width: 50%;
  height: 100%;
  left: 0;
  background-color: #eee;
  background-position: center;
  background-size: cover;
  position: absolute;
}

.cont_box-reverse .imgarea {
  left: auto;
  right: 0;
}

@media screen and (max-width: 1600px) {
  .cont_box .txtarea {
    padding-left: 80px;
  }

  .cont_box-reverse .txtarea {
    padding-left: 0;
    padding-right: 80px;
  }
}

@media screen and (max-width: 1240px) {
  .cont_box .inner {
    display: flex;
    flex-direction: column-reverse;
  }

  .cont_box .txtarea {
    left: auto;
    width: 100%;
    padding-left: 0;
  }

  .cont_box .txtarea p br {
    display: none;
  }

  .cont_box .imgarea {
    position: relative;
    width: 120%;
    height: 800px;
    margin-left: -10%;
  }

  .cont_box-reverse .txtarea {
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .cont_box .txtarea {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .cont_box .imgarea {
    height: 400px;
  }
}

/* slide_wrap
**************************************** */
.slide_wrap {
  position: relative;
  overflow: hidden;
}

.slide_wrap .slick-arrow {
  position: absolute;
  top: calc(50% - 72px / 2);
  z-index: 5;
  width: 72px;
  height: 72px;
  border-width: 2px;
  border-color: #47352c;
  border-top-style: solid;
  border-right-style: solid;
  transform: rotate(45deg);
  transition: 0.4s ease-out;
}

.slide_wrap .slick-prev {
  left: -5%;
  transform: rotate(-135deg);
}

.slide_wrap .slick-next {
  right: -7%;
}

.slide_wrap .slick-list {
  overflow: visible;
}

.slide_wrap .slick-slide {
  opacity: 0.2;
  transition: 0.4s ease-out;
}

.slide_wrap .slick-slide.slick-active {
  opacity: 1;
}

.slide_wrap {
  margin-left: -32px;
}

.slide_wrap .post {
  margin-left: 32px;
}

@media screen and (min-width: 1140px) {
  /* hover */
  .slide_wrap .slick-prev:hover {
    left: -6%;
  }

  .slide_wrap .slick-next:hover {
    right: -8%;
  }
}

@media screen and (max-width: 1600px) {
  .slide_wrap .slick-prev {
    left: 0;
  }

  .slide_wrap .slick-next {
    right: -2%;
  }
}

@media screen and (max-width: 767px) {
  .slide_wrap .slick-arrow {
    width: 32px;
    height: 32px;
  }

  .slide_wrap .slick-prev {
    left: 0;
  }

  .slide_wrap .slick-next {
    right: 0;
  }

  .slide_wrap .post {
    margin-left: 0;
  }
}

/* ##############################################################################

    HEADER

############################################################################## */

/* header
**************************************** */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 88px;
  margin-top: 24px;
  line-height: 1;
  z-index: 9990;
  transition: all 0.4s ease-out;
}

.header--ttl {
  font-size: 80%;
}

.page-contact .header {
  position: absolute;
  background-color: transparent;
  box-shadow: none;
}

.fixed_nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  width: 100%;
  background-color: #47352c;
  height: 88px;
  transition: all 0.4s ease-out;
}

.fixed_nav.js-nav-show {
  transform: translateY(0);
}

.fixed_nav .inner {
  height: 100%;
}

@media screen and (min-width: 768px) {
  .fixed_nav .gnav--tel {
    font-size: 120%;
  }

  .header--logo {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .fixed_nav {
    height: 56px;
  }
}

@media screen and (min-width: 768px) {
  /* pc */
  .header--nav,
  .gnav,
  .gnav li,
  .gnav a {
    height: 100%;
  }
}

@media screen and (max-width: 1400px) {
  .header--logo {
    max-width: 160px;
  }

  .header--ttl {
    font-size: 10px;
    line-height: 1.4;
  }
}

@media screen and (max-width: 1184px) {
  .header .inner {
    width: 100%;
    padding-left: 14px;
  }
}

@media screen and (max-width: 767px) {
  .header {
    position: fixed;
    height: 56px;
    margin-top: 0;
  }

  .header.js-nav-show {
    background-color: #47352c;
  }

  .header .inner {
    padding-left: 8px;
  }

  .header--logo {
    position: relative;
    z-index: 10;
  }
}

/* gnav
**************************************** */
.home .gnav--home {
  display: none;
}

.gnav a {
  display: -webkit-flex;
  display: flex !important;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  line-height: 1.5;
  text-align: left;
  letter-spacing: 0.1em;
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.33), 0 0 16px rgba(0, 0, 0, 0.33);
}

.gnav--list a {
  color: #fff;
  font-size: 114.28%;
}

.fixed_nav .gnav a {
  text-shadow: none;
}

.gnav--list {
  white-space: nowrap;
}

.gnav--list,
.gnav--list li,
.gnav--link {
  height: 100%;
}

.gnav--link {
  padding-left: 16px;
  padding-right: 16px;
}

.gnav a:hover,
.gnav .current > a {
  color: #e2c76a;
}

.gnav--inner {
  height: 100%;
}

.toggle-menu > a {
  position: relative;
}

.toggle-menu > a::after {
  content: "";
  display: block;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  border-color: rgba(255, 255, 255, 0.5) transparent transparent transparent;
  position: absolute;
  left: calc(50% - 10px / 2);
  bottom: 16px;
  border-radius: 3px;
}

/* ---gnav--submenu --- */
.toggle-menu {
  position: relative;
}

.gnav--submenu {
  display: none;
  position: absolute;
  left: 50%;
  width: 190%;
  max-width: 230px;
  padding: 16px 40px;
  border-radius: 4px;
  background-color: #2c2521;
  transform: translate(-50%, 10px);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  white-space: normal;
}

.gnav--submenu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: calc(50% - 15px / 2);
  display: block;
  border-style: solid;
  border-width: 0 7.5px 7px 7.5px;
  border-color: transparent transparent #2c2521 transparent;
}

.gnav--submenu a {
  -webkit-justify-content: start;
  justify-content: start;
  padding: 12px 0;
  font-size: 100%;
}

.gnav--submenu li:not(:last-child) {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
}

.fixed_nav .gnav--submenu {
  transform: translate(-50%, -6px);
}

/* ---CTA --- */
.gnav--contact a {
  transition: all 0.4s ease-out;
}

.fixed_nav .gnav--contact a {
  padding-left: 45px;
  padding-right: 45px;
  color: #47352c;
  background-color: #f0b914;
  transition: padding 0.4s ease-out, background 0.4s ease-out 0.4s;
}

@media screen and (max-width: 1440px) {
  .gnav--link {
    padding: 28px 12px;
  }
}

@media screen and (max-width: 1400px) {
  /* ---CTA --- */
  .fixed_nav {
    transform: translateY(-200%);
  }

  .fixed_nav .gnav--contact a {
    padding: 28px 16px;
    position: absolute;
    top: 100px;
    left: 16px;
    height: 40px;
  }
}

@media screen and (max-width: 1320px) {
  .gnav a {
    font-size: 100%;
  }

  .gnav--submenu {
    padding: 8px 24px;
  }
}

@media screen and (max-width: 767px) {
  .home .gnav--home {
    display: block;
  }

  .gnav--list,
  .gnav--list li,
  .gnav--link {
    height: auto;
  }

  .gnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    background: #90ad91 url(../images/common/gnav-sp-bg.jpg) top center;
    background-size: cover;
    transform: scale(1.05);
    -webkit-filter: blur(10px);
    filter: blur(10px);
    transition: opacity 0.4s linear;
    transition: transform 0.4s ease-in-out, opacity 0.4s linear, filter 0.4s linear;
    transition: transform 0.4s ease-in-out, opacity 0.4s linear, filter 0.4s linear;
  }

  .header.active .gnav {
    pointer-events: all;
    transform: scale(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }

  .gnav a {
    justify-content: space-between;
    padding: 16px 24px;
    text-shadow: none;
    white-space: nowrap;
  }

  .gnav--list a {
    color: #222;
    font-size: 92%;
  }

  .gnav--link::after,
  .toggle-menu > a::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-bottom: none;
    border-left: none;
    border-top: 2px solid #d0cbb4;
    border-right: 2px solid #d0cbb4;
    transform: rotate(45deg);
  }

  .toggle-menu > a::after {
    position: relative;
    left: auto;
    bottom: auto;
    transform: rotate(135deg);
  }

  .gnav--inner {
    height: auto;
    padding: 64px 5% 5%;
  }

  .gnav--list {
    background-color: #fff;
    border-radius: 4px;
  }

  .gnav--list:not(:last-child) {
    margin-bottom: 40px;
  }

  .gnav--list > li:not(:last-child) {
    border-bottom: 1px solid #e7e5e4;
  }

  .gnav--list > li.gnav--about {
    border-bottom: none;
  }

  .toggle-menu {
    position: relative;
  }

  .toggle-menu > a {
    pointer-events: none;
  }

  /* ---gnav--submenu --- */
  .gnav--submenu {
    position: relative;
    left: 0;
    width: 100%;
    max-width: 100%;
    padding: 8px 18px;
    transform: none !important;
    background-color: #e7e0c2;
    border-radius: 0;
    box-shadow: none;
  }

  .gnav--submenu::before {
    display: none;
  }

  .gnav--submenu li:not(:last-child) {
    border-color: rgb(255, 255, 255);
  }

  .gnav--submenu a {
    padding: 16px;
    white-space: normal;
  }

  /* ---gnav_btn --- */
  .gnav_btn {
    position: fixed;
    top: 0;
    right: 0;
    width: 56px;
    height: 56px;
    z-index: 9999;
  }

  .gnav_btn--lines {
    position: relative;
    width: 28px;
    height: 20px;
  }

  .gnav_btn--lines span {
    transition: all 0.4s;
    box-sizing: border-box;
  }

  .gnav_btn--lines span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
  }

  .gnav_btn--lines span:nth-of-type(1) {
    top: 0;
  }

  .gnav_btn--lines span:nth-of-type(2) {
    top: 50%;
  }

  .gnav_btn--lines span:nth-of-type(3) {
    bottom: 0;
  }

  .header.active .gnav_btn--lines span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-45deg);
    transform: translateY(9px) rotate(-45deg);
  }

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

  .header.active .gnav_btn--lines span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(45deg);
    transform: translateY(-9px) rotate(45deg);
  }

  /* ---CTA --- */
  .gnav--cta {
    padding: 5% 5%;
    background-color: #fff;
  }

  .gnav--cta .cta--ttl {
    font-size: 150%;
    line-height: 1.5;
  }

  .gnav--cta .cta--tel a {
    padding: 0;
    letter-spacing: 0.02em;
    line-height: 1;
  }

  /* --- SNS --- */
  .gnav--sns {
    background-color: #fff;
  }
  .gnav--sns li img {
    width: 24px;
    aspect-ratio: 1/1;
  }
  .gnav--sns li a {
    padding-inline: 16px;
  }
}

/* ##############################################################################

    FOOTER

############################################################################## */

/* kihachi
*************************************************** */
.kihachi,
.kihachi span {
  height: 102px;
}

.kihachi {
  position: absolute;
  bottom: 0;
  z-index: 50;
  width: 100%;
}

.kihachi::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  display: block;
  width: 100%;
  height: 60px;
  background-color: #27211d;
}

.kihachi span {
  position: absolute;
  z-index: 4;
  bottom: 3px;
  display: block;
  width: 130px;
  background-image: url("../images/common/kihachi.gif");
  animation: kihachi 50s ease-in-out both infinite;
}

@media screen and (max-width: 767px) {
  .kihachi,
  .kihachi span {
    height: 78px;
  }

  .kihachi::before {
    height: 30px;
  }

  .kihachi span {
    width: 100px;
    background-size: cover;
    animation: kihachi 30s ease-in-out both infinite;
  }
}

/* pagetop
*************************************************** */
.pagetop {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 999;
  width: 230px;
  height: 165px;
  transition: all 0.4s ease-out;
  transform: translateY(165px);
}

.pagetop-show {
  transform: translateY(0);
}

.pagetop span {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  padding: 32px 12px;
  color: #fff;
  font-weight: bold;
  text-align: right;
  background-color: #47352c;
}

.pagetop::before,
.pagetop::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 202px;
  height: 108px;
  background-size: cover;
}

.pagetop::before {
  background-image: url(../images/common/kihachi03.png);
}

.pagetop::after {
  opacity: 0;
  background-image: url(../images/common/kihachi02.png);
}

.pagetop:hover::before {
  opacity: 0;
}

.pagetop:hover::after {
  opacity: 1;
}

.fixed--cta {
  position: fixed;
  right: 230px;
  bottom: 0;
  z-index: 999;
  width: 230px;
  height: 165px;
  transition: all 0.4s ease-out;
  transform: translateY(165px);
}

.fixed--cta span {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  padding: 32px 12px;
  color: #47352c;
  font-weight: bold;
  text-align: center;
  background-color: #f0b914;
}

.fixed--cta2 {
  position: fixed;
  right: 460px;
  bottom: 0;
  z-index: 999;
  width: 230px;
  height: 165px;
  transition: all 0.4s ease-out;
  transform: translateY(165px);

}

.fixed--cta2 span {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  padding: 32px 12px;
  color: #47352c;
  font-weight: bold;
  text-align: center;
      background: #f8f8f8;
}


.fixed--cta-show {
  transform: translateY(0);
}

@media screen and (max-width: 767px) {
  .pagetop {
    width: 130px;
    height: 117px;
  }

  .pagetop::before,
  .pagetop::after {
    width: 100%;
    height: 70px;
  }

  .pagetop span {
    padding: 24px 16px;
    text-align: center;
    font-size: 80%;
  }

  .fixed--cta {
    right: 129px;
    width: 130px;
    height: 117px;
  }

  .fixed--cta span {
    padding: 24px 16px;
    font-size: 80%;
  }

  .fixed--cta2 {
    right: 259px;
    width: 130px;
    height: 117px;
  }

  .fixed--cta2 span {
    padding: 24px 16px;
    font-size: 80%;
  }
}

/* footer
*************************************************** */
.footer a {
  color: #fff;
}

.footer > .inner {
  padding: 72px 0;
}

@media screen and (max-width: 1140px) {
  .footer > .inner {
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .footer > .inner {
    padding: 32px 0;
  }
}

/* footer--main
*************************************************** */
.footer--main {
  margin-right: 140px;
}

.footer--logo {
  margin-bottom: 32px;
}

.footer--address {
  font-size: 114.28%;
}

@media screen and (max-width: 1400px) {
  .footer--main {
    margin-right: 80px;
  }
}

@media screen and (max-width: 1140px) {
  .footer--main {
    margin-right: 0;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .footer--main {
    margin-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
}

/* footer--rgt
*************************************************** */
.footer--rgt {
  -webkit-flex: 1;
  flex: 1;
}

.footer--area {
  padding: 13px 64px;
  background-color: #1d1916;
}

.footer--area a {
  margin-right: 12px;
}

.footer--area a:hover {
  color: #f0b914;
}

@media screen and (max-width: 1140px) {
  .footer--rgt {
    width: 100%;
  }

  .footer--area {
    width: 100%;
    max-width: none;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .footer--area {
    padding: 13px 32px;
    text-align: left;
  }
}

/* footer--nav
*************************************************** */
.footer--nav-list:not(:last-child) {
  margin-right: 64px;
}

.footer--nav a {
  display: block;
  border: 7em;
}

.footer--nav a:hover {
  opacity: 0.6;
}

.footer--nav .list li:not(:last-child) {
  margin-bottom: 8px;
}

@media screen and (max-width: 1140px) {
  .footer--nav-list:not(:last-child) {
    width: calc(33.33% - 42px);
  }
}

@media screen and (max-width: 767px) {
  .footer--nav a {
    width: 100%;
    padding: 0 8px;
    margin-right: 0;
  }

  .footer--nav-list:not(:last-child) {
    width: 100%;
    margin-bottom: 8px;
    margin-right: 0;
  }
}

/* footer--sub_nav
*************************************************** */
.footer--sub_nav {
  padding-bottom: 112px;
  opacity: 0.5;
}

.page-contact .footer--sub_nav,
.page-entry .footer--sub_nav {
  padding-top: 16px;
  padding-bottom: 16px;
}

.footer--copyright {
  text-align: center;
  margin-right: 24px;
}

.pbl {
  text-align: center;
  font-size: 85.71%;
  letter-spacing: 0.18em;
}

@media screen and (max-width: 767px) {
  .footer--sub_nav {
    padding-bottom: 120px;
  }

  .footer--sub_nav .flex-j-end {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer--copyright {
    margin-right: 0;
  }
}

/* fixed snsエリア
*************************************************** */
.fixed_sns {
  position: fixed;
  bottom: 200px;
  right: 0;
  z-index: 999;
  padding: 24px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #89A388;
  background-image: url(../images/common/bg-green.png);
  background-position: cover;
  transition: all .4s ease-out;
  transform: translateX(232px);
}
.fixed_sns-active {
  transform: translateX(0);
}
.fixed_sns-close {
  transform: translateX(232px);
}
.fixed_sns .btn_group {
  gap: 8px;
}
.fixed_sns--btn {
  width: 184px;
  height: 38px;
  cursor: pointer;
  transition: .4s ease-out;
}
.fixed_sns--btn:hover {
  opacity: .7;
}
.fixed_sns--btn a,
.fixed_sns--btn p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding-inline: 20px;
  height: 100%;
  font-size: 13px;
  color: #47352C;
  border-radius: 2px;
  background-color: #fff;
}
.fixed_sns--btn .close {
  justify-content: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, .5);
}
.instagram::before,
.x::before ,
.close::before {
  content: "";
  display: block;
  width: 16px;
  height: auto;
  aspect-ratio: 1/1;
  background-size: contain;
  background-repeat: no-repeat;
}
.instagram::before {
  background-image: url("../images/common/icon-insta.svg");
}
.x::before {
  background-image: url("../images/common/icon-x.svg");
}
.close::before {
  background-image: url("../images/common/close.svg");
}
.fixed_sns--deco {
  position: absolute;
}
.fixed_sns--deco img {
  max-width: unset;
}
.fixed_sns--deco:first-of-type {
  top: -124px;
  right: 8px;
}
.fixed_sns--deco:nth-of-type(2) {
  top: -48px;
  left: 0;
}
.fixed_sns--deco:nth-of-type(3) {
  bottom: -8px;
  right: 0;
}

/* ##############################################################################

    INDEX

############################################################################## */

/* hero
*************************************************** */
.hero {
  position: relative;
  height: 960px;
  overflow: hidden;
}

.hero_slide {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.hero_slide li {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  transition: transform 8s ease;
  transform: scale(1.25);
  background-color: #7b915f;
  background-position: center;
}

.hero_slide li:nth-child(1) {
  background-image: url("../images/hero--bg.jpg");
}

.hero .txtarea {
  height: 100%;
  padding-top: 90px;
  transform: scale(1.05);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: url(
    data:image/svg + xml;charset=utf-8,
    <svgxmlns="http://www.w3.org/2000/svg"><f…terid="filter"><feGaussianBlurstdDeviation="10"/></filter></svg>#filter
  );
  -webkit-filter: blur(10px);
  filter: blur(10px);
  transition: transform 1s ease-in-out 3s, opacity 1s linear 2s, filter 1s linear 3s;
}

.hero--ttl {
  font-size: 300%;
}

.hero--txt {
  margin-bottom: 64px;
  font-size: 114.28%;
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.33), 0 0 16px rgba(0, 0, 0, 0.33);
}

.hero--scroll span {
  position: relative;
  display: block;
  width: 8px;
  height: 24px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  border: 1px solid #fff;
  border-radius: 10px;
  overflow: hidden;
}

.hero--scroll span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  animation: hero_scroll 2s ease-out infinite;
}

.hero .deco-roller-wh {
  bottom: 190px;
  left: calc(50% + 270px);
}

.hero.loadstart .hero_slide li {
  transform: scale(1);
}

.hero.loadstart .txtarea {
  transform: scale(1);
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: url(
    data:image/svg + xml;charset=utf-8,
    <svgxmlns="http://www.w3.org/2000/svg"><filterid="filter"><feGaussianBlurstdDeviation="0"/></filter></svg>#filter
  );
  -webkit-filter: blur(0);
  filter: blur(0);
}



@media screen and (max-width: 767px) {
  .hero {
    height: 640px;
  }

  .hero_slide li:nth-child(1) {
    background-image: url("../images/hero--bg-sp.jpg");
  }

  .hero .txtarea {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 72px;
  }

  .hero--txt {
    margin-bottom: 32px;
    font-size: 100%;
  }
}

/* home_line_news
*************************************************** */
.hero_banner_wrap {
  padding: 20px 40px;
  position: relative;
  margin-block: 40px;
}
.hero_banner_slide .img .img_inner {
  display: block;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 2 / 1;
}
.hero_banner_slide .img {
  padding: 0 10px;
}
.hero_banner_slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero_banner_slide--arrow {
  position: absolute;
  width: calc(100% - 80px);
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
}
.hero_banner_slide--arrow .slick-arrow {
  width: 16px;
  height: auto;
  aspect-ratio: 1/1;
  transition: .4s ease-out;
  cursor: pointer;
  pointer-events: all;
  position: relative;
  z-index: 1;
}
.hero_banner_slide--arrow .slick-arrow::before {
  content: '';
  width: 5px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-width: 1px;
  border-color: #47352c;
  border-top-style: solid;
  border-right-style: solid;
  cursor: pointer;
  rotate: 45deg;
}
.hero_banner_slide--arrow .slick-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background: #fff;
  border-radius: 100%;
  z-index: -1;
}

.hero_banner_slide--arrow .slick-prev:before {
  rotate: -135deg;
}
@media screen and (max-width: 767px) {
.hero_banner_slide--arrow {
  position: absolute;
  width: calc(100% - 40px);
}
  .hero_banner_wrap {
  padding: 20px;
}
}

/* home_line_news
*************************************************** */
.home_line_news .post--link {
  font-size: 150%;
}
.home_line_news .inner {
  padding-bottom: 12px;
  border-bottom: 1px solid #47352c;
}
.slide_line_news {
  width: auto;
  max-width: 70%;
}
.slide_line_news .post--link:hover {
  opacity: .6;
}
.slide_line_news--arrow {
  gap: 16px;
}
.slide_line_news--arrow .slick-arrow {
  width: 16px;
  height: auto;
  aspect-ratio: 1/1;
  border-width: 2px;
  border-color: #47352c;
  border-top-style: solid;
  border-right-style: solid;
  transform: rotate(45deg);
  transition: .4s ease-out;
  cursor: pointer;
}
.slide_line_news--arrow .slick-prev {
  transform: rotate(-135deg);
}
.home_line_news .more_link {
  color: #47352c;
  padding: 4px 8px;
  margin-left: 8px;
  border: 1px solid #47352c;
  border-radius: 9999px;
  order: 3;
  transition: .4s ease-out;
  white-space: nowrap;
}
.home_line_news .more_link:hover {
  color: #fff;
  background-color: #47352c;
}
.home_line_news--ttl {
  padding-right: 5%;
  width: fit-content;
  white-space: nowrap;
}
.line_news--post {
  position: relative;
  white-space: nowrap; /* 折り返し無しにする */
  overflow: hidden; /* はみ出た部分を非表示 */
  text-overflow: ellipsis; /* 語尾を3点リーダーに */
}
@media screen and (max-width: 767px) {
  .home_line_news .post--link {
    font-size: 125%;
  }
  .home_line_news .inner {
    position: relative;
    align-items: flex-start;
    gap: 12px;
  }
  .slide_line_news {
    max-width: calc(100% - 56px);
  }
  .home_line_news--ttl {
    width: 100%;
    padding-right: 0;
  }
  .slide_line_news--arrow {
    position: absolute;
    bottom: 20px;
    right: 0;
  }
  .slide_line_news--arrow .slick-arrow {
    width: 14px;
    height: auto;
  }
  .home_line_news .more_link {
    font-size: 75%;
    font-family: 秀英丸ゴシック B, 'YuGothic', '游ゴシック', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', 'Meiryo', sans-serif;;
  }
  .line_news--post {
    font-size: 85%;
  }

}

/* home_info
*************************************************** */
.home_info {
  background: #ecebe6 url("../images/info--bg.jpg");
}

.home_info .white_box {
  min-height: 250px;
  padding: 24px 40px;
  box-shadow: none;
  background-color: rgba(255, 255, 255, 0.9);
}

.home_info--news .deco-kazari {
  bottom: -50px;
  left: -81px;
}

.home_info--blog .deco-kazari {
  top: -88px;
  right: -78px;
}

.home_info .section_ttl {
  font-size: 228.5%;
}

.home_info .section_ttl-en {
  font-size: 37.5%;
  font-weight: bold;
}

.home_info--news,
.home_info--blog {
  margin-bottom: 0 !important;
}

@media screen and (max-width: 1140px) {
  .home_info--inner {
    flex-direction: column;
  }

  .home_info--news,
  .home_info--blog {
    width: 100%;
  }

  .home_info--news {
    margin-bottom: 80px !important;
  }
}

@media screen and (max-width: 1600px) {
  .home_info--news .deco-kazari {
    left: -20px;
  }
}

@media screen and (max-width: 767px) {
  .home_info .white_box {
    padding: 16px 32px;
  }

  .home_info--news .deco-kazari {
    bottom: -32px;
    left: -10px;
    width: 100px;
  }

  .home_info--blog .deco-kazari {
    top: -60px;
    right: -11px;
    width: 100px;
  }
}

/* home_message
*************************************************** */
.home_message {
  position: relative;
  overflow: hidden;
  background: #ecebe7 url("../images/message_bg.jpg") center;
  background-size: cover;
}

.home_message--txt .btn {
  width: calc(50% - 8px);
}

.home_message--txt .btn a {
  min-width: 100%;
}

.home_message--img {
  background-image: url("../images/messsage--img.jpg");
}

.home_message--img .deco-kazari {
  top: 18px;
  left: 64px;
}

.home_message .deco-bucket {
  top: 230px;
  right: 70px;
  mix-blend-mode: multiply;
}

.home_message .deco-roller2 {
  bottom: 45px;
  left: -198px;
  mix-blend-mode: multiply;
}

@media screen and (max-width: 1600px) {
  .home_message .deco-bucket {
    top: 60px;
    right: -30px;
  }
}

@media screen and (max-width: 767px) {
  .home_message--txt .btn {
    width: 100%;
  }

  .home_message--img .deco-kazari {
    top: 28px;
    left: 24px;
    width: 140px;
  }

  .home_message .deco-bucket {
    top: 40px;
    right: 0;
    width: 80px;
    height: 85px;
  }

  .home_message .deco-roller2 {
    left: 0;
    bottom: -30px;
    width: 70px;
    height: 84px;
  }

  .message--sign {
    width: auto;
    height: 25px;
  }
}

/* home_review
*************************************************** */
.home_review {
  background: #8ea98f url("../images/review_bg.jpg") center;
  background-size: cover;
}

.home_review .white_box {
  display: block;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.home_review .review_box {
  mix-blend-mode: multiply;
}

.home_review .white_box:hover {
  background-color: #e7e0c2;
}

.review_box--review_num {
  font-size: 85.71%;
}

.review_box--review_num strong {
  font-size: 166.66%;
}

.review_box dt {
  margin-right: 24px;
  padding-right: 32px;
  border-right: 1px solid #bababa;
}

.review_box--review_star {
  margin-right: 24px;
  font-size: 571.42%;
}

@media screen and (max-width: 767px) {
  .home_review .ttl-dotline img {
    width: auto;
    height: 80px;
  }

  .review_box dt {
    margin-right: 0;
    margin-bottom: 8px;
    padding-right: 0;
    border-right: none;
  }

  .review_box--review_star {
    margin-right: 8px;
    font-size: 280%;
  }

  .g_review_star img {
    width: 36px;
    height: 36px;
  }
}

/* home_kodawari
*************************************************** */
.home_kodawari {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.home_kodawari .cont_box .txtarea {
  padding-top: 146px;
  padding-bottom: 146px;
}

.home_kodawari .cont_box .home_kodawari--txt01 {
  padding-top: 0 !important;
}

.home_kodawari--img01 {
  background-image: url("../images/kodawari--img01.jpg");
}

.housing_kodawari--img01--txt {
  position: absolute;
  bottom: 24px;
  right: 24px;
  color: #fff;
  text-shadow: 0 0 5px #000;
}

.home_kodawari--txt01 .deco-kazari {
  top: -178px;
  right: -30px;
}

.home_kodawari--txt01 .deco-helmet {
  top: -150px;
  right: -83px;
}

.home_kodawari--img02 {
  background-position: top 20% center !important;
  background-image: url("../images/kodawari--img02.jpg");
}

.home_kodawari .cont_box .txtarea.home_kodawari--txt03 {
  padding-bottom: 560px;
}

.home_kodawari--txt02 .deco-kazari {
  top: 32px;
  left: -198px;
  z-index: -1;
}

.home_kodawari--txt02 .deco-brush {
  top: 181px;
  left: -169px;
}

.home_kodawari--img03 {
  background-position: top 20% center !important;
  background-image: url("../images/kodawari--img03.jpg");
}

.home_kodawari--txt03 .deco-bucket {
  top: 30px;
  right: -103px;
}

.home_kodawari--illust {
  position: absolute;
  left: 52%;
  right: 2%;
  margin: auto;
  bottom: 64px;
  text-align: center;
}

@media screen and (max-width: 1600px) {
  .home_kodawari--txt01 .deco-kazari {
    right: 0;
  }

  .home_kodawari--txt01 .deco-helmet {
    top: -180px;
    right: -50px;
  }

  .home_kodawari--txt02 .deco-kazari {
    top: -70px;
    left: -50px;
  }

  .home_kodawari--txt02 .deco-brush {
    top: -20px;
    left: 230px;
  }

  .home_kodawari .cont_box .txtarea {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .home_kodawari .cont_box .txtarea.home_kodawari--txt03 {
    padding-bottom: 480px;
  }
}

@media screen and (max-width: 1240px) {
  .home_kodawari .cont_box .txtarea.home_kodawari--txt03 {
    padding-bottom: 540px;
  }

  .home_kodawari--illust {
    right: 2%;
    bottom: 850px;
  }
}

@media screen and (max-width: 767px) {
  .housing_kodawari--img01--txt {
    right: 0;
    left: 0;
    text-align: center;
    bottom: auto;
    top: 24px;
  }

  .home_kodawari .cont_box .txtarea {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .home_kodawari--txt01 .deco-kazari {
    top: -86px;
    right: -20px;
    width: 120px;
  }

  .home_kodawari--txt02 .deco-kazari {
    top: 0;
    left: -10px;
    width: 140px;
  }

  .home_kodawari--txt01 .deco-helmet {
    top: -70px;
    right: -20px;
    width: 70px;
    height: 56px;
  }

  .home_kodawari--txt02 .deco-brush {
    top: -40px;
    left: 0;
    width: 55px;
    height: 66px;
  }

  .home_kodawari .cont_box .txtarea.home_kodawari--txt03 {
    padding-bottom: 280px;
  }

  .home_kodawari--illust {
    left: 2%;
    bottom: 440px;
    max-height: 240px;
  }
}

@media screen and (max-width: 420px) {
  .home_kodawari li:first-child .heading-2 {
    font-size: 6vw;
  }
}

/* home_for_companies
*************************************************** */
.home_for_companies {
  background: #e5e1be url("../images/for_companies_bg.jpg") center;
  background-size: cover;
}

.for_companies--list li {
  position: relative;
  padding-top: 32px;
  padding-bottom: 32px;
  padding-left: 32px;
  padding-right: 32px;
  border-radius: 2px;
}

.for_companies--list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  border-radius: 2px 2px 0 0;
  background-color: #a1bea2;
}

.for_companies--ttl {
  font-size: 190%;
  line-height: 1.42;
}

.for_companies--ttl::after {
  content: "";
  display: block;
  width: 32px;
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 1px dotted #6c854a;
}

.for_companies--ttl-sm {
  font-size: 180%;
}

.for_companies--ttl-sm span {
  letter-spacing: -0.17em;
}

.home_for_companies .deco-kazari {
  top: 120px;
  right: -40px;
}

.home_for_companies .deco-kazari2 {
  bottom: -120px;
  left: 70px;
  z-index: 0;
  width: 368px;
  height: 247px;
  background-image: url(../images/for_companies--kazari02.png);
}

.home_for_companies .deco-hukidashi {
  top: -82px;
  right: -41px;
  z-index: 0;
  width: 128px;
  height: 128px;
  font-size: 142.85%;
  line-height: 1.5;
  background-image: url(../images/for_companies--hukidashi.png);
}

@media screen and (max-width: 1600px) {
  .home_for_companies .deco-kazari {
    top: 30px;
    right: 0;
  }
}

@media screen and (max-width: 1400px) {
  .for_companies--list li {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media screen and (max-width: 1140px) {
  .for_companies--list li {
    width: 48%;
    margin-left: 2%;
  }
}

@media screen and (max-width: 767px) {
  .home_qualifications .for_companies--list li {
    padding: 20px 0;
  }
  .home_for_companies {
    padding-bottom: 154px;
  }
  .for_companies--list li {
    margin-left: 0;
  }

  .for_companies--ttl {
    font-size: 170%;
  }
  .home_qualifications .for_companies--ttl {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 130%;
  }

  .for_companies--ttl::after {
    margin-top: 8px;
  }

  .home_for_companies .deco-hukidashi {
    top: -20px;
    right: -10px;
    width: 88px;
    height: 88px;
    font-size: 100%;
    background-size: cover;
  }

  .home_for_companies .deco-kazari {
    top: -40px;
    right: 0;
    width: 120px;
  }

  .home_for_companies .deco-kazari2 {
    bottom: -154px;
    left: 0;
    width: 198px;
    height: 133px;
    background-size: cover;
  }
  /* 塗装時期スライド
  *************************************************** */
  .slide_paint .white_box {
    margin: 0;
    min-height: 500px;
    box-shadow: unset;
  }
  .slide_paint .slick-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
  }
  .slide_paint .slick-dots li {
    padding: 0;
    margin: 0;
    width: 12px;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: unset;
    border: 1px solid #A1BE9E;
    overflow: hidden;
    transition: .3s ease-in-out;
  }
  .slide_paint .slick-dots li.slick-active {
    background-color: #A1BE9E;
  }
  .when_to_paint_contents .slide_paint .slick-dots li::before {
    width: 100%;
    height: 100%;
    background-color: transparent;
  }
}

/* home_seminar
*************************************************** */
.home_seminar {
  position: relative;
  overflow: hidden;
}

.home_seminar .section_ttl {
  letter-spacing: -0.08em;
}

.home_seminar .section_ttl small {
  display: block;
  font-size: 73.33%;
}

.home_seminar--img {
  background-image: url("../images/seminar--img.jpg");
}

.seminar_schedule--date {
  padding-right: 48px;
  font-size: 171.42%;
}

.seminar_schedule--ttl {
  -webkit-flex: 1px;
  flex: 1px;
  padding-top: 48px;
  font-size: 128.57%;
  line-height: 1.66;
}

.seminar_schedule--ttl::before {
  content: "";
  position: absolute;
  left: -58px;
  display: block;
  width: 36px;
  height: 20px;
  border-left: 2px solid #dfd5ac;
  border-bottom: 2px solid #dfd5ac;
}

.home_seminar .deco-kazari {
  top: -20px;
  left: -122px;
}

@media screen and (max-width: 1140px) {
  .home_seminar .deco-kazari {
    top: -40px;
    left: -30px;
    width: 130px;
  }
}

@media screen and (max-width: 767px) {
  .seminar_schedule--date {
    padding-right: 0;
  }

  .seminar_schedule--ttl {
    padding-top: 0;
  }

  .seminar_schedule--ttl::before {
    display: none;
  }

  .home_seminar .deco-kazari {
    top: -30px;
    left: -10px;
    width: 100px;
  }
}

@media screen and (max-width: 420px) {
  .home_seminar .section_ttl {
    font-size: 9vw;
  }
}

/* home_works
*************************************************** */
.home_works {
  position: relative;
  overflow: hidden;
  background: #e5e2d1 url("../images/works--bg.jpg") center;
  background-size: cover;
}

.home_works .deco-balloon {
  top: 160px;
  left: calc(50% - 720px);
}

.home_works .deco-kazari {
  bottom: 0;
  right: calc(50% - 500px);
}

@media screen and (max-width: 1140px) {
  .home_works .deco-kazari {
    right: 10px;
  }
}

@media screen and (max-width: 767px) {
  .home_works {
    padding-bottom: 130px;
  }

  .home_works .deco-kazari {
    width: 190px;
    bottom: -1px;
  }
}

/* home_voice
*************************************************** */
.home_voice {
  position: relative;
  overflow: hidden;
}

.home_voice .deco-roller2 {
  top: 230px;
  left: calc(50% - 720px);
  width: 82px;
  height: 98px;
  background-size: cover;
  mix-blend-mode: normal;
}

/* home_map
*************************************************** */
.home_map {
  position: relative;
  padding-bottom: 100px;
  background: #89a388 url("../images/map--bg.jpg") center;
  background-size: cover;
}

.home_map .ttl-line-naname {
  font-size: 400%;
}

.home_map--img {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid #47352c;
  box-shadow: 0 0 10px 0 rgba(4, 0, 0, 0.1);
}

.home_map .deco-bucket2 {
  top: -50px;
  right: -65px;
}

.home_map .deco-roller {
  bottom: -150px;
  left: 100px;
}

.home_map .deco-kazari {
  bottom: 0;
  left: -104px;
  width: 171px;
  height: 233px;
  background-image: url(../images/map--kazari.png);
}

@media screen and (max-width: 1600px) {
  .home_map .deco-kazari {
    left: 0;
  }

  .home_map .deco-roller {
    left: 200px;
  }
}

@media screen and (max-width: 767px) {
  .home_map .ttl-dotline img {
    width: auto;
    height: 100px;
  }

  .home_map .ttl-line-naname {
    font-size: 180%;
  }

  .home_map .deco-kazari {
    left: 0;
    width: 111px;
    height: 150px;
    background-size: cover;
  }

  .home_map .deco-bucket2 {
    top: -63px;
    right: -10px;
    width: 50px;
    height: 54px;
  }

  .home_map .deco-roller {
    left: 110px;
    width: 70px;
    height: 74px;
  }
}

/* home_recruit
*************************************************** */
.home_recruit {
  height: 820px;
  padding-top: 90px;
  padding-bottom: 90px;
  overflow: hidden;
}

.home_recruit .inner {
  height: 100%;
}

.home_recruit--img {
  position: absolute;
  top: 90px;
  bottom: 90px;
  right: 90px;
  width: 70%;
  max-width: 1200px;
  z-index: -1;
  background: url(../images/recruit--img.jpg) center;
  background-size: cover;
}

.home_recruit--txt {
  max-width: 470px;
  padding: 70px 48px;
  background-color: #fff;
}

@media screen and (max-width: 1140px) {
  .home_recruit .section_ttl {
    margin-bottom: 0;
    padding-top: 40px;
    background-color: #fff;
  }

  .home_recruit--img {
    right: 40px;
  }

  .home_recruit--txt {
    padding: 40px 40px 40px 0;
  }
}

@media screen and (max-width: 767px) {
  .home_recruit {
    height: auto;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .home_recruit .inner {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .home_recruit--img {
    position: relative;
    top: 0;
    left: auto;
    right: -9%;
    width: 105%;
    max-width: none;
    height: 200px;
    margin-bottom: 40px;
  }

  .home_recruit--txt {
    padding: 0;
  }
}

/* Instagram
*************************************************** */
#instagram_area{
  padding: 120px 0;
}
#instagram_area .instagram_post{
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 100px;
}
@media screen and (max-width: 767px) {
  #instagram_area .instagram_post{
    width: 90%;
    margin: 0 auto 20px;
  }
}

/* ##############################################################################

    PAGE

############################################################################## */

/* page-staff スタッフ紹介
*************************************************** */
.staff_list {
  width: calc(50% - 24px);
}

.staff_list:not(:last-child) {
  margin-bottom: 56px;
}

.staff_list .imgarea {
  position: relative;
  width: 327px;
  height: 520px;
  border: 2px solid #232529;
  line-height: 0;
  overflow: hidden;
  background-image: url(../images/staff/no-image.jpg);
  background-position: center;
  background-size: cover;
}

.staff_list .imgarea img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: 100%;
  transform: translate(-50%, -50%);
}

.staff_list .txtarea {
  width: calc(100% - 352px);
  margin-left: 24px;
}

.staff_detail {
  position: relative;
  height: fit-content;
  padding: 8px 24px;
  background: rgba(255, 255, 255, .75);
  border-radius: 2px;
  border-top: 1px dotted rgba(0, 0, 0, 0.1);
  line-height: 1.4;
  font-size: 93%;
}

.staff_detail dt {
  position: absolute;
  padding-top: 8px;
  color: #96b397;
  font-weight: 700;
}

.staff_detail dd {
  padding-left: 80px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.staff_detail dd:not(:last-child) {
  border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1400px) {
  .staff_list {
    width: 100%;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
  }

  .staff_list .txtarea {
    max-width: calc(100% - 367px);
  }

  .staff_list .imgarea {
    max-height: 440px;
  }
}

@media screen and (max-width: 767px) {
  .staff_list .txtarea {
    max-width: 100%;
    width: 100%;
    margin-top: 24px;
    margin-left: 0;
  }
}
/* page-staff スタッフ紹介（経営企画課以外のレイアウトを変更）
*************************************************** */
.staff_reform:not(.staff_reform-management) .staff_list {
  justify-content: flex-start;
  flex-direction: column;
  gap: 16px;
}
.staff_reform:not(.staff_reform-management) .staff_list .imgarea {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.staff_reform:not(.staff_reform-management) .staff_list .txtarea {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
}
.staff_reform:not(.staff_reform-management) .staff_list .txtarea--profile {
  width: 70%;
}
.staff_reform:not(.staff_reform-management) .staff_detail {
  width: 27%;
}
.staff_reform:not(.staff_reform-management) .staff_detail dt {
  position: unset;
}
.staff_reform:not(.staff_reform-management) .staff_detail dd {
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .staff_reform:not(.staff_reform-management) .staff_list .txtarea {
    flex-direction: column;
    margin-top: 0;
  }
    .staff_reform:not(.staff_reform-management) .staff_list .txtarea--profile,
    .staff_reform:not(.staff_reform-management) .staff_detail {
      width: 100%;
    }
}


/* page-companies 企業の方へ
*************************************************** */
.companies_intro--lists {
  background: #f8f8f8;
  padding: 48px;
  max-width: calc(100% - 620px);
}

.companies_intro--list .heading-3 {
  background: #eee;
  padding: 4px;
  border-radius: 2px;
  margin-right: 16px;
  color: #fff;
  width: 96px;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}

.companies_intro--list .heading-3.anzen {
  background-color: #2d96d2;
}

.companies_intro--list .heading-3.hinsitsu {
  background-color: #e0762c;
}

.companies_intro--list .heading-3.koki {
  background-color: #8a5db3;
}

.companies_intro--list .heading-3.zisseki {
  background-color: #e64a4a;
}

.companies_intro--list .heading-3.kankyo {
  background-color: #339435;
}

.companies_intro--list p {
  max-width: calc(100% - 114px);
  line-height: 1.6;
}

.maintenance_list {
  width: calc((100% - 80px) / 3);
}

.companies_owner--column .txtarea {
  width: calc(100% - 424px);
}

.companies_nayami--lists {
  gap: 32px;
}

.companies_nayami--list {
  width: calc((100% - 80px) / 4);
}

@media screen and (max-width: 1140px) {
  .companies_nayami--list {
    width: calc((100% - 40px) / 2);
    margin-bottom: 56px;
  }

  .companies_nayami--list .imgarea img {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .companies_intro--lists {
    max-width: 100%;
    padding: 0;
    background: transparent;
  }

  .companies_nayami--lists {
    gap: 0;
  }

  .companies_intro--list,
  .maintenance_list,
  .companies_owner--column .txtarea,
  .companies_nayami--list {
    width: 100%;
  }

  .maintenance_list:not(:last-child),
  .companies_nayami--list:not(:last-child) {
    margin-bottom: 40px;
  }

  .companies_intro--list {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }

  .companies_intro--list:not(:last-child) {
    margin-bottom: 16px;
  }

  .companies_intro--list .heading-2 {
    width: 80px;
    margin-bottom: 0;
    margin-right: 14px;
    padding: 4px 10px;
  }

  .companies_intro--list p {
    -webkit-flex: 1px;
    flex: 1px;
  }

  .companies_owner--column .imgarea {
    margin-bottom: 16px;
  }
}

/* page-housing 一般のお客様へ
*************************************************** */
.housing_kodawari {
  position: relative;
  overflow: hidden;
}

.housing_kodawari .cont_box .imgarea,
.housing_kodawari .cont_box .txtarea {
  min-height: 760px;
}

.housing_kodawari--img01 {
  background-image: url(../images/housing/housing_kodawari--img01.jpg);
}

.housing_kodawari--img02 {
  background-image: url(../images/housing/housing_kodawari--img02.jpg);
}

.housing_kodawari--img03 {
  background-image: url(../images/housing/housing_kodawari--img03.jpg);
}

.housing_kodawari--img04 {
  background-image: url(../images/housing/housing_kodawari--img04.jpg);
}

.housing_kodawari--img05 {
  background-image: url(../images/housing/housing_kodawari--img05.jpg);
}

@media screen and (max-width: 1240px) {
  .housing_kodawari .cont_box .txtarea {
    min-height: 100%;
  }
}

@media screen and (max-width: 767px) {
  .housing_kodawari .cont_box .imgarea {
    min-height: 400px;
  }

  .housing_kodawari--cont01 .txtarea {
    padding-top: 0;
  }
}

@media screen and (max-width: 420px) {
  .ousing_kodawari--cont05 .section_ttl {
    font-size: 8vw;
  }
}

/* page-smile 笑顔のヒミツ
*************************************************** */

.smile_intro--yakusoku {
  display: inline-block;
  background: #e4e6e0;
  line-height: 1;
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.smile_follow--list {
  max-width: 300px;
  margin: 0 40px 56px;
}

.smile_flow--step {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

.smile_flow--step li {
  display: flex;
  align-items: center;
  background-color: #fff;
}

.smile_flow--step li:not(:last-child) {
  border-bottom: 1px solid #dadada;
}

.smile_flow--step li .txt {
  flex: 1;
  padding: 16px 34px;
}

.smile_flow--step li .num {
  font-size: 175%;
  line-height: 1.4;
}

.smile_flow--step li .txt-lg {
  font-size: 134%;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .smile_flow--step li {
    display: block;
  }

  .smile_flow--step li img {
    width: 100%;
  }

  .smile_flow--step li .txt {
    padding: 16px;
  }

  .smile_flow--step li .num {
    font-size: 150%;
  }

  .smile_flow--step li .txt-lg {
    font-size: 100%;
  }
}

/* page-faq よくある質問
*************************************************** */
.faq-box p:not(:last-child),
.faq-box ul:not(:last-child) {
  margin-bottom: 1em;
}

.faq_last .heading-2 {
  line-height: 1.7;
}

/* page-recruit 採用情報
*************************************************** */

/* --- recruit_growth --- */
.recruit_growth {
  position: relative;
  overflow: hidden;
}

.recruit_growth--txt {
  padding-right: 100px;
}

.recruit_growth--txt p {
  font-size: 114.28%;
  line-height: 2;
}

.recruit_growth--img {
  background-image: url("../images/recruit/recruit_growth--img.jpg");
}

/* --- recruit_about_company --- */
.recruit_about_company--cont {
  position: relative;
  padding: 64px 48px 48px;
  background-color: #fff;
  border-radius: 8px;
  border: 4px solid;
}

.recruit_about_company--cont--ttl {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  display: inline-block;
  width: 95%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 16px;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  border-radius: 8px;
  background-color: #222;
}

.recruit_about_company--cont01 {
  border-color: #3257a9;
}

.recruit_about_company--cont01 .recruit_about_company--cont--ttl {
  background-color: #3257a9;
}

.recruit_about_company--cont02 {
  border-color: #207723;
}

.recruit_about_company--cont02 .recruit_about_company--cont--ttl {
  background-color: #207723;
}

.recruit_about_company--cont03 {
  border-color: #c73c3c;
}

.recruit_about_company--cont03 .recruit_about_company--cont--ttl {
  background-color: #c73c3c;
}

.recruit_about_company--cont04 {
  border-color: #bd8c1d;
}

.recruit_about_company--cont04 .recruit_about_company--cont--ttl {
  background-color: #bd8c1d;
}

.recruit_about_company--cont .txtarea {
  -webkit-flex: 1px;
  flex: 1px;
}

.recruit_about_company--cont .imgarea {
  margin-left: 48px;
}

.recruit_about_company--cont.flex-reverse .imgarea {
  margin-left: 0;
  margin-right: 48px;
}

.recruit_about_company--cont .imgarea img {
  width: 100%;
}

.recruit_about_company--cont01 .deco-kazari {
  bottom: -100px;
  left: -60px;
  z-index: 10;
}

.recruit_about_company--cont02 .deco-bucket {
  bottom: -30px;
  right: -70px;
  z-index: 10;
}

.recruit_about_company--cont03 .deco-inu {
  bottom: -40px;
  left: -104px;
  z-index: 10;
}

.recruit_about_company--cont04 .deco-helmet {
  bottom: -50px;
  right: -80px;
  z-index: 15;
}

.recruit_about_company--cont04 .deco-kazari {
  right: -30px;
  bottom: -80px;
  z-index: 10;
}

/* --- recruit_occupation --- */
.recruit_occupation {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.recruit_occupation .deco-roller {
  bottom: -4px;
  right: -50px;
  width: 80px;
  height: 84px;
  background-size: cover;
}

.recruit_occupation--ttl {
  font-size: 342.85%;
  line-height: 1;
}

.recruit_occupation--ttl small {
  position: relative;
  display: inline-block;
  margin-left: 32px;
  padding: 12px 32px;
  color: #fff;
  font-size: 49.99%;
  line-height: 1;
  background-color: #207723;
  border-radius: 2px;
}

.recruit_occupation--img01 {
  background-image: url("../images/recruit/recruit_occupation--img01.jpg");
}

.recruit_occupation--img02 {
  background-image: url("../images/recruit/recruit_occupation--img02.jpg");
}

.recruit_occupation--img03 {
  background-image: url("../images/recruit/recruit_occupation--img03.jpg");
}

/* --- recruit_interview --- */
.recruit_interview {
  background: url("../images/recruit/recruit_interview--bg.jpg") center;
  background-size: cover;
}

.recruit_interview::before {
  content: "";
  position: absolute;
  top: 230px;
  left: calc(50% - 630px);
  z-index: 1;
  display: block;
  width: 157px;
  height: 128px;
  background-image: url(../images/recruit/recruit_interview--kazari.png);
}

.recruit_interview .deco-helmet {
  top: 280px;
  left: calc(50% - 740px);
  z-index: 1;
  transform: scale(-1, 1) rotate(16deg);
}

/* --- recruit_requirements --- */
.recruit_requirements {
  background: url("../images/recruit/recruit_requirements--bg.jpg") center;
  background-size: cover;
}

.recruit_requirements--list::before {
  content: "";
  position: absolute;
  top: -119px;
  right: -16px;
  display: block;
  width: 202px;
  height: 166px;
  background-image: url(../images/recruit/recruit_requirements--kazari.png);
}

.recruit_requirements--list li {
  position: relative;
  height: 320px;
  font-size: 285.71%;
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.33);
}

.recruit_requirements--txt {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 2px;
}

.recruit_requirements--txt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  transition: transform 1.5s ease-in-out;
}

.recruit_requirements--txt small {
  display: block;
  font-weight: normal;
  font-size: 40%;
}

.recruit_requirements--newgraduates .recruit_requirements--txt::before {
  background-image: url("../images/recruit/recruit_bnr--newgraduates.jpg");
}

.recruit_requirements--career .recruit_requirements--txt::before {
  background-image: url("../images/recruit/recruit_bnr--career.jpg");
}

.recruit_requirements--list a:hover::before {
  transform: scale(1.1);
}

/* --- recruit_entry --- */
.recruit_entry {
  padding-top: 135px;
  padding-bottom: 150px;
  background: url("../images/recruit/recruit_entry--bg.jpg") center;
  background-size: cover;
}

.entry_btn a {
  position: relative;
  display: inline-block;
  width: 640px;
  padding: 48px;
  color: #161615;
  font-size: 285.71%;
  background-color: #f0e6b5;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.entry_btn a::before,
.entry_btn a::after {
  content: "";
  display: block;
}

.entry_btn a::before {
  width: 30px;
  height: 30px;
  margin-left: auto;
  margin-right: auto;
  background-image: url(../images/recruit/recruit_entry--icon.png);
}

.entry_btn a::after {
  position: absolute;
  top: -77px;
  right: 16px;
  z-index: 1;
  width: 202px;
  height: 108px;
  background-image: url(../images/common/kihachi02.png);
}

@media screen and (max-width: 1600px) {
  .recruit_interview::before {
    left: 130px;
  }

  .recruit_interview .deco-helmet {
    left: 20px;
  }
}

@media screen and (max-width: 1240px) {
  .recruit_occupation .recruit_occupation--txt01 {
    padding-top: 0;
  }

  .recruit_about_company--cont .imgarea {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  /* --- recruit_growth --- */
  .recruit_growth {
    position: relative;
    overflow: hidden;
  }

  /* --- recruit_about_company --- */
  .recruit_about_company {
    overflow: hidden;
  }

  .recruit_about_company--cont {
    padding: 56px 16px 16px;
  }

  .recruit_about_company--cont03,
  .recruit_about_company--cont04 {
    padding: 88px 16px 16px;
  }

  .recruit_about_company--cont .txtarea {
    margin-bottom: 24px;
  }

  .recruit_about_company--cont .imgarea {
    width: 100%;
  }

  .recruit_about_company--cont .imgarea,
  .recruit_about_company--cont.flex-reverse .imgarea {
    margin-right: 0;
    margin-left: 0;
  }

  .recruit_about_company--cont01 .deco-kazari {
    bottom: -30px;
    left: 70px;
    width: 130px;
  }

  .recruit_about_company--cont02 .deco-bucket {
    bottom: -30px;
    right: 20px;
    width: 88px;
    height: 93px;
  }

  .recruit_about_company--cont03 .deco-inu {
    bottom: -20px;
    left: 70px;
    width: 110px;
    height: 114px;
  }

  .recruit_about_company--cont04 .deco-kazari {
    right: 10px;
    width: 150px;
  }

  .recruit_about_company--cont04 .deco-helmet {
    bottom: -20px;
    right: 20px;
    width: 110px;
    height: 88px;
  }

  /* --- recruit_occupation --- */
  .recruit_occupation {
    position: relative;
    overflow: hidden;
    padding-top: 64px;
  }

  .recruit_occupation--ttl {
    align-items: flex-start;
    font-size: 210%;
  }

  .recruit_occupation--ttl small {
    display: block;
    margin-left: 0;
    margin-top: 8px;
    padding: 8px 20px;
  }

  .recruit_occupation .deco-roller {
    bottom: 6px;
    right: -50px;
    width: 60px;
    height: 63px;
  }

  /* --- recruit_interview --- */
  .recruit_interview::before {
    top: 146px;
    left: 250px;
    width: 107px;
    height: 88px;
    background-size: cover;
  }

  .recruit_interview .deco-helmet {
    top: 157px;
    left: 0;
    width: 100px;
    height: 80px;
  }

  /* --- recruit_requirements --- */
  .recruit_requirements--list::before {
    top: -50px;
    right: -16px;
    width: 117px;
    height: 96px;
    background-size: cover;
  }

  .recruit_requirements--list li {
    height: 160px;
    font-size: 200%;
  }

  /* --- recruit_entry --- */
  .recruit_entry {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .recruit_entry .section_ttl img {
    width: auto;
    height: 120px;
  }

  .entry_btn a {
    width: 100%;
    padding: 28px;
    font-size: 200%;
  }

  .entry_btn a::before {
    width: 20px;
    height: 20px;
    background-size: cover;
  }

  .entry_btn a::after {
    top: -60px;
    right: 6px;
    width: 141px;
    height: 84px;
    background-size: cover;
  }
}

/* page-about 会社概要
*************************************************** */
.kigyorinen {
  border-radius: 4px;
}

.kigyorinen .heading-2 {
  line-height: 1.6;
}

.keieirinen_list {
  display: inline-block;
  width: 380px;
  background: #fff;
  padding: 16px 40px;
  margin: 3px;
  border-radius: 4px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}

.ai_list {
  width: 136px;
  height: 136px;
  margin: 0 -4px;
  padding: 40px 0;
  font-size: 171.42%;
  line-height: 1.2;
  text-align: center;
  border-radius: 68px;
  background-color: rgba(150, 179, 151, 0.5);
}

/* --- sales_results --- */
.sales_results {
  font-size: 114.28%;
}

.sales_results .list-dl {
  border-top: none;
}

.sales_results .list-dl dt {
  color: #000;
  padding-top: 0;
}

.sales_results .list-dl dd {
  padding-top: 0;
  padding-bottom: 0;
  text-align: right;
  border-bottom: none;
}

.sales_results--list {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 180px;
  padding-right: 24px;
}

.sales_results--list:not(:last-child) {
  border-bottom: 4px dotted #e7e0c2;
}

.sales_results--sales_column {
  margin-right: 32px;
}

.sales_results--ttl {
  padding: 8px 15px;
  color: #fff;
  background-color: #47352c;
}

.sales_results--period,
.sales_results--sales {
  position: absolute;
  left: 0;
}

.sales_results--period {
  width: 160px;
}

.sales_results--sales {
  width: 200px;
}

.sales_results--sales_column {
  padding-left: 210px;
}

.sales_results--sales_breakdown::before,
.sales_results--sales_breakdown::after {
  content: "";
  width: 10px;
  display: block;
  height: calc(100% - 16px);
  position: absolute;
  top: 8px;
  border-left: 1px solid;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: #999;
}

.sales_results--sales_breakdown::before {
  left: 0;
}

.sales_results--sales_breakdown::after {
  right: 0;
  transform: scale(-1, 1);
}

.sales_results--sales_breakdown {
  padding-left: 20px;
  padding-right: 20px;
}

.sales_results--sales_breakdown dd {
  padding-left: 190px;
}

.sales_results--works_num {
  width: 200px;
}

.sales_results--works_num dd {
  padding-left: 100px;
}

@media screen and (max-width: 1280px) {
  .sales_results--list {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .sales_results--list:not(:last-child) {
    border-bottom: none;
    padding-bottom: 32px;
  }

  .sales_results--period {
    position: relative;
    width: 100%;
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 1140px) {
  .sales_results--list {
    align-items: flex-start;
  }

  .sales_results--sales_column {
    padding-left: 0;
  }

  .sales_results--sales {
    position: relative;
    width: auto;
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 767px) {
  .ai_list {
    width: 33.33%;
    height: auto;
    margin: -10px -4px;
    padding: 26px 0;
  }

  .sales_results--sales_column,
  .sales_results--works_num {
    width: 100%;
  }

  .sales_results--sales_column {
    margin-right: 0;
  }

  .sales_results--sales_breakdown dd {
    padding-left: 0;
  }

  .sales_results--works_num .list-dl dt {
    position: absolute;
  }

  /* --- sales_results --- */
  .sales_results {
    font-size: 95%;
    line-height: 1.5;
  }
}

/* page-contact お問い合わせ（無料相談）
*************************************************** */
.contact--txt {
  margin-bottom: 24px;
}

.contact--tel {
  margin-bottom: 24px;
}

.contact--tel .tel_txt {
  font-size: 200%;
}

@media screen and (max-width: 767px) {
  .contact--txt.txt-ctr {
    text-align: left;
  }
}

/* page-air 空気をきれいに
*************************************************** */
.air_about .box {
  padding: 20px;
  border-radius: 4px;
}

.air_about .box img {
  float: left;
  width: 25%;
  margin-right: 24px;
}

.air_effect .flex-col3 li {
  border: 2px solid;
  border-radius: 4px;
  padding: 16px;
}

.air_test--evidence .box {
  padding: 18px 24px;
  border-radius: 4px;
}

.air_test--result,
.air_safety--content,
.air_flow--merit {
  border: 2px solid #47352c;
  background-color: #fff;
  border-radius: 4px;
  padding: 0 80px 48px;
}

.air_test--result .heading-2,
.air_safety--content .heading-2,
.air_flow--merit .heading-2 {
  margin-top: -32px;
}

.air_test--result .heading-2 span,
.air_safety--content .heading-2 span,
.air_flow--merit .heading-2 span {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 4px;
  background-color: #47352c;
  color: #fff;
}

.air_safety--content .txt {
  flex: 1;
  margin-left: 60px;
}

.air_safety--content .box {
  padding: 24px;
  border-radius: 4px;
}

.air_safety--content .box li {
  width: calc(100% / 4 - (8px * 3 / 4));
  margin-bottom: 8px;
  border: 2px solid #c3bd88;
  border-radius: 4px;
  padding: 18px 8px;
}

.air_price--list li {
  background-color: #fff;
  border: 2px solid #90ab90;
  border-radius: 8px;
  padding-bottom: 24px;
}

.air_price--list li .ttl {
  background-color: #90ab90;
  margin-bottom: 8px;
  color: #fff;
  border-radius: 6px 6px 0 0;
  padding: 8px 8px;
  text-align: center;
  font-size: 160%;
}

.air_price--list li .txt {
  padding: 0 16px;
}

.air_price--list li .txt h4 {
  margin-top: 16px;
  margin-bottom: 4px;
  background-color: #e5e1bf;
  padding: 4px;
  border-radius: 4px;
  text-align: center;
  font-size: 108%;
}

.air_price--list li .txt .price {
  font-size: 114%;
  text-align: center;
}

.air_flow--step li {
  display: flex;
  align-items: center;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}

.air_flow--step li:nth-child(1),
.air_flow--step li:nth-child(5) {
  justify-content: center;
  background-color: #e5e1bf;
  padding: 8px;
  border-radius: 4px;
  font-size: 180%;
  text-align: center;
}

.air_flow--step li:not(:last-child) {
  margin-bottom: 16px;
}

.air_flow--step li .txt {
  flex: 1;
  margin-top: -14px;
  margin-left: 34px;
}

.air_flow--step li .num {
  font-size: 220%;
  margin-bottom: 4px;
  color: #207723;
}

.air_flow--step li .txt-lg {
  font-size: 134%;
  line-height: 1.5;
}

.air_comp--table th,
.air_comp--table td {
  padding: 16px;
  border: 1px solid #47352c;
  vertical-align: middle;
  color: #47352c;
}

.air_comp--table th {
  font-size: 120%;
}

.air_comp--table td {
  text-align: center;
  font-size: 140%;
}

.air_comp--table thead th {
  background-color: #cee2ce;
}

.air_comp--table thead th[rowspan="2"] {
  background-color: #96b397;
}

.air_comp--table tbody th {
  background-color: #cee2ce;
}

.air_comp--table tbody .bactkleen th {
  background-color: #b7ce7f;
}

.air_comp--table tbody .bactkleen td {
  background-color: #f3e89e;
  color: #d00;
}

.page-air .scroll {
  overflow-x: auto;
}

@media screen and (max-width: 767px) {
  .page-air .scroll {
    overflow-x: scroll;
  }

  .page-air .list-disc li {
    padding-left: 1.3em;
    line-height: 1.5;
  }

  .page-air .list-disc li:not(:last-child) {
    margin-bottom: 16px;
  }

  .page-air .list-disc li::before {
    top: 0.3em;
  }

  .air_about .box img {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-bottom: 12px;
  }

  .air_about .box .heading-4 {
    font-size: 134%;
  }

  .air_test--result,
  .air_safety--content,
  .air_flow--merit {
    padding: 0 20px 14px;
  }

  .air_test--result .heading-2,
  .air_safety--content .heading-2,
  .air_flow--merit .heading-2 {
    margin-top: -20px;
    margin-bottom: 16px;
  }

  .air_test--result .heading-2 span,
  .air_safety--content .heading-2 span,
  .air_flow--merit .heading-2 span {
    width: 100%;
    padding: 14px 12px;
  }

  .air_safety--content .flex {
    flex-direction: column-reverse;
  }

  .air_safety--content .txt {
    margin-left: 0;
    margin-bottom: 12px;
  }

  .air_safety--content .box {
    padding: 18px 10px;
  }

  .air_safety--content .box li {
    width: 100%;
    padding: 18px 12px;
  }

  .air_comp--table {
    width: 760px;
  }

  .air_flow--step li {
    display: block;
    padding: 24px;
  }

  .air_flow--step li .txt {
    margin-top: 0;
    margin-left: 0;
  }
}

/* page-thanks
*************************************************** */

@media screen and (max-width: 767px) {
  .page-thanks .inner.txt-ctr {
    text-align: left;
  }
}

/* page-404
*************************************************** */
.page-404 .content-404 p {
  margin-bottom: 40px;
  font-size: 115%;
}

@media screen and (max-width: 767px) {
  .page-404 .content-404 p {
    margin-bottom: 24px;
    font-size: 100%;
  }
}

/* page-sitemap
*************************************************** */
.sitemap--list {
  width: 49%;
}

.sitemap--list-page.sitemap--list > li {
  margin-bottom: 10px;
}

.sitemap--list-posts.sitemap--list .sitemap--item-ttl:not(:first-child) {
  margin-top: 10px;
}

.sitemap--list-posts.sitemap--list > .sitemap--item-child {
  margin-bottom: 16px;
}

.sitemap--list li a {
  display: block;
  text-decoration: none;
}

.sitemap--list li a:hover {
  color: #4267b2;
  text-decoration: underline;
}

.sitemap--item-ttl {
  font-weight: bold;
}

.sitemap--item-taxonomy .sitemap--item:not(.sitemap--item-ttl) {
  font-size: 87%;
}

/* --- category --- */
.sitemap--list li.sitemap--item-child a {
  padding-left: 8px;
}

.sitemap--list li.sitemap--item-child.sitemap--item-page {
  padding: 6px 0 6px 24px;
}

.sitemap--list li.sitemap--item-taxonomy ul {
  letter-spacing: -0.4em;
}

.sitemap--list li.sitemap--item-taxonomy ul li {
  display: inline-block;
  padding: 0;
  margin-right: 8px;
  letter-spacing: normal;
}

.sitemap--list li.sitemap--item-child::before,
.sitemap--list li.sitemap--item-taxonomy ul li::before {
  display: none;
}

@media screen and (max-width: 767px) {
  .sitemap--list {
    width: 100%;
  }

  .sitemap--list-posts.sitemap--list > .sitemap--item-child {
    margin-bottom: 8px;
  }
}

/* ##############################################################################

    ARCHIVE

############################################################################## */

/* main_column
**************************************** */
.main_column {
  flex: 1;
  margin-right: 80px;
}

.archive-news .section_pdg,
.single-news .section_pdg {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* --- post --- */
.post {
  position: relative;
}

.post--link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.post--date {
  margin-right: 16px;
  color: #aaa;
  font-weight: bold;
}

.post--txtarea {
  flex: 1;
}

.post--icon {
  display: inline-block;
  padding: 4px;
  line-height: 1;
  margin-right: 8px;
  font-size: 80%;
  background-color: #f0b915;
}

.post--txt {
  word-break: break-word;
}

.cat_list {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.post--img {
  position: relative;
  background-color: #eee;
  background-position: center;
  background-size: cover;
  border-radius: 4px;
}

.post--img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
  background-color: rgba(142, 168, 141, 0.9);
  transition: 0.3s ease-in-out;
}

.post--img span {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  color: #fff;
  font-size: 142.85%;
  line-height: 1;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: 0.3s ease-in-out;
}

.cat_list a,
.cat_list span {
  margin-bottom: 4px;
  margin-right: 4px;
  padding: 4px 8px;
  float: left;
  color: #222222;
  font-size: 80%;
  line-height: 1;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #beb66d;
}

.post--txtarea time span:not(:last-child) {
  color: #7f7f7f;
}

@media screen and (min-width: 768px) {
  /* hover */
  .post:hover .post--img span,
  .post:hover .post--img::after {
    opacity: 1;
  }
}

@media screen and (max-width: 1100px) {
  .page-faq .container {
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .archive .container,
  .single .container {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .main_column {
    width: 100%;
    margin-right: 0;
    margin-bottom: 80px;
  }

  .page-faq .main_column {
    margin-bottom: 0;
  }
}

/* side_column
**************************************** */
.side_column {
  width: 264px;
}

.side_column.full {
  width: 100%;
}

.side_column a {
  display: block;
  color: #fff;
}

.side_column .list--works a {
  color: #47352c;
}

.side_column a::before {
  content: "";
  padding-top: 8px;
  padding-bottom: 8px;
}

.side_section:not(:last-child) {
  margin-bottom: 64px;
}

.side--ttl {
  line-height: 1;
  margin-bottom: 32px;
}

.side--ttl-first {
  display: inline-block;
  margin-left: -62px;
  color: #e7e0c2;
  font-size: 571.42%;
  transform: rotate(-15deg);
  text-transform: capitalize;
}

.side--ttl-first--works {
  color: #beb66d;
}

.side--ttl-last {
  position: relative;
  display: block;
  margin-top: -24px;
  margin-left: 50px;
  color: #fff;
  font-size: 128.57%;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: 0 0 3px rgb(145, 173, 146), 0 0 3px rgb(144, 172, 145), 0 0 3px rgb(144, 172, 145);
}

.bg-white .side--ttl-first {
  color: #d0cbb4;
}

.bg-white .side--ttl-last {
  text-shadow: none;
  color: #217723;
}

.bg-white .side_column a {
  color: #222;
}

/* --- post --- */
.posts-side .post:not(:last-child) {
  margin-bottom: 16px;
}

.posts-side .post--img {
  margin-right: 16px;
  border-radius: 4px;
  width: 64px;
  height: 64px;
}

.posts-side .txtarea {
  flex: 1;
}

.posts-side .post--date {
  color: #fff;
  opacity: 0.5;
  margin-bottom: 0;
}

.posts-side .post--ttl {
  line-height: 1.4;
}

/* --- category --- */
.side--list {
  font-size: 107.14%;
}

/* --- archive --- */
.side_column .archive_list--ttl {
  margin-bottom: 4px;
  color: #fff;
  cursor: pointer;
}

.side_column .archive_list--ttl::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: translateY(-2px) rotate(135deg);
  transition: 0.4s ease-out;
}

.side_column .archive_list--ttl.active::after {
  transform: translateY(2px) rotate(-45deg);
}

.side_column .archive_month {
  display: none;
  margin-bottom: 16px;
}

@media screen and (max-width: 1100px) {
  .side_column {
    width: 100%;
  }

  .page-faq .side_column {
    margin-bottom: 80px;
  }

  .page-faq .side--list {
    display: flex;
    justify-content: center;
  }

  .page-faq .side--list li:not(:last-child) {
    margin-right: 54px;
  }
}

/* --- archive-pulldown --- */
.archive-pulldown {
  position: relative;
  margin-left: auto;
  z-index: 1;
}

.archive-pulldown .archive_list {
  position: relative;
  margin-left: auto;
  font-size: 92%;
}

.archive-pulldown .archive_list:not(:last-child) {
  margin-right: 24px;
}

.archive-pulldown .archive_list a {
  display: block;
  padding: 2px 16px;
  text-align: left;
}

.archive-pulldown .archive_list a:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.archive-pulldown .archive_list--label {
  margin-right: 8px;
}

.archive-pulldown .archive_list--btn {
  cursor: pointer;
  border: none;
  outline: none;
  appearance: none;
  padding: 8px 54px 8px 32px;
  background-color: #fff;
  border: 1px solid #ccc;
}

.archive-pulldown .archive_list--btn::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 10px;
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
  transition: 0.2s ease-out;
  transform-origin: 50% 50%;
}

.archive-pulldown .active .archive_list--btn::after {
  top: 14px;
  transform: rotate(225deg);
}

.archive-pulldown .archive_list--menu {
  position: absolute;
  z-index: 1;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s ease-out;
}

.archive-pulldown .active .archive_list--menu {
  visibility: visible;
  opacity: 1;
}

/* blog
**************************************** */
.archive-blog > .container {
  background: #90ab90 url(../images/common/bg-green.png);
}

.posts-blog .post {
  background-color: #fff;
  box-shadow: 0 2px 4px 0 rgba(4, 0, 0, 0.2);
  transition: 0.4s ease-out;
}

.posts-blog .post:not(:last-child) {
  margin-bottom: 24px;
}

.posts-blog .post {
  line-height: 1.71;
}

.posts-blog .post--img {
  width: 220px;
  height: 220px;
  margin-left: 32px;
  border-radius: 0;
}

.posts-blog .post--txt {
  display: none;
}

.posts-blog .post--txtarea {
  width: 100%;
  padding: 50px;
}

.posts-blog .post--more {
  color: #d0cbb4;
  font-size: 114.28%;
  letter-spacing: 0.2em;
}

.posts-blog .post:hover {
  opacity: 0.5;
}

/* --- home_blog --- */
.posts-home_blog .post {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-top: 14px;
  padding-bottom: 14px;
  transition: all 0.4s ease-out;
}

.posts-home_blog .post:hover {
  opacity: 0.5;
}

.posts-home_blog .post:not(:last-child) {
  border-bottom: 1px dashed #ccc;
}

.posts-home_blog .post--img {
  width: 180px;
  margin-left: 24px;
}

.posts-home_blog .post--img::after {
  display: none;
}

.posts-home_blog .post--img + .post--txtarea {
  flex: 1;
  margin-right: 32px;
}

.posts-home_blog .heading-2 {
  font-size: 135.71%;
  letter-spacing: 0;
  margin-bottom: 0;
}

.posts-home_blog .post--info {
  margin-bottom: 0;
}

.posts-home_blog .cat_list {
  display: none;
}

.posts-home_blog .post--more {
  display: none;
}

@media screen and (max-width: 768px) {
  .posts-blog .post {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .posts-blog .post {
    padding: 24px;
  }

  .posts-home_blog .post--img {
    width: 100%;
    margin-bottom: 16px;
    margin-left: 0;
    padding-top: 71.111%;
  }

  .posts-home_blog .post--txtarea {
    margin-right: 0;
  }
}

/* news
**************************************** */
/* --- news--archive --- */
.news--archive {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #111;
}

.news--archive li {
  margin-left: 8px;
  margin-right: 8px;
}

.news--archive a {
  color: #fff;
}

/* --- posts-news --- */
.posts-news .post {
  padding-top: 16px;
  transition: 0.4s ease-out;
}

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

.posts-news .post:not(:last-child) {
  padding-bottom: 14px;
  border-bottom: 1px dashed #ccc;
}

.posts-news .post .post--txtarea {
  flex: 1;
}

.posts-home_news a,
.posts-news a {
  display: inline-flex;
  align-items: center;
}

.posts-news a[href="javascript:void(0);"],
.posts-news a[href="javascript:void(0);"]::before {
  color: inherit;
  cursor: inherit;
  opacity: 1;
  text-decoration: none;
}

.posts-home_news a[target="_blank"]::after,
.posts-news a[target="_blank"]::after {
  content: "";
  width: 18px;
  height: 18px;
  margin-left: 8px;
  background-image: url(/wp/wp-content/themes/original_theme/images/common/icon-new_tab.png);
}

.posts-news .post--date {
  margin-right: 32px;
}

.posts-news .post--img {
  width: 180px;
  margin-left: 24px;
  object-fit: contain;
  background: rgb(252 251 248);
}

.posts-news .post--img::after {
  display: none;
}

.posts-news .post--img.no-image,
.posts-side .post--img.no-image {
  background-color: #eee;
}

.posts-news .post--img + .post--txtarea {
  -webkit-flex: 1px;
  flex: 1;
  margin-right: 32px;
}

/* --- posts-home_news --- */
.posts-home_news .heading-3 {
  font-size: 171.42%;
}

.posts-home_news .post--txt {
  font-size: 85.71%;
}

.posts-home_news .post--date,
.posts-home_blog .post--date {
  color: #756861;
  font-size: 114.28%;
}

@media screen and (max-width: 768px) {
  .posts-news .post {
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .posts-news .post--date {
    display: inline-block;
    margin-bottom: 4px;
    margin-right: 0;
  }

  .posts-news .post--txtarea {
    margin-right: 0;
  }

  .posts-news .post--img {
    width: 100%;
    margin-bottom: 16px;
    margin-left: 0;
  }
}

/* posts-voice
**************************************** */
.posts-voice .post--icon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.posts-voice .post--img {
  width: 100%;
  margin-bottom: 14px;
  padding-top: 67.48%;
  border: 2px solid #f0b915;
}

.archive .posts-voice {
  width: calc(100% + 40px);
}

.archive .posts-voice .post {
  width: calc(25% - 40px);
  margin-bottom: 64px;
  margin-right: 40px;
  border-radius: 4px;
}

@media screen and (max-width: 1140px) {
  .archive .posts-works .post {
    width: calc(50% - 40px);
  }
}

@media screen and (max-width: 767px) {
  .archive .posts-voice,
  .archive .posts-voice .post {
    width: 100%;
  }

  .archive .posts-voice .post {
    margin-bottom: 40px;
  }
}

/* posts-works
**************************************** */
.posts-works .post--icon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.posts-works .post--img {
  width: 100%;
  margin-bottom: 14px;
  padding-top: 67.48%;
}

.housing .posts-works,
.archive .posts-works {
  width: calc(100% + 40px);
}

.housing .posts-works .post,
.archive .posts-works .post {
  width: calc(33% - 40px);
  margin-bottom: 64px;
  margin-right: 40px;
  border-radius: 4px;
}

@media screen and (max-width: 1140px) {
  .housing .posts-works .post,
  .archive .posts-works .post {
    width: calc(50% - 40px);
  }
}

@media screen and (max-width: 767px) {
  .housing .posts-works,
  .housing .posts-works .post,
  .archive .posts-works,
  .archive .posts-works .post {
    width: 100%;
  }

  .housing .posts-works .post,
  .archive .posts-works .post {
    margin-bottom: 40px;
  }
}

/* posts-requirements
**************************************** */
.posts-requirements .post {
  margin-bottom: 40px;
  box-shadow: 0 2px 4px 0 rgba(4, 0, 0, 0.2);
  background-color: #fff;
}

.posts-requirements .post--img {
  width: 100%;
  padding-top: 66.666%;
  border-radius: 2px 2px 0 0;
}

.posts-requirements .post--txtarea {
  padding: 32px;
}

@media screen and (max-width: 767px) {
  .posts-requirements .post {
    width: 100%;
  }
}

/* posts-interview
**************************************** */
.posts-interview .post--img {
  margin-bottom: 16px;
  padding-top: 122.64%;
  background-size: cover;
  border-radius: 4px;
}

.posts-interview .post--group {
  background-color: #fff;
}

/* ##############################################################################

    SINGLE

############################################################################## */

/* single
**************************************** */
.article--post {
  padding: 48px 64px;
  background-color: #fff;
}

.single .article--post .post--date {
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .article--post {
    padding: 24px;
  }
}

/* single-works
**************************************** */
.twentytwenty-wrapper {
  position: relative;
  width: 100%;
  height: 720px;
  margin-bottom: 80px;
  display: inline-block;
  overflow: hidden;
  border: 3px solid #47352c;
}
.twentytwenty-after-label::before,
.twentytwenty-before-label::before {
  right: 1.5rem !important;
  padding: 8px 24px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  background: #47352c;
  border-radius: 50px;
  line-height: 1;
  top: 1.5rem !important;
  display: table;
  font-family: "din-2014", sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
}
.twentytwenty-before-label::before {
  left: 1.5rem !important;
}
.beer-reveal {
  border-right: 3px solid #47352c;
}

.twentytwenty01 > img,
.twentytwenty01 .beer-reveal > img {
  position: absolute;
  /* top: 50%;
  transform: translateY(-50%); */
}

@media screen and (max-width: 767px) {
  /* --- single-works --- */
  .twentytwenty-wrapper {
    height: 250px;
    margin-bottom: 40px;
  }
  .twentytwenty01 {
    height: 250px;
  }
}

/* --- works--voice --- */
.works--voice-txt,
.works--craftsman-txt {
  flex: 1;
}

.works--voice img {
  width: 160px;
  margin-left: 32px;
}

/* --- works--craftsman --- */
.works--craftsman .craftsman-img {
  width: 128px;
  margin-left: 32px;
}

.works--craftsman .craftsman-img img {
  margin-bottom: 8px;
}

.works--craftsman .craftsman-name {
  line-height: 1.5;
}

.works--craftsman .craftsman-name small {
  display: block;
}

/* --- works--imgs --- */
.works--gallery li {
  width: calc(50% - 8px);
  margin-bottom: 16px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  /* --- works--craftsman --- */
  .works--craftsman .craftsman-img {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* single-requirements
**************************************** */
.requirements_training--txt {
  padding: 24px;
}

.requirements--cont:not(:last-child) {
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .requirements--cont:not(:last-child) {
    margin-bottom: 40px;
  }
}

/* single-interview
**************************************** */
.interview--mainimg {
  margin-bottom: 90px;
}

.interview--mainimg .mainimg {
  width: 100%;
  height: 640px;
  background-color: #eee;
  background-position: center;
  background-size: cover;
}

.profile_box {
  position: absolute;
  right: 70px;
  bottom: -60px;
  background-color: #fff;
  padding: 24px 48px 32px 48px;
}

.interview--info .yellow-line_box-wrap {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.interview--info .list-dl {
  border-top: none;
}

.interview--info .list-dl dt {
  padding-top: 8px;
}

.interview--info .list-dl dd {
  padding-left: 90px;
  padding-top: 8px;
  padding-bottom: 0;
  border-bottom: none;
}

.interview--cont:not(:last-child) {
  margin-bottom: 80px;
}

.interview--cont:nth-child(2n) {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.schedule_box {
  padding: 24px 48px 32px 48px;
}

@media screen and (max-width: 767px) {
  .interview--info {
    width: 100%;
    overflow: hidden;
  }

  .interview--mainimg {
    margin-bottom: 0;
  }

  .interview--mainimg .mainimg {
    height: 400px;
  }

  .profile_box {
    position: relative;
    top: -40px;
    bottom: auto;
    left: 7%;
    padding: 24px 40px 32px 40px;
  }

  .interview--info .list-dl dt {
    position: absolute;
  }

  .interview--info .list-dl dd {
    padding-top: 8px;
    padding-left: 70px;
  }

  .interview--cont:not(:last-child) {
    margin-bottom: 40px;
  }

  .schedule_box {
    padding: 24px;
  }
}

/* single-voice
**************************************** */
.single-voice .works--img {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* wp-pagenavi
**************************************** */
.wp-pagenavi {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.wp-pagenavi .pages {
  display: none;
}

.wp-pagenavi .current,
.wp-pagenavi a {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  max-width: 42%;
  padding: 8px 16px;
  color: #47352c;
  font-size: 128.57%;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
  background-color: #e7e0c2;
  border-radius: 4px;
}

.archive-works .wp-pagenavi .current,
.single-works .wp-pagenavi .current,
.archive-works .wp-pagenavi a,
.single-works .wp-pagenavi a {
  background-color: #91ad92;
}

.wp-pagenavi .current,
.wp-pagenavi .extend,
.wp-pagenavi a {
  margin-bottom: 8px;
  margin-right: 8px;
}

.wp-pagenavi a:hover,
.wp-pagenavi .current {
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  .wp-pagenavi {
    margin-bottom: 40px;
  }

  .wp-pagenavi .current,
  .wp-pagenavi a {
    min-width: 33px;
    min-height: 32px;
  }
}

/* pass
**************************************** */
.single .pass {
  width: 100%;
}

.single .pass p:first-child {
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .single .pass p:first-child {
    text-align: left;
  }
}

/* ##############################################################################

    FORMY

############################################################################## */
#formy_form table {
  width: 100%;
}

#formy_form th,
#formy_form td {
  padding: 16px;
  vertical-align: middle;
  border-bottom: solid 1px #eee;
}

#formy_form th {
  font-weight: normal;
  white-space: nowrap;
  text-align: left;
  width: 34%;
}

#formy_form table input[type="text"],
#formy_form table input[type="email"],
#formy_form table input[type="tel"],
#formy_form table input[type="date"],
#formy_form table input[type="password"],
#formy_form table textarea {
  width: 100%;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  vertical-align: bottom;
}

#formy_form table input[type="text"],
#formy_form table input[type="email"],
#formy_form table input[type="tel"],
#formy_form table input[type="date"],
#formy_form table input[type="password"],
#formy_form select,
#formy_form textarea {
  margin: 0;
  padding: 5px 15px;
  border: 1px solid #ccc;
  font: inherit;
  font-size: 100%;
}

#formy_form textarea {
  height: 100px;
}

#formy_form select {
  height: 40px;
}

#formy_form ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#formy_form input:hover {
  opacity: 0.7;
}

#formy_form textarea:hover {
  opacity: 0.7;
}

#formy_form input:focus {
  outline: none;
}

#formy_form .parsley-validated {
  background-color: #eee;
}

#formy_form .parsley-error {
  background-color: #fee;
}

#formy_form .parsley-success {
  background-color: #fff;
}

.help_text {
  font-size: 87%;
  color: #999;
}

.hidden_help {
  display: none;
}

.formy_privacy div {
  overflow-y: scroll;
  height: 140px;
  border: solid 1px #ccc;
  font-size: 87%;
  padding: 8px 16px;
}

.requiredIcon {
  background: #f0b914;
  color: #26201c;
  margin: 0 0 0 1em;
  font-size: 70%;
  padding: 2px 5px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  float: right;
}

#formy_btn {
  padding-top: 32px;
  text-align: center;
}

#formy_btn input {
  min-width: 220px;
  padding: 16px 32px;
  margin-right: 4px;
  margin-left: 4px;
  border: none;
  border-radius: 3px;
  color: #fff;
  font-size: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

#formy_form ul li input[type="radio"],
#formy_form ul li input[type="checkbox"] {
  display: none !important;
}

#formy_form ul li label {
  height: 40px;
  line-height: 40px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 0 8px 0 40px;
  cursor: pointer;
}

#formy_form ul li label:hover {
  opacity: 0.7;
}

#formy_form ul li label::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid #788b93;
  left: 16px;
  top: 12px;
}

#formy_form ul li input[type="radio"] + label::before {
  border-radius: 10px;
}

#formy_form ul li input[type="radio"]:checked + label,
#formy_form ul li input[type="checkbox"]:checked + label {
  color: #e75f5f;
  font-weight: bold;
}

#formy_form ul li input[type="radio"]:checked + label::before,
#formy_form ul li input[type="checkbox"]:checked + label::before {
  border-color: #e75f5f;
}

#formy_form ul li input[type="radio"]:checked + label::after,
#formy_form ul li input[type="checkbox"]:checked + label::after {
  content: "";
  width: 10px;
  height: 18px;
  top: 4px;
  left: 20px;
  border-right: 2px solid #e75f5f;
  border-bottom: 2px solid #e75f5f;
  display: block;
  position: absolute;
  z-index: 10;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.formy_confirm {
  background-color: #4dbaff;
}

.formy_submit_disabled {
  background-color: #ccc;
}

#formy_btn .formy_submit_disabled:hover {
  opacity: 1;
  cursor: default;
}

.autoConfirmBack {
  background-color: #aaa;
}

.formy_send {
  background-color: #ff6600;
}

#total_required {
  padding: 16px;
  color: #ff9426;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #formy_form {
    padding: 0 16px;
  }

  #formy_form th,
  #formy_form td {
    display: block;
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }

  #formy_form th {
    border-bottom: none;
    padding-bottom: 0;
    white-space: normal;
    font-weight: bold;
  }

  #formy_form td {
    padding-top: 0;
  }

  #formy_btn {
    padding-top: 8px;
  }

  #formy_btn input {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    background-size: contain;
    background-position: center;
  }

  #formy_form table input[type="text"],
  #formy_form table input[type="email"],
  #formy_form table input[type="tel"],
  #formy_form table input[type="date"],
  #formy_form table input[type="password"],
  #formy_form select,
  #formy_form textarea {
    font-size: 16px;
    /* iOSでズーム防止 */
  }
}

/* support_area
*************************************************** */
.areapage {
  background-color: #fff;
}

.areapage_works {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.areapage_post {
  width: calc(30% - 40px);
  margin-bottom: 64px;
  margin-right: 0px;
  border-radius: 4px;
}

.pos_area-information .white_box {
  padding-top: 0;
}

.pos_area-information .sales_results--list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 8px 0;
}

.pos_area-information .sales_results--list h3 {
  margin: 32px 0 0;
  font-size: 16px;
  color: #548235;
}

.pos_area-information .sales_results--text {
  width: 100%;
}

.pos_area-information .sales_results--text p {
  text-align: left;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .slide_wrap {
    margin: 0;
  }

  .areapage_works {
    display: flex;
    flex-direction: column;
  }

  .areapage_post {
    width: 95%;
    margin: 0 auto 50px;
  }

  .pos_area-information .white_box {
    padding-top: 0;
  }

  .pos_area-information .sales_results--list {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: relative;
  }

  .pos_area-information .sales_results--list:not(:last-child) {
      padding: 32px 0;
      border-bottom: 4px dotted #e7e0c2;
  }

  .pos_area-information .sales_results--list h3 {
      margin: 0;
      font-size: 24px;
      color: #548235;
  }

  .pos_area-information .sales_results--text {
      width: 100%;
  }

  .pos_area-information .sales_results--text p {
      text-align: left;
      line-height: 32px;
      font-size: 16px;
      font-weight: bold;
  }
}

#area_voice {
  position: relative;
  overflow: hidden;
  background: #fff;
  background-size: cover;
}

.area_deco-roller {
  top: 160px;
  left: calc(50% - 720px);
}

/* 20230727
*************************************************** */
.when_to_paint_contents .white_box .when_to_paint_contents_img{
  height: 200px;
  margin-bottom: 20px;
}

.when_to_paint_contents .white_box .when_to_paint_contents_img img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.when_to_paint_contents .when_to_paint_contents_h3.for_companies--ttl::after{
  margin-top: 51px;
}

.when_to_paint_contents .deterioration_high{
text-align:center;
color:#DD0000;
}

.when_to_paint_contents .deterioration_medium{
text-align:center;
color:#FFA500;
}

.when_to_paint_contents .deterioration_low{
text-align:center;
color:#228B22;;
}

.when_to_paint_contents .font_weight600{
  font-weight: 600;
}

@media screen and (max-width: 767px){
  .when_to_paint_contents .when_to_paint_contents_h3.for_companies--ttl::after{
  margin-top: 8px;
}
}

.inquiry_flow_contents .flex-col4 > *:nth-child(4n){
  margin-right:auto ;
}

.inquiry_flow_contents .flex-col4 > * {
  width: 30%;
}

.inquiry_flow_contents .font_weight600{
  font-weight: 600;
}

@media screen and (max-width: 768px){
  .inquiry_flow_contents .flex-col4 > * {
  width: 100%;
} 
}

/* 20240718 Googleマップの設置 */
.area-map {
  display: block;
  margin: 0 auto;
  border:0;
}
@media screen and (max-width: 768px){
  .area-map {
    width: 100%;
  }
} 
/* //20240718 Googleマップの設置 */

/* 資格情報レイアウト調整 */
@media screen and (max-width: 767px) {
  .home_qualifications .white_box .when_to_paint_contents_img {
    height: fit-content;
  }
  .home_qualifications .white_box .when_to_paint_contents_img img {
    object-fit: contain;
  }
}
/* ##############################################################################

  FORM

############################################################################## */
form * {
  font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif !important;
}
.nf-form-cont .nf-field-label,
.nf-form-cont .nf-field-element {
  padding: 16px!important;
}
.nf-form-cont .nf-field-label {
  width: 34%!important;
  display: flex;
  align-items: center;
}
.nf-form-cont .nf-field-element {
  width: auto!important;
  flex: 1;
}
.nf-form-cont .nf-form-content label,
.nf-form-cont .nf-field-label .nf-label-span {
  font-size: 100%;
}

.nf-form-cont .nf-form-fields-required {
  display: none !important;
}

#ninja_forms_required_items,
.nf-form-cont .nf-field-container {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 47.9375em) {
  #ninja_forms_required_items,
.nf-form-cont .nf-field-container {
    margin-bottom: 0;
  }
}

.nf-form-cont .nf-form-content .list-select-wrap .nf-field-element > div,
.nf-form-cont .nf-form-content input:not([type=button]),
.nf-form-cont .nf-form-content textarea {
  background: #fff;
  color: var(--clr-text-primary);
  border-radius: 0.1875rem;
  vertical-align: bottom;
  transition: var(--transit-default, all 0.4s ease-out);
  font-size: 100%;
  font-weight: 500;
}

.nf-form-cont .nf-form-content .list-select-wrap .nf-field-element > div:focus,
.nf-form-cont .nf-form-content input:not([type=button]):focus,
.nf-form-cont .nf-form-content textarea:focus {
  color: var(--clr-text-primary);
}

.nf-form-content .list-checkbox-wrap .nf-field-element li label,
.nf-form-content .list-image-wrap .nf-field-element li label,
.nf-form-content .list-radio-wrap .nf-field-element li label {
  cursor: pointer;
}

.nf-form-content input[type=checkbox]:focus + label:after,
.nf-form-content input[type=radio]:focus + label:after {
  box-shadow: none;
}

.checkbox-wrap .nf-field-element label.nf-checked-label:before,
.checkbox-wrap .nf-field-label label.nf-checked-label:before,
.listcheckbox-wrap .nf-field-element label.nf-checked-label:before,
.listcheckbox-wrap .nf-field-label label.nf-checked-label:before {
  color: var(--clr-primary-default);
}

.nf-form-cont .ninja-forms-req-symbol {
  font-size: 0 !important;
}
.nf-form-cont .ninja-forms-req-symbol::before {
  content: "必須"; /* 必須 */
  background-color: #f0b914;
  color: #000;
  margin-left: 0.5em;
  font-size: 10px;
  padding: 6px 5px;
  border-radius: 3px;
}

.nf-form-cont .nf-form-content .submit-wrap {
  text-align: center;
}

.nf-form-cont .nf-form-content .submit-wrap input:not([type=button]) {
  min-width: 220px;
  padding: 16px 32px!important;
  margin-right: 4px;
  margin-left: 4px;
  border: none;
  border-radius: 3px;
  color: #fff;
  background-color: #4dbaff;
  font-size: inherit;
  border-radius: 3px;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: var(--transit-default, all 0.4s ease-out);
}
@media screen and (min-width: 48em) {
  .nf-form-cont .nf-form-content .submit-wrap input:not([type=button]) {
    margin-top: 1.7142857143rem;
  }
}

.nf-form-cont .nf-form-errors {
  margin-top: -1em;
  text-align: center;
}
.nf-form-cont .nf-form-content label,
.nf-form-cont .nf-field-label .nf-label-span {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.nf-form-content .listselect-wrap .nf-field-element div,
.nf-form-content .ninja-forms-field {
  padding: 5px 15px !important;
  height: auto!important;
  line-height: 1.857;
}
.nf-error.field-wrap .nf-field-element:after {
  display: none;
}
.nf-pass.field-wrap .nf-field-element:after {
  display: none;
}
.nf-error .nf-error-msg {
  padding-left: calc(34% + 16px);
}
.submit-wrap .nf-field-label {
  width: 0!important;
}
.listcheckbox-container .nf-field-element label:after {
  top: 1px!important;
  border: 2px solid #788b93!important;
  background-color: transparent!important;
}
.listcheckbox-wrap .nf-field-element label.nf-checked-label:before {
  color: #e75f5f!important;
}
.nf-form-content .label-above .nf-field-label, .nf-form-content .label-below .nf-field-label, .nf-form-content .label-hidden .nf-field-label {
  margin-bottom: 0!important;
}
.page-contact .nf-form-content .listcheckbox-wrap li, .page-contact .nf-form-content .listradio-wrap li {
  margin-bottom: 0!important;
  padding-block: 10px!important;
}
.page-contact .nf-form-content .listcheckbox-wrap li:hover,
.page-contact .nf-form-content .listradio-wrap li:hover {
  opacity: .7;
}

@media screen and (max-width: 767px) {
  .nf-form-content {
    padding: 0!important;
  }
  .nf-form-cont .nf-field-label,
  .nf-form-cont .nf-field-element {
    width: 100%!important;
  }
  .nf-form-cont .nf-field-label {
    padding-bottom: 0!important;
  }
  .nf-form-cont .nf-field-element {
    padding-top: 0!important;
  }
  .nf-error .nf-error-msg {
    padding-left: 16px;
  }
  .nf-form-content textarea.ninja-forms-field {
    height: 100px!important;
  }
}
/* リキャプチャ・キャプション
**************************************** */
.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha_policy {
  padding: 0;
  margin-top: 3rem;
  color: var(--clr-text-primary);
  font-size: max(8px, 0.625rem);
  text-align: center;
  letter-spacing: 0;
}
@media screen and (max-width: 47.9375em) {
  .recaptcha_policy {
    text-align: left;
  }
}

.recaptcha_policy a {
  color: #69ABDB;
  font-size: max(10px, 0.75rem);
  text-decoration: underline;
}

/* 20241008 */
.cmn-h4-title {
  font-size: 18px;
}

/* 20250612 施工プラン */
.ta-center{text-align: center;}
.home_plans {
  position: relative;
  overflow: hidden;
  background: #e5e2d1 url(../images/works--bg.jpg) center;
  background-size: cover;
}
.home_plans .plans {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.home_plans .item{
  background: #fff;
  padding: 20px;
  border-top: 6px solid #89A388;
  position: relative;
  flex: 1;
}
.home_plans .item-ttl{
  text-align: center;
  font-size: 190%;
  line-height: 1.42;
  color: #207723;
  
  display: flex;
  flex-direction: column;
}
.home_plans .item-ttl::after{
  content: "";
  display: block;
  width: 32px;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 1px dotted #6c854a;
}
.home_plans .item-txt .top{
  overflow: hidden;
  padding-top: 30px;}
.home_plans .item-txt .order{
  padding-top: 30px;
  display: block;
}
.home_plans .item-txt{}
.home_plans .item-txt .plan{
  font-weight: bold;
  margin-bottom: 24px;
  display: block;
  float: left;
  width: 70%;
}
.home_plans .item-txt .label{
  float: right;
  width: 30%;
  margin-top: -30px;
}
.home_plans .item-txt .desc{
  display: block;
  margin-bottom: 6px;
  clear: both;}
.home_plans .item-txt .sup{
  display: block;
  font-size: 75%;
  opacity: 0.7;}
.home_plans .item-txt .sug{
  background-image: url(../images/hukidasi_ryouhouhuwahuwa.png);
  background-size: 100% 100%;
  text-align: center;
  width: calc(100% - 20px);
  background-position-y: 7px;
  padding: 50px 30px;
  font-weight: bold;
  font-size: 130%;
  display: block;
  line-height: normal;
  margin: auto;
}
.home_plans .item-txt .sug .em{
  color: red;
}
.home_plans .item-txt .price{
  display: block;
  text-align: center;
  font-size: 500%;
  color: #89A388;
  font-weight: bold;
}
.home_plans .item-txt .price span{
  font-size: 30%;
}
.home_plans .item-label{
}
.home_plans .item-label span{
}
.home_plans .item-label span:first-child{
}
@media screen and (max-width: 1140px) {
  .home_plans .item-txt .top{
    padding-top: 35px;}
  .home_plans .item-txt .label{
    width: 25%;
    margin-top: -35px;
    margin-bottom: 10px;
  }
  .home_plans .plans {
      gap: 50px;
      flex-wrap: wrap;
  }
  .home_plans .item {
    width: calc(50% - 40px);
    flex: none;
  }
  .home_plans .item-ttl{
    height: auto;
  }
  .home_plans .item-ttl::after{
    margin-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .home_plans .item {
    width: calc(100%);
  }
  .home_plans .item-label {
      left: -15px;
  }
  .home_plans .item-txt .sug {
      top: 160px;
      right: 0px;
      width: calc(100% - 40px);
      letter-spacing: 0;
      height: fit-content;
  }
}

/* lps_parts--flow
********************************************** */
/* --- 共通 --- */
.lps_parts--flow {
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}
.lps_parts--flow .flow_item {
  position: relative;
  margin-inline-start: 6rem;
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--flow .flow_item {
    margin-inline-start: 4rem;
  }
}
.lps_parts--flow .flow_item:not(:last-child) {
  padding-bottom: 4rem;
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--flow .flow_item:not(:last-child) {
    padding-bottom: 2.2857142857rem;
  }
}
.lps_parts--flow .flow_item:not(:last-child) .ttl::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(6rem * -1 + 4rem / 2 - 0.1875rem / 2);
  border-right: 0.1875rem solid;
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--flow .flow_item:not(:last-child) .ttl::after {
    left: calc(3.5rem * -1 + 2.5rem / 2 - 0.125rem / 2);
  }
}
.lps_parts--flow .flow_item.clr-wht:not(:last-child) .ttl::after {
  border-color: #fff;
}
.lps_parts--flow .ttl {
  position: static;
}
.lps_parts--flow .ttl::before {
  float: inline-start;
  aspect-ratio: 1;
  margin-inline-start: calc(6rem * -1);
  border-radius: 50%;
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--flow .ttl::before {
    margin-inline-start: calc(3.5rem * -1);
  }
}
.lps_parts--flow .clr-wht .ttl {
  color:  #fff;
}
@media print, screen and (min-width: 48em) {
  .lps_parts--flow .text {
    display: flex;
    gap: 4.1666666667%;
  }
}
@media print, screen and (min-width: 48em) {
  .lps_parts--flow .img {
    width: 39.0625%;
  }
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--flow .img:not(:last-child) {
    margin-bottom: 1.7142857143rem;
  }
}
.lps_parts--flow .mce-content-body {
  margin-bottom: 0 !important;
}
@media print, screen and (min-width: 48em) {
  .lps_parts--flow .mce-content-body {
    flex: 1;
  }
}

/* --- 通常 --- */
.lps_parts--flow:not(.flow-num) .ttl::before {
  content: "";
  position: relative;
  left: calc(2.5rem / 2);
  inline-size: 1.5rem;
  margin-block: calc((1lh - 1.5rem) / 2);
  border: 0.25rem solid;
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--flow:not(.flow-num) .ttl::before {
    left: calc(1.5rem / 2);
    inline-size: 1rem;
    margin-block: calc((1lh - 1rem) / 2);
  }
}
.lps_parts--flow:not(.flow-num) .flow_item:not(:last-child) .ttl::after {
  margin-top: calc(1.5rem + (1lh - 1.5rem) / 2 + 0.375rem);
  margin-bottom: calc((1lh - 1.5rem) / -2 + 0.375rem);
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--flow:not(.flow-num) .flow_item:not(:last-child) .ttl::after {
    margin-top: calc(1.1428571429rem + (1lh - 1.1428571429rem) / 2 + 0.2857142857rem);
    margin-bottom: calc((1lh - 1.1428571429rem) / -2 + 0.2857142857rem);
  }
}

/* --- 連番 --- */
.lps_parts--flow.flow-num .flow_item {
  counter-increment: number;

}
.lps_parts--flow.flow-num .flow_item p {
  white-space: nowrap;

}
  @media screen and (max-width: 47.9375em) {
    .lps_parts--flow.flow-num .flow_item p {
    white-space: pre-wrap;
    }
  }

.lps_parts--flow.flow-num .ttl::before {
  content: counter(number);
  display: flex;
  justify-content: center;
  align-items: center;
  inline-size: 4rem;
  margin-block: calc((1lh - 4rem) / 2);
  text-align: center;
  color: #fff;
  background-color: #207723;
  font-family: "garamond-premier-pro", serif;
  font-size: 1.5rem;
  letter-spacing: 0;
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--flow.flow-num .ttl::before {
    inline-size: 2.5rem;
    margin-block: calc((1lh - 2.8571428571rem) / 2);
    font-size: 1.2857142857rem;
  }
}
.lps_parts--flow.flow-num .flow_item:not(:last-child) .ttl::after {
  margin-top: calc(4rem + (1lh - 4rem) / 2 + 0.875rem);
  margin-bottom: calc((1lh - 4rem) / -2 + 0.375rem);
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--flow.flow-num .flow_item:not(:last-child) .ttl::after {
    margin-top: calc(2.8571428571rem + (1lh - 2.8571428571rem) / 2 + 0.2857142857rem);
    margin-bottom: calc((1lh - 2.8571428571rem) / -2 + 0.2857142857rem);
  }
}


/* page-cleaning ハウスクリーニング
*************************************************** */
.house_cleaning_service .section_ttl {
  font-size: 340%;
}
@media screen and (max-width: 767px) {
  .house_cleaning_service .section_ttl {
    font-size: 230%;
  }
  .house_cleaning_service--cont01.cont_box  .txtarea {
    padding-top: 0;
  }
}

.house_cleaning_works {
  overflow: hidden;
}
.house_cleaning_reason--yakusoku {
  display: inline-block;
  background: #fff;
  line-height: 1;
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 8px;
}


.house_cleaning_service--img01--txt,
.house_cleaning_service--img02--txt,
.house_cleaning_service--img03--txt,
.house_cleaning_service--img04--txt  {
  position: absolute;
  bottom: 24px;
  right: 24px;
  color: #fff;
  text-shadow: 0 0 5px #000;
}

@media screen and (max-width: 767px) {
  .house_cleaning_service {
    overflow: hidden;
  }
.house_cleaning_service--img01--txt,
.house_cleaning_service--img02--txt,
.house_cleaning_service--img03--txt,
.house_cleaning_service--img04--txt {
    right: 0;
    left: 0;
    text-align: center;
    bottom: auto;
    top: 24px;
  }

}


.house_cleaning_service--img01 {
  background-image: url("../images/cleaning/cleaning-img04.jpg");
}

.house_cleaning_service--img02 {
  background-image: url("../images/cleaning/cleaning-img05.jpg");
}

.house_cleaning_service--img03 {
  background-image: url("../images/cleaning/cleaning-img06.jpg");
}

.house_cleaning_service--img04 {
  background-image: url("../images/cleaning/cleaning-img07.jpg");
}


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