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

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;
  width: 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;
  filter: brightness(105%);
}
@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;
}

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

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

@media screen and (max-width: 1024px) {
  .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: 1024px) {
  .is-pc {
    display: none !important;
  }
}

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

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

.pd_tb_m {
  padding-top: 40px;
  padding-bottom: 120px;
}
@media screen and (min-width: 1025px) {
  .pd_tb_m {
    padding-top: 70px;
    padding-bottom: 200px;
  }
}

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

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

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

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

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

.mt_m {
  margin-top: 40px !important;
}
@media screen and (min-width: 1025px) {
  .mt_m {
    margin-top: 80px !important;
  }
}

.ly_siteHeader {
  width: 100%;
  z-index: 15;
  background: #fff;
  transition: background-color 0.2s ease;
  position: fixed;
  padding-inline: 20px;
}

.ly_siteHeader_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.5s ease;
  height: var(--header-height);
  width: 100%;
  max-width: 1728px;
  margin-inline: auto;
  position: relative;
  gap: 15px;
  margin-inline: auto;
}
.ly_siteHeader_content .header_logo_image {
  width: 64px;
  margin-right: 11px;
}
@media screen and (min-width: 1025px) {
  .ly_siteHeader_content .header_logo_image {
    width: 94px;
  }
}

.ly_siteHeader_nav {
  display: flex;
  gap: 10px;
  height: 100%;
}
.ly_header_nav {
  margin-inline: auto;
  max-width: var(--site-width);
}
@media screen and (min-width: 1025px) {
  .ly_header_nav {
    display: flex;
    justify-content: space-around;
  }
}

.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: calc(var(--header-height));
}
.ly_fixed_header.admin-bar .ly_siteHeader {
  top: 32px;
}

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

.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: hidden;
}

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

.ly_pageHeader {
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: var(--site-inline-padding);
  padding-block: 20px;
  color: var(--main-color);
  min-height: 100px;
  background-image: url(../images/page/page-header.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 1025px) {
  .ly_pageHeader {
    height: 300px;
  }
}
.page-roofing .ly_pageHeader {
  background-image: url(../images/page/page-header-roofing.webp);
}
.page-water-leakage .ly_pageHeader {
  background-image: url(../images/page/page-header-water-leakage.webp);
}
.page-exterior-wall .ly_pageHeader {
  background-image: url(../images/page/page-header-exterior-wall.webp);
}
.page-crack-repair .ly_pageHeader {
  background-image: url(../images/page/page-header-crack-repair.webp);
}
.page-corrosion-repair .ly_pageHeader {
  background-image: url(../images/page/page-header-corrosion-repair.webp);
}
.page-anti-rust .ly_pageHeader {
  background-image: url(../images/page/page-header-anti-rust.webp);
}

.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;
  background-color: #2e2e2e;
  padding-block: 20px 50px;
}
@media screen and (min-width: 1025px) {
  .ly_siteFooter {
    padding-block: 100px 50px;
  }
}
.ly_siteFooter .bl_siteFooter {
  padding-inline: var(--site-inline-padding);
  max-width: var(--content-width);
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .ly_siteFooter .bl_siteFooter {
    align-items: flex-start;
  }
}

.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: 100vw;
  margin-left: calc(50% - 50vw);
}

.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: 1025px) {
  .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:520px) {
  .el_btn_lineArrow {
    padding: 21px;
  }
}
@media screen and (min-width: 1025px) {
  .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:520px) {
  .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: center;
  gap: 9px;
  width: 100%;
  color: #fff;
  background-color: var(--main-color);
  letter-spacing: 0.1em;
  line-height: 1.4;
  border-radius: 100px;
  font-size: 14px;
  font-weight: var(--fw-regular);
  height: 50px;
  padding-inline: 12px 15px;
  padding-block: 15px;
  transition: all var(--transition-time) ease;
  white-space: nowrap;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .el_linkButton {
    font-size: 16px;
    height: 60px;
  }
}
.el_linkButton::after {
  content: "";
  background-image: url(../images/button-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 48px;
  height: 9px;
  position: absolute;
  right: 25px;
  transition: all var(--transition);
}
@media (hover: hover) {
  .el_linkButton:hover {
    opacity: 1;
    filter: brightness(1.2);
  }
  .el_linkButton:hover::after {
    transform: scaleX(1.1);
    transform-origin: left;
  }
}

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

.el_siteHeader_logo a {
  display: flex;
  position: relative;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .el_siteHeader_logo a {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-top: 7px;
  }
}
.el_siteHeader_logo a span {
  white-space: nowrap;
  color: var(--main-color);
  font-size: clamp(11px, -5.184px + 1.58vw, 22px);
}

@media screen and (max-width: 1024px) {
  .ly_siteHeader_nav {
    visibility: hidden;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100%;
    z-index: 0;
    background-color: #fff;
    justify-content: center;
    padding-top: var(--header-height);
    overflow-y: auto;
    overflow-x: hidden;
    padding-inline: 20px;
    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;
  }
  .bl_siteHeader_nav li {
    font-size: 18px;
    letter-spacing: 0.06em;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .bl_siteHeader_nav li a {
    padding-block: 10px;
    padding-inline: 10px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    color: var(--main-color);
  }
  .bl_siteHeader_nav li a .global_menu-description {
    font-size: 10px;
    letter-spacing: 0.1em;
    margin-top: 0;
    color: var(--sub-color);
    display: block;
    line-height: 1;
  }
  .bl_siteHeader_nav li .sub-menu {
    width: 100%;
    display: none;
    padding-left: 10px;
    padding-top: 0;
    margin-bottom: 10px;
  }
  .bl_siteHeader_nav li .sub-menu li a {
    padding-block: 5px;
    width: 100%;
  }
  .bl_siteHeader_nav li figure {
    display: none;
  }
  .bl_siteHeader_nav .el_header_button a {
    background: linear-gradient(-45deg, rgb(255, 215, 1) 0%, rgb(255, 134, 13) 70.76%);
    color: #fff;
    border-radius: 100px;
    max-width: 330px;
    width: 100%;
    height: auto;
    font-size: 20px;
    min-height: 62px;
    padding-inline: 1em;
    border: 1px solid #ffbf00;
    padding-block: 10px 11px;
    box-shadow: 2px 5px 5px 0px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
    position: relative;
  }
  .bl_siteHeader_nav .el_header_button a::after {
    content: "";
    background-image: url(../images/common/button-arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 30px;
    height: auto;
    aspect-ratio: 1/1;
    position: absolute;
    right: 9px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    background-color: transparent;
  }
}
@media screen and (min-width: 1025px) {
  .bl_siteHeader_nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    min-height: 50px;
    gap: 27px;
  }
  .bl_siteHeader_nav li:hover > .sub-menu {
    display: block;
  }
  .bl_siteHeader_nav li.mega_menu {
    position: initial;
    max-width: 220px;
    max-width: clamp(125px, -79.37px + 19.958vw, 220px);
  }
  .bl_siteHeader_nav li.mega_menu::before {
    content: "";
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: calc((100% - 100vw) / 2);
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 5;
    pointer-events: none;
  }
  .bl_siteHeader_nav li.mega_menu:hover::before {
    visibility: visible;
    opacity: 0.3;
  }
  .bl_siteHeader_nav li.mega_menu:hover > a {
    padding-block: 40px;
  }
  .bl_siteHeader_nav li.mega_menu:hover > .sub-menu {
    display: grid;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu {
    max-width: 1300px;
    width: 66vw;
    grid-template-columns: repeat(3, 32%);
    -moz-column-gap: clamp(10px, -19.942px + 2.924vw, 20px);
         column-gap: clamp(10px, -19.942px + 2.924vw, 20px);
    row-gap: 15px;
    left: 50%;
    transform: translateX(-50%);
    min-width: auto;
    padding-inline: clamp(30px, -68.628px + 7.22vw, 70px);
    padding-top: clamp(25px, -36.643px + 4.513vw, 50px);
    padding-bottom: clamp(15px, -21.986px + 2.708vw, 30px);
    border-radius: 30px;
    top: -10px;
    z-index: 10;
    padding-left: clamp(200px, -15.126px + 21.008vw, 300px);
    padding-right: 40px;
    position: relative;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu::before {
    content: "問題別\aソリューション";
    white-space: pre-line;
    font-size: 28px;
    font-size: clamp(20px, 2.79px + 1.681vw, 28px);
    font-weight: var(--fw-bold);
    color: var(--main-color);
    position: absolute;
    top: 1em;
    left: 20px;
    line-height: 1.3;
    padding-left: 15px;
    border-width: 6px;
    border-style: none none none solid;
    -o-border-image: linear-gradient(0deg, #13bcaf 0%, #00ff8d 100%);
       border-image: linear-gradient(0deg, #13bcaf 0%, #00ff8d 100%);
    border-image-slice: 1;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li figure {
    overflow: hidden;
    border-radius: 10px;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li figure a {
    padding: 0;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li figure img {
    transition: all var(--transition);
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li > a {
    padding-inline: 0 7px;
    font-size: clamp(13px, 7.012px + 0.585vw, 15px);
    padding-block: 5px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    transition: color var(--transition);
    white-space: normal;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1025px) and (min-width: 1367px) {
  .bl_siteHeader_nav li.mega_menu > .sub-menu li > a {
    font-size: clamp(15px, 7.584px + 0.542vw, 18px);
  }
}
@media screen and (min-width: 1025px) {
  .bl_siteHeader_nav li.mega_menu > .sub-menu li > a::after {
    flex-shrink: 0;
    content: "";
    border: 1px solid var(--main-color);
    border-radius: 100%;
    --mega-menu-icon: 20px;
    content: "";
    background-image: url(../images/common/button-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: var(--mega-menu-icon);
    height: var(--mega-menu-icon);
  }
}
@media screen and (min-width: 1025px) and (min-width: 1367px) {
  .bl_siteHeader_nav li.mega_menu > .sub-menu li > a::after {
    border-width: 2px;
    --mega-menu-icon: 28px;
  }
}
@media screen and (min-width: 1025px) {
  .bl_siteHeader_nav li.mega_menu > .sub-menu li:hover > a {
    color: var(--main-color);
    opacity: 0.7;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li:hover figure img {
    transform: scale(1.1);
  }
  .bl_siteHeader_nav li.mega_menu.menu_company > .sub-menu::before {
    content: "会社情報";
  }
  .bl_siteHeader_nav a {
    transition: color 0.5s ease;
  }
  .bl_siteHeader_nav li.current-menu-item > a {
    color: var(--main-color);
    font-weight: 700;
  }
  .bl_siteHeader_nav > li {
    width: auto;
    position: relative;
    font-size: var(--menu-fsz);
    letter-spacing: 0.06em;
    height: 100%;
  }
  .bl_siteHeader_nav > li > a {
    color: var(--main-color);
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding-block: 13px 10px;
    padding-inline: clamp(2px, -49.882px + 4.118vw, 16px);
    line-height: 1.2;
    white-space: nowrap;
    position: relative;
    transition: opacity var(--transition-time);
    font-size: clamp(13px, 4.111px + 0.868vw, 18px);
    font-weight: var(--fw-bold);
  }
  .bl_siteHeader_nav > li > a .global_menu-description {
    font-size: 10px;
    letter-spacing: 0.1em;
    margin-top: 4px;
    color: var(--sub-color);
    font-family: "Roboto Condensed", sans-serif;
    font-weight: var(--fw-bold);
  }
  .bl_siteHeader_nav > li > a::after {
    content: "";
    height: 3px;
    width: 42px;
    border-radius: 3px;
    background-color: #dbdbdb;
    display: block;
    margin-top: 12px;
    transition: background-color var(--transition-time);
  }
}
@media screen and (min-width: 1025px) and (hover: hover) {
  .bl_siteHeader_nav > li > a:hover {
    opacity: 0.7;
  }
  .bl_siteHeader_nav > li > a:hover::after {
    background-color: var(--text-color);
  }
}
@media screen and (min-width: 1025px) {
  .tax-case_cat .bl_siteHeader_nav > li.menu-item-object-case_studies > a::after, .single-case_studies .bl_siteHeader_nav > li.menu-item-object-case_studies > a::after {
    background-color: var(--text-color);
  }
  .tax-news_cat .bl_siteHeader_nav > li.menu-item-object-news > a::after, .single-news .bl_siteHeader_nav > li.menu-item-object-news > a::after {
    background-color: var(--text-color);
  }
  .bl_siteHeader_nav > li.current-menu-parent > a::after, .bl_siteHeader_nav > li.current-menu-item > a::after {
    background-color: var(--text-color);
  }
  .bl_siteHeader_nav > li.el_header_button {
    display: flex;
    align-items: center;
  }
  .bl_siteHeader_nav > li.el_header_button a {
    background: linear-gradient(-45deg, rgb(255, 215, 1) 0%, rgb(255, 134, 13) 70.76%);
    color: #fff;
    border-radius: 100px;
    max-width: 330px;
    width: 100%;
    height: auto;
    font-size: 16px;
    min-height: 45px;
    padding-inline: 1.3em 2.3em;
    border: 2px solid #ffbf00;
    padding-block: 10px 11px;
    font-weight: var(--fw-black);
    box-shadow: 2px 5px 5px 0px rgba(0, 0, 0, 0.2);
    transition: filter var(--transition-time);
  }
}
@media screen and (min-width: 1025px) and (min-width: 1367px) {
  .bl_siteHeader_nav > li.el_header_button a {
    min-height: 62px;
    padding-inline: 1em;
    font-size: 20px;
    width: 330px;
  }
}
@media screen and (min-width: 1025px) {
  .bl_siteHeader_nav > li.el_header_button a::after {
    background-image: url(../images/common/button-arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
    aspect-ratio: 1/1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    background-color: transparent;
    width: 25px;
    right: 7px;
    transition: filter var(--transition-time);
  }
}
@media screen and (min-width: 1025px) and (min-width: 1367px) {
  .bl_siteHeader_nav > li.el_header_button a::after {
    width: 34px;
    right: 13px;
  }
}
@media screen and (min-width: 1025px) {
  .bl_siteHeader_nav > li.el_header_button a:hover {
    opacity: 1;
    filter: brightness(1.15);
  }
  .bl_siteHeader_nav > li.el_header_button a:hover::after {
    filter: brightness(0.867);
  }
  .bl_siteHeader_nav > li.el_header_button a:active {
    transform: translateY(2px);
    box-shadow: 2px 3px 5px 0px rgba(0, 0, 0, 0.2);
  }
  .bl_siteHeader_nav .sub-menu {
    display: none;
    position: absolute;
    background-color: var(--global-submenu-bg, #fff);
    min-width: 100%;
    border-radius: 10px;
    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;
  }
}

.el_siteHeader_mobile {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .el_siteHeader_mobile {
    display: none;
  }
}
.el_siteHeader_mobile .el_linkButton {
  padding-left: 30px;
}
.el_siteHeader_mobile .el_linkButton::before {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  width: 38px;
  height: 38px;
  position: absolute;
  left: 25px;
}

/* スライドメニューボタン */
.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: auto;
  width: 54px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  /*ボタン内側*/
}
@media screen and (min-width: 1025px) {
  .bl_menuToggleButton {
    display: none;
  }
}
.is_open .bl_menuToggleButton {
  background-color: transparent;
}
.bl_menuToggleButton .openbtn1 {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  width: 30px;
  height: 21px;
}
.bl_menuToggleButton .openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  height: 1px;
  background: #fff;
  width: 100%;
}
.bl_menuToggleButton .openbtn1 span:nth-of-type(1) {
  top: 0;
}
.bl_menuToggleButton .openbtn1 span:nth-of-type(2) {
  top: 10px;
}
.bl_menuToggleButton .openbtn1 span:nth-of-type(3) {
  top: 20px;
}
.bl_menuToggleButton.is_open .openbtn1 span {
  background: var(--text-color);
}
.bl_menuToggleButton.is_open .openbtn1 span:nth-of-type(1) {
  transform: translateY(10px) 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(-10px) rotate(45deg);
}

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

.global-menu-toggle {
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .global-menu-toggle {
    display: none;
  }
}
.global-menu-toggle:before {
  content: "";
  border-style: solid solid none none;
  border-width: 1px;
  display: block;
  width: 15px;
  height: 15px;
  transform: translateY(15px) rotate(135deg);
  transform-origin: center;
  transition: transform var(--transition-time) ease;
}
.global-menu-toggle.is-open::before {
  transform: translateY(24px) rotate(315deg);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 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: 1025px) {
  .bl_breadcrumb {
    font-size: 12px;
  }
}
.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 {
  color: #fff;
  font-weight: var(--fw-bold);
  font-size: 25px;
  line-height: 1.3;
}
@media screen and (min-width: 1025px) {
  .bl_page_title {
    font-size: 60px;
  }
}
.bl_page_title span {
  white-space: nowrap;
}

.page .bl_article_content {
  font-weight: var(--fw-regular);
}
.page .bl_article_content p {
  letter-spacing: 0.06em;
  line-height: 2.125;
}
.page .bl_article_content p a {
  color: var(--main-color);
  transition: opacity var(--transition-time) ease;
}
@media (hover: hover) {
  .page .bl_article_content p a:hover {
    opacity: 0.7;
  }
}
.page .bl_article_content h2 {
  color: var(--main-color);
  text-align: left;
  position: relative;
  font-size: 24px;
  font-weight: var(--fw-bold);
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content h2 {
    font-size: 32px;
    letter-spacing: 0.16em;
    line-height: 1.35;
  }
}
.page .bl_article_content h2.lp_heading {
  color: var(--main-color);
  text-align: left;
  position: relative;
  font-size: 22px;
  font-weight: var(--fw-bold);
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content h2.lp_heading {
    font-size: 32px;
    letter-spacing: 0.16em;
    line-height: 1.35;
  }
}
.page .bl_article_content h2.lp_heading .el_heading_sub {
  display: flex;
  font-size: 14px;
  letter-spacing: 0.1em;
  align-items: center;
  gap: 7px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content h2.lp_heading .el_heading_sub {
    font-size: 20px;
    gap: 10px;
  }
}
.page .bl_article_content h2.lp_heading .el_heading_sub:before {
  content: "";
  width: 18px;
  height: 0;
  border-bottom: 1px solid;
  flex-shrink: 0;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content h2.lp_heading .el_heading_sub:before {
    width: 21px;
  }
}
.page .bl_article_content h2.h2_vline {
  color: var(--main-color);
  font-size: clamp(20px, 15.663px + 1.205vw, 28px);
  padding-block: 0.4em;
  font-weight: var(--fw-black);
  line-height: 1.4;
  padding-left: 21px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content h2.h2_vline {
    font-size: 30px;
  }
}
.page .bl_article_content h2.h2_vline::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  background: linear-gradient(45deg, rgb(19, 188, 175) 29.24%, rgb(0, 255, 141) 100%);
}
.page .bl_article_content h3 {
  font-optical-sizing: auto;
  font-weight: var(--fw-medium);
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content h3 {
    font-size: 24px;
  }
}
.page .bl_article_content h4 {
  font-size: 18px;
  line-height: 1.5;
}
.page .bl_article_content table {
  width: 100%;
}
.page .bl_article_content table th,
.page .bl_article_content table td {
  padding-block: 20px;
  padding-inline: 8px;
  border-bottom: 1px solid #d8d8d8;
  letter-spacing: 0.06em;
  font-size: 15px;
  line-height: 1.4;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content table th,
  .page .bl_article_content table td {
    padding-inline: 24px;
  }
}
.page .bl_article_content table th {
  position: relative;
  font-weight: var(--fw-medium);
  color: var(--main-color);
  white-space: nowrap;
}
.page .bl_article_content table td {
  font-weight: var(--fw-medium);
}
.page .bl_article_content table td dl {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .page .bl_article_content table td dl {
    flex-direction: column;
  }
}
.page .bl_article_content table td dl dt {
  flex-shrink: 0;
}
.page .bl_article_content table td dl + dl {
  margin-top: 20px;
}
.page .bl_article_content section {
  max-width: 1240px;
  margin-inline: auto;
}
.page .bl_article_content section.full-width {
  max-width: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.page .bl_article_content section > * + * {
  margin-top: 30px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section > * + * {
    margin-top: 40px;
  }
}
.page .bl_article_content section > .is_align_left + *,
.page .bl_article_content section > .is_align_right + *,
.page .bl_article_content section > h3 + *,
.page .bl_article_content section > h2 + * {
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section > .is_align_left + *,
  .page .bl_article_content section > .is_align_right + *,
  .page .bl_article_content section > h3 + *,
  .page .bl_article_content section > h2 + * {
    margin-top: 30px;
  }
}
.page .bl_article_content section > * + h2 {
  margin-top: 60px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section > * + h2 {
    margin-top: 80px;
  }
}
.page .bl_article_content section > * + h3 {
  margin-top: 40px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section > * + h3 {
    margin-top: 60px;
  }
}
.page .bl_article_content .is_style_disc {
  padding-left: 1.3em;
}
.page .bl_article_content .is_style_disc li {
  list-style: disc;
}
.page .bl_article_content .bl_mediaText.is_about_fkk {
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .page .bl_article_content .bl_mediaText.is_about_fkk .el_mediaText_image {
    display: flex;
  }
  .page .bl_article_content .bl_mediaText.is_about_fkk .el_mediaText_image figcaption {
    font-size: 12px;
  }
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content .bl_mediaText.is_about_fkk {
    grid-template-columns: 1fr 379px;
    gap: 140px;
  }
  .page .bl_article_content .bl_mediaText.is_about_fkk .el_mediaText_image {
    grid-column: 2/3;
  }
  .page .bl_article_content .bl_mediaText.is_about_fkk .el_mediaText_content {
    grid-column: 1/2;
    grid-row: 1;
  }
}
.page .bl_article_content figcaption {
  line-height: 1;
  font-size: 16px;
  text-align: right;
}
.page .bl_article_content .el_contentBox {
  background-color: #f2f5f6;
  padding-block: 30px;
  padding-inline: 25px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content .el_contentBox {
    padding-block: 40px;
    padding-inline: 60px;
  }
}
.page .bl_article_content .el_contentBox > * + * {
  margin-top: 20px;
}
.page .bl_article_content .bl_columns.is_flex {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content .bl_columns.is_flex {
    flex-direction: row;
    gap: 70px;
    justify-content: center;
  }
}
.page .bl_article_content .bl_columns.is_flex .el_column figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.page .bl_article_content .bl_columns.is_flex .el_column figure figcaption {
  width: 100%;
  text-align: right;
}
.page .bl_article_content .bl_comapnyMap {
  --article-mt: 80px;
}
.page .bl_article_content .bl_comapnyMap iframe {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1000/680;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content .bl_comapnyMap iframe {
    aspect-ratio: 1000/480;
  }
}
.page .bl_article_content .el_mediaText_content > * + * {
  margin-top: 20px;
}

.page section.bl_value_about {
  padding-block: 20px 40px;
}
@media screen and (min-width: 1025px) {
  .page section.bl_value_about {
    padding-block: 50px 80px;
  }
}
.page section.bl_value_about h2.bl_value_mainCopy {
  font-weight: var(--fw-black);
  font-size: clamp(20px, 11.867px + 2.259vw, 35px);
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--text-color);
}
@media screen and (min-width: 1025px) {
  .page section.bl_value_about h2.bl_value_mainCopy {
    font-size: 42px;
  }
}
.page section.bl_value_about h2.bl_value_mainCopy span {
  color: var(--main-color);
}
.page section.bl_value_about h2.bl_value_mainCopy + p {
  margin-top: clamp(20px, 14.578px + 1.506vw, 30px);
  font-size: clamp(16px, 13.831px + 0.602vw, 20px);
  line-height: 2;
  letter-spacing: 0;
}
@media screen and (min-width: 1025px) {
  .page section.bl_value_about h2.bl_value_mainCopy + p {
    margin-top: 40px;
    font-size: 20px;
  }
}
.page section.bl_value_about * + h2.h2_vline {
  margin-top: clamp(30px, 13.735px + 4.518vw, 60px);
}
@media screen and (min-width: 1025px) {
  .page section.bl_value_about * + h2.h2_vline {
    margin-top: 70px;
  }
}
.page section.bl_value_about * + ul.bl_card {
  margin-top: 20px;
}
.page section.bl_value_about * + ul.bl_card .bl_card_inner {
  margin-top: 15px;
}
.page section.bl_value_about * + ul.bl_card h3.el_card_title {
  letter-spacing: 0;
  font-size: 23px;
  font-weight: var(--fw-black);
  line-height: 1.3;
}
@media screen and (min-width:520px) {
  .page section.bl_value_about * + ul.bl_card h3.el_card_title {
    font-size: clamp(17px, 9.778px + 1.389vw, 24px);
  }
}
@media screen and (min-width: 1025px) {
  .page section.bl_value_about * + ul.bl_card h3.el_card_title {
    font-size: 26px;
    font-size: clamp(20px, 1.965px + 1.76vw, 26px);
  }
}
.page section.bl_value_about * + ul.bl_card p.el_card_text {
  letter-spacing: 0.01em;
  margin-top: 15px;
  line-height: 1.75;
}

section.bl_value_difference {
  background-color: var(--main-color);
  color: #fff;
  padding-top: 48px !important;
}
section.bl_value_difference h2.h2_vline {
  color: #fff !important;
}
section.bl_value_difference h2.h2_vline::before {
  background: linear-gradient(45deg, rgb(255, 255, 255) 29.24%, rgb(0, 255, 141) 100%) !important;
}
section.bl_value_difference h2.h2_vline + ul.bl_card.is_2col {
  margin-top: 30px;
}
section.bl_value_difference h2.why_copy {
  color: #fff !important;
  font-size: clamp(21px, 1.397px + 3.77vw, 40px);
  text-align: center;
  letter-spacing: 0;
  line-height: 1.5;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
section.bl_value_difference h2.why_copy .el_why_mark {
  position: absolute;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(20px, 1.429px + 3.571vw, 38px);
  line-height: 1;
  letter-spacing: 0;
  width: 3.31em;
  height: 3.31em;
  top: -1.655em;
  left: -1.655em;
  border-radius: 100%;
  border: clamp(2px, -4.19px + 1.19vw, 8px) solid var(--main-color);
  background-color: #ffff00;
  color: var(--main-color);
  font-weight: var(--fw-black);
  transform: rotate(-10deg);
}
section.bl_value_difference h2.why_copy + p {
  letter-spacing: 0;
  text-align: left;
  line-height: 2;
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  section.bl_value_difference h2.why_copy + p {
    margin-top: 40px;
    text-align: center;
  }
}
section.bl_value_difference h2.why_copy + p + ul.bl_card {
  margin-top: 40px;
}
section.bl_value_difference ul.bl_card.is_2col {
  grid-template-columns: 1fr;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  section.bl_value_difference ul.bl_card.is_2col {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
section.bl_value_difference ul.bl_card.is_2col li {
  background-color: #fff;
  color: var(--text-color);
  border-radius: 6px;
  padding-block: clamp(22px, 15.81px + 1.19vw, 28px);
  padding-inline: clamp(20px, -11.967px + 4.098vw, 30px);
}
@media screen and (min-width: 1025px) {
  section.bl_value_difference ul.bl_card.is_2col li {
    padding-inline: clamp(30px, -47.848px + 7.602vw, 56px);
  }
}
section.bl_value_difference ul.bl_card.is_2col li h3 {
  font-size: clamp(20px, 9.683px + 1.984vw, 30px);
  font-weight: var(--fw-black);
  text-align: center;
  line-height: 1;
}
section.bl_value_difference ul.bl_card.is_2col li h3 + figure {
  margin-top: 20px;
}
section.bl_value_difference ul.bl_card.is_2col li p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  section.bl_value_difference ul.bl_card.is_2col li p {
    margin-top: 20px;
    font-size: 18px;
  }
}
section.bl_value_difference ul.bl_card.is_2col li:last-child {
  color: var(--main-color);
}
section.bl_value_difference .el_value_copy {
  text-align: center;
  font-weight: var(--fw-black);
  font-size: clamp(18px, 6.072px + 3.313vw, 40px);
  letter-spacing: 0;
  margin-top: 47px;
  line-height: 1.5;
}
section.bl_value_difference .el_value_subcopy {
  text-align: center;
  line-height: 2;
  margin-top: 27px;
}
section.bl_value_difference .bl_value_example {
  background: #fff;
  border-radius: 6px;
  margin-top: 50px;
  padding-block: 31px 40px;
  padding-inline: clamp(20px, 4.524px + 2.976vw, 35px);
}
section.bl_value_difference .el_value_example_heading {
  color: var(--main-color);
  font-size: clamp(22px, 17.873px + 0.794vw, 26px);
  font-weight: var(--fw-black);
  letter-spacing: 0.05em;
}
section.bl_value_difference .bl_value_examle_images {
  margin-top: 35px;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 1025px) {
  section.bl_value_difference .bl_value_examle_images {
    grid-template-columns: 51% 44%;
    gap: 20px;
  }
}
section.bl_value_difference .bl_value_examle_images figure {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 15px;
}
section.bl_value_difference .bl_value_examle_images figcaption {
  color: var(--text-color);
  font-size: clamp(15px, 11.905px + 0.595vw, 18px);
  letter-spacing: 0;
  line-height: 1.4;
  margin-top: 2px;
  text-align: left;
}
@media screen and (min-width: 1025px) {
  section.bl_value_difference .bl_value_examle_images figcaption {
    min-height: 4.2em;
  }
}
@media screen and (min-width: 1367px) {
  section.bl_value_difference .bl_value_examle_images figcaption {
    min-height: auto;
  }
}

.page section.bl_value_features {
  padding-block: 20px 40px;
}
@media screen and (min-width: 1025px) {
  .page section.bl_value_features {
    padding-block: 50px 80px;
  }
}
.page section.bl_value_features h2.bl_value_mainCopy {
  font-weight: var(--fw-black);
  text-align: center;
  font-size: clamp(20px, 11.867px + 2.259vw, 35px);
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--text-color);
}
@media screen and (min-width: 1025px) {
  .page section.bl_value_features h2.bl_value_mainCopy {
    font-size: 40px;
  }
}
.page section.bl_value_features h2.bl_value_mainCopy span {
  color: var(--main-color);
}
.page section.bl_value_features h2.bl_value_mainCopy + p {
  margin-top: clamp(20px, 14.578px + 1.506vw, 30px);
  font-size: clamp(16px, 13.831px + 0.602vw, 20px);
  line-height: 2;
  letter-spacing: 0;
}
@media screen and (min-width: 1025px) {
  .page section.bl_value_features h2.bl_value_mainCopy + p {
    margin-top: 40px;
    font-size: 20px;
  }
}
.page section.bl_value_features * + h2.h2_vline {
  margin-top: clamp(30px, 13.735px + 4.518vw, 60px);
}
@media screen and (min-width: 1025px) {
  .page section.bl_value_features * + h2.h2_vline {
    margin-top: 70px;
  }
}
.page section.bl_value_features * + ul.bl_card {
  margin-top: 30px;
}
.page section.bl_value_features * + ul.bl_card .bl_card_inner {
  margin-top: 15px;
}
.page section.bl_value_features * + ul.bl_card h3.el_card_title {
  letter-spacing: 0;
  font-size: 23px;
  position: relative;
  padding-left: 19px;
  font-weight: var(--fw-black);
  line-height: 1.3;
}
@media screen and (min-width:520px) {
  .page section.bl_value_features * + ul.bl_card h3.el_card_title {
    font-size: clamp(17px, 9.778px + 1.389vw, 24px);
  }
}
@media screen and (min-width: 1025px) {
  .page section.bl_value_features * + ul.bl_card h3.el_card_title {
    font-size: 26px;
    font-size: clamp(20px, 1.965px + 1.76vw, 26px);
  }
}
.page section.bl_value_features * + ul.bl_card h3.el_card_title::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  background: linear-gradient(45deg, rgb(19, 188, 175) 29.24%, rgb(0, 255, 141) 100%);
}
.page section.bl_value_features * + ul.bl_card p.el_card_text {
  letter-spacing: 0.01em;
  margin-top: 15px;
  line-height: 1.75;
}

.page section.bl_solution_answer .bl_answer_mainCopy {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: var(--fw-black);
  font-size: clamp(25px, 9.524px + 2.976vw, 40px);
  letter-spacing: 0;
  line-height: 1;
}
.page section.bl_solution_answer .bl_answer_mainCopy span {
  margin-top: 9px;
  color: var(--text-color);
}
.page section.bl_solution_answer .bl_answer_mainCopy span.sub_item {
  background: var(--main-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 570px;
  height: 2.33333333em;
  font-size: clamp(19px, 7.651px + 2.183vw, 30px);
  border-radius: 99px;
}
.page section.bl_solution_answer .bl_answer_mainCopy span.main_item {
  margin-top: 10px;
  font-size: clamp(45px, 19.206px + 4.96vw, 70px);
  font-weight: var(--fw-black);
  background: linear-gradient(45deg, rgb(19, 188, 175) 29.24%, rgb(0, 255, 141) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page section.bl_solution_answer figure.el_solution_image {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 40px;
}
.page section.bl_solution_answer .el_answer_copy {
  text-align: center;
  font-size: clamp(27px, 13.587px + 2.579vw, 40px);
  font-weight: var(--fw-black);
  letter-spacing: 0;
  line-height: 1.5;
  margin-top: 20px;
  color: var(--text-color);
}
.page section.bl_solution_answer .el_answer_copy span {
  color: var(--main-color);
  font-size: 1.5em;
  margin-left: 15px;
  line-height: 1;
  display: inline-block;
}

.page section.bl_solution_headCopy {
  padding-block: 22px 44px !important;
}
.page section.bl_solution_headCopy .bl_column_2col {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .page section.bl_solution_headCopy .bl_column_2col {
    flex-direction: row;
    gap: 20px;
  }
}
.page section.bl_solution_headCopy .bl_column_content {
  width: 100%;
  padding-block: 0 40px;
}
@media screen and (min-width: 1025px) {
  .page section.bl_solution_headCopy .bl_column_content {
    width: 50%;
    padding-block: 80px 0;
  }
}
.page section.bl_solution_headCopy .bl_column_content p {
  font-weight: var(--fw-black);
  font-size: clamp(18px, 9.746px + 1.587vw, 26px);
  letter-spacing: 0;
  line-height: 1.92;
}
@media screen and (min-width: 1025px) {
  .page section.bl_solution_headCopy .bl_column_content p {
    font-size: clamp(18px, 0.79px + 1.681vw, 26px);
  }
}
.page section.bl_solution_headCopy .bl_column_content p.el_intro_copy {
  line-height: 1.2;
  font-size: clamp(31px, 1.079px + 5.754vw, 60px);
  margin-top: clamp(30px, 19.683px + 1.984vw, 40px);
}
@media screen and (min-width: 1025px) {
  .page section.bl_solution_headCopy .bl_column_content p.el_intro_copy {
    font-size: clamp(31px, -31.387px + 6.092vw, 60px);
    margin-top: clamp(30px, -56.05px + 8.403vw, 70px);
  }
}
.page section.bl_solution_headCopy .bl_column_content p.el_intro_copy span {
  font-size: 1.41666667em;
  background: linear-gradient(45deg, rgb(19, 188, 175) 29.24%, rgb(0, 255, 141) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page section.bl_solution_headCopy ul.bl_column_image {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width:520px) {
  .page section.bl_solution_headCopy ul.bl_column_image {
    justify-content: center;
  }
}
@media screen and (min-width: 1025px) {
  .page section.bl_solution_headCopy ul.bl_column_image {
    width: 50%;
    flex-direction: column;
  }
}
.page section.bl_solution_headCopy ul.bl_column_image li {
  position: relative;
  width: 65%;
}
@media screen and (min-width:520px) {
  .page section.bl_solution_headCopy ul.bl_column_image li {
    max-width: 40%;
  }
}
@media screen and (min-width: 1025px) {
  .page section.bl_solution_headCopy ul.bl_column_image li {
    max-width: 384px;
    width: 24vw;
  }
}
@media screen and (min-width: 1500px) {
  .page section.bl_solution_headCopy ul.bl_column_image li {
    width: 25.6vw;
  }
}
.page section.bl_solution_headCopy ul.bl_column_image li figure {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  border-radius: 100%;
  overflow: hidden;
}
.page section.bl_solution_headCopy ul.bl_column_image li figcaption {
  position: absolute;
  text-align: center;
  letter-spacing: 0.05em;
  color: var(--text-color);
  font-weight: var(--fw-black);
  font-size: clamp(14px, 5.746px + 1.587vw, 22px);
  line-height: 1.36;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  width: 7.95em;
  height: 7.95em;
  padding: 0.5em;
  background-color: #fff;
  border-width: clamp(4px, 1.937px + 0.397vw, 6px);
  border-style: solid;
  border-color: var(--main-color);
}
@media screen and (min-width: 1025px) {
  .page section.bl_solution_headCopy ul.bl_column_image li figcaption {
    font-size: clamp(16px, 3.092px + 1.261vw, 22px);
  }
}
@media screen and (min-width: 1025px) {
  .page section.bl_solution_headCopy ul.bl_column_image li figcaption {
    border-width: clamp(4px, -0.303px + 0.42vw, 6px);
  }
}
.page section.bl_solution_headCopy ul.bl_column_image li:first-child figcaption {
  bottom: -10%;
  left: -5%;
}
@media screen and (min-width: 1025px) {
  .page section.bl_solution_headCopy ul.bl_column_image li:first-child figcaption {
    bottom: -10%;
    left: -10%;
  }
}
.page section.bl_solution_headCopy ul.bl_column_image li:last-child {
  margin-top: 0;
  margin-left: auto;
}
@media screen and (min-width:520px) {
  .page section.bl_solution_headCopy ul.bl_column_image li:last-child {
    margin-left: 30px;
  }
}
@media screen and (min-width: 1025px) {
  .page section.bl_solution_headCopy ul.bl_column_image li:last-child {
    margin-left: auto;
    margin-top: -100px;
  }
}
.page section.bl_solution_headCopy ul.bl_column_image li:last-child figcaption {
  right: -5%;
  top: -10%;
}
@media screen and (min-width: 1025px) {
  .page section.bl_solution_headCopy ul.bl_column_image li:last-child figcaption {
    right: -10%;
  }
}
.page section.bl_solution_headCopy.is_crack-repair ul.bl_column_image li figcaption {
  white-space: nowrap;
  aspect-ratio: 1/1;
  width: clamp(111px, 44.968px + 12.698vw, 175px);
  height: auto;
  font-size: clamp(13px, 5.778px + 1.389vw, 20px);
}
@media screen and (min-width: 1025px) {
  .page section.bl_solution_headCopy.is_crack-repair ul.bl_column_image li figcaption {
    font-size: clamp(13px, -6.361px + 1.891vw, 22px);
    width: clamp(127px, -19.286px + 14.286vw, 195px);
  }
}
.page section.bl_solution_headCopy.is_exterior-wall ul.bl_column_image li figcaption {
  white-space: nowrap;
  aspect-ratio: 1/1;
  width: clamp(111px, 44.968px + 12.698vw, 175px);
  height: auto;
  font-size: clamp(12px, 5.81px + 1.19vw, 18px);
}
@media screen and (min-width: 1025px) {
  .page section.bl_solution_headCopy.is_exterior-wall ul.bl_column_image li figcaption {
    font-size: clamp(12px, -5.21px + 1.681vw, 20px);
    width: clamp(127px, -19.286px + 14.286vw, 195px);
  }
}

.page-privacy-policy .ly_mainContent .bl_article_content,
.page-company .ly_mainContent .bl_article_content {
  max-width: var(--content-width);
}

.page-company .bl_company_table + h3 {
  margin-top: 2em;
}
.page-company .bl_comapnyMap {
  margin-top: 1.5em;
}

.bl_siteFooter {
  display: flex;
  flex-direction: column;
  padding-block: 22px 60px;
  gap: clamp(36px, 4.7vw, 90px);
  color: #fff;
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter {
    flex-direction: row;
    justify-content: space-between;
    padding-block: 0 100px;
  }
}
.bl_siteFooter a:not(.not_link) {
  color: #fff;
  transition: opacity var(--transition-time);
}
@media (hover: hover) {
  .bl_siteFooter a:not(.not_link):hover {
    opacity: 0.7;
  }
}

.el_siteFooter_logo {
  color: var(--main-color);
  font-size: clamp(13px, 5.059px + 2.206vw, 22px);
  letter-spacing: 0.06em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.el_siteFooter_logo img {
  width: clamp(100px, 62.059px + 10.539vw, 143px);
}

.bl_siteFooter_content {
  max-width: 280px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  height: 100%;
}
.bl_siteFooter_content .el_siteFooter_info {
  margin-top: 25px;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter_content .el_siteFooter_info {
    margin-top: 50px;
  }
}
.bl_siteFooter_content .el_siteFooter_info > * + * {
  margin-top: 0.9em;
}
.bl_siteFooter_content .el_siteFooter_title {
  font-size: 18px;
  white-space: nowrap;
}

.bl_siteFooter_nav {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  -moz-column-gap: 0;
       column-gap: 0;
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter_nav {
    flex-direction: row;
    max-width: none;
    margin-left: auto;
    margin-right: 0;
  }
}
.bl_siteFooter_nav .wp-block-columns {
  display: grid;
  gap: 15px;
}
@media screen and (max-width: 1024px) {
  .bl_siteFooter_nav .wp-block-columns {
    grid-template-columns: 50% 50%;
    grid-template-rows: auto auto;
    grid-template-areas: "menu1 menu3" "menu2 menu3";
  }
  .bl_siteFooter_nav .wp-block-columns .wp-block-column:nth-of-type(1) {
    grid-area: menu1;
  }
  .bl_siteFooter_nav .wp-block-columns .wp-block-column:nth-of-type(2) {
    grid-area: menu2;
  }
  .bl_siteFooter_nav .wp-block-columns .wp-block-column:nth-of-type(3) {
    grid-area: menu3;
  }
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter_nav .wp-block-columns {
    gap: 95px;
    gap: clamp(30px, -165.381px + 19.062vw, 95px);
    display: flex;
  }
}
.bl_siteFooter_nav .widget_nav_menu {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter_nav .widget_nav_menu {
    width: auto;
  }
}
.bl_siteFooter_nav .widget_nav_menu ul.menu {
  letter-spacing: 0.06em;
}
.bl_siteFooter_nav .widget_nav_menu ul.menu > li > a {
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter_nav .widget_nav_menu ul.menu > li > a {
    font-size: 16px;
  }
}
.bl_siteFooter_nav .widget_nav_menu ul.menu > li + li {
  margin-top: 15px;
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter_nav .widget_nav_menu ul.menu > li + li {
    margin-top: 27px;
  }
}
.bl_siteFooter_nav .widget_nav_menu ul.sub-menu {
  font-size: 12px;
  margin-top: 5px;
  padding-left: 0;
  white-space: nowrap;
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter_nav .widget_nav_menu ul.sub-menu {
    white-space: normal;
    font-size: 14px;
    margin-top: 20px;
    font-size: 14px;
  }
}
.bl_siteFooter_nav .widget_nav_menu ul.sub-menu > li > a {
  padding-block: 7px 7px;
  line-height: 1.2;
}

.bl_siteFooter_copyRight {
  font-size: 12px;
  text-align: center;
  width: 100%;
  color: #fff;
  background-color: #2e2e2e;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-inline: 15px;
}

.bl_cta {
  background: linear-gradient(45deg, rgb(19, 188, 175) 29.24%, rgb(0, 255, 141) 100%);
  color: #fff;
  width: 100%;
  display: grid;
  align-content: center;
  padding-inline: var(--site-inline-padding);
  overflow: hidden;
  position: relative;
  min-height: 278px;
  padding-block: 35px 30px;
}
@media screen and (min-width: 1025px) {
  .bl_cta {
    padding-block: 60px 50px;
  }
}
.bl_cta .bl_cta_innner {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
}
.bl_cta .bl_cta_innner .el_cta_heading {
  font-weight: var(--fw-black);
  font-size: 30px;
  line-height: 1.1;
}
@media screen and (min-width: 1025px) {
  .bl_cta .bl_cta_innner .el_cta_heading {
    font-size: 50px;
  }
}
.bl_cta .bl_cta_innner p {
  font-weight: var(--fw-black);
  margin-top: 10px;
  font-size: 16px;
}
@media screen and (min-width: 1025px) {
  .bl_cta .bl_cta_innner p {
    margin-top: 15px;
    font-size: 20px;
  }
}
.bl_cta .bl_cta_innner a.el_linkButton {
  background: linear-gradient(-45deg, rgb(255, 215, 1) 0%, rgb(255, 134, 13) 70.76%);
  color: #fff;
  border-radius: 100px;
  padding-inline: 1em;
  border: 3px solid #ffbf00;
  padding-block: 10px 11px;
  box-shadow: 0px 10px 9px 0px rgba(0, 0, 0, 0.4);
  margin-top: 20px;
  margin-inline: auto;
  position: relative;
  width: 100%;
  height: auto;
  font-weight: var(--fw-black);
  font-size: 20px;
  min-height: 80px;
  max-width: 330px;
  transition: filter var(--transition-time);
}
@media screen and (min-width: 1025px) {
  .bl_cta .bl_cta_innner a.el_linkButton {
    margin-top: 30px;
    font-size: 28px;
    max-width: 600px;
    min-height: 100px;
  }
}
.bl_cta .bl_cta_innner a.el_linkButton::after {
  content: "";
  background-image: url(../images/common/button-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 34px;
  height: auto;
  aspect-ratio: 1/1;
  position: absolute;
  right: 27px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  background-color: transparent;
  transition: filter var(--transition-time);
}
@media (hover: hover) {
  .bl_cta .bl_cta_innner a.el_linkButton:hover {
    filter: brightness(1.15);
  }
  .bl_cta .bl_cta_innner a.el_linkButton:hover::after {
    filter: brightness(0.867);
  }
}
.bl_cta .bl_cta_innner a.el_linkButton:active {
  transform: translateY(3px);
  box-shadow: 0px 7px 9px 0px rgba(0, 0, 0, 0.4);
}

.bl_mainVisual {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  background-image: url(../images/top/mv-bg-sp.webp);
  aspect-ratio: 375/510;
}
@media screen and (min-width:520px) {
  .bl_mainVisual {
    height: auto;
    width: 100%;
    max-width: 1920px;
    background-image: url(../images/top/mv-bg.webp);
    aspect-ratio: 1920/722;
  }
}

@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.el_mv_logo_1 {
  position: absolute;
  top: 60px;
  left: 20px;
  width: 333px;
}
@media screen and (min-width:520px) {
  .el_mv_logo_1 {
    top: clamp(21px, -1.698px + 4.365vw, 43px);
    left: clamp(33px, -2.079px + 6.746vw, 67px);
    width: clamp(282px, -9.984px + 56.151vw, 565px);
  }
}
@media screen and (min-width: 1025px) {
  .el_mv_logo_1 {
    top: clamp(43px, -1.665px + 4.358vw, 82px);
    left: clamp(67px, -1.715px + 6.704vw, 127px);
    width: clamp(565px, -9.916px + 56.089vw, 1067px);
  }
}

.el_mv_logo_2 {
  position: absolute;
  top: 210px;
  left: 10px;
  width: 302px;
}
@media screen and (min-width:520px) {
  .el_mv_logo_2 {
    top: auto;
    bottom: clamp(4px, -0.127px + 0.794vw, 8px);
    left: clamp(38px, -2.238px + 7.738vw, 77px);
    width: clamp(219px, -7.984px + 43.651vw, 439px);
  }
}
@media screen and (min-width: 1025px) {
  .el_mv_logo_2 {
    bottom: clamp(8px, -1.162px + 0.894vw, 16px);
    left: clamp(77px, -2.022px + 7.709vw, 146px);
    width: clamp(439px, -7.648px + 43.575vw, 829px);
  }
}

.page,
.home {
  --article-mt: 0;
}
.page .section_pb_tb,
.home .section_pb_tb {
  padding-block: 30px 30px;
}
@media screen and (min-width: 1025px) {
  .page .section_pb_tb,
  .home .section_pb_tb {
    padding-block: 90px 100px;
  }
}
.page .bl_article_content,
.home .bl_article_content {
  max-width: none;
  padding-inline: 0;
}
.page .bl_article_content .el_linkButton,
.home .bl_article_content .el_linkButton {
  margin-top: 34px;
  margin-inline: auto;
  max-width: 340px;
}
.page .bl_article_content section,
.home .bl_article_content section {
  max-width: none;
}
.page .bl_article_content .lp_heading,
.home .bl_article_content .lp_heading {
  height: 60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content .lp_heading,
  .home .bl_article_content .lp_heading {
    height: 160px;
  }
}
.page .bl_article_content .lp_heading span.el_heading_main,
.home .bl_article_content .lp_heading span.el_heading_main {
  color: #fff;
  font-weight: var(--fw-black);
  line-height: 1;
  font-size: 20px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content .lp_heading span.el_heading_main,
  .home .bl_article_content .lp_heading span.el_heading_main {
    font-size: 60px;
  }
}
.page .bl_article_content .lp_heading::after,
.home .bl_article_content .lp_heading::after {
  content: "";
  position: absolute;
  background-color: #fff;
  border-radius: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 2px;
  bottom: -5px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content .lp_heading::after,
  .home .bl_article_content .lp_heading::after {
    width: 42px;
    height: 3px;
    bottom: 18px;
  }
}
.page .bl_article_content .lp_heading + p,
.home .bl_article_content .lp_heading + p {
  text-align: center;
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.5;
  font-size: 16px;
  margin-top: 15px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content .lp_heading + p,
  .home .bl_article_content .lp_heading + p {
    font-size: 20px;
    line-height: 1.75;
    margin-top: 0;
  }
}

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

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

.no_news p {
  text-align: center;
  margin: 100px;
}

.bl_article_content ul.bl_card {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
@media screen and (min-width:520px) {
  .bl_article_content ul.bl_card {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media screen and (min-width: 1025px) {
  .bl_article_content ul.bl_card {
    grid-template-columns: repeat(3, 1fr);
    gap: 47px;
  }
}
.bl_article_content ul.bl_card a {
  display: block;
}
.bl_article_content .el_linkButton {
  background-color: var(--sub-color);
  color: #fff;
  border-radius: 100px;
  max-width: 340px;
  width: 100%;
  height: auto;
  font-weight: var(--fw-black);
  padding-inline: 1em;
  padding-block: 10px 11px;
  box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.2);
  position: relative;
  font-size: 16px;
  min-height: 40px;
  transition: filter var(--transition), box-shadow var(--transition);
}
@media screen and (min-width: 1025px) {
  .bl_article_content .el_linkButton {
    font-size: 22px;
    min-height: 60px;
  }
}
.bl_article_content .el_linkButton::after {
  content: "";
  position: absolute;
  background-image: url(../images/common/button-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
  height: auto;
  aspect-ratio: 1/1;
  width: 24px;
  right: 7px;
}
@media screen and (min-width: 1025px) {
  .bl_article_content .el_linkButton::after {
    width: 34px;
    right: 15px;
  }
}
@media (hover: hover) {
  .bl_article_content .el_linkButton:hover {
    filter: brightness(1.5);
  }
  .bl_article_content .el_linkButton:hover::after {
    filter: brightness(0.667);
  }
}
.bl_article_content .el_linkButton:active {
  opacity: 1;
  transform: translateY(2px);
  box-shadow: 0px 18px 18px 0px rgba(0, 0, 0, 0.2);
}

.home section.bl_topCopy {
  background-image: url(../images/top/bg-top-copy.webp);
  background-repeat: repeat;
  background-size: contain;
  height: auto;
  color: #fff;
  overflow: visible;
  position: relative;
  padding-block: 20px 168px;
}
@media screen and (min-width: 1025px) {
  .home section.bl_topCopy {
    padding-block: 57px 168px;
    height: 458px;
  }
}
@media screen and (max-width:521px) {
  .home section.bl_topCopy .bl_section_inner {
    --site-inline-padding: 10px;
  }
}
.home section.bl_topCopy h2.el_topCopy_heading {
  --main-color: #fff;
}
.home section.bl_topCopy h2.el_topCopy_heading span.el_heading_sub {
  display: block;
  font-weight: var(--fw-black);
  font-size: 20px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .home section.bl_topCopy h2.el_topCopy_heading span.el_heading_sub {
    font-size: 38px;
  }
}
.home section.bl_topCopy h2.el_topCopy_heading span.el_heading_main {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: var(--fw-black);
  font-size: 36px;
  text-align: center;
  margin-inline: auto;
  gap: 5px;
}
@media screen and (min-width: 1025px) {
  .home section.bl_topCopy h2.el_topCopy_heading span.el_heading_main {
    font-size: 76px;
    gap: 30px;
  }
}
.home section.bl_topCopy h2.el_topCopy_heading span.el_heading_main::before, .home section.bl_topCopy h2.el_topCopy_heading span.el_heading_main::after {
  content: "";
  flex-shrink: 0;
  width: 40px;
  aspect-ratio: 60/67.5;
  background-image: url(../images/top/top-h2-left.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 1025px) {
  .home section.bl_topCopy h2.el_topCopy_heading span.el_heading_main::before, .home section.bl_topCopy h2.el_topCopy_heading span.el_heading_main::after {
    width: 60px;
  }
}
.home section.bl_topCopy h2.el_topCopy_heading span.el_heading_main::after {
  background-image: url(../images/top/top-h2-right.svg);
}
.home section.bl_topCopy h2.el_topCopy_heading .is_color_green {
  background: linear-gradient(45deg, rgb(19, 188, 175) 29.24%, rgb(0, 255, 141) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home section.bl_topCopy .bl_top_slider_wrapper {
  position: relative;
  margin-top: 10px;
}
@media screen and (min-width: 1025px) {
  .home section.bl_topCopy .bl_top_slider_wrapper {
    margin-top: 30px;
  }
}
.home section.bl_topCopy .bl_top_slider_wrapper .bl_top_slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.home section.bl_topCopy .bl_top_slider_wrapper .bl_top_slider .swiper-wrapper {
  transition-timing-function: linear;
  padding-bottom: 20px;
}
.home section.bl_topCopy .bl_top_slider_wrapper .bl_top_slider .swiper-slide {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 10px 10px 10px 0px rgba(117, 117, 117, 0.3);
}
.home section.bl_topCopy .bl_top_slider_wrapper .bl_top_slider .swiper-slide figure.el_top_slider_figure {
  overflow: hidden;
}
.home section.bl_topCopy .bl_top_slider_wrapper .bl_top_slider .swiper-slide figure.el_top_slider_figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 500/250;
}
.home section.bl_topCopy .bl_top_slider_wrapper .bl_top_slider .swiper-slide .el_top_slider_caption {
  font-weight: var(--fw-black);
  font-size: 16px;
  margin-top: 15px;
  color: var(--text-color);
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .home section.bl_topCopy .bl_top_slider_wrapper .bl_top_slider .swiper-slide .el_top_slider_caption {
    font-size: clamp(20px, 13.44px + 0.64vw, 24px);
  }
}

.home section.bl_top_reason {
  background-color: var(--main-color);
  color: #fff;
  padding-top: 100px !important;
}
@media screen and (min-width: 1025px) {
  .home section.bl_top_reason {
    padding-top: 215px !important;
  }
}
.home section.bl_top_reason .lp_heading {
  background-image: url(../images/top/bg-reason-h2.svg);
}
.home section.bl_top_reason ul.bl_card {
  margin-top: 50px;
}
.home section.bl_top_reason ul.bl_card li {
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  box-shadow: 0px 30px 30px -20px rgba(0, 0, 0, 0.3);
}
.home section.bl_top_reason ul.bl_card li:before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  width: 53px;
  aspect-ratio: 1/1;
  z-index: 2;
  top: -10px;
  left: -13px;
}
@media screen and (min-width: 1025px) {
  .home section.bl_top_reason ul.bl_card li:before {
    width: 95px;
    top: -25px;
    left: -20px;
  }
}
.home section.bl_top_reason ul.bl_card li:first-child::before {
  background-image: url(../images/top/reason-index-1.svg);
}
.home section.bl_top_reason ul.bl_card li:nth-child(2)::before {
  background-image: url(../images/top/reason-index-2.svg);
}
.home section.bl_top_reason ul.bl_card li:last-child::before {
  background-image: url(../images/top/reason-index-3.svg);
}
.home section.bl_top_reason ul.bl_card li img {
  width: auto;
}
@media screen and (max-width: 1024px) {
  .home section.bl_top_reason ul.bl_card li img {
    aspect-ratio: 335/140;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
}
.home section.bl_top_reason ul.bl_card li h3 {
  font-weight: var(--fw-black);
  line-height: 1.18;
  position: relative;
  padding-left: 19px;
  color: var(--text-color);
  font-size: 18px;
}
@media screen and (min-width: 1025px) {
  .home section.bl_top_reason ul.bl_card li h3 {
    font-size: 34px;
  }
}
.home section.bl_top_reason ul.bl_card li h3::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(45deg, rgb(19, 188, 175) 29.24%, rgb(0, 255, 141) 100%);
}
.home section.bl_top_reason ul.bl_card li .bl_card_inner {
  color: var(--text-color);
  padding-block: 13px 20px;
  padding-inline: 20px;
}
@media screen and (min-width: 1025px) {
  .home section.bl_top_reason ul.bl_card li .bl_card_inner {
    padding-block: 23px 40px;
    padding-inline: 28px;
  }
}
.home section.bl_top_reason ul.bl_card li .el_card_text {
  margin-top: 13px;
  line-height: 1.57;
  font-size: 14px;
}
@media screen and (min-width: 1025px) {
  .home section.bl_top_reason ul.bl_card li .el_card_text {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.75;
  }
}
.home section.bl_top_reason ul.bl_card + .el_linkButton {
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .home section.bl_top_reason ul.bl_card + .el_linkButton {
    margin-top: 50px;
  }
}

section.bl_top_solution .lp_heading {
  background-image: url(../images/top/bg-solution-h2.svg);
}
section.bl_top_solution .lp_heading span.el_heading_main {
  color: var(--text-color) !important;
}
section.bl_top_solution .lp_heading::after {
  background-color: var(--main-color) !important;
}
section.bl_top_solution ul.bl_card {
  margin-top: 27px;
  gap: 10px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_solution ul.bl_card {
    margin-top: 50px;
    gap: 50px;
  }
}
section.bl_top_solution ul.bl_card li {
  border-radius: 10px;
  position: relative;
  box-shadow: 0px 30px 30px -20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
section.bl_top_solution ul.bl_card li .bl_card_inner {
  position: absolute;
  padding-block: 20px 10px;
  padding-inline: 15px;
  width: 100%;
  top: 0;
  left: 0;
}
@media screen and (min-width: 1025px) {
  section.bl_top_solution ul.bl_card li .bl_card_inner {
    padding-block: 0 10px;
    padding-inline: 28px;
    top: clamp(20px, -282.105px + 29.474vw, 160px);
    height: auto;
  }
}
section.bl_top_solution ul.bl_card li figure {
  overflow: hidden;
  border-radius: 10px;
}
section.bl_top_solution ul.bl_card li figure img {
  transition: transform var(--transition);
}
@media screen and (max-width: 1024px) {
  section.bl_top_solution ul.bl_card li figure img {
    aspect-ratio: 335/136;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
}
section.bl_top_solution ul.bl_card li h3 {
  font-weight: var(--fw-black);
  font-size: 18px;
  line-height: 1.36;
  position: relative;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_solution ul.bl_card li h3 {
    font-size: 22px;
  }
}
section.bl_top_solution ul.bl_card li h3::after {
  content: "";
  background-image: url(../images/common/button-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  aspect-ratio: 1/1;
  background-color: transparent;
  width: 24px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_solution ul.bl_card li h3::after {
    width: 34px;
  }
}
section.bl_top_solution ul.bl_card li .el_card_text {
  color: #ffffff;
  line-height: 1.54;
  letter-spacing: 0;
  margin-top: 10px;
  font-size: 13px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_solution ul.bl_card li .el_card_text {
    margin-top: 17px;
    font-size: 16px;
    line-height: 1.375;
  }
}
@media screen and (max-width: 1499px) {
  section.bl_top_solution ul.bl_card li .el_card_text br {
    display: none;
  }
}
@media (hover: hover) {
  section.bl_top_solution ul.bl_card li:hover img {
    transform: scale(1.05);
  }
}

.page section.bl_common_case,
.home section.bl_top_case {
  background-image: url(../images/top/bg-case.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  padding-bottom: 168px !important;
}
@media screen and (min-width: 1025px) {
  .page section.bl_common_case,
  .home section.bl_top_case {
    padding-bottom: 300px !important;
  }
}
.page section.bl_common_case .lp_heading,
.home section.bl_top_case .lp_heading {
  background-image: url(../images/top/bg-case-h2.svg);
}
.page section.bl_common_case .bl_caseStudies,
.home section.bl_top_case .bl_caseStudies {
  margin-top: 25px;
  padding-inline: 20px;
}
@media screen and (min-width: 1025px) {
  .page section.bl_common_case .bl_caseStudies,
  .home section.bl_top_case .bl_caseStudies {
    padding-inline: 0;
    margin-top: 20px;
  }
}
.page section.bl_common_case .bl_caseStudies .swiper-wrapper,
.home section.bl_top_case .bl_caseStudies .swiper-wrapper {
  align-items: stretch;
  padding-bottom: 40px;
}
.page section.bl_common_case .bl_caseStudies .swiper-slide,
.home section.bl_top_case .bl_caseStudies .swiper-slide {
  box-shadow: 0px 30px 30px -20px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}
.page section.bl_common_case .bl_caseStudies .swiper-slide a,
.home section.bl_top_case .bl_caseStudies .swiper-slide a {
  display: block;
}
.page section.bl_common_case .bl_caseStudies .swiper-slide a figure,
.home section.bl_top_case .bl_caseStudies .swiper-slide a figure {
  overflow: hidden;
}
.page section.bl_common_case .bl_caseStudies .swiper-slide a figure img,
.home section.bl_top_case .bl_caseStudies .swiper-slide a figure img {
  transition: transform var(--transition);
  aspect-ratio: 422/240;
  -o-object-fit: cover;
     object-fit: cover;
}
.page section.bl_common_case .bl_caseStudies .swiper-slide a .el_case_content,
.home section.bl_top_case .bl_caseStudies .swiper-slide a .el_case_content {
  position: relative;
  padding-block: 25px 20px;
  padding-inline: 20px;
  height: clamp(100px, 64.348px + 3.478vw, 120px);
}
.page section.bl_common_case .bl_caseStudies .swiper-slide a .el_case_content span.el_post_category,
.home section.bl_top_case .bl_caseStudies .swiper-slide a .el_case_content span.el_post_category {
  position: absolute;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}
.page section.bl_common_case .bl_caseStudies .swiper-slide a .el_case_content span.el_post_category span,
.home section.bl_top_case .bl_caseStudies .swiper-slide a .el_case_content span.el_post_category span {
  display: inline-flex;
  background-color: var(--main-color);
  color: #fff;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  letter-spacing: 0.06em;
  line-height: 1.625;
  min-width: 111px;
  min-height: 28px;
  font-size: clamp(16px, 8.87px + 0.696vw, 20px);
}
.page section.bl_common_case .bl_caseStudies .swiper-slide a .el_case_content .el_case_title,
.home section.bl_top_case .bl_caseStudies .swiper-slide a .el_case_content .el_case_title {
  font-weight: var(--fw-bold);
  line-height: 1.15;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: clamp(18px, 3.739px + 1.391vw, 26px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page section.bl_common_case .bl_caseStudies .swiper-button-next,
.page section.bl_common_case .bl_caseStudies .swiper-button-prev,
.home section.bl_top_case .bl_caseStudies .swiper-button-next,
.home section.bl_top_case .bl_caseStudies .swiper-button-prev {
  --swiper-navigation-size: 50px;
  --swiper-navigation-sides-offset: 7px;
  width: var(--swiper-navigation-size);
  transition: opacity var(--transition);
}
@media screen and (min-width: 1025px) {
  .page section.bl_common_case .bl_caseStudies .swiper-button-next,
  .page section.bl_common_case .bl_caseStudies .swiper-button-prev,
  .home section.bl_top_case .bl_caseStudies .swiper-button-next,
  .home section.bl_top_case .bl_caseStudies .swiper-button-prev {
    --swiper-navigation-size: 70px;
    --swiper-navigation-sides-offset: 9.6vw;
  }
}
@media (hover: hover) {
  .page section.bl_common_case .bl_caseStudies .swiper-button-next:hover,
  .page section.bl_common_case .bl_caseStudies .swiper-button-prev:hover,
  .home section.bl_top_case .bl_caseStudies .swiper-button-next:hover,
  .home section.bl_top_case .bl_caseStudies .swiper-button-prev:hover {
    opacity: 0.7;
  }
}
.page section.bl_common_case .bl_caseStudies .swiper-button-next:after,
.page section.bl_common_case .bl_caseStudies .swiper-button-prev:after,
.home section.bl_top_case .bl_caseStudies .swiper-button-next:after,
.home section.bl_top_case .bl_caseStudies .swiper-button-prev:after {
  content: "";
  background-image: url(../images/common/slider-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
}
@media screen and (min-width: 1025px) {
  .page section.bl_common_case .bl_caseStudies .swiper-button-next:after,
  .page section.bl_common_case .bl_caseStudies .swiper-button-prev:after,
  .home section.bl_top_case .bl_caseStudies .swiper-button-next:after,
  .home section.bl_top_case .bl_caseStudies .swiper-button-prev:after {
    width: 70px;
    height: 70px;
  }
}
.page section.bl_common_case .bl_caseStudies .swiper-button-prev:after,
.home section.bl_top_case .bl_caseStudies .swiper-button-prev:after {
  transform: rotate(180deg);
}
.page section.bl_common_case .el_linkButton,
.home section.bl_top_case .el_linkButton {
  margin-top: 2px;
}
@media screen and (min-width: 1025px) {
  .page section.bl_common_case .el_linkButton,
  .home section.bl_top_case .el_linkButton {
    margin-top: 30px;
  }
}

section.bl_topNews {
  background-image: url(../images/top/bg-news.webp);
  background-repeat: no-repeat;
  background-size: 100% 150px;
  background-position: center top;
  --article-mt: -150px;
}
@media screen and (min-width: 1025px) {
  section.bl_topNews {
    background-size: 100% 200px;
    --article-mt: -200px;
  }
}
section.bl_topNews .lp_heading {
  background-image: url(../images/top/bg-news-h2.svg);
  mix-blend-mode: multiply;
}
section.bl_topNews .lp_heading span.el_heading_main {
  color: var(--text-color) !important;
}
section.bl_topNews .lp_heading::after {
  background-color: var(--main-color) !important;
}
section.bl_topNews ul.bl_newsList {
  margin-top: 30px;
}
section.bl_topNews ul.bl_newsList li {
  border-bottom: 1px solid var(--border-color);
}
section.bl_topNews ul.bl_newsList li:first-child {
  border-top: 1px solid var(--border-color);
}
section.bl_topNews ul.bl_newsList li a {
  display: grid;
  padding-block: 20px;
  align-items: center;
  gap: 5px;
}
@media screen and (min-width: 1025px) {
  section.bl_topNews ul.bl_newsList li a {
    padding-block: 28px;
    grid-template-columns: auto 1fr;
    gap: 15px;
  }
}
section.bl_topNews ul.bl_newsList li .el_newsList_item_meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 1025px) {
  section.bl_topNews ul.bl_newsList li .el_newsList_item_meta {
    gap: 35px;
  }
}
section.bl_topNews ul.bl_newsList li .posted-on {
  font-weight: var(--fw-regular);
  letter-spacing: 0.06em;
  line-height: 1.625;
  white-space: nowrap;
  font-size: 12px;
}
@media screen and (min-width: 1025px) {
  section.bl_topNews ul.bl_newsList li .posted-on {
    font-size: 16px;
  }
}
section.bl_topNews ul.bl_newsList li .el_post_category {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
section.bl_topNews ul.bl_newsList li .el_post_category span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 3px;
  letter-spacing: 0.06em;
  line-height: 1;
  min-width: 90px;
  font-size: 12px;
}
@media screen and (min-width: 1025px) {
  section.bl_topNews ul.bl_newsList li .el_post_category span {
    font-size: 14px;
    min-width: 100px;
    line-height: 1.625;
  }
}
section.bl_topNews ul.bl_newsList li .el_newsTab_title {
  font-weight: var(--fw-regular);
  letter-spacing: 0.06em;
  line-height: 1.625;
  font-size: 14px;
}
@media screen and (min-width: 1025px) {
  section.bl_topNews ul.bl_newsList li .el_newsTab_title {
    font-size: 16px;
  }
}
section.bl_topNews ul.bl_newsList + .el_linkButton {
  margin-top: 25px;
}
@media screen and (min-width: 1025px) {
  section.bl_topNews ul.bl_newsList + .el_linkButton {
    margin-top: 57px;
  }
}

.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;
}

.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: 1025px) {
  .bl_contact_notice {
    padding: 40px 40px;
    text-align: center;
  }
}

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

p.el_contact_direction {
  --article-mt: 60px;
}
@media screen and (min-width: 1025px) {
  p.el_contact_direction {
    text-align: center;
  }
}

.wp-block-contact-form-7-contact-form-selector {
  --article-mt: 60px;
}

.wpcf7 {
  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: 1025px) {
  .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: 1025px) {
  .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: 1025px) {
  .wpcf7-form .el_formItem label.is_require::after {
    font-size: 14px;
  }
}
.en-US .wpcf7-form .el_formItem label.is_require::after {
  content: "Required";
}
.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: 1025px) {
  .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: 1025px) {
  .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: center;
  font-size: 24px;
  padding: 10px;
  border-radius: 100px;
  height: 70px;
  transition: opacity var(--transition);
  box-shadow: 0px 18px 10px -10px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 1025px) {
  .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-previous:active,
.wpcf7-form .wpcf7-submit:active {
  transform: translateY(2px);
  box-shadow: 0px 16px 10px -10px rgba(0, 0, 0, 0.2);
}
.wpcf7-form .wpcf7-submit {
  background: var(--sub-color);
  color: #fff;
}
@media (hover: hover) {
  .wpcf7-form .wpcf7-submit:hover {
    opacity: 0.7;
  }
}
.wpcf7-form .wpcf7-previous {
  border: 2px solid var(--sub-color);
  background-color: #fff;
  color: var(--sub-color);
  box-shadow: 0px 18px 10px -10px rgba(0, 0, 0, 0.2);
  transition: opacity var(--transition), background-color var(--transition), color var(--transition);
}
.wpcf7-form .wpcf7-previous:hover {
  background-color: var(--sub-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: 1025px) {
  .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 .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: 1025px) {
  .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: 1025px) {
  .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 {
  background-color: #f2f5f6;
  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: 1025px) {
  .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: 1025px) {
  .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 p.el_contact_direction {
  margin-block: 20px 40px;
}
.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;
}

section.bl_common_faq {
  background-image: url(../images/top/bg-news.webp);
  background-repeat: no-repeat;
  background-size: 100% 150px;
  background-position: center top;
  --article-mt: -150px;
}
@media screen and (min-width: 1025px) {
  section.bl_common_faq {
    background-size: 100% 200px;
    --article-mt: -200px;
  }
}
section.bl_common_faq .lp_heading {
  background-image: url(../images/page/bg-faq-h2.svg);
  mix-blend-mode: multiply;
}
section.bl_common_faq .lp_heading span.el_heading_main {
  color: var(--text-color) !important;
}
section.bl_common_faq .lp_heading::after {
  background-color: var(--main-color) !important;
}
section.bl_common_faq ul.bl_newsList {
  margin-top: 30px;
}
section.bl_common_faq ul.bl_newsList li {
  border-bottom: 1px solid var(--border-color);
}
section.bl_common_faq ul.bl_newsList li:first-child {
  border-top: 1px solid var(--border-color);
}
section.bl_common_faq ul.bl_newsList li a {
  display: grid;
  padding-block: 20px;
  align-items: center;
  gap: 5px;
}
@media screen and (min-width: 1025px) {
  section.bl_common_faq ul.bl_newsList li a {
    padding-block: 28px;
    grid-template-columns: auto 1fr;
    gap: 15px;
  }
}
section.bl_common_faq ul.bl_newsList li .el_newsList_item_meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 1025px) {
  section.bl_common_faq ul.bl_newsList li .el_newsList_item_meta {
    gap: 35px;
  }
}
section.bl_common_faq ul.bl_newsList li .posted-on {
  font-weight: var(--fw-regular);
  letter-spacing: 0.06em;
  line-height: 1.625;
  white-space: nowrap;
  font-size: 12px;
}
@media screen and (min-width: 1025px) {
  section.bl_common_faq ul.bl_newsList li .posted-on {
    font-size: 16px;
  }
}
section.bl_common_faq ul.bl_newsList li .el_post_category {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
section.bl_common_faq ul.bl_newsList li .el_post_category span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 3px;
  letter-spacing: 0.06em;
  line-height: 1;
  min-width: 90px;
  font-size: 12px;
}
@media screen and (min-width: 1025px) {
  section.bl_common_faq ul.bl_newsList li .el_post_category span {
    font-size: 14px;
    min-width: 100px;
    line-height: 1.625;
  }
}
section.bl_common_faq ul.bl_newsList li .el_newsTab_title {
  font-weight: var(--fw-regular);
  letter-spacing: 0.06em;
  line-height: 1.625;
  font-size: 14px;
}
@media screen and (min-width: 1025px) {
  section.bl_common_faq ul.bl_newsList li .el_newsTab_title {
    font-size: 16px;
  }
}
section.bl_common_faq ul.bl_newsList + .el_linkButton {
  margin-top: 25px;
}
@media screen and (min-width: 1025px) {
  section.bl_common_faq ul.bl_newsList + .el_linkButton {
    margin-top: 57px;
  }
}

.entry-content.bl_article_content .bl_faq {
  margin-top: 15px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  box-shadow: 0 30px 20px -20px rgba(117, 117, 117, 0.4);
  background-color: #fff;
}
@media screen and (min-width: 1025px) {
  .entry-content.bl_article_content .bl_faq {
    margin-top: 15px;
  }
}
.entry-content.bl_article_content .bl_faq + .bl_faq {
  margin-top: 17px;
}
@media screen and (min-width: 1025px) {
  .entry-content.bl_article_content .bl_faq + .bl_faq {
    margin-top: 17px;
  }
}
.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-weight: var(--fw-bold);
  font-size: 20px;
  top: 1em;
  left: 16px;
}
@media screen and (min-width: 768px) {
  .entry-content.bl_article_content .bl_faq .el_accordion_title::before {
    font-size: 20px;
    left: 25px;
  }
}
.entry-content.bl_article_content .bl_faq .el_accordion_title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 9px;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  background-color: var(--text-color);
  border-radius: 100%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .entry-content.bl_article_content .bl_faq .el_accordion_title::after {
    width: 39px;
    height: 39px;
    right: 20px;
  }
}
.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 60px;
  padding-block: 30px 30px;
  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: 55px 70px;
    font-size: 18px;
    border-radius: 10px;
  }
}
.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: var(--main-color);
  transform: translateY(-50%);
  z-index: 2;
}
@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: 50%;
  }
}
.entry-content.bl_article_content .bl_faq button.el_accordion_button::before {
  right: var(--ac-icon-right);
  width: 17px;
  height: 2px;
}
@media screen and (min-width: 768px) {
  .entry-content.bl_article_content .bl_faq button.el_accordion_button::before {
    width: 20px;
  }
}
.entry-content.bl_article_content .bl_faq button.el_accordion_button::after {
  transition: all var(--transition);
  right: 39px;
  width: 2px;
  height: 17px;
  right: calc(var(--ac-icon-right) + 8px);
  transform: translateY(-50%) rotate(90deg);
}
@media screen and (min-width: 768px) {
  .entry-content.bl_article_content .bl_faq button.el_accordion_button::after {
    height: 20px;
    right: calc(var(--ac-icon-right) + 9px);
  }
}
.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: 1025px) {
  .entry-content.bl_article_content .bl_faq .el_accordion_inner {
    font-size: 16px;
    padding-inline: 54px 40px;
    margin-top: 10px;
  }
}
.entry-content.bl_article_content .bl_faq .el_accordion_inner::before {
  content: "A.";
  position: absolute;
  color: var(--main-color);
  font-weight: var(--fw-bold);
  font-size: 20px;
  top: -5px;
  left: 16px;
}
@media screen and (min-width: 1025px) {
  .entry-content.bl_article_content .bl_faq .el_accordion_inner::before {
    font-size: 20px;
    top: -5px;
    left: 28px;
  }
}
.entry-content.bl_article_content .bl_faq .el_accordion_inner > * {
  margin-block: 0 20px;
  line-height: 1.75;
}
.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: 1025px) {
  .bl_archive_filter h2 {
    font-size: 28px;
  }
}
.bl_archive_filter ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  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);
  color: var(--main-color);
  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: 1025px) {
  .bl_archive_filter ul li a {
    padding: 10px 34px;
  }
}
@media (hover: hover) {
  .bl_archive_filter ul li a:hover {
    background-color: var(--main-color);
    color: #fff;
  }
}
.bl_archive_filter ul li a.tax_current {
  background-color: var(--main-color);
  color: #fff;
}

.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(--sub-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 {
  --content-width: 1200px;
  padding-top: 30px;
  line-height: 2.1875;
  margin-inline: auto;
}
@media screen and (min-width:520px) {
  .single .bl_article_content {
    padding-inline: 5%;
  }
}
@media screen and (min-width: 1025px) {
  .single .bl_article_content {
    padding-block: 50px;
  }
}
@media screen and (min-width: 1500px) {
  .single .bl_article_content {
    padding-inline: 0;
  }
}
.single .bl_article_content h1 {
  font-size: 28px;
  line-height: 1.4;
}
@media screen and (min-width: 1025px) {
  .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: 15px;
}
.single .bl_article_content span.el_post_category > span {
  display: grid;
  place-content: center;
  white-space: nowrap;
  background-color: var(--main-color);
  color: #fff;
  height: 30px;
  padding-inline: 20px;
}
.single .bl_article_content > * + * {
  margin-top: 25px;
}
@media screen and (min-width: 1025px) {
  .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: 40px;
}
@media screen and (min-width: 1025px) {
  .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-black);
  font-size: 22px;
  color: var(--main-color);
  letter-spacing: 0.05;
  line-height: 1.75;
  padding-left: 19px;
}
@media screen and (min-width: 1025px) {
  .single .bl_article_content h2.wp-block-heading {
    font-size: 30px;
  }
}
.single .bl_article_content h2.wp-block-heading::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(45deg, rgb(19, 188, 175) 29.24%, rgb(0, 255, 141) 100%);
}
.single .bl_article_content h3.wp-block-heading {
  color: var(--main-color);
  position: relative;
  font-weight: var(--fw-black);
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
@media screen and (min-width: 1025px) {
  .single .bl_article_content h3.wp-block-heading {
    font-size: 26px;
  }
}
.single .bl_article_content h4.wp-block-heading {
  font-weight: var(--fw-black);
  font-size: 18px;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .single .bl_article_content h4.wp-block-heading {
    font-size: 22px;
  }
}
.single .bl_article_content h5.wp-block-heading {
  font-size: 16px;
  font-weight: var(--fw-black);
}
.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 .wp-block-table table {
  width: 100%;
  margin-inline: auto;
  max-width: none;
}
.single .bl_article_content .wp-block-table table th,
.single .bl_article_content .wp-block-table table td {
  padding-block: 10px;
  padding-inline: 10px;
  border-color: #d8d8d8;
  letter-spacing: 0.06em;
  font-size: 15px;
  line-height: 1.4;
}
@media screen and (min-width: 1025px) {
  .single .bl_article_content .wp-block-table table th,
  .single .bl_article_content .wp-block-table table td {
    padding-block: 20px;
    padding-inline: 24px;
  }
}
.single .bl_article_content .wp-block-table table td:first-child,
.single .bl_article_content .wp-block-table table th {
  position: relative;
  font-weight: var(--fw-medium);
  background-color: var(--main-color);
  color: #fff;
  width: 30%;
}
@media screen and (min-width: 1025px) {
  .single .bl_article_content .wp-block-table table td:first-child,
  .single .bl_article_content .wp-block-table table th {
    width: 250px;
  }
}
.single .bl_article_content .wp-block-table table td {
  font-weight: var(--fw-medium);
}
.single .bl_article_content .wp-block-table.is-style-simple table td:first-child,
.single .bl_article_content .wp-block-table.is-style-simple table th {
  background-color: #fff;
  color: var(--text-color);
}
.single .bl_article_content .wp-block-table.is-style-simple table td,
.single .bl_article_content .wp-block-table.is-style-simple table th {
  border-left: none;
  border-right: none;
}
.single .bl_article_content .wp-block-table.is-style-simple table tr:first-child th,
.single .bl_article_content .wp-block-table.is-style-simple table tr:first-child td {
  border-top: none;
}
.single .bl_article_content .wp-block-table.is-style-simple table tr:last-child th,
.single .bl_article_content .wp-block-table.is-style-simple table tr:last-child td {
  border-bottom: none;
}
.single .bl_article_content .wp-block-group {
  padding-block: 30px;
  padding-inline: 25px;
}
@media screen and (min-width: 1025px) {
  .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: 24px;
}
.single .bl_article_content a.wp-block-button__link {
  color: #fff;
  background-color: var(--main-color);
}

.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: 1025px) {
  .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: 100px;
  padding: 5px 20px;
  width: -moz-fit-content;
  width: fit-content;
}
.bl_postNav_previous a,
.bl_postNav_next a {
  background-color: var(--sub-color);
  transition: filter var(--transition);
  box-shadow: 0px 15px 10px -5px rgba(0, 0, 0, 0.2);
}
@media (hover: hover) {
  .bl_postNav_previous a:hover,
  .bl_postNav_next a:hover {
    filter: brightness(1.8);
  }
  .bl_postNav_previous a:hover .el_postNav_icon::before,
  .bl_postNav_next a:hover .el_postNav_icon::before {
    filter: brightness(0.556);
  }
}
.bl_postNav_previous a:active,
.bl_postNav_next a:active {
  transform: translateY(2px);
  box-shadow: 0px 13px 10px -5px rgba(0, 0, 0, 0.2);
}
.bl_postNav_previous div,
.bl_postNav_next div {
  background-color: #ccc;
}
.bl_postNav_previous div .el_postNav_icon,
.bl_postNav_next div .el_postNav_icon {
  opacity: 0.5;
}

.bl_postNav_previous a {
  padding-inline: 8px 20px;
}
@media screen and (max-width: 1024px) {
  .bl_postNav_previous {
    width: 48%;
    order: 1;
  }
}

.bl_postNav_next a {
  padding-inline: 20px 8px;
}
@media screen and (max-width: 1024px) {
  .bl_postNav_next {
    width: 48%;
    order: 2;
    display: flex;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 1024px) {
  .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(--sub-color);
  color: #fff;
  padding: 5px 20px;
  border-radius: 100px;
  transition: filter var(--transition);
  box-shadow: 0px 15px 10px -5px rgba(0, 0, 0, 0.2);
}
@media (hover: hover) {
  .bl_postNav_home a:hover {
    filter: brightness(1.8);
  }
}
.bl_postNav_home a:active {
  transform: translateY(2px);
  box-shadow: 0px 13px 10px -5px rgba(0, 0, 0, 0.2);
}

.el_postNav_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.el_postNav_icon:before {
  content: "";
  background-image: url(../images/common/button-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  transition: filter var(--transition-time);
}
.el_postNav_icon.is_next {
  margin-left: 10px;
}
.el_postNav_icon.is_prev {
  transform: rotate(180deg);
  margin-right: 10px;
}

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

.ly_archiveIndex_articles {
  display: grid;
}
.ly_archiveIndex_articles.is_listStyle {
  grid-template-columns: 1fr;
}
.ly_archiveIndex_articles.is_listStyle .bl_archive_art {
  --transition-time: 0.6s;
  border-bottom: 1px solid var(--border-color);
  transition: background-color var(--transition-time) ease;
}
.ly_archiveIndex_articles.is_listStyle .bl_archive_art:first-child {
  border-top: 1px solid var(--border-color);
}
@media (hover: hover) {
  .ly_archiveIndex_articles.is_listStyle .bl_archive_art:hover {
    background-color: #f1f1f1;
  }
  .ly_archiveIndex_articles.is_listStyle .bl_archive_art:hover .el_interviewArchive_cat span {
    background-color: var(--main-color);
    color: #fff;
  }
  .ly_archiveIndex_articles.is_listStyle .bl_archive_art:hover .bl_archive_content {
    opacity: 0.7;
  }
}
.ly_archiveIndex_articles.is_listStyle .bl_archive_art .el_archive_content {
  display: flex;
  padding-block: 20px;
  gap: 10px;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .ly_archiveIndex_articles.is_listStyle .bl_archive_art .el_archive_content {
    gap: 20px;
  }
}
.ly_archiveIndex_articles.is_listStyle .bl_archive_art .el_archive_meta {
  display: flex;
  flex-direction: column;
  min-width: 136px;
  align-self: flex-start;
  gap: 5px;
}
@media screen and (min-width: 1025px) {
  .ly_archiveIndex_articles.is_listStyle .bl_archive_art .el_archive_meta {
    display: grid;
    grid-template-columns: 135px 1fr;
    width: 240px;
    align-items: flex-start;
  }
}
.ly_archiveIndex_articles.is_listStyle .bl_archive_art .el_archive_meta .el_entry_date {
  font-size: 14px;
  font-weight: var(--fw-regular);
  letter-spacing: 0.1em;
  line-height: 1;
}
.ly_archiveIndex_articles.is_listStyle .bl_archive_art .el_archive_meta .el_post_category {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.ly_archiveIndex_articles.is_listStyle .bl_archive_art .el_archive_meta .el_post_category span {
  display: flex;
  background-color: var(--main-color);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: var(--fw-regular);
  letter-spacing: 0.1em;
  white-space: nowrap;
  height: 28px;
  min-width: 95px;
  padding: 4px 4px;
}
.ly_archiveIndex_articles.is_listStyle .bl_archive_art .el_newsTab_title {
  line-height: 1.4;
}
.ly_archiveIndex_articles.is_listStyle .bl_archive_content {
  transition: opacity var(--transition-time) ease;
}
.ly_archiveIndex_articles.is_listStyle .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: 1025px) {
  .ly_archiveIndex_articles.is_listStyle .bl_archive_content .el_archive_title {
    font-size: 26px;
  }
}
.ly_archiveIndex_articles.is_listStyle .bl_archive_content .bl_archive_date {
  font-size: 16px;
  font-weight: var(--fw-medium);
  margin-top: 10px;
}
.ly_archiveIndex_articles.is_cardStyle {
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 1025px) {
  .ly_archiveIndex_articles.is_cardStyle {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 60px;
         column-gap: 60px;
    row-gap: 50px;
  }
}
.ly_archiveIndex_articles.is_cardStyle .bl_archive_art {
  --transition-time: 0.6s;
}
.ly_archiveIndex_articles.is_cardStyle .bl_archive_art figure {
  overflow: hidden;
}
.ly_archiveIndex_articles.is_cardStyle .bl_archive_art img {
  height: auto;
  transition: transform var(--transition-time) ease;
  width: 100%;
  aspect-ratio: 400/260;
  -o-object-fit: cover;
     object-fit: cover;
  filter: none;
}
@media (hover: hover) {
  .ly_archiveIndex_articles.is_cardStyle .bl_archive_art:hover img {
    transform: scale(1.05);
  }
  .ly_archiveIndex_articles.is_cardStyle .bl_archive_art:hover .el_interviewArchive_cat span {
    background-color: var(--main-color);
    color: #fff;
  }
  .ly_archiveIndex_articles.is_cardStyle .bl_archive_art:hover .bl_archive_content {
    opacity: 0.7;
  }
}
.ly_archiveIndex_articles.is_cardStyle .bl_archive_art .el_archive_content {
  margin-top: 10px;
}
.ly_archiveIndex_articles.is_cardStyle .bl_archive_art .el_archive_meta {
  display: flex;
  gap: 10px;
}
.ly_archiveIndex_articles.is_cardStyle .bl_archive_art .el_archive_meta .el_entry_date {
  font-size: 14px;
  font-weight: var(--fw-regular);
  letter-spacing: 0.1em;
  line-height: 1;
}
.ly_archiveIndex_articles.is_cardStyle .bl_archive_art .el_archive_meta .el_post_category {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.ly_archiveIndex_articles.is_cardStyle .bl_archive_art .el_archive_meta .el_post_category span {
  display: flex;
  background-color: var(--main-color);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: var(--fw-regular);
  letter-spacing: 0.1em;
  white-space: nowrap;
  height: 28px;
  min-width: 95px;
  padding: 4px 4px;
}
.ly_archiveIndex_articles.is_cardStyle .bl_archive_content {
  margin-top: 10px;
  transition: opacity var(--transition-time) ease;
}
.ly_archiveIndex_articles.is_cardStyle .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: 1025px) {
  .ly_archiveIndex_articles.is_cardStyle .bl_archive_content .el_archive_title {
    font-size: 26px;
  }
}
.ly_archiveIndex_articles.is_cardStyle .bl_archive_content .bl_archive_date {
  font-size: 16px;
  font-weight: var(--fw-medium);
  margin-top: 10px;
}

.single-case_studies table.bl_case_table {
  max-width: none !important;
}
.single-case_studies table.bl_case_table th,
.single-case_studies table.bl_case_table td {
  border-bottom: 1px solid var(--border-color);
}
.single-case_studies table.bl_case_table tr:first-child th,
.single-case_studies table.bl_case_table tr:first-child td {
  border-top: 1px solid var(--border-color);
}
.single-case_studies table.bl_case_table th {
  color: var(--main-color);
  font-weight: var(--fw-bold);
  border-color: var(--border-color);
  width: 125px;
}
@media screen and (min-width: 1025px) {
  .single-case_studies table.bl_case_table th {
    width: 200px;
  }
}
.single-case_studies .bl_case_worksPhoto {
  display: grid;
  gap: 60px;
  margin-top: 3em;
}
@media screen and (min-width: 1025px) {
  .single-case_studies .bl_case_worksPhoto {
    grid-template-columns: 1fr 1fr;
    margin-top: 4em;
  }
}
.single-case_studies .bl_case_worksPhoto > div {
  position: relative;
}
.single-case_studies .bl_case_worksPhoto img {
  max-width: none;
  width: 100%;
}
.single-case_studies .bl_case_worksPhoto .el_worksPhoto_label {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  height: 36px;
  z-index: 1;
  justify-content: center;
  width: 150px;
}
.single-case_studies .bl_case_worksPhoto .bl_worksPhoto_before::after {
  content: "";
  border-style: solid none solid solid;
  border-width: 30px 0 30px 25px;
  border-color: transparent transparent transparent var(--main-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -43px;
}
@media screen and (max-width: 1024px) {
  .single-case_studies .bl_case_worksPhoto .bl_worksPhoto_before::after {
    left: 50%;
    top: auto;
    right: auto;
    bottom: -60px;
    transform: translateX(-50%) rotate(90deg);
  }
}

.bl_sceneSlider {
  margin-top: var(--article-mt) !important;
  --article-mt: 3em;
  display: grid;
  gap: 30px;
  grid-template-columns: 100%;
}
@media screen and (min-width: 1025px) {
  .bl_sceneSlider {
    --article-mt: 4em;
  }
}
@media screen and (min-width: 1025px) {
  .bl_sceneSlider {
    gap: 6%;
    grid-template-columns: 68% 26%;
  }
}

.bl_sceneSlider_slide {
  position: relative;
  align-self: flex-start;
  --swiper-navigation-sides-offset: -10px;
  --swiper-navigation-size: 35px;
  --swiper-navigation-color: #fff;
}
@media screen and (min-width: 1025px) {
  .bl_sceneSlider_slide {
    position: sticky;
    top: 130px;
    --swiper-navigation-sides-offset: -30px;
    --swiper-navigation-size: 60px;
  }
}
.bl_sceneSlider_slide .swiper-button-next,
.bl_sceneSlider_slide .swiper-button-prev {
  --swiper-navigation-size: 40px;
  --swiper-navigation-top-offset: 100px;
  width: var(--swiper-navigation-size);
  transition: opacity var(--transition);
}
@media screen and (min-width:520px) {
  .bl_sceneSlider_slide .swiper-button-next,
  .bl_sceneSlider_slide .swiper-button-prev {
    --swiper-navigation-size: 50px;
    --swiper-navigation-top-offset: 50%;
  }
}
@media screen and (min-width: 1025px) {
  .bl_sceneSlider_slide .swiper-button-next,
  .bl_sceneSlider_slide .swiper-button-prev {
    --swiper-navigation-top-offset: 300px;
  }
}
@media (hover: hover) {
  .bl_sceneSlider_slide .swiper-button-next:hover,
  .bl_sceneSlider_slide .swiper-button-prev:hover {
    opacity: 0.7;
  }
}
.bl_sceneSlider_slide .swiper-button-next::after,
.bl_sceneSlider_slide .swiper-button-prev::after {
  content: "";
  background-image: url(../images/common/slider-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
}
@media screen and (min-width: 1025px) {
  .bl_sceneSlider_slide .swiper-button-next::after,
  .bl_sceneSlider_slide .swiper-button-prev::after {
    width: 70px;
    height: 70px;
  }
}
.bl_sceneSlider_slide .swiper-button-prev::after {
  transform: rotate(180deg);
}

.bl_sceneSlider_slide a {
  display: block;
}
@media (hover: hover) {
  .bl_sceneSlider_slide a:hover {
    opacity: 1;
  }
  .bl_sceneSlider_slide a:hover .el_scene_des {
    opacity: 0.7;
  }
}
.bl_sceneSlider_slide figure {
  overflow: hidden;
}
.bl_sceneSlider_slide img {
  transition: transform var(--transition-time) ease;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: none;
  width: 100%;
  height: auto;
}

.el_scene_des {
  background-color: var(--sub-color);
  color: #fff;
  transition: opacity var(--transition-time) ease;
  padding-block: 13px;
  padding-inline: 20px;
  font-size: 14px;
}
@media screen and (min-width: 1025px) {
  .el_scene_des {
    padding-block: 20px;
    padding-inline: 40px;
    font-size: 20px;
  }
}

.bl_sceneSlider_index {
  background-color: #ececec;
  padding-block: 15px;
  padding-inline: 15px;
}
@media screen and (min-width: 1025px) {
  .bl_sceneSlider_index {
    overflow-y: auto;
  }
}

.el_sceneSlider_index {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
@media screen and (min-width: 1025px) {
  .el_sceneSlider_index {
    grid-template-columns: 1fr 1fr;
  }
}
.el_sceneSlider_index .el_sceneSlider_thmub img {
  filter: brightness(0.6);
  transition: filter var(--transition-time) ease;
}
@media (hover: hover) {
  .el_sceneSlider_index .el_sceneSlider_thmub:hover img {
    filter: brightness(1);
  }
}
.el_sceneSlider_index .el_sceneSlider_thmub.js-is-thmub-active img {
  filter: brightness(1);
}

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

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

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

.loading {
  width: 100vw;
  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: clamp(15px, 10.873px + 0.794vw, 19px);
}
.loadingInner > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}
@media screen and (min-width: 1025px) {
  .loadingInner > div {
    flex-direction: row;
    gap: 0;
  }
}
.loadingInner img {
  width: 112px;
  filter: brightness(0) invert(100%);
  margin-right: 10px;
}
@media screen and (min-width: 1025px) {
  .loadingInner {
    font-size: 24px;
  }
}

.loading-animation {
  width: 100vw;
  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-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;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-300px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(300px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@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);
  }
}
.is-fadeInSlant {
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.is-fadeInSlant_delayed {
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}

.is-animated.is-fadeInSlant {
  animation-name: fadeSlantAnime;
}
.is-animated.is-fadeInSlant_delayed {
  animation-name: fadeSlantAnime;
}

@keyframes fadeSlantAnime {
  from {
    opacity: 0;
    transform: translateX(-300px) translateY(173px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}/*# sourceMappingURL=style.css.map */