@charset "UTF-8";

/* =====================
  変数
===================== */
:root {
  --inner-width: 1120px;
  --header-height: 100px;
}

/* =====================
  共通
===================== */
.inner {
  width: var(--inner-width);
  margin-inline: auto;
}

.tecs .title-wrapper span::before {
  background: var(--white);
}
/* =====================
  mv
===================== */
.main .mv {
  background: var(--black);
  padding-top: 310px;
  position: relative;
}
.main .mv .mv-bg {
  background-image: url('/assets/image/news/news_bg.png');
  min-height: 424px;
  height: 32.61538461538461vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 2;
}
.main .mv h1 {
  font-family: var(--mincho);
  font-size: 80px;
  color: var(--white);
  margin-top: 21px;
  padding-inline: 50px;
  position: relative;
  z-index: 2;
  line-height: 1;
}
.main .about {
  width: 1200px;
  color: var(--white);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.main .about::after {
  content: '';
  background-image: url('/assets/image/news/book.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 238px;
  height: 195px;
  display: block;
  position: absolute;
  right: 51px;
  opacity: 0.5;
  top: 40px;
}
/* =====================
  ニュース
===================== */

/* ==== 背景 ==== */
.news {
  background: var(--black);
  color: var(--white);
  padding-bottom: 91px;
  padding-bottom: 254px;
}
.news .news-wrapper {
  min-width: 1200px;
  position: relative;
  margin-inline: auto;
}
.news .news-wrapper::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: calc((100% - 1200px) / 2 + 1200px);
  height: 100%;
  background-image: url('/assets/image/common/bg.png');
  background-repeat: repeat;
  background-position: 0 0;
  margin-top: 171px;
}
.news .news-wrapper .news-inner::before {
  content: attr(data-text);
  display: block;
  font-family: var(--mincho);
  font-size: 100px;
  white-space: nowrap;
  color: var(--white);
  position: absolute;
  top: 103px;
  opacity: 0.08;
  right: 147px;
}
.news .news-wrapper .news-inner {
  position: relative;
  width: 1200px;
  margin-inline: auto;
  padding-top: 257px;
  padding-inline: 41px;
  color: #fff;
}
.news .news-wrapper .news-inner *::selection {
  background: #0d0602;
}
/* ==== フォーム ==== */
.news .news-wrapper .news-inner .news-inner {
  padding-right: 78px;
}
.news .news-wrapper .news-inner .news-table {
  width: 1117px;
  border-collapse: separate;
  border-spacing: 0 5px;
  margin-top: 53px;
  display: table;
  table-layout: fixed;
  border-collapse: separate;
}
.news .news-wrapper .news-inner .news-table .t-body {
  display: table-row-group;
}
.news .news-wrapper .news-inner .news-table .tr {
  color: var(--black);
  background-color: var(--white);
  display: table-row;
  cursor: pointer;
}
.news .news-wrapper .news-inner .news-table .tr:not(:first-child) {
  margin-top: 5px;
}
.news .news-wrapper .news-inner .news-table .th {
  width: 294px;
  padding-left: 66px;
  padding-block: 27px;
  font-family: var(--mincho);
  font-size: 13px;
  display: table-cell;
}
.news .news-wrapper .news-inner .news-table .td {
  padding-inline: 0 66px;
  padding-block: 19px;
  display: table-cell;
}
.news .news-wrapper .news-inner .news-table .td input,
.news .news-wrapper .news-inner .news-table .td textarea {
  width: 100%;
}
.news .news-wrapper .news-inner .news-table .news-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news .news-wrapper .news-inner .news-table .news-title button {
  display: inline-block;
  position: relative;
}
.news .news-wrapper .news-inner .news-table .news-title button::after {
  content: '';
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid;
  border-color: transparent transparent var(--red) var(--red);
  transform: rotate(-45deg);
  top: -7px;
  right: -2px;
  transition: all 250ms ease 0s;
}
.news .news-wrapper .news-inner .news-table .news-title .on::after {
  transform: rotate(135deg);
}
.news .news-wrapper .news-inner .news-table .letter {
  display: none;
  border-top: 1px solid #a68f8c;
  margin-top: 23px;
  padding-bottom: 18px;
  padding-top: 11px;
}
.news .news-wrapper .news-inner .news-table .letter p {
  padding-top: 33px;
}
