@charset "UTF-8";
/*--------------------------------------------------------------
共通でインポートモジュール
# mixinや変数の定義を行う
--------------------------------------------------------------*/
:root {
  --vw: 1vw;
  --text-color: #333333;
  --main-color: #00694b;
  --sub-color: #e3c7a8;
  --bg-color: #fff;
  --border-color: #cdcece;
  --link-button-font-size: 1em;
  --link-color: #003279;
  --site-width: 1560px;
  --site-inline-padding: 24px;
  --content-width: 1200px;
  --header-height: 70px;
  --header-inline-padding: 12px;
  --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: 900px) {
  :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: 80px;
    --menu-fsz: 18px;
    --header-inline-padding: 17px 20px;
  }
}
@media screen and (min-width: 1561px) {
  :root {
    --site-inline-padding: 0;
  }
}

html,
body,
div,
span,
object,
iframe,
button,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
sub,
sup,
var,
b,
i,
a,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  font-weight: inherit;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  word-break: normal;
  line-break: strict;
  word-wrap: normal;
  word-break: normal;
  line-height: inherit;
}

textarea,
input[type=button],
input[type=text],
input[type=image],
input[type=submit] {
  -webkit-appearance: none;
  word-break: normal;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

* {
  outline: none;
}

body {
  font-size: 15px;
  word-break: break-all;
  -webkit-text-size-adjust: none;
}

* html body {
  font-size: small;
  font: x-small;
}

*:first-child + html body {
  font-size: small;
  font: x-small;
}

img {
  border: 0;
  vertical-align: bottom;
}

ul,
dl {
  text-indent: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

ol ul li {
  list-style: none;
}

address,
caption,
cite,
code,
dfn,
em,
var {
  font-style: normal;
  font-weight: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

* html input,
* html textarea,
* html select {
  font-size: 100%;
}

*:first-child + html + input,
*:first-child html + textarea,
*:first-child + html select {
  font-size: 100%;
}

table {
  border-collapse: separate;
  border-spacing: 0;
  font-size: inherit;
  font: 100%;
}

th,
td {
  text-align: left;
  vertical-align: top;
}

caption {
  text-align: left;
}

pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
}

* html pre,
* html code,
* html kbd,
* html samp,
* html tt {
  font-size: 108%;
  line-height: 100%;
}

*:first-child + html pre,
*:first-child html + code,
*:first-child html + kbd,
*:first-child + html + samp,
*:first-child + html tt {
  font-size: 108%;
  line-height: 100%;
}

input,
select,
textarea {
  font-size: 100%;
  font-family: Verdana, Helvetica, sans-serif;
  margin: 0;
}

button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  line-height: inherit;
}

figure {
  line-height: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  backface-visibility: hidden;
}

input,
textarea {
  border-radius: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}
@media  {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}

body {
  font-family: YakuHanJP_Narrow, "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  font-weight: var(--fw-medium);
  color: var(--text-color);
}

.is_serif_light {
  font-family: YakuHanJP_Narrow, "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.is_serif_regular {
  font-family: YakuHanJP_Narrow, "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.is_serif_medium {
  font-family: YakuHanJP_Narrow, "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.is_serif_bold {
  font-family: YakuHanJP_Narrow, "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.is_serif_black {
  font-family: YakuHanJP_Narrow, "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

.is_sans_regular {
  font-family: YakuHanJP_Narrow, "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.is_sans_medium {
  font-family: YakuHanJP_Narrow, "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.is_sans_bold {
  font-family: YakuHanJP_Narrow, "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.is_sans_black {
  font-family: YakuHanJP_Narrow, "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

.noto-serif-display-semibold {
  font-family: "Noto Serif Display", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.jost-roman {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.work-sans-semi-bold {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.is_underLine {
  background: linear-gradient(transparent 60%, #ffff90 0%);
  padding: 0 1px 0px;
}

.is_marker_w {
  font-weight: var(--fw-bold);
  font-size: 1.125em;
  background-color: #fff;
  padding-inline: 5px;
  color: var(--main-color);
}

.is_marker_y {
  background-color: #ffffb0;
  padding-inline: 5px;
}

.is_red_text {
  color: #b50d23;
}

.text-align-center {
  text-align: center;
}

.text-align-left {
  text-align: left;
}

.text-align-right {
  text-align: right;
}

@media screen and (min-width: 900px) {
  .br_sp {
    display: none;
  }
}

@media screen and (min-width:540px) {
  .br_sp_s {
    display: none;
  }
}

@media screen and (max-width: 899px) {
  .br_pc {
    display: none;
  }
}

@media screen and (min-width: 1367px) {
  .br_pc_w {
    display: none;
  }
}

@media screen and (max-width: 1366px) {
  .br_pc_w-max {
    display: none;
  }
}

@media screen and (max-width: 899px) {
  .is-pc {
    display: none !important;
  }
}

@media screen and (min-width: 900px) {
  .is-mobile {
    display: none !important;
  }
}

.section_pb_tb {
  padding-block: 30px 25px;
}
@media screen and (min-width: 900px) {
  .section_pb_tb {
    padding-block: 70px;
  }
}

.pd_tb_m {
  padding-top: 40px;
  padding-bottom: 50px;
}
@media screen and (min-width: 900px) {
  .pd_tb_m {
    padding-top: 70px;
    padding-bottom: 60px;
  }
}

.pd_tb_s {
  padding-top: 40px;
  padding-bottom: 80px;
}
@media screen and (min-width: 900px) {
  .pd_tb_s {
    padding-top: 80px;
    padding-bottom: 160px;
  }
}

.is_align_center {
  margin-inline: auto;
  display: block;
}

@media screen and (min-width: 900px) {
  .is_align_left {
    float: right;
    margin-inline: 1.7em 0;
    margin-bottom: 1em;
  }
}

@media screen and (min-width: 900px) {
  .is_align_right {
    float: left;
    margin-inline: 0 1.7em;
    margin-bottom: 1em;
  }
}

.mt_s {
  margin-top: 15px;
}
@media screen and (min-width: 900px) {
  .mt_s {
    margin-top: 30px;
  }
}

.mt_l {
  margin-top: var(--mt-l, 40px) !important;
}

.mt_m {
  margin-top: var(--mt-m, 30px) !important;
}

.ly_siteHeader {
  width: 100%;
  z-index: 15;
  transition: background-color 0.2s ease;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .ly_siteHeader {
    background: #fff;
  }
}

.ly_siteHeader_content {
  --site-width: 1360px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.5s ease;
  height: var(--header-height);
  width: calc(var(--vw) * 100);
  max-width: var(--site-width);
  margin-inline: auto;
  padding-inline: var(--header-inline-padding);
  position: relative;
  gap: 17px;
}
@media screen and (min-width: 900px) {
  .ly_siteHeader_content {
    gap: 24px;
  }
}
.ly_siteHeader_content .el_siteHeader_logo {
  flex-shrink: 0;
  width: auto;
  transition: width 0.5s ease;
}
@media screen and (max-width: 899px) {
  .ly_siteHeader_content .el_siteHeader_logo {
    width: 180px;
  }
}
.ly_siteHeader_content .bl_header_title {
  padding-inline: 10px;
}
.ly_siteHeader_content .bl_searhForm {
  margin-left: auto;
}

@media screen and (min-width: 1025px) {
  .ly_siteHeader_nav {
    background-color: var(--main-color);
    border-radius: 0 0 20px 20px;
    transition: transform 0.3s 0.3s;
  }
  .is_scrolled .ly_siteHeader_nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 12;
  }
  .is_scrolled .ly_siteHeader_nav.is_hidden {
    transform: translateY(-80px);
  }
}

.ly_header_nav {
  margin-inline: auto;
  max-width: var(--site-width);
}
@media screen and (min-width: 900px) {
  .ly_header_nav {
    display: flex;
    justify-content: space-around;
  }
}

@media screen and (max-width: 1024px) {
  .ly_fixed_header {
    margin-top: var(--header-height);
  }
  .ly_fixed_header .ly_siteHeader {
    position: fixed;
    top: 0;
    left: 0;
  }
}
.ly_fixed_header.admin-bar {
  margin-top: -32px;
}
.ly_fixed_header.admin-bar .ly_siteHeader {
  top: 32px;
}

@media screen and (max-width: 899px) {
  .ly_mainVisual {
    width: calc(var(--vw) * 100);
    margin-left: calc(50% - var(--vw) * 50);
  }
}

.ly_breadcrumb {
  display: flex;
  max-width: var(--content-width);
  margin-inline: auto;
  margin-block: 10px;
  padding-inline: var(--site-inline-padding);
}

.ly_content_header {
  margin-inline: auto;
  max-width: var(--site-width);
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--content-header-height, 150px);
  padding: 20px;
}

.ly_siteMain {
  margin-inline: auto;
  width: 100%;
  background-color: var(--bg-color);
  overflow: visible;
}
.home .ly_siteMain {
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .ly_siteMain {
    margin-top: -20px;
  }
}

.ly_mainContent {
  max-width: var(--site-width);
  margin-inline: auto;
}

.ly_breadcrumb_wrapper {
  overflow-x: hidden;
}

.ly_pageHeader {
  width: calc(var(--vw) * 100);
  margin-left: calc(50% - var(--vw) * 50);
  background-image: linear-gradient(90deg, #ffffff, #ffffff 50%, #f7ebdd 50% 100%);
  overflow: hidden;
}

.ly_article {
  margin-inline: auto;
}
.ly_article .bl_postThumbnail {
  margin-bottom: var(--article-mt);
}
.ly_article .bl_article_content {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--site-inline-padding);
}
.ly_article .bl_article_content > * + * {
  margin-top: var(--article-mt);
}
.ly_article .bl_article_content > * + h2,
.ly_article .bl_article_content > * + h3,
.ly_article .bl_article_content > * + h4,
.ly_article .bl_article_content > * + h5,
.ly_article .bl_article_content > * + h6 {
  margin-top: var(--artilce-heading-mt);
}

.ly_siteFooter {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top: 1px solid var(--main-color);
}
.ly_siteFooter .bl_siteFooter {
  padding-inline: var(--site-inline-padding);
  max-width: var(--content-width);
  width: 100%;
}

.ly_footerCTA {
  border-top: 1px solid var(--main-color);
}
.bl_article_content .ly_footerCTA {
  border-top: none;
  border-bottom: 1px solid var(--main-color);
  --article-mt: 0;
  width: calc(var(--vw) * 100);
  margin-left: calc(50% - var(--vw) * 50);
}

.ly_inner_content {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--site-inline-padding);
}

.ly_pc2colsp1col {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 900px) {
  .ly_pc2colsp1col {
    grid-template-columns: 1fr 1fr;
  }
}

article.not_found {
  grid-column: 1/-1;
  text-align: center;
}

.bl_button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  background-color: var(--link-button-bg);
  color: var(--link-button-color);
  font-size: var(--link-button-font-size);
  transition: color 0.3s ease, background-color 0.3s ease;
}
.bl_button:before {
  content: "";
  width: 0.6em;
  height: 0.6em;
  border-style: solid solid none none;
  border-width: 2px;
  border-color: inherit;
  transform: rotate(45deg);
  margin-right: 6px;
}
@media (hover: hover) {
  .bl_button:hover {
    background-color: var(--link-button-hover-bg);
    color: var(--link-button-hover-color);
  }
}

.el_arrow {
  display: inline-flex;
  align-items: center;
  font-size: 1.1em;
}
.el_arrow::before {
  content: "";
  display: inline-block;
  position: relative;
  width: var(--el-arrow-size, 0.625em);
  height: var(--el-arrow-size, 0.625em);
  background-color: transparent;
  border-style: solid solid none none;
  border-width: 2px;
  transform: rotate(45deg);
  transform-origin: center;
}

.el_arrow__left {
  margin-left: 5px;
}

.el_arrow__right {
  margin-right: 5px;
}
.el_arrow__right::before {
  border-style: none none solid solid;
}

.el_btn_lineArrow {
  border: 1px solid;
  display: flex;
  min-height: 76px;
  align-items: center;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.4;
  gap: 0;
  justify-content: space-between;
  width: 100%;
  max-width: 385px;
  transition: background-color var(--transition-time);
  padding: 20px;
  white-space: nowrap;
}
@media screen and (min-width:540px) {
  .el_btn_lineArrow {
    padding: 21px;
  }
}
@media screen and (min-width: 900px) {
  .el_btn_lineArrow {
    padding-inline: 38px;
  }
}
.el_btn_lineArrow::after {
  content: "";
  width: 45px;
  height: 8px;
  background-image: url(../images/button-arrow-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width:540px) {
  .el_btn_lineArrow::after {
    width: 90px;
    height: 12px;
  }
}
@media (hover: hover) {
  .el_btn_lineArrow:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
}

.el_moreLink > span,
.el_moreLink a {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 230px;
  padding: 10px 0px 10px 25px;
  line-height: 1.8;
  text-decoration: none;
  color: var(--main-color);
  transition: 0.3s ease-in-out;
  font-weight: 500;
  --morelink-radius: 3rem;
  --moreLink-arrow-left: 1.2rem;
  --moreLink-arrow-top: 1.1rem;
}
.el_moreLink > span:before, .el_moreLink > span:after,
.el_moreLink a:before,
.el_moreLink a:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
}
.el_moreLink > span:before,
.el_moreLink a:before {
  content: "";
  background-image: url(../images/more_button_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 13px;
  left: var(--moreLink-arrow-left);
  top: var(--moreLink-arrow-top);
  z-index: 2;
  transition: all 0.3s;
}
.el_moreLink > span:after,
.el_moreLink a:after {
  left: 0;
  background: var(--main-color);
  z-index: 1;
  width: var(--morelink-radius);
  height: var(--morelink-radius);
  border-radius: 4rem;
  transform: translateY(-50%);
  transition: all 0.5s;
}
.el_moreLink > span span,
.el_moreLink a span {
  position: relative;
  transition: all 0.3s;
  z-index: 3;
}
@media (hover: hover) {
  .el_moreLink > span:hover span,
  .el_moreLink a:hover span {
    color: #fff;
  }
  .el_moreLink > span:hover:before,
  .el_moreLink a:hover:before {
    left: 2.5rem;
  }
  .el_moreLink > span:hover:after,
  .el_moreLink a:hover:after {
    right: 0;
    width: 100%;
    background: var(--main-color);
  }
}

.bl_postThumbnail img {
  filter: none;
}

.el_linkButton {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  width: 100%;
  color: var(--el-btn-txt, var(--main-color));
  background-color: var(--el-btn-bg, #fff);
  letter-spacing: 0.04em;
  line-height: 1.125;
  border-radius: 8px;
  font-size: 16px;
  font-weight: var(--fw-medium);
  height: 45px;
  padding-inline: 26px 15px;
  padding-block: 10px;
  transition: all var(--transition-time) ease;
  white-space: nowrap;
  position: relative;
}
.el_linkButton::after {
  content: "";
  background-image: url(../images/common/icon-arrow-green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  transition: all var(--transition);
  flex-shrink: 0;
}
@media (hover: hover) {
  .el_linkButton:hover {
    --el-btn-txt: #fff;
    --el-btn-bg: var(--main-color);
    border: 1px solid var(--el-btn-txt, #fff);
  }
  .el_linkButton:hover::after {
    background-image: url(../images/common/icon-arrow-w.svg);
  }
}
.el_linkButton.is_green {
  --el-btn-txt: #fff;
  --el-btn-bg: var(--main-color);
  border: none;
}
.el_linkButton.is_green::after {
  background-image: url(../images/common/icon-arrow-w.svg);
}
@media (hover: hover) {
  .el_linkButton.is_green:hover {
    opacity: 0.8;
  }
}
.el_linkButton.is_lightGreen {
  --el-btn-txt: var(--text-color);
  --el-btn-bg: #f4fad3;
  border: 1px solid #babbbc;
  min-height: 60px;
}
@media (hover: hover) {
  .el_linkButton.is_lightGreen:hover {
    --el-btn-txt: #fff;
    --el-btn-bg: var(--main-color);
  }
}
.el_linkButton.is_external {
  --el-btn-txt: #fff;
  --el-btn-bg: var(--main-color);
  min-height: 60px;
  gap: 40px;
}
.el_linkButton.is_external::after {
  background-image: url(../images/common/icon-external.svg);
}
@media (hover: hover) {
  .el_linkButton.is_external:hover {
    border: none;
    opacity: 0.8;
  }
}
.el_linkButton.is_fit {
  width: -moz-fit-content;
  width: fit-content;
}

.bl_mediaText {
  display: grid;
}
@media screen and (min-width: 900px) {
  .bl_mediaText {
    grid-template-columns: 1fr 1fr;
  }
}

.is_2col {
  display: grid;
}
@media screen and (min-width: 900px) {
  .is_2col {
    grid-template-columns: 1fr 1fr;
  }
}

.bl_buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
@media screen and (min-width: 900px) {
  .bl_buttons {
    gap: 25px;
    flex-direction: row;
  }
}
.bl_buttons a.el_dlButton {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 17px;
  padding-inline: 30px 25px;
  color: #b50d23;
  background-color: #fff5f5;
  border-radius: 8px;
  border: 1px solid #b50d23;
  gap: 25px;
  width: 270px;
}
.bl_buttons a.el_dlButton::before {
  content: "";
  background-image: url(../images/page/icon-paper.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 23px;
  height: 32px;
  margin-left: auto;
}

.el_siteHeader_logo a {
  display: flex;
  position: relative;
  align-items: flex-end;
}

.bl_header_nav_wrapper {
  background-color: var(--global-menu-bg);
}
@media screen and (max-width: 899px) {
  .bl_header_nav_wrapper {
    display: none;
  }
}

.el_siteHeader_lang {
  margin-inline: auto 0;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 37px;
  width: 80px;
  flex-shrink: 0;
  letter-spacing: 0.04em;
  color: #808080;
  gap: 0.3em;
  font-weight: var(--fw-medium);
}
@media screen and (min-width: 900px) {
  .el_siteHeader_lang {
    width: 95px;
  }
}

.bl_siteHeader_contacts {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .bl_siteHeader_contacts {
    display: none;
  }
}
.bl_siteHeader_contacts .el_linkButton {
  letter-spacing: 0.04em;
  font-size: 21px;
  font-weight: var(--fw-bold);
  flex-direction: column;
  gap: 3px;
  line-height: 1;
  height: 63px;
  width: 168px;
  padding-inline: 15px;
}
.bl_siteHeader_contacts .el_linkButton::after {
  content: none;
}
.bl_siteHeader_contacts .el_linkButton.for_recruit {
  background-color: var(--sub-color);
  color: var(--text-color);
  border: none;
}
.bl_siteHeader_contacts .el_linkButton.for_contact {
  --el-btn-bg: var(--main-color);
  --el-btn-txt: #fff;
  border: none;
}
.bl_siteHeader_contacts .el_linkButton:hover {
  opacity: 0.7;
}
.bl_siteHeader_contacts .el_linkButton span {
  font-size: 15px;
  font-weight: var(--fw-medium);
}
@media screen and (min-width: 1025px) {
  .bl_siteHeader_contacts .el_linkButton + .el_linkButton {
    margin-left: 11px;
  }
}

@media screen and (max-width: 1024px) {
  .ly_siteHeader_nav {
    visibility: hidden;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: calc(100% - var(--header-height));
    z-index: 0;
    justify-content: center;
    margin-top: var(--header-height);
    background-color: #f7ebdd;
    overflow-y: auto;
    overflow-x: hidden;
    padding-inline: 24px;
    padding-block: 26px 10px;
    transform: translateX(110%);
    transition: all var(--transition-time) ease;
  }
  .is_open .ly_siteHeader_nav {
    transform: translateX(0);
    visibility: visible;
    z-index: 9;
  }
}

.bl_siteHeader_nav {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1024px) {
  .bl_siteHeader_nav {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    padding-bottom: 30px;
    max-width: 480px;
    margin-inline: auto;
  }
  .bl_siteHeader_nav li {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 1px solid #babbbc;
  }
  .bl_siteHeader_nav li > a.not_link {
    pointer-events: none;
  }
  .bl_siteHeader_nav li a {
    font-size: 18px;
    font-weight: var(--fw-medium);
    letter-spacing: 0.04em;
    padding-block: 14px;
    padding-inline: 20px;
    color: var(--main-color);
  }
  .bl_siteHeader_nav li a br {
    display: none;
  }
  .bl_siteHeader_nav li .sub-menu {
    width: 100%;
    display: none;
    padding-left: 30px;
  }
  .bl_siteHeader_nav li .sub-menu li:last-child {
    border-bottom: none;
  }
  .bl_siteHeader_nav .el_header_button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 164px;
    height: 56px;
    padding: 10px;
    background-color: var(--main-color);
    color: #fff;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1025px) {
  .bl_siteHeader_nav {
    margin-inline: auto;
    min-height: 65px;
    gap: 0;
    --site-width: 1360px;
    max-width: var(--site-width);
    display: grid;
    grid-template-columns: repeat(6, 1fr);
  }
  .bl_siteHeader_nav li:hover > .sub-menu {
    display: block;
    visibility: visible;
    opacity: 1;
  }
  .bl_siteHeader_nav a {
    transition: color 0.5s ease;
  }
  .bl_siteHeader_nav .sub-menu .current-menu-item a {
    color: var(--main-color);
  }
  .bl_siteHeader_nav > li {
    width: auto;
    position: relative;
  }
  .bl_siteHeader_nav > li:last-child::before {
    content: none;
  }
  .bl_siteHeader_nav > li::before {
    content: "";
    position: absolute;
    border-left: 1px solid #fff;
    top: 50%;
    right: 0;
    height: 38px;
    transform: translateY(-50%);
  }
  .bl_siteHeader_nav > li > a {
    color: #fff;
    font-size: clamp(14px, 4.154px + 0.962vw, 18px);
    letter-spacing: 0.04em;
    line-height: 1.125;
    font-weight: var(--fw-medium);
    padding-inline: 10px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    position: relative;
    transition: opacity var(--transition-time);
  }
  .bl_siteHeader_nav > li > a:hover {
    opacity: 0.7;
  }
  .bl_siteHeader_nav > li.is_show_mobile {
    display: none;
  }
  .bl_siteHeader_nav > li.menu-item-has-children > a {
    padding-bottom: 11px;
  }
  .bl_siteHeader_nav > li.menu-item-has-children > a::after {
    position: absolute;
    content: "";
    background-image: url(../images/header/menu-arrow-pc.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 21px;
    height: 5px;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
  }
  .bl_siteHeader_nav .sub-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: all var(--transition);
    position: absolute;
    background-color: var(--global-submenu-bg, #fff);
    min-width: 100%;
    border-radius: 0 0 8px 8px;
    box-shadow: 0px 8px 30px 0px rgba(167, 167, 167, 0.3);
  }
  .bl_siteHeader_nav .sub-menu a {
    color: var(--text-color);
    display: flex;
    align-items: center;
    padding: 0.8em 1em;
    white-space: nowrap;
    transition: all 0.1s ease;
    font-weight: var(--fw-medium);
  }
}
@media screen and (min-width: 1025px) and (hover: hover) {
  .bl_siteHeader_nav .sub-menu a:hover {
    background-color: var(--main-color);
    color: #fff;
  }
}

.el_siteHeader_mobile {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
  row-gap: 22px;
  -moz-column-gap: 8px;
       column-gap: 8px;
  justify-content: center;
  max-width: 480px;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .el_siteHeader_mobile {
    display: none;
  }
}
.el_siteHeader_mobile .el_linkButton {
  flex-direction: column;
  gap: 5px;
  font-size: 21px;
  height: 63px;
  line-height: 1;
  letter-spacing: 0.04em;
}
.el_siteHeader_mobile .el_linkButton span {
  font-size: 15px;
  letter-spacing: 0.04em;
}
.el_siteHeader_mobile .el_linkButton.for_recruit {
  width: calc(50% - 4px);
  background-color: var(--sub-color);
  color: var(--text-color);
}
.el_siteHeader_mobile .el_linkButton.for_recruit::after {
  content: none;
}
.el_siteHeader_mobile .el_linkButton.for_contact {
  width: calc(50% - 4px);
  background-color: var(--main-color);
  color: #fff;
}
.el_siteHeader_mobile .el_linkButton.for_contact::after {
  content: none;
}
.el_siteHeader_mobile .el_linkButton.for_form::before {
  background-image: url(../images/footer/icon-mail.svg);
}

/* スライドメニューボタン */
.bl_menuToggleButton {
  z-index: 10;
  background-color: var(--main-color);
  transition: all var(--transition-time) ease;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 53px;
  width: 53px;
  border-radius: 6px;
  /*ボタン内側*/
}
@media screen and (min-width: 1025px) {
  .bl_menuToggleButton {
    display: none;
  }
}
.bl_menuToggleButton .openbtn1 {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  width: 32px;
  height: 24px;
}
.bl_menuToggleButton .openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  height: 2px;
  background: #fff;
  width: 100%;
}
.bl_menuToggleButton .openbtn1 span:nth-of-type(1) {
  top: 0;
}
.bl_menuToggleButton .openbtn1 span:nth-of-type(2) {
  top: 11px;
}
.bl_menuToggleButton .openbtn1 span:nth-of-type(3) {
  top: 22px;
}
.bl_menuToggleButton.is_open .openbtn1 span:nth-of-type(1) {
  transform: translateY(11px) rotate(-45deg);
}
.bl_menuToggleButton.is_open .openbtn1 span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  animation: active-btn05-bar02 0.8s forwards;
}
.bl_menuToggleButton.is_open .openbtn1 span:nth-of-type(3) {
  transform: translateY(-11px) rotate(45deg);
}

@keyframes active-btn05-bar02 {
  100% {
    height: 0;
  }
}
body.is_open {
  overflow: hidden;
}

.global-menu-toggle {
  display: flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: grid;
  align-self: center;
  margin-right: 10px;
}
@media screen and (min-width: 1025px) {
  .global-menu-toggle {
    display: none;
  }
}
.global-menu-toggle::before, .global-menu-toggle::after {
  grid-area: 1/1;
  content: "";
  background-color: var(--main-color);
  width: 14px;
  height: 2px;
  transition: transform 0.3s;
}
.global-menu-toggle::before {
  transform: rotate(90deg);
}
.global-menu-toggle.is-open::before {
  transform: rotate(0);
}

.overlay {
  position: fixed;
  top: var(--header-height);
  left: 0;
  height: cacl(100%-var(--header-height));
  width: 100%;
  z-index: 0;
  visibility: hidden;
  opacity: 0;
  transition: all var(--transition-time);
}
.is_open .overlay {
  z-index: 1;
  background-color: #000;
  opacity: 0.5;
  visibility: visible;
}

.bl_breadcrumb_wrapper {
  background-color: var(--site-bg-color);
  color: var(--text-color);
}

.bl_breadcrumb {
  letter-spacing: 0.06em;
  overflow-x: auto;
  font-size: 12px;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
}
.bl_breadcrumb::-webkit-scrollbar {
  display: none; /* Chrome, Safari 対応 */
}
@media screen and (min-width: 900px) {
  .bl_breadcrumb {
    font-size: 14px;
  }
}
.bl_breadcrumb li {
  padding-block: 5px;
  list-style: none;
  white-space: nowrap;
  color: var(--main-color);
}
.bl_breadcrumb li a {
  color: var(--text-color);
}
.bl_breadcrumb li + li::before {
  content: ">";
  padding-inline: 5px;
  color: var(--text-color);
}
.bl_breadcrumb a {
  transition: opacity var(--transition-time);
}
@media (hover: hover) {
  .bl_breadcrumb a:hover {
    opacity: 0.7;
  }
}

.bl_page_title {
  margin-inline: auto;
  max-width: var(--site-width);
  display: flex;
  align-items: center;
  padding-inline: var(--site-inline-padding);
  color: var(--main-color);
  font-size: 26px;
  letter-spacing: 0.04em;
  line-height: 1.3;
  font-weight: var(--fw-bold);
  min-height: 150px;
  background-color: #f7ebdd;
  background-image: url(../images/page/bg-page-header.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right -59px;
  padding-block: 20px;
  padding-inline: 42px;
  border-radius: 0 0 0 105px;
}
@media screen and (min-width: 900px) {
  .bl_page_title {
    padding-left: clamp(42px, -297.899px + 33.193vw, 200px);
    background-position: top right;
    padding-block: 40px 20px;
    border-radius: 0 0 0 143px;
    height: 265px;
    font-size: 32px;
  }
}

.single .bl_article_content > * + *,
.post-type-archive-locations .bl_article_content > * + *,
.page .bl_article_content > * + * {
  margin-top: 30px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content > * + *,
  .post-type-archive-locations .bl_article_content > * + *,
  .page .bl_article_content > * + * {
    margin-top: 40px;
  }
}
.single .bl_article_content section + section,
.post-type-archive-locations .bl_article_content section + section,
.page .bl_article_content section + section {
  margin-top: 60px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content section + section,
  .post-type-archive-locations .bl_article_content section + section,
  .page .bl_article_content section + section {
    margin-top: 80px;
  }
}
.single .bl_article_content > * + h2,
.single .bl_article_content > * + h3,
.post-type-archive-locations .bl_article_content > * + h2,
.post-type-archive-locations .bl_article_content > * + h3,
.page .bl_article_content > * + h2,
.page .bl_article_content > * + h3 {
  margin-top: 40px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content > * + h2,
  .single .bl_article_content > * + h3,
  .post-type-archive-locations .bl_article_content > * + h2,
  .post-type-archive-locations .bl_article_content > * + h3,
  .page .bl_article_content > * + h2,
  .page .bl_article_content > * + h3 {
    margin-top: 60px;
  }
}
.single .bl_article_content > * + h4,
.post-type-archive-locations .bl_article_content > * + h4,
.page .bl_article_content > * + h4 {
  margin-top: 30px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content > * + h4,
  .post-type-archive-locations .bl_article_content > * + h4,
  .page .bl_article_content > * + h4 {
    margin-top: 50px;
  }
}
.single .bl_article_content p,
.post-type-archive-locations .bl_article_content p,
.page .bl_article_content p {
  margin-inline: auto;
  letter-spacing: 0.04em;
  line-height: 2;
}
.single .bl_article_content p a,
.post-type-archive-locations .bl_article_content p a,
.page .bl_article_content p a {
  color: var(--main-color);
  transition: opacity var(--transition-time) ease;
}
@media (hover: hover) {
  .single .bl_article_content p a:hover,
  .post-type-archive-locations .bl_article_content p a:hover,
  .page .bl_article_content p a:hover {
    opacity: 0.7;
  }
}
.single .bl_article_content p strong,
.post-type-archive-locations .bl_article_content p strong,
.page .bl_article_content p strong {
  color: #006934;
  font-weight: var(--fw-bold);
}
.single .bl_article_content p.is_narrow,
.post-type-archive-locations .bl_article_content p.is_narrow,
.page .bl_article_content p.is_narrow {
  max-width: 840px;
}
.single .bl_article_content p.is_fit,
.post-type-archive-locations .bl_article_content p.is_fit,
.page .bl_article_content p.is_fit {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.single .bl_article_content p.is_catchCopy,
.post-type-archive-locations .bl_article_content p.is_catchCopy,
.page .bl_article_content p.is_catchCopy {
  font-weight: var(--fw-bold);
  font-size: 18px;
  line-height: 1.56;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.single .bl_article_content p.footNote,
.post-type-archive-locations .bl_article_content p.footNote,
.page .bl_article_content p.footNote {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #595757;
  margin-top: 10px;
  line-height: 1.4;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content p.footNote,
  .post-type-archive-locations .bl_article_content p.footNote,
  .page .bl_article_content p.footNote {
    font-size: 15px;
  }
}
.single .bl_article_content > h2,
.single .bl_article_content section > h2,
.post-type-archive-locations .bl_article_content > h2,
.post-type-archive-locations .bl_article_content section > h2,
.page .bl_article_content > h2,
.page .bl_article_content section > h2 {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-weight: var(--fw-bold);
  color: var(--main-color);
  position: relative;
  font-size: 26px;
  line-height: 1.36;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content > h2,
  .single .bl_article_content section > h2,
  .post-type-archive-locations .bl_article_content > h2,
  .post-type-archive-locations .bl_article_content section > h2,
  .page .bl_article_content > h2,
  .page .bl_article_content section > h2 {
    text-align: center;
    font-size: 26px;
    letter-spacing: 0.04em;
  }
}
.single .bl_article_content > h2:before,
.single .bl_article_content section > h2:before,
.post-type-archive-locations .bl_article_content > h2:before,
.post-type-archive-locations .bl_article_content section > h2:before,
.page .bl_article_content > h2:before,
.page .bl_article_content section > h2:before {
  content: "";
  background-image: url(../images/common/icon-home.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 7px;
}
.single .bl_article_content h2.lp_heading,
.post-type-archive-locations .bl_article_content h2.lp_heading,
.page .bl_article_content h2.lp_heading {
  color: var(--main-color);
  text-align: left;
  position: relative;
  font-size: 32px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content h2.lp_heading,
  .post-type-archive-locations .bl_article_content h2.lp_heading,
  .page .bl_article_content h2.lp_heading {
    font-size: 36px;
    letter-spacing: 0.04em;
    line-height: 1;
  }
}
.single .bl_article_content h2.lp_heading .el_heading_main,
.post-type-archive-locations .bl_article_content h2.lp_heading .el_heading_main,
.page .bl_article_content h2.lp_heading .el_heading_main {
  line-height: 1.25;
}
.single .bl_article_content h2.lp_heading .el_heading_sub,
.post-type-archive-locations .bl_article_content h2.lp_heading .el_heading_sub,
.page .bl_article_content h2.lp_heading .el_heading_sub {
  display: flex;
  font-size: 12px;
  letter-spacing: 0;
  align-items: center;
  gap: 9px;
  color: var(--text-color);
  margin-bottom: 13px;
}
.single .bl_article_content h2.lp_heading .el_heading_sub:before,
.post-type-archive-locations .bl_article_content h2.lp_heading .el_heading_sub:before,
.page .bl_article_content h2.lp_heading .el_heading_sub:before {
  content: "";
  background-image: url(../images/common/icon-home.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 19px;
  height: 18px;
  flex-shrink: 0;
}
.single .bl_article_content h3.is_bg_green,
.single .bl_article_content section > h3,
.single .bl_article_content .bl_box_green > h3,
.post-type-archive-locations .bl_article_content h3.is_bg_green,
.post-type-archive-locations .bl_article_content section > h3,
.post-type-archive-locations .bl_article_content .bl_box_green > h3,
.page .bl_article_content h3.is_bg_green,
.page .bl_article_content section > h3,
.page .bl_article_content .bl_box_green > h3 {
  background-color: var(--main-color);
  color: #fff;
  padding-inline: 28px;
  padding-block: 17px 22px;
  border-radius: 6px;
  font-weight: var(--fw-bold);
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  position: relative;
}
.single .bl_article_content h3.is_bg_green::after,
.single .bl_article_content section > h3::after,
.single .bl_article_content .bl_box_green > h3::after,
.post-type-archive-locations .bl_article_content h3.is_bg_green::after,
.post-type-archive-locations .bl_article_content section > h3::after,
.post-type-archive-locations .bl_article_content .bl_box_green > h3::after,
.page .bl_article_content h3.is_bg_green::after,
.page .bl_article_content section > h3::after,
.page .bl_article_content .bl_box_green > h3::after {
  content: "";
  width: 98%;
  height: 1px;
  background-color: #baad8d;
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .single .bl_article_content h3.is_bg_green,
  .single .bl_article_content section > h3,
  .single .bl_article_content .bl_box_green > h3,
  .post-type-archive-locations .bl_article_content h3.is_bg_green,
  .post-type-archive-locations .bl_article_content section > h3,
  .post-type-archive-locations .bl_article_content .bl_box_green > h3,
  .page .bl_article_content h3.is_bg_green,
  .page .bl_article_content section > h3,
  .page .bl_article_content .bl_box_green > h3 {
    font-size: 20px;
  }
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .is_stuff_box .bl_mediaText,
  .post-type-archive-locations .bl_article_content .is_stuff_box .bl_mediaText,
  .page .bl_article_content .is_stuff_box .bl_mediaText {
    gap: 30px !important;
  }
}
.single .bl_article_content .is_stuff_box h3.el_stuff_name,
.post-type-archive-locations .bl_article_content .is_stuff_box h3.el_stuff_name,
.page .bl_article_content .is_stuff_box h3.el_stuff_name {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 0;
  flex-wrap: wrap;
  align-items: center;
  color: var(--main-color);
  font-size: 24px;
  margin-bottom: 15px;
  line-height: 1.4;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .is_stuff_box h3.el_stuff_name,
  .post-type-archive-locations .bl_article_content .is_stuff_box h3.el_stuff_name,
  .page .bl_article_content .is_stuff_box h3.el_stuff_name {
    margin-bottom: 5px;
  }
}
.single .bl_article_content .is_stuff_box h3.el_stuff_name span,
.post-type-archive-locations .bl_article_content .is_stuff_box h3.el_stuff_name span,
.page .bl_article_content .is_stuff_box h3.el_stuff_name span {
  font-size: 16px;
  color: var(--text-color);
}
.single .bl_article_content h4,
.post-type-archive-locations .bl_article_content h4,
.page .bl_article_content h4 {
  font-size: 18px;
  line-height: 1.5;
  border-bottom: 1px solid var(--main-color);
  padding-block: 0 10px;
  padding-inline: 10px;
}
.single .bl_article_content table,
.post-type-archive-locations .bl_article_content table,
.page .bl_article_content table {
  width: 100%;
  margin-inline: auto;
}
.single .bl_article_content table.is_pastel_green,
.post-type-archive-locations .bl_article_content table.is_pastel_green,
.page .bl_article_content table.is_pastel_green {
  font-size: 14px;
  line-height: 1.3;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content table.is_pastel_green,
  .post-type-archive-locations .bl_article_content table.is_pastel_green,
  .page .bl_article_content table.is_pastel_green {
    font-size: 18px;
  }
}
.single .bl_article_content table.is_pastel_green th,
.single .bl_article_content table.is_pastel_green td,
.post-type-archive-locations .bl_article_content table.is_pastel_green th,
.post-type-archive-locations .bl_article_content table.is_pastel_green td,
.page .bl_article_content table.is_pastel_green th,
.page .bl_article_content table.is_pastel_green td {
  padding-block: 20px;
  padding-inline: 15px;
  border-right: 7px solid #fff;
  border-bottom: 10px solid #fff;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content table.is_pastel_green th,
  .single .bl_article_content table.is_pastel_green td,
  .post-type-archive-locations .bl_article_content table.is_pastel_green th,
  .post-type-archive-locations .bl_article_content table.is_pastel_green td,
  .page .bl_article_content table.is_pastel_green th,
  .page .bl_article_content table.is_pastel_green td {
    padding-block: 20px;
    padding-inline: 45px;
  }
}
.single .bl_article_content table.is_pastel_green th,
.post-type-archive-locations .bl_article_content table.is_pastel_green th,
.page .bl_article_content table.is_pastel_green th {
  background-color: #f4fad3;
  color: var(--main-color);
  font-size: 15px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content table.is_pastel_green th,
  .post-type-archive-locations .bl_article_content table.is_pastel_green th,
  .page .bl_article_content table.is_pastel_green th {
    font-size: 18px;
  }
}
.single .bl_article_content table.is_pastel_green td,
.post-type-archive-locations .bl_article_content table.is_pastel_green td,
.page .bl_article_content table.is_pastel_green td {
  background-color: #f9f9f9;
}
.single .bl_article_content table.is_pastel_green td:last-child,
.post-type-archive-locations .bl_article_content table.is_pastel_green td:last-child,
.page .bl_article_content table.is_pastel_green td:last-child {
  border-right: none;
}
.single .bl_article_content table.is_pastel_green tr:last-child th,
.single .bl_article_content table.is_pastel_green tr:last-child td,
.post-type-archive-locations .bl_article_content table.is_pastel_green tr:last-child th,
.post-type-archive-locations .bl_article_content table.is_pastel_green tr:last-child td,
.page .bl_article_content table.is_pastel_green tr:last-child th,
.page .bl_article_content table.is_pastel_green tr:last-child td {
  border-bottom: none;
}
.single .bl_article_content table.is_2tone,
.post-type-archive-locations .bl_article_content table.is_2tone,
.page .bl_article_content table.is_2tone {
  border-radius: 22px;
  border: 1px solid #cdcece;
  overflow: hidden;
  font-size: 15px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content table.is_2tone,
  .post-type-archive-locations .bl_article_content table.is_2tone,
  .page .bl_article_content table.is_2tone {
    font-size: 1em;
  }
}
.single .bl_article_content table.is_2tone th,
.single .bl_article_content table.is_2tone td,
.post-type-archive-locations .bl_article_content table.is_2tone th,
.post-type-archive-locations .bl_article_content table.is_2tone td,
.page .bl_article_content table.is_2tone th,
.page .bl_article_content table.is_2tone td {
  padding-block: 15px;
  padding-inline: 15px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content table.is_2tone th,
  .single .bl_article_content table.is_2tone td,
  .post-type-archive-locations .bl_article_content table.is_2tone th,
  .post-type-archive-locations .bl_article_content table.is_2tone td,
  .page .bl_article_content table.is_2tone th,
  .page .bl_article_content table.is_2tone td {
    padding-block: 27px;
    padding-inline: 28px;
  }
}
.single .bl_article_content table.is_2tone th,
.post-type-archive-locations .bl_article_content table.is_2tone th,
.page .bl_article_content table.is_2tone th {
  width: 38%;
  font-size: 15px;
  border-bottom: 1px solid #fff;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content table.is_2tone th,
  .post-type-archive-locations .bl_article_content table.is_2tone th,
  .page .bl_article_content table.is_2tone th {
    font-size: 17px;
  }
}
.single .bl_article_content table.is_2tone td,
.post-type-archive-locations .bl_article_content table.is_2tone td,
.page .bl_article_content table.is_2tone td {
  border-bottom: 1px solid #cdcece;
}
.single .bl_article_content table.is_2tone tr:nth-child(odd) th,
.post-type-archive-locations .bl_article_content table.is_2tone tr:nth-child(odd) th,
.page .bl_article_content table.is_2tone tr:nth-child(odd) th {
  background-color: #edddbd;
  color: #40210f;
}
.single .bl_article_content table.is_2tone tr:nth-child(even) th,
.post-type-archive-locations .bl_article_content table.is_2tone tr:nth-child(even) th,
.page .bl_article_content table.is_2tone tr:nth-child(even) th {
  background-color: var(--main-color);
  color: #fff;
}
.single .bl_article_content table.is_2tone tr:last-child th,
.single .bl_article_content table.is_2tone tr:last-child td,
.post-type-archive-locations .bl_article_content table.is_2tone tr:last-child th,
.post-type-archive-locations .bl_article_content table.is_2tone tr:last-child td,
.page .bl_article_content table.is_2tone tr:last-child th,
.page .bl_article_content table.is_2tone tr:last-child td {
  border-bottom: none;
}
.single .bl_article_content table.is_2tone.is_lightGreen,
.post-type-archive-locations .bl_article_content table.is_2tone.is_lightGreen,
.page .bl_article_content table.is_2tone.is_lightGreen {
  border-radius: 8px;
}
.single .bl_article_content table.is_2tone.is_lightGreen tr:nth-child(odd) th,
.post-type-archive-locations .bl_article_content table.is_2tone.is_lightGreen tr:nth-child(odd) th,
.page .bl_article_content table.is_2tone.is_lightGreen tr:nth-child(odd) th {
  background-color: #f4fad3;
  color: var(--text-color);
}
.single .bl_article_content table.is_2tone.is_lightGreen td,
.post-type-archive-locations .bl_article_content table.is_2tone.is_lightGreen td,
.page .bl_article_content table.is_2tone.is_lightGreen td {
  color: var(--text-color);
}
.single .bl_article_content section,
.post-type-archive-locations .bl_article_content section,
.page .bl_article_content section {
  max-width: 1240px;
  margin-inline: auto;
}
.single .bl_article_content section.narrow-width,
.post-type-archive-locations .bl_article_content section.narrow-width,
.page .bl_article_content section.narrow-width {
  max-width: 1000px;
}
.single .bl_article_content section.middle_width,
.post-type-archive-locations .bl_article_content section.middle_width,
.page .bl_article_content section.middle_width {
  max-width: 1060px;
}
.single .bl_article_content section.full-width,
.post-type-archive-locations .bl_article_content section.full-width,
.page .bl_article_content section.full-width {
  max-width: none;
  width: calc(var(--vw) * 100);
  margin-left: calc(50% - var(--vw) * 50);
}
.single .bl_article_content section > * + *,
.post-type-archive-locations .bl_article_content section > * + *,
.page .bl_article_content section > * + * {
  margin-top: 30px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content section > * + *,
  .post-type-archive-locations .bl_article_content section > * + *,
  .page .bl_article_content section > * + * {
    margin-top: 40px;
  }
}
.single .bl_article_content section > * + h2,
.single .bl_article_content section > * + h3,
.post-type-archive-locations .bl_article_content section > * + h2,
.post-type-archive-locations .bl_article_content section > * + h3,
.page .bl_article_content section > * + h2,
.page .bl_article_content section > * + h3 {
  margin-top: 40px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content section > * + h2,
  .single .bl_article_content section > * + h3,
  .post-type-archive-locations .bl_article_content section > * + h2,
  .post-type-archive-locations .bl_article_content section > * + h3,
  .page .bl_article_content section > * + h2,
  .page .bl_article_content section > * + h3 {
    margin-top: 60px;
  }
}
.single .bl_article_content section > * + h4,
.post-type-archive-locations .bl_article_content section > * + h4,
.page .bl_article_content section > * + h4 {
  margin-top: 30px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content section > * + h4,
  .post-type-archive-locations .bl_article_content section > * + h4,
  .page .bl_article_content section > * + h4 {
    margin-top: 50px;
  }
}
.single .bl_article_content ul.is_default,
.post-type-archive-locations .bl_article_content ul.is_default,
.page .bl_article_content ul.is_default {
  padding-left: 1.5em;
}
.single .bl_article_content ul.is_default li,
.post-type-archive-locations .bl_article_content ul.is_default li,
.page .bl_article_content ul.is_default li {
  list-style: disc;
}
.single .bl_article_content ul.is_fit,
.post-type-archive-locations .bl_article_content ul.is_fit,
.page .bl_article_content ul.is_fit {
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-inline: auto;
}
.single .bl_article_content ul.is_large_check,
.post-type-archive-locations .bl_article_content ul.is_large_check,
.page .bl_article_content ul.is_large_check {
  --check-icon: url(../images/page/icon-check-y.svg);
}
.single .bl_article_content ul.is_large_check li,
.post-type-archive-locations .bl_article_content ul.is_large_check li,
.page .bl_article_content ul.is_large_check li {
  display: flex;
  gap: 10px;
  font-size: 16px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content ul.is_large_check li,
  .post-type-archive-locations .bl_article_content ul.is_large_check li,
  .page .bl_article_content ul.is_large_check li {
    gap: 17px;
    font-size: 18px;
  }
}
.single .bl_article_content ul.is_large_check li::before,
.post-type-archive-locations .bl_article_content ul.is_large_check li::before,
.page .bl_article_content ul.is_large_check li::before {
  flex-shrink: 0;
  margin-top: 4px;
  content: "";
  background-image: var(--check-icon);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content ul.is_large_check li::before,
  .post-type-archive-locations .bl_article_content ul.is_large_check li::before,
  .page .bl_article_content ul.is_large_check li::before {
    content: "";
    background-image: var(--check-icon);
    background-repeat: no-repeat;
    background-size: contain;
    width: 25px;
    height: 25px;
    margin-top: 5px;
  }
}
.single .bl_article_content ul.is_large_check li + li,
.post-type-archive-locations .bl_article_content ul.is_large_check li + li,
.page .bl_article_content ul.is_large_check li + li {
  margin-top: 15px;
}
.single .bl_article_content ul.is_large_check.is_green,
.post-type-archive-locations .bl_article_content ul.is_large_check.is_green,
.page .bl_article_content ul.is_large_check.is_green {
  --check-icon: url(../images/page/icon-check-g.svg);
}
.single .bl_article_content ul.footNote,
.post-type-archive-locations .bl_article_content ul.footNote,
.page .bl_article_content ul.footNote {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #595757;
  margin-top: 10px;
  line-height: 1.4;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content ul.footNote,
  .post-type-archive-locations .bl_article_content ul.footNote,
  .page .bl_article_content ul.footNote {
    font-size: 15px;
  }
}
.single .bl_article_content ul.footNote li,
.post-type-archive-locations .bl_article_content ul.footNote li,
.page .bl_article_content ul.footNote li {
  display: flex;
}
.single .bl_article_content ul.footNote li::before,
.post-type-archive-locations .bl_article_content ul.footNote li::before,
.page .bl_article_content ul.footNote li::before {
  content: "※";
}
.single .bl_article_content ul.is_style_disc,
.post-type-archive-locations .bl_article_content ul.is_style_disc,
.page .bl_article_content ul.is_style_disc {
  padding-left: 1.3em;
}
.single .bl_article_content ul.is_style_disc li,
.post-type-archive-locations .bl_article_content ul.is_style_disc li,
.page .bl_article_content ul.is_style_disc li {
  list-style: disc;
}
.single .bl_article_content ul.is_dot li,
.post-type-archive-locations .bl_article_content ul.is_dot li,
.page .bl_article_content ul.is_dot li {
  display: flex;
  gap: 0.5em;
}
.single .bl_article_content ul.is_dot li::before,
.post-type-archive-locations .bl_article_content ul.is_dot li::before,
.page .bl_article_content ul.is_dot li::before {
  content: "●";
  color: #ffdb00;
  font-size: 9px;
  margin-top: 6px;
}
.single .bl_article_content ul.bl_clinic_map,
.post-type-archive-locations .bl_article_content ul.bl_clinic_map,
.page .bl_article_content ul.bl_clinic_map {
  display: grid;
}
@media screen and (min-width:540px) {
  .single .bl_article_content ul.bl_clinic_map,
  .post-type-archive-locations .bl_article_content ul.bl_clinic_map,
  .page .bl_article_content ul.bl_clinic_map {
    grid-template-columns: 1fr 1fr;
  }
}
.single .bl_article_content ul.bl_clinic_map li,
.post-type-archive-locations .bl_article_content ul.bl_clinic_map li,
.page .bl_article_content ul.bl_clinic_map li {
  position: relative;
  padding: 7px 9px;
}
@media screen and (min-width:540px) {
  .single .bl_article_content ul.bl_clinic_map li::before,
  .post-type-archive-locations .bl_article_content ul.bl_clinic_map li::before,
  .page .bl_article_content ul.bl_clinic_map li::before {
    content: "";
    width: 0;
    height: 80%;
    border-left: 1px dashed #a6a6a7;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.single .bl_article_content ul.bl_clinic_map li::after,
.post-type-archive-locations .bl_article_content ul.bl_clinic_map li::after,
.page .bl_article_content ul.bl_clinic_map li::after {
  content: "";
  width: 95%;
  height: 0;
  border-bottom: 1px dashed #a6a6a7;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.single .bl_article_content ul.bl_clinic_map li:nth-child(even)::before,
.post-type-archive-locations .bl_article_content ul.bl_clinic_map li:nth-child(even)::before,
.page .bl_article_content ul.bl_clinic_map li:nth-child(even)::before {
  content: none;
}
.single .bl_article_content ul.bl_clinic_map li a,
.post-type-archive-locations .bl_article_content ul.bl_clinic_map li a,
.page .bl_article_content ul.bl_clinic_map li a {
  display: flex;
  flex-direction: column;
  padding: 20px 17px;
  border-radius: 12px;
  background-color: #fff;
  transition: background-color var(--transition);
}
@media (hover: hover) {
  .single .bl_article_content ul.bl_clinic_map li a:hover,
  .post-type-archive-locations .bl_article_content ul.bl_clinic_map li a:hover,
  .page .bl_article_content ul.bl_clinic_map li a:hover {
    background-color: #f4fad3;
  }
}
.single .bl_article_content ul.bl_clinic_map li .el_map_name,
.post-type-archive-locations .bl_article_content ul.bl_clinic_map li .el_map_name,
.page .bl_article_content ul.bl_clinic_map li .el_map_name {
  display: flex;
  justify-content: space-between;
  color: var(--main-color);
  font-size: 17px;
  letter-spacing: 0.04em;
  gap: 10px;
  align-items: center;
}
.single .bl_article_content ul.bl_clinic_map li .el_map_name::after,
.post-type-archive-locations .bl_article_content ul.bl_clinic_map li .el_map_name::after,
.page .bl_article_content ul.bl_clinic_map li .el_map_name::after {
  content: "";
  background-image: url(../images/common/icon-arrow-green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.single .bl_article_content ul.bl_clinic_map li .el_map_des,
.post-type-archive-locations .bl_article_content ul.bl_clinic_map li .el_map_des,
.page .bl_article_content ul.bl_clinic_map li .el_map_des {
  font-size: 15px;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-top: 3px;
}
.single .bl_article_content ul.bl_jisseki,
.post-type-archive-locations .bl_article_content ul.bl_jisseki,
.page .bl_article_content ul.bl_jisseki {
  display: grid;
  gap: 19px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content ul.bl_jisseki,
  .post-type-archive-locations .bl_article_content ul.bl_jisseki,
  .page .bl_article_content ul.bl_jisseki {
    grid-template-columns: repeat(3, 1fr);
  }
}
.single .bl_article_content ul.bl_jisseki li,
.post-type-archive-locations .bl_article_content ul.bl_jisseki li,
.page .bl_article_content ul.bl_jisseki li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #f4fad3;
  border-radius: 8px;
  padding-block: 35px;
  padding-inline: 20px;
  letter-spacing: 0.04em;
}
.single .bl_article_content ul.bl_jisseki li .el_jisseki_heading,
.post-type-archive-locations .bl_article_content ul.bl_jisseki li .el_jisseki_heading,
.page .bl_article_content ul.bl_jisseki li .el_jisseki_heading {
  font-size: 20px;
  line-height: 1;
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 10px;
}
.single .bl_article_content ul.bl_jisseki li .el_jisseki_heading::after,
.post-type-archive-locations .bl_article_content ul.bl_jisseki li .el_jisseki_heading::after,
.page .bl_article_content ul.bl_jisseki li .el_jisseki_heading::after {
  content: "";
  width: 58px;
  height: 0;
  border-bottom: 1px solid var(--main-color);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.single .bl_article_content ul.bl_jisseki li .el_jisseki_num,
.post-type-archive-locations .bl_article_content ul.bl_jisseki li .el_jisseki_num,
.page .bl_article_content ul.bl_jisseki li .el_jisseki_num {
  font-size: 44px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  color: var(--main-color);
  line-height: 1;
}
.single .bl_article_content ul.bl_jisseki li .el_jisseki_num span,
.post-type-archive-locations .bl_article_content ul.bl_jisseki li .el_jisseki_num span,
.page .bl_article_content ul.bl_jisseki li .el_jisseki_num span {
  color: var(--text-color);
  font-weight: var(--fw-medium);
  font-size: 24px;
  margin-left: 5px;
}
.single .bl_article_content ul.el_nurse_list,
.post-type-archive-locations .bl_article_content ul.el_nurse_list,
.page .bl_article_content ul.el_nurse_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 27px;
  margin-top: 10px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content ul.el_nurse_list,
  .post-type-archive-locations .bl_article_content ul.el_nurse_list,
  .page .bl_article_content ul.el_nurse_list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.single .bl_article_content ul.el_nurse_list li,
.post-type-archive-locations .bl_article_content ul.el_nurse_list li,
.page .bl_article_content ul.el_nurse_list li {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  min-height: 80px;
  background-color: #ffffe9;
  border-bottom: 2px solid var(--main-color);
  position: relative;
}
.single .bl_article_content ul.el_nurse_list li::before,
.post-type-archive-locations .bl_article_content ul.el_nurse_list li::before,
.page .bl_article_content ul.el_nurse_list li::before {
  content: "";
  background-image: url(../images/page/icon-check-r.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 26px;
  height: 26px;
  position: absolute;
  top: -8px;
  left: 11px;
}
.single .bl_article_content ul.el_collaboration_list,
.post-type-archive-locations .bl_article_content ul.el_collaboration_list,
.page .bl_article_content ul.el_collaboration_list {
  display: grid;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 27px;
  margin-top: 10px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .single .bl_article_content ul.el_collaboration_list,
  .post-type-archive-locations .bl_article_content ul.el_collaboration_list,
  .page .bl_article_content ul.el_collaboration_list {
    -moz-column-gap: 40px;
         column-gap: 40px;
    row-gap: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.single .bl_article_content ul.el_collaboration_list > li,
.post-type-archive-locations .bl_article_content ul.el_collaboration_list > li,
.page .bl_article_content ul.el_collaboration_list > li {
  position: relative;
  padding-block: 34px;
  padding-inline: 36px 27px;
  letter-spacing: 0.04em;
  background-color: #ffffe9;
  border-bottom: 2px solid var(--main-color);
}
.single .bl_article_content ul.el_collaboration_list > li h3,
.post-type-archive-locations .bl_article_content ul.el_collaboration_list > li h3,
.page .bl_article_content ul.el_collaboration_list > li h3 {
  font-size: 18px;
  font-weight: var(--fw-bold);
}
.single .bl_article_content ul.el_collaboration_list > li p,
.post-type-archive-locations .bl_article_content ul.el_collaboration_list > li p,
.page .bl_article_content ul.el_collaboration_list > li p {
  margin-top: 15px;
  line-height: 1.75;
}
.single .bl_article_content ul.el_collaboration_list > li::before,
.post-type-archive-locations .bl_article_content ul.el_collaboration_list > li::before,
.page .bl_article_content ul.el_collaboration_list > li::before {
  content: "";
  background-image: url(../images/page/icon-check-r.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 26px;
  height: 26px;
  position: absolute;
  top: -8px;
  left: 11px;
}
.single .bl_article_content ul.el_depertment,
.post-type-archive-locations .bl_article_content ul.el_depertment,
.page .bl_article_content ul.el_depertment {
  background-color: #ffffe9;
  border-radius: 12px;
  margin-inline: auto;
  display: grid;
  padding: 0 10px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (min-width: 900px) {
  .single .bl_article_content ul.el_depertment,
  .post-type-archive-locations .bl_article_content ul.el_depertment,
  .page .bl_article_content ul.el_depertment {
    grid-template-columns: repeat(7, 1fr);
  }
}
.single .bl_article_content ul.el_depertment li,
.post-type-archive-locations .bl_article_content ul.el_depertment li,
.page .bl_article_content ul.el_depertment li {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
  font-weight: var(--fw-bold);
  line-height: 1.3;
  padding: 5px;
  text-align: center;
  position: relative;
}
.single .bl_article_content ul.el_depertment li::before,
.post-type-archive-locations .bl_article_content ul.el_depertment li::before,
.page .bl_article_content ul.el_depertment li::before {
  content: "";
  width: 0;
  height: 70%;
  border-left: 1px dashed #a6a6a7;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.single .bl_article_content ul.el_depertment li::after,
.post-type-archive-locations .bl_article_content ul.el_depertment li::after,
.page .bl_article_content ul.el_depertment li::after {
  content: "";
  width: 100%;
  height: 0;
  border-bottom: 1px dashed #a6a6a7;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
@media screen and (max-width: 899px) {
  .single .bl_article_content ul.el_depertment li:nth-child(3n)::before,
  .post-type-archive-locations .bl_article_content ul.el_depertment li:nth-child(3n)::before,
  .page .bl_article_content ul.el_depertment li:nth-child(3n)::before {
    content: none;
  }
  .single .bl_article_content ul.el_depertment li:nth-last-child(2)::after, .single .bl_article_content ul.el_depertment li:last-child::after,
  .post-type-archive-locations .bl_article_content ul.el_depertment li:nth-last-child(2)::after,
  .post-type-archive-locations .bl_article_content ul.el_depertment li:last-child::after,
  .page .bl_article_content ul.el_depertment li:nth-last-child(2)::after,
  .page .bl_article_content ul.el_depertment li:last-child::after {
    content: none;
  }
}
@media screen and (min-width: 900px) {
  .single .bl_article_content ul.el_depertment li:nth-child(7n)::before,
  .post-type-archive-locations .bl_article_content ul.el_depertment li:nth-child(7n)::before,
  .page .bl_article_content ul.el_depertment li:nth-child(7n)::before {
    content: none;
  }
  .single .bl_article_content ul.el_depertment li:nth-child(n+8)::after,
  .post-type-archive-locations .bl_article_content ul.el_depertment li:nth-child(n+8)::after,
  .page .bl_article_content ul.el_depertment li:nth-child(n+8)::after {
    content: none;
  }
}
.single .bl_article_content ul.bl_contactList,
.post-type-archive-locations .bl_article_content ul.bl_contactList,
.page .bl_article_content ul.bl_contactList {
  display: grid;
  gap: 23px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content ul.bl_contactList,
  .post-type-archive-locations .bl_article_content ul.bl_contactList,
  .page .bl_article_content ul.bl_contactList {
    grid-template-columns: 1fr 1fr;
  }
}
.single .bl_article_content ul.bl_contactList li a,
.post-type-archive-locations .bl_article_content ul.bl_contactList li a,
.page .bl_article_content ul.bl_contactList li a {
  display: grid;
  background-color: #f4fad3;
  border-radius: 12px;
  letter-spacing: 0.04em;
  font-size: 15px;
  line-height: 1.2;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content ul.bl_contactList li a,
  .post-type-archive-locations .bl_article_content ul.bl_contactList li a,
  .page .bl_article_content ul.bl_contactList li a {
    grid-template-columns: 58% 1fr;
  }
}
.single .bl_article_content ul.bl_contactList li a > div,
.post-type-archive-locations .bl_article_content ul.bl_contactList li a > div,
.page .bl_article_content ul.bl_contactList li a > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-block: 15px;
  padding-inline: 20px;
  gap: 5px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content ul.bl_contactList li a > div,
  .post-type-archive-locations .bl_article_content ul.bl_contactList li a > div,
  .page .bl_article_content ul.bl_contactList li a > div {
    align-items: flex-start;
    padding-block: 20px;
    padding-inline: 10px;
  }
}
.single .bl_article_content ul.bl_contactList li a > div.el_contactList_clinic,
.post-type-archive-locations .bl_article_content ul.bl_contactList li a > div.el_contactList_clinic,
.page .bl_article_content ul.bl_contactList li a > div.el_contactList_clinic {
  border-bottom: 1px dashed #a6a6a7;
  padding-inline: 30px 10px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content ul.bl_contactList li a > div.el_contactList_clinic,
  .post-type-archive-locations .bl_article_content ul.bl_contactList li a > div.el_contactList_clinic,
  .page .bl_article_content ul.bl_contactList li a > div.el_contactList_clinic {
    border-bottom: none;
    border-right: 1px dashed #a6a6a7;
  }
}
.single .bl_article_content ul.bl_contactList li a > div.el_contactList_clinic .el_contactList_name,
.post-type-archive-locations .bl_article_content ul.bl_contactList li a > div.el_contactList_clinic .el_contactList_name,
.page .bl_article_content ul.bl_contactList li a > div.el_contactList_clinic .el_contactList_name {
  color: var(--main-color);
  font-size: 17px;
  font-weight: var(--fw-bold);
}
.single .bl_article_content ul.bl_contactList li a > div.el_contactList_tel,
.post-type-archive-locations .bl_article_content ul.bl_contactList li a > div.el_contactList_tel,
.page .bl_article_content ul.bl_contactList li a > div.el_contactList_tel {
  align-items: center;
  font-size: 21px;
  font-weight: var(--fw-bold);
}
.single .bl_article_content ul.bl_box_green_list,
.post-type-archive-locations .bl_article_content ul.bl_box_green_list,
.page .bl_article_content ul.bl_box_green_list {
  display: flex;
  justify-content: center;
  -moz-column-gap: 31px;
       column-gap: 31px;
  row-gap: 34px;
  flex-wrap: wrap;
}
.single .bl_article_content ul.bl_box_green_list li,
.post-type-archive-locations .bl_article_content ul.bl_box_green_list li,
.page .bl_article_content ul.bl_box_green_list li {
  position: relative;
  box-shadow: 0 0 7px #79c690;
  border-radius: 8px;
  background-color: #fff;
  padding-inline: 53px 18px;
  padding-block: 30px;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content ul.bl_box_green_list li,
  .post-type-archive-locations .bl_article_content ul.bl_box_green_list li,
  .page .bl_article_content ul.bl_box_green_list li {
    min-height: 295px;
    padding-block: 38px;
    width: calc((100% - 62px) / 3);
  }
}
.single .bl_article_content ul.bl_box_green_list li::before,
.post-type-archive-locations .bl_article_content ul.bl_box_green_list li::before,
.page .bl_article_content ul.bl_box_green_list li::before {
  content: "";
  background-image: url(../images/page/icon-check-y.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 26px;
  height: 26px;
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.single .bl_article_content ul.bl_box_green_list li h3,
.post-type-archive-locations .bl_article_content ul.bl_box_green_list li h3,
.page .bl_article_content ul.bl_box_green_list li h3 {
  font-size: 22px;
  font-weight: var(--fw-bold);
  line-height: 1.6;
  text-align: center;
}
.single .bl_article_content ul.bl_box_green_list li p,
.post-type-archive-locations .bl_article_content ul.bl_box_green_list li p,
.page .bl_article_content ul.bl_box_green_list li p {
  margin-top: 20px;
}
.single .bl_article_content ul.bl_exampleList li,
.post-type-archive-locations .bl_article_content ul.bl_exampleList li,
.page .bl_article_content ul.bl_exampleList li {
  display: flex;
}
.single .bl_article_content ul.bl_exampleList li .el_label,
.post-type-archive-locations .bl_article_content ul.bl_exampleList li .el_label,
.page .bl_article_content ul.bl_exampleList li .el_label {
  flex-shrink: 0;
  font-weight: var(--fw-bold);
}
.single .bl_article_content ul.bl_exampleList li + li,
.post-type-archive-locations .bl_article_content ul.bl_exampleList li + li,
.page .bl_article_content ul.bl_exampleList li + li {
  margin-top: 5px;
}
.single .bl_article_content ol.is_default,
.post-type-archive-locations .bl_article_content ol.is_default,
.page .bl_article_content ol.is_default {
  padding-left: 2em;
}
.single .bl_article_content ol.is_color_number,
.post-type-archive-locations .bl_article_content ol.is_color_number,
.page .bl_article_content ol.is_color_number {
  counter-reset: color;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.single .bl_article_content ol.is_color_number li,
.post-type-archive-locations .bl_article_content ol.is_color_number li,
.page .bl_article_content ol.is_color_number li {
  counter-increment: color;
  list-style: none;
  display: flex;
  gap: 0.5em;
  line-height: 1.5;
}
.single .bl_article_content ol.is_color_number li + li,
.post-type-archive-locations .bl_article_content ol.is_color_number li + li,
.page .bl_article_content ol.is_color_number li + li {
  margin-top: 10px;
}
.single .bl_article_content ol.is_color_number li::before,
.post-type-archive-locations .bl_article_content ol.is_color_number li::before,
.page .bl_article_content ol.is_color_number li::before {
  content: counter(color) ".";
  color: var(--main-color);
  width: 1.5em;
  text-align: right;
  flex-shrink: 0;
}
.single .bl_article_content ol.bl_step,
.post-type-archive-locations .bl_article_content ol.bl_step,
.page .bl_article_content ol.bl_step {
  counter-reset: flow-step;
}
.single .bl_article_content ol.bl_step li,
.post-type-archive-locations .bl_article_content ol.bl_step li,
.page .bl_article_content ol.bl_step li {
  counter-increment: flow-step;
  display: block;
  border: 1px solid #cdcece;
  border-radius: 8px;
  position: relative;
  padding-block: 30px;
  padding-inline: 86px 10px;
  min-height: 174px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content ol.bl_step li,
  .post-type-archive-locations .bl_article_content ol.bl_step li,
  .page .bl_article_content ol.bl_step li {
    padding-inline: 115px 10px;
  }
}
.single .bl_article_content ol.bl_step li + li,
.post-type-archive-locations .bl_article_content ol.bl_step li + li,
.page .bl_article_content ol.bl_step li + li {
  margin-top: 36px;
}
.single .bl_article_content ol.bl_step li::after,
.post-type-archive-locations .bl_article_content ol.bl_step li::after,
.page .bl_article_content ol.bl_step li::after {
  content: "";
  border-color: var(--main-color) transparent;
  border-width: 17px 35px 0;
  border-style: solid solid none;
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
}
.single .bl_article_content ol.bl_step li:last-child::after,
.post-type-archive-locations .bl_article_content ol.bl_step li:last-child::after,
.page .bl_article_content ol.bl_step li:last-child::after {
  content: none;
}
.single .bl_article_content ol.bl_step .el_step_index,
.post-type-archive-locations .bl_article_content ol.bl_step .el_step_index,
.page .bl_article_content ol.bl_step .el_step_index {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--main-color);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
  gap: 2px;
}
.single .bl_article_content ol.bl_step .el_step_index::after,
.post-type-archive-locations .bl_article_content ol.bl_step .el_step_index::after,
.page .bl_article_content ol.bl_step .el_step_index::after {
  content: counter(flow-step, decimal-leading-zero) ".";
  font-size: 1.25em;
}
.single .bl_article_content ol.bl_step .el_step_heading,
.post-type-archive-locations .bl_article_content ol.bl_step .el_step_heading,
.page .bl_article_content ol.bl_step .el_step_heading {
  color: var(--main-color);
  font-size: 24px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
}
.single .bl_article_content ol.bl_step p,
.post-type-archive-locations .bl_article_content ol.bl_step p,
.page .bl_article_content ol.bl_step p {
  margin-top: 5px;
  letter-spacing: 0.04em;
  line-height: 1.75;
}
.single .bl_article_content ol.bl_step .el_linkButton,
.post-type-archive-locations .bl_article_content ol.bl_step .el_linkButton,
.page .bl_article_content ol.bl_step .el_linkButton {
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-top: 15px;
  white-space: normal;
}
.single .bl_article_content ol.bl_history,
.post-type-archive-locations .bl_article_content ol.bl_history,
.page .bl_article_content ol.bl_history {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  margin-bottom: 20px;
}
.single .bl_article_content ol.bl_history::before,
.post-type-archive-locations .bl_article_content ol.bl_history::before,
.page .bl_article_content ol.bl_history::before {
  content: "";
  width: 0;
  height: 100%;
  background-color: var(--main-color);
  position: absolute;
  border-right: 2px solid var(--main-color);
  top: 22px;
  left: 106.5px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content ol.bl_history::before,
  .post-type-archive-locations .bl_article_content ol.bl_history::before,
  .page .bl_article_content ol.bl_history::before {
    left: 171.5px;
  }
}
.single .bl_article_content ol.bl_history li,
.post-type-archive-locations .bl_article_content ol.bl_history li,
.page .bl_article_content ol.bl_history li {
  list-style: none;
  display: grid;
  gap: 15px;
  padding-block: 10px;
  grid-template-columns: 115px 1fr;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content ol.bl_history li,
  .post-type-archive-locations .bl_article_content ol.bl_history li,
  .page .bl_article_content ol.bl_history li {
    gap: 40px;
    grid-template-columns: 180px 1fr;
  }
}
.single .bl_article_content ol.bl_history .el_history_year,
.post-type-archive-locations .bl_article_content ol.bl_history .el_history_year,
.page .bl_article_content ol.bl_history .el_history_year {
  position: relative;
  white-space: nowrap;
  text-align: right;
  padding-inline: 0 30px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content ol.bl_history .el_history_year,
  .post-type-archive-locations .bl_article_content ol.bl_history .el_history_year,
  .page .bl_article_content ol.bl_history .el_history_year {
    padding-inline: 30px 45px;
  }
}
.single .bl_article_content ol.bl_history .el_history_year::after,
.post-type-archive-locations .bl_article_content ol.bl_history .el_history_year::after,
.page .bl_article_content ol.bl_history .el_history_year::after {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background-color: var(--main-color);
  position: absolute;
  right: 0;
  top: 9px;
}
.single .bl_article_content ol.bl_features,
.post-type-archive-locations .bl_article_content ol.bl_features,
.page .bl_article_content ol.bl_features {
  counter-reset: feature;
}
.single .bl_article_content ol.bl_features li,
.post-type-archive-locations .bl_article_content ol.bl_features li,
.page .bl_article_content ol.bl_features li {
  counter-increment: feature;
  position: relative;
  list-style: none;
  border-radius: 8px;
  border: 1px solid #cdcece;
  padding-block: 20px 25px;
  padding-inline: 65px 15px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content ol.bl_features li,
  .post-type-archive-locations .bl_article_content ol.bl_features li,
  .page .bl_article_content ol.bl_features li {
    padding-block: 30px 35px;
    padding-inline: 95px 25px;
  }
}
.single .bl_article_content ol.bl_features li + li,
.post-type-archive-locations .bl_article_content ol.bl_features li + li,
.page .bl_article_content ol.bl_features li + li {
  margin-top: 20px;
}
.single .bl_article_content ol.bl_features .el_feature_index,
.post-type-archive-locations .bl_article_content ol.bl_features .el_feature_index,
.page .bl_article_content ol.bl_features .el_feature_index {
  background-color: var(--main-color);
  color: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 5px;
  padding-inline: 10px;
  position: absolute;
  line-height: 1;
  top: 0;
  left: 0;
  font-size: 12px;
  width: 4.375em;
  height: 4.375em;
  gap: 5px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content ol.bl_features .el_feature_index,
  .post-type-archive-locations .bl_article_content ol.bl_features .el_feature_index,
  .page .bl_article_content ol.bl_features .el_feature_index {
    font-size: 16px;
  }
}
.single .bl_article_content ol.bl_features .el_feature_index::after,
.post-type-archive-locations .bl_article_content ol.bl_features .el_feature_index::after,
.page .bl_article_content ol.bl_features .el_feature_index::after {
  content: counter(feature, decimal-leading-zero) ".";
  font-size: 1.25em;
}
.single .bl_article_content .bl_mediaText.is_image_37,
.post-type-archive-locations .bl_article_content .bl_mediaText.is_image_37,
.page .bl_article_content .bl_mediaText.is_image_37 {
  gap: 20px;
}
.single .bl_article_content .bl_mediaText.is_image_37 figure,
.post-type-archive-locations .bl_article_content .bl_mediaText.is_image_37 figure,
.page .bl_article_content .bl_mediaText.is_image_37 figure {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .bl_mediaText.is_image_37,
  .post-type-archive-locations .bl_article_content .bl_mediaText.is_image_37,
  .page .bl_article_content .bl_mediaText.is_image_37 {
    grid-template-columns: 37% 1fr;
    gap: 48px;
  }
}
.single .bl_article_content .bl_mediaText.is_image_73,
.post-type-archive-locations .bl_article_content .bl_mediaText.is_image_73,
.page .bl_article_content .bl_mediaText.is_image_73 {
  gap: 20px;
}
.single .bl_article_content .bl_mediaText.is_image_73 figure,
.post-type-archive-locations .bl_article_content .bl_mediaText.is_image_73 figure,
.page .bl_article_content .bl_mediaText.is_image_73 figure {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .bl_mediaText.is_image_73,
  .post-type-archive-locations .bl_article_content .bl_mediaText.is_image_73,
  .page .bl_article_content .bl_mediaText.is_image_73 {
    grid-template-columns: 1fr 37%;
    gap: 48px;
  }
}
.single .bl_article_content .bl_mediaText.is_image_round img,
.post-type-archive-locations .bl_article_content .bl_mediaText.is_image_round img,
.page .bl_article_content .bl_mediaText.is_image_round img {
  border-radius: 0 50px 0 50px;
}
.single .bl_article_content .bl_mediaText.is_treament_target,
.post-type-archive-locations .bl_article_content .bl_mediaText.is_treament_target,
.page .bl_article_content .bl_mediaText.is_treament_target {
  gap: 20px;
}
.single .bl_article_content .bl_mediaText.is_treament_target figure,
.post-type-archive-locations .bl_article_content .bl_mediaText.is_treament_target figure,
.page .bl_article_content .bl_mediaText.is_treament_target figure {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .bl_mediaText.is_treament_target,
  .post-type-archive-locations .bl_article_content .bl_mediaText.is_treament_target,
  .page .bl_article_content .bl_mediaText.is_treament_target {
    grid-template-columns: 120px 1fr;
    gap: 60px;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}
.single .bl_article_content .bl_mediaText.is_map,
.post-type-archive-locations .bl_article_content .bl_mediaText.is_map,
.page .bl_article_content .bl_mediaText.is_map {
  gap: 20px;
  align-items: flex-start;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .bl_mediaText.is_map,
  .post-type-archive-locations .bl_article_content .bl_mediaText.is_map,
  .page .bl_article_content .bl_mediaText.is_map {
    grid-template-columns: 47% 1fr;
    gap: 44px;
  }
}
.single .bl_article_content .bl_mediaText.is_map figure,
.post-type-archive-locations .bl_article_content .bl_mediaText.is_map figure,
.page .bl_article_content .bl_mediaText.is_map figure {
  padding: 11px 13px;
  box-shadow: 0 0 14px #79c690;
}
@media screen and (max-width: 899px) {
  .single .bl_article_content .bl_mediaText.is_map figure,
  .post-type-archive-locations .bl_article_content .bl_mediaText.is_map figure,
  .page .bl_article_content .bl_mediaText.is_map figure {
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin-inline: auto;
  }
}
.single .bl_article_content .bl_mediaText .el_linkButton,
.post-type-archive-locations .bl_article_content .bl_mediaText .el_linkButton,
.page .bl_article_content .bl_mediaText .el_linkButton {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 30px;
}
.single .bl_article_content .bl_mediaText.is_mapText,
.post-type-archive-locations .bl_article_content .bl_mediaText.is_mapText,
.page .bl_article_content .bl_mediaText.is_mapText {
  max-width: 1140px;
  margin-inline: auto;
  gap: 33px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .bl_mediaText.is_mapText,
  .post-type-archive-locations .bl_article_content .bl_mediaText.is_mapText,
  .page .bl_article_content .bl_mediaText.is_mapText {
    grid-template-columns: 38% 1fr;
    gap: clamp(10px, -58.865px + 6.725vw, 33px);
  }
}
.single .bl_article_content .bl_mediaText.is_mapText iframe,
.post-type-archive-locations .bl_article_content .bl_mediaText.is_mapText iframe,
.page .bl_article_content .bl_mediaText.is_mapText iframe {
  width: 100%;
  height: 300px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .bl_mediaText.is_mapText iframe,
  .post-type-archive-locations .bl_article_content .bl_mediaText.is_mapText iframe,
  .page .bl_article_content .bl_mediaText.is_mapText iframe {
    height: 100%;
  }
}
.single .bl_article_content .bl_mediaText.is_mapText table th,
.single .bl_article_content .bl_mediaText.is_mapText table td,
.post-type-archive-locations .bl_article_content .bl_mediaText.is_mapText table th,
.post-type-archive-locations .bl_article_content .bl_mediaText.is_mapText table td,
.page .bl_article_content .bl_mediaText.is_mapText table th,
.page .bl_article_content .bl_mediaText.is_mapText table td {
  font-size: 16px;
  padding-inline: 10px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .bl_mediaText.is_mapText table th,
  .single .bl_article_content .bl_mediaText.is_mapText table td,
  .post-type-archive-locations .bl_article_content .bl_mediaText.is_mapText table th,
  .post-type-archive-locations .bl_article_content .bl_mediaText.is_mapText table td,
  .page .bl_article_content .bl_mediaText.is_mapText table th,
  .page .bl_article_content .bl_mediaText.is_mapText table td {
    padding-block: 15px;
    padding-inline: 27px;
  }
}
.single .bl_article_content .bl_mediaText.is_mapText table th,
.post-type-archive-locations .bl_article_content .bl_mediaText.is_mapText table th,
.page .bl_article_content .bl_mediaText.is_mapText table th {
  width: 100px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .bl_mediaText.is_mapText table th,
  .post-type-archive-locations .bl_article_content .bl_mediaText.is_mapText table th,
  .page .bl_article_content .bl_mediaText.is_mapText table th {
    vertical-align: middle;
    width: 180px;
  }
}
.single .bl_article_content .bl_mediaText .el_mediaText_content h3 + p,
.post-type-archive-locations .bl_article_content .bl_mediaText .el_mediaText_content h3 + p,
.page .bl_article_content .bl_mediaText .el_mediaText_content h3 + p {
  margin-top: 30px;
}
.single .bl_article_content .bl_box_green,
.post-type-archive-locations .bl_article_content .bl_box_green,
.page .bl_article_content .bl_box_green {
  border-radius: 8px;
  box-shadow: 0 0 14px #79c690;
  padding-block: 45px;
  padding-inline: 20px;
  margin-inline: auto;
}
.single .bl_article_content .bl_box_green > * + *,
.post-type-archive-locations .bl_article_content .bl_box_green > * + *,
.page .bl_article_content .bl_box_green > * + * {
  margin-top: 30px;
}
.single .bl_article_content .bl_box_green > * + h3,
.post-type-archive-locations .bl_article_content .bl_box_green > * + h3,
.page .bl_article_content .bl_box_green > * + h3 {
  margin-top: 40px;
}
.single .bl_article_content .bl_box_green .bl_box_yellow,
.single .bl_article_content .bl_box_green > p,
.single .bl_article_content .bl_box_green > ul,
.post-type-archive-locations .bl_article_content .bl_box_green .bl_box_yellow,
.post-type-archive-locations .bl_article_content .bl_box_green > p,
.post-type-archive-locations .bl_article_content .bl_box_green > ul,
.page .bl_article_content .bl_box_green .bl_box_yellow,
.page .bl_article_content .bl_box_green > p,
.page .bl_article_content .bl_box_green > ul {
  max-width: 840px;
  margin-inline: auto;
}
.single .bl_article_content .bl_box_green.large-padding > .bl_mediaText,
.single .bl_article_content .bl_box_green.large-padding > h3,
.post-type-archive-locations .bl_article_content .bl_box_green.large-padding > .bl_mediaText,
.post-type-archive-locations .bl_article_content .bl_box_green.large-padding > h3,
.page .bl_article_content .bl_box_green.large-padding > .bl_mediaText,
.page .bl_article_content .bl_box_green.large-padding > h3 {
  max-width: 900px;
  margin-inline: auto;
}
.single .bl_article_content .bl_box_green.large-padding > ol,
.single .bl_article_content .bl_box_green.large-padding > p,
.single .bl_article_content .bl_box_green.large-padding > ul,
.post-type-archive-locations .bl_article_content .bl_box_green.large-padding > ol,
.post-type-archive-locations .bl_article_content .bl_box_green.large-padding > p,
.post-type-archive-locations .bl_article_content .bl_box_green.large-padding > ul,
.page .bl_article_content .bl_box_green.large-padding > ol,
.page .bl_article_content .bl_box_green.large-padding > p,
.page .bl_article_content .bl_box_green.large-padding > ul {
  max-width: 850px;
  margin-inline: auto;
}
.single .bl_article_content .bl_box_green ul.is_align_center,
.post-type-archive-locations .bl_article_content .bl_box_green ul.is_align_center,
.page .bl_article_content .bl_box_green ul.is_align_center {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.single .bl_article_content .bl_box_green.is_message_box,
.post-type-archive-locations .bl_article_content .bl_box_green.is_message_box,
.page .bl_article_content .bl_box_green.is_message_box {
  background-image: url(../images/page/bg-box-message.svg);
  background-repeat: no-repeat;
  background-size: 162px 62px;
  background-position: left 28px top 20px;
  padding-top: 90px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .bl_box_green.is_message_box,
  .post-type-archive-locations .bl_article_content .bl_box_green.is_message_box,
  .page .bl_article_content .bl_box_green.is_message_box {
    padding-inline: 48px;
  }
}
.single .bl_article_content .bl_box_green.is_message_box p,
.post-type-archive-locations .bl_article_content .bl_box_green.is_message_box p,
.page .bl_article_content .bl_box_green.is_message_box p {
  max-width: none;
}
.single .bl_article_content .bl_box_yellow,
.post-type-archive-locations .bl_article_content .bl_box_yellow,
.page .bl_article_content .bl_box_yellow {
  background-color: #ffffe9;
  border-radius: 8px;
  padding-block: 30px;
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .bl_box_yellow,
  .post-type-archive-locations .bl_article_content .bl_box_yellow,
  .page .bl_article_content .bl_box_yellow {
    padding-block: 40px;
    padding-inline: 50px 40px;
  }
}
.single .bl_article_content .bl_box_yellow h4,
.post-type-archive-locations .bl_article_content .bl_box_yellow h4,
.page .bl_article_content .bl_box_yellow h4 {
  font-size: 20px;
  font-weight: var(--fw-bold);
}
.single .bl_article_content .bl_box_yellow > * + *,
.post-type-archive-locations .bl_article_content .bl_box_yellow > * + *,
.page .bl_article_content .bl_box_yellow > * + * {
  margin-top: 15px;
}
.single .bl_article_content .bl_box_red,
.post-type-archive-locations .bl_article_content .bl_box_red,
.page .bl_article_content .bl_box_red {
  background-color: #ffe9f5;
  border-radius: 8px;
  color: #830d23;
  font-weight: var(--fw-bold);
  padding: 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.single .bl_article_content .bl_box_red .footNote,
.post-type-archive-locations .bl_article_content .bl_box_red .footNote,
.page .bl_article_content .bl_box_red .footNote {
  margin-top: 0;
  color: #830d23;
  font-size: 18px;
}
.single .bl_article_content .bl_page_index,
.post-type-archive-locations .bl_article_content .bl_page_index,
.page .bl_article_content .bl_page_index {
  display: grid;
  background-color: #f4fad3;
  grid-template-columns: repeat(2, 1fr);
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .bl_page_index,
  .post-type-archive-locations .bl_article_content .bl_page_index,
  .page .bl_article_content .bl_page_index {
    grid-template-columns: repeat(4, 1fr);
    position: sticky;
    top: 70px;
    z-index: 2;
    transition: all var(--transition);
  }
  .single .bl_article_content .bl_page_index.is_offset,
  .post-type-archive-locations .bl_article_content .bl_page_index.is_offset,
  .page .bl_article_content .bl_page_index.is_offset {
    top: 65px;
  }
}
@media screen and (min-width: 1025px) {
  .single .bl_article_content .bl_page_index,
  .post-type-archive-locations .bl_article_content .bl_page_index,
  .page .bl_article_content .bl_page_index {
    top: 0;
  }
}
.single .bl_article_content .bl_page_index li,
.post-type-archive-locations .bl_article_content .bl_page_index li,
.page .bl_article_content .bl_page_index li {
  border-right: 1px solid #cdcece;
  border-bottom: 1px solid #cdcece;
}
@media screen and (max-width: 899px) {
  .single .bl_article_content .bl_page_index li:nth-child(even),
  .post-type-archive-locations .bl_article_content .bl_page_index li:nth-child(even),
  .page .bl_article_content .bl_page_index li:nth-child(even) {
    border-right: none;
  }
  .single .bl_article_content .bl_page_index li:last-child, .single .bl_article_content .bl_page_index li:nth-last-child(2),
  .post-type-archive-locations .bl_article_content .bl_page_index li:last-child,
  .post-type-archive-locations .bl_article_content .bl_page_index li:nth-last-child(2),
  .page .bl_article_content .bl_page_index li:last-child,
  .page .bl_article_content .bl_page_index li:nth-last-child(2) {
    border-bottom: none;
  }
}
@media screen and (max-width: 899px) {
  .single .bl_article_content .bl_page_index.total-odd li:nth-last-child(2),
  .post-type-archive-locations .bl_article_content .bl_page_index.total-odd li:nth-last-child(2),
  .page .bl_article_content .bl_page_index.total-odd li:nth-last-child(2) {
    border-bottom: 1px solid #cdcece;
  }
}
.single .bl_article_content .bl_page_index a,
.post-type-archive-locations .bl_article_content .bl_page_index a,
.page .bl_article_content .bl_page_index a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 5px;
  font-size: 12px;
  line-height: 1.2;
  min-height: 50px;
  padding-inline: 13px;
  gap: 5px;
  color: var(#333);
  transition: all var(--transition);
}
@media screen and (min-width:540px) {
  .single .bl_article_content .bl_page_index a,
  .post-type-archive-locations .bl_article_content .bl_page_index a,
  .page .bl_article_content .bl_page_index a {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .bl_page_index a,
  .post-type-archive-locations .bl_article_content .bl_page_index a,
  .page .bl_article_content .bl_page_index a {
    font-size: 15px;
  }
}
.single .bl_article_content .bl_page_index a::after,
.post-type-archive-locations .bl_article_content .bl_page_index a::after,
.page .bl_article_content .bl_page_index a::after {
  content: "";
  background-image: url(../images/common/icon-arrow-green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  transform: rotate(90deg);
}
@media (hover: hover) {
  .single .bl_article_content .bl_page_index a:hover,
  .post-type-archive-locations .bl_article_content .bl_page_index a:hover,
  .page .bl_article_content .bl_page_index a:hover {
    color: var(--main-color);
  }
}
.single .bl_article_content .bl_page_index.col-2.row-1 li,
.post-type-archive-locations .bl_article_content .bl_page_index.col-2.row-1 li,
.page .bl_article_content .bl_page_index.col-2.row-1 li {
  border-bottom: none;
}
.single .bl_article_content .bl_page_index.col-2.row-1 li:last-child,
.post-type-archive-locations .bl_article_content .bl_page_index.col-2.row-1 li:last-child,
.page .bl_article_content .bl_page_index.col-2.row-1 li:last-child {
  border-right: none;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .bl_page_index.col-2.row-1,
  .post-type-archive-locations .bl_article_content .bl_page_index.col-2.row-1,
  .page .bl_article_content .bl_page_index.col-2.row-1 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .bl_page_index.col-4.row-1, .single .bl_article_content .bl_page_index.col-4.row-2,
  .post-type-archive-locations .bl_article_content .bl_page_index.col-4.row-1,
  .post-type-archive-locations .bl_article_content .bl_page_index.col-4.row-2,
  .page .bl_article_content .bl_page_index.col-4.row-1,
  .page .bl_article_content .bl_page_index.col-4.row-2 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .bl_page_index.col-4.row-1 li:nth-child(4n), .single .bl_article_content .bl_page_index.col-4.row-2 li:nth-child(4n),
  .post-type-archive-locations .bl_article_content .bl_page_index.col-4.row-1 li:nth-child(4n),
  .post-type-archive-locations .bl_article_content .bl_page_index.col-4.row-2 li:nth-child(4n),
  .page .bl_article_content .bl_page_index.col-4.row-1 li:nth-child(4n),
  .page .bl_article_content .bl_page_index.col-4.row-2 li:nth-child(4n) {
    border-right: none;
  }
  .single .bl_article_content .bl_page_index.col-4.row-1 li:nth-child(n+5), .single .bl_article_content .bl_page_index.col-4.row-2 li:nth-child(n+5),
  .post-type-archive-locations .bl_article_content .bl_page_index.col-4.row-1 li:nth-child(n+5),
  .post-type-archive-locations .bl_article_content .bl_page_index.col-4.row-2 li:nth-child(n+5),
  .page .bl_article_content .bl_page_index.col-4.row-1 li:nth-child(n+5),
  .page .bl_article_content .bl_page_index.col-4.row-2 li:nth-child(n+5) {
    border-bottom: none;
  }
}
@media screen and (max-width: 899px) {
  .single .bl_article_content .bl_page_index.col-3.row-1 li:nth-child(2),
  .post-type-archive-locations .bl_article_content .bl_page_index.col-3.row-1 li:nth-child(2),
  .page .bl_article_content .bl_page_index.col-3.row-1 li:nth-child(2) {
    border-bottom: 1px solid #cdcece !important;
  }
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .bl_page_index.col-3.row-1,
  .post-type-archive-locations .bl_article_content .bl_page_index.col-3.row-1,
  .page .bl_article_content .bl_page_index.col-3.row-1 {
    grid-template-columns: repeat(3, 1fr);
  }
  .single .bl_article_content .bl_page_index.col-3.row-1 li,
  .post-type-archive-locations .bl_article_content .bl_page_index.col-3.row-1 li,
  .page .bl_article_content .bl_page_index.col-3.row-1 li {
    border-bottom: none;
  }
  .single .bl_article_content .bl_page_index.col-3.row-1 li:last-child,
  .post-type-archive-locations .bl_article_content .bl_page_index.col-3.row-1 li:last-child,
  .page .bl_article_content .bl_page_index.col-3.row-1 li:last-child {
    border-right: none;
  }
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .bl_page_index.col-4.row-1 li,
  .post-type-archive-locations .bl_article_content .bl_page_index.col-4.row-1 li,
  .page .bl_article_content .bl_page_index.col-4.row-1 li {
    border-bottom: none;
  }
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .bl_page_index.col-5.row-2,
  .post-type-archive-locations .bl_article_content .bl_page_index.col-5.row-2,
  .page .bl_article_content .bl_page_index.col-5.row-2 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .bl_page_index.col-5.row-2 li:nth-child(5n),
  .post-type-archive-locations .bl_article_content .bl_page_index.col-5.row-2 li:nth-child(5n),
  .page .bl_article_content .bl_page_index.col-5.row-2 li:nth-child(5n) {
    border-right: none;
  }
  .single .bl_article_content .bl_page_index.col-5.row-2 li:nth-child(n+6),
  .post-type-archive-locations .bl_article_content .bl_page_index.col-5.row-2 li:nth-child(n+6),
  .page .bl_article_content .bl_page_index.col-5.row-2 li:nth-child(n+6) {
    border-bottom: none;
  }
}
.single .bl_article_content .bl_page_index + section,
.post-type-archive-locations .bl_article_content .bl_page_index + section,
.page .bl_article_content .bl_page_index + section {
  margin-top: 40px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .bl_page_index + section,
  .post-type-archive-locations .bl_article_content .bl_page_index + section,
  .page .bl_article_content .bl_page_index + section {
    margin-top: 67px;
  }
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .is_greeting.bl_box_green,
  .post-type-archive-locations .bl_article_content .is_greeting.bl_box_green,
  .page .bl_article_content .is_greeting.bl_box_green {
    padding-inline: 36px;
  }
}
.single .bl_article_content .is_greeting.bl_box_green p,
.post-type-archive-locations .bl_article_content .is_greeting.bl_box_green p,
.page .bl_article_content .is_greeting.bl_box_green p {
  max-width: none;
}
.single .bl_article_content .is_greeting.bl_box_green h3,
.post-type-archive-locations .bl_article_content .is_greeting.bl_box_green h3,
.page .bl_article_content .is_greeting.bl_box_green h3 {
  font-size: 18px;
  font-weight: var(--fw-bold);
  line-height: 1.73;
  color: var(--main-color);
  margin-bottom: 20px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .is_greeting.bl_box_green h3,
  .post-type-archive-locations .bl_article_content .is_greeting.bl_box_green h3,
  .page .bl_article_content .is_greeting.bl_box_green h3 {
    font-size: 22px;
  }
}
.single .bl_article_content .is_greeting.bl_box_green figcaption,
.post-type-archive-locations .bl_article_content .is_greeting.bl_box_green figcaption,
.page .bl_article_content .is_greeting.bl_box_green figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
  gap: 20px;
  margin-top: 15px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .is_greeting.bl_box_green figcaption,
  .post-type-archive-locations .bl_article_content .is_greeting.bl_box_green figcaption,
  .page .bl_article_content .is_greeting.bl_box_green figcaption {
    margin-top: 25px;
  }
}
.single .bl_article_content .is_greeting.bl_box_green figcaption .el_caption_name,
.post-type-archive-locations .bl_article_content .is_greeting.bl_box_green figcaption .el_caption_name,
.page .bl_article_content .is_greeting.bl_box_green figcaption .el_caption_name {
  font-size: 24px;
  color: var(--main-color);
}
.single .bl_article_content .is_tel_note,
.post-type-archive-locations .bl_article_content .is_tel_note,
.page .bl_article_content .is_tel_note {
  background-color: #fff5f5;
  border-radius: 8px;
  font-size: 16px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
  color: #b50d23;
  font-weight: var(--fw-bold);
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .single .bl_article_content .is_tel_note,
  .post-type-archive-locations .bl_article_content .is_tel_note,
  .page .bl_article_content .is_tel_note {
    font-size: 18px;
  }
}
.single .bl_article_content .bl_voice,
.post-type-archive-locations .bl_article_content .bl_voice,
.page .bl_article_content .bl_voice {
  display: grid;
  background-color: #ffffe9;
  border-radius: 8px;
  padding-block: 30px;
  padding-inline: 20px;
  gap: 20px;
}
.single .bl_article_content .bl_voice figure,
.post-type-archive-locations .bl_article_content .bl_voice figure,
.page .bl_article_content .bl_voice figure {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .bl_voice,
  .post-type-archive-locations .bl_article_content .bl_voice,
  .page .bl_article_content .bl_voice {
    grid-template-columns: 146px 1fr;
    padding-block: 40px;
    padding-inline: 50px 40px;
    gap: 50px;
  }
}
.single .bl_article_content .bl_voice p,
.post-type-archive-locations .bl_article_content .bl_voice p,
.page .bl_article_content .bl_voice p {
  letter-spacing: 0.04em;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .bl_voice p,
  .post-type-archive-locations .bl_article_content .bl_voice p,
  .page .bl_article_content .bl_voice p {
    line-height: 2.125;
  }
}
.single .bl_article_content .bl_forApplicant,
.post-type-archive-locations .bl_article_content .bl_forApplicant,
.page .bl_article_content .bl_forApplicant {
  background-image: url(../images/page/bg-recruit-2-sp.webp);
  background-position: bottom right;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 408px;
  max-width: 1200px;
  margin-inline: auto;
  padding-block: 50px 256px;
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .bl_forApplicant,
  .post-type-archive-locations .bl_article_content .bl_forApplicant,
  .page .bl_article_content .bl_forApplicant {
    padding-block: 80px;
    padding-inline: 60px;
    background-image: url(../images/page/bg-recruit-2.webp);
  }
}
.single .bl_article_content .bl_forApplicant .bl_cover_inner h3,
.post-type-archive-locations .bl_article_content .bl_forApplicant .bl_cover_inner h3,
.page .bl_article_content .bl_forApplicant .bl_cover_inner h3 {
  font-weight: var(--fw-bold);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--main-color);
  line-height: 1.45;
  -webkit-text-stroke: 6px #fff;
  paint-order: stroke;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .bl_forApplicant .bl_cover_inner h3,
  .post-type-archive-locations .bl_article_content .bl_forApplicant .bl_cover_inner h3,
  .page .bl_article_content .bl_forApplicant .bl_cover_inner h3 {
    font-size: 22px;
  }
}
.single .bl_article_content .bl_forApplicant .bl_cover_inner p,
.post-type-archive-locations .bl_article_content .bl_forApplicant .bl_cover_inner p,
.page .bl_article_content .bl_forApplicant .bl_cover_inner p {
  margin-top: 20px;
  letter-spacing: 0.04em;
  line-height: 2.125;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .bl_forApplicant .bl_cover_inner p,
  .post-type-archive-locations .bl_article_content .bl_forApplicant .bl_cover_inner p,
  .page .bl_article_content .bl_forApplicant .bl_cover_inner p {
    margin-top: 30px;
  }
}
.single .bl_article_content .bl_recruit .el_linkButton,
.post-type-archive-locations .bl_article_content .bl_recruit .el_linkButton,
.page .bl_article_content .bl_recruit .el_linkButton {
  max-width: 260px;
  margin-inline: auto;
  color: #fff;
}
.single .bl_article_content .bl_recruit .is_pastel_green,
.post-type-archive-locations .bl_article_content .bl_recruit .is_pastel_green,
.page .bl_article_content .bl_recruit .is_pastel_green {
  table-layout: fixed;
}
.single .bl_article_content .bl_recruit .is_pastel_green th,
.single .bl_article_content .bl_recruit .is_pastel_green td,
.post-type-archive-locations .bl_article_content .bl_recruit .is_pastel_green th,
.post-type-archive-locations .bl_article_content .bl_recruit .is_pastel_green td,
.page .bl_article_content .bl_recruit .is_pastel_green th,
.page .bl_article_content .bl_recruit .is_pastel_green td {
  font-size: 14px;
  border-right: 5px solid #fff;
  border-bottom: 5px solid #fff;
  padding-inline: 10px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .bl_recruit .is_pastel_green th,
  .single .bl_article_content .bl_recruit .is_pastel_green td,
  .post-type-archive-locations .bl_article_content .bl_recruit .is_pastel_green th,
  .post-type-archive-locations .bl_article_content .bl_recruit .is_pastel_green td,
  .page .bl_article_content .bl_recruit .is_pastel_green th,
  .page .bl_article_content .bl_recruit .is_pastel_green td {
    padding-inline: 30px;
    font-size: 16px;
  }
}
.single .bl_article_content .bl_recruit .is_pastel_green th,
.post-type-archive-locations .bl_article_content .bl_recruit .is_pastel_green th,
.page .bl_article_content .bl_recruit .is_pastel_green th {
  color: var(--text-color);
  width: 35%;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .bl_recruit .is_pastel_green th,
  .post-type-archive-locations .bl_article_content .bl_recruit .is_pastel_green th,
  .page .bl_article_content .bl_recruit .is_pastel_green th {
    width: 28%;
  }
}
.single .bl_article_content .bl_congra_text,
.post-type-archive-locations .bl_article_content .bl_congra_text,
.page .bl_article_content .bl_congra_text {
  text-align: center;
  font-size: 17px;
  color: #40210f;
  line-height: 1.63;
  margin-top: 20px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .bl_congra_text,
  .post-type-archive-locations .bl_article_content .bl_congra_text,
  .page .bl_article_content .bl_congra_text {
    display: none;
  }
}
.single .bl_article_content .bl_congra_text .note,
.post-type-archive-locations .bl_article_content .bl_congra_text .note,
.page .bl_article_content .bl_congra_text .note {
  font-size: 14px;
  margin-top: 10px;
  display: inline-block;
  color: var(--text-color);
}

.page .bl_article_content h2.lp_heading,
.bl_cta h2.lp_heading {
  color: var(--main-color);
  text-align: left;
  position: relative;
  font-size: 32px;
  font-weight: var(--fw-bold);
}
@media screen and (min-width: 900px) {
  .page .bl_article_content h2.lp_heading,
  .bl_cta h2.lp_heading {
    font-size: 36px;
    letter-spacing: 0.04em;
    line-height: 1;
  }
}
.page .bl_article_content h2.lp_heading .el_heading_main,
.bl_cta h2.lp_heading .el_heading_main {
  line-height: 1.25;
}
.page .bl_article_content h2.lp_heading .el_heading_sub,
.bl_cta h2.lp_heading .el_heading_sub {
  display: flex;
  font-size: 12px;
  letter-spacing: 0;
  align-items: center;
  gap: 9px;
  color: var(--text-color);
  margin-bottom: 0;
}
@media screen and (min-width: 900px) {
  .page .bl_article_content h2.lp_heading .el_heading_sub,
  .bl_cta h2.lp_heading .el_heading_sub {
    margin-bottom: 13px;
  }
}
.page .bl_article_content h2.lp_heading .el_heading_sub:before,
.bl_cta h2.lp_heading .el_heading_sub:before {
  content: "";
  background-image: url(../images/common/icon-home.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 19px;
  height: 18px;
  flex-shrink: 0;
}

.el_moreLink.is_go_home {
  --article-mt: 80px;
  width: 210px;
  margin-inline: auto;
}

.bl_location .el_linkButton {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.bl_cover {
  background-image: url(../images/page/bg-pro.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  height: 244px;
  display: grid;
  place-content: center;
  font-size: 26px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  line-height: 1.8;
  text-align: center;
}
.bl_cover p {
  -webkit-text-stroke: 6px #fff;
  paint-order: stroke;
}

.el_p_copy {
  display: block;
  font-weight: var(--fw-bold);
  font-size: 20px;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.4;
}

@media screen and (max-width:539px) {
  .new_patient_form .bl_box_green {
    padding-inline: 30px !important;
  }
  .new_patient_form .bl_box_green p.text-align-center {
    text-align: left;
  }
}

.bl_siteFooter {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 34px 40px;
}
@media screen and (min-width: 900px) {
  .bl_siteFooter {
    padding-block: 40px 38px;
  }
}
.bl_siteFooter a:not(.not_link) {
  transition: opacity var(--transition-time);
}
@media (hover: hover) {
  .bl_siteFooter a:not(.not_link):hover {
    opacity: 0.7;
  }
}

.bl_siteFooter_content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 35px;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 900px) {
  .bl_siteFooter_content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.el_siteFooter_logo img {
  margin-bottom: 10px;
}

.el_siteFooter_info {
  letter-spacing: 0.04em;
  line-height: 1.625;
  font-size: 16px;
}

.bl_siteFooter_copyRight {
  font-size: 12px;
  width: 100%;
  margin-top: 25px;
}
@media screen and (max-width: 899px) {
  .bl_siteFooter_copyRight {
    margin-top: 20px;
    text-align: center;
  }
}

.bl_siteFooter_nav {
  margin-inline: auto;
  padding-inline: 42px;
  padding-block: 40px 67px;
  width: 100%;
  background-color: var(--main-color);
}
@media screen and (min-width: 900px) {
  .bl_siteFooter_nav {
    padding-block: 52px 67px;
  }
}
.bl_siteFooter_nav .bl_footerWidget {
  margin-inline: auto;
  max-width: 997px;
  width: 100%;
}
.bl_siteFooter_nav .bl_footerWidget .wp-block-columns {
  gap: clamp(30px, -93.077px + 12.019vw, 80px);
}
@media screen and (max-width: 1024px) {
  .bl_siteFooter_nav .bl_footerWidget .wp-block-columns {
    flex-direction: column;
  }
}
.bl_siteFooter_nav .bl_footerWidget a {
  color: #fff;
  display: block;
}
.bl_siteFooter_nav .widget_nav_menu {
  width: 100%;
}
.bl_siteFooter_nav .widget_nav_menu ul.menu > li.not_link > a {
  pointer-events: none;
  border-bottom-style: solid;
}
.bl_siteFooter_nav .widget_nav_menu ul.menu > li.not_link > a::after {
  content: none;
}
.bl_siteFooter_nav .widget_nav_menu ul.menu > li > a {
  display: block;
  font-size: 16px;
  letter-spacing: 0.04em;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  border-bottom: 1px dashed #fff;
  padding-bottom: 18px;
}
.bl_siteFooter_nav .widget_nav_menu ul.menu > li > a::after {
  content: "＞";
  margin-left: 1em;
}
.bl_siteFooter_nav .widget_nav_menu ul.menu > li + li {
  margin-top: 30px;
}
@media screen and (min-width: 900px) {
  .bl_siteFooter_nav .widget_nav_menu ul.menu > li + li {
    margin-top: 40px;
  }
}
.bl_siteFooter_nav .widget_nav_menu ul.menu > li + li .not_link {
  margin-top: 50px;
}
.bl_siteFooter_nav .widget_nav_menu ul.menu > li.el_menuButton {
  width: 100%;
  padding-block: 0;
}
.bl_siteFooter_nav .widget_nav_menu ul.menu > li.el_menuButton a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  height: 40px;
  width: 100%;
  letter-spacing: 0.1em;
  line-height: 1.25;
  padding: 10px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .bl_siteFooter_nav .widget_nav_menu ul.menu > li.el_menuButton a {
    width: clamp(160px, -662.256px + 60.15vw, 240px);
  }
}
.bl_siteFooter_nav .widget_nav_menu ul.menu > li.el_menuButton + li {
  margin-top: 14px;
}
.bl_siteFooter_nav .widget_nav_menu ul.sub-menu {
  margin-top: 10px;
}
@media screen and (min-width: 900px) {
  .bl_siteFooter_nav .widget_nav_menu ul.sub-menu {
    font-size: 14px;
  }
}
.bl_siteFooter_nav .widget_nav_menu ul.sub-menu > li > a {
  margin-left: 1em;
  font-size: 15px;
  letter-spacing: 0.04em;
  padding-block: 12px 12px;
  line-height: 1.2;
}
.bl_siteFooter_nav .widget_nav_menu ul.sub-menu > li > a::after {
  content: "＞";
  margin-left: 1em;
}
.bl_siteFooter_nav .widget_nav_menu .menu-footr-3-container > ul > li + li {
  margin-top: 18px;
}
.bl_siteFooter_nav figure.wp-block-image.size-large {
  margin-top: 46px;
  max-width: 480px;
  margin-inline: auto;
}

.bl_goTopButton {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  right: 15px;
  bottom: 50px;
  font-size: 12px;
  line-height: 1.3;
  transform-origin: bottom right;
  z-index: 20;
  transition: all var(--transition-time) ease;
  width: 55px;
  height: 55px;
  border-radius: 4px;
  border: 1px solid var(--main-color);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 900px) {
  .bl_goTopButton {
    right: 25px;
  }
}
.bl_goTopButton.is_show {
  opacity: 1;
  visibility: visible;
}
@media (hover: hover) {
  .bl_goTopButton:hover {
    opacity: 0.7;
  }
}

.bl_cta {
  padding-block: 60px 60px;
  position: relative;
  overflow: hidden;
}
.home .bl_cta {
  padding-block: 36px 127px;
}
@media screen and (min-width: 900px) {
  .home .bl_cta {
    padding-block: 60px 260px;
  }
}
.bl_cta .bl_section_inner {
  position: relative;
  z-index: 2;
}
.bl_cta h2.lp_heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bl_cta p {
  font-weight: var(--fw-medium);
  margin-top: 20px;
  letter-spacing: 0.04em;
  text-align: center;
  font-size: 15px;
  margin-inline: -10px;
}
.bl_cta .bl_contact_menu {
  display: grid;
  margin-top: 30px;
  margin-inline: auto;
  gap: 18px;
  max-width: 540px;
}
@media screen and (min-width: 900px) {
  .bl_cta .bl_contact_menu {
    max-width: 980px;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
}
.bl_cta .bl_contact_menu li a {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #cdcece;
  border-radius: 8px;
  padding-block: 27px 19px;
  padding-inline: 15px;
  min-height: 265px;
  transition: all var(--transition-time);
  background-color: #fff;
}
.bl_cta .bl_contact_menu li a::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  margin-inline: auto;
}
.bl_cta .bl_contact_menu li a::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/top/icon-arrow-green.svg);
  width: 25px;
  height: 25px;
  margin-left: auto;
  margin-top: auto;
}
.bl_cta .bl_contact_menu li a p {
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-align: center;
}
.bl_cta .bl_contact_menu li a p strong {
  color: var(--main-color);
  font-weight: var(--fw-bold);
  font-size: 24px;
}
.bl_cta .bl_contact_menu li a ul {
  margin-top: 5px;
  max-width: 254px;
  margin-inline: auto;
}
.bl_cta .bl_contact_menu li a ul li {
  list-style: disc;
}
@media (hover: hover) {
  .bl_cta .bl_contact_menu li a:hover {
    background-color: var(--main-color);
    color: #fff;
  }
  .bl_cta .bl_contact_menu li a:hover p strong {
    --main-color: #fff;
  }
  .bl_cta .bl_contact_menu li a:hover::after {
    background-image: url(../images/top/icon-arrow-w.svg);
  }
}
.bl_cta .bl_contact_menu li:first-child a::before {
  background-image: url(../images/top/icon-contact-1.svg);
  width: 86px;
  height: 55px;
}
@media (hover: hover) {
  .bl_cta .bl_contact_menu li:first-child a:hover::before {
    background-image: url(../images/top/icon-contact-hover-1.svg);
  }
}
.bl_cta .bl_contact_menu li:nth-child(2) a::before {
  background-image: url(../images/top/icon-contact-2.svg);
  width: 65px;
  height: 57px;
}
@media (hover: hover) {
  .bl_cta .bl_contact_menu li:nth-child(2) a:hover::before {
    background-image: url(../images/top/icon-contact-hover-2.svg);
  }
}
.bl_cta .bl_contact_menu li:last-child a::before {
  background-image: url(../images/top/icon-contact-3.svg);
  width: 64px;
  height: 64px;
}
@media (hover: hover) {
  .bl_cta .bl_contact_menu li:last-child a:hover::before {
    background-image: url(../images/top/icon-contact-hover-3.svg);
  }
}
.bl_cta .el_motif {
  position: absolute;
  left: 50%;
  z-index: 1;
  bottom: -106px;
  max-width: none;
  width: 800px;
  text-align: center;
  max-width: 1560px;
}
@media screen and (min-width: 900px) {
  .bl_cta .el_motif {
    bottom: -120px;
    width: 100%;
  }
}
@media screen and (min-width: 1561px) {
  .bl_cta .el_motif::before, .bl_cta .el_motif::after {
    content: "";
    height: 100%;
    width: 50px;
    position: absolute;
    top: 0;
  }
  .bl_cta .el_motif::before {
    left: 0;
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  }
  .bl_cta .el_motif::after {
    background: linear-gradient(-90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    right: 0;
  }
}

.bl_mainVisual {
  position: relative;
  background-color: var(--main-color);
  color: #fff;
  width: calc(var(--vw) * 100);
  margin-left: calc(50% - var(--vw) * 50);
  padding-bottom: 79px;
}
.bl_mainVisual .bl_mainVisual_images {
  max-width: 1920px;
  margin-inline: auto;
  background-color: #f7ebdd;
  border-radius: 0 0 0 143px;
}
@media screen and (min-width:540px) {
  .bl_mainVisual .bl_mainVisual_images {
    border-radius: 0 0 0 240px;
  }
}
@media screen and (min-width: 900px) {
  .bl_mainVisual .bl_mainVisual_images {
    display: flex;
    justify-content: space-between;
    border-radius: 0 0 0 143px;
  }
}
.bl_mainVisual .mainVisual_imageL {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url(../images/top/mv-bg-l.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom right;
  padding-inline: 20px;
  width: 100%;
  padding-block: 30px;
}
@media screen and (max-width: 899px) {
  .bl_mainVisual .mainVisual_imageL img {
    max-width: 79%;
  }
}
@media screen and (min-width: 900px) {
  .bl_mainVisual .mainVisual_imageL {
    padding-block: 0;
    width: 40.3%;
  }
}
@media screen and (min-width: 1561px) {
  .bl_mainVisual .mainVisual_imageL {
    width: 100%;
  }
}
.bl_mainVisual .mainVisual_imageR {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .bl_mainVisual .mainVisual_imageR {
    width: 60%;
  }
}
@media screen and (min-width: 1561px) {
  .bl_mainVisual .mainVisual_imageR {
    flex-shrink: 0;
    width: auto;
  }
}
@media screen and (max-width: 899px) {
  .bl_mainVisual .mainVisual_imageR img {
    max-width: none;
    width: 100%;
    border-radius: 0 0 0 87px;
  }
}
.bl_mainVisual .bl_mainVisual_content {
  padding-inline: var(--site-inline-padding);
  margin-inline: auto;
  background-image: url(../images/top/mv-bg-r.svg);
  background-repeat: no-repeat;
  background-size: 60.7%;
  padding-top: 29px;
  background-position: top right;
}
@media screen and (min-width: 1561px) {
  .bl_mainVisual .bl_mainVisual_content {
    background-size: auto;
  }
}
.bl_mainVisual .bl_mainVisual_content ul {
  max-width: 520px;
  margin-inline: auto;
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 900px) {
  .bl_mainVisual .bl_mainVisual_content ul {
    max-width: 1154px;
    grid-template-columns: repeat(3, 1fr);
    gap: 29px;
  }
}
.bl_mainVisual .bl_mainVisual_content ul li a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 5px 20px;
  padding-inline: 32px 18px;
  border: 1px solid #fff;
  border-radius: 8px;
  color: #fff;
  background-color: var(--main-color);
  line-height: 1.2;
  transition: all var(--transition);
  background-position: right 10px center;
  background-repeat: no-repeat;
  font-size: 20px;
  min-height: 100px;
}
@media screen and (min-width: 900px) {
  .bl_mainVisual .bl_mainVisual_content ul li a {
    min-height: 105px;
    font-size: clamp(16px, -13.032px + 3.226vw, 20px);
  }
}
.bl_mainVisual .bl_mainVisual_content ul li a strong {
  font-size: 1.35em;
  font-weight: var(--fw-bold);
  margin-right: 8px;
}
@media (hover: hover) {
  .bl_mainVisual .bl_mainVisual_content ul li a:hover {
    background-color: #fff;
    color: #333;
  }
}
.bl_mainVisual .bl_mainVisual_content ul li a:after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: auto;
}
.bl_mainVisual .bl_mainVisual_content ul li:first-child a::after {
  background-image: url(../images/top/icon-mv-1.svg);
  width: 77px;
  height: 48px;
}
@media (hover: hover) {
  .bl_mainVisual .bl_mainVisual_content ul li:first-child a:hover::after {
    background-image: url(../images/top/icon-mv-hover-1.svg);
  }
}
.bl_mainVisual .bl_mainVisual_content ul li:nth-child(2) a::after {
  background-image: url(../images/top/icon-mv-2.svg);
  width: 61px;
  height: 53px;
}
@media (hover: hover) {
  .bl_mainVisual .bl_mainVisual_content ul li:nth-child(2) a:hover::after {
    background-image: url(../images/top/icon-mv-hover-2.svg);
  }
}
.bl_mainVisual .bl_mainVisual_content ul li:last-child a::after {
  background-image: url(../images/top/icon-mv-3.svg);
  width: 65px;
  height: 57px;
}
@media (hover: hover) {
  .bl_mainVisual .bl_mainVisual_content ul li:last-child a:hover::after {
    background-image: url(../images/top/icon-mv-hover-3.svg);
  }
}
.bl_mainVisual .bl_mv_news {
  max-width: 1154px;
  margin-inline: auto;
  margin-top: 33px;
  display: grid;
}
@media screen and (min-width: 900px) {
  .bl_mainVisual .bl_mv_news {
    grid-template-columns: auto 1fr auto;
    margin-top: 45px;
    gap: 50px;
  }
}
.bl_mainVisual .bl_mv_news .el_mv_newsTitle {
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  line-height: 1.3;
  display: flex;
  font-size: 30px;
  -moz-column-gap: 17px;
       column-gap: 17px;
  margin-top: 8px;
}
@media screen and (min-width: 900px) {
  .bl_mainVisual .bl_mv_news .el_mv_newsTitle {
    flex-direction: column;
  }
}
.bl_mainVisual .bl_mv_news .el_mv_newsTitle span {
  font-size: 16px;
  font-weight: var(--fw-medium);
}
.bl_mainVisual .el_mv_newsItem {
  border-bottom: 1px solid #fff;
  padding-inline: 8px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  padding-bottom: 16px;
  padding-top: 22px;
}
@media screen and (min-width: 900px) {
  .bl_mainVisual .el_mv_newsItem {
    padding-bottom: 14px;
    padding-top: 0;
  }
}
.bl_mainVisual .el_mv_newsItem h3 {
  transition: all var(--transition);
}
@media (hover: hover) {
  .bl_mainVisual .el_mv_newsItem h3:hover {
    opacity: 0.7;
  }
}
.bl_mainVisual .el_linkButton {
  align-self: center;
  border: 1px solid var(--main-color);
}
@media (hover: hover) {
  .bl_mainVisual .el_linkButton:hover {
    border-color: #fff;
  }
}
@media screen and (max-width: 899px) {
  .bl_mainVisual .el_linkButton {
    margin-top: 22px;
    max-width: 194px;
    margin-left: auto;
  }
}

.bl_newsTab {
  margin-top: 40px;
}

ul.el_newsTab_tabs {
  display: flex;
  margin-top: -20px;
  gap: 10px;
  justify-content: space-between;
}
@media screen and (min-width: 900px) {
  ul.el_newsTab_tabs {
    justify-content: flex-end;
    margin-top: -40px;
    gap: 20px;
  }
}
ul.el_newsTab_tabs li a {
  display: block;
  font-size: 14px;
  font-weight: var(--fw-regular);
  letter-spacing: 0.06em;
  padding-block: 0 13px;
  border-bottom: 1px solid #d5d5d5;
  padding-inline: 5px;
  transition: all var(--transition);
}
@media screen and (min-width: 900px) {
  ul.el_newsTab_tabs li a {
    padding-inline: 16px;
  }
}
ul.el_newsTab_tabs li a.is_active {
  border-color: var(--main-color);
}
@media (hover: hover) {
  ul.el_newsTab_tabs li a:hover {
    border-color: var(--main-color);
  }
}

.bl_mediaTab_contents {
  margin-top: 38px;
  display: grid;
  position: relative;
}
@media screen and (min-width: 900px) {
  .bl_mediaTab_contents {
    margin-top: 48px;
  }
}

.el_tab_panel {
  display: block;
  grid-area: 1/1;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition: all var(--transition);
}
.el_tab_panel.is_active {
  display: block;
  z-index: 2;
  visibility: visible;
  opacity: 1;
}
.el_tab_panel .el_newsTab_items {
  display: grid;
  gap: 18px;
}
.el_tab_panel .el_newsTab_item {
  display: grid;
  gap: 10px;
  background-color: #f9f9f9;
  font-weight: var(--fw-medium);
  align-items: center;
  transition: all var(--transition);
  padding-inline: 18px;
  padding-block: 18px 22px;
}
@media screen and (min-width: 900px) {
  .el_tab_panel .el_newsTab_item {
    padding-block: 22px;
    padding-inline: 40px 22px;
    grid-template-columns: 300px 1fr 13px;
  }
  .el_tab_panel .el_newsTab_item::after {
    content: "";
    background-image: url(../images/common/icon-line-arrow-r.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 13px;
    height: 18px;
  }
}
.el_tab_panel .el_newsTab_item h3 {
  transition: all var(--transition);
}
@media (hover: hover) {
  .el_tab_panel .el_newsTab_item:hover h3 {
    color: var(--main-color);
  }
}
.el_tab_panel .el_newsTab_item .el_entry_date {
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--text-color);
}
.el_tab_panel .el_newsTab_item .el_newsTab_meta {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.el_tab_panel .el_newsTab_item .el_post_category {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  width: 94px;
}
.el_tab_panel .el_newsTab_item .el_post_category span {
  display: flex;
  background-color: #fff;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  align-items: center;
  justify-content: center;
  font-size: 15px;
  letter-spacing: 0.04em;
  min-height: 30px;
  line-height: 1.2;
  border-radius: 8px;
  min-width: 90px;
  padding: 5px 10px;
}
.el_tab_panel .el_newsTab_item h3.el_newsTab_title {
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home {
  --article-mt: 0;
}
.home .bl_article_content {
  max-width: none;
  padding-inline: 0;
}
.home .bl_article_content section {
  max-width: none;
}
.home .bl_article_content section + section {
  margin-top: 0;
}
@media screen and (min-width: 900px) {
  .home .bl_article_content section + section {
    margin-top: 0;
  }
}

.el_motif {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 800px;
  height: auto;
  aspect-ratio: 1560/565;
  max-width: 1560px;
}
@media screen and (min-width: 768px) {
  .el_motif {
    width: 100%;
  }
}
@media screen and (min-width: 1561px) {
  .el_motif::before, .el_motif::after {
    content: "";
    height: 100%;
    width: 50px;
    position: absolute;
    top: 0;
    z-index: 2;
  }
  .el_motif::before {
    left: 0;
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  }
  .el_motif::after {
    background: linear-gradient(-90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    right: 0;
  }
}
.el_motif .el_motif_inner {
  grid-row: 1/-1;
  grid-column: 1/-1;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  width: 0;
  height: 100%;
}
.el_motif .el_motif_left {
  background-image: url(../images/top/bg-line-beige.svg);
  background-position: left center;
  margin-right: auto;
}
.el_motif .el_motif_right {
  background-image: url(../images/top/bg-line-green.svg);
  background-position: right center;
  margin-left: auto;
}
.el_motif.is_reverse {
  aspect-ratio: 1560/484;
}
.el_motif.is_reverse .el_motif_left {
  background-image: url(../images/top/bg-line-beige-rev.svg);
}
.el_motif.is_reverse .el_motif_right {
  background-image: url(../images/top/bg-line-green-rev.svg);
}

section.bl_credo {
  position: relative;
  padding-block: 36px 163px;
}
@media screen and (min-width: 900px) {
  section.bl_credo {
    padding-block: 55px 236px;
  }
}
section.bl_credo.not_home {
  padding-block: 0;
}
@media screen and (min-width: 900px) {
  section.bl_credo.not_home {
    padding-block: 0;
  }
}
section.bl_credo.not_home .bl_section_inner {
  --site-inline-padding: 0;
}
section.bl_credo .bl_section_inner {
  z-index: 2;
  position: relative;
  max-width: 540px;
}
@media screen and (min-width: 900px) {
  section.bl_credo .bl_section_inner {
    max-width: 1051px;
  }
}
@media screen and (min-width: 900px) {
  section.bl_credo .bl_mediaText {
    grid-template-columns: 1fr 294px;
  }
}
section.bl_credo .bl_mediaText .el_mediaText_content {
  padding-inline: clamp(0px, -190.638px + 18.617vw, 70px);
  align-self: center;
}
section.bl_credo .bl_mediaText .el_mediaText_content p {
  font-size: 18px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  line-height: 2.18;
}
section.bl_credo .bl_mediaText .el_mediaText_content p strong {
  font-size: 21px;
  letter-spacing: 0.02em;
  color: var(--main-color);
}
section.bl_credo .bl_mediaText figure {
  text-align: center;
}
section.bl_credo ul.is_2col {
  gap: 30px;
  margin-top: 40px;
}
section.bl_credo ul.is_2col li {
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 7px #79c690;
  display: flex;
  flex-direction: column;
  padding-block: 30px;
  padding-inline: 25px;
  border-radius: 8px;
  padding-inline: clamp(25px, -28.571px + 14.286vw, 40px);
}
@media screen and (min-width: 900px) {
  section.bl_credo ul.is_2col li {
    padding-inline: 40px;
  }
}
section.bl_credo ul.is_2col li h3 {
  color: var(--main-color);
  font-weight: var(--fw-bold);
  font-size: 38px;
  letter-spacing: 0.04em;
  text-align: center;
}
section.bl_credo ul.is_2col li h3 span {
  display: block;
  color: var(--text-color);
  font-size: 22px;
  font-size: clamp(20px, 12.857px + 1.905vw, 22px);
}
section.bl_credo ul.is_2col li p {
  line-height: 1.625;
  margin-top: 20px;
  font-weight: var(--fw-medium);
}
section.bl_credo .el_motif {
  bottom: -34px;
}
@media screen and (min-width: 1025px) {
  section.bl_credo .el_motif {
    bottom: clamp(-175px, 395.714px + -41.964vw, -34px);
  }
}

@media screen and (max-width: 899px) {
  section.bl_about .bl_section_inner {
    margin-inline: clamp(0px, -40px + 6.667vw, 20px);
    --site-inline-padding: 12.5px;
  }
}
section.bl_about .bl_mediaText {
  background-color: rgba(0, 105, 75, 0.9);
  border-radius: 0 70px 0 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  section.bl_about .bl_mediaText {
    grid-template-columns: 1fr 49.75%;
  }
}
section.bl_about .bl_mediaText .el_mediaText_content {
  color: #fff;
  padding-block: 34px 40px;
  padding-inline: 21px 29px;
}
@media screen and (min-width: 768px) {
  section.bl_about .bl_mediaText .el_mediaText_content {
    padding-block: clamp(20px, -38.182px + 7.576vw, 30px);
    padding-inline: 15px;
  }
}
@media screen and (min-width: 900px) {
  section.bl_about .bl_mediaText .el_mediaText_content {
    padding-block: clamp(30px, -78.871px + 12.097vw, 45px);
    padding-inline: clamp(15px, -311.613px + 36.29vw, 60px);
  }
}
section.bl_about .bl_mediaText .el_mediaText_content span.el_heading_sub,
section.bl_about .bl_mediaText .el_mediaText_content h2 {
  color: #fff;
}
section.bl_about .bl_mediaText .el_mediaText_content p {
  letter-spacing: 0.04em;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  section.bl_about .bl_mediaText .el_mediaText_content p {
    margin-top: clamp(10px, -20px + 3.906vw, 20px);
  }
}
@media screen and (max-width: 1560px) {
  section.bl_about .bl_mediaText .el_mediaText_content p br {
    display: none;
  }
}
section.bl_about .bl_mediaText figure img {
  width: 100%;
  max-width: none;
}
section.bl_about .bl_about_menu {
  border-radius: 0 0 0 70px;
  background-color: var(--main-color);
  background-repeat: no-repeat;
  padding-block: 20px 55px;
  padding-inline: 12.5px;
  background-image: url(../images/top/bg-about-sp.svg);
  background-position: bottom 14px right 14px;
}
@media screen and (min-width: 900px) {
  section.bl_about .bl_about_menu {
    padding-block: 53px 58px;
    padding-inline: 20px;
    background-image: url(../images/top/bg-about.svg);
    background-position: right center;
  }
}
section.bl_about .bl_about_menu ul {
  max-width: 1035px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px;
}
@media screen and (min-width: 900px) {
  section.bl_about .bl_about_menu ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(193px, 1fr));
    gap: 17px;
  }
}
section.bl_about .bl_about_menu ul li {
  width: calc((100% - 26px) / 3);
}
@media screen and (min-width: 900px) {
  section.bl_about .bl_about_menu ul li {
    width: 100%;
  }
}
section.bl_about .bl_about_menu ul .el_linkButton {
  min-height: 77px;
  padding-inline: 16px;
  font-size: 18px;
  align-items: center;
  --el-btn-txt: #fff;
  --el-btn-bg: var(--main-color);
  border: 1px solid;
}
@media screen and (max-width: 767px) {
  section.bl_about .bl_about_menu ul .el_linkButton {
    aspect-ratio: 1/1;
    height: auto;
    font-size: 17px;
    flex-direction: column;
    padding-inline: 10px;
    white-space: normal;
    justify-content: space-evenly;
  }
}
section.bl_about .bl_about_menu ul .el_linkButton::after {
  background-image: url(../images/common/icon-arrow-w.svg);
}
@media (hover: hover) {
  section.bl_about .bl_about_menu ul .el_linkButton:hover {
    --el-btn-txt: var(--main-color);
    --el-btn-bg: #fff;
  }
  section.bl_about .bl_about_menu ul .el_linkButton:hover::after {
    background-image: url(../images/common/icon-arrow-green.svg);
  }
}
section.bl_about .bl_about_menu .el_linkButton.is_right_arrow {
  margin-top: 25px;
  margin-inline: auto;
  font-size: 18px;
  width: -moz-fit-content;
  width: fit-content;
  flex-direction: row-reverse;
  --el-btn-txt: #fff;
  --el-btn-bg: trasparent;
}
section.bl_about .bl_about_menu .el_linkButton.is_right_arrow::after {
  width: 30px;
  height: 30px;
  background-image: url(../images/common/icon-arrow-w.svg);
}
@media (hover: hover) {
  section.bl_about .bl_about_menu .el_linkButton.is_right_arrow:hover {
    --el-btn-txt: var(--main-color);
    --el-btn-bg: #fff;
  }
  section.bl_about .bl_about_menu .el_linkButton.is_right_arrow:hover::after {
    background-image: url(../images/common/icon-arrow-green.svg);
  }
}

section.bl_service {
  padding-block: 42px 53px;
}
@media screen and (min-width: 900px) {
  section.bl_service {
    padding-block: 64px 100px;
  }
}
section.bl_service h2.lp_heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.bl_service .bl_service_items {
  display: grid;
  margin-top: 40px;
  max-width: 355px;
  margin-inline: auto;
  gap: 32px;
}
@media screen and (min-width: 900px) {
  section.bl_service .bl_service_items {
    max-width: 1064px;
    grid-template-columns: 33% 1fr;
    grid-template-rows: 1fr 1fr;
    -moz-column-gap: 29px;
         column-gap: 29px;
    row-gap: 24px;
    grid-template-areas: "A B" "C B";
  }
  section.bl_service .bl_service_items li:first-child {
    grid-area: A;
  }
  section.bl_service .bl_service_items li:nth-child(2) {
    grid-area: C;
  }
  section.bl_service .bl_service_items li:last-child {
    grid-area: B;
    padding: 14px 16px;
  }
}
section.bl_service .bl_service_items li {
  background-color: #fff;
  box-shadow: 0 0 7px #79c690;
  border-radius: 8px;
  overflow: hidden;
}
section.bl_service .bl_service_items li a {
  display: block;
  cursor: pointer;
}
section.bl_service .bl_service_items li a:hover span {
  background-color: var(--main-color);
  color: #fff;
}
section.bl_service .bl_service_items li a:hover span::after {
  background-image: url(../images/common/icon-arrow-w.svg);
}
section.bl_service .bl_service_items li span {
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 38px 28px;
  padding-block: 26px 30px;
  font-size: 20px;
  letter-spacing: 0.04em;
}
section.bl_service .bl_service_items li span::after {
  content: "";
  background-image: url(../images/common/icon-arrow-green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1em;
  height: 1em;
}
section.bl_service .bl_service_items li:first-child,
section.bl_service .bl_service_items li:nth-child(2) {
  background-color: #fff;
}

section.bl_treatment {
  position: relative;
  padding-bottom: 116px;
  padding-inline: var(--site-inline-padding);
}
@media screen and (max-width: 899px) {
  section.bl_treatment {
    --site-inline-padding: 12.5px;
  }
}
@media screen and (min-width: 900px) {
  section.bl_treatment {
    padding-bottom: 208px;
  }
}
section.bl_treatment .bl_section_inner {
  max-width: var(--content-width);
  background-color: rgba(247, 235, 221, 0.8);
  border-radius: 0 70px 0 70px;
  overflow: hidden;
  padding-top: 32px;
  margin-inline: clamp(0px, -40px + 6.667vw, 20px);
}
@media screen and (max-width: 899px) {
  section.bl_treatment .bl_section_inner {
    --site-inline-padding: 0;
  }
}
@media screen and (min-width: 900px) {
  section.bl_treatment .bl_section_inner {
    margin-inline: 0;
    padding-top: 50px;
  }
}
@media screen and (min-width: 1025px) {
  section.bl_treatment .bl_section_inner {
    margin-inline: auto;
  }
}
section.bl_treatment .el_treatment_heading {
  max-width: 957px;
  --main-color: var(--text-color);
  gap: 24px;
  margin-left: clamp(22px, -14px + 6vw, 40px);
  margin-right: clamp(15px, -15px + 5vw, 30px);
}
@media screen and (min-width: 900px) {
  section.bl_treatment .el_treatment_heading {
    margin-inline: auto;
    grid-template-columns: auto 1fr;
    gap: 80px;
    align-items: center;
  }
}
section.bl_treatment .el_treatment_heading .el_heading_main {
  display: block;
}
section.bl_treatment .el_treatment_heading p {
  line-height: 2;
  font-weight: var(--fw-medium);
}
section.bl_treatment .bl_about_menu {
  max-width: 957px;
  margin-inline: 12.5px;
  margin-top: 36px;
  margin-left: clamp(22px, -14px + 6vw, 40px);
  margin-right: clamp(15px, -15px + 5vw, 30px);
}
@media screen and (min-width: 900px) {
  section.bl_treatment .bl_about_menu {
    margin-inline: auto;
    margin-top: 80px;
  }
}
section.bl_treatment .bl_about_menu ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 38px;
}
@media screen and (min-width: 900px) {
  section.bl_treatment .bl_about_menu ul {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 28px;
         column-gap: 28px;
    row-gap: 40px;
  }
}
section.bl_treatment .bl_about_menu ul li {
  border-bottom: 1px solid #babbbc;
  position: relative;
}
section.bl_treatment .bl_about_menu ul li::before {
  content: "";
  border-bottom: 2px solid var(--main-color);
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 32px;
}
@media screen and (min-width: 900px) {
  section.bl_treatment .bl_about_menu ul li::before {
    width: 62px;
  }
}
section.bl_treatment .bl_about_menu ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--main-color);
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  font-size: 16px;
  line-height: 1.4;
  padding-inline: 5px;
  padding-bottom: 19px;
  height: 100%;
}
@media screen and (min-width: 900px) {
  section.bl_treatment .bl_about_menu ul li a {
    padding-inline: 15px;
    font-size: 22px;
    padding-bottom: 33px;
  }
}
section.bl_treatment .bl_about_menu ul li a::after {
  content: "";
  background-image: url(../images/common/icon-arrow-w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 22px;
}
@media (hover: hover) {
  section.bl_treatment .bl_about_menu ul li a:hover::after {
    background-image: url(../images/common/icon-arrow-green.svg);
  }
}
section.bl_treatment .bl_mediaText {
  margin-top: 50px;
}
@media screen and (max-width: 899px) {
  section.bl_treatment .bl_mediaText {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 900px) {
  section.bl_treatment .bl_mediaText {
    grid-template-columns: 347px 1fr;
    margin-inline: -50px;
  }
}
@media screen and (min-width: 1561px) {
  section.bl_treatment .bl_mediaText {
    margin-inline: 0;
  }
}
section.bl_treatment .bl_mediaText .el_mediaText_content {
  display: flex;
  align-items: flex-end;
}
section.bl_treatment .bl_mediaText .el_mediaText_content a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
  gap: 12px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 18px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  height: 110px;
  transition: all var(--transition);
}
section.bl_treatment .bl_mediaText .el_mediaText_content a::before {
  content: "";
  background-image: url(../images/common/icon-arrow-w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
}
@media (hover: hover) {
  section.bl_treatment .bl_mediaText .el_mediaText_content a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 899px) {
  section.bl_treatment .bl_mediaText figure {
    margin-left: 40px;
  }
}
section.bl_treatment .bl_mediaText figure img {
  border-radius: 96px 0 0 0;
}
section.bl_treatment .el_motif {
  bottom: -80px;
  max-width: none;
  width: 700px;
}
@media screen and (min-width: 900px) {
  section.bl_treatment .el_motif {
    bottom: -135px;
    width: 100%;
  }
}

.bl_message {
  padding-bottom: 76px;
}
@media screen and (min-width: 900px) {
  .bl_message {
    padding-bottom: 85px;
  }
}
.bl_message h2.lp_heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bl_message .bl_messages {
  display: grid;
  margin-top: 50px;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
  max-width: 540px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .bl_message .bl_messages {
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 28px;
         column-gap: 28px;
    row-gap: 32px;
    max-width: none;
  }
}
.bl_message .bl_messages li {
  box-shadow: 0 0 5px #79c690;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f7ebdd;
}
.bl_message .bl_messages li a {
  display: flex;
  flex-direction: column;
}
.bl_message .bl_messages li a figure {
  overflow: hidden;
  border-radius: 0 0 49px 0;
}
.bl_message .bl_messages li a img {
  transition: all var(--transition);
}
.bl_message .bl_messages li a:hover img {
  transform: scale(1.1);
}
.bl_message .bl_messages li .el_message_clinic {
  text-align: center;
  color: var(--main-color);
  font-weight: var(--fw-medium);
  line-height: 1.2;
  padding-block: 8px;
  font-size: 12px;
  padding-inline: 4px;
}
@media screen and (min-width: 900px) {
  .bl_message .bl_messages li .el_message_clinic {
    font-size: 16px;
    padding-block: 15px;
    padding-inline: 20px;
  }
}
.bl_message .bl_messages li .el_message_name {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.45;
  gap: 7px;
}
@media screen and (min-width: 900px) {
  .bl_message .bl_messages li .el_message_name {
    font-size: 22px;
    gap: 15px;
  }
}
.bl_message .bl_messages li .el_message_name span {
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .bl_message .bl_messages li .el_message_name span {
    font-size: 16px;
  }
}

section.bl_medical {
  padding-inline: var(--site-inline-padding);
}
@media screen and (max-width: 899px) {
  section.bl_medical {
    --site-inline-padding: 12.5px;
  }
}
section.bl_medical .bl_section_inner {
  max-width: var(--content-width);
  background-color: #def0eb;
  border-radius: 0 70px 0 70px;
  overflow: hidden;
  padding-top: 32px;
  margin-inline: clamp(0px, -40px + 6.667vw, 20px);
}
@media screen and (max-width: 899px) {
  section.bl_medical .bl_section_inner {
    --site-inline-padding: 0;
  }
}
@media screen and (min-width: 900px) {
  section.bl_medical .bl_section_inner {
    padding-top: 50px;
    margin-inline: 0;
  }
}
@media screen and (min-width: 1025px) {
  section.bl_medical .bl_section_inner {
    margin-inline: auto;
  }
}
section.bl_medical .el_treatment_heading {
  max-width: 957px;
  --main-color: var(--text-color);
  gap: 24px;
  margin-left: clamp(22px, -14px + 6vw, 40px);
  margin-right: clamp(15px, -15px + 5vw, 30px);
}
@media screen and (min-width: 900px) {
  section.bl_medical .el_treatment_heading {
    margin-inline: auto;
    grid-template-columns: auto 1fr;
    gap: 37px;
    align-items: center;
  }
}
section.bl_medical .el_treatment_heading .el_heading_main {
  display: block;
}
section.bl_medical .el_treatment_heading p {
  line-height: 2;
  font-weight: var(--fw-medium);
}
section.bl_medical .bl_about_menu {
  max-width: 957px;
  margin-inline: 12.5px;
  margin-top: 36px;
  margin-left: clamp(22px, -14px + 6vw, 40px);
  margin-right: clamp(15px, -15px + 5vw, 30px);
}
@media screen and (min-width: 900px) {
  section.bl_medical .bl_about_menu {
    margin-inline: auto;
    margin-top: 80px;
  }
}
section.bl_medical .bl_about_menu ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 38px;
}
@media screen and (min-width: 900px) {
  section.bl_medical .bl_about_menu ul {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 28px;
         column-gap: 28px;
    row-gap: 40px;
  }
}
section.bl_medical .bl_about_menu ul li {
  border-bottom: 1px solid #babbbc;
  position: relative;
}
section.bl_medical .bl_about_menu ul li::before {
  content: "";
  width: 62px;
  border-bottom: 2px solid var(--main-color);
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 32px;
}
@media screen and (min-width: 900px) {
  section.bl_medical .bl_about_menu ul li::before {
    width: 62px;
  }
}
section.bl_medical .bl_about_menu ul li a {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
  padding-inline: 15px;
  padding-bottom: 20px;
  color: var(--main-color);
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  font-size: 16px;
  line-height: 1.4;
  padding-inline: 5px;
  padding-bottom: 19px;
  height: 100%;
}
@media screen and (min-width: 900px) {
  section.bl_medical .bl_about_menu ul li a {
    padding-inline: 15px;
    font-size: 22px;
    padding-bottom: 33px;
  }
}
section.bl_medical .bl_about_menu ul li a::after {
  content: "";
  background-image: url(../images/common/icon-arrow-w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 22px;
}
@media (hover: hover) {
  section.bl_medical .bl_about_menu ul li a:hover::after {
    background-image: url(../images/common/icon-arrow-green.svg);
  }
}
section.bl_medical .bl_mediaText {
  margin-top: 50px;
}
@media screen and (max-width: 899px) {
  section.bl_medical .bl_mediaText {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 900px) {
  section.bl_medical .bl_mediaText {
    grid-template-columns: 364px 1fr;
    margin-inline: -50px;
  }
}
@media screen and (min-width: 1561px) {
  section.bl_medical .bl_mediaText {
    margin-inline: 0;
  }
}
section.bl_medical .bl_mediaText .el_mediaText_content {
  display: flex;
  align-items: flex-end;
}
section.bl_medical .bl_mediaText .el_mediaText_content a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
  gap: 12px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 18px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  height: 110px;
  transition: all var(--transition);
}
section.bl_medical .bl_mediaText .el_mediaText_content a::before {
  content: "";
  background-image: url(../images/common/icon-arrow-w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
}
@media (hover: hover) {
  section.bl_medical .bl_mediaText .el_mediaText_content a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 899px) {
  section.bl_medical .bl_mediaText figure {
    margin-left: 40px;
  }
}
section.bl_medical .bl_mediaText figure img {
  border-radius: 96px 0 0 0;
}

section.bl_careCenter {
  position: relative;
  padding-block: 36px 126px;
  padding-inline: var(--site-inline-padding);
}
@media screen and (max-width: 899px) {
  section.bl_careCenter {
    --site-inline-padding: 12.5px;
  }
}
@media screen and (min-width: 900px) {
  section.bl_careCenter {
    padding-block: 73px 195px;
  }
}
section.bl_careCenter .bl_section_inner {
  --site-inline-padding: 12.5px;
}
section.bl_careCenter .el_motif {
  bottom: -60px;
}
@media screen and (min-width: 1025px) {
  section.bl_careCenter .el_motif {
    bottom: clamp(-135px, 164.561px + -21.93vw, -60px);
  }
}
section.bl_careCenter .bl_mediaText {
  background-color: #f7ebdd;
  border-radius: 0 70px 0 70px;
  border: 2px solid var(--main-color);
  overflow: hidden;
  grid-template-columns: 1fr;
}
@media screen and (min-width:540px) {
  section.bl_careCenter .bl_mediaText {
    gap: clamp(0px, -47.368px + 8.772vw, 20px);
    grid-template-columns: 50% 50%;
  }
}
@media screen and (min-width: 900px) {
  section.bl_careCenter .bl_mediaText {
    gap: 20px;
    grid-template-columns: 1fr 47.6%;
  }
}
section.bl_careCenter .bl_mediaText figure {
  overflow: hidden;
}
section.bl_careCenter .bl_mediaText figure img {
  width: 100%;
  max-width: none;
}
@media screen and (min-width:540px) {
  section.bl_careCenter .bl_mediaText figure img {
    height: 100%;
    width: auto;
    transform: translateX(-38%);
  }
}
@media screen and (min-width: 900px) {
  section.bl_careCenter .bl_mediaText figure img {
    transform: translateX(0);
    max-height: 400px;
  }
}
@media screen and (min-width: 1025px) {
  section.bl_careCenter .bl_mediaText figure img {
    transform: translateX(0);
  }
}
section.bl_careCenter .el_mediaText_content {
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
  background-image: url(../images/top/bg-care.svg);
  background-repeat: no-repeat;
  background-position: right 16px bottom 95px;
  background-size: 113px 80px;
}
@media screen and (min-width: 900px) {
  section.bl_careCenter .el_mediaText_content {
    background-position: left 60px bottom 20px;
    background-size: 144px 103px;
  }
}
section.bl_careCenter h2 {
  background-color: #fff;
  color: var(--main-color);
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  line-height: 1.1;
  border-radius: 0 0 53px 0;
  width: -moz-fit-content;
  width: fit-content;
  padding-block: 25px 30px;
  padding-inline: 18px 15px;
  font-size: 25px;
}
@media screen and (min-width:540px) {
  section.bl_careCenter h2 {
    font-size: clamp(18px, 1.421px + 3.07vw, 25px);
  }
}
@media screen and (min-width: 900px) {
  section.bl_careCenter h2 {
    font-size: clamp(25px, -8.75px + 3.75vw, 40px);
    border-radius: 0 0 70px 0;
    padding-inline: 56px;
  }
}
section.bl_careCenter p {
  margin-top: 30px;
  letter-spacing: 0.04em;
  line-height: 1.75;
  margin-inline: 20px;
  padding-inline: 20px;
}
@media screen and (min-width:540px) {
  section.bl_careCenter p {
    margin-top: clamp(20px, -3.684px + 4.386vw, 30px);
    font-size: clamp(11px, -0.842px + 2.193vw, 16px);
  }
}
@media screen and (min-width: 900px) {
  section.bl_careCenter p {
    margin-inline: 70px 30px;
  }
}
@media screen and (max-width: 1366px) {
  section.bl_careCenter p {
    margin-bottom: 30px;
    max-width: 500px;
  }
  section.bl_careCenter p br {
    display: none;
  }
}
section.bl_careCenter .el_linkButton {
  --el-btn-bg: var(--main-color);
  --el-btn-txt: #fff;
  margin-top: auto !important;
  width: 292px;
  margin-inline: 20px;
  font-size: 15px;
  min-height: 55px;
  border: 1px solid var(--main-color);
}
@media screen and (min-width:540px) {
  section.bl_careCenter .el_linkButton {
    font-size: clamp(10px, -1.842px + 2.193vw, 15px);
    min-height: clamp(40px, 4.474px + 6.579vw, 55px);
    padding-inline: clamp(10px, -27.895px + 7.018vw, 26px);
  }
}
@media screen and (min-width: 900px) {
  section.bl_careCenter .el_linkButton {
    padding-inline: 26px 15px;
    margin-inline: auto 30px;
  }
}
section.bl_careCenter .el_linkButton::after {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-image: url(../images/common/icon-arrow-w.svg);
}
@media (hover: hover) {
  section.bl_careCenter .el_linkButton:hover {
    --el-btn-bg: #fff;
    --el-btn-txt: var(--main-color);
  }
  section.bl_careCenter .el_linkButton:hover::after {
    background-image: url(../images/common/icon-arrow-green.svg);
  }
}

section.bl_education {
  padding-inline: var(--site-inline-padding);
}
@media screen and (max-width: 899px) {
  section.bl_education {
    --site-inline-padding: 12.5px;
  }
}
section.bl_education .bl_section_inner {
  background-color: var(--main-color);
  border-radius: 0 70px 0 70px;
  overflow: hidden;
  padding-top: 30px;
  --site-inline-padding: 0;
}
@media screen and (min-width: 900px) {
  section.bl_education .bl_section_inner {
    max-width: var(--content-width);
    padding-top: 50px;
  }
}
section.bl_education .el_treatment_heading {
  max-width: 800px;
  margin-inline: auto;
  --main-color: #fff;
  --text-color: #fff;
  padding-inline: 16px;
}
@media screen and (min-width: 900px) {
  section.bl_education .el_treatment_heading {
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: center;
  }
}
section.bl_education .el_treatment_heading p {
  color: #fff;
  line-height: 2;
  font-weight: var(--fw-medium);
}
section.bl_education .bl_education_menu {
  background-color: #00543f;
  padding-block: 30px;
  padding-inline: 15px;
  margin-top: 50px;
  background-repeat: no-repeat;
  background-image: url(../images/top/education-bg.webp);
  background-size: 340px 210px;
  background-position: bottom 40px center;
}
@media screen and (min-width: 900px) {
  section.bl_education .bl_education_menu {
    background-image: url(../images/top/education-bg-pc.webp);
    background-size: 617px 381px;
    background-position: bottom 25px right;
    padding-inline: 36px;
  }
}
section.bl_education .bl_education_menu ul {
  display: grid;
  gap: 24px;
}
@media screen and (min-width:540px) {
  section.bl_education .bl_education_menu ul {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(10px, -37.368px + 8.772vw, 30px);
  }
}
section.bl_education .bl_education_menu ul li {
  border-radius: 8px;
  overflow: hidden;
}
section.bl_education .bl_education_menu ul li a {
  display: block;
  height: 100%;
}
section.bl_education .bl_education_menu ul li a figure {
  overflow: hidden;
}
section.bl_education .bl_education_menu ul li a img {
  max-width: none;
  width: 100%;
  transition: all var(--transition);
}
section.bl_education .bl_education_menu ul li a span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 38px 28px;
  font-size: 18px;
  padding-block: 18px;
  background-color: #fff;
  font-weight: var(--fw-medium);
  line-height: 1.333;
  letter-spacing: 0.04em;
  min-height: 84px;
}
@media screen and (min-width:540px) {
  section.bl_education .bl_education_menu ul li a span {
    padding-inline: 13px 13px;
    font-size: clamp(12px, 2.526px + 1.754vw, 16px);
    min-height: clamp(66px, 23.368px + 7.895vw, 84px);
  }
  section.bl_education .bl_education_menu ul li a span br {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  section.bl_education .bl_education_menu ul li a span {
    font-size: 16px;
    padding-inline: 15px 15px;
  }
  section.bl_education .bl_education_menu ul li a span br {
    display: inline;
  }
}
@media screen and (min-width: 1367px) {
  section.bl_education .bl_education_menu ul li a span {
    font-size: 18px;
    padding-inline: 38px 28px;
  }
}
section.bl_education .bl_education_menu ul li a span::after {
  content: "";
  background-image: url(../images/common/icon-arrow-green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}
@media (hover: hover) {
  section.bl_education .bl_education_menu ul li a:hover img {
    transform: scale(1.1);
  }
  section.bl_education .bl_education_menu ul li a:hover::after {
    background-image: url(../images/common/icon-arrow-white.svg);
  }
}
section.bl_education .bl_education_menu .el_linkButton.is_right_arrow {
  margin-top: 25px;
  margin-inline: auto;
  font-size: 18px;
  width: -moz-fit-content;
  width: fit-content;
  flex-direction: row-reverse;
  --el-btn-txt: #fff;
  --el-btn-bg: transparent;
}
section.bl_education .bl_education_menu .el_linkButton.is_right_arrow::after {
  width: 30px;
  height: 30px;
  background-image: url(../images/common/icon-arrow-w.svg);
}
@media (hover: hover) {
  section.bl_education .bl_education_menu .el_linkButton.is_right_arrow:hover {
    --el-btn-txt: var(--main-color);
    --el-btn-bg: #fff;
  }
  section.bl_education .bl_education_menu .el_linkButton.is_right_arrow:hover::after {
    background-image: url(../images/common/icon-arrow-green.svg);
  }
}

section.bl_activity {
  padding-inline: var(--site-inline-padding);
  padding-block: 43px 55px;
}
@media screen and (max-width: 899px) {
  section.bl_activity {
    --site-inline-padding: 12.5px;
  }
}
@media screen and (min-width: 900px) {
  section.bl_activity {
    padding-block: 79px 83px;
  }
}
section.bl_activity h2.lp_heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 899px) {
  section.bl_activity h2.lp_heading {
    font-size: 26px !important;
    gap: 10px;
  }
}
section.bl_activity ul.el_mediaTab_tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  row-gap: 10px;
  flex-wrap: wrap;
  margin-top: 27px;
}
@media screen and (min-width: 900px) {
  section.bl_activity ul.el_mediaTab_tabs {
    margin-top: 56px;
    row-gap: 15px;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
section.bl_activity ul.el_mediaTab_tabs li a {
  width: 98px;
  font-size: 14px;
  height: 35px;
  padding-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--main-color);
  white-space: nowrap;
  border-radius: 8px;
  transition: all var(--transition);
  background-color: #fff;
  letter-spacing: 0.04em;
  font-weight: var(--fw-medium);
}
@media screen and (min-width: 900px) {
  section.bl_activity ul.el_mediaTab_tabs li a {
    width: 155px;
    font-size: 18px;
    height: 43px;
  }
}
section.bl_activity ul.el_mediaTab_tabs li a.is_active, section.bl_activity ul.el_mediaTab_tabs li a:hover {
  background-color: #f7faef;
  color: #00694b;
}
section.bl_activity .el_linkButton.is_right_arrow {
  margin-top: 25px;
  margin-inline: auto;
  font-size: 18px;
  width: -moz-fit-content;
  width: fit-content;
  flex-direction: row-reverse;
  padding-inline: 10px;
  --el-btn-txt: var(--text-color);
  --el-btn-bg: #fff;
}
@media screen and (min-width:540px) {
  section.bl_activity .el_linkButton.is_right_arrow {
    padding-inline: 20px;
  }
}
section.bl_activity .el_linkButton.is_right_arrow::after {
  width: 30px;
  height: 30px;
  background-image: url(../images/common/icon-arrow-green.svg);
}
@media (hover: hover) {
  section.bl_activity .el_linkButton.is_right_arrow:hover {
    --el-btn-bg: var(--main-color);
    --el-btn-txt: #fff;
  }
  section.bl_activity .el_linkButton.is_right_arrow:hover::after {
    background-image: url(../images/common/icon-arrow-w.svg);
  }
}

section.bl_top_recruit {
  padding-inline: var(--site-inline-padding);
}
@media screen and (max-width: 899px) {
  section.bl_top_recruit {
    --site-inline-padding: 12.5px;
  }
}
@media screen and (max-width: 899px) {
  section.bl_top_recruit .bl_section_inner {
    max-width: 540px;
  }
}
section.bl_top_recruit .bl_mediaText {
  background-color: var(--main-color);
  color: #fff;
  border-radius: 20px;
  overflow: hidden;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 1025px) {
  section.bl_top_recruit .bl_mediaText {
    border-radius: 20px;
    grid-template-columns: 1fr 464px;
  }
}
section.bl_top_recruit .el_mediaText_figure img {
  max-width: none;
  border-radius: 105px 0 0 0;
}
@media screen and (max-width: 1024px) {
  section.bl_top_recruit .el_mediaText_figure img {
    width: 100%;
    border-radius: 70px 0 0 0;
  }
}
section.bl_top_recruit .el_mediaText_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 38px 20px;
  padding-inline: 20px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_recruit .el_mediaText_content {
    padding-block: 20px 10px;
  }
}
@media screen and (min-width: 1367px) {
  section.bl_top_recruit .el_mediaText_content {
    padding-block: 40px 20px;
  }
}
section.bl_top_recruit .el_mediaText_content h2 {
  color: #fff;
  text-align: center;
  font-weight: var(--fw-bold);
  font-size: 28px;
  line-height: 1.33;
}
@media screen and (min-width: 900px) {
  section.bl_top_recruit .el_mediaText_content h2 {
    font-size: 32px;
    font-size: clamp(28px, 13.159px + 1.449vw, 32px);
    letter-spacing: 0.06em;
  }
}
section.bl_top_recruit .el_mediaText_content .el_topRecruit_copy {
  background-color: #ffffa0;
  border-radius: 8px;
  color: var(--main-color);
  font-size: 18px;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 27px;
  padding: 5px 10px;
  width: 100%;
}
@media screen and (min-width:540px) {
  section.bl_top_recruit .el_mediaText_content .el_topRecruit_copy {
    padding: 5px 28px;
    width: -moz-fit-content;
    width: fit-content;
  }
}
section.bl_top_recruit .el_mediaText_content p {
  margin-top: 15px;
  letter-spacing: 0.04em;
  line-height: 1.75;
}
@media screen and (max-width:539px) {
  section.bl_top_recruit .el_mediaText_content p {
    font-size: 15px;
  }
}
@media screen and (min-width: 900px) {
  section.bl_top_recruit .el_mediaText_content p {
    text-align: center;
  }
}
section.bl_top_recruit .el_linkButton.is_right_arrow {
  margin-top: 25px;
  margin-inline: auto;
  font-size: 20px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  width: -moz-fit-content;
  width: fit-content;
  flex-direction: row-reverse;
  gap: 16px;
  --el-btn-txt: #fff;
  --el-btn-bg: var(--main-color);
}
section.bl_top_recruit .el_linkButton.is_right_arrow::after {
  width: 38px;
  height: 38px;
  background-image: url(../images/common/icon-arrow-y.svg);
}
@media (hover: hover) {
  section.bl_top_recruit .el_linkButton.is_right_arrow:hover {
    --el-btn-txt: var(--main-color);
    --el-btn-bg: #fff;
  }
  section.bl_top_recruit .el_linkButton.is_right_arrow:hover::after {
    background-image: url(../images/common/icon-arrow-w.svg);
  }
}

section.full-width {
  width: calc(var(--vw) * 100);
  margin-left: calc(50% - var(--vw) * 50);
}

.bl_section_inner {
  max-width: var(--content-width);
  padding-inline: var(--site-inline-padding);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.no_news {
  text-align: center;
}

.bl_404 {
  padding-block: 100px;
  max-width: var(--content-width);
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bl_404 > * + * {
  margin-top: 40px;
}
.bl_404 h2 {
  font-size: 30px;
}

@media screen and (min-width: 900px) {
  .bl_mediaText.is_about_fkk {
    grid-template-columns: 1fr 379px;
    gap: 140px;
  }
  .bl_mediaText.is_about_fkk .el_mediaText_image {
    grid-column: 2/3;
  }
  .bl_mediaText.is_about_fkk .el_mediaText_content {
    grid-column: 1/2;
    grid-row: 1;
  }
}

figcaption {
  line-height: 1;
  font-size: 16px;
  text-align: right;
}

.el_contentBox {
  background-color: #f2f5f6;
  padding-block: 40px;
  padding-inline: 60px;
}
.el_contentBox > * + * {
  margin-top: 20px;
}

.bl_columns.is_flex {
  display: flex;
  gap: 70px;
}

.bl_contact_notice {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--main-color);
  padding: 30px 20px;
  border-radius: 10px;
  max-width: 800px;
  margin-inline: auto;
  background-color: rgba(255, 255, 255, 0.3);
}
@media screen and (min-width: 900px) {
  .bl_contact_notice {
    padding: 40px 40px;
    text-align: center;
  }
}

.el_notice_heading {
  font-size: 22px;
  font-weight: var(--fw-bold);
  margin-bottom: 20px;
}

ul.el_contact_direction {
  --article-mt: 60px;
}

.wpcf7 {
  --article-mt: 60px;
  max-width: 1100px;
  margin-inline: auto;
}

.wpcf7-form h2 {
  margin-top: 60px;
}
.wpcf7-form h2 + p {
  margin-top: 30px;
}
.wpcf7-form .el_formItem {
  border-bottom: 1px solid #dadada;
  display: grid;
  grid-template-columns: 1fr;
  padding-block: 20px;
  gap: 6px;
}
@media screen and (min-width: 900px) {
  .wpcf7-form .el_formItem {
    gap: 20px;
    grid-template-columns: 240px 1fr;
  }
}
.wpcf7-form .el_formItem.is_formItem_1col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.wpcf7-form .el_formItem label {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 900px) {
  .wpcf7-form .el_formItem label {
    padding-top: 10px;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.wpcf7-form .el_formItem label.is_require::after {
  content: "必須";
  background-color: var(--main-color);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  padding: 5px 10px;
  border-radius: 3px;
  white-space: nowrap;
}
@media screen and (min-width: 900px) {
  .wpcf7-form .el_formItem label.is_require::after {
    font-size: 14px;
  }
}
.wpcf7-form select,
.wpcf7-form textarea,
.wpcf7-form input[type=tel],
.wpcf7-form input[type=email],
.wpcf7-form input[type=text] {
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  font-size: 18px;
  padding: 10px 10px;
}
.wpcf7-form input.el_input_zip {
  width: 140px;
  margin-inline: 10px;
  margin-bottom: 15px;
}
.wpcf7-form select {
  width: auto;
  padding-inline: 10px 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none; /* デフォルトの矢印を非表示 */
  color: var(--text-color);
}
.wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.wpcf7-form .wpcf7-acceptance .wpcf7-list-item label {
  padding-top: 0;
  align-items: flex-start;
}
.wpcf7-form .wpcf7-acceptance .wpcf7-list-item label input {
  margin-top: 4px;
}
@media screen and (min-width: 900px) {
  .wpcf7-form .wpcf7-acceptance .wpcf7-list-item label {
    align-items: center;
  }
}
.wpcf7-form .wpcf7-acceptance .wpcf7-list-item label::after {
  order: 1;
}
.wpcf7-form .wpcf7-acceptance .wpcf7-list-item label input {
  margin-top: 4px;
  order: 2;
}
@media screen and (min-width: 900px) {
  .wpcf7-form .wpcf7-acceptance .wpcf7-list-item label input {
    margin-top: 0;
  }
}
.wpcf7-form .wpcf7-acceptance .wpcf7-list-item label span {
  order: 3;
  line-height: 1.3;
}
.wpcf7-form .el_formButtons {
  text-align: center;
  margin-block: 20px 0;
}
.wpcf7-form .wpcf7-previous,
.wpcf7-form .wpcf7-submit {
  width: 100%;
  max-width: 300px;
  display: inline-flex;
  margin-top: 20px;
  margin-inline: 10px;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  padding-block: 10px;
  padding-inline: 30px 20px;
  border-radius: 8px;
  height: 60px;
  transition: all var(--transition-time) ease;
}
@media screen and (min-width: 900px) {
  .wpcf7-form .wpcf7-previous,
  .wpcf7-form .wpcf7-submit {
    width: 400px;
  }
}
.wpcf7-form .wpcf7-previous:disabled,
.wpcf7-form .wpcf7-submit:disabled {
  opacity: 0.2;
  pointer-events: none;
}
.wpcf7-form .wpcf7-submit {
  background: var(--main-color);
  color: #fff;
}
.wpcf7-form .wpcf7-submit:hover {
  opacity: 0.7;
}
.wpcf7-form .wpcf7-previous {
  border: 1px solid var(--main-color);
  background-color: #fff;
  color: var(--main-color);
}
.wpcf7-form .wpcf7-previous:hover {
  background-color: var(--main-color);
  color: #fff;
}
.wpcf7-form .wpcf7-spinner {
  display: block;
  margin-inline: auto;
  margin-block: 30px 0;
}
.wpcf7-form .bl_fromItem_index {
  margin-top: 20px;
}
@media screen and (min-width: 900px) {
  .wpcf7-form .bl_fromItem_index .el_formItem {
    gap: 20px;
    grid-template-columns: 400px 1fr;
  }
  .wpcf7-form .bl_fromItem_index .el_formItem label {
    padding-top: 0;
  }
}
.wpcf7-form .wpcf7-radio label {
  align-items: center;
}
.wpcf7-form .el_formItem_select {
  display: flex;
  align-items: center;
  gap: 30px;
}
.wpcf7-form .el_formItem.is_select .wpcf7-form-control-wrap,
.wpcf7-form .el_formItem_select .wpcf7-form-control-wrap {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.wpcf7-form .el_formItem.is_select .wpcf7-form-control-wrap::after,
.wpcf7-form .el_formItem_select .wpcf7-form-control-wrap::after {
  content: "";
  width: 10px;
  height: 10px;
  border-style: none none solid solid;
  border-width: 1px;
  transform: rotate(-45deg);
  position: absolute;
  right: 10px;
  top: 30%;
}
.wpcf7-form .bl_fromItem_manualIndex {
  margin-block: 20px;
}
.wpcf7-form .bl_fromItem_manualIndex .wpcf7-checkbox {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 900px) {
  .wpcf7-form .bl_fromItem_manualIndex .wpcf7-checkbox {
    grid-template-columns: 1fr 1fr;
  }
}
.wpcf7-form .bl_fromItem_manualIndex .wpcf7-list-item {
  border-bottom: 1px solid var(--border-color);
  margin-left: 0;
  padding-right: 20px;
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .wpcf7-form .bl_fromItem_manualIndex .wpcf7-list-item:nth-child(odd) {
    padding-right: 50px;
  }
}
.wpcf7-form .bl_fromItem_manualIndex .wpcf7-list-item label {
  padding-block: 10px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 20px;
}
.wpcf7-form span.wpcf7-form-control-wrap[data-name=total] {
  display: flex;
  align-items: center;
  gap: 30px;
}
.wpcf7-form span.wpcf7-form-control-wrap[data-name=total]::after {
  content: "円";
}
.wpcf7-form span.wpcf7-form-control-wrap[data-name=total] input {
  width: 186px;
}

span#cf7msm_total::after {
  content: "円";
}

span#cf7msm_total:empty::after {
  content: none;
}

.bl_thanksMessage {
  text-align: center;
  font-size: 22px;
}

a.el_linkButton.is_go_home {
  color: #fff;
  max-width: 300px;
  margin-inline: auto;
  margin-top: 60px;
  width: 100%;
  padding-inline: 20px;
}

.wpcf7 form .wpcf7-response-output {
  border-radius: 10px;
  padding-block: 0.7em;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  background: #ffebb7;
  border: none;
}

.bl_form_notice {
  box-shadow: 0 0 14px #79c690;
  border-radius: 8px;
  max-width: 900px;
  margin-inline: auto;
}
.bl_form_notice .el_accordion_title {
  position: relative;
}
.bl_form_notice button.el_accordion_button {
  --ac-icon-right: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  align-items: center;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  text-align: left;
  line-height: 1.4;
  font-weight: 700;
  padding-block: 30px;
  font-size: 16px;
  padding-inline: 50px 45px;
  color: var(--text-color);
}
@media screen and (min-width: 900px) {
  .bl_form_notice button.el_accordion_button {
    --ac-icon-right: 30px;
    padding-inline: 78px 70px;
    font-size: 20px;
  }
}
.bl_form_notice button.el_accordion_button::before, .bl_form_notice button.el_accordion_button::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  background-color: #191919;
  transform: translateY(-50%);
}
.bl_form_notice button.el_accordion_button::before {
  right: var(--ac-icon-right);
  width: 20px;
  height: 2px;
}
.bl_form_notice button.el_accordion_button::after {
  transition: all var(--transition);
  width: 2px;
  height: 20px;
  right: 39px;
  right: calc(var(--ac-icon-right) + 9px);
  transform: translateY(-50%) rotate(90deg);
}
.bl_form_notice .is_close .el_accordion_button::after {
  transform: translateY(-50%);
}
.bl_form_notice .is_close + .el_accordion_body {
  grid-template-rows: 0fr;
}
.bl_form_notice .el_accordion_body {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows var(--transition);
}
.bl_form_notice .el_accordion_inner {
  overflow: hidden;
  position: relative;
  padding-inline: 20px 20px;
  font-size: 14px;
  line-height: 1.875;
}
@media screen and (min-width: 900px) {
  .bl_form_notice .el_accordion_inner {
    font-size: 16px;
    padding-inline: 40px 40px;
  }
}
.bl_form_notice .el_accordion_inner > * {
  margin-block: 20px;
}
.bl_form_notice .el_accordion_inner ul.el_contact_direction {
  margin-block: 20px 40px;
}
.bl_form_notice .el_accordion_inner ul.el_contact_direction li {
  display: flex;
  gap: 10px;
}
.bl_form_notice .el_accordion_inner ul.el_contact_direction li::before {
  content: "";
  background-image: url(../images/page/icon-check-g.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  margin-top: 7px;
}
.bl_form_notice .el_accordion_inner ul.el_contact_direction li + li {
  margin-top: 10px;
}
.bl_form_notice .el_accordion_inner a {
  --sub-color: var(--main-color);
}

.reCAPTCHA-txt p {
  text-align: center;
  line-height: 1.2 !important;
  font-size: 0.8em;
  opacity: 0.7;
}

.page .bl_recruit_items h4 + *,
.page .bl_recruit_items h3 + * {
  margin-top: 20px !important;
}
.page .bl_recruit_items .bl_mediaText {
  gap: 20px;
}
.page .bl_recruit_items h3 {
  font-size: 24px !important;
}
@media screen and (min-width: 900px) {
  .page .bl_recruit_items h3 {
    font-size: 32px !important;
  }
}
.page .bl_recruit_items h4 {
  font-weight: var(--fw-bold);
  font-size: 18px !important;
}
@media screen and (min-width: 900px) {
  .page .bl_recruit_items h4 {
    font-size: 24px !important;
  }
}
.page .bl_recruit_items + .bl_recruit_items {
  margin-top: 100px !important;
}
@media screen and (max-width: 899px) {
  .page .bl_recruit_items .working-condition-list,
  .page .bl_recruit_items .condition-list {
    margin-top: 0 !important;
  }
  .page .bl_recruit_items .working-condition-list th,
  .page .bl_recruit_items .condition-list th {
    width: 100px;
  }
}
.page .bl_recruit_items figure img {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.page .el_recruit_cta {
  text-align: center;
  margin-top: 70px !important;
  border-style: solid none;
  border-width: 1px;
  border-color: #ccc;
  padding-block: 40px;
}
.page .el_recruit_cta p.el_recruit_copy {
  font-weight: var(--fw-bold);
  line-height: 1.2;
  text-align: center;
  font-size: 18px;
}
@media screen and (min-width: 900px) {
  .page .el_recruit_cta p.el_recruit_copy {
    font-size: 24px;
  }
}
.page .el_recruit_cta p.el_recruit_tel {
  font-weight: var(--fw-bold);
  line-height: 1.2;
  font-size: 34px;
  margin-top: 22px;
}
.page .el_recruit_cta p.el_recruit_tel a {
  color: var(--main-color);
}
@media screen and (min-width: 900px) {
  .page .el_recruit_cta p.el_recruit_tel {
    font-size: 48px;
    margin-top: 38px;
  }
}
.page .el_recruit_cta p.el_recruit_office {
  font-weight: var(--fw-bold);
  line-height: 1.1875;
  font-size: 13px;
  margin-top: 28px;
}
@media screen and (min-width: 900px) {
  .page .el_recruit_cta p.el_recruit_office {
    font-size: 16px;
    margin-top: 42px;
  }
}
.page .el_recruit_cta p.el_recruit_meta {
  line-height: 1.1875;
  font-size: 11px;
  margin-top: 10px;
}
@media screen and (min-width: 900px) {
  .page .el_recruit_cta p.el_recruit_meta {
    font-size: 16px;
    margin-top: 20px;
  }
}

.el_embedYoutube {
  text-align: center;
}
.el_embedYoutube iframe {
  max-width: 830px;
  width: 100%;
  aspect-ratio: 560/315;
  height: auto;
}

.bl_timeLine_sp {
  display: grid;
  gap: 60px;
}
@media screen and (min-width: 900px) {
  .bl_timeLine_sp {
    gap: 0;
    grid-template-columns: 1fr 1fr;
  }
}

.bl_timeLine_column {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
@media screen and (max-width: 899px) {
  .bl_timeLine_column + .bl_timeLine_column {
    margin-top: 40px;
  }
}
.bl_timeLine_column .bl_timeLine_header {
  padding-block: 20px;
  position: relative;
  display: flex;
}
@media screen and (min-width: 900px) {
  .bl_timeLine_column .bl_timeLine_header {
    border-bottom: 1px solid #666;
  }
}
.bl_timeLine_column .bl_timeLine_header::before {
  content: "";
  width: 0;
  height: 30%;
  border-left: 1px solid #999;
  position: absolute;
  bottom: 0;
  left: 0;
}
.bl_timeLine_column .bl_timeLine_header figure {
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  place-items: center;
  margin-inline: auto;
}
.bl_timeLine_column .bl_timeLine_header figure > * {
  grid-column: 1/-1;
  grid-row: 1/-1;
}
.bl_timeLine_column .bl_timeLine_header figure figcaption {
  z-index: 2;
  background-color: var(--main-color);
  color: #fff;
  display: grid;
  place-items: center;
  padding: 10px 20px;
}
@media screen and (min-width: 900px) {
  .bl_timeLine_column.is_world .bl_timeLine_header::before {
    content: none;
  }
}
@media screen and (min-width: 900px) {
  .bl_timeLine_column.is_world .bl_timeLine_content {
    border-left: none;
  }
  .bl_timeLine_column.is_world .bl_timeLine_content dt {
    padding-inline: 0 10px;
  }
  .bl_timeLine_column.is_world .bl_timeLine_content dt::before {
    left: auto;
    right: -6.5px;
  }
  .bl_timeLine_column.is_world .bl_timeLine_content dd {
    padding-inline: 0 30px;
  }
}
.bl_timeLine_column .bl_timeLine_content {
  border-left: 1px solid #999;
  padding-top: 50px;
}
.bl_timeLine_column .bl_timeLine_content dl {
  margin-top: 50px;
}
.bl_timeLine_column .bl_timeLine_content dl:first-child {
  margin-top: 0;
}
.bl_timeLine_column .bl_timeLine_content dl dt {
  line-height: 1;
  border-bottom: 1px solid;
  position: relative;
  padding-block: 5px;
  font-size: 24px;
  padding-inline: 25px 10px;
}
@media screen and (min-width: 900px) {
  .bl_timeLine_column .bl_timeLine_content dl dt {
    font-size: 32px;
    padding-inline: 30px 10px;
  }
}
.bl_timeLine_column .bl_timeLine_content dl dt::before {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 100%;
  background-color: var(--main-color);
  position: absolute;
  left: -6.5px;
  bottom: -6.5px;
  z-index: 1;
}
.bl_timeLine_column .bl_timeLine_content dl dd {
  padding-block: 20px 0;
  padding-inline: 30px 10px;
}
@media screen and (min-width: 900px) {
  .bl_timeLine_column .bl_timeLine_content dl dd {
    padding-block: 30px 0;
  }
}
.bl_timeLine_column .bl_timeLine_content dl dd p {
  line-height: 1.75;
}
.bl_timeLine_column .bl_timeLine_content dl dd * + * {
  margin-top: 16px;
}
.bl_timeLine_column .bl_timeLine_content dl dd .bl_columns {
  display: grid;
  margin-top: 16px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 900px) {
  .bl_timeLine_column .bl_timeLine_content dl dd .bl_columns {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
.bl_timeLine_column .bl_timeLine_content dl dd figcaption {
  text-align: left;
  line-height: 1.4;
  margin-top: 5px;
  font-size: 0.9em;
}
@media screen and (max-width: 899px) {
  .bl_timeLine_column .bl_timeLine_content dl dd figcaption {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 899px) {
  .bl_timeLine_column .el_spacer {
    display: none;
  }
}

.entry-content.bl_article_content .bl_faq {
  margin-top: 30px;
  box-shadow: 0 0 10px #79c690;
  border-radius: 8px;
}
@media screen and (min-width: 900px) {
  .entry-content.bl_article_content .bl_faq {
    margin-top: 40px;
  }
}
.entry-content.bl_article_content .bl_faq + .bl_faq {
  margin-top: 25px;
}
@media screen and (min-width: 900px) {
  .entry-content.bl_article_content .bl_faq + .bl_faq {
    margin-top: 40px;
  }
}
.entry-content.bl_article_content .bl_faq .el_accordion_title {
  position: relative;
}
.entry-content.bl_article_content .bl_faq .el_accordion_title::before {
  content: "Q";
  position: absolute;
  color: var(--main-color);
  font-size: 28px;
  top: -6px;
  left: 16px;
}
@media screen and (min-width: 768px) {
  .entry-content.bl_article_content .bl_faq .el_accordion_title::before {
    font-size: 35px;
    top: -10px;
    left: 30px;
  }
}
.entry-content.bl_article_content .bl_faq button.el_accordion_button {
  --ac-icon-right: 15px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  padding-inline: 50px 45px;
  padding-block: 13px 10px;
  color: var(--text-color);
  align-items: center;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  text-align: left;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .entry-content.bl_article_content .bl_faq button.el_accordion_button {
    --ac-icon-right: 30px;
    padding-inline: 78px 70px;
    font-size: 20px;
    border-radius: 20px;
  }
}
.entry-content.bl_article_content .bl_faq button.el_accordion_button span {
  font-size: 0.7em;
  opacity: 0.7;
  text-align: left;
}
.entry-content.bl_article_content .bl_faq button.el_accordion_button::before, .entry-content.bl_article_content .bl_faq button.el_accordion_button::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  background-color: #191919;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .entry-content.bl_article_content .bl_faq button.el_accordion_button::before, .entry-content.bl_article_content .bl_faq button.el_accordion_button::after {
    top: 59%;
  }
}
.entry-content.bl_article_content .bl_faq button.el_accordion_button::before {
  right: var(--ac-icon-right);
  width: 20px;
  height: 2px;
}
.entry-content.bl_article_content .bl_faq button.el_accordion_button::after {
  transition: all var(--transition);
  width: 2px;
  height: 20px;
  right: 39px;
  right: calc(var(--ac-icon-right) + 9px);
  transform: translateY(-50%) rotate(90deg);
}
.entry-content.bl_article_content .bl_faq .is_close .el_accordion_button::after {
  transform: translateY(-50%);
}
.entry-content.bl_article_content .bl_faq .is_close + .el_accordion_body {
  grid-template-rows: 0fr;
}
.entry-content.bl_article_content .bl_faq .is_close + .el_accordion_body .el_accordion_inner {
  margin-top: 0 !important;
}
.entry-content.bl_article_content .bl_faq .el_accordion_body {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows var(--transition);
}
.entry-content.bl_article_content .bl_faq .el_accordion_inner {
  overflow: hidden;
  position: relative;
  padding-inline: 50px 20px;
  margin-top: 0;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .entry-content.bl_article_content .bl_faq .el_accordion_inner {
    font-size: 16px;
    padding-inline: 80px 40px;
    margin-top: 10px;
  }
}
.entry-content.bl_article_content .bl_faq .el_accordion_inner::before {
  content: "A";
  position: absolute;
  color: var(--main-color);
  font-size: 28px;
  top: 4px;
  left: 16px;
}
@media screen and (min-width: 900px) {
  .entry-content.bl_article_content .bl_faq .el_accordion_inner::before {
    font-size: 35px;
    top: -5px;
    left: 30px;
  }
}
.entry-content.bl_article_content .bl_faq .el_accordion_inner > * {
  margin-block: 15px 20px;
}
.entry-content.bl_article_content .bl_faq .el_accordion_inner a {
  --sub-color: var(--main-color);
}

.el_interviewArchive_cat {
  display: flex;
  gap: 10px;
}
.el_interviewArchive_cat span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
  background-color: #fff;
  border: 1px solid;
  height: 36px;
  padding-inline: 34px;
  padding-block: 8px;
  transition: all var(--transition-time) ease;
}

.bl_archive_filter {
  display: grid;
  grid-template-columns: 1fr;
  margin-inline: auto;
  max-width: var(--content-width);
  margin-bottom: 60px;
}
.bl_archive_filter h2 {
  font-size: 20px;
}
@media screen and (min-width: 900px) {
  .bl_archive_filter h2 {
    font-size: 28px;
  }
}
.bl_archive_filter ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .bl_archive_filter ul {
    gap: 20px;
  }
}
.bl_archive_filter ul li a {
  border: 1px solid var(--main-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-weight: 400;
  line-height: 1;
  transition: all var(--transition-time);
  padding: 10px 17px;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .bl_archive_filter ul li a {
    font-size: 18px;
  }
}
@media screen and (min-width: 900px) {
  .bl_archive_filter ul li a {
    padding: 10px 34px;
  }
}
@media (hover: hover) {
  .bl_archive_filter ul li a:hover {
    background-color: #f7faef;
    color: var(--main-color);
  }
}
.bl_archive_filter ul li a.tax_current {
  background-color: #f7faef;
  color: var(--main-color);
}

.bl_pagination {
  margin-top: 60px;
}

.bl_pagination_link {
  display: flex;
  justify-content: center;
  /* gap: 10px; */
}
.bl_pagination_link > * {
  padding-inline: 5px;
}
@media screen and (min-width: 768px) {
  .bl_pagination_link > * {
    padding-inline: 20px;
  }
}
.bl_pagination_link > div.no-page {
  opacity: 0.3;
}

.bl_pagination_numbers {
  display: flex;
  justify-content: center;
}

.page-numbers:not(.dots) {
  color: var(--text-color);
  margin-inline: 5px;
  padding: 0px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  line-height: 1;
  transition: all 0.2s ease;
  border-radius: 100px;
  border: 1px solid transparent;
}
@media screen and (min-width: 768px) {
  .page-numbers:not(.dots) {
    margin-inline: 10px;
  }
}
.page-numbers:not(.dots):not(.no-page):hover, .page-numbers:not(.dots).current {
  color: #fff;
  background-color: var(--main-color);
}

.page-numbers.dots {
  display: flex;
  align-items: center;
}

.bl_pagenation_next,
.bl_pagination_prev {
  padding-inline: 10px;
  display: flex;
  align-items: center;
}
.bl_pagenation_next a,
.bl_pagination_prev a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  color: #707070;
  border-radius: 100%;
  transition: all var(--transition-time);
}
.bl_pagenation_next a > .el_arrow__left,
.bl_pagination_prev a > .el_arrow__left {
  margin-left: -5px;
}
@media (hover: hover) {
  .bl_pagenation_next a:hover,
  .bl_pagination_prev a:hover {
    background-color: var(--main-color);
    color: #fff;
  }
}

.single .bl_article_content {
  padding-top: 30px;
  line-height: 1.68;
  margin-inline: auto;
}
@media screen and (min-width:540px) {
  .single .bl_article_content {
    padding-inline: 5%;
  }
}
@media screen and (min-width: 900px) {
  .single .bl_article_content {
    padding-block: 50px;
  }
}
@media screen and (min-width: 1561px) {
  .single .bl_article_content {
    padding-inline: 0;
  }
}
.single .bl_article_content h1 {
  font-size: 28px;
  line-height: 1.4;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content h1 {
    font-size: 40px;
  }
}
.single .bl_article_content span.el_post_category {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}
.single .bl_article_content span.el_post_category > span {
  display: grid;
  place-content: center;
  white-space: nowrap;
  color: var(--main-color);
  border: 1px solid;
  height: 30px;
  padding-inline: 20px;
  border-radius: 8px;
}
.single .bl_article_content > * + * {
  margin-top: 35px;
}
.single .bl_article_content > * + h2,
.single .bl_article_content > *:not(h2):not(h4) + h3,
.single .bl_article_content > *:not(h2):not(h3) + h4 {
  margin-top: 50px;
}
.single .bl_article_content h2.wp-block-heading {
  position: relative;
  font-weight: var(--fw-medium);
  font-size: 20px;
  color: var(--main-color);
  letter-spacing: 0.04em;
  justify-content: flex-start;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content h2.wp-block-heading {
    font-size: 26px;
  }
}
.single .bl_article_content h3.wp-block-heading {
  background-color: var(--main-color);
  color: #fff;
  padding-inline: 28px;
  padding-block: 17px 22px;
  border-radius: 6px;
  font-weight: var(--fw-bold);
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  position: relative;
}
.single .bl_article_content h3.wp-block-heading::after {
  content: "";
  width: 98%;
  height: 1px;
  background-color: #baad8d;
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .single .bl_article_content h3.wp-block-heading {
    font-size: 20px;
  }
}
.single .bl_article_content h4.wp-block-heading {
  font-weight: var(--fw-medium);
  font-size: 16px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 15px;
  border-bottom: 1px solid var(--main-color);
}
@media screen and (min-width: 900px) {
  .single .bl_article_content h4.wp-block-heading {
    font-size: 18px;
  }
}
.single .bl_article_content h5.wp-block-heading {
  font-size: 16px;
  font-weight: var(--fw-bold);
}
.single .bl_article_content a {
  color: var(--main-color);
  transition: opacity var(--transition-time);
}
@media (hover: hover) {
  .single .bl_article_content a:hover {
    opacity: 0.7;
  }
}
.single .bl_article_content ul {
  padding-left: 20px;
}
.single .bl_article_content ul li {
  list-style: disc;
}
.single .bl_article_content ol {
  padding-left: 20px;
}
.single .bl_article_content ol li {
  list-style: decimal;
}
.single .bl_article_content table {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
}
.single .bl_article_content table th,
.single .bl_article_content 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: 900px) {
  .single .bl_article_content table th,
  .single .bl_article_content table td {
    padding-block: 20px;
    padding-inline: 24px;
  }
}
.single .bl_article_content table th {
  position: relative;
  font-weight: var(--fw-medium);
}
.single .bl_article_content table td {
  font-weight: var(--fw-medium);
}
.single .bl_article_content .wp-block-group {
  padding-block: 30px;
  padding-inline: 25px;
}
@media screen and (min-width: 900px) {
  .single .bl_article_content .wp-block-group {
    padding-block: 50px;
    padding-inline: 40px;
  }
}
.single .bl_article_content .wp-block-group .wp-block-group__inner-container > * + * {
  margin-top: 35px;
}

.bl_postNav {
  max-width: var(--content-width);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  margin-inline: auto;
  padding-block: 30px 70px;
  flex-wrap: wrap;
  padding-inline: var(--site-inline-padding);
}
@media screen and (min-width: 900px) {
  .bl_postNav {
    padding-block: 30px 100px;
  }
}
.bl_postNav .el_moreLink a {
  max-width: none;
  width: 270px;
}

.bl_postNav_previous,
.bl_postNav_next {
  color: #808080;
}
.bl_postNav_previous > div,
.bl_postNav_previous > a,
.bl_postNav_next > div,
.bl_postNav_next > a {
  display: flex;
  line-height: 1.4;
  color: #fff;
  border-radius: 8px;
  padding-block: 5px;
  padding-inline: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
.bl_postNav_previous a,
.bl_postNav_next a {
  background-color: var(--main-color);
  transition: opacity var(--transition-time);
}
.bl_postNav_previous a .el_postNav_icon::before,
.bl_postNav_next a .el_postNav_icon::before {
  filter: brightness(1);
}
@media (hover: hover) {
  .bl_postNav_previous a:hover,
  .bl_postNav_next a:hover {
    opacity: 0.7;
  }
}
.bl_postNav_previous div,
.bl_postNav_next div {
  background-color: #ccc;
}

@media screen and (max-width: 899px) {
  .bl_postNav_previous {
    width: 48%;
    order: 1;
  }
}

@media screen and (max-width: 899px) {
  .bl_postNav_next {
    width: 48%;
    order: 2;
    display: flex;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 899px) {
  .bl_postNav_home {
    width: 100%;
    order: 3;
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
}
.bl_postNav_home a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
  color: #fff;
  padding: 5px 20px;
  border-radius: 8px;
  transition: opacity var(--transition-time) ease;
}
@media (hover: hover) {
  .bl_postNav_home a:hover {
    opacity: 0.7;
  }
}

.el_postNav_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.el_postNav_icon:before {
  content: "";
  background-image: url(../images/common/icon-arrow-w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  filter: brightness(1);
}
.el_postNav_icon.is_next {
  margin-left: 10px;
  margin-right: -5px;
}
.el_postNav_icon.is_prev {
  transform: rotate(180deg);
  margin-right: 10px;
  margin-left: -5px;
}
.no-page .el_postNav_icon::before {
  opacity: 0;
}

.ly_archive_index {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--site-inline-padding);
}

.bl_archive_art {
  --transition-time: 0.6s;
}
.bl_archive_art a {
  border-bottom: 1px solid var(--border-color);
  transition: color var(--transition);
  padding-block: 15px;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (min-width: 900px) {
  .bl_archive_art a {
    flex-direction: row;
    gap: 100px;
  }
}
@media (hover: hover) {
  .bl_archive_art a:hover {
    color: var(--main-color);
  }
}
.bl_archive_art .el_archive_meta {
  display: flex;
  gap: 10px;
}
@media screen and (min-width: 900px) {
  .bl_archive_art .el_archive_meta {
    gap: 20px;
  }
}
.bl_archive_art .el_archive_meta .el_entry_date {
  font-weight: var(--fw-regular);
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .bl_archive_art .el_archive_meta .el_entry_date {
    font-size: 16px;
  }
}
.bl_archive_art .el_archive_meta .el_post_category {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (min-width: 900px) {
  .bl_archive_art .el_archive_meta .el_post_category {
    margin-top: -3px;
  }
}
.bl_archive_art .el_archive_meta .el_post_category span {
  display: flex;
  border: 1px solid;
  color: var(--main-color);
  align-items: center;
  justify-content: center;
  font-size: 12px;
  height: 23px;
  min-width: 80px;
  font-weight: var(--fw-regular);
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding: 4px 4px;
  border-radius: 8px;
}
@media screen and (min-width: 900px) {
  .bl_archive_art .el_archive_meta .el_post_category span {
    font-size: 14px;
    height: 28px;
    min-width: 95px;
  }
}

.bl_archive_content {
  margin-top: 10px;
  transition: opacity var(--transition-time) ease;
}
.bl_archive_content .el_archive_title {
  margin-top: 4px;
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: var(--main-color);
}
@media screen and (min-width: 900px) {
  .bl_archive_content .el_archive_title {
    font-size: 26px;
  }
}
.bl_archive_content .bl_archive_date {
  font-size: 16px;
  font-weight: var(--fw-medium);
  margin-top: 10px;
}

.single-locations h1.el_article_title {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-weight: var(--fw-bold);
  color: var(--main-color);
  text-align: center;
  position: relative;
  font-size: 26px;
  line-height: 1.36;
}
@media screen and (min-width: 900px) {
  .single-locations h1.el_article_title {
    font-size: 26px;
    letter-spacing: 0.04em;
  }
}
.single-locations h1.el_article_title:before {
  content: "";
  background-image: url(../images/common/icon-home.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 7px;
}
.single-locations .bl_mediaText.is_location figure img {
  border-radius: 0 50px 0 50px;
}
.single-locations .bl_mediaText.is_location figure figcaption {
  display: flex;
  flex-direction: column;
  align-items: center;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-top: 15px;
  gap: 8px;
}
.single-locations .bl_mediaText.is_location figure .el_caption_name {
  color: var(--main-color);
  font-size: 21px;
  font-weight: var(--fw-bold);
}
.single-locations .bl_mediaText.is_location .bl_box_green h2 {
  color: var(--main-color);
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 1.75;
  display: flex;
  gap: 5px;
}
.single-locations .bl_mediaText.is_location .bl_box_green h2::before {
  content: "◆";
  margin-right: 3px;
  font-size: 0.7em;
  margin-top: 6px;
}
.single-locations .bl_mediaText.is_location .bl_box_green > * + * {
  margin-top: 15px;
}
.single-locations .bl_mediaText.is_location .bl_box_green > * + h2 {
  margin-top: 35px;
}
.single-locations table.is_pastel_green {
  max-width: 670px;
}
.single-locations table.is_pastel_green th {
  width: 27%;
  padding-inline: 20px !important;
  font-size: 16px !important;
  vertical-align: middle;
}
.single-locations table.is_pastel_green td {
  padding: 22px;
}

.single-recruit h1.el_article_title {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-weight: var(--fw-bold);
  color: var(--main-color);
  text-align: center;
  position: relative;
  font-size: 26px;
  line-height: 1.36;
}
@media screen and (min-width: 900px) {
  .single-recruit h1.el_article_title {
    font-size: 26px;
    letter-spacing: 0.04em;
  }
}
.single-recruit h1.el_article_title:before {
  content: "";
  background-image: url(../images/common/icon-home.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 7px;
}

.is-style-has-arrow div.wp-block-button__link,
.is-style-has-arrow a.wp-block-button__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  width: 100%;
  color: #fff;
  background-color: var(--main-color);
  letter-spacing: 0.04em;
  line-height: 1.125;
  border-radius: 8px;
  font-size: 16px;
  font-weight: var(--fw-medium);
  height: 45px;
  padding-inline: 26px 15px;
  padding-block: 10px;
  transition: all var(--transition-time) ease;
  white-space: nowrap;
  position: relative;
}
.is-style-has-arrow div.wp-block-button__link::after,
.is-style-has-arrow a.wp-block-button__link::after {
  content: "";
  background-image: url(../images/common/icon-arrow-w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  transition: all var(--transition);
  flex-shrink: 0;
}
@media (hover: hover) {
  .is-style-has-arrow div.wp-block-button__link:hover,
  .is-style-has-arrow a.wp-block-button__link:hover {
    opacity: 0.7;
  }
}

.loading {
  width: calc(var(--vw) * 100);
  height: 100vh;
  transition: all 1s;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}
.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loadingInner {
  color: #fff;
  font-size: 19px;
}
.loadingInner > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}
@media screen and (min-width: 900px) {
  .loadingInner > div {
    flex-direction: row;
    gap: 0;
  }
}
.loadingInner img {
  width: 112px;
  filter: brightness(0) invert(100%);
  margin-right: 10px;
}
@media screen and (min-width: 900px) {
  .loadingInner {
    font-size: 24px;
  }
}

.loading-animation {
  width: calc(var(--vw) * 100);
  height: 100vh;
  transition: all 1s;
  background: linear-gradient(65deg, #0372ff, #0372b4, #00b5dd);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}
.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}

.is-slidein,
.is-fadein,
.is-fadeInLeft,
.is-fadeInRight,
.is-fadeUp {
  opacity: 0;
}

.is-fadeInLeft,
.is-fadeInRight,
.is-fadeUp {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.is-swipe-left,
.is-swipe-right {
  animation-duration: 4s;
  animation-fill-mode: forwards;
}

.is-animated.is-fadeUp {
  animation-name: fadeUpAnime;
}
.is-animated.is-fadeInLeft {
  animation-name: fadeLeftAnime;
}
.is-animated.is-fadeInRight {
  animation-name: fadeRightAnime;
}
.is-animated.is-fadein {
  opacity: 0;
  animation: fadein 1.5s ease forwards;
}
.is-animated.is-slidein {
  opacity: 0;
  animation: slidein 1s ease-out forwards;
}
.is-animated.is-swipe-right, .is-animated.is-swipe-left {
  animation: swipeInAnime 1.4s linear forwards;
}

@keyframes swipeInAnime {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes swipeOutAnime {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-600px);
  }
  to {
    opacity: 1;
    transform: translateX(50%);
  }
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(600px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%);
  }
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slidein {
  0% {
    opacity: 0;
    transform: translateX(-300px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}/*# sourceMappingURL=style.css.map */