@charset "utf-8";
@import url("root.css");

/***************************************
-------------- BLOG --------------
***************************************/
#blog {
  padding: 100px 0;
}
@media ( max-width : 599px ) {
  #blog {
    padding: 50px 0;
  }
}

.txt_wrap {
  background: #fff;
  padding: 15px;
}
@media (min-width: 600px) {
  .txt_wrap {
    min-height: 160px;
  }
}

#blog .subtitle {
  display: block;
  text-align: center;
  margin: 0 auto 30px;
  font-size: 1.6rem;
}

.blog_box {
  width: 100%;
  margin: 0 auto var(--sp-space);
  border-top: 5px solid var(--base-color01);
  padding-top: 20px;
}


.blog_box dl dd h3 {
  font-size: 1.5rem !important;
  color: var(--base-color01);
}

@media screen and (max-width: 599px) {
  .info_box {
    margin-top: 0;
    padding: var(--sp-space);
  }

  .info_box dl dt {
    width: 100%;
  }

  .blog_box dl dd h3 {
    font-size: 1.5rem !important;
    color: var(--base-color01);
  }
}

#blog_detail .btn a {
  display: block;
  width: min(50%, 300px);
  margin: auto;
  padding: 15px 0;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  background: var(--base-color01);
  text-align: center;
  border-radius: 10px;
}

.blog_box > a {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
  border-bottom: dashed 1px var(--base-color01);
}

@media (max-width: 599px) {
  .blog_box > a {
    padding: 10px 0;
  }
}
@media (max-width: 599px) {
  .blog_box .column_block {
    width: 49%;
    margin: 0;
  }
}

.blog_box .column_wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 599px) {
  .blog_box .column_wrap {
    flex-direction: column;
  }
}
.blog_box .column_wrap + .column_wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  border-top: solid 2px #f5f0ff;
}

.blog_box .thumb {
  width: calc(120 / 1160 * 100%);
}

@media (max-width: 599px) {
  .blog_box .thumb {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: 150px;
  }

  .blog_box .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    width: 100% !important;
    height: 100% !important;
  }
}

.blog_box .text {
  width: calc(1010 / 1160 * 100%);
}

@media (max-width: 599px) {
  .blog_box .text {
    width: 100%;
  }
}

.blog_box .text p {
  font-size: 1.8rem;
  margin: 0;
}

.blog_box .date {
  color: #100169;
  margin: 0;
}

.blog_box .date::before {
  display: inline-block;
  content: "";
  margin-right: 5px;
  background: url(../img/cal_navy.svg) no-repeat center / contain;
  width: 20px;
  height: 17px;
  margin-bottom: -2px;
}

.detail_img_wrap {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.detail_img_wrap .detail_img_box {
  width: 50%;
  text-align: center;
}

.detail_img_wrap .detail_img_box img{
  margin: 0 auto;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* =======================
  PC
======================== */
@media screen and (min-width: 1200px) {
}

/* =======================
  TABLET
======================== */
@media screen and (max-width: 1199px) {
}

/* =======================
  SP
======================== */
@media screen and (max-width: 599px) {
}



.detail_text img {
  width: min(100%, 540px)!important;
  height: auto!important;
  margin-right: auto;
}


