.wp-block-my-theme-link-card {
    margin: 1em 0;
}

.link-card-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.link-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 30px;
}

.link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.link-card-image-container {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    margin-bottom: 20px;
}

.link-card-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.link-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.link-card-title {
    font-size: 18px!important;
    font-weight: bold;
    color: #333!important;
    margin: 0em!important;
    margin-bottom: 30px!important;
    border: none!important;
}

.link-card-description {
    margin: 0 0 1.5em 0;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.link-card-footer {
    width: 100%;
    display: flex;
    align-items: center;
    border-top: 1px solid #eee;
    margin-top: 1.5em;
    padding: 1em 0 0.5em 0;
    color: #888;
    font-size: 0.95em;
}

.link-card-site-icon img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 6px;
}

.link-card-site-name {
    font-weight: bold;
    letter-spacing: 0.05em;
}


.link-card-wrapper .tokuten {
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  
  .link-card-wrapper .tokuten h2 {
    border-radius: 12px 12px 0 0;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    background-color: #269d46;
    color: #fff;
    padding: 5px 0;
    width: 100%;
    border: none;
    margin: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .link-card-wrapper .tokuten h2:before,
  .link-card-wrapper .tokuten h2:after {
    content: none;
  }
  
  .link-card-wrapper .tokuten h2 img {
    width: 30px;
  }
  
  .link-card-wrapper .tokuten-text {
    padding: 10px;
    border-radius: 0 0 12px 12px;
    border: 1px solid #269d46;
    border-top: none;
    font-size: 14px;
  }
  
  .link-card-wrapper .tokuten-text:has(.link-card-wrapper .tokuten-text-period) {
    padding-bottom: 10px;
  }
  
  .link-card-wrapper .tokuten-text-period {
    text-align: center;
    font-size: 14px;
    color: #0085cd;
    border-top: 1px solid #269d46;
    font-weight: bold;
    margin-bottom: 0 !important;
    padding-top: 10px;
    margin-top: 10px;
  }

  .tokuten-heading {
    position: relative;
    padding: 0.6em 0em 0.8em 0.8em;
    background: #FA9C1C;
    border-radius: 5px;
    color: #fff;
    /*文字色*/
    font-family: "Zen Maru Gothic", serif;
    font-weight: 700;
    margin-bottom: 1em;
    text-align: center;
}

.tokuten-heading:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 50%;
    border: 10px solid transparent;
    border-top: 15px solid #FA9C1C;
    width: 0;
    height: 0;
}

.navi-menu-button {
    display: none;
}

@media screen and (max-width: 600px) {
    .link-card-content {
        padding: 1em 1em 0.5em 1em;
    }
    .link-card-footer {
        padding: 0.7em 0 0.3em 0;
    }
} 