@charset "utf-8";
/* -----------------------------------------------------
共通
----------------------------------------------------- */

ul.column_tag_items {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  list-style: none;
}

.post_detail ul.column_tag_items {
  gap: 12px 14px;
}

ul.column_tag_items a {
  position: relative;
  padding-left: 16px;
  display: block;
  line-height: 1.5;
  text-decoration: none;
  font-size: 1.4rem;
}
ul.column_tag_items a:hover {
  text-decoration: underline;
}
ul.column_tag_items a::before {
  position: absolute;
  top: 3px;
  left: 0;
  font-family: 'Material Symbols Outlined';
  content: '\e9ef';
  font-variation-settings:
    'FILL' 0,
    'wght' 300,
    'GRAD' 0,
    'opsz' 24;
  font-size: 16px;
}

/* -----------------------------------------------------
一覧
----------------------------------------------------- */
body.post_type_slug_column.post_list .contents_inner,
body.post_type_slug_column.post_list .ua_pc .contents_inner_ua_pc,
body.post_type_slug_column.post_list .ua_sp_tab .contents_inner_ua_sp_tab {
  max-width: 1400px;
}

body.post_type_slug_column .post_list_wrapper.column .post_list {
  flex-flow: column;
  gap: 36px;
}

.post_list_wrapper.column a {
  flex-flow: column;
  gap: 14px;
}
body.post_type_slug_column .post_list_wrapper.column a {
  flex-flow: row nowrap;
  gap: normal;
  justify-content: space-between;
}

.post_list_wrapper.column article {
  background-color: #fff;
  border-radius: 14px;
  overflow: hidden;
  color: var(--black_color);
}
body.post_type_slug_column .post_list_wrapper.column article {
  padding: 0 0 36px 0;
  border-bottom: 1px solid #e2e2e2;
  border-radius: 0;
  overflow: visible;
}
body.post_type_slug_column .post_list_wrapper.column a .thumbnail {
  width: 44%;
}
body.post_type_slug_column .post_list_wrapper.column .img {
  border-radius: 6px;
}
body.post_type_slug_column .post_list_wrapper.column .content {
  width: 55%;
  gap: 16px;
}
.post_list_wrapper.column .content {
  display: flex;
  flex-flow: column;
  gap: 30px;
  padding: 4px 20px 20px 20px;
  height: 100%;
  justify-content: space-between;
}
.post_list_wrapper.column .private_label {
  font-size: 1.4rem;
}
.post_list_wrapper.column .category {
  width: fit-content;
  max-width: 100%;
}
.post_list_wrapper.column .category p {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
  line-height: 1;
}
.post_list_wrapper.column .title {
  text-align: left;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-height: 1.5;
  font-weight: 600;
  font-size: 1.7rem;
}
body.post_type_slug_column .post_list_wrapper.column .title {
  display: block;
  -webkit-box-orient: initial;
  -webkit-line-clamp: unset;
  overflow: visible;
  text-overflow: clip;
  font-weight: 600;
  font-size: 2.2rem;
}

.post_list_wrapper.column .img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.post_list_wrapper.column .img img,
.post_list_wrapper.column .img svg {
  transition: transform 0.4s;
  transform: scale(1);
  will-change: transform;
}
.post_list_wrapper.column a:hover .img img,
.post_list_wrapper.column a:hover .img svg {
  transform: scale(1.04);
}
.post_list_wrapper.column .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post_list_wrapper.column .column_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.post_list_wrapper.column .column_tag li {
  color: var(--gray_color);
  display: block;
  font-size: 1.4rem;
  text-indent: -0.8em;
  padding-left: 0.8em;
  line-height: 1.3;
}
.post_list_wrapper.column .column_tag li::before {
  content: '#';
  margin-right: 0.1em;
}

@media (max-width: 1200px) {
  .post_list_wrapper.column .title {
    font-size: 1.6rem;
  }
}

@media (max-width: 767px) {
  body.post_type_slug_column .post_list_wrapper.column .post_list {
    gap: 30px;
  }
  body.post_type_slug_column .post_list_wrapper.column article {
    padding: 0 0 30px 0;
  }
  body.post_type_slug_column .post_list_wrapper.column a {
    flex-flow: column;
    gap: 16px;
  }
  body.post_type_slug_column .post_list_wrapper.column a .thumbnail,
  body.post_type_slug_column .post_list_wrapper.column .content {
    width: 100%;
  }
  body.post_type_slug_column .post_list_wrapper.column .content {
    padding: 0;
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .post_list_wrapper.column .title {
    font-size: 1.5rem;
  }
  body.post_type_slug_column .post_list_wrapper.column .title {
    font-size: 1.8rem;
  }
}

/* -----------------------------------------------------
詳細
----------------------------------------------------- */
.post_detail_wrapper.column header .date_category {
  margin-bottom: 30px;
}
.post_detail_wrapper.column ul.column_tag_items {
  margin-top: 24px;
}
.post_detail_wrapper.column ul.column_tag_items a {
  background-color: #eee;
  padding: 0.5em 0.9em 0.5em 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1.6rem;
}
.post_detail_wrapper.column ul.column_tag_items a::before {
  position: absolute;
  top: 11px;
  left: 11px;
  font-family: 'Material Symbols Outlined';
  content: '\e9ef';
  font-variation-settings:
    'FILL' 0,
    'wght' 300,
    'GRAD' 0,
    'opsz' 24;
  font-size: 17px;
}
.post_detail_wrapper.column .thumbnail {
  margin-top: 46px;
}
.post_detail_wrapper.column .thumbnail img {
  border-radius: 8px;
  width: 100%;
}
.post_detail_wrapper.column .entry_content {
  margin-top: 46px;
}
.post_detail_wrapper.column h1.title {
  font-size: 4.3rem;
  line-height: 1.4;
  font-weight: 600;
}
.post_detail_wrapper.column .entry_content h2 {
  position: relative;
  padding: 1rem 2.2rem;
  color: var(--black_color);
  border-radius: 0 6px 6px 6px;
  background-color: var(--gray_color_super_light);
  font-size: 2.9rem;
}

.post_detail_wrapper.column .entry_content h2::before,
.post_detail_wrapper.column .entry_content h2::after {
  position: absolute;
  color: #fff;
}
.post_detail_wrapper.column .entry_content h2::before {
  top: -28px;
  left: 0;
  font-size: 17px;
  height: 28px;
  padding: 0 0.8em 0 33px;
  content: 'POINT';
  border-radius: 3px 3px 0 0;
  background-color: var(--main_color);
}
.post_detail_wrapper.column .entry_content h2::after {
  top: -31px;
  left: 7px;
  font-family: 'Material Symbols Outlined';
  font-variation-settings:
    'FILL' 1,
    'wght' 100,
    'GRAD' 0,
    'opsz' 24;
  font-size: 20px;
  content: '\ebb9';
  transform: rotate(90deg);
}

.post_detail_wrapper.column .entry_content h3 {
  font-size: 2.4rem;
  border-left: 5px solid #202020;
  margin-bottom: 1.4em;
  padding-left: 16px;
  line-height: 1.4;
}

.post_detail_wrapper.column .entry_content ul {
  margin-left: 0.5em;
  list-style-type: none;
  margin-top: 24px;
  margin-bottom: 24px;
}

.post_detail_wrapper.column .entry_content ul li {
  position: relative;
  padding: 0 0 0 28px;
  font-size: 1.7rem;
}

.post_detail_wrapper.column .entry_content ul li::before,
.post_detail_wrapper.column .entry_content ul li::after {
  position: absolute;
  content: '';
}

.post_detail_wrapper.column .entry_content ul li::before {
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--main_color);
}

.post_detail_wrapper.column .entry_content ul li::after {
  top: 9px;
  left: 11px;
  transform: translateX(-75%) rotate(-45deg);
  width: 0.3em;
  height: 0.3em;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}

.post_detail_wrapper.column .entry_content hr {
  border: none;
  margin: 0 0 80px 0;
}

@media (max-width: 1100px) {
  .post_detail_wrapper.column h1.title {
    font-size: 3.2rem;
  }
  .post_detail_wrapper.column .entry_content h2 {
    font-size: 2.3rem;
  }
}
@media (max-width: 900px) {
  .post_detail_wrapper.column h1.title {
    font-size: 3rem;
  }
  .post_detail_wrapper.column .entry_content h2 {
    font-size: 2.1rem;
  }
}
@media (max-width: 767px) {
  .post_detail_wrapper.column h1.title {
    font-size: 2.8rem;
  }
  .post_detail_wrapper.column .entry_content h2 {
    font-size: 1.9rem;
  }
}
@media (max-width: 640px) {
  .post_detail_wrapper.column h1.title {
    font-size: 2.6rem;
  }
}

/* -----------------------------------------------------
サイドバー
----------------------------------------------------- */
.post_detail #wrap_contents:has(#sidebar) {
  flex-flow: column;
  gap: 60px;
}
.post_detail.post_type_slug_column aside#sidebar {
  width: 100%;
}
#wrap_sidebar_column {
  display: flex;
  flex-flow: column;
  gap: 44px;
  position: sticky;
}
.sidebar_section .section_title {
  font-size: 1.7rem;
  background-color: var(--black_color);
  font-weight: bold;
  padding: 0.6em 1em 0.6em 40px;
  margin-bottom: 16px;
  position: relative;
  color: #fff;
  border-radius: 4px;
}
.sidebar_section .section_title::before {
  position: absolute;
  font-family: 'Material Symbols Outlined';
  font-variation-settings:
    'FILL' 0,
    'wght' 100,
    'GRAD' 0,
    'opsz' 24;
}

.sidebar_section.column_category_list .section_title::before {
  content: '\e156';
  top: 14px;
  left: 11px;
  font-size: 22px;
}
.sidebar_section.column_tag_list .section_title::before {
  content: '\f05b';
  top: 16px;
  left: 12px;
  font-size: 21px;
}
.sidebar_section.recent_column_posts .section_title::before {
  content: '\e3c9';
  top: 13px;
  left: 11px;
  font-size: 23px;
}
.sidebar_section a {
  text-decoration: none;
  font-size: 1.5rem;
}
.sidebar_section ul {
  list-style: none;
}

.sidebar_section.column_category_list ul {
  border-top: var(--gray_color_light) 1px solid;
}
.sidebar_section.column_category_list ul li {
  border-bottom: var(--gray_color_light) 1px solid;
}
.sidebar_section.column_category_list ul li a {
  position: relative;
  padding: 0.8em 0.8em 0.8em 30px;
  display: block;
  line-height: 1.5;
}
.sidebar_section.column_category_list ul li a:hover {
  background-color: var(--gray_color_super_light);
}
.sidebar_section.column_category_list ul li a::before {
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--black_color);
  border-right: 1px solid var(--black_color);
  transform: rotate(45deg);
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  margin-top: -3px;
}
.sidebar_section.recent_column_posts ul {
  display: flex;
  flex-flow: column;
  gap: 10px;
}

.sidebar_section.recent_column_posts a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidebar_section.recent_column_posts .thumbnail {
  width: 64px;
  flex-shrink: 0;
}
.sidebar_section.recent_column_posts .thumbnail .img {
  border-radius: 100%;
  overflow: hidden;
}
.sidebar_section.recent_column_posts .thumbnail .img img,
.sidebar_section.recent_column_posts .thumbnail .img svg {
  transition: transform 0.3s;
  transform: scale(1);
  will-change: transform;
}
.sidebar_section.recent_column_posts a:hover .thumbnail .img img,
.sidebar_section.recent_column_posts a:hover .thumbnail .img svg {
  transform: scale(1.1);
}
.sidebar_section.recent_column_posts .thumbnail .img img {
  width: 100%;
}
.sidebar_section.recent_column_posts .thumbnail .no_image.svg {
  aspect-ratio: 1/1;
  border-radius: 100%;
}
.sidebar_section.recent_column_posts .thumbnail .no_image.svg svg.no_image_icon {
  width: 50%;
}
.sidebar_section.recent_column_posts .title {
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-height: 1.6;
}

#wrap_sidebar_column {
  top: calc(100px + 38px);
}
@media (max-width: 1200px) {
  #wrap_sidebar_column {
    top: calc(98px + 38px);
  }
}
@media (max-width: 1180px) {
  #wrap_sidebar_column {
    top: calc(92px + 38px);
  }
}
@media (max-width: 1000px) {
  #wrap_sidebar_column {
    position: static;
    top: auto;
  }
}
