/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
/*  list-style: none;*/
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

button::-moz-focus-inner{
  border: none;
}

.center{
  text-align: center
}

.left{
  text-align: left
}

.right{
  text-align: right;
}

.none{
  display: none;
}

@media screen and (min-width: 768px) {
.sp {
  display: none !important;
}

a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none !important;
}
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
.search-content{
    margin-top: 99px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    height: 45px;
    width: 100%;
    background-position: left center, right center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: -50px;
    padding: 10px 10px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
}
.search-content .left {
    display: flex;
    align-items: center;
}

.search-content .search-box {
    padding: 5px;
    font-size: 14px;
    height: 25px;
    width: 300px;
}

.search-content .search-icon {
    margin-left: 5px;
    font-size: 16px;
}

.search-content .right a {
    margin-left: 15px;
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
}

.search-content .right a:hover {
    text-decoration: underline;
}
.right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 10px;
}
.search-container {
    display: flex;
    align-items: center;
    position: relative;
}

.search-box {
    padding: 5px 40px 5px 10px;
    font-size: 14px;
    height: 30px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 200px;
}

.search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #888;
}

.search-icon:hover {
    color: #333;
}

.right a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    margin-left: 15px;
}

.right a:hover {
    text-decoration: underline;
}

.search-content {
    display: none;
}

@media (min-width: 1024px) {
    .search-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .search-content {
        display: none;
    }
    .article-background{
        background-image: none;
    }
}

.article-background {
    background-image: url('/images/Group_492.png');
    background-position: left top;
    background-size: cover;
    background-repeat: no-repeat;
    background-size: 50% 47%;
    min-height: 90vh;
    width: 100%;
    position: relative;
}
@media (max-width: 768px) {
    .article-background{
        background-image: none;
    }
}
.about-sec {
    display: block;
    text-align: center;
}

.about-sec .product-name,
.about-sec .price-fee {
    margin-top: 10px;
    text-align: center;
}

.about-sec .product-image-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: flex;
    justify-content:left;
    align-items: center; /* Center the image vertically */
    position: relative;
}

.about-sec .product-image-container img {
    width: 100%; /* Image will scale to fit the container width */
    height: 100%; /* Ensure the image takes up the full height of the container */
    object-fit:contain; /* Ensures the image covers the container without stretching */
}

.blog-sec .headline {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
}

.blog-sec .news-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
}

.blog-sec .topic-box {
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.blog-sec .topic-box:hover {
    transform: translateY(-5px);
}

.blog-sec .blog-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-sec .blog-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-sec .daytime {
    font-size: 14px;
    color: #888;
    margin-top: 10px;
}

.blog-sec .blog-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

.blog-sec .center {
    text-align: center;
    margin-top: 20px;
}


@media (max-width: 600px) {
    .blog-sec .news-container {
        display: flex;
        margin: auto;
    }

    .blog-sec .topic-box {
        width: 100%;
        margin-bottom: 20px;
    }
    .pc-version{
        display: none;
    }
}

@media (min-width: 600px) and (max-width: 1024px) {
    .about-sec {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .about-sec .mb-5 {
        width: 48%;
        margin-bottom: 20px;
    }
    .article-background{
        background-image: none;
    }
    .pc-version{
        display: none;
    }
    .blog-sec .news-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .blog-sec .topic-box {
        width: 48%;
        margin-bottom: 20px;
    }
}

@media (min-width: 1024px) {
    .about-sec {
        display: flex;
        flex-wrap: wrap;
        justify-content: left; /* Space out the products */
    }

    .about-sec .mb-5 {
        width: 23%;
        margin-bottom: 30px;
        justify-items: left;
    }
    .blog-sec .news-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 10%;
        margin-top: 2%;
        margin-bottom: 2%;
    }
    .about-box  {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .about-box .box-one {
        width: 23%;
        margin-bottom: 30px;
    }

    .blog-sec .topic-box {
        width: 23%;
        margin-bottom: 30px;
    }
    .blog-sec-large{
        width: 140%;
        margin-left: -20%;
    }
    .box-one {
        width: 30%;
        height: 200px;
    }
    .ft-lpc {
        width: 52%;
    }

    .ft-rpc {
        width: 44%;
    }

    /* .ft-logo img {
        max-width: 120px;
    } */
    .ft-left{
        display: none;
    }
    .ft-right{
        display: none;
    }
    .pc-version{
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding: 20px 40px;
    }
    .pc-version ul{
        display: flex;
        justify-content: space-around;
    }
    #copyright{
        display: none;
    }
    .ft-logo img {
        margin: 5rem auto;
        display: block;
    }
    #footer {
        padding: 0px 40px;
        background: #000;
        color: #fff;
      }
      .wrap {
        max-width: 1240px;
    }
}
/* .products-sec {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-item {
    background-color: #f4f4f4;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.product-item .product-image-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.product-item .product-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}


.product-item .product-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-item .price-fee {
    font-size: 14px;
    color: #666;
} */

.numberof-no {
    margin: 10px 0;
}

.cart-add {
    background-color: #f7a800;
    color: white;
    border: none;
    padding: 8px 20px;
    cursor: pointer;
}

/* Media Query for Tablet and Mobile: Adjust number of items per row */
@media (max-width: 1024px) {
    .products-sec {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .products-sec {
        grid-template-columns: repeat(1, 1fr); /* 2 items per row for small screens */
    }

    .product-item .product-name {
        font-size: 14px;
    }

    .product-item .price-fee {
        font-size: 12px;
    }
}
