@charset "UTF-8";
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    /* font-family: "Zen Kaku Gothic New", sans-serif; */
    line-height: 1.6;
    color: #F4F5F7;
    overflow-x: hidden;
}

main{
        padding-top: 83px;
        overflow: hidden;
    }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    width: 90%;
}

/* Color Variables */
:root {
    --primary-color: #2c9f8b;
    --secondary-color: #f39c12;
    --accent-color: #e74c3c;
    --text-dark: #000;
    --text-light: #666;
    --background-light: #f8f9fa;
    --white: #ffffff;
    --border-light: #e0e0e0;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #000000;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1e4080;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: #e8692b;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #d68910;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Header */
.header {
    background-color:#F4F5F7;
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo h1 {
    width: 120px;
}

@media (max-width: 768px) {
  .logo h1 {
    width: 90px;
}
}

.footer-info .logo h1 {
    width: 150px;
}
.logo h1 img{
    width: 100%;
    height: auto;
}

.logo .subtitle {
    color: #e8692b;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

@media (min-width: 769px) {
  .nav-list a {
    color: #000;
  }
}

.nav-list a:hover {
    color: var(--primary-color);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #000000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    /* background: linear-gradient(135deg, #2c9f8b 0%, #3498db 100%); */
    color: #000000;
    background-color:#ffffff;
    padding: 120px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero_bk{
  width: 90%;
  max-width: 1200px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0.2;
}

.hero_bk img{
  width: 100%;
  height: auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 300"><polygon fill="rgba(255,255,255,0.1)" points="0,300 1000,300 1000,0"/></svg>');
    background-size: cover;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #000000;;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #000000;;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-video {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
}

.hero-video-item{
  position: absolute;
  top: 18%;
  left: 10%;
  width: 80%;
  height: 51%;
  object-fit: cover;
  z-index: 1;
}

.hero-video img{
    width: 90%;
    height: auto;
}

.video-placeholder {
    background-color: #2c9f8b;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    max-width: 400px;
}

.video-placeholder:hover {
    background-color: #2c9f8b;
    transform: translateY(-5px);
}

.video-placeholder i {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.video-placeholder p {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
}

.broadcast-info {
    background-color: rgba(255,255,255,0.1);
    /* backdrop-filter: blur(10px); */
    padding: 2rem 0;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.broadcast-schedule {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 2rem;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.schedule-item i {
    font-size: 2rem;
    color: #e8692b;
}

.schedule-item h4 {
    color: #e8692b;
    margin-bottom: 0.5rem;
}

.schedule-item p {
    color: #000000;;
    margin: 0;
    font-size: 0.9rem;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    width: fit-content;
    margin: 0 auto;
}


.taka_illust_leader{
  width: 130px;
  position: absolute;
  left: -100px;
  top: 0px;
}

@media (max-width: 480px) {
  .taka_illust_channel{
    right: -30px;
    top: 40px;
  } 
}
.taka_illust_channel{
  width: 130px;
  position: absolute;
  right: -100px;
  top: -20px;
}

@media (max-width: 480px) {
  .taka_illust_leader{
    left: -78px;
    top: -27px;
    width: 111px;
  } 
}

.taka_illust_bow{
  width: 130px;
  position: absolute;
  left: -100px;
  top: 50px;
}

@media (max-width: 480px) {
  .taka_illust_bow{
    left: -38px;
    top: 25px;
    width: 100px;
  } 
}

.taka_illust_leader img{
  width: 100%;
  height: auto;
}

.taka_illust_channel img{
  width: 100%;
  height: auto;
}
.taka_illust_bow img{
  width: 100%;
  height: auto;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #000000;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background-color: transparent;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.about-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.about-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.about-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.about-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-item p {
    line-height: 1.8;
}

.leaders {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header p {
    color: #6c757d;
    font-size: 16px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

.taka_illust_leader {
    margin-bottom: 20px;
}

.taka_illust_leader img {
    max-width: 150px;
    height: auto;
}

.leader-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.category-btn {
    background: #fff;
    border: 2px solid #ddd;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
}

.category-btn:hover {
    border-color: #2c9f8b;
    color: #2c9f8b;
}

.category-btn.active {
    background: #2c9f8b;
    border-color: #2c9f8b;
    color: white;
}

.leaders-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.leader-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    width: 320px;
    max-width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.leader-image {
    text-align: center;
    margin-bottom: 20px;
}

.leader-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f8f9fa;
}

.leader-content {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.leader-category {
    background: #e9ecef;
    color: #495057;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    width: fit-content;
}

.leader-name {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.leader-position {
    color: #666;
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 500;
}

.leader-catch {
    color: #2c9f8b;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
    font-style: italic;
    line-height: 1.4;
	text-align:left;
}

.leader-description {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
    font-size: 13px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(1.5em * 4);
}

.leader-episode {
    padding: 10px 0 15px;
    border-top: 1px solid #eee;
    margin-bottom: 15px;
}

.leader-episode small {
    color: #e8692b;
	display: flex
}

.leader-action {
    margin-top: auto;
}

.leader-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2c9f8b, #2c9f8b);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,123,255,0.3);
}

.leader-btn:hover {
    background: linear-gradient(135deg, #e8692b, #e8692b);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.4);
    text-decoration: none;
    color: white;
}

.leader-btn i {
    font-size: 16px;
}

.leaders-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 18px;
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .leaders-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .leader-card {
        width: 100%;
        max-width: 400px;
    }
    
    .leader-categories {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .category-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .leader-card {
        padding: 25px 20px 20px;
    }
    
    .leader-image img {
        width: 100px;
        height: 100px;
    }
    
    .leader-btn {
        font-size: 12px;
        padding: 10px 16px;
    }
}

/* Schedule Section */
.schedule {
    background-color: #ffffff;;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.schedule-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.schedule-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.schedule-card h3 i {
    color: #e8692b;
}

.time-slot {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #ffffff;;
    border-radius: 8px;
    border: 1px solid #2c9f8b;
}

.time-slot h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.time-slot p {
    font-weight: 500;
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 0.5rem;
}

.time-slot small {
    color: #000000;
    font-size: 0.85rem;
}

.schedule-details ul {
    list-style: none;
}

.schedule-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
    color: #000000;
}

.schedule-details li:last-child {
    border-bottom: none;
}

.channel-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

/* Archive Section */
.archive {
    background-color: #ffffff;
}

.archive-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.archive-filter select {
    padding: 10px 15px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    background-color: #ffffff;
    cursor: pointer;
}

.archive-filter select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.archive-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #ffffff;;
    border-radius: 15px;
    grid-column: 1 / -1;
}

.archive-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.archive-placeholder h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    background-color: #ffffff;;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #000000;
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin: 0;
    color: #000000;
}

.contact-form-section {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
	    height: 395px;
    overflow-y: scroll;
}

.contact-form-section h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #000000;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-info p {
    color: #000000;;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #e8692b;
    transform: translateY(-2px);
}

.footer-links h4 {
    margin-bottom: 1rem;
    font-weight: bold;
    font-size: 1.1rem;
    color: #ffffff;
    border-bottom: 1px solid #fff;
    padding-bottom: 4px;;
}

@media (max-width: 768px){
  .footer-links h4{
    text-align: left;
  }
}


.footer-links ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

@media (max-width: 768px){
  .footer-links ul {
    gap: 20px;
  }
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 12px;
}

.footer-links a:hover {
    color: #e8692b;
}

.footer-broadcast h4 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.1rem;
    border-bottom: 1px solid #fff;
    padding-bottom: 4px;;
}

@media (max-width: 768px){
  .footer-broadcast h4{
    text-align: left;
  }
}

.footer-broadcast p {
    color: #ffffff;;
    margin-bottom: 0.5rem;
    font-size: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Utilities */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: #e8692b;
    transform: translateY(-2px);
}

/* WordPress specific styles */
.wp-block-group {
    margin-bottom: 2rem;
}

.wp-block-image {
    margin-bottom: 1rem;
}

.wp-block-quote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    margin: 1rem 0;
    font-style: italic;
}

.wp-block-button .wp-block-button__link {
    background-color: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.wp-block-button .wp-block-button__link:hover {
    background-color: #1e4080;
    transform: translateY(-2px);
}

.alignwide {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
}

.screen-reader-text {
    position: absolute !important;
    clip-path: inset(50%);
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Responsive Design Imports (mobile-first approach) */
@import url('responsive.css');

/*詳細ページ*/

.post_content p {
line-height: 1.8;
letter-spacing: 0.08em;
margin: 0 0 2em 0;
}
.post_content li {
line-height: 1.5;
letter-spacing: 0.08em;
margin: 0 0 0.5em 0;
}
.post_content h1,
.post_content h2,
.post_content h3,
.post_content h4,
.post_content h5,
.post_content h6 {
clear: both;
margin: 0 0 10px 0;
}
.post_content h1 {
display: block;
line-height: 1.5;
padding-bottom: 8px;
font-size: 28px;
}
.post_content h2 {
display: block;
line-height: 1.5;
padding-bottom: 8px;
font-size: 26px;
}
.post_content h3 {
font-size: 24px;
line-height: 24px;
font-weight: 500;
padding: 6px 0px;
}
.post_content h4 {
font-size: 18px;
line-height: 28px;
font-weight: 500;
}
.post_content h5 {
font-size: 16px;
line-height: 24px;
font-weight: 500;
}
.post_content a {
border-bottom: 2px solid #FF0000;
transition: 0.25s all;
}
.post_content a:hover {
transition: 0.25s all;
color: #FF0000;
}
.post_content h6 {
font-size: 100%;
font-weight: 500;
line-height: 24px;
}
@media screen and (max-width: 1200px) {
  .post_content h1 {
  font-size: 18px;
  line-height: 27px;
}
  .post_content h2 {
  font-size: 20px;
  font-weight: 500;
}
  .post_content h3 {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}
  .post_content h4 {
  font-size: 15px;
  line-height: 23px;
}
  .post_content p,  a,  li {
  font-size: 14px;
}
  .post_content h5 {
  font-size: 13px;
  line-height: 26px;
}
}
.post_content img[class*=align],
.post_content img[class*=wp-image-],
.post_content img[class*=attachment-],
.post_content img.size-full,
.post_content img.size-large,
.post_content .wp-post-image,
.post_content img {
height: auto;
max-width: 100%;
margin-bottom: 31px;
}
.post_content li,
.post_content dt,
.post_content dd {
line-height: 2.2;
}
.post_content ul,
.post_content ol,
.post_content dl {
margin-bottom: 24px;
}
.post_content ol {
list-style: decimal outside none;
margin-left: 1.5em;
}
.post_content ul {
list-style: circle outside none;
margin-left: 1.3em;
}
.post_content li > ul,
.post_content li > ol {
margin-bottom: 0;
}
.post_content dt {
font-weight: bold;
}
.post_content dd {
margin-bottom: 1em;
}
.post_content blockquote {
margin: 0 0 25px 0;
padding: 27px 30px 0;
background: #fff;
border: 1px solid #ccc;
box-shadow: 0px 4px 0px 0px #f8f8f8;
position: relative;
}
.post_content blockquote:before {
content: '"';
font-style: italic;
font-size: 30px;
font-weight: normal;
line-height: 40px;
width: 30px;
height: 30px;
position: absolute;
top: 5px;
left: 10px;
color: #5cbcd7;
}
.post_content blockquote:after {
content: '"';
font-style: italic;
font-size: 30px;
font-weight: normal;
text-align: left;
line-height: 60px;
width: 30px;
height: 30px;
position: absolute;
bottom: 7px;
right: -2px;
color: #5cbcd7;
}
.post_content blockquote cite {
border-top: 1px dotted #aaa;
display: block;
padding: 20px 0 0 0;
font-style: italic;
text-align: right;
font-size: 90%;
}
.post_content .wp-caption {
margin-bottom: 24px;
background: #f8f8f8;
border: 1px solid #ccc;
padding: 5px;
max-width: 100%;
-webkit-border-radius: 5px;
border-radius: 5px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.post_content .wp-caption-text {
text-align: center;
font-size: 12px;
font-style: italic;
line-height: 1.5;
margin: 9px auto;
}
.post_content .wp-caption img[class*=wp-image-] {
display: block;
margin: 0 auto;
}

/* Contact Section Styles */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact .section-header p {
    color: #6c757d;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
}

.contact .section-header h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.3;
}

.taka_illust_bow {
    margin-bottom: 20px;
}

.taka_illust_bow img {
    max-width: 120px;
    height: auto;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

/* Contact Info Styles */
.contact-info {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: fit-content;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: bold;
    color: #2c9f8b;
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #2c9f8b;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #2c9f8b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 159, 139, 0.3);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    font-size: 24px;
    color: #2c9f8b;
    margin-top: 5px;
    transition: color 0.3s ease;
}

.contact-item:hover i {
    color: white;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
    transition: color 0.3s ease;
}

.contact-item:hover h4 {
    color: white;
}

.contact-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.contact-item:hover p {
    color: white;
}

.contact-item a {
    color: #2c9f8b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item:hover a {
    color: white;
    text-decoration: underline;
}

/* Contact Form Styles */
.contact-form-section {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-section h3 {
    font-size: 24px;
    font-weight: bold;
    color: #2c9f8b;
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #2c9f8b;
}

/* Form Elements */
.wpcf7-form .form-group {
    margin-bottom: 25px;
}

.wpcf7-form input.form-input,
.wpcf7-form select.form-select,
.wpcf7-form textarea.form-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
    box-sizing: border-box;
}

.wpcf7-form input.form-input:focus,
.wpcf7-form select.form-select:focus,
.wpcf7-form textarea.form-textarea:focus {
    outline: none;
    border-color: #2c9f8b;
    background: white;
    box-shadow: 0 0 0 3px rgba(44, 159, 139, 0.1);
}

.wpcf7-form input.form-input::placeholder,
.wpcf7-form textarea.form-textarea::placeholder {
    color: #adb5bd;
    font-style: italic;
}

.wpcf7-form select.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 50px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.wpcf7-form textarea.form-textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.6;
}

.form-submit-group {
    text-align: center;
    margin-top: 35px;
}

.wpcf7-form input.form-submit {
    background: linear-gradient(135deg, #2c9f8b, #228b7a);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(44, 159, 139, 0.3);
    min-width: 200px;
}

.wpcf7-form input.form-submit:hover {
    background: linear-gradient(135deg, #228b7a, #1e7b68);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 159, 139, 0.4);
}

.wpcf7-form input.form-submit:active {
    transform: translateY(-1px);
}

/* Privacy Policy */
.privacy-group {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wpcf7-form input.privacy-checkbox {
    margin: 0;
    width: auto;
    padding: 0;
    transform: scale(1.2);
    accent-color: #2c9f8b;
    background: none;
    border: none;
}

.privacy-group label {
    margin: 0;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

/* Contact Form 7 Response Messages */
.wpcf7-response-output {
    background: #f8f9fa;
    border: 2px solid #2c9f8b;
    color: #2c9f8b;
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: 600;
    text-align: center;
}

.wpcf7-mail-sent-ok {
    background: #d4edda;
    border-color: #2c9f8b;
    color: #155724;
}

.wpcf7-mail-sent-ng,
.wpcf7-aborted,
.wpcf7-spam {
    background: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

.wpcf7-validation-errors {
    background: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}

/* Field Validation Errors */
.wpcf7-form .wpcf7-not-valid {
    border-color: #dc3545 !important;
    background: #fff5f5 !important;
}

.wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: block;
    font-weight: 500;
}

/* Loading Animation */
.wpcf7-form.submitting input.form-submit {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    position: relative;
}

.wpcf7-form.submitting input.form-submit:after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* WPCF7 Spinner Override */
.wpcf7-spinner {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact .section-header h2 {
        font-size: 28px;
    }
    
    .contact-info,
    .contact-form-section {
        padding: 30px 20px;
    }
    
    .contact-item {
        padding: 15px;
    }
    
    .contact-item i {
        font-size: 20px;
    }
    
    .wpcf7-form input.form-input,
    .wpcf7-form select.form-select,
    .wpcf7-form textarea.form-textarea {
        padding: 12px 15px;
        font-size: 16px; /* iOS zoom prevention */
    }
    
    .wpcf7-form input.form-submit {
        padding: 15px 30px;
        font-size: 16px;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .contact-content {
        padding: 0 15px;
    }
    
    .contact-info h3,
    .contact-form-section h3 {
        font-size: 20px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-item i {
        margin-top: 0;
    }
    
    .wpcf7-form input.form-submit {
        width: 100%;
        min-width: auto;
    }
}


/* Sponsor Section */
.sponsor {
    background: #f8f9fa;
    padding: 4rem 0;
}

.sponsor-content {
    margin-top: 3rem;
}

.sponsor-grid {
    display: grid;
    gap: 2rem;
    align-items: start;
    margin: 50px 0;
}

/* 大スポンサー専用グリッド（2カラム） */
.sponsor-grid-sponsor_dai {
    grid-template-columns: repeat(2, 1fr);
}

/* 中スポンサー専用グリッド（3カラム） */
.sponsor-grid-sponsor_tyu {
    grid-template-columns: repeat(3, 1fr);
}

/* 小スポンサー専用グリッド（4カラム） */
.sponsor-grid-sponsor_syou {
    grid-template-columns: repeat(4, 1fr);
}

.sponsor-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.sponsor-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sponsor-thumbnail {
    display: flex;
    align-items: center;
    justify-content: center;
/*     padding: 1.5rem; */
}

.sponsor-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
}

.sponsor-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    padding: 2rem 0;
}

.sponsor-placeholder i {
    color: #bdc3c7;
}

.sponsor-placeholder p {
    margin-top: 0.5rem;
    font-weight: 500;
}

.sponsor-description {
    color: #6c757d;
    line-height: 1.5;
    margin-top: auto;
    padding: 0 1.5rem 1.5rem;
}

/* スポンサーサイズ別スタイル */

/* 大スポンサー */
.sponsor-large .sponsor-placeholder {
    min-height: 200px;
}

.sponsor-large .sponsor-placeholder i {
    font-size: 4rem;
}

.sponsor-large .sponsor-placeholder p {
    font-size: 1.2rem;
}

.sponsor-large .sponsor-description {
    font-size: 1rem;
}

/* 中スポンサー */
.sponsor-medium .sponsor-placeholder {
    min-height: 150px;
}

.sponsor-medium .sponsor-placeholder i {
    font-size: 3rem;
}

.sponsor-medium .sponsor-placeholder p {
    font-size: 1rem;
}

.sponsor-medium .sponsor-description {
    font-size: 0.9rem;
}

/* 小スポンサー */
.sponsor-small .sponsor-placeholder {
    min-height: 100px;
}

.sponsor-small .sponsor-placeholder i {
    font-size: 2rem;
}

.sponsor-small .sponsor-placeholder p {
    font-size: 0.8rem;
}

.sponsor-small .sponsor-description {
    font-size: 0.8rem;
}

/* タブレット対応（1024px以下） */
@media (max-width: 1024px) {
    /* 大スポンサー: 2カラムのまま */
    .sponsor-grid-sponsor_dai {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* 中スポンサー: 2カラムに変更 */
    .sponsor-grid-sponsor_tyu {
        grid-template-columns: repeat(2, 1fr);
    }
    .sponsor-grid-sponsor_tyu .sponsor-card{
        width:80%;
        margin:0 auto;
    }
    
    /* 小スポンサー: 3カラムに変更 */
    .sponsor-grid-sponsor_syou {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* スマートフォン対応（768px以下） */
@media (max-width: 768px) {
    .sponsor-grid {
        gap: 1.5rem;
    }
    
    /* 大スポンサー: 1カラムに変更 */
    .sponsor-grid-sponsor_dai {
        grid-template-columns: 1fr;
    }
    
    /* 中スポンサー: 2カラムのまま */
    .sponsor-grid-sponsor_tyu {
        grid-template-columns: repeat(2, 1fr);
    }

    .sponsor-grid-sponsor_tyu .sponsor-card{
        width:100%;
    }
    
    /* 小スポンサー: 2カラムに変更 */
    .sponsor-grid-sponsor_syou {
        grid-template-columns: repeat(2, 1fr);
    }

    .sponsor-grid-sponsor_syou .sponsor-card{
        width:80%;
        margin:0 auto;
    }
}

/* 小画面対応（480px以下） */
@media (max-width: 480px) {
    .sponsor-grid {
        gap: 1rem;
    }
    
    /* 大スポンサー: 1カラムのまま */
    .sponsor-grid-sponsor_dai {
        grid-template-columns: 1fr;
    }
    
    /* 中スポンサー: 1カラムに変更 */
    .sponsor-grid-sponsor_tyu {
        grid-template-columns: 1fr;
    }

    .sponsor-grid-sponsor_tyu .sponsor-card{
        width:80%;
        margin:0 auto;
    }
    
    /* 小スポンサー: 2カラムのまま（最小サイズでも区別） */
    .sponsor-grid-sponsor_syou {
        grid-template-columns: repeat(2, 1fr);
    }
}