@charset "UTF-8";
/* CSS Document */
body {
    background-color: #f8f9fa;
}
/* main visual */
.main_visual img {
    width: 100%;
    height: 100%;
}

/* news container */
.news_main > .news_container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #fff;
    text-align: center;
    position: relative;
    z-index: 3;
    top: 100px;
}
/* news container */
.news_main_blog > .news_container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #fff;
    text-align: center;
    position: relative;
    z-index: 3;
    top: 100px;
}
@media screen and (min-width:769px) {
.news_main > .news_top_title {
    text-align: center;
    background-color: white;
    position: relative;
    z-index: 3;
    top: 100px;
    padding-top: 20px;
    font-size: 35px;
    font-weight: bold;
}
}
@media screen and (min-width:769px) {
.news_main_blog > .news_top_title {
    text-align: center;
    background-color: white;
    position: relative;
    z-index: 3;
    top: 100px;
    padding-top: 20px;
    font-size: 35px;
    font-weight: bold;
}
}

/* 背景を透過する設定 */
.news_main {
    background-image: url("../img/news_back.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    height: 900px;
}

.news_main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 900px;
    background-color: rgba(255, 255, 255, 0.5); /* 白背景で透過度50% */
    z-index: 2;
    pointer-events: none; /* クリックイベントを無効化 */
}

.news_main::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 900px;
    background-image: url("../img/news_back.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.5; /* 背景画像の透過設定 */
    z-index: 1;
}
/* 背景を透過する設定 */
.news_main_blog {
    background-image: url("../img/news_back.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    height: auto;
    padding-bottom: 300px;
}

.news_main_blog::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5); /* 白背景で透過度50% */
    z-index: 2;
    pointer-events: none; /* クリックイベントを無効化 */
}

.news_main_blog::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/news_back.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.5; /* 背景画像の透過設定 */
    z-index: 1;
}

.news_title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}
.news_list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}
.news_item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    border-bottom: 1px solid #ddd;
    font-size: 18px;
    text-align: center;
}
.news_item:last-child {
    border-bottom: none;
}
.news_date {
    font-weight: bold;
    margin-right: 10px;
    white-space: nowrap;
    color: #333;
    text-align: center;
}
.news_item:hover {
    background-color: #f0f0f0;
    transition: background-color 1.0s ease;
}
/* コンテンツをスクロール可能にする */
.news_container {
  max-height: 200px; /* 必要に応じて高さを調整 */
  overflow-y: auto;
  border: 1px solid #ddd; /* スクロール部分を強調 */
  padding-right: 10px;
}

.news_list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* スクロールバーのデザイン (オプション) */
.news_container::-webkit-scrollbar {
  width: 8px;
}

.news_container::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 4px;
}

.news_container::-webkit-scrollbar-track {
  background: #f8f8f8;
}
.section_header {
    top: 150px;
    z-index: 3;
    background-color: #FFA500;
    width: 50%;
    position: relative;
    margin: 0 auto;
    text-align: center;
    font-size: 35px;
    font-weight: bold;
    border-radius: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.blog_section {
  position: relative;
  padding: 60px 20px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  z-index: 3;
}

.blog_wrapper {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.blog_heading {
  font-size: 42px;
  text-align: center;
  margin-bottom: 50px;
  color: #333;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
}

.blog_items {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 15%;
}

.blog_card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 320px;
  text-decoration: none;
  color: #222;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
}

.blog_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog_icon {
  font-size: 24px;
  color: #888;
  margin-top: 20px;
}

.blog_card_inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
}

.blog_date {
  font-size: 14px;
  color: #888;
}

.blog_title {
  font-size: 18px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  color: #1a1a1a;
}

.blog_excerpt {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.no_blogs {
  text-align: center;
  font-size: 16px;
  color: #999;
  margin-top: 40px;
}

/* 背景を透過する設定 */
/* 片付けサービス */
.tidying_up_service_main {
    background-image: url("../img/tidying_up_service_back.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    height: 730px;
}

.tidying_up_service_main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 730px;
    background-color: rgba(255, 255, 255, 0.5); /* 白背景で透過度50% */
    z-index: 2;
    pointer-events: none; /* クリックイベントを無効化 */
}

.tidying_up_service_main::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 730px;
    background-image: url("../img/tidying_up_service_back.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.5; /* 背景画像の透過設定 */
    z-index: 1;
}
.tidying_container {
    background-color: #CDCDCD;
    width: 100%;
    position: absolute;
    z-index: 3;
}
.tidying_header {
    background-color: #338825;
    width: 30%;
    border-radius: 50px;
    color: white;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin-left: 90px;
    margin-top: 60px;
    box-shadow: 0px 6px 6px 0px #666;
}
.tidying_content {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 40px;
    margin-left: 150px;
    margin-top: 50px;
}
.tidying_button {
    background-color: #00D315;
    width: 80%;
    margin: 30px auto 40px auto;
    border-radius: 35px;
    color: white;
    font-weight: bold;
    text-align: center;
    font-size: 30px;
    padding: 10px 0;
    box-shadow: 0px 6px 6px 0px #666;
    cursor: pointer;
    transition: all 0.2s ease; /* アニメーションを追加 */
}
.tidying_button:hover {
    box-shadow: 0px 2px 2px 0px #666; /* 影を小さくする */
    transform: translateY(4px); /* ボタンを少し下げる */
}
/* 背景を透過する設定 */
/* 生前整理サービス */
.organizing_before_death_main {
    background-image: url("../img/organizing_before_death_back.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    height: 540px;
}
.organizing_before_death_main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 540px;
    background-color: rgba(255, 255, 255, 0.5); /* 白背景で透過度50% */
    z-index: 2;
    pointer-events: none; /* クリックイベントを無効化 */
}

.organizing_before_death_main::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 540px;
    background-image: url("../img/organizing_before_death_back.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.5; /* 背景画像の透過設定 */
    z-index: 1;
}
.organizing_container {
    background-color: #CDCDCD;
    width: 100%;
    position: absolute;
    z-index: 3;
}
.organizing_header {
    background-color: #FFC0CB;
    width: 30%;
    border-radius: 50px;
    color: black;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin-left: 90px;
    margin-top: 60px;
    box-shadow: 0px 6px 6px 0px #666;
}
.organizing_content {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 40px;
    margin-left: 150px;
    margin-top: 50px;
}
.organizing_button {
    background-color: #FFA6F1;
    width: 80%;
    margin: 30px auto 40px auto;
    border-radius: 35px;
    color: white;
    font-weight: bold;
    text-align: center;
    font-size: 30px;
    padding: 10px 0;
    box-shadow: 0px 6px 6px 0px #666;
    cursor: pointer;
    transition: all 0.2s ease; /* アニメーションを追加 */
}
.organizing_button:hover {
    box-shadow: 0px 2px 2px 0px #666; /* 影を小さくする */
    transform: translateY(4px); /* ボタンを少し下げる */
}
/* 背景を透過する設定 */
/* 孤独死後の片付けサービス */
.cleaning_up_after_a_lonely_death_main {
    background-image: url("../img/cleaning_up_after_a_lonely_death.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    height: 540px;
}

.cleaning_up_after_a_lonely_death_main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 540px;
    background-color: rgba(255, 255, 255, 0.5); /* 白背景で透過度50% */
    z-index: 2;
    pointer-events: none; /* クリックイベントを無効化 */
}

.cleaning_up_after_a_lonely_death_main::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 540px;
    background-image: url("../img/cleaning_up_after_a_lonely_death.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.5; /* 背景画像の透過設定 */
    z-index: 1;
}
.cleaning_container {
    background-color: #CDCDCD;
    width: 100%;
    position: absolute;
    z-index: 3;
}
.cleaning_header {
    background-color: #9E9B9C;
    width: 40%;
    border-radius: 50px;
    color: black;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin-left: 90px;
    margin-top: 60px;
    box-shadow: 0px 6px 6px 0px #666;
}
.cleaning_content {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 40px;
    margin-left: 150px;
    margin-top: 50px;
}
.cleaning_button {
    background-color: #6A6A6A;
    width: 80%;
    margin: 30px auto 40px auto;
    border-radius: 35px;
    color: white;
    font-weight: bold;
    text-align: center;
    font-size: 30px;
    padding: 10px 0;
    box-shadow: 0px 6px 6px 0px #666;
    cursor: pointer;
    transition: all 0.2s ease; /* アニメーションを追加 */
}
.cleaning_button:hover {
    box-shadow: 0px 2px 2px 0px #666; /* 影を小さくする */
    transform: translateY(4px); /* ボタンを少し下げる */
}
.footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 20px 15px;
    margin-top: -9%;
}
.footer a {
    text-decoration: none;
}
.footer_sub {
    background-color: #f8f9fa;
    color: #333;
    padding: 20px 15px;
    margin-top: 0%;
}

.footer__logo h2 {
    font-size: 24px;
    margin: 0 0 10px;
    color: #000;
    margin-top: 50px;
}

.footer__address {
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 20px;
    color: #555;
}

.footer__navi-heading {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer__navi {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__navi li {
    margin-bottom: 5px;
}

.footer__navi a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s;
}

.footer__navi a:hover {
    color: #0056b3;
}

/* レイアウト */
.lg-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.grid {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-top: 100px;
    margin-right: 10%;
    font-size: 18px;
}
.main_footer {
    margin-left: 10%;
}

.md-justify-between {
    justify-content: space-between;
}

.footer__address,
.footer__navi {
    margin: 0;
}

/* ボーダーと余白 */
hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 20px 0;
}

.copyright {
    font-size: 14px;
    text-align: center;
    margin: 0;
    color: #777;
}

.copyright a {
    text-decoration: none;
    color: #007bff;
}

.copyright a:hover {
    color: #0056b3;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .footer {
        margin-top: -17%;
    }
    .footer_sub {
        margin-top: -17%;
    }
    .footer__logo h2 {
        margin-top: 30px;
    }
    .lg-flex {
        flex-direction: column;
    }
    .footer__logo {
        margin-bottom: 20px;
    }
    .grid {
        grid-template-columns: 1fr;
        font-size: 14px;
        margin: 0 auto;
        margin-top: 30px;
    }
}/* レスポンシブ対応 */
@media (max-width: 450px) {
    .footer {
        margin-top: -25%;
    }
    .footer_sub {
        margin-top: -25%;
    }
    .footer__logo h2 {
        margin-top: 30px;
    }
    .lg-flex {
        flex-direction: column;
    }
    .footer__logo {
        margin-bottom: 20px;
    }
    .grid {
        grid-template-columns: 1fr;
        font-size: 14px;
        margin: 0 auto;
        margin-top: 30px;
    }
}
/* レスポンシブ対応 */
@media (min-width: 769px) and (max-width: 1027px) {
    .footer {
        margin-top: -17%;
    }
    .footer_sub {
        margin-top: -17%;
    }
    .footer__logo h2 {
        margin-top: 10%;
    }
    .lg-flex {
        flex-direction: column;
    }
    .footer__logo {
        margin-bottom: 20px;
    }
    .grid {
        display: flex;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 50px;
        margin-left: 50%;
        font-size: 18px;
    }
}
@media screen and (max-width: 768px) {
    .main_visual img {
        height: 100vh; /* モバイルでは高さを少し縮小 */
    }
    .news_sp {
        display: block;
    }
    .news_top_title {
        font-size: 18px;
    }
    .news_item {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px 10px;
        border-bottom: 1px solid #ddd;
        font-size: 14px;
        text-align: center;
    }
    /* 背景を透過する設定 */
    .news_main {
        background-image: url("../img/news_back.jpg");
        background-size: cover;
        background-position: center;
        position: relative;
        z-index: 1;
        height: 1400px;
    }
    .news_main::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1400px;
        background-color: rgba(255, 255, 255, 0.5); /* 白背景で透過度50% */
        z-index: 2;
        pointer-events: none; /* クリックイベントを無効化 */
    }
    .news_main::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1400px;
        background-image: url("../img/news_back.jpg");
        background-size: cover;
        background-position: center;
        opacity: 0.5; /* 背景画像の透過設定 */
        z-index: 1;
    }
     /* 背景を透過する設定 */
    .news_main_blog {
        background-image: url("../img/news_back.jpg");
        background-size: cover;
        background-position: center;
        position: relative;
        z-index: 1;
        height: 1200px;
    }
    .news_main_blog::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1200px;
        background-color: rgba(255, 255, 255, 0.5); /* 白背景で透過度50% */
        z-index: 2;
        pointer-events: none; /* クリックイベントを無効化 */
    }
    .news_main_blog::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1200px;
        background-image: url("../img/news_back.jpg");
        background-size: cover;
        background-position: center;
        opacity: 0.5; /* 背景画像の透過設定 */
        z-index: 1;
    }
    .tidying_up_service_main {
        background-image: url("../img/tidying_up_service_back.jpg");
        background-size: cover;
        background-position: center;
        position: relative;
        z-index: 1;
        height: 850px;
    }
    .tidying_up_service_main::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 850px;
        background-color: rgba(255, 255, 255, 0.5); /* 白背景で透過度50% */
        z-index: 2;
        pointer-events: none; /* クリックイベントを無効化 */
    }
    .tidying_up_service_main::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 850px;
        background-image: url("../img/tidying_up_service_back.jpg");
        background-size: cover;
        background-position: center;
        opacity: 0.5; /* 背景画像の透過設定 */
        z-index: 1;
    }
    .organizing_before_death_main {
        background-image: url("../img/organizing_before_death_back.jpg");
        background-size: cover;
        background-position: center;
        position: relative;
        z-index: 1;
        height: 550px;
    }
    .organizing_before_death_main::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 550px;
        background-color: rgba(255, 255, 255, 0.5); /* 白背景で透過度50% */
        z-index: 2;
        pointer-events: none; /* クリックイベントを無効化 */
    }
    .organizing_before_death_main::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 550px;
        background-image: url("../img/organizing_before_death_back.jpg");
        background-size: cover;
        background-position: center;
        opacity: 0.5; /* 背景画像の透過設定 */
        z-index: 1;
    }
    .cleaning_up_after_a_lonely_death_main {
        background-image: url("../img/cleaning_up_after_a_lonely_death.jpg");
        background-size: cover;
        background-position: center;
        position: relative;
        z-index: 1;
        height: 550px;
    }
    .cleaning_up_after_a_lonely_death_main::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 550px;
        background-color: rgba(255, 255, 255, 0.5); /* 白背景で透過度50% */
        z-index: 2;
        pointer-events: none; /* クリックイベントを無効化 */
    }
    .cleaning_up_after_a_lonely_death_main::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 550px;
        background-image: url("../img/cleaning_up_after_a_lonely_death.jpg");
        background-size: cover;
        background-position: center;
        opacity: 0.5; /* 背景画像の透過設定 */
        z-index: 1;
    }
    .news_container {
        max-height: 230px; /* 必要に応じて高さを調整 */
        overflow-y: auto;
        border: 1px solid #ddd; /* スクロール部分を強調 */
        padding-right: 10px;
    }
    .news_top_title {
        text-align: center;
        background-color: white;
        position: relative;
        z-index: 3;
        top: 100px;
        padding-top: 25px;
        font-size: 24px;
    }
    .section_header {
        top: 150px;
        z-index: 3;
        background-color: #FFA500;
        width: 70%;
        position: relative;
        margin: 0 auto;
        text-align: center;
        font-size: 24px;
        font-weight: bold;
        border-radius: 50px;
        padding-top: 20px;
        padding-bottom: 20px;
    }  
    .blog_items {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40%;
  }

  .blog_card {
    width: 300px;
  }

  .blog_heading {
    font-size: 36px;
    margin-bottom: 40px;
  }
    /* 片付けサービス　*/
    .tidying_container {
        background-color: #CDCDCD;
        width: 100%;
        position: absolute;
        z-index: 3;
    }
    .tidying_header {
        background-color: #338825;
        width: 70%;
        border-radius: 50px;
        color: white;
        padding-top: 20px;
        padding-bottom: 20px;
        text-align: center;
        font-size: 24px;
        font-weight: bold;
        margin: 0 auto;
        margin-top: 50px;
        box-shadow: 0px 6px 6px 0px #666;
    }
    .tidying_content {
        font-size: 18px;
        font-weight: bold;
        letter-spacing: 1px;
        line-height: 30px;
        width: 85%;
        margin: 0 auto;
    }
    .tidying_content p {
        margin-top: 50px;
    }
    .tidying_button {
        background-color: #00D315;
        width: 80%;
        margin: 0 auto;
        margin-top: 30px;
        border-radius: 35px;
        color: white;
        font-weight: bold;
        text-align: center;
        font-size: 20px;
        padding-top: 10px;
        padding-bottom: 10px;
        margin-bottom: 70px;
        box-shadow: 0px 6px 6px 0px #666;
    }
    .tidying_button a {
        text-decoration: none;
        color: white;
    }
    /* 生前整理サービス */
    .organizing_container {
        background-color: #CDCDCD;
        width: 100%;
        position: absolute;
        z-index: 3;
    }
    .organizing_header {
        background-color: #FFC0CB;
        width: 70%;
        border-radius: 50px;
        color: black;
        padding-top: 20px;
        padding-bottom: 20px;
        text-align: center;
        font-size: 24px;
        font-weight: bold;
        margin: 0 auto;
        margin-top: 30px;
        box-shadow: 0px 6px 6px 0px #666;
    }
    .organizing_content {
        font-size: 18px;
        font-weight: bold;
        letter-spacing: 1px;
        line-height: 30px;
        width: 85%;
        margin: 0 auto;
    }
    .organizing_content p {
        margin-top: 50px;
    }
    .organizing_button {
        background-color: #FFA6F1;
        width: 80%;
        margin: 0 auto;
        margin-top: 30px;
        border-radius: 35px;
        color: white;
        font-weight: bold;
        text-align: center;
        font-size: 20px;
        padding-top: 10px;
        padding-bottom: 10px;
        margin-bottom: 40px;
        box-shadow: 0px 6px 6px 0px #666;
    }
    .organizing_button a {
        text-decoration: none;
        color: white;
    }
    /* 孤独死後の片付けサービス */
    .cleaning_container {
        background-color: #CDCDCD;
        width: 100%;
        position: absolute;
        z-index: 3;
    }
    .cleaning_header {
        background-color: #9E9B9C;
        width: 80%;
        border-radius: 50px;
        color: black;
        padding-top: 20px;
        padding-bottom: 20px;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        margin: 0 auto;
        margin-top: 30px;
        box-shadow: 0px 6px 6px 0px #666;
    }
    .cleaning_content {
        font-size: 18px;
        font-weight: bold;
        letter-spacing: 1px;
        line-height: 30px;
        width: 85%;
        margin: 0 auto;
    }
    .cleaning_content p {
        margin-top: 50px;
    }
    .cleaning_button {
        background-color: #6A6A6A;
        width: 85%;
        margin: 0 auto;
        margin-top: 30px;
        border-radius: 35px;
        color: white;
        font-weight: bold;
        text-align: center;
        font-size: 16px;
        padding-top: 10px;
        padding-bottom: 10px;
        margin-bottom: 40px;
        box-shadow: 0px 6px 6px 0px #666;
    }
    .cleaning_button a {
        text-decoration: none;
        color: white;
    }
}