/************************************
** 共通アイテム
************************************/
.main {
  font-family: "Sawarabi Mincho", sans-serif;
}

.button-wrap {
  text-align: center;
}
a.btn-flat {
  overflow: hidden;
  padding: 1.2em 6rem;
  color: #fff;
  border: none;
  border-radius: 0;
  background: #000;
  font-size: 1em;
}
.btn-flat span {
  position: relative;
}
.btn-flat:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateX(-96%);
  transform: translateX(-96%);
  background: #eb6877;
}
.btn-flat:hover:before {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
.fa-position-right {
  position: absolute;
  top: calc(50% - 0.5em);
  right: 1rem;
}

@media screen and (max-width: 769px) {
  a.btn-flat {
    width: 100%;
    padding: 1.2em 2rem;
  }
}


/************************************
** sec_01
************************************/

.key-visual {
  position: relative;
  overflow: hidden;
}

.key-visual .swiper-container {
  width: 100%;
  height: 100%;
}

.key-visual .swiper-slide {
  background-position: center;
  background-size: cover;
}

.key-visual .swiper-slide img {
  display: block;
  width: 100%;
}
.key-visual .swiper-slide-prev,
.key-visual .swiper-slide-next {
  position: relative;
}
.key-visual .swiper-slide-prev::after,
.key-visual .swiper-slide-next::after {
  position: absolute;
  display: inline-block;
  content: "";
  top: 0;
  left: 0;
  z-index: 50000;
  background: rgb(0 0 0 / 50%);
  height: 100%;
  width: 100%;
}
.key-visual .swiper-button-prev,
.key-visual .swiper-container-rtl .swiper-button-next {
  left: 15%;
  right: auto;
}
.key-visual .swiper-button-next,
.key-visual .swiper-container-rtl .swiper-button-prev {
  right: 15%;
  left: auto;
}

@media screen and (max-width: 769px) {
  .key-visual-sp .key-visual-slide {
      position:relative;
      height: 350px;
  }

  .key-visual-sp .key-visual-slide img {
    position:absolute;
    opacity:0;
    transition:all 1s ease-in-out;
    /* height:100%; */
    object-fit:contain;    
  }
}

/************************************
** sec_01 key_visual_text
************************************/
.key-visual-text {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 95%;
  height: 90%;
  padding-right: 5%;
}

.kv-1 .key-title-a,
.kv-1 .key-title-b {
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.5em;
}

.kv-1 .text-c {
  color: #000;
  font-size: 1.75em;
  margin-top: 8%;
  font-weight: 700;
  text-shadow: 2px 2px 2px #fff;
}

.kv-2 .key-title-a {
  color: #000;
  font-size: 2em;
  line-height: 1.5em;
}

.kv-2 .list-a {
  margin-top: 20%;
}
.kv-2 .list-a li {
  color: #000;
  font-size: 1.5em;
  list-style: decimal;
}

.kv-3 .key-title-a,
.kv-3 .key-title-b {
  color: #fff;
  font-size: 2em;
  line-height: 1.5em;
}
.kv-3 .list-b {
  margin-top: 10%;
}

.kv-3 .list-b li {
  color: #000;
  font-size: 2em;
  list-style: square;
  text-shadow: 2px 2px 2px #fff;
}

@media screen and (max-width: 769px) {
  .key-visual-text {
    top: 7%;
    left: 5%;
    padding-right: 5%;
  }
  .kv-1 .key-title-a,
  .kv-1 .key-title-b {
    font-size: 3em;
  }
  .kv-1 .text-c {
    color: #000;
    font-size: 1.5em;
    margin-top: 100px;
    font-weight: 700;
    text-shadow: 2px 2px 2px #fff;
  }
  .kv-2 .list-a {
    margin-top: 50%;
  }
  .kv-2 .list-a li {
    font-size: 1.3em;
  }
  .kv-3 .key-title-a,
  .kv-3 .key-title-b {
    font-size: 2.25em;
  }
  .kv-3 .list-b {
    margin-top: 150px;
  }
  .kv-3 .list-b li {
    font-size: 2em;
  }
}

/************************************
** sec_001, sec_002 
************************************/

.item-container {
  display: flex;
  flex-wrap: nowrap;
  height: 50vh;
}
.item-container .item {
  position: relative;
  width: 100%;
  overflow: hidden;
  transition: all ease 1s;
}
.item-container .item img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
.item-container .item:hover {
  width: 200%;
}
.item-container .item .text {
  position: absolute;
  left: 0;
  bottom: -50px;
  width: 100%;
  height: 100%;
  padding: 50px 50px 100px;
  color: #fff;
  background-image: linear-gradient(to bottom, transparent, rgb(0 0 0 / 40%));
  display: flex;
  align-items: flex-end;
}
.item-container .item .text p {
  font-size: 1.5em;
  font-weight: 700;
}

#sec_001-sec_002 .attension-box {
  margin-top: 1em;
  color: #000;
  right: 0;
}
#sec_001-sec_002 .attension-box p {
  margin-bottom: 0;
}

#sec_001-sec_002 .btn-flat:before {
    background: #5189ff;
}

#sec_001-sec_002 .button-wrap {
    padding-top: 50px;
}

@media screen and (max-width: 769px) {

  #sec_001-sec_002 .wp-block-group__inner-container {
    padding-top: 0;
  }

  .item-container {
    flex-wrap: wrap;
    height: auto;
  }
  .item-container .item {
    width: 50%;
  }
  .item-container .item:hover {
    width: 50%;
    opacity: 0.8;
  }
  .item-container .item img {
    height: auto;
    padding: 5px;
    border-radius:20px;
  }
  .item-container .item .text {
    bottom: -30px;
    padding: 20px;
    background:none;
  }
  .item-container .item .text p{
    font-size: 1.0em;
  }
}



/************************************
** sec_003
************************************/

/* 
#sec_003 {
  background-image: url(https://cleanlife110.com/wp-content/uploads/2021/12/22116716_s.jpg);
  background-attachment: fixed;
  background-size: cover;
  padding-bottom: 60px;
  margin-bottom: 0;
}
#sec_003::before {
  box-sizing: border-box;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 70%);
} 
*/

#sec_003 .heading h2 {
  color: #000;
}

#sec_003 .container_col4 {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  position: relative;
  flex-wrap: wrap;
}
#sec_003 .container_col4 .col4_item {
  width: 24%;
  position: relative;
  overflow: hidden;
  transition: all ease 1s;
}

#sec_003 .container_col4 .col4_item img {
  width: 100%;
  object-fit: cover;
}


@media screen and (max-width: 769px) {
  #sec_003 {
    background:none;
  }
  #sec_003 .wp-block-group__inner-container{
    /* padding:0 */
  }
  #sec_003::before {
    display:none;
  }
  #sec_003 .heading h2 {
    color: #000;
  }
  #sec_003 .container_col4{
	  gap: 10px;
  }
  #sec_003 .container_col4 .col4_item {
    width: 100%;
    object-fit: cover;
  }
  #sec_003 .wp-block-image {
    margin-bottom: 0;
  }
  #sec_003 .container_col4 .col4_item img {
    width: 100%;
  }
}

/************************************
** sec_004
************************************/
#sec_004 {
    margin-bottom: 0;
}
#sec_004 .heading h2 {
  color: #000;
}
#sec_004 .message-box {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
#sec_004 .face-box {width: 30%;margin: 0 auto;text-align: center;}
#sec_004 .face-box img {
    border-radius: 50%;
    width: 300px;
    height: 300px;
}
#sec_004 .text-box {
  padding: 0 0 0 40px;
  font-size: 0.9em;
}
@media screen and (max-width: 769px) {
  #sec_004 .inner-wrap {
    padding-top:1em;
    background:#fff;
    box-shadow: 0px 10px 15px rgba(0,0,0,0.1);
  }
  #sec_004 .message-box {
    flex-wrap:wrap;
  }
  #sec_004 .face-box {
  width: 100%;
  margin-bottom: 30px;
  }
  #sec_004 .face-box img {
  width: 250px;
  height: 250px;
  }
  #sec_004 .text-box {
    width: 100%;
    padding: 16px;
  }
}

/************************************
** sec_004_02
************************************/
#sec_004_02 .staff-box-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
}

#sec_004_02 .staff-box {
    width: 24%;
    background: #fff;
    padding: 10px;
}

.staff-box .heading {
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 1em;
}

.staff-box .message {
    font-size: 0.8em;
}

@media screen and (max-width: 769px) {
    #sec_004_02 .staff-box-container{
        flex-wrap: wrap;
    }
    #sec_004_02 .staff-box {
        width: 48%;
    }
}

/************************************
** sec_004_03
************************************/

/*ベース*/
#sec_004_03 .toggle {
	display: none;
}
#sec_004_03 .Label {		/*タイトル*/
	padding: 1em;
	display: block;
	color: #fff;
	background:#019ac6;
}
#sec_004_03 .Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
}
#sec_004_03 .Label, #sec_004_03 .content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
#sec_004_03 .content {		/*本文*/
	height: 0;
	margin-bottom:10px;
	padding:0 20px;
	overflow: hidden;
}
#sec_004_03 .toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	padding:20px ;
	transition: all .3s;
	background: #e7f4ff;
}
#sec_004_03 .toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}

@media(max-width: 600px){
	#sec_004_03 .Label {
		padding-right: 2em;
	}	
}

/************************************
** sec_005
************************************/

#sec_005 {
    margin-bottom: 0;
}

.circle-chart {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.circle-chart-outer {
  background: #fff;
  width: calc(33% - 20px);
  height: 300px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  box-shadow: 0px 10px 15px rgba(0,0,0,0.1);
}

.circle-chart-outer .circle {
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  cursor: default;
}

.circle-chart-outer .circle .num-box,
.circle-chart-outer .circle .num-box span {
  position: absolute;
  top: 50%;
  left: 50%;
}
.circle-chart-outer .circle .num-box{
  height: 100%;
  width: 100%;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  transition: all 0.2s;
}
.circle-chart-outer .circle:hover .num-box{
  transform: translate(-50%, -50%) scale(0.91);   
}

.circle-chart-outer .circle .num-box span,
.circle-chart-outer .text {
  background: -webkit-linear-gradient(left, #a445b2, #fa4299);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.circle-chart-outer .circle .num-box span{
  font-size: 38px;
  font-family: sans-serif;
  font-weight: 600;
  transform: translate(-45%, -45%);
  transition: all 0.1s;
}
.circle-chart-outer .circle:hover .num-box span{
  transform: translate(-45%, -45%) scale(1.09);    
}
.circle-chart-outer .text{
    font-size: 20px;
    font-weight: 400;
}

@media(max-width: 753px){
  .circle-chart{
    max-width: 700px;
  }
  .circle-chart .circle-chart-outer{
    width: calc(50% - 20px);
    margin-bottom: 20px;
  }
}
@media(max-width: 505px){
  .circle-chart{
    max-width: 500px;
  }
  .circle-chart .circle-chart-outer{
    width: 100%;
  }
}

/************************************
** sec_006
************************************/
#sec_006 .wp-block-group__inner-container {
    padding-bottom: 0;
}

#sec_006 .heading h2 {
  color: #000;
}
#sec_006 .voice-wrap {
  position: relative;
  text-align: center;
  color: #000;
  font-size: 1.2em;
  line-height: 2em;
  font-weight: 700;
}

@media screen and (max-width: 769px) {
  #sec_006 {
    height: 500px;
    margin-bottom: 0;
  }
  #sec_006 .inner-wrap {
    padding-top:1em;
    background:#fff;
    box-shadow: 0px 10px 15px rgba(0,0,0,0.1);
  }
  #sec_006 .voice-wrap {
    padding: 0 20px;
    text-align: left;
    font-size: 0.9em;
    font-weight: 400;
  }
  #sec_006 .button-wrap {
    padding: 30px 20px;
  }
}

/************************************
** sec_007
************************************/

#sec_007 .wp-block-group__inner-container {
    padding-bottom: 0;
}
#sec_007 .heading h2 {
  color: #000;
}
#sec_007 .voice-wrap {
  position: relative;
  text-align: center;
  color: #000;
  font-size: 1.2em;
  line-height: 2em;
  font-weight: 700;
}
#sec_007 .btn-flat:before {
  background: #4caf50;
}

@media screen and (max-width: 769px) {
  #sec_007 {
    height: 450px;
    margin-bottom: 0;
  }
  #sec_007 .inner-wrap {
      padding-top:1em;    
      background:#fff;
      box-shadow: 0px 10px 15px rgba(0,0,0,0.1);
  }
  #sec_007 .voice-wrap {
    padding: 0 20px;
    text-align: left;
    font-size: 0.9em;
    font-weight: 400;
  }
  #sec_007 .button-wrap {
    padding: 30px 20px;
  }
}

/************************************
** sec_008 swiper
************************************/
#sec_008 {
  background-image: url(https://cleanlife110.com/wp-content/uploads/2021/12/22396873_s.jpg);
  background-attachment: fixed;
  background-size: cover;
  padding-bottom: 60px;
  margin-bottom: 0;
}
#sec_008::before {
  box-sizing: border-box;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
#sec_008 .heading h2 {
  color: #fff;
}

#sec_008 .contents {
  position: relative;
}
#sec_008 .swiper-2 {
  position: relative;
  overflow: hidden;
}
#sec_008 .swiper-slide-inner .wp-block-image {
  margin-bottom: 0;
}
#sec_008 .swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: -5%;
  right: auto;
}
#sec_008 .swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: -5%;
  left: auto;
}

.swiper-pagination-bullet-active {
  background: #ffffff;
}

:root {
  --swiper-navigation-color: #000000;
  --swiper-pagination-color: #000000;
  --swiper-pagination-bullet-size: 12px;
  --swiper-pagination-bullet-width: 12px;
  --swiper-pagination-bullet-height: 12px;
}

:root {
  --swiper-navigation-color: #ffffff;
  --swiper-pagination-color: #ffffff;
}

#sec_008 .attension-box {
  margin-top: 1em;
  position: absolute;
  color: #fff;
  right: 0;
}

@media screen and (max-width: 769px) {
  #sec_008, #sec_008:before{
    background: #faf8f6;
    padding-bottom: 0;
  }
  #sec_008 .heading h2 {
    color: #000;
  }
  #sec_008 .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: 3%;
    right: auto;
  }
  #sec_008 .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: 3%;
    left: auto;
  }
  #sec_008 .attension-box {
    right: auto;
    color:#000;
  }
}


/************************************
** sec_009 
************************************/

#sec_009 {
    background: #faf8f6;
}
@media screen and (max-width: 769px) {
  #sec_009 {
    background: #faf8f6;
    margin-bottom: 0;
  }
  #sec_009 .wp-block-group__inner-container {
      padding-bottom: 0;
  }
}

/************************************
** sec_011 フロー
************************************/

.container_col5 {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.container_col5 .col5_item {
    width: 25%;
    text-align: center;
}

.col5_item .step {
    font-size: 1.5em;
    font-weight: 700;
    color: #997712;
}
.col5_item img {
    border-radius: 50%;
    width: 250px;
    height: 250px;
    object-fit: cover;
    margin-bottom: 1em;
}

.col5_text .title {
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 1em;
}

.col5_text .text {
    text-align: left;
}

@media screen and (max-width:767px) {
    .container_col5 {
      flex-wrap: wrap;
    }
    .container_col5 .col5_item {
      width: 100%;
      box-shadow: 0px 10px 15px rgba(0,0,0,0.1);
    }
    .col5_item .step {
      padding: 20px 0;
      font-size: 2.0em;
    }
    .col5_item .step p{
      margin-bottom:auto;
    }
    .col5_text .text {
      text-align: left;
      padding: 0 20px;
      font-size: 0.9em;
    }
}

/************************************
** sec_012 対応エリア
************************************/

/********************************************
** 対応地域 - 
*********************************************/
#content-bottom { margin: 0; }
#custom_html-2 { margin-bottom: 0; }

#sec_012{
    background: url(https://cleanlife110.com/wp-content/uploads/2021/12/22678498_s_02.jpeg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: #fff;
    margin-bottom: 0;
}
#sec_012::before {
  box-sizing: border-box;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
#sec_012 .heading {
  position:relative;
  color: #fff;
}

#sec_012 .area-wrap {
  position: relative;
  color: #fff;
  text-align: center;
}

#sec_012 .area-wrap p {margin-bottom: 1.2em;}

@media screen and (max-width:767px) {
	#sec_012 .area-wrap {
		text-align: left;
	}
}



.main {
  padding-bottom: 0!important;
}

.body .article {
  margin-bottom: 0;
}

.entry-content {
  margin-bottom: 0em;
}
