/* 
1.デバイス共通css
2.767px以下のみ (スマホのみ)
3.768px以上のみ (タブレット含むスマホサイズ以上)
4.1080px以上のみ (PC)
5.320px以下のみ (幅狭スマホ) 
*/

body {}

:root {
  --primary-color: #07A32B;
}

.Heading__title_lp {
  color: var(--primary-color);
  font-weight: 600;
  text-align: center;
}

.Heading__module02 .Heading__title_lp {
  font-size: 28px;
}

.Heading__module03 .Heading__title_lp {
  font-size: 18px;
}

.Box__title {
  font-size: 18px !important;
}

.Box__inner .Box__title:not(:first-child) {
  margin-top: 20px;
}

.Table__moduleD .Table__header01 {
  text-align: center;
  font-weight: 600;
}

._fsBig {
  font-size: 28px;
}

.Heading__title_attention {
  display: flex;
  font-size: 18px;
  font-weight: 600;
  align-items: center;
  justify-content: center;
}

.Heading__title_attention span:first-child {
  margin-right: 10px;
}

.Tab_midashi {
  color: var(--primary-color);
  font-weight: 600;
}

.Tab_midashi::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #E5F6E9;
}

.Tab_midashi_strong {
  font-size: 18px;
}

.Tab_midashi_strong span {
  font-size: 25px;
}

.Box__layoutA .Box__title+.Box__detail {
  margin-top: 10px;
}

.Table__data {
  text-align: center;
}

.Table__moduleA .Table__data {
  vertical-align: middle;
}

.Annotation__moduleA {
  font-size: 1.2rem;
}

.Tab__inner ._flex .Annotation__layout {
  width: 100%;
}

.FollowingBanner__block {
  background: #FFF9D9;
}

.FollowingBanner__content {
  padding: 10px;
}

.ConversionArea__layout {
  display: flex;
}

.ConversionArea__text {
  margin-bottom: 8px;
  font-weight: 400;
}

.ColorButton__layoutA {
  margin-top: 0;
  margin-bottom: 0;
}

.ConversionArea__layout {
  display: flex;
  gap: 0;
  justify-content: space-between;
}

.ConversionArea__item {
  width: calc((100% - 20px)/2);
}

.ColorButton__moduleE>.ColorButton__text,
.ColorButton__moduleF>.ColorButton__text {
  padding: 5px 5px 4px;
}

.ColorButton__moduleE>.ColorButton__text::before,
.ColorButton__moduleF>.ColorButton__text::before {
  right: 10px;
}

.FollowingBanner__close {
  display: none;
}

/* タブレットサイズ（スマホ）未満の指定 */
@media (max-width: 767px) {}


/* タブレット以上の指定 */
@media (min-width: 768px) {

  .Important__block {
    padding: 50px 0;
  }
}

/* PCコンテンツ幅以下 */
@media (max-width: 999px) {}


/* PCコンテンツ幅以上 */
@media (min-width: 1080px) {
  .Box__title {
    font-size: 20px !important;
  }

  .Heading__title_attention {
    font-size: 20px;
  }

  .Heading__module03 .Heading__title_lp {
    font-size: 20px;
  }

  .Tab_midashi {
    font-size: 20px;
  }

  .Tab_midashi_strong {
    font-size: 22px;
  }

  .Tab_midashi_strong span {
    font-size: 26px;
  }

  .Tab_midashi::after {
    width: 40%;
    height: 4px;
  }

  .Tab__inner ._flex .Annotation__layout {
    width: 60%;
  }
}

/* iphone5等小さめのスマホ */
@media (max-width: 320px) {}