/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #FFFFFF;
  color: #333333;
  font-family: 'Lato', sans-serif;
  line-height: 1.5;
  font-size: 18px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
a {
  color: #167ac6;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  color: #0b4593;
}
.elementor-text-editor a:hover {
  text-decoration: underline;
}

/* CONTAINER & SECTIONS */
.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 15px;
}
.section {
  padding: 30px 0;
}
.bg-black {
  background-color: #000000;
}
.bg-light-gray {
  background-color: #F0F0F0;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}

/* HEADER / ADVERTORIAL */
.advertorial-bar {
  background-color: #000;
  border-bottom: 1px solid #EAEAEA;
  padding: 0;
  margin: 0;
}
.advertorial-bar h4 {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #B1B1B1;
  margin: 0;
  padding: 8px 0;
  text-align: center;
}

/* LOGO SECTION */
.logo-section {
  border-bottom: 1px solid #F1F1F1;
  padding: 10px 0 1px;
  margin-top: -10px;
}
.logo-wrapper {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 15px;
}
.logo-img {
  width: 28%;
  min-width: 180px;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: #333333;
}
h1 {
  font-size: 42px;
  line-height: 48px;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
h2 {
  font-size: 30px;
  line-height: 37px;
  margin: 20px 0 15px;
}
h3 {
  font-size: 24px;
  margin: 20px 0 10px;
}
p {
  margin-bottom: 1.3em;
}
strong {
  font-weight: 700;
}

/* SHARE BUTTONS (visual only, no js) */
.share-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  background: #3b5998;
  color: white;
  border-radius: 0;
  width: 100%;
}
.share-btn.twitter {
  background: #000;
}
.share-btn.pinterest {
  background: #bd081c;
}
.share-btn svg {
  width: 22px;
  height: 22px;
  fill: white;
}

/* VIDEO WRAPPER */
.video-wrapper {
  position: relative;
  padding-bottom: 100%;
  /* 1:1 aspect */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 20px 0;
}
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HIGHLIGHT BOX */
.highlight-box {
  background-color: #FEF5C4;
  border: 3px dashed #FE7D7F;
  box-shadow: 0 0 10px 0 #FADF98;
  padding: 8px 14px;
  margin: 20px 0;
  border-radius: 0;
}
.highlight-box p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 20px;
  line-height: 32px;
  color: #333;
  margin: 0;
}
.highlight-box .red-text {
  color: #ed1c24;
  font-weight: 700;
}

/* BUTTON */
.btn {
  display: block;
  width: 100%;
  background-color: #1FBA34;
  color: white;
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
  text-align: center;
  padding: 15px;
  border-radius: 7px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  transition: background 0.2s;
  margin: 40px 0;
  border: none;
}
.btn:hover {
  background-color: #07893A;
  text-decoration: none;
  color: white;
}

/* FOOTER */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  list-style: none;
  padding: 20px 0;
  margin: 0;
}
.footer-links li a {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #7B7B7B;
  text-decoration: none;
}
.footer-links li a:hover {
  color: #54595F;
}
.footer-legal {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  line-height: 21px;
  color: #7B7B7B;
  text-align: center;
  padding: 0 0 20px;
}
.footer-legal p {
  margin-bottom: 10px;
}
.footer-legal ul {
  list-style: none;
  padding-left: 0;
}
.footer-legal li {
  margin: 5px 0;
}

/* Utility */
.mt-20 {
  margin-top: 20px;
}
.mb-0 {
  margin-bottom: 0;
}
.w-100 {
  width: 100%;
}
.spacer-50 {
  margin-top: 50px;
}