/* デフォルトのブロックのCSSを上書きするためのもの */

/* 見出し */
.block_editor_area h2.wp-block-heading {
  font-size: 22px;
  font-weight: bold;
  line-height: 65px;
  letter-spacing: 0.05em;
  text-align: left;
  margin: 60px 0 24px;
  padding: 0 15px;
  width: 100%;
  background: url(../img/bg-h2.png);
  border-left: solid 5px #00bdbd;
  border-radius: 5px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .block_editor_area h2.wp-block-heading {
    font-size: 18px;
    font-weight: 700;
    line-height: 45px;
    text-align: left;
    margin: 40px 0 16px 0;
    padding: 0 8px;
    border-left: solid 4px #00bdbd;
  }
}

.block_editor_area h3.wp-block-heading {
  font-weight: 700;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: 1px;
  margin: 40px 0 24px;
  padding: 0 0 6px;
  border-bottom: 2px solid #00bdbd;
}
@media screen and (max-width: 768px) {
  .block_editor_area h3.wp-block-heading {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    margin: 24px 0 16px;
    display: flex;
    align-items: center;
    gap: 0;
  }
}

.block_editor_area h3.wp-block-heading::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 14px;
  background: url("../img/dott-large.png") no-repeat;
  background-size: contain;
  margin-right: 3px;
}
@media screen and (max-width: 768px) {
  .block_editor_area h3.wp-block-heading::before {
    width: 18px;
    height: 12px;
    margin-right: 0;
  }
}

.block_editor_area h4.wp-block-heading {
  display: inline-block;
  margin: 40px 0 24px;
  padding: 0 12px;
  border-left: solid 3px #00bdbd;
  font-size: 18px;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  .block_editor_area h4.wp-block-heading {
    margin: 24px 0 16px;
    padding: 0 9px;
    font-size: 14px;
    letter-spacing: 0.5px;
  }
}

/* 画像 */
.block_editor_area .wp-block-image {
  margin-top: 0;
  width: 100%;
  margin: 40px 0;
}
@media screen and (max-width: 768px) {
  .block_editor_area .wp-block-image {
    margin: 24px 0;
  }
}

.block_editor_area .wp-block-image img {
  border-radius: 10px;
  width: 100%;
  height: auto;
}

/* テキスト（段落） */
.block_editor_area p {
  margin: 24px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 0.05em;
  text-align: left;
}
@media screen and (max-width: 769px) {
  .block_editor_area p {
    font-size: 13px;
    margin: 16px 0;
  }
}

/* リスト */
.block_editor_area ul.wp-block-list {
  margin: 0 0 24px;
}

.block_editor_area ul.wp-block-list > li {
  list-style: url(../img/dott.png);
  position: relative;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 25.6px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .block_editor_area ul.wp-block-list > li {
    font-size: 13px;
    font-weight: 400;
    line-height: 20.8px;
    letter-spacing: 0.05em;
    margin-bottom: 3px;
  }
}

.block_editor_area .wp-block-list:not(.wp-block-list ul) {
  list-style-type: none;
  padding: 28px 32px 24px 48px;
  margin: 0;
  border-radius: 8px;
  margin: 24px 0;
  border: 1px solid #00bdbd;
  background-color: #f4fcfc;
}
@media screen and (max-width: 768px) {
  .block_editor_area .wp-block-list:not(.wp-block-list ul) {
    padding: 16px 32px 12px 32px;
    margin: 16px 0;
  }
}

/* テーブル */
.block_editor_area .wp-block-table {
  border: 1px solid #00bdbd;
  border-radius: 8px;
  overflow: hidden;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  margin: 24px 0;
}
@media screen and (max-width: 768px) {
  .block_editor_area .wp-block-table {
    font-size: 12px;
    margin: 16px 0;
  }
}

/* テーブル本体 */
.block_editor_area .has-fixed-layout {
  border-collapse: collapse;
  width: auto;
  min-width: 100%;
}

/* 全セル共通 */
.block_editor_area table td {
  padding: 12px 16px;
  vertical-align: top;
  border-bottom: 1px solid #ffffff;
  line-height: 170%;
}

/* 左列（ラベル列） */
.block_editor_area table tr > td:first-child {
  background-color: #00bdbd;
  color: #fff;
  font-weight: bold;
  min-width: 187px;
  width: 187px;
  text-align: center;
  position: sticky;
  left: 0;
  z-index: 2;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  .block_editor_area table tr > td:first-child {
    min-width: 140px;
  }
}

/* 右列（値列） */
.block_editor_area table tr > td:nth-child(2) {
  background-color: #fff;
  min-width: 250px;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  .block_editor_area table tr > td:nth-child(2) {
    min-width: 185px;
  }
}

.block_editor_area tr {
  height: 76px;
}
@media screen and (max-width: 768px) {
  .block_editor_area tr {
    height: 56px;
  }
}

/* 奇数行のみ右列をグレーに */
.block_editor_area table tr:nth-child(odd) > td:nth-child(2) {
  background-color: #f7f7f7;
}

/* 最終行の下線を消す */
.block_editor_area table tr:last-child > td {
  border-bottom: none;
}

.block_editor_area table td,
.block_editor_area table th {
  border-top: none;
  padding: 11px;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .block_editor_area table td,
  .block_editor_area table th {
    padding: 7px 8px;
  }
}

/* ボタン */
.block_editor_area .wp-block-button {
  text-align: center;
  margin: 24px 0 80px;
}
@media screen and (max-width: 768px) {
  .block_editor_area .wp-block-button {
    margin: 16px 0 36px;
  }
}

.block_editor_area .wp-block-button__link.wp-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 500;
  transition: background-color 0.2s;
  letter-spacing: 1px;
}

.block_editor_area .wp-block-button__link.wp-element-button {
  padding: 16px 32px;
  font-size: 16px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .block_editor_area .wp-block-button__link.wp-element-button {
    padding: 10px 12px;
  }
}

.block_editor_area .wp-block-button__link.wp-element-button {
  background-color: #00bdbd;
  color: #fff;
}
.block_editor_area .wp-block-button__link.wp-element-button:hover {
  background-color: #00b39f;
}

@media screen and (max-width: 768px) {
  .block_editor_area .wp-block-button__link.wp-element-button {
    font-size: 13px;
    line-height: 20px;
  }
}

.block_editor_area .wp-block-button__link.wp-element-button {
  position: relative;
  display: block;
  width: 225px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .block_editor_area .wp-block-button__link.wp-element-button {
    width: 199px;
    height: 40px;
  }
}

.block_editor_area .wp-block-button__link.wp-element-button::after {
  content: "";
  background-image: url("../img/arrow-white.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 13px;
  width: 16px;
  height: 16px;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .block_editor_area .wp-block-button__link.wp-element-button::after {
    top: 13px;
    width: 14px;
    height: 14px;
  }
}

.wp-block-mytheme-related-article .related-content__text {
  margin: 0 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0.04em;
  text-align: left;
  color: #333333;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  .wp-block-mytheme-related-article .related-content__text {
    font-size: 13px;
    font-weight: 700;
    line-height: 23.4px;
    margin-left: 16px;
    width: 100%;
  }
}

.block_editor_area .wp-block-mytheme-data-info.data-info_list {
  margin: 24px 0 64px;
}
@media screen and (max-width: 768px) {
  .block_editor_area .wp-block-mytheme-data-info.data-info_list {
    margin: 16px 0 24px;
  }
}
.wp-block-mytheme-data-info .data-info_item-text {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 5%;
  border-left: 3px solid #00bdbd;
  padding-left: 9px;
  margin: 0 0 12px;
}
@media screen and (max-width: 768px) {
  .wp-block-mytheme-data-info .data-info_item-text {
    font-family: Noto Sans JP;
    font-weight: 700;
    font-size: 13px;
    line-height: 160%;
    letter-spacing: 0.05px;
    border-left: 3px solid #00bdbd;
    padding-left: 4px;
    margin: 0 0 8px;
  }
}
.wp-block-mytheme-data-info .data-info_choise-list {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .wp-block-mytheme-data-info .data-info_choise-list {
    flex-wrap: wrap;
  }
}
.wp-block-mytheme-data-info .data-info_choise-item {
  width: 154px;
  height: 42px;
  padding: 12px 10px;
  border-radius: 24px;
  background-color: #efefef;
  text-align: center;
  line-height: 120%;
  font-family: JP;
  font-weight: 400;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .wp-block-mytheme-data-info .data-info_choise-item {
    width: 160px;
    font-size: 12px;
    line-height: 130%;
  }
}

.wp-block-mytheme-data-info ._check {
  background-color: #00bdbd;
  color: #ffffff;
}

.wp-block-mytheme-data-info ._check::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 0;
  background: url(../img/check-yellow.png) no-repeat;
  background-size: contain;
  margin-right: 4px;
  position: relative;
  left: -3px;
}

.block_editor_area .question {
  font-weight: 700;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0.7px;
  margin: 64px 0 24px;
}
@media screen and (max-width: 768px) {
  .block_editor_area .question {
    font-size: 16px;
    margin: 36px 0 16px;
    display: flex;
    gap: 2px;
    align-items: center;
  }
}

.block_editor_area .question::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: bottom;
  margin-right: 4px;
}

/* クチコミ提供者 */
.block_editor_area .provider-info-list > li {
  list-style: url(../img/dott.png);
  position: relative;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 25.6px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .block_editor_area .provider-info-list > li {
    font-size: 13px;
    font-weight: 400;
    line-height: 20.8px;
    letter-spacing: 0.05em;
    margin-bottom: 3px;
  }
}

.block_editor_area .wp-block-mytheme-speech-bubble.provider-wrapper:not(.block_editor_area .wp-block-mytheme-speech-bubble.provider-wrapper ul) {
  list-style-type: none;
  padding: 32px 28px;
  margin: 24px 0 24px;
  border-radius: 8px;
  border: 1px solid #00bdbd;
  background-color: #f4fcfc;
}
@media screen and (max-width: 768px) {
  .block_editor_area .wp-block-mytheme-speech-bubble.provider-wrapper:not(.block_editor_area .wp-block-mytheme-speech-bubble.provider-wrapper ul) {
    padding: 16px;
    margin-bottom: 40px;
  }
}

.wp-block-mytheme-speech-bubble.provider-wrapper > .provider-info {
  margin-top: 0px;
  margin-bottom: 16px;
}

/* 職場環境データ */
.block_editor_area .wp-block-mytheme-work-environment-data.data-info_list .data-info_item-text {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 5%;
  border-left: 3px solid #00bdbd;
  padding-left: 9px;
  margin: 0 0 12px;
}
@media screen and (max-width: 768px) {
  .block_editor_area .wp-block-mytheme-work-environment-data.data-info_list .data-info_item-text {
    font-family: Noto Sans JP;
    font-weight: 700;
    font-size: 13px;
    line-height: 160%;
    letter-spacing: 0.05px;
    border-left: 3px solid #00bdbd;
    padding-left: 4px;
    margin: 0 0 8px;
  }
}