@charset "UTF-8";
/*--------------------------------------------------------------
共通でインポートモジュール
# mixinや変数の定義を行う
--------------------------------------------------------------*/
:root {
  --text-color: #333;
  --main-color: #00938b;
  --sub-color: #e98804;
  --bg-color: #fff;
  --bg-sub-color: #e7f5f4;
  --border-color: #babbbc;
  --link-button-font-size: 1em;
  --link-color: var(--main-color);
  --light-gray: #eeeff0;
  --site-width: 1400px;
  --site-inline-padding: 12px;
  --content-width: 1200px;
  --header-content-width: 1200px;
  --header-height: 64px;
  --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: 22px;
  --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;
  --image-radius: 43px 0 43px 0;
  --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:520px) {
  :root {
    --site-inline-padding: 24px;
  }
}
@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: 60px;
    --page-h2-fsz: 28px;
    --page-h3-fsz: 22px;
    --site-inline-padding: 20px;
  }
}
@media screen and (min-width: 1025px) {
  :root {
    --header-height: 78px;
    --menu-fsz: 18px;
    --header-inline-padding: 20px 18px;
  }
}
@media screen and (min-width: 1367px) {
  :root {
    --site-inline-padding: 0;
  }
}
@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;
}

.is-style-table-note {
  font-size: 12px;
  line-height: 1.4 !important;
  letter-spacing: 0.04em;
  margin-top: 8px;
  opacity: 0.7;
}

h2.wp-block-heading {
  font-weight: 700;
  font-style: normal;
  position: relative;
  font-size: 1.375em;
  letter-spacing: 0.05em;
  line-height: 1.75;
  padding-bottom: 0.2em;
}

h2.is-style-page-heading,
h2.page_heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  font-family: YakuHanJP_Narrow, "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  gap: 20px;
  line-height: 1.5;
  --page-h2-fsz: 20px;
}
@media screen and (min-width: 1025px) {
  h2.is-style-page-heading,
  h2.page_heading {
    line-height: 1.6;
    gap: 10px;
    --page-h2-fsz: 26px;
  }
}
h2.is-style-page-heading span,
h2.page_heading span {
  font-size: 15px;
  color: var(--main-color);
}
h2.is-style-page-heading::after,
h2.page_heading::after {
  content: "";
  background-image: url(../images/common/icon-h2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 16px;
}
@media screen and (max-width: 1024px) {
  h2.is-style-page-heading::after,
  h2.page_heading::after {
    margin-top: 8px;
  }
}

h3.wp-block-heading {
  font-family: YakuHanJP_Narrow, "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  position: relative;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  line-height: 1.75;
  padding-block: 0 0.5em;
  position: relative;
  display: flex;
  align-items: center;
}
h3.wp-block-heading::before {
  content: "";
  width: 5px;
  height: 42px;
  background-color: var(--main-color);
  border-radius: 5px;
  display: block;
  margin-right: 0.8em;
}

h4.wp-block-heading {
  font-size: 1.125rem;
  font-weight: 700;
}

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;
  background-color: #eeeff0;
  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;
  font-weight: var(--fw-bold);
}
.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;
}

.editor-styles-wrapper .is-style-table-note {
  border: 1px dashed var(--wp-admin-theme-color);
  padding: 5px;
  position: relative;
}
.editor-styles-wrapper .is-style-table-note::before {
  content: "ここに入力すると表下に表示されます。";
  color: #fff;
  background-color: var(--wp-admin-theme-color);
  font-size: 10px;
  padding: 2px 6px;
  position: absolute;
  top: -1.9em;
  left: 0;
}/*# sourceMappingURL=block-editor-style.css.map */