[data-column=top] .inbox__full {
  max-width: 1000px;
}
@media screen and (max-width: 767.9px) {
  [data-column=top] .inbox__full {
    max-width: calc(100vw - 30px);
  }
}
@media screen and (max-width: 1040px) and (min-width: 768px) {
  [data-column=top] .inbox__full {
    max-width: calc(100vw - 40px);
  }
}
[data-column=top] .column__article {
  margin-bottom: 0;
}
[data-column=top] .column__article > li:last-child {
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  [data-column=top] .column__article > li:nth-last-child(2):nth-child(odd) {
    padding-bottom: 0;
  }
}

.column__top_inner {
  max-width: calc(100vw - 40px);
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767.9px) {
  .column__top_inner {
    max-width: calc(100vw - 32px);
  }
}

.column__top_title {
  display: block;
  margin: 0 auto 50px;
  font-size: 1.875rem;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .column__top_title {
    margin: 0 auto 35px;
    font-size: 1.5rem;
  }
}
.column__top_title span {
  display: inline-block;
  min-height: 43px;
  padding-top: 5px;
  padding-left: 60px;
  background-image: url(/commons/img/icon_column.svg);
  background-size: 50px auto;
  background-repeat: no-repeat;
  background-position: left center;
}
@media screen and (max-width: 767.9px) {
  .column__top_title span {
    padding-left: 52px;
    background-size: 48px auto;
  }
}

.column__top_text {
  margin-bottom: 40px;
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .column__top_text {
    margin-bottom: 30px;
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .column__top_unit {
    display: flex;
    gap: 30px;
  }
}
.column__top_unit .column__top_subtitle {
  margin-bottom: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .column__top_unit .column__top_subtitle {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767.9px) {
  .column__top_unit .column__top_subtitle {
    margin-bottom: 15px;
    font-size: 1rem;
  }
}
.column__top_unit .column__top_subtitle::after {
  display: none;
}
.column__top_unit .column__article {
  flex-direction: column;
}
.column__top_unit .column__article > li {
  width: 100%;
}
.column__top_unit .column__article > li:last-child {
  padding-bottom: 15px;
}
@media screen and (max-width: 767.9px) {
  .column__top_unit .column__article > li:last-child {
    padding-bottom: 0;
  }
}
.column__top_unit .column__article > li:nth-last-child(2):nth-child(odd) {
  border-bottom: 1px dashed #ccc;
}
@media screen and (min-width: 768px) {
  .column__top_unit .column__article > li:nth-last-child(2):nth-child(odd) {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767.9px) {
  .column__top_unit .column__article_img {
    width: 37.103%;
  }
}

.column__top_card {
  display: block;
  width: 100%;
  border-radius: 12px;
  background: #fff;
  color: #333;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .column__top_card {
    max-width: 380px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.15);
  }
}
@media screen and (max-width: 767.9px) {
  .column__top_card {
    margin-bottom: 25px;
    border: 1px solid #ccc;
  }
}

.column__top_card_image {
  overflow: hidden;
}
.column__top_card_image img {
  width: 100%;
  height: auto;
  transform-origin: center center;
  transition: transform 0.5s ease;
  vertical-align: bottom;
}
@media screen and (min-width: 768px) {
  .column__top_card_image img:hover {
    transform: scale(150%);
    transition: transform 0.5s ease;
  }
}

.column__top_card_body {
  padding: 24px;
}
@media screen and (max-width: 767.9px) {
  .column__top_card_body {
    padding: 20px;
  }
}

.column__top_card_title {
  margin-bottom: 10px;
  padding-left: 30px;
  font-size: 1.25rem;
  font-weight: 600;
  background: url(/commons/img/icon_arrow.svg) no-repeat left center;
  background-size: 20px auto;
  line-height: 30px;
}
@media screen and (max-width: 767.9px) {
  .column__top_card_title {
    font-size: 1.125rem;
  }
}

.column__top_card_text {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.column__top_subtitle {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .column__top_subtitle {
    margin-bottom: 20px;
  }
}
.column__top_subtitle span {
  position: relative;
  display: inline-block;
  padding: 0 20px;
  background: #f7f6f0;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 30px;
  z-index: 1;
}
@media screen and (max-width: 767.9px) {
  .column__top_subtitle span {
    font-size: 1rem;
  }
}
.column__top_subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ccc;
  transform: translateY(-50%);
}

.column__article {
  display: flex;
  gap: 0 50px;
  flex-wrap: wrap;
  margin-top: -20px;
}
@media screen and (max-width: 767.9px) {
  .column__article {
    flex-direction: column;
    margin-top: -16px;
  }
}
.column__article > li {
  width: calc(50% - 25px);
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px dashed #ccc;
  list-style: none;
}
@media screen and (max-width: 767.9px) {
  .column__article > li {
    gap: 16px;
    width: 100%;
    padding: 16px 0;
  }
}
.column__article > li:last-child {
  padding-bottom: 10px;
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .column__article > li:nth-last-child(2):nth-child(odd) {
    padding-bottom: 10px;
    border-bottom: none;
  }
}
.column__article a {
  display: flex;
  gap: 24px;
  color: #333;
}
@media screen and (max-width: 767.9px) {
  .column__article a {
    gap: 16px;
  }
}
.column__article a:hover {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .column__article a:hover {
    text-decoration: none;
  }
}
@media screen and (min-width: 768px) {
  .column__article a:hover .column__article_img img {
    transform: scale(1.06);
  }
}
@media screen and (min-width: 768px) {
  .column__article a:hover .column__article_title {
    text-decoration: underline;
  }
}

.column__article_unit {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.column__article_img {
  flex: 0 0 auto;
  align-self: start;
  max-width: 100%;
  width: 176px;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .column__article_img {
    width: 128px;
  }
}
.column__article_img img {
  width: 100%;
  height: auto;
  transition: all 0.3s;
}

.column__article_title {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (max-width: 767.9px) {
  .column__article_title {
    font-size: 0.875rem;
  }
}

.column__article_date {
  margin-top: auto;
  margin-left: auto;
  margin-bottom: 0;
  color: #666;
  font-size: 0.875rem;
}
@media screen and (max-width: 767.9px) {
  .column__article_date {
    font-size: 0.75rem;
  }
}

.column__article_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
}
.column__article_tag li {
  display: inline-block;
  margin: 0;
  padding: 0 8px;
  border: 1px solid #085BA6;
  border-radius: 13px;
  color: #085BA6;
  font-size: 0.75rem;
}/*# sourceMappingURL=column_new.css.map */