@charset "UTF-8";
/*!
Theme Name: Vlog
Theme URI:
Author: Your Name
Author URI:
Description: A WordPress theme for video blogging platform
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vlog
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
}

a {
  color: #e53935;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #cd1e1a;
}

ul,
ol {
  margin-bottom: 16px;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

.header {
  background-color: #fff;
  border-bottom: none;
  padding: 16px 20px;
}
.header-inner {
  max-width: 1256px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 16px;
  }
}
.header-logo {
  position: absolute;
  left: 0;
}
@media (max-width: 768px) {
  .header-logo {
    position: static;
    margin-bottom: 8px;
  }
}
.header-logo a {
  display: block;
  text-decoration: none;
}
.header-logo img {
  display: block;
  max-height: 40px;
}

.footer {
  background-color: #333;
  color: #ccc;
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
}
.footer .footer-links {
  max-width: 1256px;
  margin: 0 auto 10px auto;
  padding: 0 20px;
}
.footer .footer-links .footer-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.footer .footer-links .footer-menu li {
  margin: 0;
  padding: 0;
}
.footer .footer-links .footer-menu a {
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer .footer-links .footer-menu a:hover {
  color: #fff;
}
.footer p {
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
  color: #999;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top-button {
  width: 50px;
  height: 50px;
  background-color: rgba(229, 57, 53, 0.9);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}
.back-to-top-button:hover {
  background-color: #e53935;
}

@media screen and (max-width: 768px) {
  .back-to-top {
    right: 15px;
    bottom: 15px;
  }
  .back-to-top-button {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
.container {
  max-width: 1256px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 30px;
}
@media (max-width: 1023px) {
  .container {
    flex-direction: column;
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

.main-content {
  flex: 2;
}
@media (max-width: 1023px) {
  .main-content {
    flex: none;
    width: 100%;
  }
}

.sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1023px) {
  .sidebar {
    flex: none;
    width: 100%;
  }
}

.sidebar section {
  background-color: #fff;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.sidebar section h3 {
  font-size: 16.8px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ddd;
}
.sidebar .popular-videos ul,
.sidebar .new-videos ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar .popular-videos li,
.sidebar .new-videos li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.sidebar .popular-videos li:last-child,
.sidebar .new-videos li:last-child {
  margin-bottom: 0;
}
.sidebar .popular-videos li img,
.sidebar .new-videos li img {
  width: 140px;
  height: 79px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.sidebar .popular-videos li div,
.sidebar .new-videos li div {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sidebar .popular-videos li .video-title,
.sidebar .new-videos li .video-title {
  font-size: 14px;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sidebar .popular-videos li .views,
.sidebar .popular-videos li .time,
.sidebar .new-videos li .views,
.sidebar .new-videos li .time {
  font-size: 12.6px;
  color: #666;
}
.sidebar .tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sidebar .tag-cloud a {
  padding: 8px 12px;
  background-color: #f0f0f0;
  border-radius: 20px;
  color: #666;
  font-size: 12.6px;
  transition: all 0.3s ease;
}
.sidebar .tag-cloud a:hover {
  background-color: #e53935;
  color: #fff;
}

.search-container {
  position: relative;
  width: 500px;
  margin: 0;
}
.search-container .search-field {
  width: 500px;
  padding: 12px 40px 12px 20px;
  border: 1px solid #ddd;
  border-radius: 25px;
  background-color: #f0f0f0;
  font-size: 14px;
  transition: all 0.3s ease;
}
.search-container .search-field:focus {
  outline: none;
  border-color: #0073aa;
  box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}
.search-container .search-submit {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 0;
  font-size: 18px;
}
.search-container .search-submit:hover {
  color: #0073aa;
}
.search-container .search-suggestions {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-top: 5px;
  z-index: 1000;
  max-height: 400px;
  overflow-y: auto;
}
.search-container .search-suggestions .suggestion-item {
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.search-container .search-suggestions .suggestion-item:hover, .search-container .search-suggestions .suggestion-item.selected {
  background-color: #f0f0f0;
}
.search-container .search-suggestions .suggestion-item .suggestion-content {
  display: flex;
  align-items: center;
}
.search-container .search-suggestions .suggestion-item .suggestion-tag {
  color: #0073aa;
  font-size: 14px;
}
.search-container .search-suggestions .suggestion-item .suggestion-tag::before {
  content: "#";
}

.hero {
  background-color: #e53935;
  padding: 40px 20px;
  text-align: center;
  color: #fff;
}
.hero h1 {
  font-size: 32px;
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.2;
}
.hero p {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .hero {
    padding: 24px 16px;
  }
  .hero h1 {
    font-size: 24px;
  }
}

.category-nav {
  background: #fff;
  padding: 1rem 0;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.category-nav ul {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.category-nav li a {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  background: #f5f5f5;
  transition: all 0.3s ease;
}
.category-nav li a:hover {
  background: #333;
  color: #fff;
}
.category-nav li.active a {
  background: #333;
  color: #fff;
}

.video-card {
  background: #fff;
  margin-bottom: 20px;
  display: flex;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.video-card:last-child {
  margin-bottom: 30px;
}
.video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.video-card .video-thumbnail {
  flex: 0 0 320px;
  height: 180px;
  margin-right: 16px;
  border-radius: 8px;
  position: relative;
  overflow: visible;
}
.video-card .video-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.video-card .video-thumbnail .video-category {
  display: block !important;
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  z-index: 10;
  pointer-events: none;
}
.video-card .video-info {
  flex: 1;
  padding: 0;
}
.video-card .video-info h2 {
  font-size: 18.004px;
  margin-bottom: 12px;
  line-height: 1.4;
  color: #000;
}
.video-card .video-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.video-card .video-tags span {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  background: #f5f5f5;
  border-radius: 4px;
  font-size: 0.8rem;
  color: #666;
}
.video-card .video-tags span.more-tags {
  background: #eee;
  color: #888;
}
.video-card .channel-name {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}
.video-card .video-meta {
  font-size: 13.006px;
  color: #666;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  line-height: 1;
}
.video-card .video-meta > * {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.video-card .video-meta .channel-name {
  font-weight: 500;
}
.video-card .video-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .video-card {
    flex-direction: column;
    padding: 12px;
  }
  .video-card .video-thumbnail {
    flex: none;
    width: 50%;
    height: 0;
    padding-bottom: 28.125%;
    margin-right: 0;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) and (max-width: 600px) {
  .video-card .video-thumbnail {
    width: min(100%, 300px);
    padding-bottom: min(56.25%, 168.75px);
  }
}
@media (max-width: 768px) {
  .video-card .video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .video-card .video-info h2 {
    font-size: 16.002px;
    margin-bottom: 8px;
  }
  .video-card .video-tags span {
    font-size: 11.998px;
    padding: 4px 8px;
  }
  .video-card .channel-name,
  .video-card .video-meta,
  .video-card .video-desc {
    font-size: 13.006px;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 30px 0;
}
.pagination .nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border-radius: 4px;
  border: 1px solid #ddd;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.pagination a.current,
.pagination span.current {
  background-color: #e53935;
  color: #fff;
  border-color: #e53935;
}
.pagination a:hover:not(.current),
.pagination span:hover:not(.current) {
  background-color: #f0f0f0;
}
.pagination a.dots,
.pagination span.dots {
  border: none;
  padding: 0 4px;
  background: none;
}
@media (max-width: 768px) {
  .pagination {
    gap: 4px;
  }
  .pagination .nav-links {
    gap: 4px;
  }
  .pagination a,
  .pagination span {
    min-width: 32px;
    height: 32px;
    padding: 0 6px;
    font-size: 12.6px;
  }
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-cloud a {
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12.6px;
  text-decoration: none;
  background-color: #f0f0f0;
  border: none;
  color: #666;
  transition: all 0.3s ease;
}
.tag-cloud a:hover {
  background-color: #e53935;
  color: #fff;
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .tag-cloud {
    gap: 6px;
  }
  .tag-cloud a {
    padding: 6px 12px;
    font-size: 11.9px;
  }
}

.popular-tags ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.popular-tags li {
  margin-bottom: 8px;
}
.popular-tags li:last-child {
  margin-bottom: 0;
}

.youtube-fields {
  margin: 15px 0;
}
.youtube-fields label {
  display: inline-block;
  min-width: 150px;
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
}
.youtube-fields input[type=url],
.youtube-fields input[type=text],
.youtube-fields input[type=datetime-local],
.youtube-fields input[type=number],
.youtube-fields textarea {
  width: 100%;
  max-width: 500px;
  padding: 5px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
}
.youtube-fields input[type=url]:focus,
.youtube-fields input[type=text]:focus,
.youtube-fields input[type=datetime-local]:focus,
.youtube-fields input[type=number]:focus,
.youtube-fields textarea:focus {
  outline: none;
  border-color: #e53935;
  box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.1);
}
.youtube-fields textarea {
  resize: vertical;
  min-height: 100px;
}
.youtube-fields .button {
  margin-top: 15px;
  margin-right: 10px;
  padding: 8px 16px;
  background-color: #f0f0f0;
  border: none;
  border-radius: 4px;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.youtube-fields .button:hover {
  background-color: #e3e3e3;
}
.youtube-fields .button.youtube-fetch-button {
  background-color: #e53935;
  color: #fff;
}
.youtube-fields .button.youtube-fetch-button:hover {
  background-color: #e2231e;
}

.breadcrumb {
  max-width: 1200px;
  margin: 0 auto 20px;
  padding: 20px;
  font-size: 14px;
  color: #666;
}
.breadcrumb a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumb a:hover {
  color: #333;
  text-decoration: underline;
}
.breadcrumb span {
  color: #333;
}

.single-post {
  max-width: 1200px;
  margin: 0 auto 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}
.single-post .post-header {
  margin-bottom: 2rem;
}
.single-post .post-meta-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.single-post .post-categories {
  color: #666;
  font-size: 0.9rem;
}
.single-post .post-categories a {
  color: #666;
  text-decoration: none;
}
.single-post .post-categories a:hover {
  text-decoration: underline;
}
.single-post .post-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 1rem 0;
  line-height: 1.4;
}
.single-post .post-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: #666;
  font-size: 0.9rem;
}
.single-post .post-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.single-post .post-meta-item i {
  color: #888;
}
.single-post .post-meta-item a {
  color: #666;
  text-decoration: none;
}
.single-post .post-meta-item a:hover {
  text-decoration: underline;
}
.single-post .video-wrapper {
  margin: 2rem 0;
}
.single-post .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.single-post .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.single-post .post-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.related-videos {
  margin-top: 3rem;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.related-videos .section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #eee;
}
.related-videos .main-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.related-videos .main-content .video-card {
  margin: 0;
}
.related-videos .video-card {
  display: flex;
  padding: 1.5rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: transform 0.2s ease;
  width: 100%;
}
.related-videos .video-card .video-thumbnail {
  flex: 0 0 320px;
  height: 180px;
  margin-right: 1.5rem;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.related-videos .video-card .video-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.related-videos .video-card .video-info {
  flex: 1;
  min-width: 0;
}
.related-videos .video-card .video-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 0.8rem 0;
  color: #333;
}
.related-videos .video-card .video-info .video-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.related-videos .video-card .video-info .video-tags span {
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
  background: #f5f5f5;
  border-radius: 4px;
  color: #666;
}
.related-videos .video-card .video-info .video-meta {
  font-size: 0.9rem;
  color: #666;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}
.related-videos .video-card .video-info .video-meta > * {
  position: relative;
  padding-right: 0.8rem;
}
.related-videos .video-card .video-info .video-meta > *:not(:last-child)::after {
  content: "・";
  position: absolute;
  right: 0;
  color: #ccc;
}
.related-videos .video-card .video-info .video-meta .channel-name {
  margin: 0;
  font-weight: 500;
}
.related-videos .video-card .video-info .video-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}
.related-videos .video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1012px) {
  .related-videos .video-card {
    flex-direction: column;
    padding: 1.5rem;
  }
  .related-videos .video-card .video-thumbnail {
    flex: none;
    width: 70%;
    height: 0;
    padding-bottom: 39.375%;
    margin-right: 0;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
  }
  .related-videos .video-card .video-info h3 {
    font-size: 1.1rem;
    text-align: center;
  }
  .related-videos .video-card .video-info .video-meta {
    justify-content: center;
  }
  .related-videos .video-card .video-info .video-tags {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .related-videos {
    padding: 1rem;
  }
  .related-videos .video-card {
    flex-direction: column;
    padding: 1rem;
  }
  .related-videos .video-card .video-thumbnail {
    flex: none;
    width: 50%;
    height: 0;
    padding-bottom: 28.125%;
    margin-right: 0;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) and (max-width: 600px) {
  .related-videos .video-card .video-thumbnail {
    width: min(100%, 300px);
    padding-bottom: min(56.25%, 168.75px);
  }
}
@media (max-width: 768px) {
  .related-videos .video-card .video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .related-videos .video-card .video-info h3 {
    font-size: 1rem;
  }
  .related-videos .video-card .video-info .video-meta {
    font-size: 0.85rem;
  }
  .related-videos .video-card .video-info .video-desc {
    font-size: 0.85rem;
  }
}

.related-videos {
  margin-top: 3rem;
}
.related-videos .section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #333;
}
.related-videos .video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.single-post {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: visible;
  margin-bottom: 30px;
}
.single-post .post-header {
  padding: 25px 30px;
  background: linear-gradient(to bottom, #f8f9fa, #fff);
  border-bottom: 1px solid #eee;
}
.single-post .post-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}
.single-post .video-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.single-post .video-tags span {
  background: #f0f2f5;
  color: #1a73e8;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 0.9em;
  transition: background-color 0.2s;
}
.single-post .video-tags span:hover {
  background: #e8f0fe;
}
.single-post .post-categories {
  color: #666;
  font-size: 0.9em;
}
.single-post .post-categories a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}
.single-post .post-categories a:hover {
  color: #1a73e8;
}
.single-post .post-title {
  font-size: 1.8em;
  margin: 15px 0;
  line-height: 1.4;
  color: #1a1a1a;
}
.single-post .post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #666;
  font-size: 0.9em;
}
.single-post .post-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.single-post .post-meta-item i {
  color: #1a73e8;
}
.single-post .video-description-accordion {
  margin: 20px 30px;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.single-post .accordion-button {
  width: 100%;
  padding: 15px 20px;
  background: #f8f9fa;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s;
  color: #1a73e8;
}
.single-post .accordion-button:hover {
  background: #e8f0fe;
}
.single-post .accordion-button i {
  transition: transform 0.3s;
  color: #1a73e8;
}
.single-post .accordion-button i.active {
  transform: rotate(180deg);
}
.single-post .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #fff;
}
.single-post .accordion-content.active {
  max-height: none;
  overflow-y: visible;
}
.single-post .video-description {
  margin: 0;
  padding: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.6;
  background: none;
  border: none;
}
.single-post .video-description a {
  color: #1a73e8;
  text-decoration: none;
  word-break: break-all;
}
.single-post .video-description a:hover {
  text-decoration: underline;
}
.single-post .video-description .hashtag {
  color: #1a73e8;
}
.single-post .video-description .hashtag:hover {
  text-decoration: underline;
  opacity: 0.8;
}
.single-post .post-content {
  padding: 0 30px 30px;
}
.single-post .video-wrapper {
  margin: 2rem 0;
  width: 100%;
}
.single-post .video-wrapper .video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.single-post .video-wrapper .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .video-wrapper .video-container.shorts {
    max-width: 100%;
    padding-bottom: 177.77%;
  }
}
.breadcrumb-wrapper {
  margin-bottom: 2rem;
  max-width: 1216px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.content-wrapper {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  margin: 0 auto 2rem;
  max-width: 1216px;
  width: 100%;
}
.content-wrapper .breadcrumb-wrapper {
  margin-bottom: 2rem;
}
.content-wrapper .page-header {
  margin-bottom: 3rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  text-align: center;
}
.content-wrapper .page-header .page-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 1rem;
}
.content-wrapper .page-header .page-description {
  color: #666;
  font-size: 1rem;
  margin: 0;
}
.content-wrapper .page-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  max-width: 800px;
  margin: 0 auto;
}
.content-wrapper .page-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
  color: #333;
}
.content-wrapper .page-content p {
  margin-bottom: 1.5rem;
}
.content-wrapper .page-content ul {
  margin: 1rem 0 2rem;
  padding-left: 1.5rem;
}
.content-wrapper .page-content ul li {
  margin-bottom: 0.75rem;
  list-style-type: disc;
  line-height: 1.6;
}
.content-wrapper .page-content a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.2s;
}
.content-wrapper .page-content a:hover {
  color: #004c99;
  text-decoration: underline;
}
.content-wrapper .page-content .policy-date {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
  color: #666;
  font-size: 0.9rem;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .content-wrapper {
    padding: 1.5rem;
    margin: 1rem;
  }
  .content-wrapper .page-header {
    margin-bottom: 2rem;
  }
  .content-wrapper .page-header .page-title {
    font-size: 1.5rem;
  }
  .content-wrapper .page-content h2 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
  }
  .content-wrapper .page-content ul {
    padding-left: 1.2rem;
  }
}
body {
  background-color: #fff;
}

.page-template-page-contact {
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin: 0 auto 3rem;
  max-width: 1120px;
  width: 100%;
  padding: 48px;
}

.breadcrumb-wrapper {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}

.privacy-policy {
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin: 0 auto 3rem;
  max-width: 1120px;
  width: 100%;
  padding: 48px;
}
.privacy-policy .page-header {
  margin-bottom: 3rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  text-align: center;
}
.privacy-policy .page-header .page-title {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 4px;
  text-align: center;
}
.privacy-policy .page-header .page-description {
  color: #666;
  font-size: 1rem;
  margin: 0;
}
.privacy-policy .page-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  max-width: 800px;
  margin: 0 auto;
}
.privacy-policy .page-content .policy-date {
  text-align: right;
  margin-top: 3rem;
  color: #666;
  font-size: 0.9rem;
}
.privacy-policy .page-content .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 2rem;
}
.privacy-policy .page-content .wpcf7-form label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: #333;
  font-size: 1rem;
}
.privacy-policy .page-content .wpcf7-form label .required {
  color: #e53935;
  margin-left: 0.5rem;
  font-size: 0.875rem;
}
.privacy-policy .page-content .wpcf7-form .wpcf7-form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background-color: #fff;
  transition: all 0.3s ease;
}
.privacy-policy .page-content .wpcf7-form .wpcf7-form-control:focus {
  outline: none;
  border-color: #e53935;
  box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.1);
}
.privacy-policy .page-content .wpcf7-form .wpcf7-form-control.wpcf7-textarea {
  min-height: 150px;
  resize: vertical;
}
.privacy-policy .page-content .wpcf7-form .wpcf7-form-control.wpcf7-submit {
  background-color: #e53935;
  color: #fff;
  padding: 1.25rem 3rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 3rem auto 0;
  max-width: 300px;
  text-align: center;
}
.privacy-policy .page-content .wpcf7-form .wpcf7-form-control.wpcf7-submit:hover {
  background-color: #e2231e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(229, 57, 53, 0.2);
}
.privacy-policy .page-content .wpcf7-form .wpcf7-form-control.wpcf7-submit:active {
  transform: translateY(0);
}
.privacy-policy .page-content .wpcf7-form .wpcf7-not-valid-tip {
  color: #e53935;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: block;
  padding-left: 0.5rem;
}
.privacy-policy .page-content .wpcf7-form .wpcf7-response-output {
  margin: 2rem 0 !important;
  padding: 1rem 1.5rem !important;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  border-width: 2px !important;
}
.privacy-policy .page-content .wpcf7-form .wpcf7-response-output.wpcf7-validation-errors {
  background-color: rgba(229, 57, 53, 0.1);
  border-color: rgba(229, 57, 53, 0.3) !important;
  color: #e53935;
}
.privacy-policy .page-content .wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: rgba(76, 175, 80, 0.1);
  border-color: rgba(76, 175, 80, 0.3) !important;
  color: #4caf50;
}

@media screen and (max-width: 768px) {
  .privacy-policy {
    margin: 1rem;
    padding: 24px;
  }
  .privacy-policy .page-header {
    margin-bottom: 2rem;
    padding: 1.5rem;
  }
  .privacy-policy .page-header .page-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
  }
  .privacy-policy .page-content .wpcf7-form .wpcf7-form-control.wpcf7-submit {
    max-width: none;
    width: 100%;
    padding: 0.875rem;
  }
}
.privacy-check {
  margin: 2rem 0;
  padding: 2rem 1.5rem 0 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
}
.privacy-check .acceptance-wrap {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.privacy-check .acceptance-wrap .wpcf7-acceptance {
  margin: 0;
  display: flex;
  align-items: center;
}
.privacy-check .acceptance-wrap .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
  display: flex;
  align-items: center;
  height: 24px;
}
.privacy-check .acceptance-wrap .wpcf7-acceptance input[type=checkbox] {
  margin: 0;
  cursor: pointer;
  width: 24px;
  height: 24px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.privacy-check .acceptance-wrap .wpcf7-acceptance input[type=checkbox]:checked {
  background-color: #e53935;
  border-color: #e53935;
}
.privacy-check .acceptance-wrap .acceptance-text {
  font-size: 1rem;
  line-height: 24px;
  color: #333;
  height: 24px;
  display: flex;
  align-items: center;
}
.privacy-check .acceptance-wrap .acceptance-text a {
  color: #1976d2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.privacy-check .acceptance-wrap .acceptance-text a:hover {
  color: #145ca4;
  text-decoration: underline;
}
.privacy-check .acceptance-wrap .acceptance-text .required {
  color: #e53935;
  margin-left: 0.5rem;
  font-size: 0.875rem;
}

@media screen and (max-width: 768px) {
  .wpcf7-form .wpcf7-form-control {
    padding: 0.875rem;
    font-size: 1rem;
  }
  .wpcf7-form .wpcf7-form-control.wpcf7-submit {
    width: 100%;
    max-width: none;
    padding: 1rem;
    font-size: 1rem;
    margin-top: 2rem;
  }
  .privacy-check {
    padding: 1rem;
    margin: 1.5rem 0;
  }
  .privacy-check .acceptance-wrap {
    gap: 0.75rem;
  }
}
/* recaptcha badge */
.grecaptcha-badge {
  margin-bottom: 80px;
  z-index: 9999;
}

.page-template-page-about {
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin: 0 auto 3rem;
  max-width: 1120px;
  width: 100%;
  padding: 48px;
}

.about-date {
  text-align: right;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.blog-info {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 4px;
}
.blog-info p {
  margin: 0.5rem 0;
}
.blog-info p:first-child {
  margin-top: 0;
}
.blog-info p:last-child {
  margin-bottom: 0;
}

.social-links {
  margin: 1.5rem 0;
}
.social-links p {
  margin: 1rem 0;
}
.social-links a {
  color: #e53935;
  text-decoration: none;
  word-break: break-all;
}
.social-links a:hover {
  text-decoration: underline;
}

.page-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
  color: #333;
}
.page-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: #333;
}
.page-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.page-content ol {
  margin: 1rem 0 2rem;
  padding-left: 1.5rem;
}
.page-content ol li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.page-content a {
  color: #e53935;
  text-decoration: none;
  word-break: break-all;
}
.page-content a:hover {
  text-decoration: underline;
}

.error-page {
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin: 0 auto 3rem;
  max-width: 1120px;
  width: 100%;
  padding: 48px;
}
.error-page .breadcrumb-wrapper {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}
.error-page .page-header {
  margin-bottom: 3rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  text-align: center;
}
.error-page .page-header .page-title {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 4px;
  text-align: center;
}
.error-page .page-header .page-description {
  color: #666;
  font-size: 1rem;
  margin: 0;
}
.error-page .page-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  max-width: 800px;
  margin: 0 auto;
}
.error-page .page-content p {
  margin-bottom: 1.5rem;
}
.error-page .page-content ul {
  margin: 0 0 2rem 1.5rem;
}
.error-page .page-content ul li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.error-page .page-content .error-actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}
.error-page .page-content .error-actions a {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.error-page .page-content .error-actions a.home-link {
  background-color: #e53935;
  color: #fff;
}
.error-page .page-content .error-actions a.home-link:hover {
  background-color: #cd1e1a;
}
.error-page .page-content .error-actions a.contact-link {
  background-color: #f8f9fa;
  color: #333;
}
.error-page .page-content .error-actions a.contact-link:hover {
  background-color: #e9ecef;
}

@media screen and (max-width: 768px) {
  .error-page {
    margin: 1rem;
    padding: 24px;
  }
  .error-page .page-header {
    margin-bottom: 2rem;
    padding: 1.5rem;
  }
  .error-page .page-header .page-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
  }
  .error-page .page-content .error-actions {
    flex-direction: column;
    gap: 1rem;
  }
  .error-page .page-content .error-actions a {
    text-align: center;
  }
}
.error404 {
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin: 0 auto 3rem;
  max-width: 1120px;
  width: 100%;
  padding: 48px;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}
.error-actions a {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.error-actions a.home-link {
  background-color: #e53935;
  color: #fff;
}
.error-actions a.home-link:hover {
  background-color: #cd1e1a;
}
.error-actions a.contact-link {
  background-color: #f8f9fa;
  color: #333;
}
.error-actions a.contact-link:hover {
  background-color: #e9ecef;
}

@media screen and (max-width: 768px) {
  .error404 {
    margin: 1rem;
    padding: 24px;
  }
  .error-actions {
    flex-direction: column;
    gap: 1rem;
  }
  .error-actions a {
    text-align: center;
  }
}
.page-template-page-thanks {
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin: 0 auto 3rem;
  max-width: 1120px;
  width: 100%;
  padding: 48px;
}

@media screen and (max-width: 768px) {
  .page-template-page-thanks {
    margin: 1rem;
    padding: 24px;
  }
}/*# sourceMappingURL=style.css.map */