@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html, body {
  height: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

.fade_in.fade_in_bottom {
  opacity: 0;
  transform: translateY(20px);
}
.fade_in.fade_in_bottom.scroll_in {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s ease-in-out;
}
.fade_in.fade_in_right {
  opacity: 0;
  transform: translateX(20px);
}
.fade_in.fade_in_right.scroll_in {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s ease-in-out;
}

.fa-solid.fa-feather {
  color: palevioletred;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

.wrapper {
  padding: 0 5%;
}
@media screen and (min-width: 768px) {
  .wrapper {
    padding: 0 10%;
  }
}

.kasou {
  top: 0;
}

.section {
  margin-top: 3vh;
  text-align: center;
}

h2,
h3,
p,
li {
  text-align: left;
  line-height: 1.5em;
}

h2 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #615f5f;
  padding: 1em 0;
  text-align: center;
}

h3 {
  font-weight: bold;
}

.swiper {
  width: 100%;
}
.swiper .swiper-pagination-bullet {
  background-color: pink;
}
.swiper .swiper-slide {
  display: flex;
  align-items: center;
}
.swiper .swiper-slide .text {
  margin: 0 auto;
}
.swiper .swiper-slide .text P {
  width: 60%;
  display: block;
  margin: 0 auto;
}

.swiper-button-next,
.swiper-button-prev {
  --swiper-navigation-color: pink;
}

.swiper-button-next {
  right: -30px;
}

.pagination {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.pagination ul {
  display: flex;
}
.pagination ul li {
  margin: 0 5px;
}
.pagination ul li a,
.pagination ul li span {
  display: inline-block;
  padding: 8px;
  text-align: center;
  text-decoration: none;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.pagination ul li a:hover,
.pagination ul li span:hover {
  background-color: #eee;
}
.pagination ul li a.current,
.pagination ul li span.current {
  background-color: pink;
  color: #fff;
}
.pagination ul li a.ellipsis,
.pagination ul li span.ellipsis {
  font-weight: bold;
}

.post-pagination {
  margin: 0 auto;
  display: block;
}

.prev-post a span,
.next-post a span {
  background-color: pink;
  display: inline-block;
  padding: 3px 5px;
  border-radius: 3px;
  color: #fff;
  margin-bottom: 10px;
}

.wrapper_kasou .privacypolicy,
.wrapper_kasou .termsofservice,
.wrapper_kasou .tokushoho {
  margin-bottom: 30px;
}

header {
  position: fixed;
  background-color: pink;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  width: 100%;
  z-index: 10;
  top: 0;
}
@media screen and (min-width: 1200px) {
  header {
    height: 8vh;
  }
}
header h1 {
  color: white;
  font-family: "Kosugi Maru", sans-serif;
}
@media screen and (min-width: 1200px) {
  header h1 {
    width: 20%;
    font-size: 1.5rem;
  }
}
header .burger {
  width: 30px;
  height: 20px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 1200px) {
  header .burger {
    display: none;
  }
}
header .burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: white;
  transition: all 0.5s;
}
header .burger.open {
  justify-content: center;
}
header .burger.open span:nth-child(1) {
  transform: rotate(45deg);
}
header .burger.open span:nth-child(2) {
  display: none;
}
header .burger.open span:nth-child(3) {
  transform: translateY(-2px) rotate(-45deg);
}
header .burger_nav {
  margin-top: 60px;
  height: calc(100vh - 60px);
  width: 100%;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: papayawhip;
}
@media screen and (min-width: 1200px) {
  header .burger_nav {
    background-color: pink;
    height: 5vh;
    width: 100%;
    margin: 0;
    position: static;
  }
}
header .burger_nav ul {
  height: 100%;
  width: 100%;
  padding: 10vh 0 0 0;
}
@media screen and (min-width: 1200px) {
  header .burger_nav ul {
    display: flex;
    padding: 0;
    justify-content: right;
    align-items: center;
  }
}
header .burger_nav ul li {
  line-height: 3em;
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
  color: palevioletred;
  transition: transform 0.5s;
}
@media screen and (min-width: 1200px) {
  header .burger_nav ul li {
    font-size: 1.2rem;
    text-align: right;
    padding-right: 30px;
    color: white;
    cursor: pointer;
  }
  header .burger_nav ul li:hover {
    transform: translateY(5px);
  }
  header .burger_nav ul li:last-child {
    padding: 0;
  }
}
header .burger_nav ul li:nth-child(6) a {
  background-color: palevioletred;
  color: white;
  padding: 8px;
  border-radius: 5px;
}
header .burger_nav.open {
  left: 0;
  transition: left 0.5s;
}

.top {
  height: 95vh;
  background-image: url(/wp-content/themes/家事代行PHP/img/top_pc.jpg);
  background-position: right;
  margin-top: 5vh;
  position: relative;
}
.top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* 黒の透明度を設定 */
  pointer-events: none;
  /* オーバーレイをクリック可能にしない */
}
.top .top_massege {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 100%;
}
.top .top_massege p {
  font-size: 2.5rem;
  color: #fff;
  width: 100%;
  text-align: center;
  color: antiquewhite;
  display: block;
  margin: 0;
}
.top .top_massege .top_title {
  font-family: "Kosugi Maru", sans-serif;
}
.top .top_massege .top_dis {
  font-size: 1rem;
  margin: 0 auto;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.top .top_massege .top_dis.show {
  opacity: 1;
  transform: translateY(0);
}
@keyframes arrowAnimation {
  0% {
    transform: translateY(0) rotate(45deg);
  }
  100% {
    transform: translateY(5px) rotate(45deg);
  }
}
.top .arrow {
  width: 30px;
  position: absolute;
  height: 30px;
  border-bottom: 1px solid white;
  border-right: 1px solid white;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  animation: arrowAnimation 1s infinite;
}
@media screen and (min-width: 1200px) {
  .top {
    height: 92vh;
    margin-top: 8vh;
    background-position: center;
  }
}

.section1 h2 {
  padding-bottom: 0;
}
.section1 ul {
  margin-top: 30px;
}
@media screen and (min-width: 1200px) {
  .section1 ul {
    display: flex;
    padding: 0 -20px;
  }
}
.section1 ul li {
  background-color: bisque;
  margin: 20px auto;
  padding-top: 12px;
  border-radius: 100px;
  color: palevioletred;
  position: relative;
  text-align: center;
  height: 80px;
}
@media screen and (min-width: 768px) {
  .section1 ul li {
    width: 60%;
    margin: 20px auto;
    height: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .section1 ul li {
    width: 33.3%;
    height: 150px;
    margin: 20px;
  }
}
@media screen and (min-width: 768px) {
  .section1 ul li {
    padding-top: 15px;
  }
}
.section1 ul li span {
  display: block;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .section1 ul li span {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .section1 ul li span {
    margin-top: 20px;
  }
}

.section2 h2 {
  margin-bottom: 20px;
  padding-top: 50px;
}
@media screen and (min-width: 768px) {
  .section2 .sec2_wap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
}
.section2 .sec2_wap .sec2_dis {
  height: 200px;
  width: 100%;
  padding-top: 30px;
  margin-bottom: 50px;
  border-radius: 5px;
  color: #fff;
  position: relative;
  border-radius: 8px;
}
.section2 .sec2_wap .sec2_dis::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.5);
  /* 黒の透明度を設定 */
}
@media screen and (min-width: 768px) {
  .section2 .sec2_wap .sec2_dis {
    width: calc(50% - 10px);
    margin: 5px 5px 36px;
  }
}
@media screen and (min-width: 1200px) {
  .section2 .sec2_wap .sec2_dis {
    width: calc(33% - 20px);
    margin: 5px 5px 36px;
    height: 250px;
  }
}
.section2 .sec2_wap .sec2_dis h3 {
  text-align: center;
  position: absolute;
  z-index: 1;
  background-color: pink;
  width: 50%;
  height: 60px;
  top: -1.8em;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  border-radius: 50%;
  align-items: center;
  display: flex;
  justify-content: center;
}
.section2 .sec2_wap .sec2_dis p {
  padding: 30px 20px 0;
  position: relative;
  z-index: 1;
}
.section2 .sec2_wap .dis1 {
  background-image: url(/wp-content/themes/家事代行PHP/img/cook.jpg);
}
.section2 .sec2_wap .dis2 {
  background-image: url(/wp-content/themes/家事代行PHP/img/clean.jpg);
  background-position: right;
}
.section2 .sec2_wap .dis3 {
  background-image: url(/wp-content/themes/家事代行PHP/img/seiton.jpg);
}
.section2 .sec2_wap .dis4 {
  background-image: url(/wp-content/themes/家事代行PHP/img/sentaku.jpg);
}
.section2 .sec2_wap .dis5 {
  background-image: url(/wp-content/themes/家事代行PHP/img/baby.jpg);
}
.section2 .sec2_wap .dis6 {
  background-image: url(/wp-content/themes/家事代行PHP/img/sonota.jpg);
}

.section3 {
  margin-bottom: 70px;
}
.section3 .sec3_wap {
  width: 100%;
}
.section3 .sec3_wap table {
  border-collapse: collapse;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .section3 .sec3_wap table {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .section3 .sec3_wap table {
    width: 60%;
    margin: 0 auto;
  }
}
.section3 .sec3_wap table .wid {
  width: 50%;
}
.section3 .sec3_wap table th,
.section3 .sec3_wap table td {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
  text-align: center;
}
.section3 .sec3_wap table th {
  background-color: pink;
  color: white;
}

.section4 {
  margin: 50px 0;
}
.section4 button {
  background-color: palevioletred;
  border: none;
  color: white;
  padding: 15px 35px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1.2rem;
}

.wrapper_kasou {
  padding: 0 5%;
  margin-top: 10vh;
}
.wrapper_kasou h2 {
  font-size: 1.5rem;
  margin: 30px 0;
}
@media screen and (min-width: 768px) {
  .wrapper_kasou {
    padding: 0 10%;
  }
}
@media screen and (min-width: 1200px) {
  .wrapper_kasou {
    margin-top: 15vh;
  }
}
.wrapper_kasou .section1_kasou .flow {
  margin: 0 auto 60px;
  width: 100%;
  padding: 5%;
  height: 180px;
  background-color: rgb(248, 223, 192);
  position: relative;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .wrapper_kasou .section1_kasou .flow {
    width: 70%;
    height: 200px;
  }
}
@media screen and (min-width: 1200px) {
  .wrapper_kasou .section1_kasou .flow {
    width: 60%;
    height: 200px;
  }
}
.wrapper_kasou .section1_kasou .flow:nth-child(2)::before {
  content: "ステップ1";
  position: absolute;
  top: -25px;
  background-color: pink;
  padding: 20px;
  border-radius: 50%;
  color: white;
  font-size: 0.7em;
}
@media screen and (min-width: 1200px) {
  .wrapper_kasou .section1_kasou .flow:nth-child(2)::before {
    font-size: 1em;
  }
}
.wrapper_kasou .section1_kasou .flow:nth-child(3)::before {
  content: "ステップ2";
  position: absolute;
  top: -25px;
  background-color: pink;
  padding: 20px;
  border-radius: 50%;
  color: white;
  font-size: 0.7em;
}
@media screen and (min-width: 1200px) {
  .wrapper_kasou .section1_kasou .flow:nth-child(3)::before {
    font-size: 1em;
  }
}
.wrapper_kasou .section1_kasou .flow:nth-child(4)::before {
  content: "ステップ3";
  position: absolute;
  top: -25px;
  background-color: pink;
  padding: 20px;
  border-radius: 50%;
  color: white;
  font-size: 0.7em;
}
@media screen and (min-width: 1200px) {
  .wrapper_kasou .section1_kasou .flow:nth-child(4)::before {
    font-size: 1em;
  }
}
.wrapper_kasou .section1_kasou .flow:nth-child(5)::before {
  content: "ステップ4";
  position: absolute;
  top: -25px;
  background-color: pink;
  padding: 20px;
  border-radius: 50%;
  color: white;
  font-size: 0.7em;
}
@media screen and (min-width: 1200px) {
  .wrapper_kasou .section1_kasou .flow:nth-child(5)::before {
    font-size: 1em;
  }
}
.wrapper_kasou .section1_kasou .flow:nth-child(6)::before {
  content: "ステップ5";
  position: absolute;
  top: -25px;
  background-color: pink;
  padding: 20px;
  border-radius: 50%;
  color: white;
  font-size: 0.7em;
}
@media screen and (min-width: 1200px) {
  .wrapper_kasou .section1_kasou .flow:nth-child(6)::before {
    font-size: 1em;
  }
}
.wrapper_kasou .section1_kasou .flow h3 {
  text-align: center;
  margin-bottom: 10px;
}
.wrapper_kasou .section1_kasou .flow::after {
  content: "";
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 30px 0 30px;
  border-color: #f8dfc0 transparent transparent transparent;
}
.wrapper_kasou .section1_kasou .flow:last-child::after {
  content: "";
  border-width: 0px;
}

.news .news_post {
  border-bottom: 1px solid #CCC;
  margin: 5px 0;
  padding: 5px 0;
  position: relative;
  cursor: pointer;
  transition: transform 0.5s;
}
.news .news_post::after {
  content: "▶";
  color: pink;
  font-size: 3px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.news .news_post:hover {
  transform: translateY(5px);
}
@media screen and (min-width: 1200px) {
  .news .news_post {
    width: 60%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1200px) {
  .blog {
    width: 60%;
    margin: 0 auto;
  }
}
.blog article {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}
.blog article .blog_cp {
  width: 100px;
  height: 100px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .blog article .blog_cp {
    width: 200px;
    height: 200px;
  }
}
.blog article .blog_cp img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog article .dis {
  width: 60%;
  font-size: 0.7em;
  height: 100px;
}
@media screen and (min-width: 768px) {
  .blog article .dis {
    font-size: 1em;
  }
}
.blog article .dis .title {
  font-weight: bold;
}
.blog article .dis .text {
  display: none;
}
@media screen and (min-width: 768px) {
  .blog article .dis .text {
    display: block;
  }
}

.faq-container {
  width: 100%;
  margin: auto;
}
@media screen and (min-width: 1200px) {
  .faq-container {
    width: 60%;
  }
}
.faq-container .faq-question {
  background-color: palevioletred;
  color: white;
  padding: 10px;
  margin-bottom: 5px;
  position: relative;
  transition: margin-bottom 0.5s;
  cursor: pointer;
}
.faq-container .faq-question::after {
  content: "";
  width: 10px;
  height: 10px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  position: absolute;
  right: 10px;
  top: 40%;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease-in-out;
}
.faq-container .faq-question.open {
  margin-bottom: 0;
}
.faq-container .faq-question.open::after {
  transform: rotate(225deg);
}
.faq-container .faq-answer {
  display: none;
  padding: 10px;
  border: 0 1px 1px solid #ccc;
  margin-bottom: 5px;
}

.wrapper_about {
  margin-top: 10vh;
}
.wrapper_about .about {
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .wrapper_about .about {
    display: flex;
    width: 60%;
  }
}
.wrapper_about .about .about_dis {
  margin: 30px;
}
@media screen and (min-width: 1200px) {
  .wrapper_about .about .about_dis {
    width: 50%;
  }
}
.wrapper_about .about .about_img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .wrapper_about .about .about_img {
    width: 50%;
  }
}
.wrapper_about .about .about_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact {
  margin: 0 auto;
}
.contact .recruit {
  text-align: center;
  margin-bottom: 30px;
}
.contact .tel {
  margin-bottom: 40px;
}
.contact h3 {
  text-align: center;
}
.contact .telp {
  text-align: center;
  background-color: pink;
  display: block;
  margin: 0 auto;
  padding: 20px 30px;
  border-radius: 20px;
  width: 200px;
  color: #fff;
  margin-top: 10px;
}
.contact .telp span {
  display: inline-block;
  padding-left: 10px;
}
@media screen and (min-width: 1200px) {
  .contact {
    width: 60%;
  }
}
.contact form {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  margin: 0 auto 20px;
}
.contact form h3 {
  margin-bottom: 20px;
}
.contact form table {
  width: 100%;
}
.contact form table tr {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 20px;
}
.contact form table tr th {
  font-weight: bold;
  width: 100%;
  text-align: left;
  margin-bottom: 10px;
}
.contact form table tr td {
  margin-bottom: 5px;
  width: 100%;
}
.contact form table tr td input,
.contact form table tr td select {
  width: 100%;
  height: 100%;
  border: 1px solid #CCC;
  width: 100%;
  height: 30px;
  text-align: left;
  color: #000000;
}
.contact form table tr td textarea {
  width: 100%;
  height: 100%;
  border: 1px solid #CCC;
  width: 100%;
  height: auto;
  text-align: left;
  color: #000000;
}
.contact form .contact_sub {
  background-color: palevioletred;
  color: #fff;
  padding: 10px 40px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: transform 0.5s;
  display: block;
  margin: 0 auto;
}
.contact form button:hover {
  transform: translateY(5px);
}

@media screen and (min-width: 1200px) {
  .tokushoho {
    width: 60%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1200px) {
  .wrapper_kasou .blog_wrap {
    display: flex;
    gap: 40px;
  }
}
.wrapper_kasou .blog_wrap .single_blog {
  margin-bottom: 50px;
}
.wrapper_kasou .blog_wrap .single_blog p {
  line-height: 2;
}
@media screen and (min-width: 1200px) {
  .wrapper_kasou .blog_wrap .single_blog {
    width: 70%;
  }
}
.wrapper_kasou .blog_wrap .single_blog .date {
  text-align: right;
}
.wrapper_kasou .blog_wrap .single_blog h1 {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.wrapper_kasou .blog_wrap .single_blog .single_blog_img {
  margin-bottom: 20px;
}
.wrapper_kasou .blog_wrap .single_blog .single_blog_img img {
  width: 100%;
}
.wrapper_kasou .blog_wrap .single_blog h2 {
  text-align: left;
  background-color: pink;
  padding: 2px;
  width: 100%;
  color: white;
  font-size: 1.4rem;
  margin: 10px 0;
}
.wrapper_kasou .blog_wrap .single_blog h3 {
  text-align: left;
  background-color: white;
  padding: 0;
  width: 100%;
  color: black;
  font-size: 1.2rem;
  border: 1px solid #CCC;
  border-left: 5px solid pink;
  padding: 2px;
  margin: 10px 0;
}
.wrapper_kasou .blog_wrap .single_blog h4 {
  text-align: left;
  background-color: white;
  padding: 0;
  width: 100%;
  color: black;
  font-weight: bold;
  font-size: 1.1rem;
  border: 1px solid #CCC;
  border-bottom: 2px solid pink;
  padding: 2px;
  margin: 10px 0;
}
.wrapper_kasou .blog_wrap .single_blog h5 {
  text-align: left;
  background-color: white;
  padding: 0;
  width: 100%;
  color: black;
  font-weight: bold;
  font-size: 1rem;
  border: 1px dashed #CCC;
  border-bottom: 2px dashed pink;
  padding: 2px;
  margin: 10px 0;
}
.wrapper_kasou .blog_wrap .single_blog .post-pagination {
  margin-top: 50px;
  margin-left: 20px;
}
@media screen and (min-width: 1200px) {
  .wrapper_kasou .blog_wrap .side {
    width: 40%;
  }
}
.wrapper_kasou .blog_wrap .side h2 {
  background: palevioletred;
  color: white;
  padding: 3px 0;
  font-size: 1.3rem;
  font-weight: normal;
  margin: 5px 0;
}
@media screen and (min-width: 1200px) {
  .wrapper_kasou .blog_wrap .side h2 {
    margin-top: 0;
  }
}
.wrapper_kasou .blog_wrap .side article {
  border: 1px solid #CCC;
  display: flex;
  gap: 5px;
  height: 100px;
  margin: 5px 0;
  overflow: hidden;
}
.wrapper_kasou .blog_wrap .side article .img {
  width: 40%;
}
.wrapper_kasou .blog_wrap .side article .dis {
  width: 60%;
}
.wrapper_kasou .blog_wrap .side article .dis .title {
  font-weight: bold;
  display: inline-block;
  width: 100%;
}
.wrapper_kasou .blog_wrap .side article .dis .dis {
  font-size: 0.7rem;
  width: 100%;
}

.wrapper_kasou .news_wrap {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .wrapper_kasou .news_wrap {
    width: 60%;
    margin: 0 auto;
  }
}
.wrapper_kasou .news_wrap .single_news {
  margin-bottom: 50px;
  width: 100%;
}
.wrapper_kasou .news_wrap .single_news p {
  width: 100%;
  display: block;
}
.wrapper_kasou .news_wrap .single_news .date {
  text-align: left;
  font-size: 0.7em;
  margin-bottom: 18px;
}
.wrapper_kasou .news_wrap .single_news h1 {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.wrapper_kasou .news_wrap .single_news .single_blog_img {
  margin-bottom: 20px;
}
.wrapper_kasou .news_wrap .single_news .single_blog_img img {
  width: 100%;
}
.wrapper_kasou .news_wrap .single_news h2 {
  text-align: left;
  background-color: pink;
  padding: 2px;
  width: 100%;
  color: white;
  font-size: 1.4rem;
  margin: 10px 0;
}
.wrapper_kasou .news_wrap .single_news h3 {
  text-align: left;
  background-color: white;
  padding: 0;
  width: 100%;
  color: black;
  font-size: 1.2rem;
  border: 1px solid #CCC;
  border-left: 5px solid pink;
  padding: 2px;
  margin: 10px 0;
}
.wrapper_kasou .news_wrap .single_news h4 {
  text-align: left;
  background-color: white;
  padding: 0;
  width: 100%;
  color: black;
  font-weight: bold;
  font-size: 1.1rem;
  border: 1px solid #CCC;
  border-bottom: 2px solid pink;
  padding: 2px;
  margin: 10px 0;
}
.wrapper_kasou .news_wrap .single_news h5 {
  text-align: left;
  background-color: white;
  padding: 0;
  width: 100%;
  color: black;
  font-weight: bold;
  font-size: 1rem;
  border: 1px dashed #CCC;
  border-bottom: 2px dashed pink;
  padding: 2px;
  margin: 10px 0;
}

footer {
  background-color: pink;
  color: white;
  font-size: 0.8rem;
  padding: 20px;
}
footer p {
  text-align: center;
}
footer .copy {
  text-align: center;
  padding-top: 20px;
}/*# sourceMappingURL=style.css.map */