<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*-----------------------
        news詳細
------------------------*/
.news_article {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
  margin-bottom: 80px;
}

.news_title {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.4;
  width: 100%;
  border-bottom: solid 1px #707070;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.news_date {
  font-size: 16px;
  margin-bottom: 40px;
}

.news_top_img {
  width: 100%;
  aspect-ratio: 2/1;
  height: auto;
  object-fit: cover;
  margin-bottom: 40px;
}

.news_middle_title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 40px;
}

.news_content {
  font-size: 16px;
  margin-bottom: 40px;
}

.news_img {
  width: 80%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.news_accessories {
  width: 100%;
  padding: 0 50px;
}

.news_data_section {
  margin-bottom: 60px;
}

.news_data {
  width: fit-content;
  min-width: 280px;
  max-width: 420px;
  height: 53px;
  border-radius: 10px;
  border: solid 1px #D1D1D1;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 15px;
  padding: 0 10px;
  margin-bottom: 8px;
}
.news_data:nth-last-child(1) {
  margin-bottom: 0;
}
.news_data:hover {
  color: #fff;
  background-color: #D1D1D1;
}

.news_data_icon {
  width: 34px;
  aspect-ratio: 34/42;
}

.news_data_title {
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news_map_section {
  display: block;
  width: 100%;
  height: 600px;
  margin-bottom: 40px;
  border: solid 1px #707070;
}
.news_map_section iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 960px){
  .news_title {
    font-size: 26px;
  }
  .news_date {
    font-size: 15px;
  }
  .news_middle_title {
    font-size: 18px;
  }
  .news_accessories {
    padding: 0 20px;
  }
  .news_map_section {
    height: 480px;
  }
}
@media (max-width: 767px){
  .news_article {
    padding: 0 20px;
  }
  .news_title {
    font-size: 20px;
  }
  .news_date {
    font-size: 14px;
  }
  .news_content {
    font-size: 15px;
  }
  .news_img {
    width: 100%;
  }
  .news_accessories {
    padding: 0;
  }
  .news_data {
    max-width: 100%;
    min-width: 0;
  }
  .news_map_section {
    height: 320px;
  }
}</pre></body></html>