/* 部分テンプレート(利用規約) */
.term_label {
  font-size: 14px;
  display: -webkit-box;
}
.term_label > a {
  color: #386F81;
}

/* ecforce側からAJAXで返されるモーダルのデザイン用CSS(Smartphone) */
@media screen and (max-width: 480px) {
  .modal-scrollable {
    position: fixed;
    top: 0;
  }
  .modal-scrollable .modal {
    padding: 20px 10%;
    overflow-y: scroll;
    max-height: 100vh;
  }
  .modal-scrollable .modal .modal-header {
    text-align: right;
  }
  .modal-scrollable .modal .modal-header .close {
    font-size: 30px;
  }
  .modal-scrollable .modal .modal-title {
    font-size: 18px;
    text-align: center;
    font-weight: bold;
  }
  .modal-scrollable .modal .modal-body {
    margin: 30px 0;
  }
  .modal-scrollable .modal .modal-body p {
    margin: 5px 0;
    font-size: 13px;
  }
  .modal-scrollable .modal .modal-body form {
    margin: 10px 0;
  }
  .modal-scrollable .modal .modal-body form .form-group {
    margin: 15px 0;
  }
  .modal-scrollable .modal .modal-body form label {
    font-size: 15px;
    font-weight: bold;
  }
  .modal-scrollable .modal .modal-body form input {
    border: solid 1px #ddd;
    font-size: 16px;
    width: 100%;
    padding: 10px;
    margin-top: 5px;
  }
  .modal-scrollable .modal .modal-body form a {
    background: #386F81;
    color: #fff;
    padding: 15px;
    width: 100%;
    display: block;
    text-align: center;
  }
  .modal-scrollable .modal .modal-body form a.disabled {
    background: #aaa;
    cursor: default;
  }
}

/* ecforce側からAJAXで返されるモーダルのデザイン用CSS(PC) */
@media screen and (min-width: 480px) {
  .modal-scrollable {
    position: fixed;
    top: 0;
  }
  .modal-scrollable .modal {
    padding: 60px 25%;
  }
  .modal-scrollable .modal .modal-header {
    text-align: right;
  }
  .modal-scrollable .modal .modal-header .close {
    font-size: 30px;
  }
  .modal-scrollable .modal .modal-title {
    font-size: 20px;
    text-align: center;
    font-weight: bold;
  }
  .modal-scrollable .modal .modal-body {
    margin: 30px 0;
  }
  .modal-scrollable .modal .modal-body p {
    margin: 5px 0;
  }
  .modal-scrollable .modal .modal-body form {
    margin: 10px 0;
  }
  .modal-scrollable .modal .modal-body form .form-group {
    margin: 20px 0;
  }
  .modal-scrollable .modal .modal-body form label {
    font-weight: bold;
  }
  .modal-scrollable .modal .modal-body form input {
    border: solid 1px #ddd;
    font-size: 16px;
    width: 100%;
    padding: 10px;
    margin-top: 5px;
  }
  .modal-scrollable .modal .modal-body form a {
    margin-top: 50px;
    background: #386F81;
    color: #fff;
    padding: 15px;
    width: 100%;
  }
  .modal-scrollable .modal .modal-body form a.disabled {
    background: #aaa;
    cursor: default;
  }
}

/* SKU画像項目用(smartphone) */
@media screen and (max-width: 480px) {
  .c-product_img {
    display: block;
  }
  #sub-images-view {
    max-width: 100%;
    display: block;
  }
  .img-wrap {
    width: 100%;
    max-height: 100%;
    align-items: center;
    padding: 0;
    list-style: none;
    display: flex;
  }
  .img-box {
    margin: 2px;
  }
  .img-thumbnail {
    width: 100% !important;
    pointer-events: auto;
  }
  .img-box:hover {
    opacity: 0.8;
  }
  .product-thumbnail {
    max-height: 125px;
    max-width: 125px;
  }
  #main-img {
    height: auto;
    object-fit: contain;
  }
}

/* SKU画像項目用(PC) */
@media screen and (min-width: 480px) {
  .c-product_img {
    display: flex;
    justify-content: space-around;
  }
  #sub-images-view {
    max-width: 15%;
    display: flex;
    flex-direction: column;
  }
  .img-wrap {
    width: 100%;
    max-height: 100%;
    align-items: center;
    padding: 0;
    list-style: none;
  }
  .img-wrap:nth-child(n+2) {
    display: none;
  }
  .img-box {
    width: 100% !important;
    margin: 2px;
  }
  .img-thumbnail {
    width: 100% !important;
    pointer-events: auto;
  }
  .img-box:hover {
    opacity: 0.8;
  }
  .product-thumbnail {
    max-height: 125px;
    max-width: 125px;
  }
  #main-img {
    width: 70%;
    height: auto;
    object-fit: contain;
  }
}

.recommend_product_padding {
  padding-top: 80px;
  padding-bottom: 100px;
}




/* BRAND NEWS SECTION CSS */
.brand-news-section { max-width: 1200px; margin: 60px auto; padding: 0 20px; box-sizing: border-box; color: #333; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.section-title { font-size: 40px; font-weight: bold; margin: 0; }
.view-more-btn { background-color: #111; color: #fff; text-decoration: none; padding: 10px 25px; border-radius: 50px; font-size: 12px; font-weight: bold; }
.news-content { display: flex; gap: 30px; }
.news-image-col { flex: 1; position: relative; }
.news-main-image { width: 100%; height: 100%; object-fit: cover; min-height: 400px; display: block; }
.image-link-arrow { position: absolute; bottom: 20px; right: 20px; width: 50px; height: 50px; background: #111; border-radius: 50%; display: flex; justify-content: center; align-items: center; color: #fff; }
.news-list-col { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.news-item { border: 1px solid #e0e0e0; padding: 30px; display: flex; justify-content: space-between; align-items: center; text-decoration: none; color: inherit; }
.news-text h3 { font-size: 18px; margin: 0 0 10px 0; font-weight: bold; }
.news-text p { font-size: 14px; margin: 0; color: #666; }
.icon-arrow-circle { min-width: 40px; height: 40px; border: 1px solid #ccc; border-radius: 50%; display: flex; justify-content: center; align-items: center; margin-left: 15px; }
.icon-arrow-svg { width: 14px; height: 14px; stroke: #333; }
.image-arrow-svg { width: 20px; height: 20px; stroke: #fff; }
@media (max-width: 768px) { .news-content { flex-direction: column; } .news-image-col { min-height: 300px; } }







