@charset "UTF-8";
@media screen and (max-width: 767.9px) {
  /*　画面サイズが767.9pxまではここを読み込む　*/
  .products-new {
    margin-top: 5rem;
  }
  .products-new__item {
    display: flex;
    padding: 1.5rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.08);
  }
  .products-new__item:nth-child(n + 2) {
    margin-top: 1.5rem;
  }
  .products-new__link-area {
    display: flex;
    text-decoration: none;
  }
  .products-new__image {
    display: block;
    width: 8rem;
    min-width: 8rem;
    height: 8rem;
    overflow: hidden;
  }
  .products-new__image img {
    width: 8rem;
    max-width: 100%;
    height: 8rem;
    object-fit: cover;
  }
  .products-new__side {
    margin-left: 2rem;
  }
  .products-new__name {
    color: #333;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5;
  }
  .products-new__status {
    margin-top: 0.8rem;
    color: #00429d;
    font-size: 1.2rem;
  }

  .product-schedule__list {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 0;
    border-bottom: 1px solid #ddd;
  }
  .product-schedule__listnone{
    border-top: 1px solid #ddd;
    justify-content: center;
    margin-top: 3rem;
  }
  .product-schedule__title {
    color: #8d8d8d;
    font-size: 1.4rem;
    font-weight: bold;
  }
  .product-schedule__date {
    flex-shrink: 0;
    font-size: 1.6rem;
  }
  .product-schedule__date--title {
    font-weight: bold;
    text-align: center;
  }
  .product-schedule__text {
    width: 100%;
    margin-top: 1.5rem;
    font-weight: bold;
  }

  .products-border-column__item:nth-child(n + 2) {
    margin-top: 2rem;
  }
  .products-border-column__box:nth-child(n + 2) {
    margin-top: 5rem;
  }
  .products-border-column__heading {
    display: block;
    margin-bottom: 2rem;
    color: #333;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
  }
  
  .box-detail {
    display: flex;
    flex-direction: column;
  }
  .box-detail__item:nth-child(1),
  .box-detail__item:nth-child(3) {
    order: -1;
  }
  .box-detail__button.gray {
    background: #8d8d8d;
    padding: 1rem;
    border: none;
    color: #fff;
  }
  .box-detail__button.gray::before {
    content: none;
  }

  .products-online-trade__heading {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.25;
    text-align: center;
  }
  .products-online-trade__em {
    color: #876528;
  }
  .products-online-trade__button {
    margin-top: 2rem;
  }

  .products-nisa {
    display: flex;
    position: relative;
    padding: 3.5rem 1.5rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.08);
  }
  .products-nisa__link-area {
    text-decoration: none;
  }
  .products-nisa__side {
    position: relative;
    z-index: 1;
    margin-right: 4rem;
  }
  .products-nisa__image {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 58%;
    height: 100%;
    margin-left: 5rem;
    background: url("/products/img/nisa_sp.jpg") no-repeat center center/cover;
  }
  .products-nisa__heading {
    color: #333;
    font-size: 2.6rem;
  }
  .products-nisa__message {
    color: #333;
  }

  .products-stock {
    margin-top: 2rem;
  }

  .search-brand--full {
    margin: 0 -2rem;
  }
}
@media screen and (min-width: 768px), print {
  /*　画面サイズが768pxからはここを読み込む　*/
  .products-new {
    display: flex;
    margin-top: 50px;
  }
  .products-new__item {
    display: flex;
    width: calc((100% - 40px) / 2);
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    width: 100%; /* 項目が1項目の時 */
  }
  .products-new__item:nth-child(n + 2) {
    margin-left: 20px;
  }
  .products-new__link-area {
    display: flex;
    text-decoration: none;
  }
  .products-new__image {
    display: block;
    position: relative;
    width: 100px;
    min-width: 100px;
    height: 100px;
  }
  .products-new__image img {
    width: 100px;
    max-width: 100%;
    height: 100px;
    object-fit: cover;
  }
  .products-new__side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 20px;
  }
  .products-new__name {
    transition: 0.2s ease-out;
    color: #333;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
  }
  .products-new__link-area:hover .products-new__name {
    color: #876528;
  }
  .products-new__status {
    margin-top: 10px;
    color: #00429d;
  }

  .product-schedule {
    margin-top: 30px;
  }
  .product-schedule__list {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #ddd;
  }
  .product-schedule__listnone{
    border-top: 1px solid #ddd;
    justify-content: center;
    margin-top: 50px;
  }
  .product-schedule__date {
    flex-shrink: 0;
    width: 204px;
  }
  .product-schedule__date--title {
    font-weight: bold;
    text-align: center;
  }
  .product-schedule__text {
    width: 100%;
    margin-left: 30px;
    font-weight: bold;
  }

  .products-border-column {
    display: flex;
  }
  .products-border-column__item {
    width: calc((100% - 70px) / 2);
  }
  .products-border-column__item:nth-child(n + 2) {
    margin-left: 70px;
  }
  .products-border-column__box:nth-child(n + 2) {
    margin-top: 50px;
  }
  .products-border-column__heading {
    display: block;
    margin-bottom: 40px;
    padding-bottom: 15px;
    transition: 0.2s ease-out;
    border-bottom: 1px solid #876528;
    color: #333;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
  }
  .products-border-column__heading:hover {
    color: #876528;
  }
  
  .box-detail {
    flex-wrap: wrap;
  }
  .box-detail__item:nth-child(n + 2) {
    margin-left: 0;
  }
  .box-detail__item:nth-child(n + 3) {
    margin-top: 30px;
  }
  .box-detail__item:nth-child(2n) {
    margin-left: 60px;
  }
  .box-detail__button.gray {
    background: #8d8d8d;
    padding: 10px;
    border: none;
    color: #fff;
    cursor: inherit;
  }
  .box-detail__button.gray::before {
    content: none;
  }

  .products-online-trade {
    width: calc(100% - 350px);
    margin-right: 45px;
  }
  .products-online-trade__heading {
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
  }
  .products-online-trade__em {
    color: #876528;
  }

  .products-nisa {
    display: flex;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  }
  .products-nisa__link-area {
    display: block;
    padding: 50px;
    text-decoration: none;
  }
  .products-nisa__side {
    width: 394px;
  }
  .products-nisa__image {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 58%;
    height: 100%;
    margin-left: 50px;
    background: url("/products/img/nisa.jpg") no-repeat center center/cover;
  }
  .products-nisa__heading {
    transition: 0.2s ease-out;
    color: #333;
    font-size: 26px;
  }
  .products-nisa__link-area:hover .products-nisa__heading {
    color: #876528;
  }
  .products-nisa__message {
    position: relative;
    z-index: 1;
    transition: 0.2s ease-out;
    color: #333;
  }
  .products-nisa__link-area:hover .products-nisa__message {
    color: #876528;
  }

  .products-stock {
    margin-top: 50px;
  }

  .products-box-3column {
    width: calc((100% - 60px) / 3);
    margin-right: 30px;
  }
  .products-box-3column:nth-child(3n) {
    margin-right: 0;
  }
  
  /* おすすめ新商品情報 投資信託新商品 2カラム用 */
  .products-new.trust-2column {
    flex-wrap: wrap;
  }
  .products-new.trust-2column .products-new__item {
    width: calc((100% - 20px) / 2);
    box-sizing: border-box;
  }
  .products-new.trust-2column .products-new__item:nth-child(n + 2) {
    margin-left: 0;
  }
  .products-new.trust-2column .products-new__item:nth-child(even) {
    margin-left: 20px;
  }
  .products-new.trust-2column .products-new__item:nth-child(n + 3) {
    margin-top: 20px;
  }
}
