@charset "UTF-8";

/*
  FOR news
--------------------------------------------- */
/* news-head */
.news-head {
  display: table;
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 10px;
  width: 100%;
  border-bottom: 1px solid #d9d9d9;
  font-size: 0;
}

@media screen and (max-width: 767px) {
  .news-head {
    margin-bottom: 30px;
  }
}

.news-head-container {
  display: table-cell;
  width: 80%;
}

@media screen and (max-width: 767px) {
  .news-head-container {
    display: block;
    width: 100%;
  }
}

.news-head-date {
  display: inline;
  margin-right: 25px;
  color: #b2b2b2;
  font-size: 12px;
}

.news-head .news-list-tags {
  display: inline;
}

.news-head .news-list-brands {
  display: table-cell;
  margin: 0;
  padding: 0;
  width: 20%;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .news-head .news-list-brands {
    display: block;
    width: 100%;
  }
}

/* news-media */
.news-media {
  margin: 60px 0;
  padding: 30px;
  font-size: 0;
  background: #f2f2f2;
}

@media screen and (max-width: 767px) {
  .news-media {
    margin: 45px 0;
    padding: 15px;
  }
}

.news-media-item {
  display: inline-block;
  margin-right: 30px;
  width: 420px;
  height: 420px;
  text-align: center;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .news-media-item {
    margin-right: 15px;
    width: calc((100% - 15px) / 2);
    height: 150px;
  }
}

.news-media-item:nth-child(2n) {
  margin-right: 0;
}

.news-media-item:nth-child(1),
.news-media-item:nth-child(2) {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .news-media-item:nth-child(1),
  .news-media-item:nth-child(2) {
    margin-bottom: 15px;
  }
}

.news-media-item a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  outline: none;
  background: #fff;
}

.news-media-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  transform: translate(-50%, -50%);
}

.news-media-item .icons-zoom-in {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  color: #fff;
  font-size: 0;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.icons-zoom-in:after {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
  content: "\E8ff";
  text-decoration: none;
  font-family: "Material Icons";
  font-size: 60px;
  font-style: normal;
  font-weight: normal;
}

@media screen and (min-width: 768px) {
  .news-media-item a {
    transition: all 0.4s linear;
  }

  .news-media-item a .icons-zoom-in {
    transition: opacity 0.4s linear;
  }

  .news-media-item a:hover {
    background: #b3b3b3;
  }

  .news-media-item a:hover img {
    opacity: .7;
  }

  .news-media-item a:hover .icons-zoom-in {
    color: #fff;
    opacity: 1;
  }
}

/* news-contact */
.news-contact {
  margin: 60px 0 30px 0;
  padding: 25px 0;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}

@media screen and (max-width: 767px) {
  .news-contact {
    margin: 45px 0 30px 0;
  }
}

.news-contact-title {
  margin-bottom: 20px;
  font-weight: bold;
}

.news-contact > *:last-child {
  margin-bottom: 0 !important;
}

/* news-button-sns */
.news-button-sns {
  margin-bottom: 60px;
  text-align: right;
  font-size: 0;
}

@media screen and (max-width: 767px) {
  .news-button-sns {
    margin-bottom: 45px;
  }
}

.news-button-sns li {
  display: inline-block;
  margin-right: 30px;
  vertical-align: top;
  list-style: none;
}

.news-button-sns li:last-child {
  margin-right: 0;
}

/* media-width-content */
.media-width-content {
  margin-bottom: 30px;
}

/* news-article(post) */
.news-article h2 {
  margin: 40px 0 30px 0;
  padding-bottom: 13px;
  border-bottom: 1px solid #b3b3b3;
  line-height: 1.4;
  font-size: 24px;
}

.news-article h3 {
  margin: 60px 0 30px;
  padding: 5px 10px;
  line-height: 1.4;
  color: #fff;
  font-size: 16px;
  background: #b3b3b3;
}

.news-article h4 {
  margin: 20px 0;
  font-weight: bold;
}

.news-article div {
  line-height: 1.6;
}

.news-article .column-unit{
  margin: 20px 0;
}

.news-article .media-caption{
  margin-top: 10px;
}

.news-article p {
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.news-article p.main-content-lead{
  margin-bottom: 30px !important;
}

.news-article p > a[target="_blank"]::after {
  display: inline-block;
  margin-left: 5px;
  content: "\E895";
  text-decoration: none;
  font-family: 'Material Icons';
  vertical-align: middle;
}

.news-article a > img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.news-article ul {
  list-style-type: disc;
  margin: 0 0 1rem 1.5rem;
  padding: 0;
}

.news-article ul.list-ul li{
  margin-bottom: 20px;
}

.news-article ol {
  list-style-type: decimal;
  margin: 0 0 1rem 1.5rem;
}

.news-article ol.list-ol li{
  margin-bottom: 20px;
}

.news-article strong {
  font-weight: bold;
}

.news-article em {
  font-style: italic;
}

.news-article table {
  margin: 20px 0;
  width: 99.8%;
  table-layout: auto;
  border-bottom: 1px solid #b3b3b3;
  border-left: 1px solid #b3b3b3;
}

.news-article table th {
  padding: 25px 20px;
  border-top: 1px solid #b3b3b3;
  border-right: 1px solid #b3b3b3;
  text-align: left;
  vertical-align: top;
}

.news-article table td {
  padding: 25px 20px;
  border-top: 1px solid #b3b3b3;
  border-right: 1px solid #b3b3b3;
  text-align: left;
  vertical-align: top;
  color: #555;
}

.news-article .catch {
  margin-bottom: 55px !important;
  line-height: 1.8 !important;
  color: #333;
  font-size: 18px;
  font-weight: bold;
}

.news-article .min-txt {
  color: #999;
  font-size: 12px;
}

.news-article .img img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.news-article .hasPair-01 {
  margin-top: 60px;
  width: 100%;
  font-size: 0;
  zoom: 1;
}

.news-article .hasPair-01 .elem-A {
  display: inline-block;
  margin-right: 30px;
  width: 350px;
  background: #fff;
  vertical-align: top;
  box-sizing: content-box;
}

.news-article .hasPair-01 .elem-A > p:first-child {
  margin-top: 0;
}

.news-article .hasPair-01 .elem-A .image {
  width: 100%;
}

.news-article .hasPair-01 .elem-A .caption {
  margin-bottom: 0;
  color: #666;
  font-size: 12px;
  font-style: italic;
}

.news-article .hasPair-01 .elem-B {
  display: inline-block;
  width: 550px;
  vertical-align: top;
  font-size: 14px;
}

.news-article .hasPair-01 .elem-B > p:first-child {
  margin-top: 0;
}

.news-article .hasPair-01 h3 {
  margin: 30px 0;
}

.news-article .hasPair-03 {
  margin-top: 20px;
  width: 100%;
  font-size: 0;
  zoom: 1;
}

.news-article .hasPair-03::after {
  content: ".";
  clear: both;
  height: 0;
  display: block;
  visibility: hidden;
}

.news-article .hasPair-03 .elem-A {
  width: 350px;
  float: right;
  padding-left: 30px;
  background: #fff;
}

.news-article .hasPair-03 .elem-A > p:first-child {
  margin-top: 0;
}

.news-article .hasPair-03 .elem-A .image {
  width: 100%;
}

.news-article .hasPair-03 .elem-A .caption {
  margin-bottom: 0;
  color: #666;
  font-size: 12px;
  font-style: italic;
}

.news-article .hasPair-03 .elem-B {
  font-size: 14px;
}

.news-article .hasPair-03 .elem-B > p:first-child {
  margin-top: 0;
}

.news-article .hasPair-03 h3 {
  margin: 30px 0;
}

.news-article .image-01 {
  margin: 60px auto 20px;
  width: 100%;
  text-align: center;
}

.news-article table.table-01 {
  margin-top: 60px;
  width: 99.8%;
  table-layout: auto;
  border-bottom: 1px solid #b3b3b3;
}

.news-article table.table-01.yoko {
  border-left: 0;
}

.news-article table.table-01.yoko .elem-A {
  width: 20%;
}

.news-article table.table-01.yoko th {
  border-right: 0;
}

.news-article table.table-01.yoko td {
  border-right: 0;
}

.news-article table.table-01.tate {
  border-left: 1px solid #b3b3b3;
}

.news-article table.table-01.tate .elem-A {
  width: 25%;
}

.news-article table.table-01.tate th {
  border-right: 1px solid #b3b3b3;
}

.news-article table.table-01.tate td {
  border-right: 1px solid #b3b3b3;
}

.news-article table.table-01 th {
  padding: 25px 20px;
  border-top: 1px solid #b3b3b3;
  text-align: left;
  vertical-align: top;
}

.news-article table.table-01 td {
  padding: 25px 20px;
  border-top: 1px solid #b3b3b3;
  text-align: left;
  vertical-align: top;
  color: #555;
}

.news-article .unorderedList-01 {
  margin-top: 60px;
  margin-left: 0;
  list-style: none;
}

.news-article .unorderedList-01::after {
  content: ".";
  clear: both;
  height: 0;
  display: block;
  visibility: hidden;
}

.news-article .unorderedList-01 .indent {
  float: left;
  margin: 0 2px;
}

.news-article .unorderedList-01 .text {
  display: block;
  overflow: hidden;
}

.news-article .relLinks-01 {
  margin: 60px 0;
  padding: 35px 0 60px 0;
  background: #f2f2f2;
  text-align: center;
}

.news-article .relLinks-01 h2 {
  margin: 0 0 20px;
  padding-bottom: 0;
  text-align: center;
  color: #8c8c8c;
  font-size: 20px;
  font-weight: bold;
  border-bottom: 0;
}

.news-article .relLinks-01 p {
  text-align: center;
}

.news-article .relLinks-01 ul {
  margin: 20px auto 0;
  width: 870px;
  font-size: 0;
}

.news-article .relLinks-01 ul li {
  width: 50%;
  display: inline-block;
  vertical-align: top;
}

.news-article .relLinks-01 ul li a {
  display: block;
  padding: 18px 25px 0 25px;
  height: 58px;
  border-top: 1px solid #f2f2f2;
  border-right: 1px solid #f2f2f2;
  text-align: center;
  text-decoration: none !important;
  color: #666;
  font-size: 14px;
  font-weight: bold;
  background: #fff;
  transition: all 0.3s linear;
}

.news-article .relLinks-01 ul li a:hover {
  color: #fff !important;
  background: #b3b3b3;
}

.news-article .relLinks-01 ul li:nth-child(2n) a {
  border-right: none;
}

.news-article .relLinks-01 ul li:nth-child(1) a {
  border-top: none;
}

.news-article .cbox {
  border: 1px solid #F1F1F1;
  background: #fafafa;
  padding: 1em;
  margin-top: 1em;
}

img.alignright {
  display: block;
  margin: 0 0 0 auto;
}

img.alignleft {
  display: block;
  margin: 0 auto 0 0;
}

img.aligncenter {
  display: block;
  margin: 0 auto;
}

img.alignnone {
  display: block;
  margin: 0 auto 0 0;
}


@media screen and (max-width: 768px) {
  .news-article h2 {
    margin: 30px 0 20px 0;
    font-size: 18px;
  }

  .news-article h3 {
    margin: 45px 0 30px;
  }

  .news-article ul {
    margin: 0 0 1rem 1.5rem;
  }

  .news-article ol {
    margin: 0 0 1rem 1.5rem;
  }

  .news-article p > img {
    max-width: 100%;
    width: auto;
    height: auto;
  }

  .news-article p.main-content-lead{
    margin-bottom: 20px !important;
  }

  .news-article table {
    margin-top: 45px;
    width: 99.8%;
    table-layout: auto;
    border-bottom: 1px solid #b3b3b3;
    border-left: 1px solid #b3b3b3;
  }

  .news-article table th {
    padding: 13px 15px;
  }

  .news-article table td {
    padding: 13px 15px;
  }

  .news-article .youtube {
    position: relative;
    width: 100%;
    margin: 15px 0;
    padding-bottom: 56.25%;
    height: 0;
  }

  .news-article .youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .news-article .catch {
    margin-bottom: 40px !important;
    line-height: 1.7 !important;
    font-size: 16px;
  }

  .news-article .hasPair-01 {
    margin-top: 45px;
  }

  .news-article .hasPair-01 .elem-A {
    display: block;
    margin: 0 0 20px;
    width: 100%;
  }

  .news-article .hasPair-01 .image {
    text-align: center;
  }

  .news-article .hasPair-01 .elem-B {
    display: block;
    width: 100%;
  }

  .news-article .hasPair-01 h3 {
    margin: 20px 0 15px;
  }

  .news-article .hasPair-03 {
    margin-top: 45px;
  }

  .news-article .hasPair-03::after {
    display: none;
  }

  .news-article .hasPair-03 .elem-A {
    margin: 0 0 20px;
    padding-left: 0;
    width: 100%;
    float: none;
  }

  .news-article .hasPair-03 .elem-A .image {
    text-align: center;
  }

  .news-article .hasPair-03 .elem-B > p:first-child {
    margin-top: 0;
  }

  .news-article .hasPair-03 h3 {
    margin: 20px 0 15px;
  }

  .news-article .image-01 {
    margin-top: 45px;
  }

  .news-article .image-01 img {
    max-width: 100%;
    width: auto;
    height: auto;
  }

  .news-article table.table-01 {
    margin-top: 45px;
    width: 99.8%;
    table-layout: auto;
    word-break: break-all;
    border-bottom: 1px solid #b3b3b3;
  }

  .news-article table.table-01.yoko {
    border-left: 0;
    border-right: 0;
  }

  .news-article table.table-01.yoko .elem-A {
    width: 100%;
  }

  .news-article table.table-01.yoko .elem-B {
    width: 100%;
  }

  .news-article table.table-01.yoko th {
    display: block;
    width: 100%;
    border-right: 0;
  }

  .news-article table.table-01.yoko td {
    display: block;
    margin-left: 15px;
    padding-left: 0;
    width: calc(100% - 15px);
    border-color: #ddd;
    border-right: 0;
  }

  .news-article table.table-01.tate .elem-A {
    width: 25%;
  }

  .news-article table.table-01 th {
    padding: 13px 15px;
  }

  .news-article table.table-01 td {
    padding: 13px 15px;
  }

  .news-article .unorderedList-01 {
    margin-top: 45px;
  }

  .news-article .relLinks-01 {
    margin: 45px 0;
    padding: 25px 15px 30px 15px;
    background: #f2f2f2;
  }

  .news-article .relLinks-01 h2 {
    margin-bottom: 15px;
    font-size: 16px;
  }

  .news-article .relLinks-01 p {
    text-align: center;
  }

  .news-article .relLinks-01 ul {
    width: 100%;
  }

  .news-article .relLinks-01 ul li {
    display: block;
    vertical-align: middle;
    width: 100%;
  }

  .news-article .relLinks-01 ul li a {
    padding: 10px;
    height: auto;
    border-right: none;
  }
}


