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

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

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

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

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

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

* {
  outline: none;
}

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

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

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

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

ul,
dl {
  text-indent: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

ol ul li {
  list-style: none;
}

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

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

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

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

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

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

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

caption {
  text-align: left;
}

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

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

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

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

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

figure {
  line-height: 0;
}

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

input,
textarea {
  border-radius: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ly_siteHeader_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.5s ease;
  height: var(--header-height);
  width: 100vw;
  max-width: var(--site-width);
  margin-inline: auto;
  padding-inline: var(--header-inline-padding);
  position: relative;
  gap: 15px;
  padding-left: clamp(18px, -383.818px + 23.636vw, 70px);
}
.ly_siteHeader_content .header_logo_image {
  width: clamp(78px, 24.667px + 5.208vw, 108px);
  margin-right: 11px;
}
.ly_siteHeader_content .el_siteHeader_copy {
  width: clamp(200px, 14.4vw, 276px);
}
.ly_siteHeader_content .bl_header_title {
  padding-inline: 10px;
}

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

.ly_fixed_header {
  margin-top: var(--header-height);
}
.ly_fixed_header .ly_siteHeader {
  position: fixed;
  top: 0;
  left: 0;
}
.ly_fixed_header.admin-bar {
  margin-top: calc(var(--header-height));
}
.ly_fixed_header.admin-bar .ly_siteHeader {
  top: 32px;
}

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

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

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

.ly_siteMain {
  margin-inline: auto;
  width: 100%;
  background-color: var(--bg-color);
  overflow: hidden;
}

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

.ly_pageHeader {
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: var(--site-inline-padding);
  padding-block: 20px;
  color: var(--main-color);
  min-height: 100px;
  background-image: url(../images/common/page-header.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1025px) {
  .ly_pageHeader {
    height: 250px;
  }
}

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

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

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

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

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

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

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

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

.el_arrow__left {
  margin-left: 5px;
}

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

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

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

.bl_postThumbnail img {
  filter: none;
}

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

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

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

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

.bl_siteHeader_nav {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1024px) {
  .bl_siteHeader_nav {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    padding-bottom: 30px;
    max-width: 480px;
  }
  .bl_siteHeader_nav li {
    font-size: 18px;
    letter-spacing: 0.06em;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .bl_siteHeader_nav li a {
    padding-block: 10px;
    padding-inline: 10px;
    font-weight: 500;
  }
  .bl_siteHeader_nav li .sub-menu {
    width: 100%;
    display: none;
    padding-left: 10px;
    padding-top: 0;
  }
  .bl_siteHeader_nav li figure {
    display: none;
  }
  .bl_siteHeader_nav .el_header_button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 100px;
    height: 56px;
    padding: 10px;
    background-color: var(--main-color);
    color: #fff;
    margin-inline: auto;
    margin-block: 20px 0;
  }
}
@media screen and (max-width: 1024px) and (min-width: 1025px) {
  .bl_siteHeader_nav .el_header_button a {
    width: 164px;
    margin-block: 0;
  }
}
@media screen and (min-width: 1025px) {
  .bl_siteHeader_nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    min-height: 50px;
    gap: 10px;
  }
  .bl_siteHeader_nav li:hover > .sub-menu {
    display: block;
  }
  .bl_siteHeader_nav li.mega_menu {
    position: initial;
  }
  .bl_siteHeader_nav li.mega_menu::before {
    content: "";
    width: 100%;
    height: calc(100vw - 100px);
    position: absolute;
    top: 100px;
    left: 0;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }
  .bl_siteHeader_nav li.mega_menu:hover::before {
    visibility: visible;
    opacity: 0.3;
  }
  .bl_siteHeader_nav li.mega_menu:hover > a {
    padding-block: 40px;
  }
  .bl_siteHeader_nav li.mega_menu:hover > .sub-menu {
    display: grid;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu {
    max-width: 1300px;
    width: 66vw;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: clamp(10px, -19.942px + 2.924vw, 20px);
         column-gap: clamp(10px, -19.942px + 2.924vw, 20px);
    row-gap: clamp(25px, -11.986px + 2.708vw, 40px);
    left: 50%;
    transform: translateX(-50%);
    min-width: auto;
    padding-inline: clamp(30px, -68.628px + 7.22vw, 70px);
    padding-top: clamp(25px, -36.643px + 4.513vw, 50px);
    padding-bottom: clamp(15px, -21.986px + 2.708vw, 30px);
    border-radius: 30px;
    top: 90px;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu::before {
    content: "FKKフレシネー工法とは";
    font-size: clamp(25px, 16.018px + 0.877vw, 28px);
    color: var(--main-color);
    grid-column: 1/-1;
    line-height: 1;
  }
}
@media screen and (min-width: 1025px) and (min-width: 1367px) {
  .bl_siteHeader_nav li.mega_menu > .sub-menu::before {
    font-size: clamp(28px, -1.588px + 2.166vw, 40px);
  }
}
@media screen and (min-width: 1025px) {
  .bl_siteHeader_nav li.mega_menu > .sub-menu li figure {
    overflow: hidden;
    border-radius: 10px;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li figure a {
    padding: 0;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li figure img {
    transition: all var(--transition);
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li > a {
    padding-block: clamp(10px, -4.794px + 1.083vw, 16px);
    padding-inline: 0 7px;
    font-size: clamp(12px, 3.018px + 0.877vw, 15px);
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    color: var(--main-color);
    transition: color var(--transition);
  }
}
@media screen and (min-width: 1025px) and (min-width: 1367px) {
  .bl_siteHeader_nav li.mega_menu > .sub-menu li > a {
    font-size: clamp(15px, 2.64px + 0.904vw, 20px);
  }
}
@media screen and (min-width: 1025px) {
  .bl_siteHeader_nav li.mega_menu > .sub-menu li > a::after {
    content: "";
    content: "";
    background-image: url(../images/header/menu_arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 28px;
    height: 7px;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li:hover > a {
    opacity: 0.7;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li:hover figure img {
    transform: scale(1.1);
  }
  .bl_siteHeader_nav li.mega_menu.menu_company > .sub-menu::before {
    content: "会社情報";
  }
  .bl_siteHeader_nav a {
    transition: color 0.5s ease;
  }
  .bl_siteHeader_nav li.current-menu-item > a {
    color: var(--main-color);
    font-weight: 700;
  }
  .bl_siteHeader_nav > li {
    width: auto;
    position: relative;
    font-size: var(--menu-fsz);
    letter-spacing: 0.06em;
  }
  .bl_siteHeader_nav > li > a {
    color: var(--main-color);
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding-block: 10px;
    padding-inline: clamp(2px, -49.882px + 4.118vw, 16px);
    line-height: 1.2;
    white-space: nowrap;
    height: 100%;
    position: relative;
    transition: opacity var(--transition-time);
    font-size: 16px;
    font-size: clamp(13px, 7.667px + 0.521vw, 16px);
    letter-spacing: 0.01em;
  }
  .bl_siteHeader_nav > li > a:hover {
    opacity: 0.7;
  }
  .bl_siteHeader_nav > li.el_header_button a {
    background-color: var(--main-color);
    color: #fff;
    border-radius: 100px;
    max-width: 180px;
    width: 100%;
    min-height: 40px;
    padding-inline: 1em;
  }
}
@media screen and (min-width: 1025px) and (min-width: 1367px) {
  .bl_siteHeader_nav > li.el_header_button a {
    width: 180px;
  }
}
@media screen and (min-width: 1025px) {
  .bl_siteHeader_nav .sub-menu {
    display: none;
    position: absolute;
    background-color: var(--global-submenu-bg, #fff);
    min-width: 100%;
    border-radius: 10px;
    box-shadow: 0px 8px 30px 0px rgba(167, 167, 167, 0.3);
  }
  .bl_siteHeader_nav .sub-menu a {
    color: var(--text-color);
    display: flex;
    align-items: center;
    padding: 0.8em 1em;
    white-space: nowrap;
  }
}

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

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

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

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

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

ul.bogo-language-switcher.list-view {
  display: flex;
  gap: 5px;
  flex-direction: row-reverse;
  align-items: center;
}
ul.bogo-language-switcher.list-view > li:first-child::before {
  content: "/";
  margin-right: 5px;
  color: var(--main-color);
}
ul.bogo-language-switcher.list-view > li a {
  color: var(--main-color);
}

.bogo-item.menu-item {
  display: flex;
  align-items: baseline;
  color: var(--main-color);
}
.bogo-item.menu-item > a {
  padding-inline: 5px;
}
.bogo-item.menu-item > a.current {
  font-weight: var(--fw-black);
}
@media screen and (max-width: 1024px) {
  .bogo-item.menu-item {
    margin-inline: auto;
    width: -moz-fit-content;
    width: fit-content;
  }
}

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

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

.bl_page_title {
  color: #fff;
  font-size: 25px;
  letter-spacing: 0.16em;
  line-height: 1.3;
}
@media screen and (min-width: 1025px) {
  .bl_page_title {
    font-size: 40px;
  }
}
.bl_page_title span {
  white-space: nowrap;
}

.page .bl_article_content {
  font-weight: var(--fw-regular);
}
.page .bl_article_content p {
  letter-spacing: 0.06em;
  line-height: 2.125;
}
.page .bl_article_content p a {
  color: var(--main-color);
  transition: opacity var(--transition-time) ease;
}
@media (hover: hover) {
  .page .bl_article_content p a:hover {
    opacity: 0.7;
  }
}
.page .bl_article_content h2 {
  color: var(--main-color);
  text-align: left;
  position: relative;
  font-size: 24px;
  font-weight: var(--fw-bold);
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content h2 {
    font-size: 32px;
    letter-spacing: 0.16em;
    line-height: 1.35;
  }
}
.page .bl_article_content h2.lp_heading {
  color: var(--main-color);
  text-align: left;
  position: relative;
  font-size: 22px;
  font-weight: var(--fw-bold);
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content h2.lp_heading {
    font-size: 32px;
    letter-spacing: 0.16em;
    line-height: 1.35;
  }
}
.page .bl_article_content h2.lp_heading .el_heading_sub {
  display: flex;
  font-size: 14px;
  letter-spacing: 0.1em;
  align-items: center;
  gap: 7px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content h2.lp_heading .el_heading_sub {
    font-size: 20px;
    gap: 10px;
  }
}
.page .bl_article_content h2.lp_heading .el_heading_sub:before {
  content: "";
  width: 18px;
  height: 0;
  border-bottom: 1px solid;
  flex-shrink: 0;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content h2.lp_heading .el_heading_sub:before {
    width: 21px;
  }
}
.page .bl_article_content h3 {
  font-optical-sizing: auto;
  font-weight: var(--fw-medium);
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content h3 {
    font-size: 24px;
  }
}
.page .bl_article_content h4 {
  font-size: 18px;
  line-height: 1.5;
}
.page .bl_article_content table {
  width: 100%;
  max-width: 1030px;
}
.page .bl_article_content table th,
.page .bl_article_content table td {
  padding-block: 20px;
  padding-inline: 8px;
  border-bottom: 1px solid #d8d8d8;
  letter-spacing: 0.06em;
  font-size: 15px;
  line-height: 1.4;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content table th,
  .page .bl_article_content table td {
    padding-inline: 24px;
  }
}
.page .bl_article_content table th {
  position: relative;
  font-weight: var(--fw-medium);
  color: var(--main-color);
}
.page .bl_article_content table td {
  font-weight: var(--fw-medium);
}
.page .bl_article_content table td dl {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .page .bl_article_content table td dl {
    flex-direction: column;
  }
}
.page .bl_article_content table td dl dt {
  flex-shrink: 0;
}
.page .bl_article_content table td dl + dl {
  margin-top: 20px;
}
.page .bl_article_content section {
  max-width: 1240px;
  margin-inline: auto;
}
.page .bl_article_content section.full-width {
  max-width: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.page .bl_article_content section > * + * {
  margin-top: 30px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section > * + * {
    margin-top: 40px;
  }
}
.page .bl_article_content section > .is_align_left + *,
.page .bl_article_content section > .is_align_right + *,
.page .bl_article_content section > h3 + *,
.page .bl_article_content section > h2 + * {
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section > .is_align_left + *,
  .page .bl_article_content section > .is_align_right + *,
  .page .bl_article_content section > h3 + *,
  .page .bl_article_content section > h2 + * {
    margin-top: 30px;
  }
}
.page .bl_article_content section > * + h2 {
  margin-top: 60px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section > * + h2 {
    margin-top: 80px;
  }
}
.page .bl_article_content section > * + h3 {
  margin-top: 40px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section > * + h3 {
    margin-top: 60px;
  }
}
.page .bl_article_content .is_style_disc {
  padding-left: 1.3em;
}
.page .bl_article_content .is_style_disc li {
  list-style: disc;
}
.page .bl_article_content .bl_mediaText.is_about_fkk {
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .page .bl_article_content .bl_mediaText.is_about_fkk .el_mediaText_image {
    display: flex;
  }
  .page .bl_article_content .bl_mediaText.is_about_fkk .el_mediaText_image figcaption {
    font-size: 12px;
  }
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content .bl_mediaText.is_about_fkk {
    grid-template-columns: 1fr 379px;
    gap: 140px;
  }
  .page .bl_article_content .bl_mediaText.is_about_fkk .el_mediaText_image {
    grid-column: 2/3;
  }
  .page .bl_article_content .bl_mediaText.is_about_fkk .el_mediaText_content {
    grid-column: 1/2;
    grid-row: 1;
  }
}
.page .bl_article_content .bl_mediaText.is_freyssinet_case {
  align-items: center;
  gap: 20px;
  margin-top: 70px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content .bl_mediaText.is_freyssinet_case {
    gap: 40px;
    margin-top: 150px;
  }
}
.page .bl_article_content figcaption {
  line-height: 1;
  font-size: 16px;
  text-align: right;
}
.page .bl_article_content .el_contentBox {
  background-color: #f2f5f6;
  padding-block: 30px;
  padding-inline: 25px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content .el_contentBox {
    padding-block: 40px;
    padding-inline: 60px;
  }
}
.page .bl_article_content .el_contentBox > * + * {
  margin-top: 20px;
}
.page .bl_article_content .bl_columns.is_flex {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content .bl_columns.is_flex {
    flex-direction: row;
    gap: 70px;
    justify-content: center;
  }
}
.page .bl_article_content .bl_columns.is_flex .el_column figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.page .bl_article_content .bl_columns.is_flex .el_column figure figcaption {
  width: 100%;
  text-align: right;
}
.page .bl_article_content .bl_comapnyMap {
  --article-mt: 80px;
}
.page .bl_article_content .bl_comapnyMap iframe {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  aspect-ratio: 1000/680;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content .bl_comapnyMap iframe {
    aspect-ratio: 1000/480;
  }
}
.page .bl_article_content .el_mediaText_content > * + * {
  margin-top: 20px;
}
.page .bl_article_content section.bl_freyssinet_banner {
  --article-mt: 70px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content section.bl_freyssinet_banner {
    --article-mt: 150px;
  }
}
.page .bl_article_content section.bl_freyssinet_banner .el_linkButton {
  max-width: 340px;
}
.page .bl_article_content section.bl_freyssinet_banner .bl_banner_column:first-child::before {
  background-image: url(../images/fkk/fkk-bg-history.webp);
}
.page .bl_article_content section.bl_freyssinet_banner .bl_banner_column:last-child::before {
  background-image: url(../images/fkk/fkk-bg-gisi.webp);
}
.page .bl_article_content p.el_update {
  text-align: right;
}
.page .bl_article_content ul.bl_families {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px;
}
.page .bl_article_content ul.bl_families li a {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 334/105;
  background-repeat: no-repeat;
  background-size: contain;
  color: #fff;
  font-size: 16px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  transition: opacity var(--transition);
}
.page .bl_article_content ul.bl_families li a span {
  margin-inline: 0.25em;
}
@media (hover: hover) {
  .page .bl_article_content ul.bl_families li a:hover {
    opacity: 0.7;
  }
}
.page .bl_article_content ul.bl_families li:nth-child(8n+1) a, .page .bl_article_content ul.bl_families li:nth-child(8n+3) a, .page .bl_article_content ul.bl_families li:nth-child(8n+6) a, .page .bl_article_content ul.bl_families li:nth-child(8n+8) a {
  background-image: url(../images/page/bg-family-odd.svg);
}
.page .bl_article_content ul.bl_families li:nth-child(8n+2) a, .page .bl_article_content ul.bl_families li:nth-child(8n+4) a, .page .bl_article_content ul.bl_families li:nth-child(8n+5) a, .page .bl_article_content ul.bl_families li:nth-child(8n+7) a {
  background-image: url(../images/page/bg-family-even.svg);
}
.page .bl_article_content ul.el_sizai_index {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content ul.el_sizai_index {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
.page .bl_article_content ul.el_sizai_index li {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 30px;
  align-items: center;
  justify-content: center;
  background-color: #f2f5f6;
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: var(--main-color);
  text-align: center;
  gap: 5px;
  padding-block: 10px;
  padding-inline: 5px;
  font-size: 12px;
}
@media screen and (min-width: 1025px) {
  .page .bl_article_content ul.el_sizai_index li {
    min-height: 110px;
    gap: 13px;
    font-size: 16px;
    padding-block: 26px;
    padding-inline: 10px;
  }
}
.page .bl_article_content ul.el_sizai_index li a {
  display: flex;
  margin-inline: auto;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  text-align: center;
  transition: filter var(--transition);
  min-height: 25px;
  width: 80%;
  max-width: 220px;
}
@media screen and (min-width:520px) {
  .page .bl_article_content ul.el_sizai_index li a {
    min-height: 30px;
    width: 100%;
  }
}
.page .bl_article_content ul.el_sizai_index li a::after {
  content: "";
  border-style: solid solid none;
  border-color: #fff transparent transparent;
  border-width: 4px 3px 0;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width:520px) {
  .page .bl_article_content ul.el_sizai_index li a::after {
    right: 20px;
  }
}
@media (hover: hover) {
  .page .bl_article_content ul.el_sizai_index li a:hover {
    filter: brightness(1.5);
  }
}
.page .bl_article_content table.bl_sizaiItems {
  font-size: 15px;
  letter-spacing: 0.06em;
  table-layout: fixed;
  border: 10px solid #f2f5f6;
  max-width: none;
}
.page .bl_article_content table.bl_sizaiItems thead th {
  background-color: var(--main-color);
  color: #fff;
  font-weight: var(--fw-bold);
}
.page .bl_article_content table.bl_sizaiItems th.el_sizaiItem_format {
  width: 110px;
}
.page .bl_article_content table.bl_sizaiItems th.el_sizaiItem_abst {
  width: 40%;
}
.page .bl_article_content table.bl_sizaiItems tbody th a,
.page .bl_article_content table.bl_sizaiItems tbody td a {
  display: block;
}
@media screen and (max-width: 1024px) {
  .page .bl_article_content table.bl_sizaiItems thead {
    display: none;
  }
  .page .bl_article_content table.bl_sizaiItems tbody tr,
  .page .bl_article_content table.bl_sizaiItems tbody td,
  .page .bl_article_content table.bl_sizaiItems tbody th {
    display: block;
  }
  .page .bl_article_content table.bl_sizaiItems tbody th {
    background-color: var(--main-color);
    color: #fff;
  }
}
.page .bl_article_content table.bl_sizaiItems a.el_donwload_button {
  display: grid;
  place-content: center;
  padding: 5px;
  border: 1px solid;
  border-radius: 100px;
  color: var(--main-color);
  transition: all var(--transition);
  max-width: 400px;
  margin-inline: auto;
}
@media (hover: hover) {
  .page .bl_article_content table.bl_sizaiItems a.el_donwload_button:hover {
    background-color: var(--main-color);
    color: #f2f5f6;
  }
}

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

.bl_siteFooter {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 22px 29px;
  gap: clamp(36px, 4.7vw, 90px);
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter {
    padding-block: 45px 45px;
  }
}
.bl_siteFooter a:not(.not_link) {
  transition: opacity var(--transition-time);
}
@media (hover: hover) {
  .bl_siteFooter a:not(.not_link):hover {
    opacity: 0.7;
  }
}

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

.bl_siteFooter_content {
  max-width: 573px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.el_siteFooter_info {
  letter-spacing: 0.06em;
  line-height: 2.14;
  margin-top: 15px;
  font-size: 14px;
}

.bl_siteFooter_nav {
  display: flex;
  margin-inline: auto;
  max-width: 500px;
  width: 100%;
  flex-wrap: wrap;
  row-gap: 30px;
  -moz-column-gap: 0;
       column-gap: 0;
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter_nav {
    justify-content: space-between;
    flex-direction: row;
    max-width: none;
    gap: 20px;
  }
}
.bl_siteFooter_nav .widget_nav_menu {
  width: 100%;
  padding-inline: 38px;
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter_nav .widget_nav_menu {
    border-left: 1px solid var(--border-color);
    padding-inline: 20px 0;
    width: auto;
  }
}
@media screen and (max-width: 1024px) {
  .bl_siteFooter_nav .widget_nav_menu:nth-child(3), .bl_siteFooter_nav .widget_nav_menu:nth-child(4) {
    width: 47%;
  }
  .bl_siteFooter_nav .widget_nav_menu:nth-child(3) .sub-menu, .bl_siteFooter_nav .widget_nav_menu:nth-child(4) .sub-menu {
    display: none;
  }
}
.bl_siteFooter_nav .widget_nav_menu:last-child {
  border: none;
  padding-inline: 0;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter_nav .widget_nav_menu:last-child {
    width: auto;
  }
}
.bl_siteFooter_nav .widget_nav_menu ul.menu > li > a {
  font-size: 16px;
  letter-spacing: 0.16em;
  color: var(--main-color);
  font-weight: var(--fw-medium);
  line-height: 1.2;
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter_nav .widget_nav_menu ul.menu > li > a {
    font-size: 20px;
  }
}
.bl_siteFooter_nav .widget_nav_menu ul.menu > li + li {
  margin-top: 30px;
}
.bl_siteFooter_nav .widget_nav_menu ul.menu > li.el_menuButton {
  width: 100%;
  padding-block: 0;
}
.bl_siteFooter_nav .widget_nav_menu ul.menu > li.el_menuButton a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  height: 40px;
  width: 100%;
  letter-spacing: 0.1em;
  line-height: 1.25;
  padding: 10px;
  margin-inline: auto;
  padding-inline: 20px 10px;
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter_nav .widget_nav_menu ul.menu > li.el_menuButton a {
    width: clamp(160px, -662.256px + 60.15vw, 240px);
  }
}
.bl_siteFooter_nav .widget_nav_menu ul.menu > li.el_menuButton + li {
  margin-top: 14px;
}
.bl_siteFooter_nav .widget_nav_menu ul.sub-menu {
  margin-top: 5px;
  font-size: 12px;
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter_nav .widget_nav_menu ul.sub-menu {
    font-size: 14px;
  }
}
.bl_siteFooter_nav .widget_nav_menu ul.sub-menu > li > a {
  padding-block: 12px 12px;
  line-height: 1.2;
}

.bl_siteFooter_copyRight {
  font-size: 14px;
  text-align: center;
  width: 100%;
  color: #fff;
  background-color: #2c2c2c;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-inline: 15px;
  min-height: 95px;
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter_copyRight {
    min-height: 50px;
  }
}
.bl_siteFooter_copyRight .bl_siteFooter_inner {
  max-width: var(--content-width);
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter_copyRight .bl_siteFooter_inner {
    gap: 10px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.bl_cta {
  background-image: url(../images/footer/contact-bg-sp.webp);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  display: grid;
  padding-block: 60px 36px;
  align-content: center;
  padding-inline: var(--site-inline-padding);
  overflow: hidden;
  position: relative;
  height: 400px;
}
@media screen and (min-width: 1025px) {
  .bl_cta {
    background-image: url(../images/footer/contact-bg.webp);
  }
}
@media screen and (min-width: 1025px) {
  .bl_cta {
    height: 500px;
  }
}
.bl_cta .bl_cta_innner {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
}
.bl_cta .bl_cta_innner .el_cta_heading {
  font-size: 20px;
  letter-spacing: 0.16em;
  line-height: 1.5;
}
@media screen and (min-width: 1025px) {
  .bl_cta .bl_cta_innner .el_cta_heading {
    font-size: 40px;
  }
}
.bl_cta .bl_cta_innner .el_cta_heading span {
  display: block;
  letter-spacing: 0.1em;
  font-size: 12px;
}
@media screen and (min-width: 1025px) {
  .bl_cta .bl_cta_innner .el_cta_heading span {
    font-size: 20px;
  }
}
.bl_cta .bl_cta_innner p {
  margin-top: 30px;
  letter-spacing: 0.06em;
  font-size: 14px;
}
@media screen and (min-width: 1025px) {
  .bl_cta .bl_cta_innner p {
    font-size: 18px;
  }
}
.bl_cta .bl_cta_innner .el_linkButton {
  max-width: 340px;
  min-height: 50px;
  color: #fff;
  background-color: var(--main-color);
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-inline: auto;
  margin-top: 115px;
  position: relative;
  transition: all var(--transition-time) ease;
}
@media screen and (min-width: 1025px) {
  .bl_cta .bl_cta_innner .el_linkButton {
    min-height: 60px;
  }
}
@media screen and (min-width: 1025px) {
  .bl_cta .bl_cta_innner .el_linkButton {
    margin-top: 60px;
  }
}
.bl_cta .bl_cta_innner .el_linkButton::after {
  content: "";
  background-image: url(../images/button-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 43px;
  height: 8px;
  position: absolute;
  right: 25px;
}
@media (hover: hover) {
  .bl_cta .bl_cta_innner .el_linkButton:hover {
    opacity: 1;
    filter: brightness(1.2);
  }
}
.en-US .bl_cta .bl_cta_innner .el_linkButton {
  margin-top: 85px;
}
@media screen and (min-width: 1025px) {
  .en-US .bl_cta .bl_cta_innner .el_linkButton {
    margin-top: 60px;
  }
}
.bl_cta .el_cta_copy {
  font-size: 40px;
  top: 10.6%;
  text-align: center;
  color: #fff;
  position: absolute;
  mix-blend-mode: overlay;
  width: 100%;
  z-index: 1;
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  .bl_cta .el_cta_copy {
    font-size: 84px;
    top: 28.6%;
  }
}
.bl_cta .el_cta_copy span {
  white-space: nowrap;
}
.en-US .bl_cta .el_cta_copy {
  top: 10.6%;
}
@media screen and (min-width: 1025px) {
  .en-US .bl_cta .el_cta_copy {
    top: 31.6%;
  }
}

.bl_siteFooter_en {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  padding-bottom: 40px;
}
.bl_siteFooter_en li {
  max-width: 340px;
}

.bl_mainVisual {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  background-image: url(../images/top/mv-1-sp.webp);
  height: calc(100vh - 80px);
}
@media screen and (min-width:520px) {
  .bl_mainVisual {
    height: 900px;
    width: 100%;
    background-image: url(../images/top/mv-1.webp);
    aspect-ratio: 1920/900;
  }
}
.bl_mainVisual .el_mainVisual_scroll {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  transform: rotate(90deg);
  transform-origin: right;
  font-size: 12px;
  letter-spacing: 0.08em;
  bottom: 50px;
  right: calc(50% - 6px);
}
@media screen and (min-width: 1025px) {
  .bl_mainVisual .el_mainVisual_scroll {
    right: 60px;
  }
}
.bl_mainVisual .el_mainVisual_scroll span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bl_mainVisual .el_mainVisual_scroll span::before {
  content: "";
  height: 0;
  border: 1px solid;
  width: 15px;
}
.bl_mainVisual .el_mainVisual_scroll::before, .bl_mainVisual .el_mainVisual_scroll::after {
  content: "";
  height: 0;
  border: 1px solid;
  position: absolute;
  bottom: 9px;
  right: -60px;
}
.bl_mainVisual .el_mainVisual_scroll::before {
  width: 50px;
  z-index: 1;
}
.bl_mainVisual .el_mainVisual_scroll::after {
  z-index: 2;
  width: 50px;
  animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
.bl_mainVisual a.scroll_down {
  display: inline-block;
  color: #fff;
  position: absolute;
  font-size: 12px;
  letter-spacing: 0.08em;
  bottom: 0;
  z-index: 2;
  width: 13px;
  padding: 10px 10px 60px;
  line-height: 1;
  text-decoration: none;
  writing-mode: vertical-lr;
  transition: 0.2s;
  overflow: hidden;
  margin: auto;
  right: calc(50% - 6px);
}
@media screen and (min-width: 1025px) {
  .bl_mainVisual a.scroll_down {
    right: 60px;
  }
}
.bl_mainVisual a.scroll_down::after, .bl_mainVisual a.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 73%;
  width: 2px;
  height: 50px;
  background: #ddd;
}
.bl_mainVisual a.scroll_down:before {
  background: #ddd;
}
.bl_mainVisual a.scroll_down:after {
  background: #fff;
}
.bl_mainVisual a.scroll_down:hover {
  opacity: 0.5;
}
.bl_mainVisual a.scroll_down:after {
  animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
.bl_mainVisual a.scroll_down span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bl_mainVisual a.scroll_down span::before {
  content: "";
  height: 15px;
  border: 1px solid;
  width: 0;
}

@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.bl_mainVisual_content {
  position: absolute;
  color: #fff;
  display: flex;
  flex-direction: column;
  top: 41px;
  left: 20px;
}
@media screen and (min-width: 1025px) {
  .bl_mainVisual_content {
    top: auto;
    left: auto;
    right: 34px;
    bottom: 220px;
  }
}
.bl_mainVisual_content .el_mainVisual_mainCopy {
  font-size: 47px;
  font-size: clamp(47px, -34.446px + 15.083vw, 120px);
  line-height: 1.08843537;
  mix-blend-mode: overlay;
}
@media screen and (min-width: 1025px) {
  .bl_mainVisual_content .el_mainVisual_mainCopy {
    font-size: clamp(120px, 89.143px + 3.013vw, 147px);
  }
}
.bl_mainVisual_content .el_mainVisual_subCopy {
  font-size: 24px;
  font-size: clamp(24px, 17.306px + 1.24vw, 30px);
  letter-spacing: 0.06em;
  line-height: 1.6;
  position: relative;
  display: flex;
  margin-top: 10px;
}
.bl_mainVisual_content .el_mainVisual_subCopy::before {
  content: "";
  width: 31px;
  height: 0;
  border: 1px solid;
  margin-top: 0.8em;
  margin-right: 20px;
}
@media screen and (min-width: 1025px) {
  .bl_mainVisual_content .el_mainVisual_subCopy::before {
    width: 132px;
  }
}
@media screen and (min-width: 1025px) {
  .bl_mainVisual_content .el_mainVisual_subCopy {
    font-size: clamp(30px, 25.707px + 0.419vw, 34px);
  }
}
.en-US .bl_mainVisual_content .el_mainVisual_subCopy {
  margin-top: 15px;
  font-size: clamp(18px, 6.843px + 2.066vw, 28px);
}
@media screen and (min-width: 1025px) {
  .en-US .bl_mainVisual_content .el_mainVisual_subCopy {
    font-size: clamp(30px, 28.927px + 0.105vw, 31px);
  }
}

.bl_newsTab {
  margin-top: 40px;
}

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

.bl_newsTab_contents {
  margin-top: 40px;
  display: grid;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .bl_newsTab_contents {
    margin-top: 48px;
  }
}

.el_tab_panel {
  display: block;
  grid-area: 1/1;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition: all var(--transition);
}
.el_tab_panel.is_active {
  display: block;
  z-index: 2;
  visibility: visible;
  opacity: 1;
}
.el_tab_panel .el_newsTab_items {
  display: grid;
  gap: 18px;
}
@media screen and (min-width: 1025px) {
  .el_tab_panel .el_newsTab_items {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }
}
.el_tab_panel .el_newsTab_item {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 10px;
}
@media screen and (min-width: 1025px) {
  .el_tab_panel .el_newsTab_item {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
.el_tab_panel .el_newsTab_item .bl_postThumbnail {
  --article-mt: 0;
}
@media screen and (min-width: 1025px) {
  .el_tab_panel .el_newsTab_item .bl_postThumbnail {
    --article-mt: 17px;
  }
}
.el_tab_panel .el_newsTab_item img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 472/348;
  width: 100%;
}
.el_tab_panel .el_newsTab_item .el_entry_date {
  font-size: 14px;
  font-weight: var(--fw-regular);
  letter-spacing: 0.1em;
  line-height: 1;
}
.el_tab_panel .el_newsTab_item .el_newsTab_meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.el_tab_panel .el_newsTab_item .el_post_category {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}
.el_tab_panel .el_newsTab_item .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;
  min-height: 28px;
  line-height: 1.2;
  border-radius: 3px;
  min-width: 90px;
  padding: 5px 10px;
}
.el_tab_panel .el_newsTab_item h3.el_newsTab_title {
  font-size: 16px;
  color: var(--main-color);
  margin-top: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
@media screen and (min-width: 1025px) {
  .el_tab_panel .el_newsTab_item h3.el_newsTab_title {
    margin-top: 5px;
    font-size: 18px;
  }
}

.home {
  --article-mt: 0;
}
.home .bl_article_content {
  max-width: none;
  padding-inline: 0;
}
.home .bl_article_content .el_linkButton {
  margin-top: 34px;
  margin-inline: auto;
  max-width: 340px;
}
.home .bl_article_content section {
  max-width: none;
}

section.bl_topFKK {
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  color: #fff;
  padding-top: 69px;
  overflow: hidden;
  position: relative;
  background-image: url(../images/top/about-fkk-sp.webp);
  background-position: center right;
}
@media screen and (min-width: 1025px) {
  section.bl_topFKK {
    background-image: url(../images/top/about-fkk.webp);
    padding-top: 150px;
    height: 820px;
    background-position: bottom right;
  }
}
section.bl_topFKK .lp_heading {
  --main-color: #fff;
}
section.bl_topFKK p {
  max-width: 666px;
  margin-top: 40px;
  font-weight: var(--fw-regular);
  letter-spacing: 0.1em;
  line-height: 2.1875;
}
@media screen and (max-width: 1024px) {
  section.bl_topFKK p {
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 2.14285714;
  }
}
section.bl_topFKK a.el_linkButton {
  margin-top: 22px !important;
}
@media screen and (min-width: 1025px) {
  section.bl_topFKK a.el_linkButton {
    margin-left: 0 !important;
    margin-top: 50px !important;
  }
}
section.bl_topFKK .el_tobFKK_bgCopy {
  position: absolute;
  left: 50%;
  transform: translateX(-49.9%);
  font-size: 29px;
  mix-blend-mode: overlay;
  white-space: nowrap;
  line-height: 1;
  bottom: clamp(-19px, 4.667px + -2.311vw, -4px);
  font-size: clamp(29px, -39.76px + 18.336vw, 148px);
}
@media screen and (min-width: 1025px) {
  section.bl_topFKK .el_tobFKK_bgCopy {
    bottom: -19px;
    font-size: 148.5px;
  }
}

section.bl_topBanner {
  --article-mt: 62px;
}
section.bl_topBanner .bl_banner_2col {
  display: grid;
  gap: 9px;
}
@media screen and (min-width: 1025px) {
  section.bl_topBanner .bl_banner_2col {
    gap: 0;
    grid-template-columns: 1fr 1fr;
  }
}
section.bl_topBanner .bl_banner_column {
  display: flex;
  flex-direction: column;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  align-items: center;
  height: 195px;
  padding-block: 46px 24px;
  transition: background-size var(--transition);
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  section.bl_topBanner .bl_banner_column {
    height: 500px;
    padding-block: 200px 53px;
  }
}
@media (hover: hover) {
  section.bl_topBanner .bl_banner_column:hover::before {
    transform: scale(1.05);
  }
  section.bl_topBanner .bl_banner_column:hover .el_linkButton {
    pointer-events: none;
    background-color: #fff;
    color: var(--main-color);
  }
  section.bl_topBanner .bl_banner_column:hover .el_linkButton::after {
    filter: brightness(0) saturate(100%) invert(12%) sepia(74%) saturate(3280%) hue-rotate(205deg) brightness(95%) contrast(105%);
  }
}
section.bl_topBanner .bl_banner_column::before {
  content: "";
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all var(--transition);
}
section.bl_topBanner .bl_banner_column h2.lp_heading {
  --main-color: #fff;
  text-align: center;
  font-size: 20px;
}
@media screen and (min-width: 1025px) {
  section.bl_topBanner .bl_banner_column h2.lp_heading {
    font-size: 40px;
  }
}
section.bl_topBanner .bl_banner_column .el_heading_sub {
  font-size: 12px;
}
@media screen and (min-width: 1025px) {
  section.bl_topBanner .bl_banner_column .el_heading_sub {
    font-size: 20px;
  }
}
section.bl_topBanner .bl_banner_column .el_heading_sub::before {
  content: none !important;
}
section.bl_topBanner .bl_banner_column .el_linkButton {
  margin-top: auto;
}
section.bl_topBanner .bl_banner_column .el_linkButton::after {
  transition: none;
}
section.bl_topBanner .bl_banner_column:first-child::before {
  background-image: url(../images/top/bg-material.webp);
}
section.bl_topBanner .bl_banner_column:last-child::before {
  background-image: url(../images/top/bg-tech.webp);
}

section.bl_topCompany {
  padding-block: 40px 50px;
}
@media screen and (min-width: 1025px) {
  section.bl_topCompany {
    padding-block: 70px 77px;
  }
}
section.bl_topCompany .bl_mediaText {
  gap: 30px;
}
@media screen and (min-width: 1025px) {
  section.bl_topCompany .bl_mediaText {
    gap: 60px;
  }
}
section.bl_topCompany .bl_mediaText p {
  line-height: 2.14285714;
  font-size: 14px;
  letter-spacing: 0.06em;
  margin-top: 24px;
}
@media screen and (min-width: 1025px) {
  section.bl_topCompany .bl_mediaText p {
    margin-top: 50px;
  }
}
section.bl_topCompany .bl_mediaText figure img {
  aspect-ratio: 767/419;
  -o-object-fit: cover;
     object-fit: cover;
}

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

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

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

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

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

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

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

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

.in_company_page figcaption {
  text-align: left !important;
  margin-top: 15px;
}

.bl_company_table a {
  color: var(--main-color);
  transition: all var(--transition);
}
.bl_company_table a:hover {
  opacity: 0.7;
}
.bl_company_table dt {
  width: 110px;
}

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

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

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

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

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

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

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

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

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

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

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

.bl_form_notice {
  background-color: #f2f5f6;
  max-width: 900px;
  margin-inline: auto;
}
.bl_form_notice .el_accordion_title {
  position: relative;
}
.bl_form_notice button.el_accordion_button {
  --ac-icon-right: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  align-items: center;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  text-align: left;
  line-height: 1.4;
  font-weight: 700;
  padding-block: 30px;
  font-size: 16px;
  padding-inline: 50px 45px;
  color: var(--text-color);
}
@media screen and (min-width: 1025px) {
  .bl_form_notice button.el_accordion_button {
    --ac-icon-right: 30px;
    padding-inline: 78px 70px;
    font-size: 20px;
  }
}
.bl_form_notice button.el_accordion_button::before, .bl_form_notice button.el_accordion_button::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  background-color: #191919;
  transform: translateY(-50%);
}
.bl_form_notice button.el_accordion_button::before {
  right: var(--ac-icon-right);
  width: 20px;
  height: 2px;
}
.bl_form_notice button.el_accordion_button::after {
  transition: all var(--transition);
  width: 2px;
  height: 20px;
  right: 39px;
  right: calc(var(--ac-icon-right) + 9px);
  transform: translateY(-50%) rotate(90deg);
}
.bl_form_notice .is-close .el_accordion_button::after {
  transform: translateY(-50%);
}
.bl_form_notice .is-close + .el_accordion_body {
  grid-template-rows: 0fr;
}
.bl_form_notice .el_accordion_body {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows var(--transition);
}
.bl_form_notice .el_accordion_inner {
  overflow: hidden;
  position: relative;
  padding-inline: 20px 20px;
  font-size: 14px;
  line-height: 1.875;
}
@media screen and (min-width: 1025px) {
  .bl_form_notice .el_accordion_inner {
    font-size: 16px;
    padding-inline: 40px 40px;
  }
}
.bl_form_notice .el_accordion_inner > * {
  margin-block: 20px;
}
.bl_form_notice .el_accordion_inner p.el_contact_direction {
  margin-block: 20px 40px;
}
.bl_form_notice .el_accordion_inner a {
  --sub-color: var(--main-color);
}

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

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

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

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

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

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

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

.bl_pagination {
  margin-top: 60px;
}

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

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

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

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

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

.single .bl_article_content {
  padding-top: 30px;
  line-height: 1.68;
  margin-inline: auto;
}
@media screen and (min-width:520px) {
  .single .bl_article_content {
    padding-inline: 5%;
  }
}
@media screen and (min-width: 1025px) {
  .single .bl_article_content {
    padding-block: 50px;
  }
}
@media screen and (min-width: 1500px) {
  .single .bl_article_content {
    padding-inline: 0;
  }
}
.single .bl_article_content h1 {
  font-size: 28px;
  line-height: 1.4;
}
@media screen and (min-width: 1025px) {
  .single .bl_article_content h1 {
    font-size: 40px;
  }
}
.single .bl_article_content span.el_post_category {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}
.single .bl_article_content span.el_post_category > span {
  display: grid;
  place-content: center;
  white-space: nowrap;
  background-color: var(--main-color);
  color: #fff;
  height: 30px;
  padding-inline: 20px;
}
.single .bl_article_content > * + * {
  margin-top: 35px;
}
.single .bl_article_content > * + h2,
.single .bl_article_content > *:not(h2):not(h4) + h3,
.single .bl_article_content > *:not(h2):not(h3) + h4 {
  margin-top: 50px;
}
.single .bl_article_content h2.wp-block-heading {
  position: relative;
  font-weight: var(--fw-medium);
  font-size: 20px;
  color: var(--main-color);
  letter-spacing: 0.16;
}
@media screen and (min-width: 1025px) {
  .single .bl_article_content h2.wp-block-heading {
    font-size: 34px;
  }
}
.single .bl_article_content h3.wp-block-heading {
  position: relative;
  font-weight: var(--fw-medium);
  background-color: var(--bg-sub-color);
  padding: 20px 23px;
  display: flex;
  align-items: center;
  font-size: 18px;
  border-left: 6px solid var(--main-color);
  letter-spacing: 0.1;
}
@media screen and (min-width: 1025px) {
  .single .bl_article_content h3.wp-block-heading {
    font-size: 24px;
  }
}
.single .bl_article_content h4.wp-block-heading {
  font-weight: var(--fw-bold);
  font-size: 16px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 3px 15px;
}
@media screen and (min-width: 1025px) {
  .single .bl_article_content h4.wp-block-heading {
    font-size: 18px;
  }
}
.single .bl_article_content h4.wp-block-heading::before {
  content: "";
  background-color: var(--main-color);
  width: 4px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.single .bl_article_content h5.wp-block-heading {
  font-size: 16px;
  font-weight: var(--fw-bold);
}
.single .bl_article_content a {
  color: var(--main-color);
  transition: opacity var(--transition-time);
}
@media (hover: hover) {
  .single .bl_article_content a:hover {
    opacity: 0.7;
  }
}
.single .bl_article_content ul {
  padding-left: 20px;
}
.single .bl_article_content ul li {
  list-style: disc;
}
.single .bl_article_content ol {
  padding-left: 20px;
}
.single .bl_article_content ol li {
  list-style: decimal;
}
.single .bl_article_content table {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
}
.single .bl_article_content table th,
.single .bl_article_content table td {
  padding-block: 10px;
  padding-inline: 10px;
  border-color: #d8d8d8;
  letter-spacing: 0.06em;
  font-size: 15px;
  line-height: 1.4;
}
@media screen and (min-width: 1025px) {
  .single .bl_article_content table th,
  .single .bl_article_content table td {
    padding-block: 20px;
    padding-inline: 24px;
  }
}
.single .bl_article_content table th {
  position: relative;
  font-weight: var(--fw-medium);
}
.single .bl_article_content table td {
  font-weight: var(--fw-medium);
}
.single .bl_article_content .wp-block-group {
  padding-block: 30px;
  padding-inline: 25px;
}
@media screen and (min-width: 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: 35px;
}
.single .bl_article_content a.wp-block-button__link {
  color: #fff;
  background-color: var(--main-color);
}

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

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

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

@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;
  border-radius: 100px;
  transition: opacity var(--transition-time) ease;
}
@media (hover: hover) {
  .bl_postNav_home a:hover {
    opacity: 0.7;
  }
}

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

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

.ly_archiveIndex_articles {
  display: grid;
  grid-template-columns: 2fr;
  gap: 20px;
}
@media screen and (min-width: 1025px) {
  .ly_archiveIndex_articles {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 60px;
         column-gap: 60px;
    row-gap: 50px;
  }
}

.bl_archive_art {
  --transition-time: 0.6s;
}
.bl_archive_art figure {
  overflow: hidden;
}
.bl_archive_art img {
  height: auto;
  transition: transform var(--transition-time) ease;
  width: 100%;
  aspect-ratio: 400/260;
  -o-object-fit: cover;
     object-fit: cover;
  filter: none;
}
@media (hover: hover) {
  .bl_archive_art:hover img {
    transform: scale(1.05);
  }
  .bl_archive_art:hover .el_interviewArchive_cat span {
    background-color: var(--main-color);
    color: #fff;
  }
  .bl_archive_art:hover .bl_archive_content {
    opacity: 0.7;
  }
}
.bl_archive_art .el_archive_content {
  margin-top: 10px;
}
.bl_archive_art .el_archive_meta {
  display: flex;
  gap: 10px;
}
.bl_archive_art .el_archive_meta .el_entry_date {
  font-size: 14px;
  font-weight: var(--fw-regular);
  letter-spacing: 0.1em;
  line-height: 1;
}
.bl_archive_art .el_archive_meta .el_post_category {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.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;
}

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

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

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

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

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

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

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

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

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

.is-animated.is-fadeUp {
  animation-name: fadeUpAnime;
}
.is-animated.is-fadeInLeft {
  animation-name: fadeLeftAnime;
}
.is-animated.is-fadeInRight {
  animation-name: fadeRightAnime;
}
.is-animated.is-fadein {
  opacity: 0;
  animation: fadein 1.5s ease forwards;
}
.is-animated.is-slidein {
  opacity: 0;
  animation: slidein 1s ease-out forwards;
}

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