.pickup {
  background: #111111;
  padding-block: 40px;
}

.pickup_inner {
  max-width: 1222px;
  padding-inline: 0px 20px;
  margin-inline: auto;
}

@media screen and (max-width: 1221px) {
  .pickup_inner {
    padding-inline: 0.5%;
  }
}
@media screen and (max-width: 834px) {
  .pickup_inner {
    padding-inline: 16px;
  }
}
.pickup_blocks {
  display: grid;
  grid-template-columns: 69.64% 1fr;
}

.pickup_block {
  width: 100%;
  overflow: hidden;
}

.pickup_block:first-child {
  grid-row: span 2;
}
.pickup_block:first-child .pickup_title {
  width: calc(100% - 40px);
  left: 20px;
  font-size: 24px;
}

.pickup_block a {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
  width: 100%;
  height: 100%;
}

.pickup_block a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  transition: all 0.45s;
  opacity: 0;
  pointer-events: none;
}

.pickup_block a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, transparent 60%, black);
  opacity: 0.4;
  pointer-events: none;
}

.pickup_img {
  width: 100%;
  height: 100%;
}
.pickup_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 388/218;
}

.pickup_title {
  position: absolute;
  width: calc(100% - 32px);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  z-index: 1;
  left: 16px;
  bottom: 20px;
}

.pickup_block a:hover {
  color: #fff;
}
.pickup_block a:hover::before {
  opacity: 0.2;
}

@media screen and (max-width: 750px) {
  .pickup_blocks {
    display: block;
  }
  .pickup_blocks .slider-dots {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    margin-top: 20px;
    padding-left: 0;
  }
  .pickup_blocks .slider-dots li {
    list-style: none;
    width: 32px;
    height: 8px;
    background-color: #fff;
    margin: 0 5px;
  }
  .pickup_blocks .slider-dots li.slick-active {
    background-color: #F08C00;
  }
  .pickup_blocks .slider-dots button {
    display: none;
  }
  .slick-dotted.slick-slider {
    margin-bottom: 0;
  }
  .pickup_title {
    font-size: 14px;
    bottom: 16px;
  }
}
.osusume {
  margin-top: 80px;
}

.osusume_title {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
  border-bottom: 2px solid #222222;
  margin-bottom: 40px;
}

.osusume_lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 11px;
  list-style: none;
  padding-left: 0;
}

.osusume_list {
  min-height: 92px;
}

.osusume_list:first-child {
  margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
  .osusume_list:first-child {
    margin-bottom: 0;
  }
}
.osusume_list a {
  display: grid;
  grid-template-columns: 48% 1fr;
  color: var(--font-color);
  text-decoration: none;
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
  gap: 10px;
  height: 100%;
  transition: all 0.45s;
}
.osusume_list a:hover {
  color: var(--font-color);
  opacity: 0.8;
}

.osusume_thumbnail {
  display: block;
  height: 100%;
}
.osusume_thumbnail img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 188/106;
}

.osusume_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 20px;
}

.osusume_time {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  color: #444444;
}

.osusume_list-title {
  font-size: 16px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.osusume_exerpt {
  font-size: 14px;
  line-height: 1.25;
  margin-top: 6px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.osusume_exerpt span {
  color: #008CDC;
  text-decoration: underline;
}

.osusume_cats {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 5px;
  margin-top: 10px;
  padding-left: 0;
}

.osusume_cat {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #666666;
  padding: 3px 10px;
  gap: 2px;
  border-radius: 2px;
  font-size: 12px;
  line-height: 1;
  border: 1px solid #CCCCCC;
}
.osusume_cat::before {
  content: "";
  width: 12px;
  height: 12px;
  background: url(../img/icon/tag.svg) center center/contain no-repeat;
}

.osusume_list:first-child {
  grid-column: span 2;
  min-height: 226px;
}
.osusume_list:first-child a {
  gap: 20px;
}
.osusume_list:first-child .osusume_list-title {
  font-size: 20px;
}

.osusume_list:not(:first-child) .osusume_time,
.osusume_list:not(:first-child) .osusume_cats,
.osusume_list:not(:first-child) .osusume_exerpt {
  display: none;
}
.osusume_list:not(:first-child) .osusume_list-title {
  display: flex;
  align-items: center;
}
.osusume_list:not(:first-child) .osusume_content {
  padding-block: 20px;
  padding-right: 16px;
}

@media screen and (max-width: 750px) {
  .osusume_title {
    font-size: 16px;
    margin-bottom: 28px;
  }
  .osusume_lists {
    grid-template-columns: 100%;
    gap: 10px;
  }
  .osusume_list {
    min-height: 80px;
  }
  .osusume_list a {
    grid-template-columns: 30% 1fr;
    gap: 10px;
  }
  .osusume_list:first-child {
    grid-column: span 1;
    min-height: 80px;
  }
  .osusume_list:first-child a {
    grid-template-columns: 30% 1fr;
    gap: 10px;
  }
  .osusume_exerpt {
    display: none;
  }
  .osusume_cats {
    display: none;
  }
  .osusume_time {
    display: none;
  }
  .osusume_list:first-child .osusume_list-title {
    font-size: 16px;
  }
  .osusume_list-title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
  }
}
a {
  transition: all 0.45s;
}

.archive .main,
.home .main {
  padding-top: 0;
}

.single .main {
  padding-top: 0;
}
.single .main article {
  padding: 40px;
}

@media screen and (max-width: 834px) {
  .single .main article {
    padding: 20px;
  }
}
.toc {
  width: 100%;
}

#breadcrumb {
  background: none;
  padding-inline: 0.5%;
}
#breadcrumb.wrap {
  width: 1230px;
}

@media screen and (max-width: 1250px) {
  #breadcrumb.wrap {
    max-width: 1230px;
    width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  #breadcrumb.wrap {
    padding-inline: 10px;
  }
}
@media screen and (max-width: 834px) {
  #breadcrumb.wrap {
    padding-inline: 16px;
  }
}
.single article {
  background-color: #fff;
}
.single .article .toc-content li::marker {
  color: #222222;
}
.single .eye-catch {
  max-width: 640px;
  margin-inline: auto;
}
.single .sns-buttons {
  padding-bottom: 10px;
  border-bottom: 3px solid #333333;
}
.single .article-footer .sns-buttons {
  border: none;
}
.single .bold-blue {
  color: #0468BF;
}
.single .date-tags {
  text-align: left;
  margin-bottom: 10px;
}
.single .date-tags .post-date, .single .date-tags .post-update, .single .date-tags .post-author, .single .date-tags .amp-back, .single .date-tags .entry-category {
  font-size: 14px;
}
.single .entry-categories-tags {
  margin-bottom: 10px;
}
.single .tag-link, .single .comment-reply-link, .single .cat-link {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #666;
  padding: 3px 10px;
  gap: 2px;
  border-radius: 2px;
  line-height: 1;
  font-size: 12px;
  border: 1px solid #ccc;
  font-weight: bold;
}
.single .tag-link .fas, .single .comment-reply-link .fas, .single .cat-link .fas {
  color: #FFC864;
}
.single .toc-content > ol > li > a {
  font-weight: bold;
}
.single .article .marker-under {
  background: linear-gradient(transparent 50%, #FFC864 50%);
}
.single .article .wp-block-image {
  margin-inline: auto;
  max-width: 640px;
}
.single .article h2 {
  background: none;
  padding-inline: 0;
  padding-bottom: 10px;
  border-bottom: 3px solid #333333;
  margin-bottom: 20px;
}
.single .article h3 {
  border: none;
  background: #F8F8F8;
  border-left: #0468BF 4px solid;
  padding-block: 10px;
  margin-bottom: 20px;
}
.single .article h3 {
  border: none;
  background: #F8F8F8;
  border-left: #0468BF 4px solid;
  padding-block: 10px;
}
.single .article h4 {
  position: relative;
  border-top: none;
  padding-bottom: 4px;
  padding-left: 0;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid #CCCCCC;
  margin-bottom: 16px;
}
.single .article h4::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  background: #0468BF;
  width: 120px;
  height: 2px;
  bottom: -2px;
}
.single .article li::marker {
  color: #4f4f4f;
}
.single .article table ul {
  padding-left: 20px;
  margin-bottom: 0;
}
.single .article table ul li:marker {
  color: #222;
}
.single .article table ol {
  padding-left: 20px;
  margin-bottom: 0;
}
.single .article table ol li:marker {
  color: #222;
}
.single .article table ul {
  padding-left: 20px;
  margin-bottom: 0;
}
.single .article table ul li:marker {
  color: #222;
}
.single .article table ol {
  padding-left: 20px;
  margin-bottom: 0;
}
.single .article table ol li:marker {
  color: #222;
}
.single .article table th {
  background: #0468BF;
  color: #fff;
}
.single .article table th a {
  color: inherit;
}
.single .article .wp-block-table thead {
  border: none;
}
.single .article dt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  background: #EEEEEE;
  padding: 0px 4px;
}
.single .article dd {
  margin-left: 0;
  margin-top: 5px;
}
.single .article .sns-share-message {
  display: none;
}
.single .article .sns-buttons {
  justify-content: flex-start;
}
.single .article .edit {
  display: grid;
  padding: 20px;
  grid-template-columns: 84px 1fr;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid #CCCCCC;
}
.single .article .edit_text,
.single .article .edit_info {
  font-size: 14px;
  line-height: 1.25;
}
.single .article .edit_info > p + p {
  margin-top: 1em;
}
.single .article .edit_img {
  display: block;
  border: 1px solid #CCCCCC;
}
.single .article .edit_img span {
  background-color: #222;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  padding-block: 6px;
  color: #fff;
  display: block;
  text-align: center;
}
.single .article .edit_title {
  color: #0468BF;
  font-weight: bold;
}
.single .article .edit_info strong {
  display: block;
}
.single .article .edit_info:last-of-type p {
  margin-bottom: 0;
}

@media screen and (max-width: 750px) {
  .single .article .edit {
    grid-template-columns: 71px 1fr;
    gap: 0 20px;
  }
  .single .article .edit_content {
    display: contents;
  }
  .single .article .edit_text {
    font-size: 14px;
  }
  .single .article .edit_info {
    font-size: 14px;
    grid-column: span 2;
  }
  #breadcrumb {
    padding-block: 0px;
  }
}
.breadcrumb .sp {
  margin-right: 0 !important;
}

.breadcrumb a {
  text-decoration: underline !important;
}

.sns-share-buttons a .button-caption {
  display: none;
}
/*# sourceMappingURL=style.css.map */