@charset "utf-8";
/********************************************************
   CSS information
   style info :  LP用お問い合わせへ　ボタン
********************************************************/

/* その他の関連コラム
--------------------------------------------------------*/
.related_column {
	overflow: hidden;
	padding: 80px 11.5%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.related_column .section_title > h2 {
  text-align: center;
  font-weight: bold;
  font-size: 32px;
  line-height: 1;
  color: #012E83;
}

.related_column .section_title > hr {
  margin: 0 auto;
  margin-top: 20px;
  border-top: 3px solid #012E83;
  width: 40px;
}

.related_column .cardlist {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px 16px;

  width: 100%;
  margin-top: 40px;
}

.related_column .cardlist a {
  text-decoration: none;
  display: block;
  height: fit-content;
  outline: none;
}

.related_column .cardlist .card_item {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 338px;

  background: #fff;
  border: 1px solid rgba(216, 216, 216, 0.6);
  border-radius: 4px;

  box-sizing: border-box;
  overflow: hidden;
}

.related_column .thumbnail_area {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  max-width: 357px;
  max-height: 240px;
  min-height: 200px;
}

.thumbnail_area .service_label {
  box-sizing: border-box;
  position: relative;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  min-height: 56px;
  padding: 0 5%;
  display: grid;
  place-items: center;
  background: #012e83;

  word-break: break-all ;
  font-size: 13px;
  /* font-weight: bold; */
  line-height: 1.5;
  color: #fff;
  z-index: 10;
}

.related_column .card_item:hover .thumbnail_img {
  filter: brightness(0.9);
  transform: scale(1.1);
}

.related_column .cardlist .card_item img {
  /* position: relative;
  top: 60px;
  left: 50%; */
  width: 200px;
  max-height: 100px;
  height: auto;
  margin: 10px auto;
  display: block;
  object-fit: contain;
  /* transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transition: .3s; */
}

.card_item .caption_area {
  padding: 16px 16px 24px;
  min-height: 140px;
}

.related_column .cardlist .card_item h3 {
  margin-top: 16px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  color: #222;
  min-height: 60px;
}

.related_column .cardlist .card_item p {
  min-height: 65px;
  margin-top: 12px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: #222222;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.related_column .meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.related_column .meta .date {
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
  color: #666;
  margin-bottom: 0;
}

.related_column .meta .tag {
  display: inline-block;
  padding: 5px 12px;

  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  color: #fff;
}

.related_column .button_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 24px;

  width: 100%;
  margin: 0 auto;
  margin-top: 64px;
}

.related_column .button_wrapper > .button_more {
  box-sizing: border-box;
  position: relative;
  display: grid;
  place-items: center;
  width: 220px;
  height: 64px;
  padding-right: 24px;
  border-radius: 4px;
  border: 1.5px solid #0C59BE;
  background: #0C59BE;
  text-decoration: none;
  text-align: center;
  color: #fff;
  font-size: 16px;
  /* font-weight: 600; */
  transition: .3s;
}

.related_column .button_wrapper > .button_more::after {
  position: absolute;
  content: "";
  margin: auto;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: rotate(45deg);
  transition: .3s;
}

.related_column .button_wrapper > .button_more:hover {
  background: #fff;
  color: #0C59BE;
}


.related_column .button_wrapper > .button_more:hover::after {
  width: 10px;
  height: 10px;
  border-top: 2px solid #0C59BE;
  border-right: 2px solid #0C59BE;
}

@media screen and (max-width: 1024px) {

  .related_column {
    overflow: hidden;
    padding: 40px 5%;
  }

  .related_column .section_title > h2 {
    font-weight: bold;
    font-size: 24px;
  }

  .related_column .section_title > hr {
    margin-top: 16px;
    border-top: 2px solid #012E83;
  }

  .related_column .cardlist {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px 0;
  }

  .related_column .thumbnail_area {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 188px;
    min-height: 188px;
  }

  .related_column .cardlist .card_item img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 188px;
    /* min-height: 188px; */
    vertical-align: bottom;
    object-fit: contain;
    transition: .3s;
  }

  .related_column .button_wrapper {
    margin-top: 32px;
  }


  .related_column .button_wrapper > .button_more {
    box-sizing: border-box;
    position: relative;

    width: 200px;
    height: 56px;
    padding-right: 24px;
    border-radius: 4px;
    border: 1.5px solid #0C59BE;
    background: #0C59BE;
    text-decoration: none;
    text-align: center;
    color: #fff;
    font-size: 16px;
    line-height: 52px;
  }

  .related_column .button_wrapper > .button_more::after {
    position: absolute;
    content: "";
    margin: auto;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    transform: rotate(45deg);
    transition: .3s;
  }
  .thumbnail_area .service_label {
    min-height: 48px;
    height: auto;
    padding: 10px 5%;
  }

  .card_item .caption_area {
    min-height: auto;
  }

  .related_column .cardlist .card_item h3 {
    min-height: auto;
  }

  .related_column .cardlist .card_item p {
    min-height: auto;
  }
}