@charset "UTF-8";

/*----------------------------------------
	header
----------------------------------------*/
.round-bottom {
  position: relative;
  width: 100%;
  background-color: var(--blue);
  margin-bottom: 13rem;
}
.round-bottom::after {
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 0;
  width: 100%;
  height: 10rem;
  background-color: var(--blue);
  clip-path: ellipse(60% 100% at 50% 0);
  z-index: -1;
}
h1{
  color: var(--white);
  font-weight: 600;
  font-size:min(8.2vw,3.2rem);
}
h1 > span{
  display: block;
}
h1 strong{
  font-weight: 700;
  background:linear-gradient(transparent 85%, rgba(255,230,126,.8) 85%);
}
.h1-text03{
  margin-top: -.15em;
}
header figure{
  width: 90%;
  max-width: 380px;
  text-align: center;
  margin: auto;
}
.header-container{
  display: flex;
  flex-direction: column;
  width: min(90%,900px);
  margin: auto auto -5rem;
  row-gap:1rem;
  padding-top: 3rem;
  text-align: center;
}
.header-btn{
  text-align: center;
  max-width: 26em;
  margin: 2rem auto;
}


/*----------------------------------------
	main
----------------------------------------*/
main{
  margin:3rem auto;
  width: min(90%,900px);
  padding-top: 1rem;
}
main h2{
  font-size: min(6.6vw,2.8rem);
}
main h2,
main h3{
  line-height: 1.4;
}
main > section{
  padding-top: 6rem;
  padding-bottom: 6rem;
}
main p{
  line-height: 1.8;
  margin-top: 1em;
  text-align: justify;
}
main figure{
  margin: 2rem auto 0;
  width: 100%;
  max-width: 64rem;
}

/* 自分でできるエアコン掃除の範囲 */
#yourself section{
  margin-top: 4rem;
}
#yourself h3 {
  font-size: min(5.13vw,2rem);
  background: var(--white);
  padding: .35em .25em .35em 1.2em;
  border-radius: .6rem;
  position: relative;
  line-height: 1.3;
}
#yourself h3::before{
  content: "";
  background: var(--red);
  position: absolute;
  left: .45em;
  top:50%;
  height: calc(100% - .7em);
  width: .3em;
  border-radius: .3rem;
  transform: translateY(-50%);
}
#yourself figure{
  margin-top: auto;
  margin-bottom: auto;
}

/* ３大理由 */
#feature h2{
  text-align: center;
}
#feature .feature-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap:6rem 4.5%;
  margin-top: 3rem;
}
#feature section{
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}
.feature-head{
  text-align: center;
  margin-bottom: 1rem;
}
.feature-head img{
  width: 50%;
  max-width: 200px;
}
.feature-head h3{
  font-size: min(5.6vw,2.4rem);
  color: var(--navy);
  margin-top: 0.25em;
  line-height: 1.45;
}

/* なぜプロの分解清掃が重要なのか？ */
.pro-list{
  display: flex;
  flex-direction: column;
  gap: .5em;
  margin-top: 1em;
  font-size: 1.85rem;
  padding: 1em;
  border-radius: .5rem;
  border: 2px solid var(--blue);
}
.pro-list li {
  padding-left: 1.5em;
  text-indent: -1.5em;
}
.pro-list li:not(:last-child){
  border-bottom: 2px dotted #bba;
  padding-bottom: .5em;
}
.pro-list li::before{
  content: "";
  background: url(../img/icon_check-blue.svg) no-repeat left center/cover;
  width: 1em;
  height: 1em;
  display: inline-block;
  margin-right: .5em;
  transform: translateY(.1em);
}

/* クリーニングの流れと効果 */
#flow{
  padding-bottom: 0;
}
.flow-list{
  counter-reset: section; /* カウンターをリセット */
  margin-top: 1em;
  display: flex;
  flex-direction: column;
  gap:1.25em;
  font-size: 1.85rem;
  margin-top: 3rem;
}
.flow-list li{
  display: flex;
  gap:.5em;
  position: relative;
}
.flow-list li::before{
  content: "";
  counter-increment: section;
  content:counter(section);
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  padding:.5em;
  width: 2em;
  height: 2em;
  line-height:1;
  flex-shrink: 0;
  text-align: center;
  transform: translateY(-.15em);
}
.flow-list li::after{
  content:"";
  position: absolute;
  background: var(--blue-op50);
  top:1.5em;
  left: calc(1em);
  height: 100%;
  width: 2px;
}
.flow-list li:last-child::after{
  background: none;
}




/* こんな方におすすめ */
.rec-list{
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-top: 1em;
  font-size: 1.85rem;
}
.rec-list li{
  background: var(--white);
  padding:.75em;
  border-radius: 2rem;
  display: flex;
  gap:.5em;
}
.rec-list li::before{
  content:url(../img/icon_check-red.svg);
  width: 1em;
  height: 1em;
  font-size: 1.2em;
}

/* flex */
.col2-container {
  display: flex;
  flex-direction: column;
  gap:1rem;
  justify-content: space-between;
}
.col2-text{
  flex-grow: 1;
}
.col2-img{
  text-align: center;
}
.col2-img img{
  width: min(90%,300px);
}



/* 共通リスト */
.list-kome > li{
  display: flex;
  gap:.25em;
}
.list-kome li::before{
  content:"※";
}

/* 強調 */
strong,
.strong {
  font-weight: 700;
  background: linear-gradient(transparent 75%, var(--yellow) 75%);
}

/* ボタン */
.btn-wrap{
  text-align: center;
  max-width: 26em;
  margin: 6rem auto;
}


/*----------------------------------------
	その他
----------------------------------------*/
.wide{
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}
.bg-lightgray{
  background: var(--lightgray);
}
.w90per{
  width: 90%;
}
.w80per{
  width: 80%;
}
.max340{
  max-width: 340px;
}
.max460{
  max-width: 460px;
}
.btn01{
  color: var(--white);
  display: block;
  padding: .7em 2.5em;
  border-radius: 1.5em;
  font-size: 1.05em;
  text-decoration: none;
  background:var(--navy);
}
.btn01.bg-blue{
  background:var(--blue);
}
.mt3rem{
  margin-top: 3rem;
}
.pb0{
  padding-bottom: 0;
}
.pb3rem{
  padding-bottom: 3rem!important;
}
.nowrap{
  white-space: nowrap;
}
.upper{
  text-transform: uppercase;
}
/* 表示・非表示 */
.sp-none,
.pc-only{
  display: none;
}


/*----------------------------------------
	タブレット　768px以上
----------------------------------------*/
@media (min-width: 768px) {

  .header-container{
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
  h1{
    text-align: left;
  }
  .header-btn{
    text-align:left;
  }
  .header-container .btn01{
    display: inline-block;
  }
  header figure{
    width: 35%;
    max-width: 400px;
  }

  /* ３大理由 */

  #feature .feature-container {
    flex-direction: row;
  }
  #feature section{
    flex: 1;
  }

  /* 流れと効果 */
  #flow{
    padding-bottom: 2rem;
  }

  /* flex */
  .col2-container{
    flex-direction: row;
  }
  .col2-img{
    width: min(45%,300px);
    flex-shrink: 0;
  }
  .col2-img img{
    max-width: 100%;
  }

  /* 表示・非表示 */
  br.sp-none{
    display: inline-block;
  }

}

/*----------------------------------------
	PC　960px以上
----------------------------------------*/
@media (min-width: 960px) {
  header figure{
    width: 40%;
  }
  /* 特徴 */
  .feature-container {
    display: flex;
    gap: 2.25em;
  }

  /* 他 */
  /* 表示・非表示 */
  br.pc-only{
    display: inline-block;
  }
}

/*----------------------------------------
	オンマウス
----------------------------------------*/
@media (hover: hover) {
  a{
    transition: .2s;
  }
  a:hover{
    opacity: .85;
  }
  
}