:root {
  /* ============================================
  font-family
  ============================================ */
  --font: "Noto Sans JP", sans-serif;
  --font-en: "Archivo", sans-serif;
  --font-be-vietnam: "Be Vietnam Pro", sans-serif;
  /* ============================================
  color-meaning
  ============================================ */
  --color-corporate-01: #ff1b01;
  --color-corporate-02: #434c9e;
  --color-base: #111;
  /* ============================================
  value
  ============================================ */
  --value-pc: 1920;
  --value-main: 1500;
  /* container-s */
  --value-s: 1360;
  /* ============================================
  timing-function
  ============================================ */
  --ease-in-out: cubic-bezier(0.5, 0.24, 0.12, 0.96);

  /* ============================================
  transition-duration
  ============================================ */
  --duration--2xs: 0s;
  --duration--s: 0.2s;
  --duration--m: 0.3s;
  --duration--l: 0.5s;
  --duration--2xl: 1s;
}

/* wp:heading */
h2.wp-block-heading {
  font-size: clamp(1.5rem, 1.159rem + 1.7vw, 2.25rem);
  /* val：24px-36px | view：320px-1024px */
  font-weight: 900;
  padding-bottom: 33px;
  background-image: linear-gradient(
    to right,
    var(--color-base) 60px,
    #dfe2e8 60px
  );
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: bottom left;
}

h2.wp-block-heading + * {
  margin-top: 35px;
}
@media (min-width: calc(600em/16)) {
  h2.wp-block-heading + * {
    margin-top: 60px;
  }
}

/* wp:list */
.wp-block-list {
  list-style: none;
  padding-left: 0;
}
.wp-block-list li {
  display: flex;
}
.wp-block-list li::before {
  content: "・";
  display: inline-block;
  margin-right: 0.2em;
}

/* link */
.wp-block-post-content a,
.editor-content a {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: calc(20rem / 16);
  gap: min(25px, calc(25 / 640 * 100vw));
  line-height: 1.2;
  width: fit-content;
  color: var(--color-base);
  text-decoration: none;
}

.wp-block-post-content a::before,
.editor-content a::before {
  content: "";
  display: block;
  --size: 41px;
  width: var(--size);
  height: var(--size);
  background: url(../images/common/icon_square_chevron-right.png) no-repeat
    center/contain;
}
.wp-block-post-content a[target="_blank"]::before,
.editor-content a[target="_blank"]::before {
  background-image: url(../images/common/icon_square_diagonal-right.png);
}

/* wp-block-file */
.wp-block-file a {
  display: grid!important;
  grid-template-columns: 89fr 433fr 88fr;
  max-width: 610px;
  border-radius: 5px;
  background: var(--color-base);
  color: #fff;
  align-items: center;
  min-height: 70px;
  padding: 5px;
  font-weight: bold;
  width: 100%;
}

.wp-block-file a::before {
  content: "";
  display: block;
  width: 28px;
  height: 34px;
  background: url(../images/common/icon_pdf.png) no-repeat center/contain !important;
  justify-self: center;
}
.wp-block-file a::after {
  content: "";
  display: block;
  width: 12px;
  height: 14px;
  background: url(../images/common/icon_download.png) no-repeat center/contain;
  justify-self: center;
}
@media (min-width: calc(600em/16)) {
  .wp-block-file a {
    min-height: 90px;
  }
}
