@charset "UTF-8";
/* CSS Document */



/****************************************************************************************************
初期設定
****************************************************************************************************/

/* 古いブラウザへの対応 */
article, aside, figure, figcaption, footer, header, nav, section {
	display: block;
}
/* 古いブラウザへの対応 */

.pcOnly {
	display: block;
}
img.pcOnly,
span.pcOnly,
i.pcOnly {
	display: inline;
}
.spOnly {
	display: none;
}

html,body{
	text-align: center;
	font-family: "Hiragino Sans","Hiragino Kaku Gothic ProN","Noto Sans JP", "Noto Sans JP Fallbac",sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt" 1;
	scroll-padding-top: 160px;
	min-width: 1000px;
	background:#FFF;
	font-size: 17px;
  font-weight: 400;
  margin:0;
}
.serif {
	font-family: '游明朝','Yu Mincho','游明朝体','YuMincho','Noto Serif JP','ヒラギノ明朝 Pro W3','Hiragino Mincho Pro','ＭＳ Ｐ明朝','MS PMincho', serif;
}

* {
	box-sizing: border-box;
}
img {
	vertical-align: top;
}
a {
	word-break: break-all;
	color: #251E1C;
	text-decoration: none;
	-webkit-transition: opacity 300ms;
	-moz-transition: opacity 300ms;
	transition: opacity 300ms;
}
a:hover {
	opacity: .5;
}
li{
  list-style: none;
}

/****************************************************************************************************
header
****************************************************************************************************/

/* ヘッダーメニュー */

header {
  position: fixed;  /* ヘッダーを固定 */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;  
  background-color: #fff; 
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 少し影をつけて浮き上がった印象に */
}

#header-inner {
  padding: 34px 40px 34px 40px;
  text-align: left;
  width: 100%;  /* 幅を100%にしてヘッダー内要素が画面全体に収まるように */
  position: relative;
  top: 0;
}

.logo-background{
  position: fixed;
  top: -10px;
  left: -10px;
  padding: 2%;
  background-color: #FFF;
  border-radius: 50%;
  overflow: hidden;
  z-index: 300;
}

/* 回転する要素のスタイル */
.logo img {
  width: 100px;
  height: 100px;
  transition: transform 1s ease-in-out; /* ホバー時の変化をスムーズにする */
}
/* ホバー時に回転アニメーションを適用 */
.logo img:hover {
  animation: rotateAnimation 1s ease-in-out forwards;
}
/* 回転アニメーションの定義 */
@keyframes rotateAnimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

#hNav {
  position: absolute;
  right: 35px;
  top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
#menu-btn {
  display: block;  /* メニューアイコンは表示させておく */
}

/* 右側のタブボタン */
#tab .tab-mail{
	position:fixed;
	right:-50px;
  bottom:260px;
  background-color: #251E1C;
  border: 2px solid #FFF;  
  padding: 10px;
  border-radius: 10px 0 0 10px;
  width: 120px;
  height: 60px;
  text-align: left;
  z-index:30000;
  cursor: pointer;
}
#tab .tab-mail:hover {
	position:fixed;
	right:0;
  bottom:260px;
	-webkit-transition : 0.8s;
	-o-transition : 0.8s;
	transition : 0.8s;
  z-index:30000;  
}
#tab .tab-mail img{
	width:30px;
}
#tab .tab-tel{
	position:fixed;
	right:-50px;
  bottom:190px;
  background-color: #99F0FF;
  border: 2px solid #251E1C;  
  padding: 10px;
  border-radius: 10px 0 0 10px;
  width: 120px;
  height: 60px;
  text-align: left;
  z-index:30000;
  cursor: pointer;
  color:#251E1C;
}
#tab .tab-tel:hover {
	position:fixed;
	right:0;
  bottom:190px;
	-webkit-transition : 0.8s;
	-o-transition : 0.8s;
	transition : 0.8s;
  z-index:30000;  
}
#tab .tab-tel img{
	width:30px;
}
#tab .tab-line{
	position:fixed;
	right:-50px;
  bottom:120px;
  background-color: #c1e759;
  border: 2px solid #FFF;
  padding: 10px;
  border-radius: 10px 0 0 10px;
  width: 120px;
  height: 60px;
  text-align: left;
  font-weight: bold;
  z-index:30000;
  cursor: pointer;  
}
#tab .tab-line:hover {
	position:fixed;
	right:0;
  bottom:120px;
	-webkit-transition : 0.8s;
	-o-transition : 0.8s;
	transition : 0.8s;
  z-index:30000;
}

#menu{
  display: none;
}
#menu-btn{
  display: none;
} 


/* メインビジュアル */
.hero {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 700px;
  margin-left: 68px;
  /* 2026/05/01 */
  /* margin-bottom: 68px; */
  position: relative;
  border-radius: 0 0 0 50px;
  overflow: hidden;
}

.slideshow {
  width: 100vw;
  height: 100vh;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: opacity 1s ease-in-out;
  background-color: rgba(0,0,0,0.2);
  background-blend-mode: overlay;
} 
.bg-img1 {
  background-image: url('../img/top/iStock-1000560916.jpg');
}

.bg-img2 {
  background-image: url('../img/top/iStock-1364339284.jpg');
  background-position:right;
  opacity: 0;
}

.bg-img3 {
  background-image: url('../img/top/iStock-1255408066.jpg');
  opacity: 0;
}

@keyframes slide1 {
  0% {opacity: 1;}
  20% {opacity: 1;}
  40% {opacity: 0; }
  60% {opacity: 0;}
  80% {opacity: 0; }  
  100% {opacity: 0;}
  100% {opacity: 1;}
}
@keyframes slide2 {
  0% {opacity: 0;}
  20% {opacity: 0;}
  40% {opacity: 1; }
  60% {opacity: 1;}
  80% {opacity: 0; }  
  100% {opacity: 0;}
}
@keyframes slide3 {
  0% {opacity: 0;}
  20% {opacity: 0;}
  40% {opacity: 0; }
  60% {opacity: 0;}
  80% {opacity: 1; }  
  100% {opacity: 1;}
  100% {opacity: 0;}
}
.slide:nth-child(1) {
animation: slide1 12s infinite;
}
.slide:nth-child(2) {
animation: slide2 12s infinite;
}
.slide:nth-child(3) {
animation: slide3 12s infinite;
}

.hero-text {
  position: absolute;
  top: 20%;
  left: 8%;
  text-align: left;
}

.hero-text h1 {
  font-size: 4.5rem;
  font-weight: bold;
  color: #fff;
  -webkit-text-stroke: 3px #251E1C;
  paint-order: stroke;
  margin:0;
}

/*メインテキスト アニメーション*/
@keyframes showTextFromBottom{
  0%{
    transform: translateY( 100% );
  }
  100%{
    transform: translateY( 0px );
  }
}
.anime-up.displayed span{
  animation: showText 1s backwards;
  display: inline-block;
}
.anime-up.displayed > span{
  overflow: hidden;
}
.anime-up.displayed > span > span{
  animation: showTextFromBottom 0.5s backwards;
}
.highlight {
    color: #c1e759;
}
.hero-text p {
  font-size: 2rem;
  text-align: left;
  color: #FFF;
  margin:0;
}



/* エアコンのことなら任せてください */
.contents1 {
  background-color: #b8c5c6;
  position: relative;
  border-radius: 50px;
}
.contents-inner{
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}
h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 40px;
}
.service-options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}
.service-item {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.service-item img {
  width: 100%;
  height: 100%;
}
.service-item p {
  font-size: 16px;
}
.service-arrow img{
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 50;
}
.triangle-box{
  position: relative;
  height: 280px; /* 高さはお好みで */
  background-color: #b8c5c6;
  overflow: hidden;
}
/* 三角形の背景 */
.triangle-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #c1e759; /* 黄緑色 */
  clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
  z-index: 1;
}
.star{
  position: absolute;
  right: 0;
  left: 0;
  top: 40px;
  margin: 0 auto;
  z-index: 50;
  animation: flip 3s ease-in-out infinite;
}
@keyframes flip {
  from { 
    transform: rotateY(0);
  }
  to { 
    transform: rotateY(360deg);
  }
}


/* クーラクールのサービス */
.contents2 {
  background-color: #c1e759;
  position: relative;
}
.contents2 h2{
  text-align: center;
  margin: 0;
}
.contents-inner.pd80{
  padding: 40px 80px;
}
.service-contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.service-contents a .service{
  width:365px;
  padding:10px 0;
  border-radius: 9999px;
  background-color: #FFF;
}
.service-contents a .service:hover {
  animation: poyoyon1 1s ease-in-out forwards;
}
@keyframes poyoyon1 {
  0%  {
    transform: scale(1.0, 1.0) translate(0, 0);
  }
  15% {
    transform: scale(0.98, 0.9) translate(0, 5px);
  }
  30% {
    transform: scale(1.02, 1.0) translate(0, 8px);
  }
  50% {transform: scale(0.98, 1.05) translate(0, -8px);
  }
  70% {
    transform: scale(1.0, 0.9) translate(0, 5px);
  }
  100% {
    transform: scale(1.0, 1.0) translate(0, 0);
  }
  0%, 100% {
    opacity: 1;
  }
}

.service-contents a .service h3{
  font-size: 1.2rem;
}
.service-contents a .green{
  background-color: rgba(240, 247, 238, .85);
}
.service-contents .service p{
  font-size: 1.2rem;
  font-weight: 500;
}

.service-contents1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}
.service-contents1 .service1{
  width:365px;
  background-color: #FFF;
  border-bottom: 0.1rem solid #251E1C;
  border-left: 0.1rem solid #251E1C;
}
.service-contents1:nth-of-type(1){
  margin:0 auto;
  width: 730px;
  border-top: 0.1rem solid #251E1C;
}
.service-contents1 .service1.green{
  border-left: 0.1rem solid #251E1C;
  border-right: 0.1rem solid #251E1C;
}

.service-contents1 .service1 p{
  font-size: 1.2rem;
  font-weight: 500;
}

/* 選ばれている理由 */
.reason-options{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 40px;
}
.reason-options .reason.is-active{
  width:280px;
  animation: poyoyon2 2.5s linear;
}
@keyframes poyoyon2 {
  0%, 40% {
    transform: skew(0deg, 0deg);
  }
  5% {
    transform: skew(5deg, 5deg);
  }
  10% {
    transform: skew(-4deg, -4deg);
  }
  15% {
    transform: skew(3deg, 3deg);
  }
  20% {
    transform: skew(-2deg, -2deg);
  }
  25% {
    transform: skew(1deg, 1deg);
  }
  30% {
    transform: skew(-0.6deg, -0.6deg);
  }
  35% {
    transform: skew(0.3deg, 0.3deg);
  }
}

.reason-options .reason h3{
  padding:20px 0;
  font-size: 1.2rem;
  border-radius: 9999px;
  border: 0.2rem solid #251E1C;
  background-color: #99F0FF;
}
.reason-options .reason p{
  padding:0 25px;
  text-align: left;
}

/* ご依頼の流れ */
.contents4 {
  background-color: #b8c5c6;
  position: relative;
  padding: 50px 0;
  border-radius: 50px 50px 0 0;
}
.flow-options{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}
.flow-options .flow{
  width: 215px;
  height: 215px;
  border:3px solid #251E1C;
  border-radius: 1.6rem;
  background-color: #fff;
  position: relative;
  transform: skewX(10deg);
}

.flow-options .flow h3{
  font-size: 1.2rem;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  margin: 0;
  width: 100%;
}
.flow-options .flow p{
  position: absolute;
  top: -20%;
  left: -10%;
  padding: 10px 20px;
  border-radius: 50% 50%;
  background-color: #c1e759;
  color: #FFF;
  font-weight: bold;
  font-size: 1.5rem;
  -webkit-text-stroke: 3px #251E1C;
  paint-order: stroke;
}
.flow-options .flow-arrow img{
  position: absolute;
  top: 50%;
  right: -25%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  z-index: 50;
}
.flow-arrow-bottom{
  display: none;
}
.contact-text{
  font-size:1.2rem;
  animation: poyoyon3 2.5s infinite;
}
@keyframes poyoyon3 {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.8);
  }
}

/* フッター */

#footer-tab .tab-b{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0;
}
#footer-tab .tab-mail{
  background-color: #251E1C;
  border: 2px solid #FFF;  
  padding: 10px;
  border-radius: 10px;
  width: 260px;
  height: 60px;
  text-align: center;
  cursor: pointer;
}
#footer-tab .tab-mail a{
  line-height: 36px;
  color: #FFF;
  font-weight: bold;
}
#footer-tab .tab-mail img{
	width:30px;
  padding: 8px 5px 0 0;
}
#footer-tab .tab-tel{
  background-color: #99F0FF;
  border: 2px solid #251E1C;
  padding: 10px 20px;
  border-radius: 10px;
  width: 260px;
  height: 60px;
  text-align: center;
  cursor: pointer;
}
#footer-tab .tab-tel a{
  line-height: 36px;
  color: #251E1C;
  font-weight: bold;
}
#footer-tab .tab-tel img{
	width:30px;
  padding: 8px 5px 0 0;
}
#footer-tab .tab-line{
  background-color: #c1e759;
  border: 2px solid #FFF;
  padding: 10px;
  border-radius: 10px;
  width: 260px;
  height: 60px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;  
}
#footer-tab .tab-line .line-button{
  line-height: 36px;
}

nav#fNav ul{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/*フッターまでスクロールしたら消す*/
.is-hidden {
  visibility: hidden;
  opacity: 0;
}

/****************************************************************************************************
お知らせ
****************************************************************************************************/

#information{
  margin-bottom: 68px;
}

.info-list{  
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  text-align: left;
}

.info-list dl{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 1.4em 120px;
}

.info-list dl + dl {
  border-top: 1px dotted #CCC;
}

.info-list dl dt{
  color: #c1e759;
  font-weight: bold;
}

.info-detail{
  margin-bottom: 68px;
}

.info-detail-cont h3{
  font-size: 1.2rem;
}

/******************************** レスポンシブ ********************************/
@media screen and (max-width: 768px),
screen and (max-width: 960px) and (orientation: landscape) {
html,body{
  min-width: initial;
}
.pcOnly {
	display: none;
}
.spOnly {
	display: block;
}
#header-inner {
  padding: 30px 0;
}
.logo img {
  width: 10vw;
  height: 10vw;
}
.logo-background {
  padding: 4%;
}
#hNav{
  display: none;
}
h2 {
  font-size: 1.7rem;
}


/* ハンバーガーメニュー */
#menu {
  position: fixed;
  width: 100%;
  max-height: 100vh;
  height: 100%;
  overflow: scroll;
  right: -100%;
  top: 0;
  padding: 132px 40px 50px 40px;
  background-color: rgba(240, 247, 238, 1);
  color: #FFF;
  font-size: 1.2rem;
  line-height: 2.0;
  text-align: left;
  z-index: 200;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  transition: 300ms;
  display: block;
}
#menu.active {
  right: 0;
  top: 0;
}
#menu ul li {
  border-top: 2px dotted #c1e759;
  padding-right: 0;
}
#menu ul li:nth-last-of-type(1) {
  border-bottom: 2px dotted #c1e759;
}
#menu ul + ul li:nth-of-type(1) {
  border-top: none;
}
#menu ul li a {
  padding: 0.4em 0;
  display: block;
  color: #251E1C;
}
#menu ul li.select a,
#menu ul li.current-menu-item a,
#menu ul li.current-page-ancestor a {
  font-weight: bold;
}
#menu ul li h3 {
  font-size: 1rem;
  font-weight: normal;
}
#menu-btn{
  position: fixed;
  right: 20px;
  top: 10px;
  width: 40px;
  height: 40px;
  z-index: 1000;
  display: block;
}
#menu-btn a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  text-indent: -9999px;
}
#menu-btn span, 
#menu-btn a::before, 
#menu-btn a::after {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 35px;
  height: 2px;
  margin: auto;
  background: #251E1C;
  -webkit-transition: 200ms;
  -moz-transition: 200ms;
  transition: 200ms;
}
#menu-btn span {
  background: #251E1C;
  overflow: visible;
  white-space: nowrap;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
#menu-btn a::before {
  -webkit-transform: translate(0, -11px);
  transform: translate(0, -11px);
  content: "";
}
#menu-btn a::after {
  -webkit-transform: translate(0, 11px);
  transform: translate(0, 11px);
  content: "";
} 
#menu-btn.active {
  background: none;
}
#menu-btn.active span {
  opacity: 0;
  -webkit-transition: opacity 150ms;
  transition: opacity 150ms;
}
#menu-btn.active a::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#menu-btn.active a::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* メインビジュアル */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  margin-left: 60px;
  margin-bottom: 60px;
  min-height: initial;
}

.hero-text h1{
  font-size: 10vw;
  line-height: 1.3;
  margin: 10px 0;
}
.hero-text p {
  font-size: 2rem;
}


/* エアコンのことならお任せください */
.contents-inner {
  text-align: center;
  max-width: initial;
  margin: 0 auto;
  padding: 20px;
}
.service-options {
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
  gap: 20px;
}
.service-item {
  width: 120px;
  height: 120px;
}
.triangle-box {
  height: 250px;
}
.triangle-bg {
  clip-path: polygon(-60% 100%, 50% 0%, 180% 100%)
}
.star{
  position: absolute;
  right: 0;
  left: 0;
  top:40%;
}
.star img{
  width:20%;
}

/* クーラクールのサービス */
.service-contents{
  gap:20px;
}
.contents-inner.pd80 {
    padding: 40px 10px;
}

.service-contents1 {
  display: block;
}
.service-contents1:nth-of-type(1){
  width: 100%;
}  
.service-contents1 .service1{
  width:100%;
  background-color: #FFF;
  border-right: 0.1rem solid #251E1C;
}
.service-contents1 .service1.green{

}
.service-contents1 .service1 p{
  margin:0;
}
.service-contents1:nth-of-type(2) {
    width: 100%;
}
/* 選ばれている理由 */

.reason-options{
  flex-wrap: wrap;
}
.reason-options .reason{
  width: 45%;
}

/* ご依頼の流れ */
.flow-options{
  display: block;
  margin-bottom: 0;
}
.flow-options .flow{
  width: 210px;
  height: 200px;
  margin:40px auto;
}
.flow-options .flow p {
  position: absolute;
  top: -30%;
} 
.flow-options .flow-arrow img{
  display: none;
}
.flow-arrow-bottom{
  display: block;
  position: absolute;
  left: 50%;
  bottom: -35%;
  z-index: 50;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.flow-options .flow p {
    position: absolute;
    top: -30%;
    left: -30px;
}

/****************************************************************************************************
お知らせ
****************************************************************************************************/

#information{
  margin-bottom: 68px;
}

.info-list{  
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  text-align: left;
}

.info-list dl{
  display: block;
  padding: 10px;
}

.info-list dl dd{
  padding:5px 0;
  margin-left: 20px;
}
    

}


/******************************** レスポンシブ ********************************/
@media (max-width: 480px) {
  #header-inner {
      padding: 22px 0;
  }
  .hero {
    height: 100vh;
    background-size: cover;
    background-position: 35%;
    margin-left: 44px;
    margin-bottom: 44px;
    min-height: initial;
  }
  .slide .bg-img1 {
    background-position: center center;
  }
  .slide .bg-img2 {
    background-position: center right;
  }
  .slide .bg-img3 {
    background-position: center right;
  }

  .hero-text {
    position: absolute;
    top: 13%;
    left: 7%;
  }
  .hero-text h1 {
    margin: 10px 0;
  }
  .hero-text p {
    font-size: 1.4rem;
  }    
  .logo img {
    width: 11vw;
    height: 11vw;
  }
  .logo-background {
    padding: 6%;
    position: fixed;
    top: -10px;
    left: -10px;
  }
  #menu-btn {
    position: fixed;
    right: 20px;
    top: 8px;
    width: 30px;
    height: 30px;
    z-index: 1000;
    display: block;
  }
  .contents-inner {
    padding: 20px 20px 10px 20px;
  }
  h2{
   margin-bottom: 20px;
  }

  /* ハンバーガーメニュー  */
  #menu {
    right: -110%;
    top: 0;
    padding: 50px 40px 50px 40px;
    background-color: rgba(240, 247, 238, 1);
    color: #FFF;
    font-size: 1.2rem;
    line-height: 2.0;
    text-align: left;
    z-index: 200;
    -webkit-transition: 300ms;
    -moz-transition: 300ms;
    transition: 300ms;
    display: block;
  }
  #menu-btn span,
  #menu-btn a::before,
  #menu-btn a::after {
    width: 30px;
    height: 2px;
  }
  #menu-btn a::before {
    -webkit-transform: translate(0, -9px);
    transform: translate(0, -9px);
    content: "";
  }
  #menu-btn a::after {
    -webkit-transform: translate(0, 9px);
    transform: translate(0, 9px);
    content: "";
  } 

  #tab .tab-mail {
    bottom:220px;
  }
  #tab .tab-mail:hover {
    bottom:220px;
  } 
  #tab .tab-tel {
    bottom:150px;
  }
  #tab .tab-tel:hover {
    bottom:150px;
  }
  #tab .tab-line {
    bottom:80px;
  }
  #tab .tab-line:hover {
    top:initial;
    bottom:80px;
  }  
  /* エアコンのことならお任せください */
  #service .contents-inner{
    padding:20px;
  }
  .service-options {
    margin-bottom: 0;
    gap: 24px;
  }
  .service-item {
    width: 140px;
    height: 140px;
  }

  /* クーラクールのサービス */
  .star {
    position: absolute;
    right: 0;
    left: 0;
    top: 20%;
  }
  .star img {
    width: 30%;
  }
  .triangle-box {
    height: 170px;
  }
  .service-contents {
    display: block;
  }
  .service-contents .service{
    width:100%;
    padding: 2px 0;
  }
  .service-contents a:nth-of-type(odd) div.service{
    width:100%;
    padding: 1px 0;
    background-color: #FFF;
    margin:5px 0;
  }
  .service-contents a:nth-of-type(even) div.service{
    width:100%;
    padding: 1px 0;
    background-color: rgba(240, 247, 238, .85);
    margin:5px 0;
  }


  /* 選ばれている理由 */
  .reason-options {
    gap: 0;
    margin-bottom: 40px;
  }
  .reason-options .reason {
    width: 100%;
  }
  .reason-options .reason h3 {
    padding: 15px 0;
  }
  .reason-options .reason p{
    padding:0;
  }

  /* ご依頼の流れ */
  .contents4 {
    background-color: #b8c5c6;
    position: relative;
    padding: 50px 0 20px 0;
    border-radius: 50px 50px 0 0;
  }
  .contents4 .contents-inner{
    padding:0 20px;
  }

  .flow-options{
    display: block;
    margin-bottom: 0;
  }
  .flow-options .flow{
    width: 210px;
    height: 200px;
    margin:40px auto;
  }
  .flow-options .flow h3{
    font-size: 1.5rem;
  }
  .flow-options .flow-arrow img{
    display: none;
  }
  .flow-arrow-bottom{
    display: block;
    position: absolute;
    left: 50%;
    bottom: -35%;
    z-index: 50;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  .flow-options .flow p {
      position: absolute;
      top: -30%;
      left: -30px;
  }

  /* フッター */
  #footer-tab .tab-b{
    display: block;
    padding: 0;
  }
  #footer-tab .tab-b li{
    margin: 10px auto;
  }
  #footer-tab .tab-mail {
    margin: 0 auto;
  }
  #footer-tab .tab-tel {
    margin: 0 auto;
  }
  #footer-tab .tab-line {
    margin: 0 auto;
  }
  #fNav{
    margin: 30px auto;
  }
  nav#fNav ul{
    display: block;
    padding-left: 0;
  }
  #fNav ul li{
    padding: 2px 0;
  }
  .contents4 small{
    margin-top:10px;
  }

}  