@charset "utf-8";

/*
共通設定
*/
*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}


ul,
ol {
  list-style: none;
}

p {
  line-height: 28px;
  font-size: 18px;
}

h2 {
    font-size: 45px;
}

h3 {
    font-size: 35px;
}

h4 {
    font-size: 25px;
}

h5 {
    font-size: 22px;
}

body{
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
  color: #222;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  background-color:#ffffff;
}


a {
  color: inherit;
  text-decoration: none;
  font-size: 18px;
}

img {
    max-width: 100%;
}


.wrap {
    overflow: hidden;
}

h2 span {
    color: #F8CB00;
}

/*
アニメーション
*/

/*
メインビジュアルテキストのアニメーション
*/
.p1,
.p2,
.p3 {
    animation-name:bgextendAnimeBase;
    animation-duration:1s;
    animation-fill-mode:forwards;
    position: relative;
    overflow: hidden;/*　はみ出た色要素を隠す　*/
    opacity:0;
}

@keyframes bgextendAnimeBase{
    from {
      opacity:0;
    }
  
    to {
      opacity:1;  
  }
}

.bgappear{
    animation-name:bgextendAnimeSecond;
    animation-duration:1s;
    animation-delay: 0.6s;
    animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes bgextendAnimeSecond{
    0% {
    opacity: 0;
    }
    100% {
    opacity: 1;
  }
}

.bgUDextend::before{
    animation-name:bgUDextendAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #F8CB00;/*伸びる背景色の設定*/
}
  
@keyframes bgUDextendAnime{
    0% {
      transform-origin:top;
      transform:scaleY(0);
    }
    50% {
      transform-origin:top;
      transform:scaleY(1);
    }
    50.001% {
      transform-origin:bottom;
    }
    100% {
      transform-origin:bottom;
      transform:scaleY(0);
    }
}

/*
メインビジュアルの左右から画像アニメーション
*/
.img-l {
    animation-name:fadeLeftAnime;
    animation-delay: 1.0s;
    animation-duration:1.0s;
    animation-fill-mode:forwards;
    opacity:0;
}
    
@keyframes fadeLeftAnime{
      from {
        opacity: 0;
      transform: translateX(-400px);
      }
    
      to {
        opacity: 1;
      transform: translateX(0);
      }
}

.img-r {
    animation-name:faderightAnime;
    animation-delay: 1.0s;
    animation-duration:1.0s;
    animation-fill-mode:forwards;
    opacity:0;
}
    
@keyframes faderightAnime{
      from {
        opacity: 0;
      transform: translateX(400px);
      }
    
      to {
        opacity: 1;
      transform: translateX(0);
      }
}

/*
ふわっと表示
*/
.scroll {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
}
.scroll.is-active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 1s;
}

/*
一個ずつふわっと表示
*/
.scr-target {
    opacity: 0;
    transform: translate3d(0, 35px, 0);
}
.scr-target.is-active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 1s;
}

/*
トップページ
*/

#pageTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
}
  
  
#pageTop a {
    display: block;
    z-index: 999;
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: #F8CB00;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}
  
#pageTop a:hover {
    text-decoration: none;
    opacity: 0.7;
}
  

/*
<header class="header">
*/
.header {
    background-color: rgba(255,255,255,0.7);
    width: 100%;
    height: 120px;
    position: fixed;
    z-index: 100;
}



.header-logo {
    width: 100%;
    height: 85px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-r {
    display: flex;
    align-items: center;    
}

.header-r .tel {
    padding-right: 100px;
    text-align: center;
    line-height: 28px;
}

.tel p {
    color: #F8CB00;
    font-size: 35px;
}

.header-con {
    display: table; 
}

.header-con a {
   background-color: #F8CB00;
   color: #fff;
   font-weight: 700;
   display: inline-block;
   margin-top: 0;
   height: 85px;
   display: table-cell; 
    vertical-align: middle;
    padding-left: 20px;
    padding-right: 20px;
}

.header-con a:hover {
    opacity: 0.6;
}

.header-l {
    padding-left: 50px;
    line-height: 28px;
    text-align: center;
}

.header-l small {
    display: inline-block;
    margin-bottom: 5px;
}

.header-l h1 {
    font-size: 45px;
}

.header-l span {
    color: #F8CB00;
}

.tel-icon {
    display: flex;
    align-items: center;
}

.tel-icon i {
    margin-right: 15px;
    font-size: 25px;
}

.header-site-menu {
    height: 35px;
    text-align: center;
}


.site-menu ul {
    max-width: 600px;
    display: flex;
    margin: 0 auto;
    padding-top: 5px;
}

.site-menu li {
    padding: 7px;
    border-radius: 20px;
    width: 25%;
    margin: 0 auto;
    
}

.site-menu li a {
    display: block;
    font-size: 20px;
    position: relative;
    padding: 1px 5px;
}

.site-menu a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    opacity: 0;
    width: 100%;
    height: 100%;
    background-color: #F8CB00;
    transition: 0.3s;
    z-index: -1;
}


.site-menu li a:hover::after {
    opacity: 1;
}


/*
<div class="main-visual">
*/
.main-visual {
    height: calc(120vh - 130px);
    margin-top: 130px;
    width: 100%;
    background-image: linear-gradient(90deg, rgba(251, 224, 102, 0.8) 25%, rgba(255, 236, 83, 0.8) 83%);
    display: flex;
    justify-content: space-around;
    position: relative;
}

.img-l {
    margin-top: 20px;
    width: 70%;
}

.img-l img {
    width: 70%;
    border-radius: 0 10% 10% 0;
}

.img-r {
    margin-top: 100px;
    width: 75%;
    text-align: right;
}

.img-r img {
    width: 75%;
    border-radius: 10% 0 0 10%;
}

.main-txt {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: absolute;
    top:5%;
    left: 38%;
}

.main-txt p {
    display: block;
    font-size: 27px;
    line-height: 60px;
    font-weight: 800;
}

.main-tosou {
    font-size: 65px;
    color: #F8CB00;
    margin-bottom: 7px;
}

.main-benri {
    font-size: 65px;
    color: #4DA74B;
    margin-top: 7px;
}

.p1,
.p2,
.p3 {
    margin: 0 10px;
    box-shadow: 7px 7px #F0F0F0;
}

.p1 {   
    background-color: #fff;
    display: inline-block;
    padding: 5px 0;
}

.p2 {
    background-color: #fff;
    padding: 5px 10px;
}

.p3 {
    background-color: #fff;
    display: inline-block;
    padding: 5px 0;
}


/*
<div class="contact">
*/
.contact {
    width: 100%;
    text-align: center;
    background-image: url(/img/IMG_3655.PNG);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;  
    position: relative;
    z-index: 0;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: brightness(40%);
    /* 最背面へ */
    z-index: -1;
}

.contact-txt {
    padding: 100px 0;
    text-align: center;
    line-height: 50px;
}

.contact-txt p,
.contact-txt a {
    z-index: 2;
    color: #fff;
    text-align: center;
}

.contact-txt p {
    font-size: 35px;
    line-height: 45px;
    text-shadow: 0 1px 1px  #666;
}

.contact-txt span {
    color: #F8CB00;
}

.contact-txt a {
    background-color: #E60012;
    width: 30%;
    border-radius: 10px;
    padding: 10px 30px;
    display: inline-block;
    margin-top: 10px;
    font-size: 30px;
    transition: 0.2s;
    border-bottom: 7px solid #9A0413;
}

.contact-txt a:hover {
    transform: scale(1.08);
}


/*
<section class="promise">
*/
.promise {
    background-color: #fafafa;
    padding: 60px 0;
}

.promise-txt {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.promise-txt h2 {
    font-size: 35px;
}

.promise-txt h2 span {
    font-size: 55px;
}

.promise-in{
    margin-top: 100px;
    display: grid;
    grid-template-columns: repeat(auto-fit, 300px);
    grid-template-rows: 300px;
    justify-content: space-around;
} 

.promise-intxt {
    position: relative;
    display: inline-block;
    border-radius: 50%;
    border: solid 3px #F8CB00;
    background-color: #fff;
    cursor: pointer;
    overflow: hidden;
}

.promise-intxt p {
    position: absolute;
    display: inline-block;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width :100%;
    text-align:center;
    font-size: 30px;
    line-height: 40px;
}

.promise-intxt .small {
    color: #222;
    display: inline-block;
    font-size: 16px;
    background-color: #F3F47F;
    border-radius: 20px;
    padding: 5px 8px;
    margin-top: 20px;
}

.hidden {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F3F47F;
    opacity: 0;
    transition: 0.6s ease;
    z-index: 1;
}

.hidden p {
    padding:40px;
    font-size: 22px;
}

.promise-intxt:hover .hidden {
    opacity: 1;
    top: 0;
}


.promise-intxt span {
    color: #F8CB00;
    font-size: 35px;
}

/*
<section id="busi-info">
*/
#busi-info {
    padding: 120px 0;
    width: 90%;
    margin: 0 auto;
}

.info-txt {
    width: 70%;
    margin: 0 auto;
}

.info-txt h2 {
    text-align: center;
}

.info-txt h2 span {
    color: #F8CB00;
}

.info-txt h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: #F8CB00;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;  
}

.info-txt p {
    margin-top: 60px;
    text-align: center;
}

.area {
    width: 70%;
    background-color: #F3F47F;
    border-radius: 20px;
    margin: 80px auto 0 auto;
    padding: 30px 0 30px 60px;
}


.area-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.area-title p {
    font-size: 22px;
}

/*
<div class="tosou">
*/
.tosou {
    margin: 120px auto 0 auto;
    width: 100%;
    background-color: #f1f1f1;
    border-radius: 60px;
    position: relative;
    padding-bottom: 70px;
}

.tosou-in {
    width: 90%;
    margin: 0 auto;
}

.tosou-in h3 {
    position: absolute;
    top: -15px;
    left: 5%;
}

.tosou-in h3 span {
    color: #F8CB00;
}

.tosou-txt {
    padding-top: 90px;
}

.tosou-under {
    font-size: 30px;
    font-weight: 800;
    background: linear-gradient(transparent 60%, rgba(248,203,0,0.7) 60%);
    border-radius: 80% 50% 60% 5%/80% 75% 15% 75%;
    display: inline-block;
    margin-bottom: 30px;
}

.tosou-bold {
    font-size: 22px;
}

.example {
    background-color: #fff;
    border-radius: 30px;
    margin-top: 60px;
    padding: 50px;
}

.example h4 {
    display: inline-block;
    background-color: #F3F47F;
    border-radius: 10px;
    padding: 10px;
}

.exa-con {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.example-l {
    width: 45%;
    margin-top: 70px;
}

.example-l img {
    margin-bottom: 50px;
}

.example-r {
    width: 45%;
}

.example-r img {
    margin-bottom: 50px;
}

.tosou-price {
    background-color: #fff;
    margin-top: 100px;
    border-radius: 30px;
    padding: 50px;
}

.tosou-price h4 {
    display: inline-block;
    background-color: #F8CB00;
    border-radius: 10px;
    padding: 10px 50px;
}

.price-in {
    display: flex;
    align-items: center;
    margin-top: 80px;
    width: 100%;
}

.price-l {
    width: 50%;
}

.price-l dt {
    margin-bottom: 25px;
    border: solid 2px #F8CB00;
    display: inline-block;
    padding: 10px;
    border-radius: 10px;
    width: 200px;
    text-align: center;
    font-size: 22px;
}

.price-l dd {
    margin-bottom: 60px;
    margin-left: 150px;
    font-size: 30px;
    color: #000;
    text-align: center;
}

.price-l dd::after {
    content: '';
    display: block;
    width: 250px;
    height: 2px;
    background-color: #F8CB00;
    margin: 10px auto 0 auto;
}

.price-r {
    width: 50%;
    position: relative;
}

.price-r p {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
    font-weight: 900;
    text-shadow: 1px 1px 1px #333;
    transform: rotate(10deg);
}

/*
<div class="benri">
*/
.benri { 
    margin: 120px auto 0 auto;
    width: 100%;
    background-color: #f1f1f1;
    border-radius: 60px;
    position: relative;
    padding-bottom: 70px;
}

.benri-in {
    width: 90%;
    margin: 0 auto;
}

.benri h3 {
    position: absolute;
    top: -15px;
    left: 5%;
}

.benri h3 span {
    color: #4DA74B;
}

.benri-txt {
    padding-top: 90px;
}

.benri-txt span {
    font-size: 25px;
    font-weight: 900;
}

.service {
    background-color: #fff;
    width: 90%;
    border-radius: 30px;
    margin: 60px auto 0 auto;
    padding: 50px;
}

.service h4 {
    display: inline-block;
    background-color: #4DA74B;
    color: #fff;
    border-radius: 10px;
    padding: 10px;
}

.service ul {
    margin: 80px auto 0 auto;
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, 400px);
    column-gap: 60px;
    row-gap: 60px; 
}

.service ul li {
    display: flex;
    align-items: center;
    border: solid 3px #4DA74B;
    border-radius: 10px;
    padding: 5px;
}

.service ul li p {
    padding-left: 50px;
    font-size: 23px;
}

.benri-price {
    background-color: #fff;
    margin-top: 100px;
    border-radius: 30px;
    padding: 50px;
}

.benri-price h4 {
    display: inline-block;
    background-color: #4DA74B;
    border-radius: 10px;
    padding: 10px 50px;
    color: #fff;
}

.price-detail {
    width: 100%;
    text-align: center;
    margin-top: 80px;
}


.cleaning {
    border: solid 3px #4DA74B;
    width: 90%;
    border-radius: 30px;
    margin: 60px auto 0 auto;
    padding: 50px;
}

.cleaning h5 {
    background: linear-gradient(transparent 60%, rgba(77,167,75,0.7) 60%);
    border-radius: 80% 50% 60% 5%/80% 75% 15% 75%;
    display: inline-block;
    font-size: 25px;
}

.cleaning-in {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 80px;
    width: 100%;
}

.cleaning-l {
    width: 50%;
    padding-right: 5%;
}

.cleaning-r {
    width: 50%;
    padding-left: 5%;
    border-left: solid 4px #f1f1f1;
}

.cleaning-l dd,
.cleaning-r dd {
    margin-bottom: 60px;
    margin-left: 80px;
    font-size: 30px;
    color: #000;
    text-align: center;
}

.cleaning-l dt,
.cleaning-r dt {
    margin-bottom: 25px;
    border: solid 2px #4DA74B;
    display: inline-block;
    padding: 10px;
    border-radius: 10px;
    width: 200px;
    text-align: center;
    font-size: 22px;
}

.cleaning-l dd::after {
    content: '';
    display: block;
    width: 250px;
    height: 2px;
    background-color: #4DA74B;
    margin: 10px auto 0 auto;
}

.cleaning-r dd::after {
    content: '';
    display: block;
    width: 250px;
    height: 2px;
    background-color: #4DA74B;
    margin: 10px auto 0 auto;
}


/*
<section id="company">
*/
#company {
    width: 100%;
    background-color: #fafafa;
    padding-bottom: 120px;
}

#company h2 {
    text-align: center;
    padding-top: 120px;
}

#company h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: #F8CB00;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;  
}

.com-list {
    margin: 60px auto 0 auto;
    width: 70%;
}

.com-list dl {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    border: 2px solid #555;
    margin: 0 auto;
}

.com-list dt {
    background-color: #F3F47F;
    font-size: 20px;
    color: #000;
    width: 30%;
    padding: 15px;
    box-sizing: border-box;
    border-right:  1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
}

.com-list dt:last-child,
.com-list dd:last-child {
    border-bottom: none;
}

.com-list dd {
    width: 70%;
    padding: 15px 30px;
    background-color: #fff;
    box-sizing: border-box;
    border-bottom: 1px solid #f1f1f1;
}

.map {
    margin: 60px auto 0 auto;
    width: 70%;
    text-align: center;
}

.map iframe {
    width: 100%;
}

/*
<section id="question">
*/
#question {
    background-color: #f1f1f1;
    padding-bottom: 120px;
}

#question h2 {
    padding-top: 120px;
    text-align: center;
}

#question h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: #F8CB00;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;  
}

.question-in ul {
    width: 90%;
    padding: 0 50px;
    margin: 0 auto;
}

.question-in li {
    margin-top: 70px;
    padding: 25px 50px;
    background-color: #fff;
    border-radius: 20px;
}

.question-in li:first-child {
    margin-top: 100px;
}

.question-in .A {
    margin-top: 50px;
    display: flex;
}

.question-in .Q {
    display: flex;
}

.Q span,
.A span {
    margin-right: 20px;
    font-size: 28px;
}

.Q span {
    color: #67a8dd;
}

.A span {
    color: #ff4040;
}

/*
<footer class="footer">
*/
.footer {
    width: 100%;
    padding: 10px 0;
}

.footer-in {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.footer-l {
    display: flex;
    align-items: center;
}

.footer-l img {
    width: 15%;
}

.footer-l p {
    font-size: 45px;
}

.footer-l span {
    color: #F8CB00;
}

.copy {
    font-size: 13px;
    text-align: center;
}


/*
タブレット
*/
@media (max-width: 1024px) {
    .main-visual {
        height: calc(100vh - 130px);
    }

    .main-txt {
        top: 20%;
        left: 31%;
        z-index: 1;
    }

    .main-txt p {
        font-size: 50px;
    }

    .p1, .p2, .p3 {
        margin: 0 20px;
        padding: 5px;
        background-color: rgba(255,255,255,0.9);
    }

    .p1 {
        margin-top: -20%;
        letter-spacing: 0.20em;
    }

    .p3 {
        white-space: nowrap;
        margin-top: 50%;
        letter-spacing: 0.20em;
    }

    .p2 span {
        font-size: 110px;
        line-height: 110px;
        display: inline-block;
    }

    .promise-intxt .small {
        display: none;
    }

    .hidden {
        display: none;
    }

    
    .main-tosou {
        font-size: 90px;
    }

    .main-benri {
        font-size: 90px;
    }

    .img-l,
    .img-r {
        width: 100%;
        height: 65%;
    }

    .img-l img,
    .img-r img {
        width: 100%;
        height: 65%;
    }

    .img-r {
        margin-top: 60%;
    }

    .contact-txt a {
        width: 50%;
    }

    .area {
        width: 90%;
    }

    .tosou,
    .benri {
        border-radius: 40px;
    }



    .price-l dd {
        margin-left: 80px;
    }

    .price-r p {
        right: -10%;
    }

    .service ul {
        grid-template-columns: repeat(auto-fit, 480px);
        row-gap: 50px;
    }


    .cleaning {
        width: 100%;
    }

    .cleaning-l dd, 
    .cleaning-r dd {
        margin-left: 20px;
    }

    .cleaning-r dd::after,
    .cleaning-l dd::after {
        width: 220px;
    }

    .com-list dl {
        width: 100%;
    }

    .footer-in {
        padding: 20px 0;
    }

    .footer-r {
        width: 50%;
        text-align: center;
    }

}

/*
ipad Air
*/
@media (max-width: 899px) {

    .header-l {
        padding-left: 10px;
    }

    .header-l h1 {
        font-size: 40px;
    }

    .header-site-menu ul {
        padding-top: 5px;
    }

    .main-txt {
        top: 25%;
        left: 25%;
    }

    .main-txt p {
        font-size: 40px;
    }

    .main-benri,
    .main-tosou {
        font-size: 65px;
    }


    .p1 {
        margin-top: -20%;
        letter-spacing: 0.20em;
        line-height: 25px;
    }

    .p3 {
        white-space: nowrap;
        margin-top: 42%;
        letter-spacing: 0.20em;
        line-height: 25px;
    }

    .p2 span {
        font-size: 90px;
        line-height: 90px;
    }


    .p3 {
        margin-top: 30%;
    }

    .promise-in {
        display: block;
        width: 100%;
        height: 100%;
    }

    .promise-intxt {
        width: 450px;
        height: 450px;
        margin-bottom: 40px;
    }

    .info-txt  {
        width: 100%;
    }

    .example {
        padding: 30px;
    }

    .tosou-price {
        padding: 30px;
    }

    .price-l dd {
        margin-left: 40px;
    }

    .benri-price {
        padding: 30px;
    }


    .cleaning {
        padding: 30px;
    }

    .footer-in {
        padding: 20px;
    }

    .footer-r p {
        white-space: nowrap;
    }


}



/*
スマートフォン
*/
@media (max-width: 599px) {

    .header-l {
        padding-left: 5%;
    }

    .header-l h1 {
        font-size: 35px;
    }

    .header-l small {
        font-size: 15px;
    }

    .header-r .tel {
        display: none;
    }

    .site-menu ul {
        justify-content: space-around;
    }
    
    .site-menu li {
        width: auto;
    }

    .main-txt {
        top: 25%;
        left: 5%;
    }

    .main-txt p {
        font-size: 25px;
    }

    .main-benri,
    .main-tosou {
        font-size: 55px;
    }

    .p1, .p2, .p3 {
        margin: 0 20px;
        background-color: rgba(255,255,255,0.9);
        box-shadow: 5px 5px #F0F0F0;
    }

    .p1 {
        margin-top: -20%;
        letter-spacing: 0.20em;
        line-height: 25px;
    }

    .p3 {
        white-space: nowrap;
        margin-top: 42%;
        letter-spacing: 0.20em;
        line-height: 25px;
    }

    .p2 span {
        font-size: 55px;
        line-height: 55px;
    }
    
    .img-r {
        margin-top: 90%;
    }

    .contact-txt {
        width: 95%;
        margin: 0 auto;
        padding: 50px 0;
    }

    .contact-txt p {
        font-size: 25px;
    }

    .contact-txt a {
        width: 90%;
    }

    .promise-txt h2 {
        font-size: 30px;
    }

    .promise-in {
        display: block;
        width: 100%;
        height: 100%;
        margin-top: 60px;
    }

    .promise-intxt {
        width: 300px;
        height: 300px;
        margin-bottom: 40px;
    }

    .info-txt  {
        width: 100%;
    }

    .area {
        width: 100%;
        padding: 30px 0;
    }

    .area-title {
        padding-left: 10px;
    }

    .area p {
        width: 90%;
        margin: 0 auto;
    }

    .tosou {
        border-radius: 30px;
    }

    .tosou-under {
        font-size: 22px;
    }

    .tosou-bold {
        display: inline-block;
        margin-bottom: 10px;
    }

    .example {
        padding: 30px 15px 15px 15px;
        border-radius: 15px;
    }

    .exa-con {
        display: block;
    }

    .example-l,
    .example-r {
        width: auto;
    }

    .tosou-price {
        padding: 30px 15px;
        border-radius: 15px;
    }

    .price-in {
        display: block;
    }

    .price-l,
    .price-r {
        width: auto;
    }

    .price-l dd {
        margin-left: 20px;
    }

    .benri {
        border-radius: 30px;
    }

    .service {
        border-radius: 15px;
        width: 100%;
        padding: 30px 15px 15px 15px;
    }

    .service ul {
        display: block;
    }

    .service ul li {
        margin-bottom: 35px;
    }

    .service ul li p {
        padding-left: 14px;
    }

    .benri-price {
        border-radius: 15px;
        padding: 30px 15px;
    }


    .cleaning {
        padding: 15px;
        border-radius: 15px;
    }

    .cleaning-in {
        display: block;
    }

    .cleaning-l,
    .cleaning-r {
        width: auto;
    }

    .cleaning-l {
        padding-right: 0px;
    }

    .cleaning-r {
        padding-left: 0px;
        border-left: none;
    }

    .com-list {
        width: 95%;
    }

    .com-list dt {
        width: 35%;
        padding: 15px 10px 15px 15px;
    }

    .com-list dd {
        width: 65%;
        padding: 15px 15px 15px 30px;
        line-height: 22px;
    }

    .map {
        width: 95%;
    }

    .question-in ul {
        padding: 0px;
    }

    .question-in li {
        padding: 25px;
    }

    .footer-l p {
        font-size: 35px;
    }

    .footer-l img {
        width: 20%;
    }

    .footer-in {
        flex-direction: column;
        justify-content: flex-start;
    }

    .footer-r p {
        display: none;
    }

}
