@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #000000;
  --white-color: #fff;
  --gray-color: #bababa;
  --primary-color: #33886a;
  --text-black-color: #333333;
  --text-red-color: #fa3737;
  --line-gray-color: #cdd0ca;
  --bg-green-color: #f2f4eb;
  --faq-q-bg-color: #459fcc;
  --faq-a-bg-color: #ef6767;
  --text-highlight-color: #f5f567;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-pc-width: 900px;
}

/* ---------- base ---------- */

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  color: var(--black-color);
  font-size: 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

/* ---------- layout ---------- */

.l_container {
  margin: 200px auto 0;
  padding: 0 16px;
  max-width: calc(var(--content-pc-width) + 32px);
}

@media screen and (max-width: 450px) {
  .l_container {
    margin: 60px auto 0;
    max-width: 100%;
  }
}

/* news_header */
.news_header_title {
  font-weight: 500;
  font-size: 24px;
}

@media screen and (max-width: 450px) {
  .news_header_title {
    font-size: 14px;
  }
}

.news_header_updated-date {
  margin-top: 24px;
}

@media screen and (max-width: 450px) {
  .news_header_updated-date {
    margin-top: 12px;
  }
}

.news_header_updated-date,
.news_header_published-date {
  font-size: 16px;
  line-height: normal;
}

@media screen and (max-width: 450px) {
  .news_header_updated-date,
  .news_header_published-date {
    font-size: 10px;
  }
}

.news_header_published-date {
  margin-top: 4px;
}

/* news_image */
.news_image_wrapper {
  margin-top: 24px;
}

@media screen and (max-width: 450px) {
  .news_image {
    max-width: 330px;
    height: auto;
    margin: 24px auto 0;
  }
}

/* news_text */
.news_text {
  margin-top: 24px;
}

@media screen and (max-width: 450px) {
  .news_text {
    font-size: 12px;
  }
}

/* news_content */
.news_content1_wrapper {
  margin-top: 60px;
  padding: 0 16px;
}

@media screen and (max-width: 450px) {
  .news_content1_wrapper {
    margin-top: 32px;
    padding: 0 8px;
  }
}

.news_content1_title {
  font-weight: 500;
  font-size: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-gray-color);
}

@media screen and (max-width: 450px) {
  .news_content1_title {
    font-size: 14px;
    padding-bottom: 12px;
  }
}

.news_content1_text {
  margin-top: 20px;
}

@media screen and (max-width: 450px) {
  .news_content1_text {
    font-size: 14px;
    margin-top: 12px;
  }
}

/* news_emphasis */
.news_emphasis_wrapper {
  margin: 60px 16px 0;
  padding: 32px;
  background-color: var(--bg-green-color);
  border-radius: 30px;
}

@media screen and (max-width: 450px) {
  .news_emphasis_wrapper {
    margin: 32px 8px 0;
    padding: 16px;
    border-radius: 8px;
  }
}

.news_emphasis_title {
  color: var(--text-red-color);
  font-weight: 500;
}

@media screen and (max-width: 450px) {
  .news_emphasis_title {
    font-size: 12px;
  }
}

.news_news_emphasis_list {
  margin-top: 16px;
  font-weight: 500;
}

@media screen and (max-width: 450px) {
  .news_news_emphasis_list {
    margin-top: 8px;
    font-size: 12px;
  }
}

.news_emphasis_item {
  display: flex;
  align-items: center;
}

.news_emphasis_item .fa-lightbulb {
  color: #ffe02d;
  font-size: 30px;
  margin-right: 8px;
}

@media screen and (max-width: 450px) {
  .news_emphasis_item .fa-lightbulb {
    font-size: 16px;
    margin-right: 4px;
  }
}

.news_emphasis_item + .news_emphasis_item {
  margin-top: 4px;
}

@media screen and (max-width: 450px) {
  .news_emphasis_item + .news_emphasis_item {
    margin-top: 6px;
  }
}

/* comparison-table */
.comparison-table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 60px auto 0;
  font-size: 16px;
  max-width: 750px;
}

@media screen and (max-width: 450px) {
  .comparison-table {
    margin: 32px auto 0;
    font-size: 14px;
  }
}

.comparison-table th,
.comparison-table td {
  border: 1px solid var(--gray-color);
  padding: 10px;
  font-weight: 600;
  text-align: center;
  padding: 25px;
}

@media screen and (max-width: 450px) {
  .comparison-table th,
  .comparison-table td {
    padding: 15px 5px;
  }
}

.comparison-table td:first-child {
  background: #f5f5f5;
  width: 30%;
}

.comparison-table th:nth-child(1) {
  background-color: #fff;
  border: 1px solid transparent;
  border-bottom-color: #ccc;
  color: #fff;
}

.comparison-table th {
  background-color: var(--primary-color);
  color: #fff;
}

/* FAQ */
.news_faq-box {
  width: 100%;
  margin: 60px auto 0;
}

@media screen and (max-width: 450px) {
  .news_faq-box {
    margin: 40px auto 0;
  }
}

.news_faq-box .news_faq dt,
.news_faq-box .news_faq dd {
  display: flex;
  align-items: baseline;
  padding: 20px 24px;
}

@media screen and (max-width: 450px) {
  .news_faq-box .news_faq dt,
  .news_faq-box .news_faq dd {
    padding: 8px;
    font-size: 12px;
  }
}

.news_faq-box .news_faq dt {
  background: var(--bg-green-color);
  font-weight: 500;
  border-radius: 8px;
}

.news_faq-box .news_faq dt p {
  margin: 0;
  padding-left: 24px;
  font-weight: 500;
  width: 100%;
}

.news_faq-box .news_faq dd p {
  margin: 0;
  padding-left: 24px;
  width: 100%;
}

@media screen and (max-width: 450px) {
  .news_faq-box .news_faq dt p,
  .news_faq-box .news_faq dd p {
    padding-left: 8px;
  }
}

.news_faq-box .news_faq dt::before {
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
  background: var(--faq-q-bg-color);
  width: 42px;
  height: 40px;
  font-weight: 500;
  font-size: 24px;
  border-radius: 50%;
  padding-bottom: 3px;
}

.news_faq-box .news_faq dd::before {
  content: "A";
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
  background: var(--faq-a-bg-color);
  width: 42px;
  height: 40px;
  font-weight: 500;
  font-size: 24px;
  border-radius: 50%;
  padding-bottom: 5px;
}

@media screen and (max-width: 450px) {
  .news_faq-box .news_faq dt::before,
  .news_faq-box .news_faq dd::before {
    width: 25px;
    height: 24px;
    font-size: 14px;
    padding-bottom: 0px;
  }
}

@media screen and (max-width: 450px) {
  .news_faq-box .news_faq dd::before {
    padding-bottom: 1px;
    padding-left: 1px;
  }
}

@media screen and (max-width: 450px) {
  .news_faq + .news_faq {
    margin-top: 24px;
  }
}

/* news_content2 */
.news_content2_wrapper {
  margin-top: 60px;
  display: flex;
  flex-direction: row;
  gap: 35px;
  align-items: center;
}

@media screen and (max-width: 450px) {
  .news_content2_wrapper {
    margin-top: 32px;
    gap: 12px;
  }
}

.news_content2_img {
  width: 350px;
  height: auto;
}

@media screen and (max-width: 450px) {
  .news_content2_img {
    max-width: 180px;
  }
}

.news_content2_text {
  font-size: 16px;
}

@media screen and (max-width: 450px) {
  .news_content2_text {
    font-size: 10px;
  }
}

/* news_content3 */
.news_content3_text {
  margin-top: 60px;
}

@media screen and (max-width: 450px) {
  .news_content3_text {
    margin-top: 32px;
    font-size: 12px;
  }
}

.news_content3_text_highlight {
  display: inline;
  padding: 4px;
  background-color: var(--text-highlight-color);
  font-weight: 500;
}

@media screen and (max-width: 450px) {
  .news_content3_text_highlight {
    padding: 2px;
  }
}

/* news_notice */
.news_notice_wrapper {
  margin: 60px auto;
  padding-bottom: 60px;
  max-width: calc(var(--content-pc-width) + 32px);
}

@media screen and (max-width: 450px) {
  .news_notice_wrapper {
    margin: 32px auto;
    padding: 0;
  }
}

.news_notice_text {
  margin: 0 auto;
  background-color: var(--bg-green-color);
  padding: 20px;
  font-size: 14px;
}

@media screen and (max-width: 450px) {
  .news_notice_text {
    padding: 8px 20px;
    font-size: 8px;
  }
}
