body {
    font-family: "Mulish", "Zen Kaku Gothic New", sans-serif;
  }
  
  #bg {
    display: flex;
    justify-content: center;
    background-color: #f5f5f5;
  }
  
  #content {
    z-index: 1;
    background-color: #f5f5f5;
    width: 100%;
    max-width: 500px;
  }
  
  .footer_area {
    background-color: #000000;
  }
  
  #kv {
    height: 400px;
    position: relative;
    overflow: hidden;
  }
  
  #kv .bg {
    position: absolute;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    top: 24px;
    right: 24px;
    background-image: url("/wp-content/uploads/sites/5/2024/07/top-news.png");
    background-repeat: no-repeat;
    background-size: cover;
    border-top-right-radius: 120px;
  }
  
  #kv .bg p {
    position: absolute;
    background-color: #ffffff;
    top: 160px;
    left: 24px;
    font-weight: 700;
    font-size: var(--size-28);
    line-height: 100%;
    padding: var(--size-4);
  }
  
  #kv .logo {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--size-184);
    height: 64px;
    background-color: #ffffff;
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 24px 0;
  }
  
  #kv .title {
    writing-mode: vertical-rl;
    font-weight: 700;
    font-size: var(--size-56);
    line-height: 100%;
    position: absolute;
    color: #ffffff;
    margin-top: 16px;
    top: 0;
    right: 0;
  }
  
  #news {
    background-color: #ffffff;
    border-radius: 56px 0;
    padding: 48px 24px;
    margin-top: -56px;
    margin-bottom: 80px;
    position: relative;
  }
  
  #news .category {
    display: flex;
    width: 100%;
    background-color: #f2f4f6;
    padding: 16px 24px;
    border-radius: 24px;
    justify-content: space-between;
  }
  
  #news .category .item {
    font-weight: 700;
    font-size: var(--size-13);
    line-height: 100%;
    text-align: center;
    color: #888888;
    position: relative;
  }
  
  #news .category .item.active {
    color: #000000;
    position: relative;
  }
  
  #news .category .item .icon {
    display: none;
    position: absolute;
    top: -20px;
    left: calc(50% - 7px);
  }
  #news .category .item.active .icon {
    display: block;
  }
  
  #news .content .items {
    margin-top: 16px;
  }
  
  #news .content .items .item {
    padding: 24px 0;
    border-bottom: 2px solid #f2f4f6;
    display: flex;
  }
  #news .content .items .item:last-child {
    border-bottom: none;
  }
  
  #news .content .items .item .image {
    margin-right: 24px;
  }
  
  #news .content .items .item .image img {
    border-radius: 16px;
    object-fit: cover;
  }
  
  #news .content .items .item .detail .dates {
    display: flex;
    margin-bottom: 6px;
  }
  
  #news .content .items .item .detail .dates .date {
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    margin-right: 8px;
    color: #888888;
  }
  
  #news .content .items .item .detail .title {
    font-weight: 700;
    font-size: 14px;
    line-height: 175%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
  }
  
  #news .content .items .item .dates .tag {
    font-weight: 700;
    font-size: 10px;
    line-height: 13px;
    color: #888888;
    padding: 0 8px;
    border: 1px solid #888888;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--size-100); /* 100 */
  }
  
  #toast {
    visibility: hidden;
    z-index: 2;
    position: fixed;
    top: 24px;
    left: calc(50% - 112px);
    width: var(--size-224);
    padding: 16px 24px;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
  }
  
  #toast.show {
    visibility: visible;
    -webkit-animation: fadein 0.2s, fadeout 0.2s 3.5s;
    animation: fadein 0.2s, fadeout 0.2s 3.5s;
  }
  
  @-webkit-keyframes fadein {
    from {
      top: 0;
      opacity: 0;
    }
    to {
      top: 24px;
      opacity: 1;
    }
  }
  
  @keyframes fadein {
    from {
      top: 0;
      opacity: 0;
    }
    to {
      top: 24px;
      opacity: 1;
    }
  }
  
  @-webkit-keyframes fadeout {
    from {
      top: 24px;
      opacity: 1;
    }
    to {
      top: 0;
      opacity: 0;
    }
  }
  
  @keyframes fadeout {
    from {
      top: 24px;
      opacity: 1;
    }
    to {
      top: 0;
      opacity: 0;
    }
  }
  