/* ----------------------------------------------------------
General Settings
---------------------------------------------------------- */



/* ----------------------------------------------------------
Style for PCs
---------------------------------------------------------- */
@media screen and (min-width: 1025px) {

  .updatelist {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap:1%;
  }
  .updatelist li {
    flex:0 0 calc((100% - 1% * 3) / 4);
    height: auto;
    display: block;
    margin-bottom: 30px;
  }
  .updatelist li a {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding:10px;
    background-image: url(../img2026/box-000.webp);
    background-repeat: no-repeat;
    background-position: 0 bottom;
    background-size: 0% 1px;
    transition: .4s all;
  }
  .updatelist li a:hover {
    background-size: 100% 1px;
  }
  .updatelist li a .upd_img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 800 / 533;
    border-radius: 10px;
    overflow: hidden;
    box-shadow:0px 5px 15px rgba(0,0,0,0.2);
  }
  .updatelist li a .upd_cc {
    width: 100%;
    height: auto;
    display: block;
    padding:1.25em 0.5em 0.5em;
  }
  .updatelist li a .upd_cc h3 {
    font-size: clamp(14px, 1vw, 18px);
    font-weight: 500;
    color:var(--color-black);
    line-height: 1.5em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    margin-bottom: 0.3em;
    transition: .4s all;
  }
  .updatelist li a:hover .upd_cc h3 {
    color:var(--color-1st);
  }
  .updatelist li a .upd_cc p {
    font-size: clamp(10px, 1vw, 12px);
    font-weight: 400;
    color:var(--color-1st);
    line-height: 1.25em;
    margin-bottom: 0.3em;
    transition: .4s all;
  }
  .updatelist li a:hover .upd_cc p {
    color:var(--color-3rd);
  }

}

/* ----------------------------------------------------------
Style for iPad Pro
---------------------------------------------------------- */
@media screen and (min-width: 769px) and (max-width: 1024px) {

  .updatelist {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap:1%;
  }
  .updatelist li {
    flex:0 0 calc((100% - 1% * 1) / 2);
    height: auto;
    display: block;
    margin-bottom: 40px;
  }
  .updatelist li a {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding:10px;
    background-image: url(../img2026/box-000.webp);
    background-repeat: no-repeat;
    background-position: 0 bottom;
    background-size: 0% 1px;
    transition: .4s all;
  }
  .updatelist li a:hover {
    background-size: 100% 1px;
  }
  .updatelist li a .upd_img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 800 / 533;
    border-radius: 10px;
    overflow: hidden;
    box-shadow:0px 5px 15px rgba(0,0,0,0.2);
  }
  .updatelist li a .upd_cc {
    width: 100%;
    height: auto;
    display: block;
    padding:1.25em 0.5em 0.5em;
  }
  .updatelist li a .upd_cc h3 {
    font-size: clamp(14px, 1vw, 18px);
    font-weight: 500;
    color:var(--color-black);
    line-height: 1.5em;
    margin-bottom: 0.3em;
  }
  .updatelist li a .upd_cc p {
    font-size: clamp(10px, 1vw, 12px);
    font-weight: 400;
    color:var(--color-1st);
    line-height: 1.25em;
    margin-bottom: 0.3em;
  }

  
}


/* ----------------------------------------------------------
Style for Smartphone
---------------------------------------------------------- */
@media screen and (max-width: 768px) {

  .updatelist {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }
  .updatelist li {
    width: 100%;
    height: auto;
    display: block;
    padding-bottom: 20px;
    border-bottom: 1px dotted var(--color-ccc);
    margin-bottom: 20px;
  }
  .updatelist li a {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding:10px;
    transition: .4s all;
    background-image: url(../img2026/box-000.webp);
    background-repeat: no-repeat;
    background-position: 0 bottom;
    background-size: 0% 1px;
  }
  .updatelist li a:hover {
    background-size: 100% 1px;
  }
  .updatelist li a .upd_img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 800 / 533;
    border-radius: 10px;
    overflow: hidden;
    box-shadow:0px 5px 15px rgba(0,0,0,0.2);
  }
  .updatelist li a .upd_cc {
    width: 100%;
    height: auto;
    display: block;
    padding:1.25em 0.5em 0.5em;
  }
  .updatelist li a .upd_cc h3 {
    font-size: clamp(14px, 1vw, 18px);
    font-weight: 500;
    color:var(--color-black);
    line-height: 1.5em;
    margin-bottom: 0.3em;
  }
  .updatelist li a .upd_cc p {
    font-size: clamp(10px, 1vw, 12px);
    font-weight: 400;
    color:var(--color-1st);
    line-height: 1.25em;
    margin-bottom: 0.3em;
  }

}


