/* test */

  * {
      margin: 0;
      padding: 0;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  }

  body {
      background-color: #fafafa;
      color: #333;
  }

  header {
      background-color: #ffffff;
      -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      padding: 15px 0;
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      z-index: 100;
  }

  .header-container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }

  .logo {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
  }

  .logo img {
      height: 30px;
      margin-right: 10px;
  }

  .logo-text {
      font-size: 18px;
      font-weight: 600;
      color: #FF7A45;
  }

  .header-links a {
      margin-left: 20px;
      text-decoration: none;
      color: #555;
      font-size: 14px;
      font-weight: 500;
      -webkit-transition: color 0.3s;
      transition: color 0.3s;
      padding: 6px 12px;
      border-radius: 20px;
  }

  .header-links a:hover {
      color: #FF7A45;
      background-color: rgba(255, 122, 69, 0.1);
  }

  .hero {
      background: linear-gradient(135deg, #FF7A45, #FF9F45);
      color: white;
      padding: 60px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
  }

  .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.1)' fill-rule='evenodd'/%3E%3C/svg%3E");
      opacity: 0.4;
  }

  .hero h1 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 10px;
      position: relative;
  }

  .hero p {
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto 30px;
      position: relative;
  }

  .search-container {
      max-width: 700px;
      margin: 20px auto;
      position: relative;
      z-index: 1;
  }

  .search-box {
      width: 100%;
      padding: 16px 20px 16px 55px;
      border: none;
      border-radius: 30px;
      font-size: 16px;
      -webkit-box-shadow: 0 4px 20px rgba(255, 122, 69, 0.2);
      box-shadow: 0 4px 20px rgba(255, 122, 69, 0.2);
      -webkit-transition: all 0.3s;
      transition: all 0.3s;
  }

  .search-box:focus {
      outline: none;
      -webkit-box-shadow: 0 6px 24px rgba(255, 122, 69, 0.3);
      box-shadow: 0 6px 24px rgba(255, 122, 69, 0.3);
  }

  .search-icon {
      position: absolute;
      left: 20px;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      color: #FF7A45;
  }

  .content {
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 40px;
  }

  .sidebar {
      width: 280px;
      -ms-flex-negative: 0;
      flex-shrink: 0;
  }

  .main-content {
      -webkit-box-flex: 1;
      -ms-flex-positive: 1;
      flex-grow: 1;
  }

  .sidebar-section {
      margin-bottom: 25px;
      background: #fff;
      border-radius: 12px;
      padding: 22px;
      -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
      -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
      transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
      transition: transform 0.3s, box-shadow 0.3s;
      transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  }

  .sidebar-section:hover {
      -webkit-transform: translateY(-2px);
      transform: translateY(-2px);
      -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  }

  .sidebar-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 15px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      color: #333;
  }

  .sidebar-title svg {
      color: #FF7A45;
  }

  .sidebar-menu li {
      list-style: none;
      margin: 8px 0;
      border-radius: 8px;
      -webkit-transition: background-color 0.3s, -webkit-transform 0.2s;
      transition: background-color 0.3s, -webkit-transform 0.2s;
      transition: background-color 0.3s, transform 0.2s;
      transition: background-color 0.3s, transform 0.2s, -webkit-transform 0.2s;
  }

  .sidebar-menu li:hover {
      background-color: rgba(255, 122, 69, 0.08);
      -webkit-transform: translateX(3px);
      transform: translateX(3px);
  }

  .sidebar-menu a {
      text-decoration: none;
      color: #555;
      display: block;
      font-size: 14px;
      padding: 10px 12px;
      border-radius: 8px;
  }

  .sidebar-menu a:hover {
      color: #FF7A45;
  }

  .manual-header {
      margin-bottom: 30px;
  }

  .manual-title {
      font-size: 32px;
      font-weight: 700;
      color: #333;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
  }

  .manual-title::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 60px;
      height: 4px;
      background: #FF7A45;
      border-radius: 2px;
  }

  .manual-description {
      color: #666;
      line-height: 1.7;
      font-size: 16px;
  }

  .divider {
      height: 1px;
      background-color: #eee;
      margin: 35px 0;
  }

  .section-title {
      font-size: 22px;
      color: #333;
      margin-bottom: 25px;
      font-weight: 600;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
  }

  .section-title::before {
      content: '';
      width: 6px;
      height: 22px;
      background: #FF7A45;
      margin-right: 12px;
      border-radius: 3px;
      display: inline-block;
  }

  .topic-grid {
      display: -ms-grid;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 25px;
  }

  .topic-card {
      background: #fff;
      border-radius: 12px;
      padding: 25px;
      -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
      -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
      transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
      transition: transform 0.3s, box-shadow 0.3s;
      transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
      position: relative;
      overflow: hidden;
      border-top: 3px solid #FF9F45;
  }

  .topic-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, rgba(255, 122, 69, 0.03), rgba(255, 159, 69, 0.03));
      z-index: 0;
  }

  .topic-card:hover {
      -webkit-transform: translateY(-5px);
      transform: translateY(-5px);
      -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  }

  .topic-card h3 {
      color: #FF7A45;
      font-size: 18px;
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
  }

  .topic-card p {
      color: #666;
      line-height: 1.6;
      margin-bottom: 15px;
      position: relative;
      z-index: 1;
  }

  .topic-card ul {
      padding-left: 20px;
      margin-bottom: 15px;
      position: relative;
      z-index: 1;
  }

  .topic-card li {
      color: #666;
      margin-bottom: 6px;
      font-size: 14px;
  }

  .see-more {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      color: #FF7A45;
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      padding: 5px 0;
      position: relative;
      z-index: 1;
      -webkit-transition: color 0.3s;
      transition: color 0.3s;
  }

  .see-more::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: #FF7A45;
      -webkit-transition: width 0.3s ease;
      transition: width 0.3s ease;
  }

  .see-more:hover::after {
      width: 100%;
  }

  .arrow-icon {
      margin-left: 6px;
      -webkit-transition: -webkit-transform 0.3s;
      transition: -webkit-transform 0.3s;
      transition: transform 0.3s;
      transition: transform 0.3s, -webkit-transform 0.3s;
  }

  .see-more:hover .arrow-icon {
      -webkit-transform: translateX(3px);
      transform: translateX(3px);
  }

  .topic-icon {
      position: absolute;
      top: 20px;
      right: 20px;
      opacity: 0.1;
      font-size: 3rem;
      z-index: 0;
  }

  .contact-info {
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
      margin-top: 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
      border-top: 3px solid #FF9F45;
  }

  .contact-info::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, rgba(255, 122, 69, 0.03), rgba(255, 159, 69, 0.03));
      z-index: 0;
  }

  .contact-info h3 {
      color: #333;
      font-size: 18px;
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
  }

  .contact-info p {
      color: #666;
      margin-bottom: 8px;
      position: relative;
      z-index: 1;
      font-size: 15px;
  }

  .contact-info .phone {
      font-size: 18px;
      font-weight: 600;
      color: #FF7A45;
      margin: 10px 0;
      position: relative;
      z-index: 1;
  }

  .contact-info .email {
      font-size: 16px;
      color: #FF7A45;
      position: relative;
      z-index: 1;
  }

  @media (max-width: 900px) {
      .content {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column;
      }

      .sidebar {
          width: 100%;
          margin-bottom: 30px;
      }

      .hero h1 {
          font-size: 2rem;
      }
  }

  /* 2025/04/23 */
  .icon02 {
      width: 18px;
  }

  .icon02 img {
      max-width: 100%;
  }

  .search-container {
      position: relative;
  }

  .search-container::before {
      content: "";
      display: block;
      width: 22px;
      height: 22px;
      background-image: url('/import/tenant_1/www.tag-plus.com/html/images/icon01.webp');
      background-size: contain;
      background-repeat: no-repeat;
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      left: 15px;
      z-index: 1;
  }
  
  .hero h1{
    color: #fff;
  }
  
  .topic-card a{
    color: #666;
  }
  
  .topic-card a:hover{
    color: #FF7A45;
    text-decoration: none;
   }
   
   .sp-br{
     display: none;
   }
   
   #wrapper {
        display: none;
      }
      [id^="_plug-url-"]:has(.template_card) {
        width: auto !important;
      }

      .template-main-ttl {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        font-weight: 700;
        margin: 80px 0;
      }
      .template-main-ttl img {
        width: 130px;
        margin-right: 20px;
        vertical-align: middle;
        background: #1c2b36;
        padding: 5px;
      }
      .template-description {
        font-size: 16px;
        width: 90%;
        max-width: 960px;
        margin: auto;
      }
      .template-description span {
        color: #fff;
        background: #ff7a45;
        padding: 10px 20px;
        white-space: nowrap;
        border-radius: 5px;
        font-size: 14px;
      }

      .template_card {
        width: 90%;
        max-width: 960px;
        margin: 100px auto;
        border: 1px solid #d9d9d9;
        border-radius: 8px;
        background: #fff;
        overflow: hidden;
        font-family: sans-serif;
        color: #111;
      }

      .template_header,
      .template_section {
        padding: 20px;
        border-bottom: 1px solid #d9d9d9;
      }

      .template_section:last-child {
        border-bottom: none;
      }
      .template_header .template_section {
        padding: 0;
        display: flex;
        align-items: center;
      }

      .template_meta {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 24px;
      }

      .template_time {
        font-size: 16px;
        font-weight: 700;
        color: #999;
      }

      .template_label {
        display: inline-block;
        margin-bottom: 15px;
        padding: 10px 18px;
        border-radius: 6px;
        border: 2px solid #ff7a45;
        background: #fff;
        color: #ff7a45;
        font-size: 14px;
        font-weight: 700;
      }
      .template_header .template_section .template_label {
        margin: 0;
      }

      .template_number {
        font-size: 18px;
        margin: 0;
        background: #ff7a45;
        color: #fff;
      }

      .template_title {
        font-size: 18px;
        font-weight: 700;
        padding: 0 18px;
      }

      .template_design {
        height: auto;
        padding: 32px 20px;
        border: 1px solid #d0d0d0;
        border-radius: 10px;
        background: #fff;
        font-size: 14px;
        font-weight: 700;
      }

      .template_box {
        padding: 20px;
        border-radius: 6px;
        background: #f1f3f3;
        font-size: 14px;
        font-weight: 700;
      }

      .template_accordion {
        border-radius: 6px;
        background: #f1f3f3;
        overflow: hidden;
      }

      .template_accordion_button {
        width: 100%;
        padding: 20px;
        border: none;
        background: transparent;
        font: inherit;
        font-size: 14px;
        font-weight: 700;
        text-align: left;
        cursor: pointer;

        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      .template_accordion_button::after {
        content: "";
        width: 14px;
        height: 14px;
        border-right: 4px solid #0d4f35;
        border-bottom: 4px solid #0d4f35;
        transform: rotate(45deg);
        transition: transform 0.2s ease;
      }

      .template_accordion.is-open .template_accordion_button::after {
        transform: rotate(225deg);
      }

      .template_accordion_content {
        max-height: 0;
        overflow: hidden;
        font-size: 14px;
        line-height: 1.8;
        transition: max-height 0.5s ease, padding 0.3s ease;
      }
      .template_accordion_content_inner {
          padding: 0 20px 24px;
      }
      .template_accordion_content a {
        color: #1a0dab;
        text-decoration: underline;
      }

      .template-sample-txt {
        font-size: 12px;
        text-align: center;
        color: #999;
        margin: 30px auto;
      }
      .template-sample-txt .add-cart {
        margin: auto;
        border: 2px solid #ef8000;
        color: #ef8000;
        border-radius: 8px;
        width: 180px;
        height: 45px;
        font-size: 14px;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      
      [id^="_plug-url-"]:has(.template_card) {
  width: auto !important;
}

.template-main-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  margin: 80px 0;
}
.template-main-ttl img {
  width: 130px;
  margin-right: 20px;
  vertical-align: middle;
  background: #1c2b36;
  padding: 5px;
}
.template-description {
  font-size: 16px;
  width: 90%;
  max-width: 960px;
  margin: auto;
}
.template-description span {
  color: #fff;
  background: #ff7a45;
  padding: 10px 20px;
  white-space: nowrap;
  border-radius: 5px;
  font-size: 14px;
}

/* セクション（旧アコーディオン） */
.template_index {
  margin: 5rem auto;
}
.template_index .template_section_block {
  border-radius: 6px;
  background: #f5f5f5;
  overflow: hidden;
  border: 2px solid #ff7a45;
  margin: 20px;
}

.template_index .template_section_title {
  width: 100%;
  padding: 20px;
  background: #ff7a45;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.template_index .template_section_content {
  font-size: 14px;
  line-height: 1.8;
  padding: 24px 20px;
}
.template_index .template_section_content a {
  color: #1a0dab;
  display: block;
}

  @media(max-width:599px) {
      .logo {
          display: block;
      }

      .logo img {
          height: 30px;
          margin-right: 0px;
      }

      .logo-text {
          display: block;
      }

      .header-links a {
          display: block;
          margin-left: 0;
          text-align: right;
          padding: 5px 0;
      }

      .search-box {
          width: 90%;
      }

      .search-container::before {
          left: 35px;
      }
      
       .sp-br{
         display: block;
       }
  }
  
  /* 2025/06/03 */
  .ugc .logo-text {
    color: #48b0c7;
  }
  
  .ugc .hero {
    background: linear-gradient(135deg, #48b0c7, #7cb1bd);
  }
  
  .ugc .manual-title::after {
    background: #48b0c7;
  }
  
  .ugc .section-title::before {
    background: #48b0c7;
  }
  
  .ugc .topic-card {
    border-top: 3px solid #48b0c7;
  }
  
  .ugc .topic-card h3 {
    color: #48b0c7;
  }
  
  .ugc .sidebar-menu li:hover {
    background-color: rgba(72, 176, 199, 0.08);
  }
  
  .ugc .sidebar-menu a:hover {
    color: #48b0c7;
  }
  
  .ugc .topic-grid {
    display: block;
  }
  
  .ugc .header-links a:hover {
    color: #48b0c7;
    background-color: rgba(72, 176, 199, 0.08);
  }
  
  .ugc .topic-card a:hover {
    color: #48b0c7;
  }
  
  
