@charset "UTF-8";
/*--------------------------------------------------------------
共通でインポートモジュール
# mixinや変数の定義を行う
--------------------------------------------------------------*/
:root {
  --text-color: #333;
  --main-color: #234031;
  --sub-color: #777e00;
  --bg-color: #fff;
  --bg-sub-color: #e7f5f4;
  --border-color: #a6a6a7;
  --link-button-font-size: 1em;
  --link-color: #036ea9;
  --light-gray: #eeeff0;
  --site-width: 1400px;
  --site-inline-padding: 20px;
  --content-width: 1200px;
  --header-content-width: 1466px;
  --header-height: 70px;
  --header-inline-padding: 24px 22px;
  --menu-fsz: 16px;
  --menu-color: #fff;
  --global-submenu-bg: rgba(255, 255, 255, 0.8);
  --entry-title-fsz: 20px;
  --entry-h2-fsz: 18px;
  --article-mt: 20px;
  --artilce-heading-mt: 40px;
  --news-navi-icon-size: 30px;
  --page-h2-fsz: 22px;
  --page-h3-fsz: 18px;
}
@media screen and (min-width:520px) {
  :root {
    --site-inline-padding: 40px;
  }
}
@media screen and (min-width: 768px) {
  :root {
    --site-inline-padding: 60px;
  }
}
@media screen and (min-width: 1025px) {
  :root {
    --entry-title-fsz: 26px;
    --entry-h2-fsz: 20px;
    --article-mt: 20px;
    --news-navi-icon-size: 40px;
    --artilce-heading-mt: 60px;
    --page-h2-fsz: 28px;
    --page-h3-fsz: 22px;
    --site-inline-padding: 60px;
  }
}
@media screen and (min-width: 1025px) {
  :root {
    --header-height: 100px;
    --menu-fsz: 16px;
    --header-inline-padding: 20px 18px;
  }
}
@media screen and (min-width: 1367px) {
  :root {
    --site-inline-padding: 0;
  }
}
@media screen and (min-width: 1500px) {
  :root {
    --header-inline-padding: 70px 18px;
    --site-inline-padding: 0;
  }
}
:root {
  --fw-medium: 500;
  --fw-regular: 400;
  --fw-bold: 700;
  --fw-black: 900;
  --transition-time: 0.5s;
  --transition: var(--transition-time) ease;
  --image-radius: 43px 0 43px 0;
  --min-viewport: 520;
  --max-viewport: 1025;
  --max-size: 80px;
  --min-size: 20px;
  /* a 傾き */
  --slope: calc((var(--max-size) - var(--min-size)) / (var(--max-viewport) - var(--min-viewport)));
  /* b 切片 */
  --intercept: calc(var(--min-size) - var(--slope) * var(--min-viewport));
  /* y = ax + b */
  --fluid-size: calc(var(--slope) * 100vw + var(--intercept) / 16 * 1rem);
  /* clamp( 最小サイズ , 可変サイズ , 最大サイズ) */
  --clamp-size: clamp(var(--min-size) / 16 * 1rem, var(--fluid-size), var(--max-size) / 16 * 1rem);
}

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;
}
@media  {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}

body {
  font-family: "Shippori Mincho B1", serif;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.75;
  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_semibold {
  font-family: YakuHanJP_Narrow, "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  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;
}

.is_garamond_regular {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.is_garamond_medium {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.is_garamond_semiBold {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.is_garamond_bold {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.is_garamond_black {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

.is_shippori_mincho_regular {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.shippori-mincho-semibold {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
}

.shippori-mincho-bold {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  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: 1025px) {
  .br_sp_menu {
    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: 30px;
  padding-bottom: 45px;
}
@media screen and (min-width: 1025px) {
  .pd_tb_m {
    padding-top: 40px;
    padding-bottom: 90px;
  }
}

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

.pd_tb_eq_s {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .pd_tb_eq_s {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.is_align_center {
  margin-inline: auto;
}

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

.is_text_center {
  text-align: center;
}

@media screen and (min-width: 1025px) {
  .is_text_center_pc {
    text-align: center;
  }
}

.is_text_right {
  text-align: right;
}

.is_text_left {
  text-align: left;
}

.is_text_green {
  color: var(--main-color);
}

.is_text_red {
  color: #e75b6a;
}

.is_text_blue {
  color: #036ea9;
}

.is_text_orange {
  color: var(--sub-color);
}

.is_text_white_bg {
  background-color: #fff;
  color: var(--main-color);
  padding-inline: 0.5em;
}

.is_green_shadow {
  box-shadow: 0 0 3px #9fcc97;
}

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

.mt_l {
  margin-top: 70px !important;
}
@media screen and (min-width: 1025px) {
  .mt_l {
    margin-top: 140px !important;
  }
}

.is_underLine {
  text-decoration: underline;
  text-decoration-color: rgba(255, 189, 184, 0.6);
  text-decoration-thickness: 8px;
  text-underline-offset: -1px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.plr-s {
  --site-inline-padding: 12px;
}

.is_large_size {
  font-size: var(--large-font-size, 30px);
}

.is_medium_size {
  font-size: var(--medium-font-size, 20px);
}

.ly_siteHeader {
  width: 100%;
  z-index: 15;
  background: linear-gradient(0deg, rgba(102, 102, 102, 0) 0%, rgba(102, 102, 102, 0.5) 100%);
  padding-inline: var(--header-inline-padding);
}
@media screen and (min-width: 768px) {
  .home .ly_siteHeader {
    position: absolute;
  }
}
.is_scrolled .ly_siteHeader {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  --menu-color: var(--text-color);
}
.is_open .ly_siteHeader {
  background: #fff;
  --menu-color: var(--text-color);
}

.ly_siteHeader_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height var(--transition);
  height: var(--header-height);
  width: 100%;
  max-width: var(--header-content-width);
  margin-inline: auto;
  position: relative;
  gap: 15px;
  margin-inline: auto;
}

.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: 0;
}
.ly_fixed_header .ly_siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  transition: all var(--transition);
}
.ly_fixed_header.admin-bar .ly_siteHeader {
  top: 32px;
}
.ly_fixed_header.is_hide_header .ly_siteHeader {
  transform: translateY(-100%);
}

.ly_back_show_header.is_scrolled:not(.home) .ly_content {
  margin-top: 100px;
}
.ly_back_show_header.is_scrolled .ly_siteHeader {
  position: fixed;
  top: -300px;
  left: 0;
  background-color: #fff;
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.ly_back_show_header.is_scrolled.is_show_header .ly_siteHeader {
  transform: translateY(300px);
}
.ly_back_show_header.admin-bar {
  margin-top: calc(var(--header-height) + 32px);
}
.ly_back_show_header.admin-bar .ly_siteHeader {
  top: 32px;
}

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

.ly_breadcrumb_wrapper {
  position: relative;
  z-index: 3;
  margin-top: 0;
}

.ly_breadcrumb {
  display: flex;
  justify-content: flex-end;
  margin-inline: auto;
  padding-block: 10px;
  padding-inline: 20px;
  height: 50px;
  align-items: center;
}

.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%;
  overflow: clip;
  position: relative;
  z-index: 1;
  margin-bottom: -50px;
}
@media screen and (min-width: 1025px) {
  .ly_siteMain {
    margin-bottom: -80px;
  }
}

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

.ly_pageHeader {
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  width: 100dvw;
  margin-left: calc(50% - 50dvw);
}

.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_siteFooter {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color);
  color: #fff;
  padding-block: 96px 36px;
}
@media screen and (min-width: 1025px) {
  .ly_siteFooter {
    padding-block: 168px 70px;
  }
}
.ly_siteFooter .bl_siteFooter {
  padding-inline: var(--site-inline-padding);
  max-width: var(--content-width);
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1025px) {
  .ly_siteFooter .bl_siteFooter {
    width: 100%;
    align-items: flex-start;
  }
}

.bl_article_content .ly_footerCTA {
  --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;
}
@media screen and (min-width:520px) {
  .el_btn_lineArrow::after {
    width: 90px;
    height: 12px;
  }
}
.el_btn_lineArrow::after {
  background-image: url(../images/button-arrow-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@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.04em;
  line-height: 1.4;
  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 {
    height: 60px;
  }
}
@media (hover: hover) {
  .el_linkButton:hover {
    opacity: 0.7;
  }
}

.bl_mediaText {
  --content-width: 1fr;
  --image-width: 1fr;
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 1025px) {
  .bl_mediaText {
    grid-template-columns: var(--content-width) var(--image-width);
  }
  .bl_mediaText.is_image_left {
    grid-template-columns: var(--image-width) var(--content-width);
  }
}
.bl_mediaText figure {
  text-align: center;
}
.bl_mediaText figure img {
  display: block;
  width: 100%;
}
.bl_mediaText.l_46_54 {
  --image-width: 54%;
  gap: 20px;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .bl_mediaText.l_46_54 {
    gap: 70px;
  }
  .bl_mediaText.l_46_54.is_image_left {
    gap: 110px;
  }
}
@media screen and (min-width: 1025px) {
  .bl_mediaText.is_image_left {
    grid-template-areas: "image content";
  }
  .bl_mediaText.is_image_right {
    grid-template-areas: "content image";
  }
  .bl_mediaText .el_mediaText_content {
    grid-area: content;
  }
  .bl_mediaText .el_mediaText_image {
    grid-area: image;
  }
}
.bl_mediaText.is_half_fullwidth {
  gap: 48px;
  gap: clamp(0px, -54.972px + 5.363vw, 48px);
  --image-width: clamp(460px, -95.447px + 54.19vw, 945px);
}
@media screen and (max-width: 1024px) {
  .bl_mediaText.is_half_fullwidth {
    grid-template-areas: "content" "image";
  }
  .bl_mediaText.is_half_fullwidth .el_mediaText_content {
    grid-area: content;
  }
  .bl_mediaText.is_half_fullwidth .el_mediaText_image {
    grid-area: image;
  }
}
@media screen and (min-width: 1025px) {
  .bl_mediaText.is_half_fullwidth {
    width: calc(100vw - (50vw - 50%));
  }
  .bl_mediaText.is_half_fullwidth.is_image_left {
    margin-left: calc(50% - 50vw);
  }
  .bl_mediaText.is_half_fullwidth .el_mediaText_image {
    align-self: flex-start;
  }
}
.bl_mediaText.is_half_fullwidth + .bl_mediaText {
  margin-top: 80px;
}
@media screen and (min-width: 1025px) {
  .bl_mediaText.is_half_fullwidth + .bl_mediaText {
    margin-top: 120px;
  }
}

.bl_columns {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 1025px) {
  .bl_columns {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1025px) {
  .bl_columns.l_30_70 {
    grid-template-columns: 30% 70%;
  }
}

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

.is_content_narrow {
  --content-width: 1100px;
  --site-inline-padding: 20px;
}

.is_sticky_parent {
  padding-top: 18px !important;
}

.el_siteHeader_logo {
  flex-shrink: 0;
}
.el_siteHeader_logo a {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
}
.el_siteHeader_logo a .header_logo_image {
  margin-right: 10px;
  transition: all var(--transition);
  grid-column: 1/-1;
  grid-row: 1/-1;
  width: 167px;
}
@media screen and (min-width: 1025px) {
  .el_siteHeader_logo a .header_logo_image {
    width: 237px;
  }
}
.el_siteHeader_logo a .header_logo_image.show-scrolled {
  opacity: 0;
}
.is_open .el_siteHeader_logo a .header_logo_image.show-scrolled, .is_scrolled .el_siteHeader_logo a .header_logo_image.show-scrolled {
  opacity: 1;
}
.is_open .el_siteHeader_logo a .header_logo_image.hide-scrolled, .is_scrolled .el_siteHeader_logo a .header_logo_image.hide-scrolled {
  opacity: 0;
}

@media screen and (max-width: 1024px) {
  .ly_siteHeader_nav {
    visibility: hidden;
    position: fixed;
    top: var(--header-height);
    right: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    z-index: 0;
    background-color: #fff;
    justify-content: center;
    padding-top: 27px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-inline: 20px;
    transform: translateX(110%);
    transition: all var(--transition-time) ease;
    background-image: url(../images/common/default-texture.webp);
    background-repeat: repeat;
    display: block;
    padding-bottom: 80px;
  }
  .is_open .ly_siteHeader_nav {
    transform: translateX(0);
    visibility: visible;
    z-index: 9;
  }
}

.bl_siteHeader_nav {
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .bl_siteHeader_nav {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    padding-bottom: 30px;
    max-width: 480px;
    margin-inline: auto;
  }
  .bl_siteHeader_nav li {
    font-size: 18px;
    letter-spacing: 0;
    display: flex;
    border-bottom: 1px solid var(--border-color);
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
  }
  .bl_siteHeader_nav li a {
    padding-block: 12px;
    padding-inline: 10px;
    display: flex;
    flex-direction: column;
    color: var(--text-color);
    width: 100%;
  }
  .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.megamenu_heading {
    display: none;
  }
  .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: 12px;
    width: 100%;
  }
  .bl_siteHeader_nav li .sub-menu li:last-child {
    border-bottom: none;
  }
  .bl_siteHeader_nav li figure {
    display: none;
  }
  .bl_siteHeader_nav li.menu-item-has-children > a {
    padding-right: 40px;
  }
  .bl_siteHeader_nav li:not(.menu-item-has-children)::after {
    content: "";
    background-image: url(../images/header/arrow-sp-menu.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 8px;
    height: 13px;
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .bl_siteHeader_nav li.el_siteHeader_button {
    border-bottom: none;
  }
  .bl_siteHeader_nav li.el_siteHeader_button > a {
    border: 1px solid var(--main-color);
    padding-inline: 30px;
    height: 48px;
    text-align: center;
    padding-block: 7px 10px;
    margin-top: 48px;
    transition: all var(--transition);
  }
}
@media screen and (max-width: 1024px) and (hover: hover) {
  .bl_siteHeader_nav li.el_siteHeader_button > a:hover {
    background-color: var(--main-color);
    color: #fff;
  }
}
@media screen and (min-width: 1025px) {
  .bl_siteHeader_nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    min-height: 50px;
    gap: 0;
  }
  .bl_siteHeader_nav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
  }
  .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.mega_menu_2col > .sub-menu {
    grid-template-columns: repeat(2, 48%);
    width: 46vw;
    padding-left: clamp(150px, 42.437px + 10.504vw, 200px);
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu {
    max-width: 1200px;
    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: 0;
    top: auto;
    z-index: 10;
    padding-left: clamp(200px, -15.126px + 21.008vw, 300px);
    padding-right: 40px;
    position: absolute;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li.megamenu_heading {
    position: absolute;
    top: 1em;
    left: 15px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1024px) {
  .bl_siteHeader_nav li.mega_menu > .sub-menu li.megamenu_heading {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .bl_siteHeader_nav li.mega_menu > .sub-menu li.megamenu_heading:hover > a {
    opacity: 1;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li.megamenu_heading > a {
    font-size: 28px;
    font-size: clamp(20px, -10.118px + 2.941vw, 34px);
    font-weight: var(--fw-bold);
    color: var(--text-color);
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li.megamenu_heading > a::after {
    content: "";
    background-image: none;
    width: 30px;
    height: 1px;
    background-color: var(--main-color);
    margin-top: 15px;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li.megamenu_heading > a {
    pointer-events: none;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li.megamenu_heading .global_menu-description {
    font-size: 0.5em;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li.megamenu_heading .sub-menu {
    display: block;
    margin-top: 20px;
    box-shadow: none;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li.megamenu_heading .sub-menu a {
    border-radius: 90px;
    border: 1px solid var(--main-color);
    justify-content: center;
    position: relative;
    width: 90%;
    margin-inline: auto;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li.megamenu_heading .sub-menu a::after {
    position: absolute;
    transition: right var(--transition);
    right: -15px;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li.megamenu_heading .sub-menu a:hover::after {
    right: -20px;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li:not(.megamenu_heading) figure {
    overflow: hidden;
    margin-bottom: 1px;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li:not(.megamenu_heading) figure a {
    padding: 0;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li:not(.megamenu_heading) figure img {
    transition: all var(--transition);
    aspect-ratio: 274/178;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li:not(.megamenu_heading) > 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:not(.megamenu_heading) > 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:not(.megamenu_heading) > a::after {
    flex-shrink: 0;
    transition: transform var(--transition);
    content: "";
    --mega-menu-icon: 20px;
    --mega-menu-icon-h: 4px;
    content: "";
    background-image: url(../images/common/button-arrow-black.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: var(--mega-menu-icon);
    height: var(--mega-menu-icon-h);
  }
}
@media screen and (min-width: 1025px) and (min-width: 1367px) {
  .bl_siteHeader_nav li.mega_menu > .sub-menu li:not(.megamenu_heading) > a::after {
    --mega-menu-icon: 28px;
    --mega-menu-icon-h: 5px;
  }
}
@media screen and (min-width: 1025px) {
  .bl_siteHeader_nav li.mega_menu > .sub-menu li:not(.megamenu_heading):hover > a {
    color: var(--text-color);
    opacity: 0.7;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li:not(.megamenu_heading):hover > a::after {
    transform: translateX(5px);
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li:not(.megamenu_heading):hover figure img {
    transform: scale(1.1);
  }
  .bl_siteHeader_nav a {
    transition: color 0.5s ease;
  }
  .bl_siteHeader_nav > li {
    width: auto;
    position: relative;
    font-size: var(--menu-fsz);
    letter-spacing: 0.04em;
  }
  .bl_siteHeader_nav > li > a {
    color: var(--menu-color);
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    position: relative;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding-block: 13px 10px;
    padding-inline: clamp(12px, -13.815px + 2.521vw, 24px);
    line-height: 1.2;
    white-space: nowrap;
    position: relative;
    transition: all var(--transition);
    font-size: clamp(13px, 6.546px + 0.63vw, 16px);
    font-weight: var(--fw-medium);
  }
  .bl_siteHeader_nav > li > a > span {
    grid-column: 1/-1;
    grid-row: 1/-1;
    transition: opacity var(--transition);
  }
  .bl_siteHeader_nav > li > a > span.global_menu-description {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
  }
}
@media screen and (min-width: 1025px) and (hover: hover) {
  .bl_siteHeader_nav > li:hover > a span.global_menu-description {
    opacity: 1;
  }
  .bl_siteHeader_nav > li:hover > a span.global_menu-title {
    opacity: 0;
  }
}
@media screen and (min-width: 1025px) {
  .bl_siteHeader_nav > li.current-menu-parent > a::after, .bl_siteHeader_nav > li.current-menu-item > a::after {
    opacity: 1;
  }
}
@media screen and (min-width: 1025px) and (min-width: 1025px) {
  .bl_siteHeader_nav > li.is_mobile {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .bl_siteHeader_nav > li.el_siteHeader_button > a {
    border: 1px solid var(--menu-color);
    padding-inline: 30px;
    padding-inline: clamp(5px, -48.782px + 5.252vw, 30px);
    height: 45px;
    padding-block: 7px 10px;
    margin-left: 24px;
    width: auto;
  }
  .bl_siteHeader_nav > li.el_siteHeader_button > a span {
    opacity: 1 !important;
  }
}
@media screen and (min-width: 1025px) and (hover: hover) {
  .bl_siteHeader_nav > li.el_siteHeader_button > a:hover {
    background-color: var(--menu-color);
    color: var(--text-color);
    opacity: 1;
  }
  .is_scrolled .bl_siteHeader_nav > li.el_siteHeader_button > a:hover {
    color: #fff;
  }
}
@media screen and (min-width: 1025px) {
  .bl_siteHeader_nav .sub-menu {
    display: block;
    position: absolute;
    background-color: var(--global-submenu-bg, #fff);
    min-width: 100%;
    box-shadow: 0px 8px 30px 0px rgba(167, 167, 167, 0.3);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }
  .bl_siteHeader_nav .sub-menu a {
    color: var(--text-color);
    font-size: 16px;
    display: flex;
    align-items: center;
    padding: 0.8em 1em;
    white-space: nowrap;
    transition: color var(--transition);
  }
}
@media screen and (min-width: 1025px) and (hover: hover) {
  .bl_siteHeader_nav .sub-menu a:hover {
    color: var(--sub-color);
    opacity: 1;
  }
}

.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;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 48px;
  height: 25px;
  border-radius: 99px;
  background-color: var(--main-color);
  transition: all var(--transition-time) ease;
  flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .bl_menuToggleButton {
    display: none;
  }
}
.is_open .bl_menuToggleButton::before {
  transform: translateX(0);
}
.bl_menuToggleButton .openbtn1 {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  width: 18px;
  height: 8px;
}
.bl_menuToggleButton {
  /*ボタン内側*/
}
.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;
  display: none;
}
.bl_menuToggleButton .openbtn1 span:nth-of-type(3) {
  top: 6px;
}
.bl_menuToggleButton.is_open .openbtn1 span {
  background: #fff;
}
.bl_menuToggleButton.is_open .openbtn1 span:nth-of-type(1) {
  transform: translateY(4px) rotate(-45deg);
}
.bl_menuToggleButton.is_open .openbtn1 span:nth-of-type(3) {
  width: 100%;
  left: 0;
  right: auto;
  transform: translateY(-3px) rotate(45deg);
}

@keyframes slideToTop {
  from {
    right: -100px;
  }
  to {
    right: 0;
  }
}
@keyframes active-btn05-bar02 {
  100% {
    height: 0;
  }
}
body.is_open {
  overflow: hidden;
}

@media screen and (min-width: 1025px) {
  .global-menu-toggle {
    display: none !important;
  }
}
.global-menu-toggle {
  cursor: pointer;
  position: absolute;
  width: 60px;
  height: 65px;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.global-menu-toggle:before {
  content: "";
  border-style: solid solid none none;
  display: block;
  border-width: 1px;
  border-color: var(--text-color);
  width: 1em;
  aspect-ratio: 1/1;
  position: absolute;
  top: 20px;
  right: 20px;
  transform: rotate(135deg);
  transform-origin: center;
  transition: transform var(--transition);
}
.global-menu-toggle.is-open::before {
  transform: rotate(-45deg);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  visibility: hidden;
  opacity: 0;
  transition: all var(--transition-time);
}

.bl_breadcrumb_wrapper {
  position: absolute;
  padding-block: 22px;
  padding-inline: 25px;
}

.bl_breadcrumb {
  letter-spacing: 0.06em;
  overflow-x: auto;
  overflow-y: hidden;
  font-size: 12px;
}
@media screen and (min-width: 1025px) {
  .bl_breadcrumb {
    font-size: 14px;
  }
}
.bl_breadcrumb li {
  padding-block: 5px;
  list-style: none;
  white-space: nowrap;
}
.bl_breadcrumb li + li::before {
  content: "/";
  padding-inline: 5px;
}
.bl_breadcrumb a {
  transition: opacity var(--transition);
}
@media (hover: hover) {
  .bl_breadcrumb a:hover {
    opacity: 0.7;
  }
}

.ly_pageHeader {
  position: relative;
  height: 405px;
  background-size: cover;
  background-position: center;
  background-color: var(--main-color);
  background-image: url(../images/common/bg-page-header-sp.webp);
}
@media screen and (min-width: 768px) {
  .ly_pageHeader {
    background-image: url(../images/common/bg-page-header.webp);
    height: 630px;
  }
}
.ly_pageHeader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(0deg, rgba(35, 64, 49, 0.9) 19.34%, rgba(35, 64, 49, 0) 59.26%);
}
@media screen and (min-width: 768px) {
  .ly_pageHeader::before {
    background: linear-gradient(90deg, rgba(35, 64, 49, 0.9) 19.34%, rgba(35, 64, 49, 0) 59.26%);
  }
}

.bl_pageHeader_inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding-inline: 36px;
  padding-block: 88px;
  width: 100%;
  height: 100%;
  justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .bl_pageHeader_inner {
    justify-content: center;
    padding-inline: 90px;
  }
}
.bl_pageHeader_inner .bl_page_title {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 32px;
  line-height: 1.2;
  text-align: left;
  letter-spacing: 0.04em;
  margin-inline: auto;
  width: 100%;
  max-width: 1400px;
}
@media screen and (min-width: 768px) {
  .bl_pageHeader_inner .bl_page_title {
    font-size: 48px;
  }
}
.bl_pageHeader_inner .bl_page_subtitle {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .bl_pageHeader_inner .bl_page_subtitle {
    font-size: 21px;
  }
}

.archive .bl_article_content,
.page .bl_article_content {
  --article-mt: 15px;
  --page-fsz: 14px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  font-size: var(--page-fsz, 16px);
}
@media screen and (min-width: 1025px) {
  .archive .bl_article_content,
  .page .bl_article_content {
    --page-fsz: 16px;
    --article-mt: 30px;
  }
}
.archive .bl_article_content > * + h2,
.page .bl_article_content > * + h2 {
  --article-mt: 60px;
}
@media screen and (min-width: 1025px) {
  .archive .bl_article_content > * + h2,
  .page .bl_article_content > * + h2 {
    --article-mt: 80px;
  }
}
.archive .bl_article_content p,
.page .bl_article_content p {
  line-height: 1.75;
}
.archive .bl_article_content p a,
.page .bl_article_content p a {
  color: var(--link-color);
  transition: opacity var(--transition);
  text-decoration: underline;
  text-underline-offset: 8px;
}
@media (hover: hover) {
  .archive .bl_article_content p a:hover,
  .page .bl_article_content p a:hover {
    opacity: 0.7;
  }
}
.archive .bl_article_content p + p,
.page .bl_article_content p + p {
  margin-top: 2em;
}
.archive .bl_article_content h2,
.page .bl_article_content h2 {
  position: relative;
  font-weight: var(--fw-medium);
  font-style: normal;
  font-size: var(--page-h2-fsz);
  color: var(--main-color);
}
.archive .bl_article_content h2.lp_heading,
.page .bl_article_content h2.lp_heading {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 10px;
  color: var(--main-color);
  line-height: 1.4;
  --page-h2-fsz: 22px;
}
@media screen and (min-width: 1025px) {
  .archive .bl_article_content h2.lp_heading,
  .page .bl_article_content h2.lp_heading {
    gap: 20px;
    letter-spacing: 0.12em;
    --page-h2-fsz: 36px;
  }
}
.archive .bl_article_content h2.lp_heading span,
.page .bl_article_content h2.lp_heading span {
  letter-spacing: 0.04em;
  font-size: 14px;
  color: var(--text-color);
}
.archive .bl_article_content h2.is-style-page-heading,
.archive .bl_article_content h2.page_heading,
.page .bl_article_content h2.is-style-page-heading,
.page .bl_article_content h2.page_heading {
  --page-h2-fsz: 22px;
  gap: 8px;
}
@media screen and (min-width: 1025px) {
  .archive .bl_article_content h2.is-style-page-heading,
  .archive .bl_article_content h2.page_heading,
  .page .bl_article_content h2.is-style-page-heading,
  .page .bl_article_content h2.page_heading {
    gap: 20px;
    --page-h2-fsz: 26px;
  }
}
.archive .bl_article_content h2.is-style-page-heading + *,
.archive .bl_article_content h2.page_heading + *,
.page .bl_article_content h2.is-style-page-heading + *,
.page .bl_article_content h2.page_heading + * {
  font-size: 15px;
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .archive .bl_article_content h2.is-style-page-heading + *,
  .archive .bl_article_content h2.page_heading + *,
  .page .bl_article_content h2.is-style-page-heading + *,
  .page .bl_article_content h2.page_heading + * {
    font-size: 16px;
    margin-top: 40px;
  }
}
.archive .bl_article_content h3,
.page .bl_article_content h3 {
  font-weight: var(--fw-medium);
  font-size: var(--page-h3-fsz) !important;
  line-height: 1.5;
}
.archive .bl_article_content h3.page_heading_h3,
.archive .bl_article_content h3.lp_heading_h3,
.page .bl_article_content h3.page_heading_h3,
.page .bl_article_content h3.lp_heading_h3 {
  font-style: normal;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.75;
  background-color: #f7b977;
  border-radius: 8px 8px 0 0;
  padding-inline: 20px;
  padding-block: 12px 12px;
  --page-h3-fsz: 20px;
}
@media screen and (min-width: 1025px) {
  .archive .bl_article_content h3.page_heading_h3,
  .archive .bl_article_content h3.lp_heading_h3,
  .page .bl_article_content h3.page_heading_h3,
  .page .bl_article_content h3.lp_heading_h3 {
    padding-block: 17px 20px;
    --page-h3-fsz: 22px;
  }
}
.archive .bl_article_content h3.page_heading_h3,
.page .bl_article_content h3.page_heading_h3 {
  padding-block: 10px 8px;
  --page-h3-fsz: 18px;
}
@media screen and (min-width: 1025px) {
  .archive .bl_article_content h3.page_heading_h3,
  .page .bl_article_content h3.page_heading_h3 {
    padding-block: 12px 10px;
    --page-h3-fsz: 22px;
  }
}
.archive .bl_article_content h4,
.page .bl_article_content h4 {
  font-size: 18px;
  line-height: 1.5;
}
.archive .bl_article_content h4.lp_heading_h4,
.page .bl_article_content h4.lp_heading_h4 {
  font-style: normal;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border-color);
  line-height: 1.75;
  border-radius: 8px 8px 0 0;
  padding-block: 15px 18px;
  padding-inline: 18px;
}
@media screen and (min-width: 1025px) {
  .archive .bl_article_content h4.lp_heading_h4,
  .page .bl_article_content h4.lp_heading_h4 {
    font-size: 20px;
  }
}
.archive .bl_article_content table,
.page .bl_article_content table {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
}
.archive .bl_article_content table th,
.archive .bl_article_content table td,
.page .bl_article_content table th,
.page .bl_article_content table td {
  padding-block: 20px;
  padding-inline: 8px;
  border-bottom: 1px solid var(--border-color);
  letter-spacing: 0.05em;
  font-size: 14px;
  line-height: 2.07;
}
@media screen and (min-width: 1025px) {
  .archive .bl_article_content table th,
  .archive .bl_article_content table td,
  .page .bl_article_content table th,
  .page .bl_article_content table td {
    padding-block: 40px;
    padding-inline: 24px;
  }
}
.archive .bl_article_content section,
.page .bl_article_content section {
  max-width: var(--content-width);
  margin-inline: auto;
}
.archive .bl_article_content section.full-width,
.page .bl_article_content section.full-width {
  max-width: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  --article-mt: 0;
}
.archive .bl_article_content section > * + *,
.page .bl_article_content section > * + * {
  margin-top: 30px;
}
@media screen and (min-width: 1025px) {
  .archive .bl_article_content section > * + *,
  .page .bl_article_content section > * + * {
    margin-top: 40px;
  }
}
.archive .bl_article_content section > .is_align_left + *,
.archive .bl_article_content section > .is_align_right + *,
.archive .bl_article_content section > h3 + *,
.archive .bl_article_content section > h2 + *,
.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) {
  .archive .bl_article_content section > .is_align_left + *,
  .archive .bl_article_content section > .is_align_right + *,
  .archive .bl_article_content section > h3 + *,
  .archive .bl_article_content section > h2 + *,
  .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;
  }
}
.archive .bl_article_content section > * + h2,
.page .bl_article_content section > * + h2 {
  margin-top: 60px;
}
@media screen and (min-width: 1025px) {
  .archive .bl_article_content section > * + h2,
  .page .bl_article_content section > * + h2 {
    margin-top: 80px;
  }
}
.archive .bl_article_content section > * + h3,
.page .bl_article_content section > * + h3 {
  margin-top: 40px;
}
@media screen and (min-width: 1025px) {
  .archive .bl_article_content section > * + h3,
  .page .bl_article_content section > * + h3 {
    margin-top: 60px;
  }
}
.archive .bl_article_content .bl_section_inner > * + *,
.page .bl_article_content .bl_section_inner > * + * {
  margin-top: 100px;
}
@media screen and (min-width: 1025px) {
  .archive .bl_article_content .bl_section_inner > * + *,
  .page .bl_article_content .bl_section_inner > * + * {
    margin-top: 120px;
  }
}
.archive .bl_article_content .is_style_disc,
.page .bl_article_content .is_style_disc {
  padding-left: 1.3em;
}
.archive .bl_article_content .is_style_disc li,
.page .bl_article_content .is_style_disc li {
  list-style: disc;
}
.archive .bl_article_content figure.has_cover,
.page .bl_article_content figure.has_cover {
  position: relative;
}
.archive .bl_article_content figure.has_cover::after,
.page .bl_article_content figure.has_cover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #777e00;
  opacity: 0.08;
}
.archive .bl_article_content figcaption,
.page .bl_article_content figcaption {
  line-height: 1;
  font-size: 16px;
  text-align: right;
}
.archive .bl_article_content .el_contentBox,
.page .bl_article_content .el_contentBox {
  background-color: #f2f5f6;
  padding-block: 30px;
  padding-inline: 25px;
}
@media screen and (min-width: 1025px) {
  .archive .bl_article_content .el_contentBox,
  .page .bl_article_content .el_contentBox {
    padding-block: 40px;
    padding-inline: 60px;
  }
}
.archive .bl_article_content .el_contentBox > * + *,
.page .bl_article_content .el_contentBox > * + * {
  margin-top: 20px;
}
.archive .bl_article_content .bl_columns.is_flex,
.page .bl_article_content .bl_columns.is_flex {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1025px) {
  .archive .bl_article_content .bl_columns.is_flex,
  .page .bl_article_content .bl_columns.is_flex {
    flex-direction: row;
    gap: 70px;
    justify-content: center;
  }
}
.archive .bl_article_content .bl_columns.is_flex .el_column figure,
.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;
}
.archive .bl_article_content .bl_columns.is_flex .el_column figure figcaption,
.page .bl_article_content .bl_columns.is_flex .el_column figure figcaption {
  width: 100%;
  text-align: right;
}
.archive .bl_article_content .bl_companyMap,
.page .bl_article_content .bl_companyMap {
  --article-mt: 80px;
}
.archive .bl_article_content .bl_companyMap iframe,
.page .bl_article_content .bl_companyMap iframe {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1000/680;
}
@media screen and (min-width: 1025px) {
  .archive .bl_article_content .bl_companyMap iframe,
  .page .bl_article_content .bl_companyMap iframe {
    aspect-ratio: 1000/480;
  }
}
.archive .bl_article_content .el_mediaText_content > * + *,
.page .bl_article_content .el_mediaText_content > * + * {
  margin-top: var(--media-content-mt, 20px);
}
.archive .bl_article_content .el_linkButton,
.page .bl_article_content .el_linkButton {
  background-color: transparent;
  color: var(--main-color);
  border: 1px solid;
  border-radius: 0;
  padding-inline: 24px;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto 0;
  min-width: 220px;
}
@media screen and (min-width: 768px) {
  .archive .bl_article_content .el_linkButton,
  .page .bl_article_content .el_linkButton {
    margin-inline: 1.1em;
    min-width: 240px;
    border: 1px solid transparent;
  }
  .archive .bl_article_content .el_linkButton:after, .archive .bl_article_content .el_linkButton:before,
  .page .bl_article_content .el_linkButton:after,
  .page .bl_article_content .el_linkButton:before {
    content: "";
    position: absolute;
    left: -1em;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: var(--main-color);
    transition: inherit;
  }
  .archive .bl_article_content .el_linkButton:after,
  .page .bl_article_content .el_linkButton:after {
    left: auto;
    right: -1em;
  }
}
@media screen and (min-width: 768px) and (hover: hover) {
  .archive .bl_article_content .el_linkButton:hover,
  .page .bl_article_content .el_linkButton:hover {
    opacity: 1;
    border-color: var(--main-color);
    transition: border-color 0.2s 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
  .archive .bl_article_content .el_linkButton:hover:after, .archive .bl_article_content .el_linkButton:hover:before,
  .page .bl_article_content .el_linkButton:hover:after,
  .page .bl_article_content .el_linkButton:hover:before {
    right: -1px;
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
  .archive .bl_article_content .el_linkButton:hover:before,
  .page .bl_article_content .el_linkButton:hover:before {
    left: -1px;
    right: auto;
  }
}
.archive .bl_article_content .bl_pageFootButtons,
.page .bl_article_content .bl_pageFootButtons {
  display: flex;
  justify-content: center;
  margin-block: 60px;
}

.bl_projects_item {
  position: relative;
  padding-bottom: 25px;
}
@media (hover: hover) {
  .bl_projects_item:hover img {
    transform: scale(1.05);
  }
}
.bl_projects_item .bl_projects_thumbnail {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.bl_projects_item .bl_projects_thumbnail img {
  transition: transform var(--transition);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bl_projects_item .bl_projects_area {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.bl_projects_item .bl_projects_area::before {
  content: "";
  background-image: url(../images/common/icon-spot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 27px;
}
.bl_projects_item .bl_projects_title {
  line-height: 1.5;
  margin-top: 16px;
  --page-h3-fsz: 16px;
}
@media screen and (min-width: 1025px) {
  .bl_projects_item .bl_projects_title {
    --page-h3-fsz: 18px;
  }
}
.bl_projects_item .bl_projects_cat {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.bl_projects_item .bl_projects_cat span {
  background-color: #234031;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 10px;
  font-size: 14px;
  padding-block: 1px;
}
.bl_projects_item .bl_projects_tag {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.bl_projects_item .bl_projects_tag .el_post_category {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.bl_projects_item .bl_projects_tag .el_post_category span {
  background-color: #f9f9f9;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 10px;
}
.bl_projects_item .bl_projects_tag .el_post_category span::before {
  content: "#";
}

.bl_siteFooter {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-size: 14px;
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter {
    font-size: 16px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 76px;
  }
}
.bl_siteFooter a:not(.not_link) {
  transition: opacity var(--transition-time);
}
@media (hover: hover) {
  .bl_siteFooter a:not(.not_link):hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 768px) {
  .bl_siteFooter_info {
    flex-shrink: 0;
  }
}
.bl_siteFooter_info p {
  margin-block: 20px 28px;
  line-height: 2.0625;
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter_info a.is_tel_link {
    pointer-events: none;
  }
}

.bl_siteFooter_nav_wrapper {
  width: 100%;
}

.bl_siteFooter_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  --wp--preset--spacing--50: 50px;
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter_nav {
    --wp--preset--spacing--50: 60px;
    flex-direction: row;
    max-width: none;
    width: 100%;
    margin-top: 0;
    justify-content: center;
  }
}
.bl_siteFooter_nav .widget_block.bl_footerWidget {
  width: 100%;
}
.bl_siteFooter_nav h3 {
  line-height: 1.375;
  border-bottom: 1px solid #fff;
  margin-bottom: 30px;
  font-size: 22px;
  padding-block: 0 22px;
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter_nav h3 {
    padding-block: 0 30px;
    font-size: 24px;
    margin-bottom: 40px;
  }
}
.bl_siteFooter_nav .widget_nav_menu {
  width: 100%;
}
.bl_siteFooter_nav .widget_nav_menu ul.menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter_nav .widget_nav_menu ul.menu {
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  .bl_siteFooter_nav .widget_nav_menu ul.menu#menu-footer-1 {
    grid-template-columns: 1fr;
  }
}

.bl_siteFooter_copyRight {
  font-size: 12px;
  max-width: var(--content-width);
  padding-inline: var(--site-inline-padding);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-top: 80px;
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter_copyRight {
    justify-content: flex-end;
    margin-top: 65px;
  }
}

.bl_cta {
  position: relative;
  z-index: 1;
}
.home .bl_cta {
  z-index: 0;
}
.bl_cta {
  color: #fff;
  width: 100%;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top center;
  background-image: url(../images/footer/bg-footer-sp.webp);
  padding-inline: var(--site-inline-padding);
  padding-block: 96px 10px;
  margin-bottom: -10px;
}
@media screen and (min-width: 1025px) {
  .bl_cta {
    background-size: auto 880px;
    padding-block: 168px 10px;
    background-image: url(../images/footer/bg-footer.webp);
  }
}
@media screen and (min-width: 1921px) {
  .bl_cta {
    background-size: cover;
  }
}
.bl_cta::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75%;
  background: linear-gradient(180deg, rgba(35, 64, 49, 0) 0%, rgb(35, 64, 49) 8.64%);
  z-index: 2;
}
@media screen and (min-width: 1025px) {
  .bl_cta::after {
    height: clamp(580px, 622.905px + -2.235vw, 600px);
  }
}
.bl_cta .bl_cta_bg {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 545px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .bl_cta .bl_cta_bg {
    aspect-ratio: 16/9;
    height: 64%;
  }
}
.bl_cta .bl_cta_bg video {
  -o-object-fit: cover;
     object-fit: cover;
  width: auto;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .bl_cta .bl_cta_bg video {
    width: 100%;
  }
}
.bl_cta .bl_cta_bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  opacity: 0.7;
}
.bl_cta .bl_cta_innner {
  width: 100%;
  max-width: var(--content-width);
  margin-inline: auto;
  position: relative;
  z-index: 3;
}
.bl_cta .bl_cta_innner .columns {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-inline: auto;
  padding-inline: 30px;
}
.bl_cta .bl_cta_innner .columns .column {
  line-height: 1.5;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.bl_cta .bl_cta_innner .columns h3 {
  font-size: 22px;
  margin-right: -30px;
}
@media screen and (min-width: 1025px) {
  .bl_cta .bl_cta_innner .columns h3 {
    margin-right: 0;
    font-size: clamp(28px, 18.12px + 0.964vw, 32px);
  }
}
.bl_cta .bl_cta_innner .columns h3 + p {
  margin-top: 40px;
  line-height: 2.2;
  font-size: 14px;
}
@media screen and (min-width: 1025px) {
  .bl_cta .bl_cta_innner .columns h3 + p {
    font-size: clamp(16px, 11.06px + 0.482vw, 18px);
    line-height: 2.4;
    margin-top: 60px;
  }
}
.bl_cta .bl_cta_innner .columns figure {
  text-align: center;
}
.bl_cta .bl_cta_innner .bl_cta_buttonWrapper {
  background-color: #fff;
  background-image: url(../images/footer/bg-cta.webp);
  color: var(--text-color);
  margin-top: 96px;
  padding-block: 60px 50px;
  padding-inline: 15px;
  font-size: 14px;
}
@media screen and (min-width: 1025px) {
  .bl_cta .bl_cta_innner .bl_cta_buttonWrapper {
    font-size: 18px;
    padding-block: 80px 110px;
    padding-inline: 80px;
    margin-top: 168px;
  }
}
.bl_cta .bl_cta_innner .bl_cta_buttonWrapper .el_cta_heading {
  font-size: 22px;
  line-height: 1.54;
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .bl_cta .bl_cta_innner .bl_cta_buttonWrapper .el_cta_heading {
    margin-top: 20px;
    font-size: 32px;
  }
}
.bl_cta .bl_cta_innner .bl_cta_buttonWrapper .el_cta_free {
  background-color: #fff;
  padding-inline: 0.5em;
  padding-block: 10px 14px;
  max-width: 640px;
  margin-inline: auto;
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .bl_cta .bl_cta_innner .bl_cta_buttonWrapper .el_cta_free {
    margin-top: 30px;
    font-size: 24px;
  }
}
.bl_cta .bl_cta_innner .bl_cta_buttonWrapper .el_cta_free span {
  color: #8b0d23;
}
.bl_cta .bl_cta_innner .bl_cta_buttonWrapper .columns {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  position: relative;
  gap: 0;
  padding-inline: 0;
}
@media screen and (min-width: 1025px) {
  .bl_cta .bl_cta_innner .bl_cta_buttonWrapper .columns {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 55px;
    gap: 80px;
    padding-block: 20px;
  }
  .bl_cta .bl_cta_innner .bl_cta_buttonWrapper .columns::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background-color: #a6a6a7;
  }
}
.bl_cta .bl_cta_innner .bl_cta_buttonWrapper .columns .column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 440px;
}
@media screen and (min-width: 1025px) {
  .bl_cta .bl_cta_innner .bl_cta_buttonWrapper .columns .column {
    max-width: 440px;
  }
}
@media screen and (max-width: 1024px) {
  .bl_cta .bl_cta_innner .bl_cta_buttonWrapper .columns .column:first-child {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .bl_cta .bl_cta_innner .bl_cta_buttonWrapper .columns .column:last-child {
    padding-top: 50px;
    border-top: 1px solid #a6a6a7;
  }
}
.bl_cta .bl_cta_innner .bl_cta_buttonWrapper .el_button_heading {
  color: var(--main-color);
  font-size: 22px;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .bl_cta .bl_cta_innner .bl_cta_buttonWrapper .el_button_heading {
    text-align: left;
    font-size: 24px;
  }
}
.bl_cta .bl_cta_innner .bl_cta_buttonWrapper .el_button_heading + p {
  margin-block: 16px 30px;
  font-size: 14px;
}
@media screen and (min-width: 1025px) {
  .bl_cta .bl_cta_innner .bl_cta_buttonWrapper .el_button_heading + p {
    font-size: 16px;
    margin-block: 24px 48px;
  }
}
.bl_cta .bl_cta_innner .bl_cta_buttonWrapper .el_linkButton {
  margin-top: auto;
  color: var(--main-color);
  background-color: transparent;
  border: 1px solid var(--main-color);
  min-height: 70px;
  font-size: 16px;
}
@media screen and (min-width: 1025px) {
  .bl_cta .bl_cta_innner .bl_cta_buttonWrapper .el_linkButton {
    min-height: 90px;
    font-size: 18px;
    gap: 30px;
  }
}
.bl_cta .bl_cta_innner .bl_cta_buttonWrapper .el_linkButton:hover {
  opacity: 1;
  background-color: var(--main-color);
  color: #fff;
}
.bl_cta .bl_cta_innner .bl_cta_buttonWrapper .el_linkButton:hover::before {
  filter: invert(100%) brightness(2);
}
.bl_cta .bl_cta_innner .bl_cta_buttonWrapper .el_linkButton::after {
  content: none;
}
.bl_cta .bl_cta_innner .bl_cta_buttonWrapper .el_linkButton::before {
  transition: all var(--transition);
}
.bl_cta .bl_cta_innner .bl_cta_buttonWrapper .el_linkButton.for_form::before {
  content: "";
  background-image: url(../images/footer/icon-mail.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 36px;
  height: 25px;
}
.bl_cta .bl_cta_innner .bl_cta_buttonWrapper .el_linkButton.for_projects::before {
  content: "";
  background-image: url(../images/footer/icon-home.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 43px;
  height: 42px;
}
.bl_cta .bl_ctaShopInfo {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 40px;
  gap: 34px;
}
@media screen and (min-width: 1025px) {
  .bl_cta .bl_ctaShopInfo {
    margin-top: 67px;
    grid-template-columns: 38.5% 1fr;
    gap: 22px;
  }
}
.bl_cta .bl_ctaShopInfo .el_map {
  height: auto;
  width: 100%;
  margin-inline: auto;
}
.bl_cta .bl_ctaShopInfo .el_map iframe {
  width: 100%;
  height: 100%;
  min-height: 250px;
  border: 0;
}

.bl_lpContent .el_timeTable table,
.bl_cta .el_timeTable table {
  box-shadow: 3px 3px 6px #cecfd0;
  table-layout: fixed;
  font-size: 14px;
}
@media screen and (min-width: 1025px) {
  .bl_lpContent .el_timeTable table,
  .bl_cta .el_timeTable table {
    font-size: 20px;
  }
}
.bl_lpContent .el_timeTable thead th,
.bl_cta .el_timeTable thead th {
  background-color: var(--bg-sub-color);
  letter-spacing: 0;
  line-height: 1;
  padding-block: 10px;
}
@media screen and (min-width: 1025px) {
  .bl_lpContent .el_timeTable thead th,
  .bl_cta .el_timeTable thead th {
    padding-inline: 20px;
  }
}
.bl_lpContent .el_timeTable thead th,
.bl_cta .el_timeTable thead th {
  text-align: center;
}
.bl_lpContent .el_timeTable thead th:nth-child(2),
.bl_cta .el_timeTable thead th:nth-child(2) {
  text-align: left;
  padding-inline: 0;
  width: 23%;
}
@media screen and (min-width: 1025px) {
  .bl_lpContent .el_timeTable thead th:nth-child(2),
  .bl_cta .el_timeTable thead th:nth-child(2) {
    width: 30%;
    padding-inline: 20px;
  }
}
.bl_lpContent .el_timeTable thead tr.el_width_spacer th,
.bl_cta .el_timeTable thead tr.el_width_spacer th {
  padding-block: 6px;
}
.bl_lpContent .el_timeTable thead tr.has_note th,
.bl_cta .el_timeTable thead tr.has_note th {
  padding-block: 0;
  padding-inline: 8px;
}
.bl_lpContent .el_timeTable thead tr.has_note th span,
.bl_cta .el_timeTable thead tr.has_note th span {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  padding-inline: 10px;
  border-radius: 999px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.02em;
  color: #b50d23;
  background-color: #fff;
  border: 1px solid;
  margin-inline: auto;
  max-width: 475px;
  font-size: 12px;
  padding-block: 6px 7px;
}
@media screen and (min-width: 1025px) {
  .bl_lpContent .el_timeTable thead tr.has_note th span,
  .bl_cta .el_timeTable thead tr.has_note th span {
    font-size: 16px;
  }
}
.bl_lpContent .el_timeTable tbody td,
.bl_cta .el_timeTable tbody td {
  letter-spacing: 0.03em;
  line-height: 1.35;
  padding-block: 10px;
}
@media screen and (min-width: 1025px) {
  .bl_lpContent .el_timeTable tbody td,
  .bl_cta .el_timeTable tbody td {
    line-height: 1.75;
    padding-block: 30px;
    padding-inline: 20px;
  }
}
.bl_lpContent .el_timeTable tbody td,
.bl_cta .el_timeTable tbody td {
  vertical-align: middle;
}
.bl_lpContent .el_timeTable tbody td.open, .bl_lpContent .el_timeTable tbody td.close,
.bl_cta .el_timeTable tbody td.open,
.bl_cta .el_timeTable tbody td.close {
  padding-block: 10px;
  padding-inline: 10px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .bl_lpContent .el_timeTable tbody td.open, .bl_lpContent .el_timeTable tbody td.close,
  .bl_cta .el_timeTable tbody td.open,
  .bl_cta .el_timeTable tbody td.close {
    padding-block: 30px;
  }
}
.bl_lpContent .el_timeTable tbody td.open,
.bl_cta .el_timeTable tbody td.open {
  line-height: 1;
  color: var(--main-color);
}
.bl_lpContent .el_timeTable tbody tr.has_underline td,
.bl_cta .el_timeTable tbody tr.has_underline td {
  border-bottom: 1px solid var(--border-color);
}
.bl_lpContent .el_timeTable tr th:last-child, .bl_lpContent .el_timeTable tr th:first-child,
.bl_lpContent .el_timeTable tr td:last-child,
.bl_lpContent .el_timeTable tr td:first-child,
.bl_cta .el_timeTable tr th:last-child,
.bl_cta .el_timeTable tr th:first-child,
.bl_cta .el_timeTable tr td:last-child,
.bl_cta .el_timeTable tr td:first-child {
  width: 16px;
}
@media screen and (min-width: 1025px) {
  .bl_lpContent .el_timeTable tr th:last-child, .bl_lpContent .el_timeTable tr th:first-child,
  .bl_lpContent .el_timeTable tr td:last-child,
  .bl_lpContent .el_timeTable tr td:first-child,
  .bl_cta .el_timeTable tr th:last-child,
  .bl_cta .el_timeTable tr th:first-child,
  .bl_cta .el_timeTable tr td:last-child,
  .bl_cta .el_timeTable tr td:first-child {
    width: 3%;
  }
}
@media screen and (min-width: 1367px) {
  .bl_lpContent .el_timeTable tr th:last-child, .bl_lpContent .el_timeTable tr th:first-child,
  .bl_lpContent .el_timeTable tr td:last-child,
  .bl_lpContent .el_timeTable tr td:first-child,
  .bl_cta .el_timeTable tr th:last-child,
  .bl_cta .el_timeTable tr th:first-child,
  .bl_cta .el_timeTable tr td:last-child,
  .bl_cta .el_timeTable tr td:first-child {
    width: 24px;
  }
}
.bl_lpContent .el_timeTable tr th:last-child, .bl_lpContent .el_timeTable tr th:first-child,
.bl_lpContent .el_timeTable tr td:last-child,
.bl_lpContent .el_timeTable tr td:first-child,
.bl_cta .el_timeTable tr th:last-child,
.bl_cta .el_timeTable tr th:first-child,
.bl_cta .el_timeTable tr td:last-child,
.bl_cta .el_timeTable tr td:first-child {
  border: none !important;
}
.bl_lpContent .el_timeTable .el_note,
.bl_cta .el_timeTable .el_note {
  letter-spacing: 0.2em;
  margin-top: 10px;
  font-size: 14px;
}
@media screen and (min-width: 1025px) {
  .bl_lpContent .el_timeTable .el_note,
  .bl_cta .el_timeTable .el_note {
    font-size: 16px;
  }
}

.bl_cta_buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 17px;
  max-width: 1034px;
  margin-inline: auto;
  margin-top: 23px;
}
@media screen and (min-width: 1025px) {
  .bl_cta_buttons {
    margin-top: 37px;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 22px;
  }
}
.ly_siteHeader_nav .bl_cta_buttons {
  grid-template-columns: 1fr;
  margin-top: 6px;
}
@media screen and (min-width: 1025px) {
  .ly_siteHeader_nav .bl_cta_buttons {
    display: none;
  }
}
.bl_cta_buttons a.el_linkButton {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background-color: var(--main-color);
  color: #fff;
  padding-inline: 1em;
  padding-block: 14px 20px;
  position: relative;
  width: 100%;
  height: auto;
  transition: filter var(--transition-time);
  white-space: normal;
  gap: 0;
  min-height: 93px;
  transition: all var(--transition);
  min-height: 130px;
}
.bl_cta_buttons a.el_linkButton::after {
  content: none;
}
@media (hover: hover) {
  .bl_cta_buttons a.el_linkButton:hover {
    filter: brightness(1.15);
  }
}
.bl_cta_buttons a.el_linkButton.is_beginnersReservation {
  background-color: var(--sub-color);
}
.bl_cta_buttons a.el_linkButton .el_linkButton_title {
  font-weight: var(--fw-medium);
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 1.75;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bl_cta_buttons a.el_linkButton.is_webInquiry {
  padding-block: 20px 20px;
}
.bl_cta_buttons a.el_linkButton.is_webInquiry .el_linkButton_title {
  font-size: 18px;
}
.bl_cta_buttons a.el_linkButton .el_linkButton_tel {
  font-size: 24px;
  letter-spacing: 0.03em;
  font-weight: var(--fw-bold);
  line-height: 1.75;
}
.bl_cta_buttons a.el_linkButton .el_linkButton_time {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.33;
}
.bl_cta_buttons a.el_linkButton .el_linkButton_time span {
  font-size: 15px;
  line-height: 1.07;
}
.bl_cta_buttons .el_ctaButton_Icon::before {
  content: "";
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
}
.bl_cta_buttons .el_ctaButton_Icon.is_telIcon::before {
  width: 24px;
  height: 24px;
  background-image: url(../images/footer/icon-phone.svg);
}
.bl_cta_buttons .el_ctaButton_Icon.is_bookingIcon::before {
  width: 26px;
  height: 26px;
  background-image: url(../images/footer/icon-booking.svg);
}
.bl_cta_buttons .el_ctaButton_Icon.is_pcIcon::before {
  width: 30px;
  height: 26px;
  background-image: url(../images/footer/icon-pc.svg);
}

.bl_goTopButton {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  right: 50px;
  bottom: 40px;
  transform-origin: bottom right;
  z-index: 7;
  transition: all var(--transition-time) ease;
  width: 7px;
  height: 61px;
  background-image: url(../images/footer/icon-go-top.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.bl_goTopButton.is_show {
  opacity: 1;
  visibility: visible;
}
@media (hover: hover) {
  .bl_goTopButton:hover {
    opacity: 0.7;
  }
}

.bl_mainVisual {
  position: relative;
  width: 100vw;
  max-width: 1920px;
  margin-left: calc(50% - 50vw);
}
.bl_mainVisual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.22);
  z-index: 2;
}
.bl_mainVisual .bl_mainVisual_slide .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: transform 10s linear;
}
.bl_mainVisual .bl_mainVisual_slide .swiper-slide-prev img,
.bl_mainVisual .bl_mainVisual_slide .swiper-slide-active img {
  transform: scale(1.05);
}
.bl_mainVisual .bl_mainVisual_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: var(--content-width);
  margin-inline: auto;
  width: 100%;
}
.bl_mainVisual .bl_mainVisual_copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  text-align: center;
  margin-inline: auto;
  text-shadow: 0 0 15px #000000;
}
.bl_mainVisual .el_mainVisual_copy .el_mainVisual_primaryCopy {
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 1.3;
  position: relative;
  padding-bottom: 0.307em;
}
@media screen and (min-width: 600px) {
  .bl_mainVisual .el_mainVisual_copy .el_mainVisual_primaryCopy {
    font-size: 36px;
  }
}
.bl_mainVisual .el_mainVisual_copy .el_mainVisual_secondaryCopy {
  font-size: 14px;
  line-height: 1.3;
  margin-top: 1em;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 600px) {
  .bl_mainVisual .el_mainVisual_copy .el_mainVisual_secondaryCopy {
    font-size: 21px;
    letter-spacing: 0.14em;
  }
}
.bl_mainVisual .el_vLine {
  width: 1px;
  height: 26px;
  background-color: #fff;
  margin: 17px auto 0;
}
@media screen and (min-width: 600px) {
  .bl_mainVisual .el_vLine {
    height: 40px;
    margin-top: 25px;
  }
}
.bl_mainVisual .el_mainVisual_subCopy {
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  letter-spacing: 0.04em;
  margin-top: 15px;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .bl_mainVisual .el_mainVisual_subCopy {
    margin-top: 30px;
    font-size: 18px;
  }
}

.page,
.home {
  --article-mt: 0;
  --section-ptb: 96px;
}
@media screen and (min-width: 1025px) {
  .page,
  .home {
    --section-ptb: 168px;
  }
}
.page .section_pb_tb,
.home .section_pb_tb {
  padding-block: var(--section-ptb);
}
.page section.full-width,
.home section.full-width {
  padding-inline: var(--site-inline-padding);
}

.home .bl_article_content {
  max-width: none;
  padding-inline: 0;
}
.home .bl_article_content section {
  max-width: none;
}
.home .bl_article_content section .bl_section_inner > h2 + p,
.home .bl_article_content section .bl_section_inner > p + p {
  margin-top: 2em;
}

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

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

section.bl_top_concept_copy {
  background-color: #ffffee;
  background-image: url(../images/top/bg-concept-upper-sp.webp);
  background-size: cover;
  --section-ptb: 80px 0;
}
@media screen and (min-width: 1025px) {
  section.bl_top_concept_copy {
    background-image: url(../images/top/bg-concept-upper.webp);
    --section-ptb: 168px 0;
  }
}
section.bl_top_concept_copy h2 {
  text-align: center;
  margin-inline: auto;
  --page-h2-fsz: 22px;
}
@media screen and (min-width:520px) {
  section.bl_top_concept_copy h2 {
    --page-h2-fsz: 24px;
  }
}
@media screen and (min-width: 1025px) {
  section.bl_top_concept_copy h2 {
    --page-h2-fsz: 32px;
  }
}
section.bl_top_concept_copy h2 + p.is_large_size {
  margin-top: 1.33333333em !important;
}
@media screen and (min-width: 1025px) {
  section.bl_top_concept_copy h2 + p.is_large_size {
    margin-top: 60px !important;
  }
}
@media screen and (max-width: 1024px) {
  section.bl_top_concept_copy h2 + p.is_large_size + p.is_medium_size {
    margin-top: 1.2em !important;
  }
}
section.bl_top_concept_copy p.is_large_size {
  color: var(--main-color);
  --large-font-size: 18px;
}
@media screen and (min-width:520px) {
  section.bl_top_concept_copy p.is_large_size {
    --large-font-size: 21px;
  }
}
@media screen and (min-width: 1025px) {
  section.bl_top_concept_copy p.is_large_size {
    --large-font-size: 30px;
    margin-top: 60px;
  }
}
section.bl_top_concept_copy p.is_medium_size {
  --medium-font-size: 12px;
}
@media screen and (min-width:520px) {
  section.bl_top_concept_copy p.is_medium_size {
    --medium-font-size: 14px;
  }
}
@media screen and (min-width: 1025px) {
  section.bl_top_concept_copy p.is_medium_size {
    margin-top: 4px;
    --medium-font-size: 21px;
  }
}
section.bl_top_concept_copy .bl_mediaText {
  z-index: 2;
  position: relative;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  section.bl_top_concept_copy .bl_mediaText {
    grid-template-areas: "content" "image";
    gap: 50px;
    margin-bottom: -50px;
  }
  section.bl_top_concept_copy .bl_mediaText .bl_mediaText_content {
    grid-area: content;
  }
  section.bl_top_concept_copy .bl_mediaText .bl_mediaText_img {
    grid-area: image;
    max-width: 70vw;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1025px) {
  section.bl_top_concept_copy .bl_mediaText {
    margin-top: 140px;
    grid-template-columns: 587px 1fr;
    padding-inline: clamp(0px, -200.649px + 19.595vw, 58px) 0;
    gap: 70px;
  }
}
@media screen and (min-width: 1025px) {
  section.bl_top_concept_copy .bl_mediaText .bl_mediaText_img {
    margin-top: 40px;
    margin-bottom: -60px;
  }
}
section.bl_top_concept_copy .bl_mediaText .bl_mediaText_content .el_copy_text {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: center;
}
section.bl_top_concept_copy .bl_mediaText .bl_mediaText_content p {
  writing-mode: vertical-rl;
  color: var(--main-color);
  margin-top: 0;
}
section.bl_top_concept_copy .bl_mediaText .bl_mediaText_content p.is_medium_size {
  line-height: 1.26;
  letter-spacing: 0.16em;
  --medium-font-size: 18px;
}
@media screen and (min-width:520px) {
  section.bl_top_concept_copy .bl_mediaText .bl_mediaText_content p.is_medium_size {
    --medium-font-size: 21px;
  }
}
@media screen and (min-width: 1025px) {
  section.bl_top_concept_copy .bl_mediaText .bl_mediaText_content p.is_medium_size {
    --medium-font-size: 30px;
    margin-left: 0.5em;
  }
}
section.bl_top_concept_copy .bl_mediaText .bl_mediaText_content p.is_large_size {
  line-height: 2.1;
  --large-font-size: 28px;
}
@media screen and (min-width:520px) {
  section.bl_top_concept_copy .bl_mediaText .bl_mediaText_content p.is_large_size {
    --large-font-size: 32px;
  }
}
@media screen and (min-width: 1025px) {
  section.bl_top_concept_copy .bl_mediaText .bl_mediaText_content p.is_large_size {
    line-height: 1.82;
    --large-font-size: 52px;
  }
}
section.bl_top_concept_copy .bl_mediaText .bl_mediaText_content p:nth-child(2) {
  margin-top: -0.5em;
}
section.bl_top_concept_copy .bl_mediaText .bl_mediaText_content p:last-child {
  margin-top: 3em;
}

section.bl_top_concept {
  background-image: url(../images/top/bg-concept.webp);
  background-size: cover;
  background-position: center;
  color: #fff;
  --section-ptb: 0;
}
@media screen and (min-width: 1025px) {
  section.bl_top_concept {
    --section-ptb: 168px 120px;
  }
}
@media screen and (max-width: 1024px) {
  section.bl_top_concept {
    position: relative;
    background-image: none;
  }
  section.bl_top_concept::before {
    content: "";
    position: sticky;
    top: 0;
    display: block;
    height: 100vh;
    height: 100dvh;
    margin-inline: calc(var(--site-inline-padding) * -1);
    background-image: url(../images/top/bg-concept.webp);
    background-size: cover;
    background-position: center;
    z-index: 0;
  }
  section.bl_top_concept > .bl_section_inner {
    margin-top: -100vh;
    margin-top: -100dvh;
    position: relative;
    z-index: 1;
    padding-block: 110px 96px;
  }
}
@media screen and (max-width: 1024px) and (min-width: 1025px) {
  section.bl_top_concept > .bl_section_inner {
    padding-block: 96px;
  }
}
@media screen and (min-width: 1025px) {
  section.bl_top_concept {
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 1025px) {
  section.bl_top_concept .bl_columns {
    grid-template-columns: 40% 1fr;
    gap: 20px;
  }
}
section.bl_top_concept .bl_columns .is_heading {
  align-self: center;
  letter-spacing: 0.1em;
  font-size: 22px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_concept .bl_columns .is_heading {
    font-size: 40px;
    font-size: clamp(35px, 20.029px + 1.462vw, 40px);
    line-height: 2;
    margin-top: -20px;
    margin-top: clamp(-100px, -339.532px + 23.392vw, -20px);
  }
}
section.bl_top_concept .bl_columns .is_content p {
  line-height: 2.4;
  margin-top: 40px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_concept .bl_columns .is_content p {
    margin-top: 0;
    font-size: clamp(16px, 1.029px + 1.462vw, 21px);
    line-height: 2.33;
  }
}
section.bl_top_concept .bl_columns .is_content p + p {
  margin-top: 60px;
}
section.bl_top_concept .bl_columns .is_content .el_linkButton {
  --main-color: #fff;
  margin-top: 60px;
  margin-inline: auto 0;
  width: 220px;
  letter-spacing: 0.3em;
}
@media screen and (min-width: 1025px) {
  section.bl_top_concept .bl_columns .is_content .el_linkButton {
    margin-inline: auto;
    width: 80%;
    max-width: 400px;
    margin-top: 80px;
    margin-inline: auto 0;
    width: -moz-fit-content;
    width: fit-content;
  }
}

section.bl_top_service {
  position: relative;
  --section-ptb: 96px 120px;
  background-image: url(../images/top/bg-service-sp.webp);
}
@media screen and (min-width: 1025px) {
  section.bl_top_service {
    background-image: url(../images/top/bg-service.webp);
    --section-ptb: 96px calc(168px + 120px);
  }
  section.bl_top_service::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url(../images/top/bg-service-l.webp), url(../images/top/bg-service-l.webp);
    background-size: 1066px 860px, 1066px 860px;
    background-position: left top, left bottom;
    background-repeat: no-repeat, no-repeat;
  }
  section.bl_top_service::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url(../images/top/bg-service-r.webp);
    background-size: 1066px 860px;
    background-position: right 55%;
    background-repeat: no-repeat;
  }
}
section.bl_top_service .bl_section_inner {
  position: relative;
  z-index: 2;
}
section.bl_top_service .bl_mediaText {
  position: relative;
  gap: 48px;
}
section.bl_top_service .bl_mediaText + .bl_mediaText {
  margin-top: 80px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_service .bl_mediaText + .bl_mediaText {
    margin-top: 120px;
  }
}
section.bl_top_service h2 + .bl_mediaText {
  margin-top: 80px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_service h2 + .bl_mediaText {
    margin-top: 150px;
  }
}
@media screen and (min-width: 1025px) {
  section.bl_top_service .el_mediaText_content {
    padding-left: 90px;
  }
}
@media screen and (min-width: 1500px) {
  section.bl_top_service .el_mediaText_content {
    white-space: nowrap;
  }
}
@media screen and (min-width: 1025px) {
  section.bl_top_service .is_image_left .el_mediaText_content {
    padding-left: clamp(0px, -103.073px + 10.056vw, 90px);
  }
}
section.bl_top_service .el_heading_tab {
  position: relative;
  letter-spacing: 0.02em;
  padding-block: 7px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_service .el_heading_tab {
    position: absolute;
    top: 20px;
    left: -12px;
    transform: rotate(-90deg);
    transform-origin: bottom;
  }
}
section.bl_top_service .el_heading_tab::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 43px;
  height: 1px;
  background-color: var(--text-color);
}
@media screen and (min-width: 1025px) {
  section.bl_top_service .el_heading_tab::before {
    left: auto;
    right: 0;
  }
}
section.bl_top_service h3 {
  color: var(--main-color);
  --page-h3-fsz: 22px;
  --media-content-mt: 22px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_service h3 {
    --media-content-mt: 20px;
    --page-h3-fsz: 48px;
    --page-h3-fsz: clamp(36px, 10.185px + 2.521vw, 48px);
  }
}
section.bl_top_service h3 + p {
  font-size: 14px;
  line-height: 2.8;
  --media-content-mt: 32px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_service h3 + p {
    --media-content-mt: 60px;
    font-size: clamp(14px, 5.395px + 0.84vw, 18px);
    line-height: 2.17;
  }
}
section.bl_top_service .el_mediaText_content {
  align-self: center;
}
section.bl_top_service .el_mediaText_content .el_linkButton {
  width: -moz-fit-content;
  width: fit-content;
  --media-content-mt: 38px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_service .el_mediaText_content .el_linkButton {
    --media-content-mt: 55px;
  }
}

.home .bl_article_content section.bl_top_cover {
  background-image: url(../images/top/banner.webp);
  background-size: cover;
  background-position: center;
  height: auto;
  aspect-ratio: 1920/887;
  position: relative;
  z-index: 2;
  --article-mt: -20px;
  margin-bottom: -20px;
}
@media screen and (min-width: 1025px) {
  .home .bl_article_content section.bl_top_cover {
    --article-mt: -80px;
  }
}

section.bl_service_projects .bl_projects_wrapper,
section.bl_top_projects .bl_projects_wrapper {
  margin-top: 0 !important;
  overflow-x: auto;
}
@media screen and (max-width: 1024px) {
  section.bl_service_projects .bl_projects_wrapper,
  section.bl_top_projects .bl_projects_wrapper {
    padding-bottom: 55px;
    width: calc(100vw - (50vw - 50%));
    padding-right: 20px;
  }
}
section.bl_service_projects .bl_projects_wrapper::-webkit-scrollbar,
section.bl_top_projects .bl_projects_wrapper::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 1024px) {
  section.bl_service_projects .bl_projects_wrapper .scroll-hint-vertical::after,
  section.bl_top_projects .bl_projects_wrapper .scroll-hint-vertical::after {
    content: "↓ スクロールできます";
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 10px;
    border-radius: 4px;
    opacity: 1;
    transition: all 0.4s;
    pointer-events: none;
    visibility: visible;
  }
  section.bl_service_projects .bl_projects_wrapper .scroll-hint-vertical.scrolled::after,
  section.bl_top_projects .bl_projects_wrapper .scroll-hint-vertical.scrolled::after {
    opacity: 0;
    visibility: hidden;
  }
  section.bl_service_projects .bl_projects_wrapper .scroll-hint-vertical::before,
  section.bl_top_projects .bl_projects_wrapper .scroll-hint-vertical::before {
    content: "";
    position: absolute;
    top: 0;
    left: -7px;
    width: calc(100% - 7px);
    height: 320px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 96%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
    transition: background var(--transition);
  }
  section.bl_service_projects .bl_projects_wrapper .scroll-hint-vertical.scrolling::before,
  section.bl_top_projects .bl_projects_wrapper .scroll-hint-vertical.scrolling::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(255, 255, 255, 0) 4%, rgba(255, 255, 255, 0) 96%, rgba(1, 1, 1, 0.2) 100%);
  }
  section.bl_service_projects .bl_projects_wrapper .scroll-hint-vertical.scrollend::before,
  section.bl_top_projects .bl_projects_wrapper .scroll-hint-vertical.scrollend::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(255, 255, 255, 0) 4%, rgba(255, 255, 255, 0) 100%);
  }
}
section.bl_service_projects .scroll-bar,
section.bl_top_projects .scroll-bar {
  width: 100%;
  background-color: #babbbc;
  margin-inline: auto;
  height: 6px;
  margin-top: 0 !important;
}
@media screen and (min-width: 1025px) {
  section.bl_service_projects .scroll-bar,
  section.bl_top_projects .scroll-bar {
    display: none;
  }
}
section.bl_service_projects .scroll-bar-thumb,
section.bl_top_projects .scroll-bar-thumb {
  height: 100%;
  width: 0;
  background: var(--main-color);
  border-radius: 1px;
  transition: width 0.1s linear;
}
section.bl_service_projects .bl_projects_grid,
section.bl_top_projects .bl_projects_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  section.bl_service_projects .bl_projects_grid,
  section.bl_top_projects .bl_projects_grid {
    min-width: 1100px;
  }
}
section.bl_service_projects .bl_projects_item::after,
section.bl_top_projects .bl_projects_item::after {
  content: "";
  background-image: url(../images/common/arrow-card.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 375px;
  height: 14px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
section.bl_service_projects .el_linkButton,
section.bl_top_projects .el_linkButton {
  margin-top: 48px !important;
}
@media screen and (min-width: 768px) {
  section.bl_service_projects .el_linkButton,
  section.bl_top_projects .el_linkButton {
    margin-inline: auto !important;
  }
}

section.bl_top_flow {
  background-size: auto 100%;
  background-position: center;
  background-repeat: repeat-x;
  position: relative;
  background-image: url(../images/top/bg-flow-sp.webp);
}
@media screen and (min-width: 1025px) {
  section.bl_top_flow {
    background-image: url(../images/top/bg-flow-80.webp);
  }
}
section.bl_top_flow .bl_flow_slides {
  height: 100vh;
  height: 100dvh;
  position: sticky;
  top: 0;
}
@media screen and (max-width: 767px) {
  section.bl_top_flow .bl_flow_slides {
    display: none;
  }
}
section.bl_top_flow .bl_flow_slides img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in;
}
section.bl_top_flow .bl_flow_slides img.is_active {
  opacity: 1;
}
section.bl_top_flow .bl_flow_content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  section.bl_top_flow .bl_flow_content {
    padding-inline: 0 40px;
    margin-top: 70px !important;
    grid-template-columns: 48% 1fr;
    gap: clamp(30px, -73.784px + 10.135vw, 60px);
    margin-inline: calc(50% - 50vw);
  }
}
@media screen and (min-width: 1367px) {
  section.bl_top_flow .bl_flow_content {
    grid-template-columns: 690px 1fr;
  }
}
section.bl_top_flow .bl_flow_list {
  max-width: 980px;
}
section.bl_top_flow .bl_flow_list > li {
  position: relative;
  list-style: none;
  padding-block: 40px 40px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_flow .bl_flow_list > li {
    padding-block: 60px 70px;
    padding-inline: clamp(80px, -6.486px + 8.446vw, 105px) clamp(20px, -170.27px + 18.581vw, 75px);
  }
}
section.bl_top_flow .bl_flow_list > li + li {
  border-top: 1px solid var(--border-color);
}
section.bl_top_flow .bl_flow_list > li[data-index="5"] .el_flow_content {
  max-width: 764px;
}
section.bl_top_flow .bl_flow_list .el_flow_index {
  position: absolute;
  left: 0;
  color: var(--main-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  top: 26px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_flow .bl_flow_list .el_flow_index {
    top: 32px;
  }
}
section.bl_top_flow .bl_flow_list .el_flow_index span {
  display: block;
  line-height: 1;
}
section.bl_top_flow .bl_flow_list .el_flow_index span:first-child {
  font-size: 14px;
}
section.bl_top_flow .bl_flow_list .el_flow_index span:last-child {
  font-size: 48px;
}
section.bl_top_flow .bl_flow_list .el_flow_content h3 {
  --page-h3-fsz: 22px;
  line-height: 1.625;
  padding-left: 80px;
  min-height: 54px;
  margin-top: 14px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_flow .bl_flow_list .el_flow_content h3 {
    margin-top: 0;
    padding-left: 0;
    --page-h3-fsz: 28px;
  }
}
section.bl_top_flow .bl_flow_list .el_flow_content .el_flow_description {
  margin-top: 30px;
  font-size: 14px;
  line-height: 2;
}
@media screen and (min-width: 1025px) {
  section.bl_top_flow .bl_flow_list .el_flow_content .el_flow_description {
    margin-top: 20px;
    font-size: 16px;
    line-height: 2.1875;
  }
}
section.bl_top_flow .bl_flow_list .el_flow_content .el_flow_description a {
  color: var(--link-color);
}
@media (hover: hover) {
  section.bl_top_flow .bl_flow_list .el_flow_content .el_flow_description a:hover {
    text-decoration: underline;
  }
}
section.bl_top_flow .bl_flow_list .el_flow_content .el_flow_image {
  max-width: 500px;
  margin-inline: auto;
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  section.bl_top_flow .bl_flow_list .el_flow_content .el_flow_image {
    display: none;
  }
}
section.bl_top_flow .bl_flow_list .el_flow_content .bl_flow_note {
  background-color: #fff;
  margin-top: 30px;
  padding-block: 35px;
  padding-inline: 20px;
  font-size: 14px;
  line-height: 2;
}
@media screen and (min-width: 1025px) {
  section.bl_top_flow .bl_flow_list .el_flow_content .bl_flow_note {
    padding-block: 32px;
    padding-inline: 35px;
    font-size: 16px;
    line-height: 2.9375;
  }
}
section.bl_top_flow .bl_flow_list .el_flow_content .bl_flow_note hr {
  width: 46px;
  height: 1px;
  background-color: var(--text-color);
  margin-inline: 0;
  border: none;
  margin-block: 16px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_flow .bl_flow_list .el_flow_content .bl_flow_note hr {
    margin-block: 20px;
  }
}
section.bl_top_flow .bl_flow_list .el_flow_content .bl_flow_note ul {
  margin-top: 14px;
  padding-left: 0.5em;
}
@media screen and (min-width: 1025px) {
  section.bl_top_flow .bl_flow_list .el_flow_content .bl_flow_note ul {
    margin-top: 20px;
    padding-left: clamp(8px, -75.027px + 8.108vw, 32px);
  }
}
section.bl_top_flow .bl_flow_list .el_flow_content .bl_flow_note ul li {
  line-height: 1.75;
  text-indent: -0.8em;
  padding-left: 0.8em;
}
section.bl_top_flow .bl_flow_list .el_flow_content .bl_flow_note ul li + li {
  margin-top: 2px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_flow .bl_flow_list .el_flow_content .bl_flow_note ul li + li {
    margin-top: 5px;
  }
}
section.bl_top_flow .bl_flow_list .el_flow_content .bl_flow_note ul li::before {
  content: ">";
}

@media screen and (max-width: 1024px) {
  section.bl_top_news {
    --section-ptb: 36px;
  }
}
section.bl_top_news .bl_news_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 65px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_news .bl_news_wrapper {
    grid-template-columns: 190px 1fr;
    gap: 120px;
  }
}
section.bl_top_news .bl_news_wrapper + .el_linkButton {
  margin-top: 45px;
  margin-inline: auto 0;
}
@media screen and (min-width: 768px) {
  section.bl_top_news .bl_news_wrapper + .el_linkButton {
    margin-inline: auto;
  }
}
@media screen and (min-width: 1025px) {
  section.bl_top_news .bl_news_wrapper + .el_linkButton {
    display: none;
  }
}
section.bl_top_news .el_news_heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 90px;
}
@media screen and (max-width: 1024px) {
  section.bl_top_news .el_news_heading a {
    display: none;
  }
}
section.bl_top_news .bl_newsList {
  border-top: 1px solid var(--border-color);
}
section.bl_top_news .bl_newsList a {
  display: block;
  padding-inline: 20px;
  border-bottom: 1px solid var(--border-color);
  transition: opacity var(--transition);
  padding-block: 15px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_news .bl_newsList a {
    padding-block: 20px;
  }
}
section.bl_top_news .bl_newsList a .el_news_cat {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
section.bl_top_news .bl_newsList a .el_news_cat > span {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
  color: #fff;
  padding-inline: 27px;
  line-height: 1;
  padding-block: 5px;
  min-height: 36px;
  white-space: nowrap;
  font-size: 14px;
}
section.bl_top_news .bl_newsList a .el_news_content {
  display: flex;
  gap: 4px;
  margin-top: 10px;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (min-width: 1025px) {
  section.bl_top_news .bl_newsList a .el_news_content {
    align-items: center;
    flex-direction: row;
    gap: 50px;
  }
}
section.bl_top_news .bl_newsList a .el_news_content .posted-on {
  flex-shrink: 0;
  white-space: nowrap;
}
section.bl_top_news .bl_newsList a .el_news_content .el_newsTab_title {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  section.bl_top_news .bl_newsList a .el_news_content .el_newsTab_title {
    line-clamp: 1;
    -webkit-line-clamp: 1;
  }
}
section.bl_top_news .bl_newsList a .el_news_content::after {
  content: "";
  background-image: url(../images/common/arrow-news.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 50px;
  height: 9px;
  margin-left: auto;
  flex-shrink: 0;
}
@media (hover: hover) {
  section.bl_top_news .bl_newsList a:hover {
    opacity: 0.8;
  }
}

section.bl_top_about {
  background-size: auto 100%;
  background-position: center;
  background-repeat: repeat-x;
  position: relative;
  background-image: url(../images/top/bg-about-sp.webp);
  padding-block: 96px 168px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_about {
    padding-block: 168px 248px;
    background-image: url(../images/top/bg-about.webp);
  }
}
section.bl_top_about .bl_top_about_img {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(300px, -170.133px + 45.867vw, 472px);
}
@media screen and (max-width: 1024px) {
  section.bl_top_about .bl_top_about_img {
    width: clamp(190px, -140px + 42.969vw, 300px);
  }
}
@media screen and (max-width: 767px) {
  section.bl_top_about .bl_top_about_img {
    display: none;
  }
}
section.bl_top_about .bl_section_inner {
  position: relative;
  z-index: 2;
  --section-mt: 38px;
}
section.bl_top_about .bl_section_inner > * + * {
  margin-top: var(--section-mt) !important;
}
section.bl_top_about .is_large_size {
  color: var(--main-color);
  --large-font-size: 25px;
  margin-inline: -10px -15px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_about .is_large_size {
    --large-font-size: 40px;
  }
}
section.bl_top_about .is_medium_size {
  --medium-font-size: 14px;
  line-height: 2.4;
}
@media screen and (min-width: 1025px) {
  section.bl_top_about .is_medium_size {
    --medium-font-size: 16px;
    line-height: 2.56;
  }
}
section.bl_top_about .el_imageButton {
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: opacity var(--transition);
  width: 100%;
  height: 100px;
  max-width: 400px;
  --section-mt: 50px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_about .el_imageButton {
    --section-mt: 60px;
    height: 220px;
    max-width: 775px;
  }
}
@media (hover: hover) {
  section.bl_top_about .el_imageButton:hover {
    opacity: 0.8;
  }
}
section.bl_top_about .el_imageButton + .el_imageButton {
  --section-mt: 14px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_about .el_imageButton + .el_imageButton {
    --section-mt: 32px;
  }
}
section.bl_top_about .el_imageButton.for_company {
  background-image: url(../images/top/about-2.webp);
}
section.bl_top_about .el_imageButton.for_faq {
  background-image: url(../images/top/about-3.webp);
}
section.bl_top_about .el_imageButton .el_imageButton_content {
  background-color: rgba(51, 51, 51, 0.7);
  color: #fff;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1.55;
  height: 100%;
  padding-inline: 17px;
  padding-block: 15px;
  width: 126px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_about .el_imageButton .el_imageButton_content {
    width: 280px;
    padding-inline: 38px;
    font-size: 24px;
  }
}
section.bl_top_about .el_imageButton .el_imageButton_content span {
  font-size: 12px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_about .el_imageButton .el_imageButton_content span {
    font-size: 14px;
  }
}

.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_404 .bl_pageFootButtons a {
  height: 60px;
}

.page-philosophy .ly_pageHeader {
  background-image: url(../images/page/philosophy-mv-sp.webp);
  height: 580px;
}
.page-philosophy .ly_pageHeader::before {
  background: #000;
  opacity: 0.13;
}
@media screen and (min-width: 768px) {
  .page-philosophy .ly_pageHeader {
    background-image: url(../images/page/philosophy-mv.webp);
    height: 910px;
  }
}
.page-philosophy .bl_pageHeader_inner {
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .page-philosophy .ly_breadcrumb_wrapper {
    margin-top: 115px;
  }
}
.page-philosophy .bl_breadcrumb {
  color: #fff;
}
.page-philosophy .bl_philosophy_abst {
  position: relative;
  z-index: 2;
  color: #fff;
  background: linear-gradient(180deg, rgba(35, 64, 49, 0) 0%, rgb(35, 64, 49) 5.79%, rgb(35, 64, 49) 94.24%, rgba(35, 64, 49, 0) 100%);
}
@media screen and (min-width: 1025px) {
  .page-philosophy .bl_philosophy_abst {
    background: linear-gradient(180deg, rgba(35, 64, 49, 0) 0%, rgb(35, 64, 49) 160px, rgb(35, 64, 49) 94.24%, rgba(35, 64, 49, 0) 100%);
  }
}
.page-philosophy .bl_philosophy_abst {
  margin-top: -196px;
  padding-block: 280px 200px;
}
@media screen and (min-width: 768px) {
  .page-philosophy .bl_philosophy_abst {
    margin-top: -350px;
    padding-block: 285px 285px;
    margin-top: clamp(-350px, 450px + -78.125vw, -150px);
    padding-block: clamp(185px, -115px + 39.063vw, 285px);
  }
}
.page-philosophy .bl_article_content h2 {
  color: #fff;
  position: relative;
  --page-h2-fsz: 28px;
  line-height: 2.14;
  --page-h2-fsz: 22px;
  line-height: 2;
  padding-inline: 67px 0;
}
@media screen and (min-width: 768px) {
  .page-philosophy .bl_article_content h2 {
    line-height: 2.05;
    --page-h2-fsz: 42px;
    --page-h2-fsz: clamp(28px, -14px + 5.469vw, 42px);
    padding-inline: 130px;
  }
}
.page-philosophy .bl_article_content h2 .el_subtitle {
  position: absolute;
  top: 36px;
  left: 12px;
  transform: rotate(-90deg);
  transform-origin: left;
  font-size: 18px;
  line-height: 1;
}
.page-philosophy .bl_article_content h2.lp_heading {
  padding-inline: 0;
  --page-h2-fsz: 30px;
}
@media screen and (min-width: 1025px) {
  .page-philosophy .bl_article_content h2.lp_heading {
    --page-h2-fsz: 36px;
  }
}
.page-philosophy .bl_article_content .bl_philosophy_abst_copy {
  text-align: center;
  color: #667c3b;
  opacity: 0.5;
  line-height: 1.1;
  margin-top: 40px;
  font-size: 21px;
  margin-bottom: -0.8em;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .page-philosophy .bl_article_content .bl_philosophy_abst_copy {
    margin-bottom: -0.3em;
    margin-top: 115px;
    margin-top: clamp(40px, -185px + 29.297vw, 115px);
    font-size: 32px;
    font-size: clamp(22px, -8px + 3.906vw, 32px);
  }
}
.page-philosophy .bl_article_content .el_contente_banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding-inline: 20px;
  margin-top: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-philosophy .bl_article_content .el_contente_banner {
    flex-wrap: nowrap;
  }
}
.page-philosophy .bl_article_content .el_contente_banner > figure img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .page-philosophy .bl_article_content .el_contente_banner > figure:first-child {
    order: 2;
    width: calc(50% - 5px);
  }
}
@media screen and (min-width: 768px) {
  .page-philosophy .bl_article_content .el_contente_banner > figure:first-child {
    order: 1;
  }
}
@media screen and (max-width: 767px) {
  .page-philosophy .bl_article_content .el_contente_banner > figure:nth-child(2) {
    order: 1;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .page-philosophy .bl_article_content .el_contente_banner > figure:nth-child(2) {
    order: 2;
  }
}
.page-philosophy .bl_article_content .el_contente_banner > figure:last-child {
  order: 3;
}
@media screen and (max-width: 767px) {
  .page-philosophy .bl_article_content .el_contente_banner > figure:last-child {
    width: calc(50% - 5px);
  }
}
.page-philosophy .bl_article_content .el_contente_banner + p {
  margin-top: 40px;
  font-size: 14px;
  line-height: 2.51;
}
@media screen and (min-width: 1025px) {
  .page-philosophy .bl_article_content .el_contente_banner + p {
    margin-top: 110px;
    font-size: clamp(18px, 10.59px + 0.723vw, 21px);
    line-height: 2.71;
  }
}
.page-philosophy .bl_philosophy_values {
  background-image: url(../images/page/bg-philosophy.webp);
  background-position: center;
  background-size: cover;
  background-repeat: repeat-x;
  --page-h3-fsz: 22px;
  margin-top: -120px;
  padding-block: 210px 300px;
}
@media screen and (min-width: 1025px) {
  .page-philosophy .bl_philosophy_values {
    --page-h3-fsz: 40px;
    --page-h3-fsz: clamp(26px, 9.966px + 1.564vw, 40px);
    margin-top: -120px;
    padding-block: 200px 300px;
  }
}
.page-philosophy .bl_philosophy_values .bl_mediaText {
  position: relative;
  gap: 40px;
  --image-width: 59.3%;
  --image-width: clamp(460px, -72.542px + 51.955vw, 925px);
}
@media screen and (min-width: 1025px) {
  .page-philosophy .bl_philosophy_values .bl_mediaText {
    gap: 80px;
  }
}
.page-philosophy .bl_philosophy_values .el_heading_tab {
  color: var(--main-color);
  font-size: 14px;
}
@media screen and (min-width: 1025px) {
  .page-philosophy .bl_philosophy_values .el_heading_tab {
    font-size: 21px;
    font-size: clamp(16px, 10.274px + 0.559vw, 21px);
  }
}
.page-philosophy .bl_philosophy_values .el_heading_tab + h3 {
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .page-philosophy .bl_philosophy_values .el_heading_tab + h3 {
    margin-top: 40px;
    margin-top: clamp(20px, -2.905px + 2.235vw, 40px);
  }
}
@media screen and (min-width: 1025px) {
  .page-philosophy .bl_philosophy_values .el_mediaText_content {
    padding-block: 40px;
    padding-block: clamp(10px, -24.358px + 3.352vw, 40px);
  }
}
.page-philosophy .bl_philosophy_values .el_mediaText_content p {
  font-size: 14px;
  line-height: 2.4;
  margin-top: 30px;
}
@media screen and (min-width: 1025px) {
  .page-philosophy .bl_philosophy_values .el_mediaText_content p {
    margin-top: 40px;
    font-size: 18px;
    line-height: 2.4;
    font-size: clamp(14px, 9.419px + 0.447vw, 18px);
    margin-top: clamp(24px, 5.676px + 1.788vw, 40px);
  }
}
.page-philosophy .bl_philosophy_values .el_value_number {
  position: absolute;
  bottom: -50px;
  left: 0%;
  z-index: 1;
  width: auto;
  height: 80px;
}
@media screen and (min-width: 1025px) {
  .page-philosophy .bl_philosophy_values .el_value_number {
    bottom: 0;
    bottom: clamp(-60px, -128.715px + 6.704vw, 0px);
    left: 422px;
    left: clamp(390px, 353.352px + 3.575vw, 422px);
    height: 142px;
    height: clamp(100px, 51.899px + 4.693vw, 142px);
  }
}
@media screen and (min-width: 1025px) {
  .page-philosophy .bl_philosophy_values .is_image_left .el_value_number {
    left: 81%;
    left: 1264px;
    left: clamp(810px, 290.056px + 50.726vw, 1264px);
  }
}
.page-philosophy .bl_about_section_info {
  --section-ptb: 36px 140px;
}
@media screen and (min-width: 1025px) {
  .page-philosophy .bl_about_section_info {
    --section-ptb: 48px 200px;
  }
}
.page-philosophy .bl_about_section_info .bl_mediaText {
  --image-width: 41.2%;
  gap: 40px;
}
@media screen and (min-width: 1025px) {
  .page-philosophy .bl_about_section_info .bl_mediaText {
    gap: 60px;
  }
}
.page-philosophy .bl_about_section_info .el_mediaText_image {
  position: relative;
  aspect-ratio: 494/659;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .page-philosophy .bl_about_section_info .el_mediaText_image {
    max-width: 500px;
  }
}
.page-philosophy .bl_about_section_info .el_mediaText_image > img {
  -o-object-fit: cover;
     object-fit: cover;
}
.page-philosophy .bl_about_section_info .el_mediaText_image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(35, 64, 49, 0.9) 10.29%, rgba(35, 64, 49, 0) 39.51%);
}
.page-philosophy .bl_about_section_info .el_mediaText_image figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-block: 10px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
  padding-block: 0 40px;
  padding-inline: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 20px;
}
@media screen and (min-width: 1025px) {
  .page-philosophy .bl_about_section_info .el_mediaText_image figcaption {
    font-size: clamp(13px, -0.667px + 1.333vw, 18px);
    line-height: 1.3;
  }
}
.page-philosophy .bl_about_section_info .el_mediaText_image figcaption .caption_heading {
  width: 100%;
  font-size: 0.88888889em;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  white-space: nowrap;
}
.page-philosophy .bl_about_section_info .el_mediaText_image figcaption .caption_heading::after {
  content: "";
  display: block;
  flex-grow: 1;
  height: 1px;
  width: 100%;
  background-color: #fff;
}
.page-philosophy .bl_about_section_info .el_mediaText_image figcaption .caption_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.page-philosophy .bl_about_section_info .el_mediaText_image figcaption .caption_content div {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.page-philosophy .bl_about_section_info .el_mediaText_image figcaption .caption_content img {
  width: 26px;
  height: 51px;
}
@media screen and (min-width: 1025px) {
  .page-philosophy .bl_about_section_info .el_mediaText_content {
    padding-block: 60px;
  }
}
.page-philosophy .bl_about_section_info .el_mediaText_content .el_heading_tab {
  font-size: 18px;
  font-size: clamp(14px, 4.12px + 0.964vw, 18px);
  color: var(--main-color);
}
.page-philosophy .bl_about_section_info .el_mediaText_content h3 {
  margin-top: 10px;
  --page-h3-fsz: 32px;
  --page-h3-fsz: clamp(24px, 4.241px + 1.928vw, 32px);
}
.page-philosophy .bl_about_section_info .el_mediaText_content p {
  font-size: 14px;
  line-height: 1.83;
  margin-top: 32px;
}
@media screen and (min-width: 1025px) {
  .page-philosophy .bl_about_section_info .el_mediaText_content p {
    font-size: 18px;
    font-size: clamp(14px, 4.12px + 0.964vw, 18px);
    line-height: 1.83;
  }
}

.page .bl_article_content section.bl_service_abst {
  position: relative;
  margin-top: -50px;
  background-image: url(../images/page/bg-element.webp);
}
.page .bl_article_content section.bl_service_abst::before {
  content: "";
  background-image: url("../images/page/bg-element-abst.webp");
  background-repeat: no-repeat;
  background-size: contain;
  width: 55%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  aspect-ratio: 1066/906;
}
.page .bl_article_content section.bl_service_abst .bl_section_inner {
  position: relative;
}
.page .bl_article_content section.bl_service_abst .bl_mediaText {
  position: relative;
  gap: 40px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section.bl_service_abst .bl_mediaText {
    --image-width: 42.2%;
    gap: 98px;
    gap: clamp(30px, -47.877px + 7.598vw, 98px);
  }
}
@media screen and (min-width: 1500px) {
  .page .bl_article_content section.bl_service_abst .bl_mediaText {
    --image-width: 51.2%;
  }
}
@media screen and (max-width: 1024px) {
  .page .bl_article_content section.bl_service_abst .bl_mediaText .el_mediaText_image {
    margin-inline: auto;
    max-width: 600px;
  }
}
.page .bl_article_content section.bl_service_abst .el_mediaText_image .el_abst_subImage {
  margin-inline: auto 0;
  margin-top: 30px;
  width: 83.7%;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section.bl_service_abst .el_mediaText_image .el_abst_subImage {
    margin-top: 37px;
    width: 60.6%;
    margin-inline: auto;
  }
}
.page .bl_article_content section.bl_service_abst h2 {
  color: var(--main-color);
  --page-h2-fsz: 22px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section.bl_service_abst h2 {
    --media-content-mt: 110px;
    --page-h2-fsz: 36px;
    --media-content-mt: clamp(90px, 35.333px + 5.333vw, 110px);
    --page-h2-fsz: clamp(30px, 13.6px + 1.6vw, 36px);
  }
}
.page .bl_article_content section.bl_service_abst p {
  font-size: 14px;
  line-height: 2.4;
  margin-top: 40px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section.bl_service_abst p {
    font-size: 16px;
    font-size: clamp(14px, 8.533px + 0.533vw, 16px);
    line-height: 2.9375;
    margin-top: 50px;
    margin-top: clamp(26px, -39.6px + 6.4vw, 50px);
  }
}
.page .bl_article_content section.bl_service_abst .el_abst_copy {
  position: absolute;
  top: -1.3em;
  left: 0;
  left: clamp(0px, 257.43px + -13.408vw, 120px);
  font-size: 64px;
  font-size: clamp(48px, 29.676px + 1.788vw, 64px);
  letter-spacing: 0;
  line-height: 1.22;
  color: #fff;
  text-indent: -3em;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .page .bl_article_content section.bl_service_abst .el_abst_copy {
    display: none;
  }
}
.page .bl_article_content section.bl_service_abst h2.el_service_heading {
  --page-h2-fsz: 32px;
  letter-spacing: 0;
  color: var(--main-color);
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 65px !important;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section.bl_service_abst h2.el_service_heading {
    --page-h2-fsz: 72px;
    --page-h2-fsz: clamp(50px, 24.804px + 2.458vw, 72px);
    margin-top: clamp(-85px, 236.788px + -16.76vw, 65px) !important;
  }
}
.page .bl_article_content section.bl_service_abst h2.el_service_heading span {
  background-color: var(--main-color);
  color: #fff;
  padding-inline: 35px;
  padding-block: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1.334375;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section.bl_service_abst h2.el_service_heading span {
    font-size: 0.33333333em;
    line-height: 1.4;
    padding-inline: 50px;
    padding-block: 12px;
    min-height: 0.92em;
  }
}
.page .bl_article_content section.bl_service_abst .bl_serviceItem {
  margin-top: 0 !important;
  padding-block: 80px;
}
.page .bl_article_content section.bl_service_abst .bl_serviceItem.is_bg_dark {
  background-color: rgba(36, 61, 21, 0.09);
  padding-inline: var(--site-inline-padding);
}
.page .bl_article_content section.bl_service_abst .bl_serviceItem .el_serviceItem_inner {
  max-width: 1000px;
  margin-inline: auto;
}
.page .bl_article_content section.bl_service_abst .bl_serviceItem .el_serviceItem_index {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 18px;
  color: var(--main-color);
  white-space: nowrap;
}
.page .bl_article_content section.bl_service_abst .bl_serviceItem .el_serviceItem_index::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--main-color);
}
.page .bl_article_content section.bl_service_abst .bl_serviceItem h3 {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  text-align: left;
  flex-wrap: wrap;
  z-index: 2;
  font-size: 18px;
  line-height: 1.6;
  padding-inline: 73px 20px;
  margin-top: 33px;
  padding-block: 12px;
  box-shadow: 3px 3px 3px rgba(189, 204, 162, 0.75);
}
@media screen and (min-width: 768px) {
  .page .bl_article_content section.bl_service_abst .bl_serviceItem h3 {
    padding-inline: 73px;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section.bl_service_abst .bl_serviceItem h3 {
    font-size: 29px;
    line-height: 1.55;
    padding-block: 20px;
    min-height: 87px;
    margin-top: 45px;
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
.page .bl_article_content section.bl_service_abst .bl_serviceItem h3 span {
  font-size: 14px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section.bl_service_abst .bl_serviceItem h3 span {
    font-size: 16px;
  }
}
.page .bl_article_content section.bl_service_abst .bl_serviceItem h3::before {
  content: "";
  background-image: url("../images/page/exterior-6.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 56px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
}
.page .bl_article_content section.bl_service_abst .bl_serviceItem .el_serviceItem_image {
  margin-top: 0;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section.bl_service_abst .bl_serviceItem .el_serviceItem_image {
    margin-top: -36px;
  }
}
.page .bl_article_content section.bl_service_abst .bl_serviceItem p {
  margin-top: 26px;
  font-size: 14px;
  line-height: 2.36;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section.bl_service_abst .bl_serviceItem p {
    margin-top: 36px;
    font-size: 16px;
    line-height: 1.94;
  }
}
.page .bl_article_content section.bl_service_price {
  position: relative;
  background-image: url(../images/page/bg-element-price.webp);
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: left;
  color: #fff;
  --section-ptb: 0 0;
  --article-mt: -60px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section.bl_service_price {
    --article-mt: -168px;
    --section-ptb: 235px;
  }
}
@media screen and (max-width: 1024px) {
  .page .bl_article_content section.bl_service_price {
    position: relative;
    background-image: none;
  }
  .page .bl_article_content section.bl_service_price::before {
    content: "";
    position: sticky;
    top: 0;
    display: block;
    height: 100vh;
    height: 100dvh;
    margin-inline: calc(var(--site-inline-padding) * -1);
    background-image: url(../images/page/bg-element-price.webp);
    background-size: auto 100%;
    background-position: center;
    z-index: 0;
  }
  .page .bl_article_content section.bl_service_price > .bl_section_inner {
    position: relative;
    z-index: 1;
    margin-top: -100vh;
    margin-top: -100dvh;
    padding-top: 96px;
    padding-bottom: 120px;
  }
}
.page .bl_article_content section.bl_service_price h2 {
  color: #fff;
  --text-color: #fff;
}
.page .bl_article_content section.bl_service_price h2 + p {
  margin-top: 30px;
}
.page .bl_article_content section.bl_service_price .bl_priceTable {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-top: 40px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section.bl_service_price .bl_priceTable {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 50px;
  }
}
.page .bl_article_content section.bl_service_price .bl_priceTable_item {
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  width: 100%;
  max-width: 400px;
}
.page .bl_article_content section.bl_service_price .bl_priceTable_item:first-child {
  --price-item-color: #c3a179;
}
.page .bl_article_content section.bl_service_price .bl_priceTable_item:nth-child(2) {
  --price-item-color: #006934;
}
.page .bl_article_content section.bl_service_price .bl_priceTable_item:nth-child(3) {
  --price-item-color: #bd9c28;
}
.page .bl_article_content section.bl_service_price .bl_priceTable_item .el_priceTable_heading {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  min-height: 56px;
  padding-block: 10px;
  padding-inline: 20px;
  background-color: var(--price-item-color);
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section.bl_service_price .bl_priceTable_item .el_priceTable_heading {
    font-size: 18px;
    min-height: 36px;
  }
}
.page .bl_article_content section.bl_service_price .bl_priceTable_item .el_priceTable_content {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  background-color: #fff;
  color: var(--text-color);
  padding-block: 30px 20px;
  padding-inline: 25px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section.bl_service_price .bl_priceTable_item .el_priceTable_content {
    padding-block: 40px 24px;
    padding-inline: 28px;
  }
}
.page .bl_article_content section.bl_service_price .bl_priceTable_item .el_priceTable_title {
  text-align: center;
  font-size: 25px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section.bl_service_price .bl_priceTable_item .el_priceTable_title {
    font-size: 28px;
    font-size: clamp(24px, 13.106px + 1.064vw, 28px);
  }
}
.page .bl_article_content section.bl_service_price .bl_priceTable_item .el_priceTable_subtitle {
  color: var(--price-item-color);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  border: 1px solid var(--price-item-color);
  padding-block: 8px;
  padding-inline: 16px;
  min-height: 47px;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 234px;
  margin-top: 16px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section.bl_service_price .bl_priceTable_item .el_priceTable_subtitle {
    font-size: 18px;
    min-width: 260px;
    min-width: clamp(234px, 162.933px + 6.933vw, 260px);
    min-height: 52px;
  }
}
.page .bl_article_content section.bl_service_price .bl_priceTable_item .el_priceTable_price {
  font-size: 58px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section.bl_service_price .bl_priceTable_item .el_priceTable_price {
    font-size: 65px;
  }
}
.page .bl_article_content section.bl_service_price .bl_priceTable_item .el_priceTable_price span {
  font-size: 24px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section.bl_service_price .bl_priceTable_item .el_priceTable_price span {
    font-size: 24px;
  }
}
.page .bl_article_content section.bl_service_price .bl_priceTable_item .el_priceTable_note {
  border-top: 1px solid var(--price-item-color);
  padding-inline: 15px;
  padding-block: 20px;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 12px;
  margin-bottom: 18px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section.bl_service_price .bl_priceTable_item .el_priceTable_note {
    margin-bottom: 20px;
    font-size: 16px;
    font-size: clamp(14px, 8.533px + 0.533vw, 16px);
  }
}
.page .bl_article_content section.bl_service_price .bl_priceTable_item .el_linkText {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto 0;
  margin-top: auto;
  font-size: 12px;
  transition: opacity var(--transition);
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section.bl_service_price .bl_priceTable_item .el_linkText {
    font-size: 14px;
  }
}
@media (hover: hover) {
  .page .bl_article_content section.bl_service_price .bl_priceTable_item .el_linkText:hover {
    opacity: 0.7;
  }
}
.page .bl_article_content section.bl_service_price p.bl_priceTable_note {
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.3;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section.bl_service_price p.bl_priceTable_note {
    margin-top: 30px;
    font-size: 14px;
  }
}
.page .bl_article_content section.bl_service_price p.bl_priceTable_note + p.bl_priceTable_note {
  margin-top: 6px;
}
.page .bl_article_content .bl_service_projects {
  --section-ptb: 48px 0;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content .bl_service_projects {
    --section-ptb: 84px 0;
  }
}
.page .bl_article_content .bl_service_projects .bl_projects_grid {
  margin-top: 40px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content .bl_service_projects .bl_projects_grid {
    margin-top: 55px;
  }
}
.page .bl_article_content section.bl_service_faq {
  --section-ptb: 48px 160px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section.bl_service_faq {
    --section-ptb: 120px 200px;
  }
}
.page .bl_article_content section.bl_service_faq .bl_section_inner a {
  display: block;
  position: relative;
  transition: opacity var(--transition);
}
.page .bl_article_content section.bl_service_faq .bl_section_inner a::after {
  content: "";
  background-image: url("../images/common/arrow-faq.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 78px;
  height: 15px;
  position: absolute;
  bottom: 26px;
  right: 17px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section.bl_service_faq .bl_section_inner a::after {
    bottom: clamp(22px, -21.733px + 4.267vw, 38px);
    right: 45px;
  }
}
@media (hover: hover) {
  .page .bl_article_content section.bl_service_faq .bl_section_inner a:hover {
    opacity: 0.7;
  }
}
.page .bl_article_content section.bl_service_faq .bl_service_faq_inner {
  background-color: #e8efe2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 25px;
  padding-block: 10px 60px;
  padding-inline: 8px;
  grid-template-areas: "img header" "content content";
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section.bl_service_faq .bl_service_faq_inner {
    grid-template-columns: 36.1% 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "img header" "img content";
    -moz-column-gap: 40px;
         column-gap: 40px;
    row-gap: 0;
    padding: 0;
  }
}
.page .bl_article_content section.bl_service_faq .bl_service_faq_inner .el_service_faq_image {
  grid-area: img;
}
.page .bl_article_content section.bl_service_faq .bl_service_faq_inner .el_service_faq_heading {
  grid-area: header;
  justify-content: center;
  gap: 0;
}
.page .bl_article_content section.bl_service_faq .bl_service_faq_inner .el_service_faq_content {
  grid-area: content;
  padding-inline: 16px;
  line-height: 2.07;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section.bl_service_faq .bl_service_faq_inner .el_service_faq_content {
    padding-inline: 0 var(--faq-right-padding, 50px);
    font-size: 14px;
  }
}
.page .bl_article_content section.bl_service_faq a.el_linkButton {
  margin-top: 48px;
  margin-inline: auto 0;
}
@media screen and (min-width: 768px) {
  .page .bl_article_content section.bl_service_faq a.el_linkButton {
    margin-inline: auto;
  }
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section.bl_service_faq a.el_linkButton {
    margin-top: 96px;
  }
}

.page-service .bl_top_service {
  margin-top: -50px;
}
.page-service .bl_service_intro {
  margin-bottom: 96px;
}
@media screen and (min-width: 1025px) {
  .page-service .bl_service_intro {
    margin-bottom: 168px;
  }
}
.page-service .bl_service_intro h2 {
  color: var(--main-color);
  --page-h2-fsz: 22px;
}
@media screen and (min-width: 1025px) {
  .page-service .bl_service_intro h2 {
    --media-content-mt: 110px;
    --page-h2-fsz: 36px;
    --media-content-mt: clamp(90px, 35.333px + 5.333vw, 110px);
    --page-h2-fsz: clamp(30px, 13.6px + 1.6vw, 36px);
  }
}
.page-service .bl_service_intro p {
  font-size: 14px;
  line-height: 2.64;
  margin-top: 40px;
}
@media screen and (min-width: 1025px) {
  .page-service .bl_service_intro p {
    font-size: 16px;
    font-size: clamp(14px, 8.533px + 0.533vw, 16px);
    line-height: 2.9375;
    margin-top: 50px;
    margin-top: clamp(26px, -39.6px + 6.4vw, 50px);
  }
}

.page-elements .ly_pageHeader {
  background-image: url(../images/page/element-mv.webp);
}
@media screen and (min-width: 768px) {
  .page-elements .ly_pageHeader {
    background-image: url(../images/page/element-mv.webp);
  }
}
.page-elements section.bl_service_abst .bl_serviceItem h3::before {
  content: "";
  background-image: url("../images/page/element-parts.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 56px;
  height: 50px;
}
@media screen and (min-width: 1025px) {
  .page-elements .bl_service_faq .bl_service_faq_inner .el_service_faq_content {
    --faq-right-padding: 40px;
  }
}
.page-elements .bl_article_content section.bl_service_price .bl_priceTable_item:first-child {
  --price-item-color: #006934;
}
.page-elements .bl_article_content section.bl_service_price .bl_priceTable_item:nth-child(2) {
  --price-item-color: #006934;
}
.page-elements .bl_article_content section.bl_service_price .bl_priceTable_item:nth-child(3) {
  --price-item-color: #006934;
}

.page-total-exterior .ly_pageHeader {
  background-image: url(../images/page/exterior-mv.webp);
}
@media screen and (min-width: 768px) {
  .page-total-exterior .ly_pageHeader {
    background-image: url(../images/page/exterior-mv.webp);
  }
}
@media screen and (min-width: 1025px) {
  .page-total-exterior .bl_service_faq .bl_service_faq_inner .el_service_faq_content {
    --faq-right-padding: 50px;
  }
}

.page-renovation .ly_pageHeader {
  background-image: url(../images/page/garden-mv.webp);
}
@media screen and (min-width: 768px) {
  .page-renovation .ly_pageHeader {
    background-image: url(../images/page/garden-mv.webp);
  }
}
@media screen and (min-width: 1025px) {
  .page-renovation .bl_service_faq .bl_service_faq_inner .el_service_faq_content {
    --faq-right-padding: 40px;
  }
}

.page-company .ly_pageHeader {
  background-image: url(../images/page/bg-page-company-header-sp.webp);
}
@media screen and (min-width: 768px) {
  .page-company .ly_pageHeader {
    background-image: url(../images/page/bg-page-company-header.webp);
  }
}
.page-company .bl_pageHeader_inner {
  justify-content: center;
  row-gap: 60px;
}
.page-company .bl_siteMain {
  background-image: url(../images/page/bg-company-all-75.webp);
  background-size: cover;
  background-position: center;
}
.page-company .bl_article_content h2 {
  position: relative;
  --page-h2-fsz: 28px;
  line-height: 2.14;
  padding-inline: 67px 0;
}
@media screen and (min-width: 1025px) {
  .page-company .bl_article_content h2 {
    line-height: 2.05;
    --page-h2-fsz: 42px;
    padding-inline: 130px;
  }
}
.page-company .bl_article_content h2.lp_heading {
  padding-inline: 0;
  --page-h2-fsz: 30px;
}
@media screen and (min-width: 1025px) {
  .page-company .bl_article_content h2.lp_heading {
    --page-h2-fsz: 36px;
  }
}
.page-company .bl_company_history {
  position: relative;
  --page-h3-fsz: 32px;
  margin-top: 0;
  padding-block: 20px 0;
}
@media screen and (min-width: 768px) {
  .page-company .bl_company_history {
    --page-h3-fsz: 40px;
    margin-top: -120px;
    padding-block: 200px 0;
  }
}
.page-company .bl_company_history .bl_history_content {
  color: #fff;
  background-position: center;
  background-size: cover;
  margin-top: 10px;
  padding-inline: 30px;
  background-image: url(../images/page/bg-company-sp.webp);
  padding-block: 220px;
}
@media screen and (min-width:520px) {
  .page-company .bl_company_history .bl_history_content {
    background-image: url(../images/page/bg-company.webp);
  }
}
@media screen and (max-width: 767px) {
  .page-company .bl_company_history .bl_history_content br {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .page-company .bl_company_history .bl_history_content {
    padding-inline: 60px;
    padding-block: 165px;
    height: 735px;
  }
}
.page-company .bl_company_history .bl_history_content > h3 {
  max-width: var(--content-width);
  margin-inline: auto;
  --page-h3-fsz: 20px;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .page-company .bl_company_history .bl_history_content > h3 {
    --page-h3-fsz: 24px;
    line-height: 2;
  }
}
.page-company .bl_company_history .bl_history_content > p {
  max-width: var(--content-width);
  margin-inline: auto;
  font-size: 14px;
  line-height: 3.0625;
  line-height: 2.6;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .page-company .bl_company_history .bl_history_content > p {
    font-size: 18px;
    line-height: 2.62;
    margin-top: 24px;
  }
}
.page-company .bl_company_history figure.el_history_image {
  aspect-ratio: 596/423;
  width: 280px;
  margin-right: -20px;
  margin-left: auto;
  margin-block: 40px -180px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .page-company .bl_company_history figure.el_history_image {
    top: 40px;
    right: 0;
    position: absolute;
    width: 596px;
    width: clamp(400px, 161.823px + 31.013vw, 596px);
    top: 100px;
  }
}
.page-company .bl_company_history .bl_history_banner {
  margin-top: -170px;
}
@media screen and (min-width: 768px) {
  .page-company .bl_company_history .bl_history_banner {
    margin-top: -220px;
  }
}
.page-company .bl_company_history .bl_history_banner p {
  color: #eef0e9;
  opacity: 0.5;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  margin-bottom: -0.5em;
}
@media screen and (min-width: 768px) {
  .page-company .bl_company_history .bl_history_banner p {
    font-size: 48px;
    font-size: clamp(34px, 16.987px + 2.215vw, 48px);
  }
}
.page-company .bl_company_overview .bl_section_inner > h2 + table {
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .page-company .bl_company_overview .bl_section_inner > h2 + table {
    margin-top: 40px;
  }
}
.page-company .bl_company_overview .bl_section_inner > h2 + table th {
  white-space: nowrap;
}

section.bl_contact {
  --content-width: 900px;
}
section.bl_contact .el_contact_tel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  border: 1px solid var(--main-color);
  font-size: 25px;
  line-height: 1.2;
  padding-block: 8px 13px;
  padding-inline: 30px;
}
@media screen and (min-width: 1025px) {
  section.bl_contact .el_contact_tel {
    font-size: 28px;
  }
}
section.bl_contact .el_contact_tel .el_contact_number {
  display: flex;
  align-items: baseline;
}
section.bl_contact .el_contact_tel .el_contact_number span {
  font-size: 0.7em;
}
section.bl_contact .el_contact_tel .el_contact_hours {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
}
@media screen and (min-width: 1025px) {
  section.bl_contact .el_contact_tel .el_contact_hours {
    font-size: 16px;
  }
}

.bl_contact_notice {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  max-width: 800px;
  margin-inline: auto;
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid var(--main-color);
  padding: 30px 20px;
}
@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;
  font-size: 14px;
}
@media screen and (min-width: 1025px) {
  p.el_contact_direction {
    font-size: 16px;
  }
}

.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 .el_formItem_2col {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.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: #cc3333;
  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=date],
.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 input#event-date {
  max-width: 250px;
}
.wpcf7-form select {
  width: auto;
  padding-inline: 10px 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none; /* デフォルトの矢印を非表示 */
  color: var(--text-color);
}
.wpcf7-form span.wpcf7-form-control-wrap[data-name=job-type], .wpcf7-form span.wpcf7-form-control-wrap[data-name=event-name], .wpcf7-form span.wpcf7-form-control-wrap[data-name=event-time], .wpcf7-form span.wpcf7-form-control-wrap[data-name=property-relation], .wpcf7-form span.wpcf7-form-control-wrap[data-name=property-status], .wpcf7-form span.wpcf7-form-control-wrap[data-name=property-type] {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  align-self: flex-start;
}
.wpcf7-form span.wpcf7-form-control-wrap[data-name=job-type]::after, .wpcf7-form span.wpcf7-form-control-wrap[data-name=event-name]::after, .wpcf7-form span.wpcf7-form-control-wrap[data-name=event-time]::after, .wpcf7-form span.wpcf7-form-control-wrap[data-name=property-relation]::after, .wpcf7-form span.wpcf7-form-control-wrap[data-name=property-status]::after, .wpcf7-form span.wpcf7-form-control-wrap[data-name=property-type]::after {
  content: "";
  width: 10px;
  height: 10px;
  border-style: none none solid solid;
  border-width: 1px;
  transform: rotate(-45deg);
  position: absolute;
  right: 10px;
  top: 30%;
  z-index: 2;
}
.wpcf7-form textarea {
  height: 150px;
  resize: vertical;
}
.wpcf7-form .wpcf7-list-item {
  margin-left: 1.5em;
}
.wpcf7-form .wpcf7-list-item-label {
  margin-left: 3px;
}
.wpcf7-form span.wpcf7-checkbox {
  margin-top: 6px;
  display: inline-block;
}
.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 {
  position: relative;
  max-width: 300px;
  display: inline-flex;
  margin-top: 20px;
  margin-inline: 10px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding: 10px;
  height: 70px;
  transition: opacity var(--transition);
  width: 100%;
}
@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-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);
  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.wpcf7-checkbox.bl_requestData {
  margin-top: 0;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (min-width:520px) {
  .wpcf7-form span.wpcf7-form-control.wpcf7-checkbox.bl_requestData {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1025px) {
  .wpcf7-form span.wpcf7-form-control.wpcf7-checkbox.bl_requestData {
    gap: 20px;
    grid-template-columns: repeat(5, 1fr);
  }
}
.wpcf7-form span.wpcf7-form-control.wpcf7-checkbox.bl_requestData .wpcf7-list-item {
  margin-left: 0;
}
.wpcf7-form .el_request_item {
  display: grid;
  grid-template-columns: 1em 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "image image" "check text";
  cursor: pointer;
  transition: 0.3s;
  row-gap: 5px;
  -moz-column-gap: 0;
       column-gap: 0;
}
@media screen and (min-width: 1025px) {
  .wpcf7-form .el_request_item {
    gap: 5px;
  }
}
.wpcf7-form .el_request_item:hover {
  background-color: #f9f9f9;
  opacity: 0.7;
}
.wpcf7-form .el_request_item::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 640/905;
  background-image: var(--request-image);
  background-size: cover;
  background-position: center;
  opacity: 0.8;
  transition: opacity 0.3s;
  grid-area: image;
  box-sizing: 0 0 1px #ccc;
  border: 1px solid var(--border-color);
}
.wpcf7-form .el_request_item input[type=checkbox] {
  grid-area: check;
  align-self: flex-start;
  margin-top: 3px;
}
@media screen and (min-width: 1025px) {
  .wpcf7-form .el_request_item input[type=checkbox] {
    margin-top: 0.38em;
  }
}
.wpcf7-form .el_request_item input[type=checkbox]::checked + .wpcf7-list-item-label {
  font-weight: 700;
}
.wpcf7-form .el_request_item .wpcf7-list-item-label {
  grid-area: text;
  align-self: flex-start;
  line-height: 1.4;
  font-size: 12px;
}
@media screen and (min-width: 1025px) {
  .wpcf7-form .el_request_item .wpcf7-list-item-label {
    font-size: 14px;
  }
}

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

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

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

a.el_linkButton.is_go_home {
  max-width: 300px;
  margin-inline: auto;
  margin-top: 60px;
  width: 100%;
  padding-inline: 20px;
  background-color: var(--main-color);
  color: #fff;
}
a.el_linkButton.is_go_home::after {
  position: absolute;
  right: 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;
}

.page-faq .bl_article_content {
  padding-bottom: 96px;
}
@media screen and (min-width: 1025px) {
  .page-faq .bl_article_content {
    padding-bottom: 168px;
  }
}
.page-faq .bl_faq_section + .bl_faq_section {
  margin-top: 80px;
}
.page-faq .bl_faq {
  border: 1px solid #e6e6e6;
  margin-top: 40px;
  padding: 20px;
}
.page-faq .bl_faq .el_accordion_title {
  position: relative;
  pointer-events: none;
}
.page-faq .bl_faq .el_accordion_title .el_q_symbol {
  color: var(--main-color);
  font-size: 20px;
  top: 0;
  left: 16px;
  flex-shrink: 0;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .page-faq .bl_faq .el_accordion_title .el_q_symbol {
    font-size: 20px;
    left: 25px;
  }
}
.page-faq .bl_faq button.el_accordion_button {
  font-family: "Shippori Mincho B1", serif;
  font-weight: var(--fw-medium);
  --ac-icon-right: 15px;
  display: flex;
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  padding-inline: 10px 10px;
  padding-block: 10px 20px;
  color: var(--text-color);
  gap: 20px;
  border-bottom: 1px solid var(--border-color);
}
@media screen and (min-width: 768px) {
  .page-faq .bl_faq button.el_accordion_button {
    --ac-icon-right: 30px;
    padding-inline: 10px 10px;
    font-size: 18px;
  }
}
.page-faq .bl_faq button.el_accordion_button {
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  text-align: left;
  line-height: 1.4;
}
.page-faq .bl_faq .is_close .el_accordion_button::after {
  transform: translateY(-50%);
}
.page-faq .bl_faq .is_close + .el_accordion_body {
  grid-template-rows: 0fr;
}
.page-faq .bl_faq .is_close + .el_accordion_body .el_accordion_inner {
  margin-top: 0 !important;
}
.page-faq .bl_faq .el_accordion_body {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows var(--transition);
}
.page-faq .bl_faq .el_accordion_inner {
  overflow: hidden;
  position: relative;
  padding-inline: 10px;
  margin-top: 20px;
  font-size: 14px;
  display: flex;
  gap: 20px;
}
@media screen and (min-width: 1025px) {
  .page-faq .bl_faq .el_accordion_inner {
    font-size: 16px;
    margin-top: 20px;
  }
}
.page-faq .bl_faq .el_accordion_inner .el_a_symbol {
  color: var(--sub-color);
  font-weight: var(--fw-bold);
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1.4;
}
@media screen and (min-width: 1025px) {
  .page-faq .bl_faq .el_accordion_inner .el_a_symbol {
    font-size: 20px;
  }
}
.page-faq .bl_faq .el_accordion_inner .el_accordion_ansContent > * {
  margin-block: 0 20px;
  line-height: 1.75;
}
.page-faq .bl_faq .el_accordion_inner a {
  --sub-color: var(--main-color);
}
.page-faq .bl_faq + h2 {
  --article-mt: 80px;
}
.page-faq .bl_pageFootButtons {
  margin-top: 80px;
}
.page-faq .bl_archive_filter ul {
  display: grid;
  background-color: #f9f9f9;
  grid-template-columns: repeat(2, 1fr);
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0;
}
@media screen and (min-width: 768px) {
  .page-faq .bl_archive_filter ul {
    grid-template-columns: repeat(4, 1fr);
    position: sticky;
    top: 70px;
    z-index: 2;
    transition: all var(--transition);
  }
  .page-faq .bl_archive_filter ul.is_offset {
    top: 65px;
  }
}
@media screen and (min-width: 1025px) {
  .page-faq .bl_archive_filter ul {
    top: 0;
  }
}
.page-faq .bl_archive_filter ul li {
  border-right: 1px solid #cdcece;
  border-bottom: 1px solid #cdcece;
}
@media screen and (max-width: 767px) {
  .page-faq .bl_archive_filter ul li:nth-child(even) {
    border-right: none;
  }
  .page-faq .bl_archive_filter ul li:last-child {
    border-bottom: none;
  }
}
@media screen and (min-width: 768px) {
  .page-faq .bl_archive_filter ul li:nth-child(4n) {
    border-right: none;
  }
  .page-faq .bl_archive_filter ul li:nth-child(n+5) {
    border-bottom: none;
  }
}
@media screen and (max-width: 767px) {
  .page-faq .bl_archive_filter ul.total-odd li:nth-last-child(2) {
    border-bottom: 1px solid #cdcece;
  }
}
.page-faq .bl_archive_filter ul a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 5px;
  font-size: 12px;
  line-height: 1.2;
  min-height: 50px;
  padding-inline: 13px;
  gap: 10px;
  color: var(--text-color);
  border: none;
  transition: all var(--transition);
  border-radius: 0;
  white-space: normal;
}
@media screen and (min-width:520px) {
  .page-faq .bl_archive_filter ul a {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .page-faq .bl_archive_filter ul a {
    font-size: 13px;
  }
}
@media screen and (min-width: 1025px) {
  .page-faq .bl_archive_filter ul a {
    font-size: clamp(13px, 7.012px + 0.585vw, 15px);
  }
}
.page-faq .bl_archive_filter ul a::after {
  content: "";
  width: 0.6em;
  aspect-ratio: 1;
  border-style: solid solid none none;
  border-width: 1px;
  transform: rotate(135deg);
}
@media (hover: hover) {
  .page-faq .bl_archive_filter ul a:hover {
    color: #fff;
  }
}

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

.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: 30px;
}
@media screen and (min-width: 1025px) {
  .bl_archive_filter {
    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 h2 + ul {
  margin-top: 15px;
}
.bl_archive_filter ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  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: 5px 15px;
  font-size: 15px;
  min-height: 40px;
}
@media screen and (min-width: 768px) {
  .bl_archive_filter ul li a {
    font-size: 16px;
  }
}
@media screen and (min-width: 1025px) {
  .bl_archive_filter ul li a {
    min-height: 50px;
    padding: 5px 25px;
  }
}
@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;
  border-color: var(--main-color);
}

.bl_pagination {
  margin-top: 60px;
}

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

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

.page-numbers:not(.dots) {
  color: var(--text-color);
  margin-inline: 5px;
}
@media screen and (min-width: 768px) {
  .page-numbers:not(.dots) {
    margin-inline: 10px;
  }
}
.page-numbers:not(.dots) {
  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: 1px solid transparent;
}
.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(--sub-color);
    color: #fff;
  }
}

.single .bl_article_content {
  --content-width: 1200px;
  padding-top: 30px;
  padding-bottom: 60px;
}
@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-style: normal;
  line-height: 1.2;
  padding-block: 10px;
  font-size: 1.5rem;
}
.single .bl_article_content .bl_article_meta {
  display: flex;
  /* align-items: center; */
  gap: 20px;
}
.single .bl_article_content span.el_post_category {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.single .bl_article_content span.el_post_category > span {
  display: grid;
  place-content: center;
  white-space: nowrap;
  background-color: var(--main-color);
  color: #fff;
  padding-inline: 20px;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  height: 25px;
}
@media screen and (min-width: 1025px) {
  .single .bl_article_content span.el_post_category > span {
    font-size: 14px;
    height: 27px;
  }
}
.single .bl_article_content {
  line-height: 2.1875;
  margin-inline: auto;
}
.single .bl_article_content > * + * {
  margin-top: 30px;
}
@media screen and (min-width: 1025px) {
  .single .bl_article_content > * + * {
    margin-top: 50px;
  }
}
.single .bl_article_content h2.wp-block-heading {
  position: relative;
  border-left: 4px solid var(--main-color);
  letter-spacing: 0.04em;
  line-height: 1.75;
  font-size: 1.375rem;
  padding-block: 8px;
  padding-inline: 20px 0;
  margin-top: 50px;
}
@media screen and (min-width: 1025px) {
  .single .bl_article_content h2.wp-block-heading {
    padding-block: 16px;
    padding-inline: 47px 0;
    margin-top: 80px;
  }
}
.single .bl_article_content h3.wp-block-heading {
  position: relative;
  letter-spacing: 0.04em;
  line-height: 1.75;
  border-bottom: 1px solid var(--main-color);
  font-size: 1.25rem;
  padding-block: 0 20px;
  padding-inline: 15px 0;
  margin-top: 50px;
}
@media screen and (min-width: 1025px) {
  .single .bl_article_content h3.wp-block-heading {
    padding-block: 0 40px;
    padding-inline: 30px 0;
    margin-top: 80px;
  }
}
.single .bl_article_content h4.wp-block-heading {
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  margin-top: 80px;
}
@media screen and (min-width: 1025px) {
  .single .bl_article_content h4.wp-block-heading {
    margin-top: 30px;
  }
}
.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;
  background-color: #eeeff0;
  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;
  font-weight: var(--fw-bold);
}
.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);
  font-weight: var(--fw-regular);
  font-size: 14px;
}
@media screen and (min-width: 1025px) {
  .bl_postNav {
    padding-block: 30px 168px;
  }
}
.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;
  padding: 5px 20px;
  width: -moz-fit-content;
  width: fit-content;
}
.bl_postNav_previous a,
.bl_postNav_next a {
  background-color: var(--main-color);
  transition: opacity var(--transition);
}
@media (hover: hover) {
  .bl_postNav_previous a:hover,
  .bl_postNav_next a:hover {
    opacity: 0.7;
  }
}
.bl_postNav_previous div,
.bl_postNav_next div {
  background-color: #ccc;
}
.bl_postNav_previous div .el_postNav_icon,
.bl_postNav_next div .el_postNav_icon {
  opacity: 0.5;
}

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

.bl_postNav_next a {
  padding-inline: 10px 10px;
}
@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(--main-color);
  color: #fff;
  padding: 5px 20px;
  transition: opacity var(--transition);
}
@media (hover: hover) {
  .bl_postNav_home a:hover {
    opacity: 0.7;
  }
}

.el_postNav_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-time);
}
.el_postNav_icon:before {
  content: "";
  border-style: solid solid none none;
  border-width: 1px;
  border-color: inherit;
  width: 0.6em;
  height: 0.6em;
  transform: rotate(45deg);
  transition: filter var(--transition-time);
}
.el_postNav_icon.is_next {
  margin-left: 10px;
}
.el_postNav_icon.is_prev::before {
  transform: rotate(-135deg);
}
.el_postNav_icon.is_prev {
  margin-right: 10px;
}

.ly_archive_index {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--site-inline-padding);
  padding-block: 80px 120px;
}
@media screen and (min-width: 1025px) {
  .ly_archive_index {
    padding-block: 120px 180px;
  }
}

.ly_archiveIndex_articles {
  display: grid;
}
.ly_archiveIndex_articles.is_listStyle {
  display: block;
}
.ly_archiveIndex_articles.is_listStyle .bl_archive_art {
  --transition-time: 0.6s;
  border-bottom: 1px solid var(--border-color);
}
.ly_archiveIndex_articles.is_listStyle .bl_archive_art:first-child {
  border-top: 1px solid var(--border-color);
}
.ly_archiveIndex_articles.is_listStyle .bl_archive_art {
  transition: background-color var(--transition-time) ease;
}
@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: 5px;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (min-width: 1025px) {
  .ly_archiveIndex_articles.is_listStyle .bl_archive_art .el_archive_content {
    gap: 20px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }
}
.ly_archiveIndex_articles.is_listStyle .bl_archive_art .el_archive_meta {
  display: flex;
  min-width: 136px;
  align-self: flex-start;
  flex-shrink: 0;
  gap: 5px;
}
@media screen and (min-width: 1025px) {
  .ly_archiveIndex_articles.is_listStyle .bl_archive_art .el_archive_meta {
    display: grid;
    grid-template-columns: 110px 1fr;
    width: 290px;
    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;
  margin-top: 0;
}
.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-weight: var(--fw-regular);
  letter-spacing: 0.1em;
  white-space: nowrap;
  min-width: 95px;
  padding: 4px 8px;
  min-height: auto;
  font-size: 12px;
  height: 24px;
}
@media screen and (min-width: 1025px) {
  .ly_archiveIndex_articles.is_listStyle .bl_archive_art .el_archive_meta .el_post_category span {
    font-size: 14px;
    height: 28px;
  }
}
.ly_archiveIndex_articles.is_listStyle .bl_archive_art h3,
.ly_archiveIndex_articles.is_listStyle .bl_archive_art h2 {
  font-size: 16px;
  margin-top: 0;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: var(--fw-medium);
  width: 100%;
}
.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_listStyle.is_post_type_column .el_archive_meta {
  display: flex;
  flex-direction: column;
  min-width: 136px;
  align-self: flex-start;
  flex-shrink: 0;
  gap: 5px;
}
@media screen and (min-width: 1025px) {
  .ly_archiveIndex_articles.is_listStyle.is_post_type_column .el_archive_meta {
    display: grid;
    grid-template-columns: 1fr;
    width: 136px;
    align-items: flex-start;
  }
}
.ly_archiveIndex_articles.is_cardStyle {
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 1025px) {
  .ly_archiveIndex_articles.is_cardStyle {
    --column-num: 3;
    grid-template-columns: repeat(var(--column-num), 1fr);
    -moz-column-gap: 60px;
         column-gap: 60px;
    row-gap: 50px;
  }
  .ly_archiveIndex_articles.is_cardStyle.is_4col {
    --column-num: 4;
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 30px;
  }
}
.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;
  max-width: 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;
}
.ly_archiveIndex_articles .el_listItem_content {
  margin-top: 5px;
}
.ly_archiveIndex_articles .el_listItem_content .posted-on {
  opacity: 0.7;
  font-weight: var(--fw-regular);
}
.ly_archiveIndex_articles .el_listItem_content h3 {
  font-size: 16px;
  font-weight: var(--fw-regular);
  margin-top: 4px;
}

.bl_archiveCategoryFilter .bl_archive_filter {
  margin-bottom: 0px;
}

.bl_archivetagFilter {
  margin-block: 30px 60px;
}
.bl_archivetagFilter .bl_archive_filter {
  margin-bottom: 0px;
}
.bl_archivetagFilter .bl_archive_filter a {
  border: none;
  background-color: #f9f9f9;
}
.bl_archivetagFilter .bl_archive_filter a:before {
  content: "#";
}

.ly_archiveIndex_articles.is_cardStyle .bl_archive_art .bl_archive_thumbnail {
  aspect-ratio: 4/3;
  background-color: #f9f9f9;
}
.ly_archiveIndex_articles.is_cardStyle .bl_archive_art .bl_archive_thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.ly_archiveIndex_articles.is_cardStyle .bl_archive_art .bl_archive_thumbnail img.is-portrait {
  -o-object-fit: contain;
     object-fit: contain;
}
.ly_archiveIndex_articles.is_cardStyle .bl_archive_art .bl_projects_title {
  margin-top: 8px;
}
.ly_archiveIndex_articles.is_cardStyle .bl_archive_art .bl_projects_cat {
  margin-top: 12px;
}
.ly_archiveIndex_articles.is_cardStyle .bl_archive_art .bl_projects_tag {
  margin-top: 12px;
}

.bl_article_header .bl_projects_area {
  gap: 10px;
  display: flex;
}
.bl_article_header .bl_projects_area::before {
  content: "";
  background-image: url(../images/common/icon-spot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 27px;
  flex-shrink: 0;
}
.bl_article_header .el_post_taxonomies {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.bl_article_header .el_post_taxonomies .el_post_tag {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.bl_article_header .el_post_taxonomies .el_post_tag span {
  background-color: #f9f9f9;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 10px;
  font-size: 13px;
}
@media screen and (min-width: 1025px) {
  .bl_article_header .el_post_taxonomies .el_post_tag span {
    font-size: 14px;
  }
}
.bl_article_header .el_post_taxonomies .el_post_tag span::before {
  content: "#";
}

.single-projects .bl_article_header + * {
  margin-top: 60px;
}

.bl_heading_slider_wrapper {
  position: relative;
  --swiper-navigation-sides-offset: -10px;
}
@media screen and (min-width: 1025px) {
  .bl_heading_slider_wrapper {
    --swiper-navigation-sides-offset: -30px;
  }
}
.bl_heading_slider_wrapper .swiper-button-next,
.bl_heading_slider_wrapper .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: var(--main-color);
  border-radius: 100%;
  --swiper-navigation-size: 20px;
  --swiper-navigation-color: #fff;
  --swiper-navigation-sides-offset: -17px;
  --swiper-navigation-top-offset: 50%;
}

.bl_heading_slider {
  max-width: 1100px;
  margin-inline: auto;
  margin-top: 30px;
  position: relative;
}
.bl_heading_slider .swiper-wrapper {
  align-items: center;
}
.bl_heading_slider .swiper-slide {
  position: relative;
  transition: transform var(--transition), opacity var(--transition);
}
.bl_heading_slider .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.bl_slider_caption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding-block: 12px;
  padding-inline: 20px;
  line-height: 1.75;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  color: #fff;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .bl_slider_caption {
    font-size: 15px;
  }
}

.bl_headingSlider_thumbs {
  margin-inline: auto;
  margin-top: 20px;
  display: grid;
  flex-wrap: wrap;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (min-width: 1025px) {
  .bl_headingSlider_thumbs {
    margin-top: 24px;
    gap: 20px;
    width: 90%;
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 1500px) {
  .bl_headingSlider_thumbs {
    grid-template-columns: repeat(7, 1fr);
  }
}
.bl_headingSlider_thumbs .el_thumbItem {
  transition: opacity var(--transition);
}
.bl_headingSlider_thumbs .el_thumbItem:hover, .bl_headingSlider_thumbs .el_thumbItem.is_active {
  opacity: 0.4;
}
.bl_headingSlider_thumbs .el_thumbItem img {
  max-width: none;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 146/97;
}

.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;
}
@media screen and (min-width: 1025px) {
  .is-style-left-line {
    font-size: 34px;
  }
}
.is-style-left-line {
  line-height: 1.28;
  letter-spacing: 0.04em;
  position: relative;
  padding-left: 46px;
}
.is-style-left-line::before {
  content: "";
  width: 3px;
  height: 1.7em;
  transform: rotate(28deg);
  display: block;
  background: rgb(214, 189, 151);
  background: linear-gradient(0deg, #d6bd97 0%, #a48046 100%);
  position: absolute;
  left: 13px;
  top: -6px;
}

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

.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 > 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;
}
.loadingInner {
  color: #fff;
  font-size: clamp(15px, 10.873px + 0.794vw, 19px);
}
@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: 1.5s;
  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;
  }
  to {
    opacity: 1;
  }
}
@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);
  }
}
/* 文字が滑らかに表示される */
.smooth {
  clip-path: inset(0 100% 0 0);
  display: inline-block;
  transition: 2.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}

.smooth.is-animated {
  clip-path: inset(0);
}

.smooth-mv {
  clip-path: inset(0 0 0 100%);
  animation-duration: 3s;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}

.smooth-mv.is-animated {
  animation-name: smoothClipAnime;
}

@keyframes smoothClipAnime {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  50% {
    clip-path: inset(0 0 0 70%); /* 最初の30%で20%しか進まない */
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
.blur {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.blur.is-animated {
  animation-name: blurAnime;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
/*背景色が伸びて出現（共通）*/
.bgextend {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden; /*　はみ出た色要素を隠す　*/
  opacity: 0;
}
.bgextend.is-animated {
  animation-name: bgextendAnimeBase;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.bgappear.is-animated {
  animation-name: bgextendAnimeSecond;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*左から*/
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666; /*伸びる背景色の設定*/
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}/*# sourceMappingURL=style.css.map */