@charset "UTF-8";
/* CSS Document */
/* ===============================================   ===============================================  */
@media screen and (min-width: 750px) {
  #toptBox {
    width: 100%;
  }
  .newsBox {
    width: 1230px;
    margin: 70px auto;
  }

  .ttl-sec {
    margin-bottom: 40px;
    font-size: 1.5em;
    font-weight: bold;
  }

  .news-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
  }

  .news-item dt {
    font-weight: bold;
    width: 130px;
    flex-shrink: 0;
  }

  .news-content {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    flex: 1;
  }

  .news-item .ico {
    width: 160px;
    padding: 5px 0;
    text-align: center;
    font-weight: normal;
    font-size: 0.8em;
    color: #3192bf;
    border: solid 1px #3192bf;
    flex-shrink: 0;
  }

  .news-item dd {
    margin: 0;
    line-height: 1.6;
  }

  .news-item dd a {
    text-decoration: underline;
  }

  .news-item dd a:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 749px) {
  #toptBox {
    width: 100%;
    margin: 30px auto;
  }

  #toptBox .newsBox {
    width: 95%;
    margin: 0 auto 50px;
  }
  #toptBox .newsBox dt {
    margin-left: 10px;
    font-weight: bold;
  }
  #toptBox .newsBox dd {
    margin-top: 5px;
    margin-left: 10px;
  }
  #toptBox .newsBox dt:not(:last-child) {
    margin-bottom: 5px;
  }
  .newsBox dd:not(:last-child) {
    margin-bottom: 15px;
  }
  #toptBox .newsBox dd a {
    text-decoration: underline;
  }
}
/* ▼▼ スマホ（768px以下）対応 ▼▼ */
@media screen and (max-width: 768px) {
  .newsBox {
    width: 90%;
    margin: 40px auto;
  }

  .news-item {
    display: block;
    margin-bottom: 35px;
  }

  .news-item dt {
    width: auto;
    font-size: 0.9em;
    margin-bottom: 5px;
  }

  .news-content {
    display: block;
  }

  .news-item .ico {
    display: inline-block;
    width: auto;
    padding: 5px 12px;
    margin-bottom: 8px;
    font-size: 0.8em;
    color: #3192bf;
    border: solid 1px #3192bf;
  }

  .news-item dd {
    font-size: 0.95em;
    line-height: 1.7;
  }
}

@media screen and (min-width: 750px) {
  .productBox {
    width: 1230px;
    margin: 50px auto;
  }
  .productBox .leftBox {
    float: left;
    width: 400px;
    margin-left: 215px;
    padding: 20px 0;
    background-color: #fff;
    border: solid 2px #bbbbbb;
    border-right: 0;
    text-align: center;
    overflow: hidden;
    position: relative; /* 相対位置指定 */
  }
  .productBox .leftBox .caption {
    font-size: 100%;
    text-align: left;
    padding: 20px;
    color: #fff;
    line-height: 1.6;
  }
  .productBox .leftBox .caption h2{
    color: red;
    text-align: center;
  }
  .productBox .leftBox .mask {
    width: 100%;
    height: 100%;
    position: absolute; /* 絶対位置指定 */
    top: 0;
    left: 0;
    opacity: 0; /* マスクを表示しない */
    background-color: rgba(0,0,0,0.8);	/* マスクは半透明 */
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .productBox .leftBox:hover .mask {
    opacity: 1; /* マスクを表示する */
  }
  .productBox .rightBox {
    float: left;
    width: 400px;
    padding: 20px 0;
    background-color: #fff;
    border: solid 2px #bbbbbb;
    text-align: center;
    overflow: hidden;
    position: relative; /* 相対位置指定 */
  }
  .productBox .rightBox .caption {
    font-size: 100%;
    text-align: left;
    padding: 20px;
    color: #fff;
    line-height: 1.6;
  }
  .productBox .rightBox .caption h2{
    text-align: center;
    color: red;
  }
  .productBox .rightBox .mask {
    width: 100%;
    height: 100%;
    position: absolute; /* 絶対位置指定 */
    top: 0;
    left: 0;
    opacity: 0; /* マスクを表示しない */
    background-color: rgba(0,0,0,0.8);	/* マスクは半透明 */
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .productBox .rightBox:hover .mask {
    opacity: 1; /* マスクを表示する */
  }
  .productBox .leftBox h2,
  .productBox .rightBox h2{
    font-size: 16px;
    font-weight: bold;
  }
}
@media screen and (max-width: 749px) {
  .productsBox {
    width: 100%;
    padding: 10px 0 60px;
    background-image: url("./images/common-bg.jpg");
    background-repeat: repeat;
  }
  .productsBox h2 {
    font-size: 22px;
    text-align: center;
    font-weight: 500;
  }
  .productBox {
    width: 95%;
    margin: 0 auto;
  }
  .productBox .leftBox {
    width: 90%;
    margin: 0 auto;
    padding: 20px 0 0;
    background-color: #fff;
    border: solid 2px #bbbbbb;
    border-bottom: 0;
    text-align: center;
  }
  .productBox .leftBox .caption {
    display: none;
  }
  .productBox .rightBox {
    width: 90%;
    margin: 0 auto;
    padding: 20px 0 0;
    background-color: #fff;
    border: solid 2px #bbbbbb;
    text-align: center;
  }
  .productBox .rightBox .caption {
    display: none;
  }
  .productBox .leftBox h2,
  .productBox .rightBox h2{
    width: 80%;
    margin: 10px auto 0;
    font-size: 18px;
    font-weight: bold;
  }
}

