* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 14px;
}

main > div.page {
  display: flex;
  flex-direction: column;
}

header.anap {
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100vw;
}
header.anap nav.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 53px;
  background: linear-gradient(to bottom, #222, transparent);
}
header.anap nav.nav .site-logo > a {
  color: #FFFFFF;
  font-size: 24px;
  text-decoration: none;
  font-family: "Shippori Mincho B1", serif;
}
header.anap nav.nav .bland-logo > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 53px;
  background-color: #FFFFFF;
  border-radius: 24px;
  text-decoration: none;
  gap: 12px;
}
header.anap nav.nav .bland-logo > a > span {
  color: #000000;
}
header.anap nav.nav .bland-logo > a > img {
  width: 100px;
}
header.anap nav.nav .share-button {
  display: none;
}

.hero-buttons > a {
  text-decoration: none;
}

.anap-contents {
  background-image: radial-gradient(circle, rgba(255, 140, 0, 0.1882352941) 2px, transparent 2px);
  background-size: 16px 16px;
  background-position: 0 0;
}

div#bottomContainer {
  display: none;
}

footer.footer {
  background-color: #000000;
}
footer.footer .footer-container {
  width: 100%;
  max-width: 1090px;
  margin: 0 auto;
  padding: 40px 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
footer.footer .footer-container div.footer-dojo > a > img {
  width: 308px;
}
footer.footer .footer-container .copyright {
  background-color: inherit;
}

/* ANAP Hero Section */
.anap-hero {
  position: relative;
  min-height: 835px;
  background: linear-gradient(135deg, #1a1410 0%, #3d2817 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  /*opacity: 0.3;*/
}

.hero-background .bg-pattern {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 160px 40px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
  color: #ffffff;
}

.hero-title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 24px;
}

.hero-description {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 32px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.hero-buttons > a.btn-primary:hover {
  color: white;
}
.hero-buttons > a.btn-secondary:hover {
  color: black;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #FF8A00;
  color: #ffffff;
}

.btn-primary:hover {
  background: #ff9d1f;
}

.btn-secondary {
  background: #ffffff;
  color: #1a1410;
}

.btn-secondary:hover {
  background: #f0f0f0;
}

.hero-note {
  font-size: 12px;
  opacity: 0.7;
  margin: 0;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

/* ANAP Contents Section */
.anap-contents {
  background: #1a1a1a;
  color: #ffffff;
  padding: 60px 0;
}

.contents-header {
  max-width: 1440px;
  margin: 0 auto 40px;
  padding: 0 40px;
}

.contents-title {
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 24px;
  letter-spacing: 2px;
}

.contents-tabs {
  display: flex;
  gap: 16px;
}

.tab-btn {
  padding: 8px 24px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.contents-main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
}

/* Articles Section */
.section-header {
  margin-bottom: 32px;
}

.section-badge {
  display: inline-block;
  padding: 4px 12px;
  background: #FF8A00;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  margin-right: 12px;
}

.section-title {
  display: inline-block;
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.article-card {
  background: #ffffff;
  padding: 0;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-4px);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.card-badge {
  display: inline-block;
  padding: 4px 12px;
  background: #000000;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 0 0 8px 0;
}

.card-date {
  font-size: 12px;
  padding-right: 6px;
  color: #666666;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 16px;
  padding: 0 16px;
}

.card-title a {
  color: #000000;
  text-decoration: none;
}

.card-title a:hover {
  color: #FF8A00;
}

.card-divider {
  width: 40px;
  height: 2px;
  background: #FF8A00;
  margin-bottom: 16px;
  margin-left: 16px;
}

.card-excerpt {
  padding: 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  margin: 0 0 16px;
  flex: 1;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  padding: 16px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.card-tag {
  color: #FF8A00;
  font-size: 12px;
  font-weight: 500;
}

.card-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #FF8A00;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.card-link-btn:hover {
  background: #ff9d1f;
}

.section-footer {
  text-align: center;
}

.btn-more {
  display: inline-block;
  padding: 12px 32px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-more:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 20px;
  align-self: start;
}

.sidebar-banner {
  position: relative;
  background-color: #FFFFFF;
  margin-bottom: 24px;
  overflow: hidden;
}
.sidebar-banner img {
  width: 100%;
  height: auto;
}

.banner-content {
  position: relative;
  z-index: 1;
  padding: 16px;
}

.banner-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #F56200;
  text-align: center;
}

.banner-text {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 16px;
  color: #000000;
}

.banner-link {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: #FF8A00;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.banner-link:hover {
  background: #ff9d1f;
}

.sidebar-topics {
  background: #2a2a2a;
  border-radius: 12px;
  padding: 24px;
}

.topics-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
}

.topics-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.topics-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topics-list li:last-child {
  border-bottom: none;
}

.topics-list a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.topics-list a:hover {
  color: #FF8A00;
}

.no-posts {
  grid-column: 1/-1;
  text-align: center;
  padding: 40px;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
  .contents-main {
    grid-template-columns: 1fr;
  }
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column-reverse;
    padding: 40px 20px;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .articles-grid {
    grid-template-columns: 1fr;
  }
  .contents-tabs {
    flex-wrap: wrap;
  }
}
main > article {
  position: relative;
  margin-top: -85px;
  margin-bottom: 0;
  padding-top: 85px;
  background-color: #5C5C5C;
  background-image: url("/wp-content/themes/coindeskjapan-v3/brandchannel/anap/img/hero-bg-full.jpg");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
}
main > article section.p-content {
  margin: 0;
  background-image: radial-gradient(circle, rgba(255, 140, 0, 0.1882352941) 2px, transparent 2px);
  background-size: 16px 16px;
  background-position: 0 0;
}
main > article section.p-content .p-headerContent_bc {
  max-width: 1090px;
  padding: 0 30px;
  margin: 0 auto;
}
main > article section.p-content .p-headerContent_bc .p-meta .p-title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 40px;
  color: #FFFFFF;
}
main > article section.p-content .p-headerContent_bc .p-meta .p-sharing, main > article section.p-content .p-headerContent_bc .p-meta .p-authors {
  display: none;
}
main > article section.p-content section.article-body.p-body {
  max-width: 1090px;
  background-color: #FFFFFF;
  padding: 30px 30px 60px;
  margin: 0 auto 40px;
  font-family: "Noto Sans JP", sans-serif;
}
main > article section.anap-hero {
  background: linear-gradient(to bottom, #222, transparent);
  height: 139px;
  min-height: 139px;
  max-height: 139px;
  overflow: hidden;
  background: transparent;
}

/*# sourceMappingURL=main.css.map */
