@charset "UTF-8";
/*--------------------------------------------------------------
共通でインポートモジュール
# mixinや変数の定義を行う
--------------------------------------------------------------*/
:root {
  --text-color: #2e2e2e;
  --main-color: #13bcaf;
  --sub-color: #2e2e2e;
  --bg-color: #fff;
  --border-color: #d5d5d5;
  --link-button-font-size: 1em;
  --link-color: #003279;
  --site-width: 1920px;
  --site-inline-padding: clamp(20px, -41.776px + 11.88vw, 80px);
  --site-inline-padding: clamp(1.25rem, -5.186rem + 19.8vw, 7.5rem);
  --content-width: 1366px;
  --header-height: 74px;
  --header-inline-padding: 20px 0;
  --menu-fsz: 16px;
  --entry-title-fsz: 20px;
  --entry-h2-fsz: 18px;
  --article-mt: 20px;
  --artilce-heading-mt: 40px;
  --news-navi-icon-size: 30px;
  --page-h2-fsz: 24px;
  --page-h3-fsz: 18px;
  --fw-medium: 500;
  --fw-regular: 400;
  --fw-bold: 700;
  --fw-black: 900;
  --transition-time: 0.5s;
  --transition: var(--transition-time) ease;
  --min-viewport: 520;
  --max-viewport: 1025;
  --max-size: 80px;
  --min-size: 20px;
  /* a 傾き */
  --slope: calc((var(--max-size) - var(--min-size)) / (var(--max-viewport) - var(--min-viewport)));
  /* b 切片 */
  --intercept: calc(var(--min-size) - var(--slope) * var(--min-viewport));
  /* y = ax + b */
  --fluid-size: calc(var(--slope) * 100vw + var(--intercept) / 16 * 1rem);
  /* clamp( 最小サイズ , 可変サイズ , 最大サイズ) */
  --clamp-size: clamp(var(--min-size) / 16 * 1rem, var(--fluid-size), var(--max-size) / 16 * 1rem);
}
@media screen and (min-width: 1025px) {
  :root {
    --entry-title-fsz: 26px;
    --entry-h2-fsz: 20px;
    --article-mt: 20px;
    --news-navi-icon-size: 40px;
    --artilce-heading-mt: 50px;
    --page-h2-fsz: 50px;
    --page-h3-fsz: 22px;
    --site-inline-padding: 50px;
  }
}
@media screen and (min-width: 1025px) {
  :root {
    --header-height: 100px;
    --menu-fsz: 18px;
    --header-inline-padding: 20px 18px;
  }
}
@media screen and (min-width: 1500px) {
  :root {
    --header-inline-padding: 70px 18px;
    --site-inline-padding: 0;
  }
}

.is-style-strong, .bl_interviewPost_contentInner .is-style-strong {
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.75;
}
@media screen and (min-width: 1025px) {
  .is-style-strong, .bl_interviewPost_contentInner .is-style-strong {
    line-height: 2.46;
    font-size: 22px;
  }
}

.wp-block-table.is-style--schedule td {
  border: none;
  letter-spacing: 0.06em;
  vertical-align: middle;
  position: relative;
  padding-inline: 30px;
  line-height: 1.75;
}
.wp-block-table.is-style--schedule td:first-child {
  border-right: 1px solid;
  text-align: center;
  padding-inline: 0 30px;
  padding-block: 15px;
  font-size: 18px;
  line-height: 1.1;
}
.wp-block-table.is-style--schedule td:first-child::after {
  content: "";
  width: 14px;
  height: 14px;
  background-color: var(--main-color);
  border-radius: 100%;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}

.is-style-left-line {
  font-family: YakuHanJP_Narrow, "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.28;
  letter-spacing: 0.04em;
  position: relative;
  padding-left: 46px;
}
@media screen and (min-width: 1025px) {
  .is-style-left-line {
    font-size: 34px;
  }
}
.is-style-left-line::before {
  content: "";
  width: 3px;
  height: 1.7em;
  transform: rotate(28deg);
  display: block;
  background: rgb(214, 189, 151);
  background: linear-gradient(0deg, #d6bd97 0%, #a48046 100%);
  position: absolute;
  left: 13px;
  top: -6px;
}

h2.wp-block-heading {
  position: relative;
  font-weight: var(--fw-black);
  font-size: 22px;
  color: var(--main-color);
  letter-spacing: 0.05;
  line-height: 1.75;
  padding-left: 19px;
}
@media screen and (min-width: 1025px) {
  h2.wp-block-heading {
    font-size: 30px;
  }
}
h2.wp-block-heading::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(45deg, rgb(19, 188, 175) 29.24%, rgb(0, 255, 141) 100%);
}

h3.wp-block-heading {
  color: var(--main-color);
  position: relative;
  font-weight: var(--fw-black);
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
@media screen and (min-width: 1025px) {
  h3.wp-block-heading {
    font-size: 26px;
  }
}

h4.wp-block-heading {
  font-weight: var(--fw-black);
  font-size: 18px;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  h4.wp-block-heading {
    font-size: 22px;
  }
}

h5.wp-block-heading {
  font-size: 16px;
  font-weight: var(--fw-black);
}

a {
  color: var(--sub-color);
  transition: opacity var(--transition-time);
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

.wp-block-table table {
  width: 100%;
  margin-inline: auto;
}
.wp-block-table table th,
.wp-block-table table td {
  padding-block: 10px;
  padding-inline: 10px;
  border-color: #d8d8d8;
  letter-spacing: 0.06em;
  font-size: 15px;
  line-height: 1.4;
}
@media screen and (min-width: 1025px) {
  .wp-block-table table th,
  .wp-block-table table td {
    padding-block: 20px;
    padding-inline: 24px;
  }
}
.wp-block-table table td:first-child,
.wp-block-table table th {
  position: relative;
  font-weight: var(--fw-medium);
  background-color: var(--main-color);
  color: #fff;
  width: 30%;
}
@media screen and (min-width: 1025px) {
  .wp-block-table table td:first-child,
  .wp-block-table table th {
    width: 250px;
  }
}
.wp-block-table table td {
  font-weight: var(--fw-medium);
}
.wp-block-table.is-style-simple table td:first-child,
.wp-block-table.is-style-simple table th {
  background-color: #fff;
  color: var(--text-color);
}
.wp-block-table.is-style-simple table td,
.wp-block-table.is-style-simple table th {
  border-left: none;
  border-right: none;
}
.wp-block-table.is-style-simple table tr:first-child th,
.wp-block-table.is-style-simple table tr:first-child td {
  border-top: none;
}
.wp-block-table.is-style-simple table tr:last-child th,
.wp-block-table.is-style-simple table tr:last-child td {
  border-bottom: none;
}/*# sourceMappingURL=block-editor-style.css.map */