
@charset "UTF-8";
/*---------------------------------------------

	初期設定用

---------------------------------------------*/

:root{
	--main-width:1200px;
	--kihon-font:1.2rem;
	--kihon-color:#0092d8;
  --kihon-line-height:1.3rem;  
}

html, body, div, p, a, table, th, td, ol, ul, li, dl, dd, dt, h1, h2, h3, h4, h5, h6, blockquote, pre, form, fieldset, input, textarea, select, option{
  line-height:2.0rem;
}


html,body{
	margin:0px;
	padding:0px;
    scroll-behavior: smooth;

}


*{



font-family: "游ゴシック体 ", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック ", "Yu Gothic","Hiragino Kaku Gothic ProN", "Hiragino Sans","メイリオ ", Meiryo, Osaka, sans-serif;

}

body{font:17px/1.231 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;
	color: #333;

 }



iframe{
margin: 0;
padding: 0;

}

img{
  width:100%;
}


/*---------------------------------------------
	a
---------------------------------------------*/
a{
	color: #333;
	text-decoration: none;
}
a:link {
}
a:visited{
}
a:hover{
	color: #333;
	text-decoration: none;
}
a:active{
}
a.on{
	color: #333;
	text-decoration: none;
}



li{
	list-style: none;
}

.all_wrap{
	padding: 0;
  font-size:var(--kihon-font);
}

.highlight{
  font-weight:bold;
  background: linear-gradient(transparent 60%, #FFFE03 60%);
}

.flex{
  display:flex;
}


/* 業務用サイトはこちら */
.sticky {
  position: fixed;
  right: 0;
  top: 150px;
  width:60px;
  z-index:99999;
}

.sticky>a>img {
  width: 100%;
  height: auto;
}


/* header */
header{
  position: static;
}
.header {
  display: none;
}

.header_sp{
  display:flex;
  flex-direction: column;
  padding:5px;
  background:#fff;
}
.header_sp>li:first-child>ul{
    display:flex;
    justify-content: space-between;
}
.header_sp>li:first-child>ul>li{
    width:30%;
}

/* main_area */
.main_area>.cta {
    display:none;
}


/* banner_area */
.banner_area{
  background-image:url(../img/banner-area-01.webp);
  background-size:cover;
  padding:30px 0;
}
.banner_area ul {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  justify-content:center;
  width:95%;
  max-width:var(--main-width);
  margin:0 auto;
}

.banner_area li {
  cursor: pointer;
  transition: transform 0.3s, opacity 0.3s;
}

.banner_area li:hover {
  opacity: 0.8;
  transform: scale(1.05);
}
.modalWrapper {
  height : 70%;
  overflow : auto;
}

/* モーダル↓ */
.modalArea {
  display: none; /* 最初は非表示 */
  position: fixed;
  z-index: 10; /* バナーより前に出す */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* モーダル表示用クラス */
.modalArea.is-show {
  display: block;
}

/* 背景の半透明黒 */
.modalBg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.8);
  top: 0;
  left: 0;
  z-index: 1;
}

/* モーダル本体 */
.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1000px;
  background: #fff;
  z-index: 2;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* コンテンツ部分 */
.modalContents {
  padding: 20px;
  text-align: center;
}

.modalContents img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* 閉じるボタン */
.closeModal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 40px;
  background-color:#fff;
  padding:10px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  z-index: 3;
  transition: color 0.3s;
}

.closeModal:hover {
  color: #ff0000;
}
/* モーダル↑ */



/* category */
.category{
  width:100%;
  max-width:var(--main-width);
  margin:20px auto 50px;
}
.category>.title{
  background:#004ea2;
  text-align:center;
  font-size:var(--kihon-font);
  font-weight:bold;
  color:#fff;
  padding:15px 0;
}
.category>ul{
  display:flex;
  justify-content:space-around;
  margin-top:20px;
  margin-bottom:20px;
  gap:10px;
  flex-wrap: wrap;
  width:95%;
  margin:20px auto 0;
}
.category>ul>li{
    flex: 0 0 calc((100% - 10px * 2) / 3);
}


/* needs */
.needs{
  width:95%;
  max-width:var(--main-width);
  margin:0 auto;
}
.needs>.title{
  font-size:calc(var(--kihon-font) + 1.2rem);
  color:var(--kihon-color);
  font-weight:bold;
  text-align:center;
  line-height:1.5em;
  margin:50px 0 50px;
}
.needs>.title>p{
  font-size:calc(var(--kihon-font) + 0.5rem);
  line-height:2.5rem;
  margin-bottom:5px;
}
.needs>.title>.highlight{
  font-size:calc(var(--kihon-font) + 0.5rem);
  line-height:0.1rem;
}
.needs>.flex{
  justify-content:center;
  flex-direction: column;
  margin-top:20px;
  margin-bottom:30px;
  padding-bottom:30px;
  border-bottom:2px solid var(--kihon-color);
  gap:20px;
}
.needs>.flex>li:first-child{
  width: 100%;
}
.needs>.flex>li:nth-child(2){
  max-width:800px;
}
.needs>.flex>li:nth-child(2)>ul>li:before{
  content:"●";
  color:var(--kihon-color);
  margin-right:10px;
}
.needs>.flex>li:nth-child(2)>ul>li{
  font-size:var(--kihon-font);
  padding-bottom:5px;
  padding-top:5px;
  font-weight:bold;
  border-bottom:2px dashed var(--kihon-color);
}
.needs>.flex>li:nth-child(2)>ul>li:last-child{
  border-bottom:none;
}
.needs>.title:last-child>.highlight{
  font-size:calc(var(--kihon-font) + 1.2rem);
}

/* menu */
.menu{
  margin-top:50px;
  background:#eaf6fd;
}
.menu>h2{
  padding-top:30px;
  padding-bottom:30px;
  color:#fff;
  font-weight:900;
  text-align:center;
  background: linear-gradient(to right, var(--kihon-color), #eaf6fd);
  font-size:calc(var(--kihon-font) + 1.2rem);
  margin-bottom:30px;
}
.menu>.menu-item,.other-item{
  width:95%;
  max-width: var(--main-width);
  margin:0 auto;
  padding-bottom:30px;
}
.menu>.menu-item>h3{
  margin-bottom:20px;
  font-size:calc(var(--kihon-font) + 0.6rem);
  text-align:center;
  color:var(--kihon-color);
  font-weight:bold;
  margin-top:30px;
  line-height:6rem;
}
.menu>.menu-item>.flex{
  flex-direction:column;
  justify-content:center;
  margin-bottom:20px;
}
.menu>.menu-item>.flex>li{
  box-sizing: border-box;
}
.menu>.menu-item>.flex> li:first-child{width: 100%; }

.menu>.menu-item>.flex> li:last-child{  
  width: 100%;
}

.menu>.menu-item>.flex> li:first-child{
  margin-left:0px;
}
.menu>.menu-item>.flex>li>ul{
  display:flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu>.menu-item>.flex>li>ul>li{
  font-size:var(--kihon-font);
}
.menu>.menu-item>.flex>li>ul>li>span{
  font-size:calc(var(--kihon-font) - 0.2rem);
}

.menu>.menu-item>.flex>li>ul>li:first-child{
  font-size:calc(var(--kihon-font) + 0.6rem);
  font-weight:bold;
  margin:20px 0;
  text-align:center;
  font-feature-settings: "palt";
  line-height:2.9rem;
}
.menu>.menu-item>.flex>li>ul>li.beforeafter{
  padding:0 20px;
}
.menu>.menu-item>p{
  font-size:var(--kihon-font);
  margin-bottom:20px;
}
.menu>.menu-item>.price{
  margin-bottom:20px;
}
.menu>.menu-item>.price>p{
  font-size:calc(var(--kihon-font) + 0.6rem);
  font-weight:bold;
  text-align:center;
  line-height:2.4rem;
}
.menu>.menu-item>.price>p>span{
  font-size:var(--kihon-font);
}
.menu>.menu-item>.option-item{
  margin-top:30px;
  margin-bottom:30px;
}
.option-item>h4,.other-item>h3{
  background:#bae3f9;
  text-align:center;
  line-height:3rem;
  padding-top:15px;
  padding-bottom:15px;
  font-size:calc(var(--kihon-font) + 0.3rem);
  color:var(--kihon-color);
  font-weight:bold;
  border-radius:30px;
  margin-bottom:30px;
}
.option{
    flex-direction: column;
}
.option>li:first-child{
  margin-right:0px;
  margin-bottom:10px;
}
.option>li>p{
  font-size:var(--kihon-font);
  font-weight:normal;
}
.option>li>p:last-child{
  font-size:var(--kihon-font);
  font-weight:normal;
  line-height:1.2rem;
  margin-top:10px;
}
.option>li>p>span{
  font-size:calc(var(--kihon-font) - 0.2rem);
  font-weight:normal;
  line-height:;
}
.option>li>.option-title{
  font-size:calc(var(--kihon-font) + 0.3rem);
  font-weight:bold;
  margin-bottom:10px;
}
.option>li>.option-title>span{
  font-size:calc(var(--kihon-font) - 0.2rem);
}
.price-list>summary{
  background:#fff;
  border:var(--kihon-color) 3px solid;
  text-align:center;
  padding:15px;
  font-size:calc(var(--kihon-font) + 0.3rem);
  color:var(--kihon-color);
  font-weight:bold;
  border-radius:30px;
  cursor: pointer;
  display:flex;
  align-items:center;
}
.price-list>summary:before{
  content:"";
  flex:0 0 40px;
  height:1px;
}
.price-list>summary>.price-list-label{
  flex:1 1 auto;
  text-align:center;
}
.price-list>summary>.label-icon{
  flex:0 0 40px;
  height:auto;
  margin-left:12px;
  display:block;
  width:28px;
  height:28px;
  object-fit: contain;
}

.price-list>summary>span>span{
  font-size:calc(var(--kihon-font) - 0.3rem);
}
.price-list ul li{
  font-weight:bold;
}
.price-list-wrap>ul>li>ul>li{
  font-size:calc(var(--kihon-font) + 0.2rem);
}
.price-list-wrap>ul>li{
  border-bottom:2px dashed var(--kihon-color);
  padding-bottom:10px;
}
.price-list-wrap br{
  display:inline;
}
.price-list>ul>li>ul>li>ul{
  display:flex;
  justify-content:space-between;
  flex-direction: column;
  gap:0px;
}
.price-list>ul>li>ul>li>ul>li{
  margin:0;
}
.price-list>ul>li>ul>li>ul>li:nth-child(1):before{
  content:"●";
  color:var(--kihon-color);
  margin-right:5px;
}
.price-list>ul>li>ul>li>ul>li>span{
  font-size:calc(var(--kihon-font) - 0.3rem);
}
.price_caption{
  margin-top:30px;
  margin-bottom:30px;
}
.price_caption>ul>li{
  font-size:calc(var(--kihon-font) - 0.3rem);
  font-weight:normal;
}
.other-item>ul{
  justify-content:space-around;
  flex-direction:column;
}
.other-item>ul>li>ul>li{
  font-size:calc(var(--kihon-font) + 0.3rem);
  font-weight:bold;
  line-height:2.5rem;
}
.other-item>.menu_caption{
  background:#fff;
  padding:30px;
  margin-top:30px;
  margin-bottom:30px;
}
.other-item>.menu_caption>ul>li{
  line-height:1.5rem;
}


/* cta_area */
.cta_area{
  background:#eb6d8e;
  text-align:center;
  color:#fff;
  font-size:calc(var(--kihon-font) + 0.3rem);
  font-weight:bold;
  padding:50px 15px;
}
.cta_area>.cta{
  margin-top:7px;
  background-color:#fff;
}
.cta_area>.cta>a>ul>li:nth-child(2){
  color:#eb6d8e;
}


/* point */
.point{
  padding-top:20px;
  padding-bottom:30px;
  background-image:url(../img/point-04.webp);
  background-size:cover;
}
.point>div{
  width:90%;
  max-width:var(--main-width);
  margin:30px auto 50px;
}
.point h2{
  background:#3ab483;
  color:#fff;
  font-weight:bold;
  font-size:calc(var(--kihon-font) + 0.8rem);
  padding:15px 0;
  text-align:center;
  border-radius:30px;
  margin-bottom:30px;
  line-height:3.2rem;
}
.point-wrapper{
  padding-bottom:0px;
}
.point-wrapper>ul{
  display:flex;
  flex-direction:column;
  justify-content: space-between;
  gap:20px;
}
.point-wrapper>ul>li{
  border:none;
  padding-left:0px;
  flex:1;
  padding-bottom:30px;
}
.point-wrapper>ul>li:first-child{
  border-left:none;
  padding-left:0px;
}
.point-wrapper>ul>li>ul>li{
  font-size:var(--kihon-font);
}
.point-wrapper>ul>li>ul>li:nth-child(2){
  font-size:calc(var(--kihon-font) + 0.3rem);
  font-weight:bold;
  margin-top:15px;
  margin-bottom:15px;
}
.rtb-wrapper>ul{
  flex-direction: column;
}
.rtb-wrapper>ul>li{
  width: 100%;
}
.rtb-wrapper>ul>li:first-child{
  margin-right:0px;
  margin-bottom:15px;
}
.rtb-wrapper>ul>li>ul>li{
  font-size:var(--kihon-font);
}
.rtb-wrapper>ul>li>ul>li:first-child{
  font-size:calc(var(--kihon-font) + 0.3rem);
  font-weight:bold;
  margin-bottom:10px;
}

/* flow */
.flow,.faq,.store{
  padding:60px 0 60px;
}
.flow{
  padding-bottom:0;
}
.flow>.content-wrapper>h2,
.faq>.content-wrapper>h2,
.store>div:first-child{
  margin-bottom:60px;
  color:var(--kihon-color);
  font-size:calc(var(--kihon-font) + 1.0rem);
  text-align:center;
  font-weight:bold;
  position:relative;
}
.flow>.content-wrapper>h2:before,.faq>.content-wrapper>h2:before,
.store>div:first-child:before{
  background: var(--kihon-color);
  border-radius: 5px;
  bottom: -20px;
  content: "";
  height: 5px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 200px;
}
.content-wrapper{
  width:95%;
  max-width:calc(var(--main-width) - 500px);
  margin:0 auto;
}
.content-wrapper li{
  font-size:var(--kihon-font);
}
.flow>.content-wrapper>ul>li:first-child{
  width:92px;
  margin-right:15px;
}
.flow>.content-wrapper>ul>li:first-child>img{
  width:60px;
}

.flow>.content-wrapper>ul>li>ul>li:first-child{
  color:var(--kihon-color);
  font-size:calc(var(--kihon-font) + 0.3rem);
  font-weight:bold;
  margin-top:20px;
}


/* FAQ */
.faq{
  background:#ebf6f5;
}
.faq>.content-wrapper{
  max-width:var(--main-width);
}
.faq-item>ul>li{
  font-size:var(--kihon-font);
}
.faq>.content-wrapper>h2{
  color:#3ab483;
}
.faq>.content-wrapper>h2:before{
  background:#3ab483;
}
.faq-item{
  background:#fff;
  padding:30px;
  margin-bottom:30px;
  border-radius:10px;
  box-shadow: 5px 5px 0px 0px rgba(25, 168, 56, 0.4);
}
.faq-item>.question{
  font-weight:bold;
  margin-bottom:10px;
  color:#3ab483;
}
.question_icon,
.answer_icon{
  width:32px;
  height:32px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  line-height:1;
  flex:0 0 32px;
  font-size:16px;
  box-sizing:border-box;
  margin-right:10px;
}
.question_icon{
  background:#1fb37a;
  color:#fff;
}
.answer_icon{
  color:#1fb37a;
  background:#fff;
  border:2px solid #1fb37a;
}

/* store */
.store{
  width:95%;
  max-width:var(--main-width);
  margin:0 auto;
  padding-bottom:50px;
}
.store>div:first-child{
  margin-bottom:30px;
  font-size:calc(var(--kihon-font) + 1.2rem);
  color:#333;
  line-height:3.2rem;
}
.store>div:first-child:before{
  background:#3ab483;
}
.store>.flex{
  margin-top:60px;
  justify-content: space-around;
  flex-direction:column;
  align-items:flex-start;
  text-align:center;
}
.store>.flex>li{
  margin:0 auto 30px;
}
.store>.flex>li>h2{
  font-size:calc(var(--kihon-font) + 1.5rem);
  font-weight:bold;
  line-height:3.2rem;
  margin-bottom:10px;
  text-align:center;
}
.store>.flex>li>h2>span{
  font-size:var(--kihon-font);
}
.store>.flex>li>p{
  font-size:var(--kihon-font);
}
.store>.flex>li>p.tel{
  margin:10px 0;
}
.store>.flex>li>p.tel>a{
  font-size:calc(var(--kihon-font) + 1.2rem);
  font-weight:bold;
  color:#3ab483;
}
.store>.flex>li>p:last-child{
  font-size:var(--kihon-font);
}
.store>.flex>li>p:last-child>a{
  font-size:var(--kihon-font);
  text-decoration: underline;
}

/* contact */
.contact_wrap{
  background:#fdeff5;
  padding-bottom:100px;
}
.form_wrap{
  width:95%;
  max-width:var(--main-width);
  margin:0 auto;
}
.mailform>dd:first-child{
  background:#fff;
}
.mailform .date_title{
  margin-top:10px;
  font-size: calc(var(--kihon-font) - 0.3rem);
}
.kibou_date>ul{
  display:flex;
  align-items:center;
}
.kibou_date>ul>li{
  font-size:calc(var(--kihon-font)-0.6rem);
}

.kibou_date>ul>li:last-child{
  margin-left:10px;
}
p.form_title{
  font-size:var(--kihon-font);
  font-weight:bold;
  padding-top:30px;
  padding-bottom:20px;
}
#mailform{
  box-sizing: border-box;
}
  #botan .submit_reset {
    flex-direction: column;
    gap:20px;
  }
  #botan .submit_reset input[type="submit"],
  #botan .submit_reset input[type="reset"] {
    width: 100%;
  }

/* footer */
footer{
  padding-top:50px;
  padding-bottom:170px;
  background:#3ab483;
  color:#fff;
  font-weight:bold;
}
footer>ul{
  flex-direction: column;
  width:95%;
  max-width: var(--main-width);
  margin:0 auto;
  justify-content:center;
  gap:0px;
}
footer>ul>li>ul{
  justify-content: space-between;
  flex-direction: column;
  gap:0px;
}
footer>ul>li>ul>li{
  font-size:var(--kihon-font);
  line-height:2.4rem;
}

footer>ul>li>ul>li:last-child{
  font-size:calc(var(--kihon-font) + 0.3rem);
}
footer>ul>li:last-child>ul{
  display:flex;
  flex-direction: column;
  justify-content: space-between;
  gap:0px;
}
footer>ul>li:last-child>ul>li{
  font-size:calc(var(--kihon-font) + 0.6rem);
}
footer>ul>li:last-child>ul>li>a{
  font-size:calc(var(--kihon-font) + 0.6rem);
  color:#fff;
  font-weight:bold;
}
footer>ul>li:last-child>ul>li:last-child{
  width:30%;
}

/* アンカーリンク用 */
#ac:before,
#bath:before,
#range_hood:before,
#kitchen:before,
#toilet:before,
#housecleaning:before,
#contact:before {
    content: "";
    display: block;
    height: 110px; /* 調整したい高さ（固定ヘッダーの高さ） */
    margin-top: -110px; /* heightと同じ分のネガティブマージン */
    visibility: hidden;
}

   /* TOPへ戻るボタンのスタイル */
#scrollToTopBtn {
  display: none;   /* ボタンの非表示 */
  position: fixed;
  bottom: 90px;
  right: 20px;
  cursor: pointer;
  z-index: 999;
  border:none;
  background:none;
  max-width:80px;
}

   /* ボタンの表示/非表示 */
#scrollToTopBtn.active {
  display: block;   /* ボタンの表示 */
}

/* CTA */
.cta{
  width:100%;
  max-width:400px;
  background-color:#eb6d8e;
  text-align:center;
  font-weight:bold;
  padding:15px;
  border-radius:50px;
  margin:0 auto;
  box-shadow: 6px 6px 6px 0px rgba(105, 105, 105, 0.45);
}
.cta>a>ul{
  display:flex;
  text-align:center;
  justify-content:center;
  align-items:center;
}
.cta>a>ul>li:first-child>img{
  width:70%;
  max-width:100px;
  text-align:center;
}

.cta>a>ul>li:nth-child(2){
  padding-left:10px;
  color:white;
  font-size:calc(var(--kihon-font) + 0.3rem);
}

/* fixed-button */
.fixed-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  box-sizing:border-box;
  z-index: 9999;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.fixed-buttons button {
  flex: 1;
  border: none;
  padding: 15px 0;
  font-size: var(--kihon-font);
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing:border-box;
}

.fixed-buttons button i{
  margin-right:10px;
}


.contact-button {
  background: #eb6d8e;
  border: none;
  width: auto;
  height: 70px;
  padding: 32px;
  font-size: var(--kihon-font);
  cursor: pointer;
  box-sizing: border-box;
  color:#fff;
  flex:1;
  display:flex;
}
.tel-button{
  background:#0092d8;
  border: none;
  width: auto;
  height: 70px;
  padding: 32px;
  font-size: var(--kihon-font);
  cursor: pointer;
  box-sizing: border-box;
  color:#fff;
  flex:1;
  display:flex;   
}
/* 250909追加 */
#range_hood>.flex>li:nth-child(2)>ul>li:first-child>br:nth-child(2){
  display:none;
}
.other-item>h3{
  line-height:2.3rem;
}
.c-cta{
  width:100%;
  max-width:400px;
  margin:0 auto;
}

/* aを“ボタン本体”にする：ここに背景/角丸/影/余白を集約 */
a.c-cta_link{
  position:relative;
  z-index:1;
  display:flex!important;                 /* ブロック化 & 中央寄せ */
  align-items:center;
  justify-content:center;
  gap:0px;
  width:100%;                   
  padding:15px;
  background:#eb6d8e;
  border-radius:50px;
  box-shadow:6px 6px 6px 0 rgba(105,105,105,.45);
  color:#fff;
  font-weight:bold;
  text-decoration:none;
  box-sizing:border-box;
  transition:transform .08s ease, box-shadow .08s ease, filter .08s ease;
}

.c-cta_icon{
  width:100px;  display:inline-flex; justify-content:center;
}
.c-cta_icon img{ width:60%; height:auto; display:block; }

.c-cta_label{
  color:#fff;
  font-size:calc(var(--kihon-font, 1rem) + 0.3rem);
  line-height:1;
  white-space:nowrap;
}