/*
Theme Name: cloverheart
*/
@charset "UTF-8";
*,
*:before,
*:after {
  box-sizing: inherit;
}
html {
  font-size: 62.5%;
  box-sizing: border-box;
  margin-top: 0!important;
}
body {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "メイリオ";
  font-weight: 400;
  font-style: normal;
  color: #333;
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}
body.open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease-in-out;
}
a:hover {
  opacity: 0.8;
}
h1 {
  font-size: 3rem;
  line-height: 1.5;
  margin: 0;
}
h2 {
  font-size: 2.4rem;
  line-height: 1.4;
  margin: 0;
}
h3 {
  font-size: 1.7rem;
  margin: 0;
}
p {
  margin: 0;
}
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
input, button, textarea {
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-weight: normal;
}
button {
  text-decoration: none;
  -moz-opacity: 0.8;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
button:hover {
  cursor: pointer;
}
/*---------- header ----------*/

/* Add responsive styling for header */
@media (max-width: 1200px) {
}

@media (max-width: 768px) {
}

/*---------- main ----------*/
main {
  display: block;
  width: 100%;
  overflow-x: hidden;
}

/*---------- footer ----------*/

/*==========================================================================
■ PC版のみ
==========================================================================*/
@media screen and (min-width: 769px) {
.pcDisNon {
  display: none;
}
/*---------- header ----------*/
/*---------- main ----------*/
/*---------- footer ----------*/
}
/*==========================================================================
■ Tab版
==========================================================================*/
@media screen and (min-width: 769px) and (max-width: 1024px) {
/*---------- header ----------*/
/*---------- main ----------*/
/*---------- footer ----------*/
}
/*==========================================================================
■ SP版
==========================================================================*/
@media screen and (max-width: 768.98px) {
.spDisNon {
  display: none;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
/*---------- header ----------*/
/*---------- main ----------*/
/*---------- footer ----------*/
}
/*---------- レイアウト微調整 ----------*/
/*---------- headter ----------*/
@media screen and (max-width: 1100px) {
}
/*---------- footer ----------*/
@media screen and (max-width: 1024px) {
}
@media (max-width: 900px) {
}
@media (max-width: 600px) {
}
.spDisOnly {
  display: none;
}

@media (max-width: 500px) {
.spDisOnly {
  display: block;
}
.spDisNon {
  display: none;
}
}

/*================================================
  共通パーツ CSS
================================================*/

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Section Common Styles */
section {
  padding: 100px 0;
}

.section_header {
  margin-bottom: 60px;
}

.section_title {
  font-size: 7rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 15px;
  text-align: left;
  letter-spacing: 0.05em;
}

.section_subtitle {
  font-size: 1.4rem;
  text-align: left;
  margin-bottom: 0;
  color: #333;
  font-weight: bold;
}

/* ===========================
   Services Section
   =========================== */
.services-section {
  padding: 100px 0;
  position: relative;
}

.services-section .section_title {
  margin: 0 auto 15px;
}

.services_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.service_box {
  overflow: hidden;
  transition: all 0.3s ease;
}

.service_box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.service_image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #E5E5E5;
}

.service_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service_box:hover .service_image img {
  transform: scale(1.05);
}

.service_title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #333;
}

.service_description {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.8;
}

.service_link {
  font-size: 1.4rem;
  color: #333;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0 0;
  padding: 0 10px 10px;
}

.service_link::before,
.service_link::after{
	position: absolute;
	top: -10px;
	bottom: 0;
	right: 10px;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.service_link::before{
	box-sizing: border-box;
	width: 20px;
	height: 20px;
	border: 2px solid #FF007F;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.service_link::after{
  right: 17px;
  width: 6px;
  height: 6px;
	border-top: 2px solid #FF007F;
	border-right: 2px solid #FF007F;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.services_grid .service_box:nth-of-type(2) .service_link::before{ 
	border: 2px solid #6BA6FF;
}
.services_grid .service_box:nth-of-type(2) .service_link::after{ 
	border-top: 2px solid #6BA6FF;
	border-right: 2px solid #6BA6FF;
}

.services_grid .service_box:nth-of-type(3) .service_link::before{ 
	border: 2px solid #B8E848;
}
.services_grid .service_box:nth-of-type(3) .service_link::after{ 
	border-top: 2px solid #B8E848;
	border-right: 2px solid #B8E848;
}

.service_link:hover {
  color: #FFD93D;
}

.services-section .section_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.services-section .section_header_subtext {
  width: 50%;
  text-align: left;
}

.services-section::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 260px;
  height: 260px;
  background-image: url(./assets/images/bk-light.png);
  background-size: contain;
  z-index: -1;
  background-repeat: no-repeat;
  opacity: .1;
}


/* ===========================
   Voice Section
   =========================== */
.voice-section {
  padding: 100px 0;
  position: relative;
}

.voice-section::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 5%;
  width: 260px;
  height: 260px;
  background-image: url(./assets/images/bk-light.png);
  background-size: contain;
  z-index: -1;
  background-repeat: no-repeat;
  opacity: .1;
}

.voice-section .container {
  max-width: 100%;
  padding: 0 0 0 40px;
}

.voice_grid {
  overflow: hidden;
}

.voice_grid .swiper {
  overflow: visible;
  padding-bottom: 70px;
}

.voice_grid .swiper-controller {
  position: absolute;
  width: 120px;
  right: 15%;
  bottom: 25px;
}

.voice_grid .swiper-button-prev:after, 
.voice_grid .swiper-rtl .swiper-button-next:after,
.voice_grid .swiper-button-next:after, 
.voice_grid .swiper-rtl .swiper-button-prev:after {
  font-size: 20px;
  color: #F8E40E;
}

.voice_grid .swiper-button-next,
.voice_grid  .swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
  border: solid 2px #F8E40E;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.voice_grid .swiper-button-prev, 
.voice_grid .swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
  border: solid 2px #F8E40E;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.voice_slide_body {
  background-color: #FAFAF8;
  padding: 10px;
}

.voice_slide_text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 5px;
}

.voice_slide_name {
  font-size: 2rem;
  font-weight: bold;
}

.voice_slide_link {
  display: block;
  text-align: right;
  margin: 0 0 0 auto;
  color: #F8E40E;
  border-bottom: solid 1px #F8E40E;
  width: fit-content;
}

.voice_slide_link:hover {
  opacity: 0.3;
}

.voice_slide_img img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}


/* ===========================
   Reason Section
   =========================== */
.reason-section {
  background: #FFFCF2;
  padding: 100px 0;
  z-index: 1;
  position: relative;
}

.reason-section::before {
  content: '';
  position: absolute;
  top: -3%;
  width: 100%;
  height: 100px;
  background-image: url(./assets/images/wave-yellow.png);
  background-size: contain;
}

.reason-section .section_title {
  margin: 0 auto 15px;
}

.reason_list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.reason_item {
  display: flex;
  align-items: center;
  gap: 60px;
}

.reason_item:nth-child(even) {
  flex-direction: row-reverse;
}

.reason_image {
  flex: 1;
  position: relative;
  height: 250px;
  background: #E8E8E8;
  border-radius: 5px;
  overflow: hidden;
}

.reason_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reason_number {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 8rem;
  font-weight: 900;
  color: #FFFF66;
  line-height: 1;
}

.reason_sharp {
  font-size: 5rem;
  margin-right: 5px;
}

.reason_content {
  flex: 1;
  padding: 0 20px;
  text-align: left;
}

.reason_title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
  line-height: 1.4;
  position: relative;
}

.reason_title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 60px;
  height: 2px;
  background: #333;
}

.reason_description {
  font-size: 1.6rem;
  line-height: 1.9;
  color: #666;
}

/* ===========================
   Blog Section
   =========================== */

.blog-section {
  background-image: url(./assets/images/bk-blog.png);
  background-size: contain; 
}

.blog-section .section_header {
  text-align: center;
  margin-bottom: 40px;
}

.blog-section .section_title {
  margin: 0 auto 15px;
}

.blog_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.blog_header .section_title,
.blog_header .section_subtitle {
  margin-bottom: 0;
}

.blog_more {
  font-size: 1.5rem;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding-right: 25px;
  margin-top: 30px;
  display: inline-block;
  border-bottom: solid 1px #333;
}

.blog_more::after {
  content: '→';
  position: absolute;
  right: 0;
  transition: right 0.3s ease;
}

.blog_more:hover {
  color: #FFD93D;
  border-bottom: solid 1px #FFD93D;
}

.blog_more:hover::after {
  right: -5px;
}

.blog .container {
  text-align: center;
}

.blog_list {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  text-align: left;
}

.blog_item {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 25px 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  border-bottom: solid 1px #e3e3e3;
}

.blog_item:hover {
  transform: translateX(8px);
  border-left-color: #FFD93D;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog_date {
  font-size: 1.4rem;
  min-width: 110px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 1.2;
}

.blog_date_year {
  text-align: center;
  width: 100%;  
}

.blog_date_md {
  font-size: 2rem;
  font-weight: bold;
}

.blog_title {
  flex: 1;
  font-size: 1.6rem;
  color: #333;
  font-weight: 500;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog_item:hover .blog_title {
  color: #000;
}

.blog_categories {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.blog_category {
  padding: 6px 16px;
  background: #F5F5F5;
  border-radius: 20px;
  font-size: 1.2rem;
  color: #666;
  font-weight: 500;
}

.blog_header_subtext {
  text-align: right;
}

/* ===========================
   Official SNS Section
   =========================== */
.official-sns-section {
  background: #FFFF66;
  padding: 50px 0;
}

.sns_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.sns_content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.sns_title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.sns_items {
  display: flex;
  gap: 40px;
  align-items: center;
}

.sns_item {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: transform 0.3s ease;
  color: #333;
}

.sns_item:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

.sns_icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sns_instagram .sns_icon {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}

.sns_text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sns_label {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
}

.sns_handle {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
}

/* ===========================
   Contact Section
   =========================== */
.contact-section {
  padding: 100px 0;
}

.contact-section .section_header {
  text-align: center;
}

.contact-section .section_title {
  text-align: center;
  margin: 0 auto 15px;
}

.contact-section .section_subtitle {
  text-align: center;
}

.contact_form {
  max-width: 850px;
  margin: 0 auto;
  background: #fff;
  padding: 0 50px;
}

/* Contact Form 7 カスタムスタイル */
.contact_form .wpcf7-form,
.contact_form .basic_contact_form {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.contact_form .wpcf7-form-control-wrap {
  display: block;
  width: 550px;
  margin-left: 30px;
  text-align: left;
}

.contact_form label {
  display: flex;
  justify-content: flex-end;
  font-size: 1.5rem;
  font-weight: 600;
  color: #E8C502;
  padding: 30px 0;
  border-bottom: solid 1px #E8C502;
}
label > span:first-of-type {
  margin: 0 auto 0 0;
}
.contact_form label:nth-child(4),
.contact_form label:nth-child(5) {
  border-bottom: none;
}

.contact_form label:nth-child(4) {
  padding: 30px 0 12px 0;
}

.contact_form label:nth-child(6) {
  padding: 8px 0 30px 0;
}

.contact_form label:nth-child(4) input {
  margin-left: 30px;
  width: 150px;
}

.postaria .wpcf7-form-control-wrap {
  position: relative;
}

.postaria .wpcf7-form-control-wrap::before {
  content: "〒";
  font-size: 1.3em;
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.postaria input {
  padding-left: 20px;
  width: 150px;
}

.contact_form label:nth-child(5) {
  padding: 0;
}
.contact_form label:last-of-type {
  border-bottom: none;
}
.none {
  display: none;
}
.contact_form .required {
  color: #E74C3C;
  margin-left: 5px;
}

.contact_form input[type="text"],
.contact_form input[type="email"],
.contact_form input[type="tel"],
.contact_form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 4px;
  font-size: 1.6rem;
  background: #F0F0F0;
  transition: all 0.3s ease;
}

.contact_form input[type="text"]:focus,
.contact_form input[type="email"]:focus,
.contact_form input[type="tel"]:focus,
.contact_form textarea:focus {
  border-color: #FFD93D;
  outline: none;
  background: #fff3c5a2;
  box-shadow: 0 0 0 3px rgba(255, 217, 61, 0.1);
}

.contact_form input.error,
.contact_form textarea.error {
  border-color: #E74C3C;
}

.contact_form textarea {
  min-height: 180px;
  resize: vertical;
  font-family: inherit;
}

.contact_form .wpcf7-not-valid-tip {
  color: #E74C3C;
  font-size: 1.3rem;
  margin-top: 8px;
  display: block;
}

.contact_form .wpcf7-response-output {
  padding: 18px;
  margin-top: 25px;
  border-radius: 8px;
  font-size: 1.5rem;
}

.contact_form .redaria {
  margin-left: 12px;
  padding: 4px 8px;
  background: #FF0000;
  color: #fff;
  font-size: 0.8em;
  border-radius: 3px;
}

.contact_form .wpcf7-validation-errors {
  background: #FFE5E5;
  border: 2px solid #E74C3C;
  color: #E74C3C;
}

.contact_form .wpcf7-mail-sent-ok {
  background: #D4EDDA;
  border: 2px solid #28A745;
  color: #155724;
}

.contact_form input[type="submit"] {
  padding: 18px 60px;
  background: #E8C502;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: center;
  width: 100%;
}

.contact_form input[type="submit"]:hover {
  background: #FFC700;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 217, 61, 0.4);
}

.contact_form .label_title {
  width: 300px;
  text-align: left;
  color: #E8C502;
}

.contact_form .must_icon {
  margin: 0 0 0 5px;
  font-size: 12px;
  color: #fff;
  background-color: #f00;
  padding: 3px 5px;
  border-radius: 3px;
}

.contact_form select {
  padding: 10px;
}

/* Basic Contact Form */
.basic_contact_form p {
  margin: 0 0 25px;
}

.basic_contact_form label {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #E8C502;
}

.basic_contact_form input[type="text"],
.basic_contact_form input[type="email"],
.basic_contact_form input[type="tel"],
.basic_contact_form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid #E5E5E5;
  border-radius: 8px;
  font-size: 1.6rem;
  background: #FAFAFA;
  transition: all 0.3s ease;
  font-family: inherit;
}

.basic_contact_form input[type="text"]:focus,
.basic_contact_form input[type="email"]:focus,
.basic_contact_form input[type="tel"]:focus,
.basic_contact_form textarea:focus {
  border-color: #FFD93D;
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 217, 61, 0.1);
}

.basic_contact_form textarea {
  min-height: 180px;
  resize: vertical;
}

.basic_contact_form input[type="submit"] {
  padding: 18px 60px;
  background: #FFD93D;
  color: #333;
  font-size: 1.8rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: center;
  box-shadow: 0 4px 15px rgba(255, 217, 61, 0.3);
}

.basic_contact_form input[type="submit"]:hover {
  background: #FFC700;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 217, 61, 0.4);
}


/* sidebar-link */
.sidebar-section {
    display: none;
}

@media screen and (min-width: 768px) {
  .sidebar-section{
    display:block;
    position:fixed;
    top:0;
    right:0;
    z-index:3;
    opacity:1;
    transform:translateX(0);
    transition:opacity .5s ease,transform .5s ease;
    will-change:opacity,transform;
    padding: 100px 0 0;
  }
  .sidebar-section.is-hidden{
    opacity:0;
    transform:translateX(8px);
    pointer-events:none;
  }
  .sidebar-section .sidebar_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    border: solid 1px #424242;
    border-radius: 5px;
    position: relative;
    right: -4px;
  }
  .sidebar-section .sidebar_btn img {
    margin-right: 5px;
  }
  .sidebar-section .btn_phone {
    background-color: #fff;
    margin-bottom: 10px;
  }
  .sidebar-section .btn_mail {
    background-color: #424242;
    color: #fff;
  }
}





/* ===========================
   共通パーツ レスポンシブ対応
   =========================== */
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  section {
    padding: 80px 0;
  }

  .section_title {
    font-size: 4.2rem;
  }

  .reason_item {
    gap: 40px;
  }

  .sns_content {
    gap: 40px;
  }
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  section {
    padding: 60px 0;
  }

  .section_title {
    font-size: 3.6rem;
  }

  /* Services */
  .services-section .section_header {
    display: block;
  }

  .services-section .section_header_text {
    margin-bottom: 30px;
  }

  .services-section .section_header_subtext {
    width: 100%;
  }

  .services_grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* Voice */
  .voice-section .container {
    padding: 0 20px;
  }

  .voice_grid .swiper-controller {
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }

  /* Reason */
  .reason-section::before {
    background-size: cover;
  }

  .reason_list {
    gap: 60px;
  }

  .reason_item,
  .reason_item:nth-child(even) {
    flex-direction: column;
    gap: 30px;
  }

  .reason_image {
    width: 100%;
    height: 280px;
  }

  .reason_number {
    font-size: 6rem;
  }

  .reason_content {
    padding: 0;
  }

  .reason_title {
    font-size: 2.2rem;
  }

  /* Blog */
  .blog_header {
    display: block;
  }
  .blog_item {
    gap: 10px;
    padding: 15px 10px;
  }

  .blog_date {
    min-width: auto;
    width: min-content;
  }

  /* Official SNS */
  .sns_content {
    flex-direction: column;
    gap: 30px;
  }

  .sns_items {
    flex-direction: column;
    gap: 25px;
  }

  /* Contact */
  .contact_form .label_title {
    width: 100%;
    display: block;
  }
  .contact_form label {
    display: block;
    padding: 15px 0 0;
  }
  .contact_form {
    padding: 0 25px;
  }
}

@media screen and (max-width: 480px) {
  .contact_form label {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: #E8C502;
    padding: 30px 0;
    border-bottom: solid 1px #E8C502;
  }

  .contact_form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    margin-top: 12px;
    margin-left: 0;
    text-align: left;
  }
.contact_form label:nth-child(5) input {
  margin: -30px 0;
}

  .section_title {
    font-size: 3rem;
  }

  .sns_title {
    font-size: 1.8rem;
  }

  .sns_icon {
    width: 45px;
    height: 45px;
  }

  .sns_label {
    font-size: 1.3rem;
  }

  .sns_handle {
    font-size: 1.2rem;
  }

  .reason_number {
    font-size: 5rem;
  }

  .contact_form {
    padding: 0;
  }

  .blog_date_md {
    font-size: 1.6rem;
  }
}
