<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */
/*========= 1文字ずつ出現させるためのCSS ===============*/
.eachTextAnime span {
  opacity: 0;
}
.eachTextAnime.appeartext span {
  animation: text_anime_on 1s ease-out forwards;
}
@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/
.box .flipDownTrigger {
  opacity: 0;
}
/*==================================================
ふわっ
===================================*/
/* fadeIn */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(70px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* fadeDown */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-70px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* fadeLeft */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* fadeRight */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(70px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger, .fadeUpTrigger, .fadeDownTrigger, .fadeLeftTrigger, .fadeRightTrigger {
  opacity: 0;
}
/*==================================================
パタッ
===================================*/
/* 下へ */
.flipDown {
  animation-name: flipDownAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes flipDownAnime {
  from {
    transform: perspective(2500px) rotateX(100deg);
    opacity: 0;
  }
  to {
    transform: perspective(2500px) rotateX(0);
    opacity: 1;
  }
}
/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time02 {
  animation-delay: 0.2s;
}
.delay-time04 {
  animation-delay: 0.4s;
}
.delay-time06 {
  animation-delay: 0.6s;
}
.delay-time08 {
  animation-delay: 0.8s;
}
.delay-time10 {
  animation-delay: 1.0s;
}
.delay-time12 {
  animation-delay: 1.2s;
}
.radius10 {
  border-radius: 10px;
}
article {
  margin: 60px 0;
}
article .contactBtn a {
  background: #d10b0b;
  border-radius: 5px;
  box-sizing: border-box;
  color: #fff;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  letter-spacing: 2px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 20px auto 0;
  width: 200px;
  padding: 10px 25px;
  transition: 0.3s ease-in-out;
  font-weight: bold;
  font-size: 1.6rem;
}
article .contactBtn a:after {
  content: "";
  position: absolute;
  top: 30%;
  right: 1.3rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 19px;
  height: 19px;
  background-image: url("../../images/maintenancefree/arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
}
article .btnArea {
  background-image: url("../../images/maintenancefree/bg_contact.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1 / 0.53;
  width: 75%;
  margin: 30px auto;
  padding: 40px 20px;
  box-sizing: border-box;
}
article .tel a {
  text-align: center;
  margin: 0 auto 10px;
  color: #111111;
  font-weight: bold;
  font-size: 2rem;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  line-height: 1;
  display: block;
  letter-spacing: 1px;
}
article .telBtn p {
  display: block;
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
}
.scrolldown2 {
  bottom: auto !important;
  margin-top: -10px;
}
.key {
  margin-bottom: 50px;
}
/*--------------------------------------
　KV
---------------------------------------*/
.mainImgBox {
  position: relative;
  width: 100%;
  padding-top: 115.4%;
}
.caseMainImgBox {
  position: relative;
  width: 100%;
  padding-top: 128%;
}
.mainImgBox .mainImg, .caseMainImgBox .mainImg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.mainImgBox .mainImg p {
  width: 90%;
  text-align: center;
  position: absolute;
  top: 29%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}
.mainImgBox .topTxt {
  text-align: center;
  position: absolute;
  color: #fff;
  bottom: -10%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 1.15em;
  font-weight: 900; /* フォントをより太くする */
  line-height: 1.8;

  /* 文字の視認性をアップ */
  text-shadow: 
    0px 0px 10px rgba(0, 0, 0, 1), /* 既存の影 */
    2px 2px 2px rgba(0, 0, 0, 0.5); /* 追加の影 */
}


.scrolldown2 {
  bottom: 45vh;
}
.scrolldown2 span {
  color: #fff;
}
.bgGreen {
  background-color: #CAD9D8;
  padding: 70px 0;
}
#contentsWrap .list li {
  margin-bottom: 15px;
  width: 100%;
  aspect-ratio: 1 / 0.354;
  background-size: cover;
  position: relative;
}
#contentsWrap .list li:first-child {
  background-image: url("../../images/maintenancefree/tail_title.jpg");
}
#contentsWrap .list li:nth-child(2) {
  background-image: url("../../images/maintenancefree/wood_title.jpg");
}
#contentsWrap .list li:nth-child(3) {
  background-image: url("../../images/maintenancefree/siba_title.jpg");
}
#contentsWrap .list li:last-child {
  background-image: url("../../images/maintenancefree/green_title.jpg");
}
#contentsWrap .list li a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#contentsWrap .list li a img:hover, #contentsWrap a.more {
  opacity: 0.7;
}
#contentsWrap .list li span {
  background-color: #0000009e;
  color: #fff;
  width: 100%;
  display: block;
  text-align: right;
  padding: 10px;
  font-size: 1.15em;
  font-weight: bold;
  letter-spacing: 1px;
  position: absolute;
  bottom: 0;
}
#tail dl .child52, #deck dl .child52, #siba dl .child52 {
  position: relative;
}
#contentsWrap .colBox {
  margin: 0 auto 70px;
}
#contentsWrap .colBox:last-of-type {
  margin-bottom: 0;
}
#contentsWrap .colBox h3 {
  color: #fff;
  text-align: center;
  background-image: url("../../images/maintenancefree/bgG_SP.png");
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 1 / 0.13;
  font-size: 1.3em;
  line-height: 2.6;
  box-sizing: border-box;
  margin-bottom: 40px;
}
#contentsWrap .colBox dl dt, .caseBox .number {
  width: 95%;
  margin-left: 5%;
  margin-bottom: 40px;
  align-items: flex-end;
}
#contentsWrap .colBox dl dt p, .caseBox .number p {
  width: 15%;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 3.5rem;
}
#contentsWrap .colBox dl dt span, .caseBox .number span {
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-size: 1.6rem;
  background-image: url("../../images/maintenancefree/bg_arrow.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 8px 0 5px 40px;
  display: inline-block;
  width: 85%;
  box-sizing: border-box;
  vertical-align: middle;
  font-weight: bold;
  letter-spacing: 1px;
}
#contentsWrap .more {
  background-color: #1e1e1e;
  border-radius: 30px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  width: 160px;
  display: block;
  padding: 3px;
  margin: 40px auto 0;
}
#contentsWrap .caseBox {
  margin-bottom: 100px;
}
#contentsWrap .caseBox:last-of-type {
  margin-bottom: 0;
}
/*--------------------------------------
　CONTENTS
---------------------------------------*/
@media only screen and (max-width: 599px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  .flexboxSP {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .innerSP {
    width: 90%;
    margin: 0 auto;
  }
  .textM {
    margin: 35px auto;
  }
  .mb40SP {
    margin-bottom: 40px;
  }
  .mgB70SP {
    margin-bottom: 70px;
  }
  #contentsWrap {
    margin-bottom: 80px;
  }
  #fungarden .inner {
    width: 93%;
    margin: auto;
  }
  .mainImg {
    background-image: url("../../images/maintenancefree/mainSP.jpg");
    background-size: cover;
  }
  #n2-ss-12 .n2-ss-slider-1, #n2-ss-13 .n2-ss-slider-1, #n2-ss-14 .n2-ss-slider-1, #n2-ss-15 .n2-ss-slider-1 {
    width: 100%;
    aspect-ratio: 4 / 2.7;
  }
  .gallerys a {
    width: 30%;
    position: relative;
  }
  .gallerys a::after, .colBox dl .child52::after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background-image: url("../../images/maintenancefree/musimegane.png");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
  }
  .gallerys a img {
    border-radius: 10px;
  }
  .caseBox .number span.bgnone {
    background: none;
    padding: 0;
  }
  #tail dl .child52, #deck dl .child52, #siba dl .child52 {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
  }
}
@media only screen and (min-width: 600px) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
  .flexboxPC {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #maintenancefree {
    margin-top: 74px;
  }
  .innerPC {
    width: 1000px;
    margin: 0 auto;
  }
  .bgGreen {
    padding: 120px 0;
  }
  .w900 {
    width: 900px;
    margin: 0 auto;
  }
  .textM {
    font-size: 16px;
    line-height: 1.8;
  }
  .child45 {
    width: 45%;
  }
  .child47 {
    width: 47%;
  }
  .child52 {
    width: 52%;
  }
  .mg50PC {
    margin: 50px 0;
  }
  .mgB30PC {
    margin-bottom: 30px;
  }
  .mgB50PC {
    margin-bottom: 50px;
  }
  .mainImg {
    background-image: url("../../images/maintenancefree/mainPC.jpg");
    background-size: cover;
    background-repeat: no-repeat;
  }
  .mainImgBox {
    padding-top: 31%;
  }
  .mainImgBox .mainImg p {
    width: 28%;
  }
  .mainImgBox .mainImg p {
    width: 25%;
  }
  .mainImgBox .topTxt {
    font-size: 2rem;
    bottom: 10px;
  }
  #maintenancefree .inner {
    width: 1000px;
    margin: auto;
  }
  #contentsWrap .list {
    margin: 70px auto;
  }
  #contentsWrap .list li {
    width: 48%;
    margin-bottom: 30px;
  }
  #contentsWrap .colBox h3 {
    background-image: url("../../images/maintenancefree/bgG_PC.png");
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 1 / 0.062;
    font-size: 2.1rem;
    line-height: 3;
    margin-bottom: 60px;
  }
  #n2-ss-12 .n2-ss-slider-1, #n2-ss-13 .n2-ss-slider-1, #n2-ss-14 .n2-ss-slider-1, #n2-ss-15 .n2-ss-slider-1 {
    width: 100%;
    aspect-ratio: 4 / 2.7;
  }
  #contentsWrap .colBox {
    margin: 0 auto 150px;
  }
  #tail, #deck {
    margin-bottom: 100px;
  }
  #tail dl, #deck dl, #siba dl {
    width: 87%;
  }

  #contentsWrap .gallerys {
    width: 11%;
    margin-top: 40px;
  }
  #contentsWrap .gallerys a {
    display: block;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
  }
  .gallerys a::after, .colBox dl .child52::after {
    content: '';
    position: absolute;
    top: 73%;
    right: 5px;
    width: 18px;
    height: 18px;
    background-image: url("../../images/maintenancefree/musimegane.png");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
  }	
	.colBox #deck dl .child52::after{
		top: 230px;
	}
	.colBox dl .child52
  #contentsWrap .colBox dl dt, .caseBox .number {
    width: 100%;
    margin-left: 0;
    margin-bottom: 60px;
  }
  #contentsWrap .colBox dl dt p, .caseBox .number p {
    width: 10%;
  }
  #contentsWrap .colBox dl dt span, .caseBox .number span {
    width: 90%;
    font-size: 2rem;
  }
  #green dl {
    margin-bottom: 70px;
  }
  #green dl dd {
    width: 90%;
    margin: auto;
  }
  #contentsWrap .caseBox .img_slider {
    margin: 0 auto 70px;
    width: 800px;
  }
  #contentsWrap .caseBox .baBox {
    margin-bottom: 30px;
  }
  #contentsWrap .more {
    width: 250px;
    padding: 10px;
    font-size: 1.9rem;
    border-radius: 15px;
    margin: 60px auto 0;
  }
  article .contactBtn a {
    width: auto;
    font-size: 1.9rem;
    padding: 15px 50px 15px 30px;
    display: table;
  }
  article .contactBtn a:after {
    right: 2rem;
    width: 24px;
    height: 24px;
  }
  article .btnArea {
    width: 335px;
  }
  article .tel a {
    font-size: 2.4rem;
    letter-spacing: 1.5px;
  }
  article .telBtn p {
    font-size: 1.5rem;
    line-height: 2;
  }
}</pre></body></html>