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

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

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

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

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

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

* {
  outline: none;
}

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

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

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

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

ul,
dl {
  text-indent: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

ol ul li {
  list-style: none;
}

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

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

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

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

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

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

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

caption {
  text-align: left;
}

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

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

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

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

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

figure {
  line-height: 0;
}

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

input,
textarea {
  border-radius: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pd_tb_m {
  padding-top: 30px;
  padding-bottom: 45px;
}
@media screen and (min-width: 1025px) {
  .pd_tb_m {
    padding-top: 40px;
    padding-bottom: 90px;
  }
}

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

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

.is_align_center {
  margin-inline: auto;
  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;
  }
}

.is_text_center {
  text-align: center;
}

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

.is_text_right {
  text-align: right;
}

.is_text_left {
  text-align: left;
}

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

.is_text_red {
  color: #e75b6a;
}

.is_text_blue {
  color: #036ea9;
}

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

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

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

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

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

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

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

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

.ly_siteHeader {
  width: 100%;
  z-index: 15;
  background: rgba(255, 255, 255, 0.83);
  transition: background-color 0.2s ease;
  padding-inline: 14px 0;
}
@media screen and (min-width: 768px) {
  .home .ly_siteHeader {
    position: absolute;
  }
}
@media screen and (min-width: 1025px) {
  .ly_siteHeader {
    padding-inline: 20px;
  }
}

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

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

@media screen and (min-width: 1025px) {
  .ly_fixed_header {
    margin-top: var(--header-height);
  }
  .ly_fixed_header .ly_siteHeader {
    position: fixed;
    top: 0;
    left: 0;
    transition: transform var(--transition);
    box-shadow: 0 0 5px #9fcc97;
  }
  .ly_fixed_header.home {
    margin-top: 40px;
  }
  .ly_fixed_header.admin-bar {
    margin-top: calc(var(--header-height));
  }
  .ly_fixed_header.admin-bar .ly_siteHeader {
    top: 32px;
  }
  .ly_fixed_header.is_hide_header .ly_siteHeader {
    transform: translateY(-100%);
  }
}

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

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

.ly_breadcrumb {
  display: flex;
  --content-width: var(--header-content-width);
  max-width: var(--content-width);
  margin-inline: auto;
  padding-block: 10px;
  padding-inline: 20px;
  height: 50px;
  align-items: center;
}

.ly_breadcrumb_wrapper {
  position: absolute;
  top: 0;
  left: 0;
}

.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;
  margin-right: calc((100% - 100vw) / 2);
}

.ly_article {
  margin-inline: auto;
}
.ly_article .bl_postThumbnail {
  margin-bottom: var(--article-mt);
}
.ly_article .bl_article_content {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--site-inline-padding);
}
.ly_article .bl_article_content > * + * {
  margin-top: var(--article-mt);
}

.ly_siteFooter {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #e7f5f4;
  padding-block: 30px 30px;
  margin-bottom: 65px;
}
@media screen and (min-width: 1025px) {
  .ly_siteFooter {
    padding-block: 50px 30px;
  }
}
.ly_siteFooter .bl_siteFooter {
  padding-inline: 26px;
  max-width: var(--content-width);
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .ly_siteFooter .bl_siteFooter {
    align-items: flex-start;
  }
}

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

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

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

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

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

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

.el_arrow__left {
  margin-left: 5px;
}

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

.el_btn_lineArrow {
  border: 1px solid;
  display: flex;
  min-height: 76px;
  align-items: center;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.4;
  gap: 0;
  justify-content: space-between;
  width: 100%;
  max-width: 385px;
  transition: background-color var(--transition-time);
  padding: 20px;
  white-space: nowrap;
}
@media screen and (min-width:520px) {
  .el_btn_lineArrow {
    padding: 21px;
  }
}
@media screen and (min-width: 1025px) {
  .el_btn_lineArrow {
    padding-inline: 38px;
  }
}
.el_btn_lineArrow::after {
  content: "";
  width: 45px;
  height: 8px;
  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.04em;
  line-height: 1.4;
  font-size: 16px;
  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/common/icon-arrow-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 22px;
}
@media (hover: hover) {
  .el_linkButton:hover {
    opacity: 0.7;
  }
}

.bl_mediaText {
  display: grid;
}
@media screen and (min-width: 1025px) {
  .bl_mediaText {
    grid-template-columns: 1fr 1fr;
  }
}
.bl_mediaText figure {
  text-align: center;
}
.bl_mediaText.l_46_54 {
  gap: 20px;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .bl_mediaText.l_46_54 {
    grid-template-columns: 1fr 54%;
    gap: 70px;
  }
  .bl_mediaText.l_46_54.is_image_left {
    grid-template-columns: 54% 1fr;
    gap: 110px;
  }
}
@media screen and (min-width: 1025px) {
  .bl_mediaText.is_image_left {
    grid-template-areas: "image content";
  }
  .bl_mediaText.is_image_right {
    grid-template-areas: "content image";
  }
  .bl_mediaText .el_mediaText_content {
    grid-area: content;
  }
  .bl_mediaText .el_mediaText_image {
    grid-area: image;
  }
}

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

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

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

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

.bl_topBar {
  width: 100vw;
  background: linear-gradient(90deg, rgba(132, 211, 174, 0.5) 0%, rgba(224, 199, 144, 0.5) 99.11%);
  padding-block: 10px;
  padding-inline: 12px;
  height: 40px;
  margin-left: -14px;
}
@media screen and (min-width: 1025px) {
  .bl_topBar {
    margin-left: calc(50% - 50vw);
  }
}
.bl_topBar .bl_toBar_inner {
  max-width: var(--header-content-width);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: var(--fw-medium);
  line-height: 1;
}
.bl_topBar .el_topBar_info {
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 1024px) {
  .bl_topBar .el_topBar_info {
    display: none;
  }
}
.bl_topBar .el_topBar_tel {
  font-size: 20px;
  font-weight: bold;
  margin-top: -3px;
}
.bl_topBar .el_topBar_tel::before {
  content: "";
  background-image: url(../images/header/icon-phone.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 7px;
  vertical-align: bottom;
}

.el_siteHeader_logo {
  flex-shrink: 0;
}
.el_siteHeader_logo a {
  display: flex;
  position: relative;
  align-items: center;
}

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

.bl_siteHeader_nav {
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .bl_siteHeader_nav {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    padding-bottom: 30px;
    max-width: 480px;
  }
  .bl_siteHeader_nav li {
    font-size: 18px;
    letter-spacing: 0;
    display: flex;
    border-bottom: 1px solid var(--border-color);
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
  }
  .bl_siteHeader_nav li a {
    padding-block: 12px;
    padding-inline: 10px;
    display: flex;
    flex-direction: column;
    color: var(--text-color);
    width: 100%;
  }
  .bl_siteHeader_nav li a .global_menu-description {
    font-size: 10px;
    letter-spacing: 0.1em;
    margin-top: 0;
    color: var(--sub-color);
    display: block;
    line-height: 1;
  }
  .bl_siteHeader_nav li.megamenu_heading {
    display: none;
  }
  .bl_siteHeader_nav li .sub-menu {
    width: 100%;
    display: none;
    padding-left: 10px;
    padding-top: 0;
    margin-bottom: 10px;
  }
  .bl_siteHeader_nav li .sub-menu li a {
    padding-block: 12px;
    width: 100%;
  }
  .bl_siteHeader_nav li .sub-menu li:last-child {
    border-bottom: none;
  }
  .bl_siteHeader_nav li figure {
    display: none;
  }
  .bl_siteHeader_nav li:not(.menu-item-has-children)::after {
    content: "";
    background-image: url(../images/header/arrow-sp-menu.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 8px;
    height: 13px;
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .bl_siteHeader_nav .el_header_button a {
    background-color: var(--sub-color);
    color: #fff;
    max-width: 330px;
    width: 100%;
    height: auto;
    font-size: 16px;
    padding-inline: 1em;
    padding-block: 10px 11px;
    margin-top: 20px;
    position: relative;
  }
  .bl_siteHeader_nav .el_header_button a::after {
    content: "";
    background-image: url(../images/footer/button-arrow.svg);
    background-repeat: no-repeat;
    width: 30px;
    height: 10px;
    position: absolute;
    right: 9px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    background-color: transparent;
  }
  .bl_siteHeader_nav .el_header_button.is_reservation a {
    background-color: #808991;
  }
  .bl_siteHeader_nav .el_header_button.is_request a {
    background-color: #55636d;
  }
  .bl_siteHeader_nav .el_header_button.is_contact a {
    background-color: #0c2131;
  }
}
@media screen and (min-width: 1025px) {
  .bl_siteHeader_nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    min-height: 50px;
    gap: 0;
  }
  .bl_siteHeader_nav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
  }
  .bl_siteHeader_nav li.mega_menu {
    position: initial;
    max-width: 220px;
    max-width: clamp(125px, -79.37px + 19.958vw, 220px);
  }
  .bl_siteHeader_nav li.mega_menu::before {
    content: "";
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: calc((100% - 100vw) / 2);
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 5;
    pointer-events: none;
  }
  .bl_siteHeader_nav li.mega_menu:hover::before {
    visibility: visible;
    opacity: 0.3;
  }
  .bl_siteHeader_nav li.mega_menu:hover > a {
    padding-block: 40px;
  }
  .bl_siteHeader_nav li.mega_menu:hover > .sub-menu {
    display: grid;
  }
  .bl_siteHeader_nav li.mega_menu.mega_menu_2col > .sub-menu {
    grid-template-columns: repeat(2, 48%);
    width: 46vw;
    padding-left: clamp(150px, 42.437px + 10.504vw, 200px);
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu {
    max-width: 1200px;
    width: 66vw;
    grid-template-columns: repeat(3, 32%);
    -moz-column-gap: clamp(10px, -19.942px + 2.924vw, 20px);
         column-gap: clamp(10px, -19.942px + 2.924vw, 20px);
    row-gap: 15px;
    left: 50%;
    transform: translateX(-50%);
    min-width: auto;
    padding-inline: clamp(30px, -68.628px + 7.22vw, 70px);
    padding-top: clamp(25px, -36.643px + 4.513vw, 50px);
    padding-bottom: clamp(15px, -21.986px + 2.708vw, 30px);
    border-radius: 0;
    top: auto;
    z-index: 10;
    padding-left: clamp(200px, -15.126px + 21.008vw, 300px);
    padding-right: 40px;
    position: absolute;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li.megamenu_heading {
    position: absolute;
    top: 1em;
    left: 15px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1024px) {
  .bl_siteHeader_nav li.mega_menu > .sub-menu li.megamenu_heading {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .bl_siteHeader_nav li.mega_menu > .sub-menu li.megamenu_heading:hover > a {
    opacity: 1;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li.megamenu_heading > a {
    font-size: 28px;
    font-size: clamp(20px, -10.118px + 2.941vw, 34px);
    font-weight: var(--fw-bold);
    color: var(--text-color);
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 2px;
    pointer-events: none;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li.megamenu_heading > a::after {
    content: "";
    background-image: none;
    width: 30px;
    height: 1px;
    background-color: var(--main-color);
    margin-top: 15px;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li.megamenu_heading .global_menu-description {
    font-size: 0.5em;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li.megamenu_heading .sub-menu {
    display: block;
    margin-top: 20px;
    box-shadow: none;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li.megamenu_heading .sub-menu a {
    border-radius: 90px;
    border: 1px solid var(--main-color);
    justify-content: center;
    position: relative;
    width: 90%;
    margin-inline: auto;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li.megamenu_heading .sub-menu a::after {
    position: absolute;
    transition: right var(--transition);
    right: -15px;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li.megamenu_heading .sub-menu a:hover::after {
    right: -20px;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li:not(.megamenu_heading) figure {
    overflow: hidden;
    margin-bottom: 1px;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li:not(.megamenu_heading) figure a {
    padding: 0;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li:not(.megamenu_heading) figure img {
    transition: all var(--transition);
    aspect-ratio: 274/178;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li:not(.megamenu_heading) > a {
    padding-inline: 0 7px;
    font-size: clamp(13px, 7.012px + 0.585vw, 15px);
    padding-block: 5px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    transition: color var(--transition);
    white-space: normal;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1025px) and (min-width: 1367px) {
  .bl_siteHeader_nav li.mega_menu > .sub-menu li:not(.megamenu_heading) > a {
    font-size: clamp(15px, 7.584px + 0.542vw, 18px);
  }
}
@media screen and (min-width: 1025px) {
  .bl_siteHeader_nav li.mega_menu > .sub-menu li:not(.megamenu_heading) > a::after {
    flex-shrink: 0;
    transition: transform var(--transition);
    content: "";
    --mega-menu-icon: 20px;
    --mega-menu-icon-h: 4px;
    content: "";
    background-image: url(../images/common/button-arrow-black.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: var(--mega-menu-icon);
    height: var(--mega-menu-icon-h);
  }
}
@media screen and (min-width: 1025px) and (min-width: 1367px) {
  .bl_siteHeader_nav li.mega_menu > .sub-menu li:not(.megamenu_heading) > a::after {
    --mega-menu-icon: 28px;
    --mega-menu-icon-h: 5px;
  }
}
@media screen and (min-width: 1025px) {
  .bl_siteHeader_nav li.mega_menu > .sub-menu li:not(.megamenu_heading):hover > a {
    color: var(--text-color);
    opacity: 0.7;
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li:not(.megamenu_heading):hover > a::after {
    transform: translateX(5px);
  }
  .bl_siteHeader_nav li.mega_menu > .sub-menu li:not(.megamenu_heading):hover figure img {
    transform: scale(1.1);
  }
  .bl_siteHeader_nav a {
    transition: color 0.5s ease;
  }
  .bl_siteHeader_nav li.menu-item-has-children > a {
    pointer-events: none;
  }
  .bl_siteHeader_nav > li {
    width: auto;
    position: relative;
    font-size: var(--menu-fsz);
    letter-spacing: 0;
    height: 100%;
  }
  .bl_siteHeader_nav > li > a {
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding-block: 13px 10px;
    padding-inline: clamp(6px, -11.21px + 1.681vw, 14px);
    line-height: 1.2;
    white-space: nowrap;
    position: relative;
    transition: opacity var(--transition-time);
    font-size: 16px;
    font-weight: var(--fw-medium);
  }
  .bl_siteHeader_nav > li > a::after {
    opacity: 0;
    content: "";
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, rgb(0, 169, 111) 0%, rgb(224, 199, 144) 100%);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity var(--transition);
  }
}
@media screen and (min-width: 1025px) and (hover: hover) {
  .bl_siteHeader_nav > li > a:hover {
    opacity: 0.7;
  }
  .bl_siteHeader_nav > li > a:hover::after {
    opacity: 1;
  }
}
@media screen and (min-width: 1025px) {
  .bl_siteHeader_nav > li.current-menu-parent > a::after, .bl_siteHeader_nav > li.current-menu-item > a::after {
    opacity: 1;
  }
}
@media screen and (min-width: 1025px) and (min-width: 1025px) {
  .bl_siteHeader_nav > li.is_mobile {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .bl_siteHeader_nav .sub-menu {
    display: block;
    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);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }
  .bl_siteHeader_nav .sub-menu a {
    color: var(--text-color);
    font-size: 16px;
    display: flex;
    align-items: center;
    padding: 0.8em 1em;
    white-space: nowrap;
    transition: color var(--transition);
  }
}
@media screen and (min-width: 1025px) and (hover: hover) {
  .bl_siteHeader_nav .sub-menu a:hover {
    color: #00938b;
    opacity: 1;
  }
}

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

/* スライドメニューボタン */
.bl_menuToggleButton {
  z-index: 10;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 64px;
  height: 64px;
  aspect-ratio: 1/1;
  background-color: var(--main-color);
  transition: all var(--transition-time) ease;
  flex-direction: column;
  /*ボタン内側*/
}
body:not(.home) .bl_menuToggleButton {
  position: fixed;
  top: 0;
  right: 0;
}
body.home.is_scrolled .bl_menuToggleButton {
  position: fixed;
  top: 0;
  right: 0;
}
.bl_menuToggleButton::before {
  content: "";
  width: calc(100% - 64px);
  height: 64px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 1;
  background-image: url(../images/header/header_logo.svg);
  background-repeat: no-repeat;
  background-position: center left 20px;
  background-size: 260px 54px;
  transition: transform var(--transition);
  transform: translateX(200%);
}
.bl_menuToggleButton::after {
  content: "メニュー";
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  color: #fff;
  font-weight: var(--fw-medium);
}
@media screen and (min-width: 1025px) {
  .bl_menuToggleButton {
    display: none;
  }
}
.is_open .bl_menuToggleButton {
  position: fixed;
  top: 0 !important;
  animation: slideToTop 0.3s ease forwards;
}
.is_open .bl_menuToggleButton::after {
  content: "閉じる";
}
.is_open .bl_menuToggleButton::before {
  transform: translateX(0);
}
.bl_menuToggleButton .openbtn1 {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  width: 32px;
  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: 10px;
}
.bl_menuToggleButton .openbtn1 span:nth-of-type(3) {
  top: 21px;
}
.bl_menuToggleButton.is_open .openbtn1 span {
  background: #fff;
}
.bl_menuToggleButton.is_open .openbtn1 span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}
.bl_menuToggleButton.is_open .openbtn1 span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  animation: active-btn05-bar02 0.8s forwards;
}
.bl_menuToggleButton.is_open .openbtn1 span:nth-of-type(3) {
  width: 100%;
  left: 0;
  right: auto;
  transform: translateY(-11px) rotate(45deg);
}

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

.global-menu-toggle {
  cursor: pointer;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media screen and (min-width: 1025px) {
  .global-menu-toggle {
    display: none;
  }
}
.global-menu-toggle:before {
  content: "";
  background-image: url(../images/header/arrow-sp-menu.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 8px;
  height: 13px;
  position: absolute;
  top: 20px;
  right: 20px;
  transform-origin: center;
  transition: transform var(--transition-time) ease;
}
.global-menu-toggle.is-open::before {
  transform: rotate(90deg);
}

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

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

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

.bl_pageHeader_inner {
  background-image: url(../images/common/page-header-bg.webp);
  background-size: cover;
  border-radius: 0 0 0 60px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-inline: auto 0 !important;
  width: calc(100vw - (100vw - 1200px) / 2);
  flex-direction: column;
  position: relative;
  padding-inline: 40px;
  height: 160px;
}
@media screen and (min-width: 1367px) {
  .bl_pageHeader_inner {
    background-size: 100% 100%;
  }
}
@media screen and (min-width: 1025px) {
  .bl_pageHeader_inner {
    padding-inline: 90px;
    height: 200px;
  }
}
.bl_pageHeader_inner .bl_page_title {
  color: #000;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  padding-block: 16px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_pageHeader_inner .bl_page_title {
    font-size: 30px;
    font-size: clamp(27px, 23.147px + 0.502vw, 30px);
    text-align: left;
  }
}

.archive .bl_article_content,
.page .bl_article_content {
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  --article-mt: 15px;
}
@media screen and (min-width: 1025px) {
  .archive .bl_article_content,
  .page .bl_article_content {
    --article-mt: 30px;
  }
}
.archive .bl_article_content p,
.page .bl_article_content p {
  line-height: 1.75;
}
.archive .bl_article_content p a,
.page .bl_article_content p a {
  color: #036ea9;
  transition: opacity var(--transition-time) ease;
  text-decoration: underline;
  text-underline-offset: 8px;
}
@media (hover: hover) {
  .archive .bl_article_content p a:hover,
  .page .bl_article_content p a:hover {
    opacity: 0.7;
  }
}
.archive .bl_article_content p + p,
.page .bl_article_content p + p {
  margin-top: 2em;
}
.archive .bl_article_content h2,
.page .bl_article_content h2 {
  text-align: left;
  position: relative;
  font-size: 24px;
  font-family: YakuHanJP_Narrow, "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: var(--page-h2-fsz);
}
.archive .bl_article_content h2.is-style-page-heading,
.archive .bl_article_content h2.page_heading,
.archive .bl_article_content h2.lp_heading,
.page .bl_article_content h2.is-style-page-heading,
.page .bl_article_content h2.page_heading,
.page .bl_article_content h2.lp_heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  font-family: YakuHanJP_Narrow, "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  gap: 8px;
  line-height: 1.5;
  --page-h2-fsz: 26px;
}
@media screen and (min-width: 1025px) {
  .archive .bl_article_content h2.is-style-page-heading,
  .archive .bl_article_content h2.page_heading,
  .archive .bl_article_content h2.lp_heading,
  .page .bl_article_content h2.is-style-page-heading,
  .page .bl_article_content h2.page_heading,
  .page .bl_article_content h2.lp_heading {
    line-height: 1.6;
    gap: 10px;
    --page-h2-fsz: 34px;
  }
}
.archive .bl_article_content h2.is-style-page-heading span,
.archive .bl_article_content h2.page_heading span,
.archive .bl_article_content h2.lp_heading span,
.page .bl_article_content h2.is-style-page-heading span,
.page .bl_article_content h2.page_heading span,
.page .bl_article_content h2.lp_heading span {
  font-size: 15px;
  color: var(--main-color);
}
.archive .bl_article_content h2.is-style-page-heading::after,
.archive .bl_article_content h2.page_heading::after,
.archive .bl_article_content h2.lp_heading::after,
.page .bl_article_content h2.is-style-page-heading::after,
.page .bl_article_content h2.page_heading::after,
.page .bl_article_content h2.lp_heading::after {
  content: "";
  background-image: url(../images/common/icon-h2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 16px;
}
@media screen and (max-width: 1024px) {
  .archive .bl_article_content h2.is-style-page-heading::after,
  .archive .bl_article_content h2.page_heading::after,
  .archive .bl_article_content h2.lp_heading::after,
  .page .bl_article_content h2.is-style-page-heading::after,
  .page .bl_article_content h2.page_heading::after,
  .page .bl_article_content h2.lp_heading::after {
    margin-top: 8px;
  }
}
.archive .bl_article_content h2.is-style-page-heading,
.archive .bl_article_content h2.page_heading,
.page .bl_article_content h2.is-style-page-heading,
.page .bl_article_content h2.page_heading {
  --page-h2-fsz: 23px;
  gap: 8px;
}
@media screen and (min-width: 1025px) {
  .archive .bl_article_content h2.is-style-page-heading,
  .archive .bl_article_content h2.page_heading,
  .page .bl_article_content h2.is-style-page-heading,
  .page .bl_article_content h2.page_heading {
    gap: 20px;
    --page-h2-fsz: 26px;
  }
}
.archive .bl_article_content h2.is-style-page-heading + *,
.archive .bl_article_content h2.page_heading + *,
.page .bl_article_content h2.is-style-page-heading + *,
.page .bl_article_content h2.page_heading + * {
  font-size: 15px;
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .archive .bl_article_content h2.is-style-page-heading + *,
  .archive .bl_article_content h2.page_heading + *,
  .page .bl_article_content h2.is-style-page-heading + *,
  .page .bl_article_content h2.page_heading + * {
    font-size: 16px;
    margin-top: 40px;
  }
}
.archive .bl_article_content h3,
.page .bl_article_content h3 {
  font-optical-sizing: auto;
  font-weight: var(--fw-medium);
  font-size: var(--page-h3-fsz) !important;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.archive .bl_article_content h3.page_heading_h3,
.archive .bl_article_content h3.lp_heading_h3,
.page .bl_article_content h3.page_heading_h3,
.page .bl_article_content h3.lp_heading_h3 {
  font-family: YakuHanJP_Narrow, "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.75;
  background-color: #f7b977;
  border-radius: 8px 8px 0 0;
  padding-inline: 20px;
  padding-block: 12px 12px;
  --page-h3-fsz: 20px;
}
@media screen and (min-width: 1025px) {
  .archive .bl_article_content h3.page_heading_h3,
  .archive .bl_article_content h3.lp_heading_h3,
  .page .bl_article_content h3.page_heading_h3,
  .page .bl_article_content h3.lp_heading_h3 {
    padding-block: 17px 20px;
    --page-h3-fsz: 22px;
  }
}
.archive .bl_article_content h3.page_heading_h3,
.page .bl_article_content h3.page_heading_h3 {
  padding-block: 10px 8px;
  --page-h3-fsz: 18px;
}
@media screen and (min-width: 1025px) {
  .archive .bl_article_content h3.page_heading_h3,
  .page .bl_article_content h3.page_heading_h3 {
    padding-block: 12px 10px;
    --page-h3-fsz: 22px;
  }
}
.archive .bl_article_content h4,
.page .bl_article_content h4 {
  font-size: 18px;
  line-height: 1.5;
}
.archive .bl_article_content h4.lp_heading_h4,
.page .bl_article_content h4.lp_heading_h4 {
  font-family: YakuHanJP_Narrow, "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border-color);
  line-height: 1.75;
  border-radius: 8px 8px 0 0;
  padding-block: 15px 18px;
  padding-inline: 18px;
}
@media screen and (min-width: 1025px) {
  .archive .bl_article_content h4.lp_heading_h4,
  .page .bl_article_content h4.lp_heading_h4 {
    font-size: 20px;
  }
}
.archive .bl_article_content table,
.page .bl_article_content table {
  width: 100%;
}
.archive .bl_article_content table th,
.archive .bl_article_content table td,
.page .bl_article_content table th,
.page .bl_article_content table td {
  padding-block: 20px;
  padding-inline: 8px;
  border-bottom: 1px solid var(--border-color);
  letter-spacing: 0.05em;
  font-size: 15px;
  line-height: 1.4;
}
@media screen and (min-width: 1025px) {
  .archive .bl_article_content table th,
  .archive .bl_article_content table td,
  .page .bl_article_content table th,
  .page .bl_article_content table td {
    padding-inline: 24px;
  }
}
.archive .bl_article_content table th,
.page .bl_article_content table th {
  position: relative;
  font-weight: var(--fw-medium);
  color: var(--main-color);
  background-color: #eeeff0;
}
.archive .bl_article_content table td,
.page .bl_article_content table td {
  font-weight: var(--fw-medium);
}
.archive .bl_article_content table td dl,
.page .bl_article_content table td dl {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .archive .bl_article_content table td dl,
  .page .bl_article_content table td dl {
    flex-direction: column;
  }
}
.archive .bl_article_content table td dl dt,
.page .bl_article_content table td dl dt {
  flex-shrink: 0;
}
.archive .bl_article_content table td dl + dl,
.page .bl_article_content table td dl + dl {
  margin-top: 20px;
}
.archive .bl_article_content table tr:first-child td,
.archive .bl_article_content table tr:first-child th,
.page .bl_article_content table tr:first-child td,
.page .bl_article_content table tr:first-child th {
  border-top: 1px solid var(--border-color);
}
.archive .bl_article_content section,
.page .bl_article_content section {
  max-width: 1240px;
  margin-inline: auto;
}
.archive .bl_article_content section.full-width,
.page .bl_article_content section.full-width {
  max-width: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  --article-mt: 0;
}
.archive .bl_article_content section > * + *,
.page .bl_article_content section > * + * {
  margin-top: 30px;
}
@media screen and (min-width: 1025px) {
  .archive .bl_article_content section > * + *,
  .page .bl_article_content section > * + * {
    margin-top: 40px;
  }
}
.archive .bl_article_content section > .is_align_left + *,
.archive .bl_article_content section > .is_align_right + *,
.archive .bl_article_content section > h3 + *,
.archive .bl_article_content section > h2 + *,
.page .bl_article_content section > .is_align_left + *,
.page .bl_article_content section > .is_align_right + *,
.page .bl_article_content section > h3 + *,
.page .bl_article_content section > h2 + * {
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .archive .bl_article_content section > .is_align_left + *,
  .archive .bl_article_content section > .is_align_right + *,
  .archive .bl_article_content section > h3 + *,
  .archive .bl_article_content section > h2 + *,
  .page .bl_article_content section > .is_align_left + *,
  .page .bl_article_content section > .is_align_right + *,
  .page .bl_article_content section > h3 + *,
  .page .bl_article_content section > h2 + * {
    margin-top: 30px;
  }
}
.archive .bl_article_content section > * + h2,
.page .bl_article_content section > * + h2 {
  margin-top: 60px;
}
@media screen and (min-width: 1025px) {
  .archive .bl_article_content section > * + h2,
  .page .bl_article_content section > * + h2 {
    margin-top: 80px;
  }
}
.archive .bl_article_content section > * + h3,
.page .bl_article_content section > * + h3 {
  margin-top: 40px;
}
@media screen and (min-width: 1025px) {
  .archive .bl_article_content section > * + h3,
  .page .bl_article_content section > * + h3 {
    margin-top: 60px;
  }
}
.archive .bl_article_content .is_style_disc,
.page .bl_article_content .is_style_disc {
  padding-left: 1.3em;
}
.archive .bl_article_content .is_style_disc li,
.page .bl_article_content .is_style_disc li {
  list-style: disc;
}
.archive .bl_article_content figcaption,
.page .bl_article_content figcaption {
  line-height: 1;
  font-size: 16px;
  text-align: right;
}
.archive .bl_article_content .el_contentBox,
.page .bl_article_content .el_contentBox {
  background-color: #f2f5f6;
  padding-block: 30px;
  padding-inline: 25px;
}
@media screen and (min-width: 1025px) {
  .archive .bl_article_content .el_contentBox,
  .page .bl_article_content .el_contentBox {
    padding-block: 40px;
    padding-inline: 60px;
  }
}
.archive .bl_article_content .el_contentBox > * + *,
.page .bl_article_content .el_contentBox > * + * {
  margin-top: 20px;
}
.archive .bl_article_content .bl_columns.is_flex,
.page .bl_article_content .bl_columns.is_flex {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1025px) {
  .archive .bl_article_content .bl_columns.is_flex,
  .page .bl_article_content .bl_columns.is_flex {
    flex-direction: row;
    gap: 70px;
    justify-content: center;
  }
}
.archive .bl_article_content .bl_columns.is_flex .el_column figure,
.page .bl_article_content .bl_columns.is_flex .el_column figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.archive .bl_article_content .bl_columns.is_flex .el_column figure figcaption,
.page .bl_article_content .bl_columns.is_flex .el_column figure figcaption {
  width: 100%;
  text-align: right;
}
.archive .bl_article_content .bl_comapnyMap,
.page .bl_article_content .bl_comapnyMap {
  --article-mt: 80px;
}
.archive .bl_article_content .bl_comapnyMap iframe,
.page .bl_article_content .bl_comapnyMap iframe {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1000/680;
}
@media screen and (min-width: 1025px) {
  .archive .bl_article_content .bl_comapnyMap iframe,
  .page .bl_article_content .bl_comapnyMap iframe {
    aspect-ratio: 1000/480;
  }
}
.archive .bl_article_content .el_mediaText_content > * + *,
.page .bl_article_content .el_mediaText_content > * + * {
  margin-top: 20px;
}

.bl_lpContent {
  margin-top: 20px;
  margin-inline: 3.8%;
}
@media screen and (min-width: 1025px) {
  .bl_lpContent {
    margin-top: 50px;
    margin-inline: 45px;
  }
}

ul.bl_checkList li {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--main-color);
  font-weight: var(--fw-bold);
  background-color: #fff;
  border-radius: 99px;
  box-shadow: 0px 0px 3px #9fcc97;
  min-height: 72px;
  padding-inline: 32px;
}
ul.bl_checkList li::before {
  content: "";
  background-image: url(../images/page/icon-check.svg);
  width: 34px;
  height: 34px;
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}
ul.bl_checkList li + li {
  margin-top: 17px;
}

.bl_pageFootButtons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
@media screen and (min-width: 1025px) {
  .bl_pageFootButtons {
    gap: 28px;
  }
}
.bl_pageFootButtons a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--main-color);
  transition: opacity var(--transition);
  color: #fff;
  font-size: 20px;
  padding-block: 10px;
  padding-inline: 40px 26px;
  border-radius: 6px;
  max-width: 390px;
  width: 100%;
  height: 70px;
  gap: 20px;
}
@media screen and (min-width: 1025px) {
  .bl_pageFootButtons a {
    height: 100px;
  }
}
.bl_pageFootButtons a::after {
  content: "";
  background-image: url(../images/common/icon-arrow-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  display: block;
}

.bl_siteFooter {
  display: flex;
  flex-direction: column;
}
.bl_siteFooter a:not(.not_link) {
  color: var(--text-color);
  transition: opacity var(--transition-time);
}
@media (hover: hover) {
  .bl_siteFooter a:not(.not_link):hover {
    opacity: 0.7;
  }
}

.bl_siteFooter_nav_wrapper {
  width: 100%;
}

.bl_siteFooter_nav {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  -moz-column-gap: 0;
       column-gap: 0;
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter_nav {
    flex-direction: row;
    max-width: none;
    width: 100%;
    gap: 85px;
    justify-content: center;
  }
}
.bl_siteFooter_nav .widget_block.bl_footerWidget {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter_nav .widget_block.bl_footerWidget {
    padding-right: 150px;
  }
}
.bl_siteFooter_nav .wp-block-columns {
  display: grid;
  gap: 15px;
}
@media screen and (max-width: 1024px) {
  .bl_siteFooter_nav .wp-block-columns {
    grid-template-columns: 50% 50%;
    grid-template-rows: auto auto;
    grid-template-areas: "menu1 menu4" "menu2 menu5" "menu3 menu6";
  }
  .bl_siteFooter_nav .wp-block-columns .wp-block-column:nth-of-type(1) {
    grid-area: menu1;
  }
  .bl_siteFooter_nav .wp-block-columns .wp-block-column:nth-of-type(2) {
    grid-area: menu2;
  }
  .bl_siteFooter_nav .wp-block-columns .wp-block-column:nth-of-type(3) {
    grid-area: menu3;
  }
  .bl_siteFooter_nav .wp-block-columns .wp-block-column:nth-of-type(4) {
    grid-area: menu4;
  }
  .bl_siteFooter_nav .wp-block-columns .wp-block-column:nth-of-type(5) {
    grid-area: menu5;
  }
  .bl_siteFooter_nav .wp-block-columns .wp-block-column:nth-of-type(6) {
    grid-area: menu6;
  }
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter_nav .wp-block-columns {
    gap: 95px;
    gap: clamp(30px, -165.381px + 19.062vw, 95px);
    display: flex;
  }
}
.bl_siteFooter_nav .widget_nav_menu {
  width: 100%;
}
@media screen and (min-width:520px) {
  .bl_siteFooter_nav .widget_nav_menu {
    width: 50%;
  }
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter_nav .widget_nav_menu {
    width: auto;
  }
}
.bl_siteFooter_nav .widget_nav_menu ul.menu {
  letter-spacing: 0.1em;
}
.bl_siteFooter_nav .widget_nav_menu ul.menu > li > a {
  line-height: 1.2;
  white-space: nowrap;
  font-size: 16px;
}
.bl_siteFooter_nav .widget_nav_menu ul.menu > li + li {
  margin-top: 16px;
}
.bl_siteFooter_nav .widget_nav_menu ul.menu > li.menu-item-has-children > a {
  font-size: 18px;
}
.bl_siteFooter_nav .widget_nav_menu ul.menu > li.not_link > a {
  pointer-events: none;
}
.bl_siteFooter_nav .widget_nav_menu ul.sub-menu {
  margin-top: 5px;
  padding-left: 1.6875em;
  white-space: nowrap;
  font-size: 16px;
  border-left: 1px solid var(--main-color);
  padding-block: 8px 16px;
}
@media screen and (min-width: 1025px) {
  .bl_siteFooter_nav .widget_nav_menu ul.sub-menu {
    white-space: normal;
    margin-top: 10px;
  }
}
.bl_siteFooter_nav .widget_nav_menu ul.sub-menu > li {
  list-style: none;
}
.bl_siteFooter_nav .widget_nav_menu ul.sub-menu > li::before {
  content: "-";
}
.bl_siteFooter_nav .widget_nav_menu ul.sub-menu > li + li {
  margin-top: 8px;
}
.bl_siteFooter_nav .widget_nav_menu ul.sub-menu > li > a {
  line-height: 1.2;
}

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

.bl_cta {
  width: 100%;
  display: grid;
  align-content: center;
  padding-inline: var(--site-inline-padding);
  overflow: hidden;
  position: relative;
  padding-block: 45px 40px;
  border-top: 1px solid var(--main-color);
}
@media screen and (min-width: 1025px) {
  .bl_cta {
    padding-block: 55px 58px;
  }
}
.home .bl_cta {
  border-top: none;
}
@media screen and (min-width: 1025px) {
  .home .bl_cta {
    padding-block: 86px 58px;
  }
}
.bl_cta .bl_cta_innner {
  width: 100%;
  max-width: var(--content-width);
  margin-inline: auto;
}
.bl_cta .bl_cta_innner .columns {
  align-items: center;
  max-width: 786px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-inline: auto;
  padding-inline: 10px;
}
@media screen and (min-width: 1025px) {
  .bl_cta .bl_cta_innner .columns {
    padding-inline: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}
.bl_cta .bl_cta_innner .columns .column {
  line-height: 1.5;
}
.bl_cta .bl_ctaShopInfo {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 40px;
  gap: 34px;
}
@media screen and (min-width: 1025px) {
  .bl_cta .bl_ctaShopInfo {
    margin-top: 67px;
    grid-template-columns: 38.5% 1fr;
    gap: 22px;
  }
}
.bl_cta .bl_ctaShopInfo .el_map {
  height: auto;
  width: 100%;
  margin-inline: auto;
}
.bl_cta .bl_ctaShopInfo .el_map iframe {
  width: 100%;
  height: 100%;
  min-height: 250px;
  border: 0;
}

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

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

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

.bl_fixedMenu {
  background-color: var(--main-color);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
  transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
}
.bl_fixedMenu.is_show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.bl_fixedMenu .bl_fixedMenu_inner {
  max-width: var(--content-width);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  height: 65px;
}
.bl_fixedMenu .bl_fixedMenu_inner > a {
  height: 100%;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.3;
  padding-inline: 6.5px;
  padding-block: 7px;
}
@media screen and (min-width: 1025px) {
  .bl_fixedMenu .bl_fixedMenu_inner > a {
    border-left: 1px solid #fff;
    padding-block: 12px;
  }
}
@media (hover: hover) {
  .bl_fixedMenu .bl_fixedMenu_inner > a:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 1025px) {
  .bl_fixedMenu .bl_fixedMenu_inner > a:last-child {
    border-right: 1px solid #fff;
  }
}
.bl_fixedMenu .bl_fixedMenu_inner > a.el_fixedMenu_bookingButton {
  background-color: var(--sub-color);
}
.bl_fixedMenu .bl_fixedMenu_inner > a span {
  display: block;
}
.bl_fixedMenu .bl_fixedMenu_inner > a span.el_fixedMenu_telText {
  font-weight: var(--fw-bold);
  font-size: 14px;
  white-space: nowrap;
}
@media screen and (min-width: 1025px) {
  .bl_fixedMenu .bl_fixedMenu_inner > a span.el_fixedMenu_telText {
    font-size: 20px;
  }
}
.bl_fixedMenu .bl_fixedMenu_inner > a span.el_fixedMenu_subText {
  font-size: 10px;
}
@media screen and (min-width: 1025px) {
  .bl_fixedMenu .bl_fixedMenu_inner > a span.el_fixedMenu_subText {
    font-size: 12px;
  }
}
.bl_fixedMenu .bl_fixedMenu_inner .el_fixedMenu_Icon::before {
  content: "";
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
}
.bl_fixedMenu .bl_fixedMenu_inner .el_fixedMenu_Icon.is_telIcon::before {
  width: 27px;
  height: 27px;
  background-image: url(../images/footer/icon-phone.svg);
}
.bl_fixedMenu .bl_fixedMenu_inner .el_fixedMenu_Icon.is_bookingIcon::before {
  width: 34px;
  height: 34px;
  background-image: url(../images/footer/icon-booking.svg);
}
.bl_fixedMenu .bl_fixedMenu_inner .el_fixedMenu_Icon.is_calendarIcon::before {
  background-image: url(../images/footer/icon-calendar.svg);
  width: 20px;
  height: 18px;
}
@media screen and (min-width: 1025px) {
  .bl_fixedMenu .bl_fixedMenu_inner .el_fixedMenu_Icon.is_calendarIcon::before {
    width: 33px;
    height: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .bl_fixedMenu .bl_fixedMenu_inner a.el_fixedMenu_telButton .el_fixedMenu_Icon,
  .bl_fixedMenu .bl_fixedMenu_inner a.el_fixedMenu_bookingButton .el_fixedMenu_Icon {
    display: none;
  }
  .bl_fixedMenu .bl_fixedMenu_inner a.el_fixedMenu_bookingButton span.el_fixedMenu_subText {
    font-size: 14px;
    letter-spacing: 0.03em;
    line-height: 1.1;
    text-align: center;
    display: block;
  }
}
.bl_fixedMenu .bl_fixedMenu_inner a.el_fixedMenu_webInquiryButton {
  padding-block: 5px;
  padding-inline: 5px;
  height: 100%;
}
@media screen and (min-width: 1025px) {
  .bl_fixedMenu .bl_fixedMenu_inner a.el_fixedMenu_webInquiryButton {
    padding-block: 7.5px;
    padding-inline: 6.5px;
  }
}
.bl_fixedMenu .bl_fixedMenu_inner a.el_fixedMenu_webInquiryButton > div {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  height: 100%;
  width: 100%;
  padding-block: 8px;
  padding-inline: 8px;
  border-radius: 6px;
  flex-wrap: wrap;
}
@media screen and (min-width: 1025px) {
  .bl_fixedMenu .bl_fixedMenu_inner a.el_fixedMenu_webInquiryButton > div {
    gap: 13px;
    flex-wrap: nowrap;
  }
}
.bl_fixedMenu .bl_fixedMenu_inner a.el_fixedMenu_webInquiryButton .el_fixedMenu_subText {
  font-weight: var(--fw-medium);
  color: var(--text-color);
  margin-left: 6px;
  font-size: 14px;
}
@media screen and (min-width: 1025px) {
  .bl_fixedMenu .bl_fixedMenu_inner a.el_fixedMenu_webInquiryButton .el_fixedMenu_subText {
    margin-left: 9px;
    font-size: 16px;
  }
}
.bl_fixedMenu .bl_fixedMenu_inner a.el_fixedMenu_webInquiryButton .el_fixedMenu_mainText {
  display: flex;
  align-items: center;
  font-weight: var(--fw-bold);
  color: var(--text-color);
  font-size: 16px;
}
@media screen and (min-width: 1025px) {
  .bl_fixedMenu .bl_fixedMenu_inner a.el_fixedMenu_webInquiryButton .el_fixedMenu_mainText {
    font-size: 20px;
  }
}

.bl_mainVisual {
  position: relative;
  width: 100vw;
  max-width: 1920px;
  margin-left: calc(50% - 50vw);
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../images/top/mv-sp.webp);
  aspect-ratio: 375/381;
}
@media screen and (min-width: 600px) {
  .bl_mainVisual {
    aspect-ratio: 1400/693;
    background-image: url(../images/top/mv-pc.webp);
  }
}
@media screen and (min-width: 1500px) {
  .bl_mainVisual {
    aspect-ratio: 1920/860;
    background-image: url(../images/top/mv-fhd.webp);
  }
}
.bl_mainVisual .bl_mainVisual_content {
  max-width: var(--content-width);
  margin-inline: auto;
  height: 100%;
  padding-block: 50px;
  padding-inline: 27px;
}
@media screen and (min-width: 768px) {
  .bl_mainVisual .bl_mainVisual_content {
    padding-block: clamp(104px, -0.808px + 13.629vw, 190px);
  }
}
.bl_mainVisual .bl_mainVisual_copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 599px) {
  .bl_mainVisual .bl_mainVisual_copy {
    margin-inline: auto;
  }
}
.bl_mainVisual .el_mainVisual_copy {
  color: #184c3f;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .bl_mainVisual .el_mainVisual_copy {
    padding-inline: 27px;
  }
}
.bl_mainVisual .el_mainVisual_copy .el_mainVisual_primaryCopy {
  text-shadow: #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em;
  font-size: 30px;
  letter-spacing: 0.04em;
  line-height: 1.3;
  position: relative;
  padding-bottom: 0.307em;
}
@media screen and (min-width: 600px) {
  .bl_mainVisual .el_mainVisual_copy .el_mainVisual_primaryCopy {
    font-size: clamp(29px, 0.97px + 3.645vw, 52px);
  }
}
.bl_mainVisual .el_mainVisual_copy .el_mainVisual_primaryCopy::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #184c3f;
  bottom: 0;
  left: 0;
  box-shadow: #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em;
}
.bl_mainVisual .el_mainVisual_copy .el_mainVisual_secondaryCopy {
  text-shadow: #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em, #fff 0 0 0.2em;
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 1.3;
  padding-top: 0.3em;
}
@media screen and (min-width: 600px) {
  .bl_mainVisual .el_mainVisual_copy .el_mainVisual_secondaryCopy {
    font-size: clamp(22px, 0.063px + 2.853vw, 40px);
  }
}
.bl_mainVisual .el_mainVisual_subCopy {
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  letter-spacing: 0.04em;
  margin-top: 0.88em;
  text-align: center;
  color: #fff;
  width: 100%;
  padding-block: 5px;
  padding-inline: 15px;
  background: linear-gradient(90deg, rgba(242, 202, 128, 0) 0.38%, rgb(243, 199, 96) 12.17%, rgb(240, 146, 49) 53.23%, rgb(243, 199, 96) 88.97%, rgba(242, 202, 128, 0) 100%);
}
@media screen and (min-width: 600px) {
  .bl_mainVisual .el_mainVisual_subCopy {
    min-height: 2.24em;
    margin-top: 0.88em;
    font-size: clamp(14px, 0.594px + 1.743vw, 25px);
  }
}

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

.home .bl_article_content {
  max-width: none;
  padding-inline: 0;
}
.home .bl_article_content section {
  max-width: none;
}

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

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

.bl_article_content ul.bl_card {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
@media screen and (min-width:520px) {
  .bl_article_content ul.bl_card {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media screen and (min-width: 1025px) {
  .bl_article_content ul.bl_card {
    grid-template-columns: repeat(3, 1fr);
    gap: 47px;
  }
}
.bl_article_content ul.bl_card a {
  display: block;
}
.bl_article_content .el_linkButton {
  background-color: #fff;
  color: #000;
  border-radius: 100px;
  min-width: 150px;
  width: -moz-fit-content;
  width: fit-content;
  height: 47px;
  padding-inline: 1.733em;
  padding-block: 10px 11px;
  position: relative;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .bl_article_content .el_linkButton {
    width: 100%;
  }
}

section.bl_top_news {
  padding-block: 40px 80px !important;
}
@media screen and (max-width: 1024px) {
  section.bl_top_news .bl_columns {
    gap: 50px;
  }
}
section.bl_top_news .bl_column {
  padding-inline: 8px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  section.bl_top_news .bl_news_wrapper {
    height: 320px;
    overflow-y: scroll;
    margin-bottom: 40px;
    padding-right: 24px;
    margin-left: -15px;
  }
  section.bl_top_news .bl_news_wrapper::-webkit-scrollbar {
    width: 6px;
  }
  section.bl_top_news .bl_news_wrapper::-webkit-scrollbar-track {
    background-color: #e6e6e6;
    border-radius: 3px;
  }
  section.bl_top_news .bl_news_wrapper::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    border-radius: 3px;
  }
}
@media screen and (max-width: 1024px) {
  section.bl_top_news .scroll-hint-vertical::after {
    content: "↓ スクロールできます";
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 10px;
    border-radius: 4px;
    opacity: 1;
    transition: all 0.4s;
    pointer-events: none;
    visibility: visible;
  }
  section.bl_top_news .scroll-hint-vertical.scrolled::after {
    opacity: 0;
    visibility: hidden;
  }
  section.bl_top_news .scroll-hint-vertical::before {
    content: "";
    position: absolute;
    top: 0;
    left: -7px;
    width: calc(100% - 7px);
    height: 320px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 96%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
    transition: background var(--transition);
  }
  section.bl_top_news .scroll-hint-vertical.scrolling::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(255, 255, 255, 0) 4%, rgba(255, 255, 255, 0) 96%, rgba(1, 1, 1, 0.2) 100%);
  }
  section.bl_top_news .scroll-hint-vertical.scrollend::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(255, 255, 255, 0) 4%, rgba(255, 255, 255, 0) 100%);
  }
}
section.bl_top_news .el_news_heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 12px;
  border-top: 1px solid #707070;
  padding-block: 15px 0;
}
@media screen and (min-width: 1025px) {
  section.bl_top_news .el_news_heading {
    padding-block: 25px 0;
  }
}
section.bl_top_news .el_news_heading h2 {
  letter-spacing: 0.05em;
  --page-h2-fsz: 26px;
  display: flex;
  gap: 30px;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  section.bl_top_news .el_news_heading h2 {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
}
section.bl_top_news .el_news_heading h2 span {
  letter-spacing: 0.04em;
  color: var(--main-color);
  font-size: 15px;
  display: block;
}
section.bl_top_news .el_news_heading a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  letter-spacing: 0.04em;
}
section.bl_top_news .el_news_heading a::after {
  content: "";
  background-image: url(../images/top/arrow-news-link.svg);
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 1024px) {
  section.bl_top_news .el_news_heading a {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
section.bl_top_news .bl_newsList a {
  display: block;
  padding-inline: 20px;
  border-bottom: 1px solid var(--border-color);
  transition: color var(--transition);
  padding-block: 15px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_news .bl_newsList a {
    padding-block: 20px;
  }
}
section.bl_top_news .bl_newsList a .el_newsTab_meta {
  display: flex;
  align-items: center;
  -moz-column-gap: 26px;
       column-gap: 26px;
  row-gap: 4px;
  flex-wrap: wrap;
}
section.bl_top_news .bl_newsList a .posted-on {
  letter-spacing: 0.04em;
  color: var(--main-color);
  font-family: YakuHanJP_Narrow, "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_news .bl_newsList a .posted-on {
    font-size: 16px;
  }
}
section.bl_top_news .bl_newsList a .el_post_category {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
section.bl_top_news .bl_newsList a .el_post_category > span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 21px;
  border-radius: 99px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--sub-color);
  border: 1px solid var(--sub-color);
  transition: all var(--transition);
  padding-block: 5px;
  font-size: 12px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_news .bl_newsList a .el_post_category > span {
    font-size: 14px;
    padding-block: 10px;
  }
}
section.bl_top_news .bl_newsList a span.el_newsTab_title {
  line-height: 1.5;
  display: block;
  margin-top: 6px;
}
@media screen and (max-width: 1024px) {
  section.bl_top_news .bl_newsList a span.el_newsTab_title {
    font-size: 14px;
  }
}
@media (hover: hover) {
  section.bl_top_news .bl_newsList a:hover {
    color: var(--main-color);
  }
  section.bl_top_news .bl_newsList a:hover .el_post_category > span {
    background-color: var(--sub-color);
    color: #fff;
  }
}

section.bl_top_about {
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/top/intro-bg.webp);
  background-size: 100% 100%;
}
@media screen and (min-width: 1025px) {
  section.bl_top_about {
    background-size: cover;
  }
}
section.bl_top_about .bl_columns {
  gap: 0;
}
@media screen and (min-width: 1025px) {
  section.bl_top_about .bl_columns {
    gap: 46px;
    grid-template-columns: 51% 1fr;
  }
}
section.bl_top_about .bl_top_about_content {
  margin-block: 31px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: var(--image-radius);
  padding-block: 33px 44px;
  padding-inline: 17px;
  text-align: left;
}
@media screen and (min-width: 1025px) {
  section.bl_top_about .bl_top_about_content {
    padding-block: 56px 58px;
    padding-inline: clamp(30px, -155.507px + 18.116vw, 80px);
    text-align: center;
  }
}
section.bl_top_about .bl_top_about_content h2.lp_heading {
  --page-h2-fsz: 28px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_about .bl_top_about_content h2.lp_heading {
    --page-h2-fsz: 34px;
  }
}
section.bl_top_about .bl_top_about_content h2 + p {
  margin-top: 32px;
}
@media screen and (max-width: 1024px) {
  section.bl_top_about .bl_top_about_content br {
    display: none;
  }
}
section.bl_top_about .bl_top_about_content .el_imageButton {
  margin-top: 40px;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid var(--main-color);
  display: flex;
  align-items: center;
  background-image: url(../images/top/button-image.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  letter-spacing: 0.05em;
  font-size: 16px;
  padding-inline: 18px;
  padding-block: 20px;
  height: 80px;
  gap: 11px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_about .bl_top_about_content .el_imageButton {
    gap: 22px;
    height: 115px;
    padding-inline: 40px;
    padding-block: 20px;
    font-size: 21px;
  }
}
section.bl_top_about .bl_top_about_content .el_imageButton::after {
  content: "";
  background-image: url(../images/top/arrow-news-link.svg);
  width: 22px;
  height: 22px;
}
section.bl_top_about .bl_abst_swiper {
  height: 360px;
  margin-inline: 28px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_about .bl_abst_swiper {
    height: 645px;
    margin-inline: 0;
  }
}
section.bl_top_about .bl_abst_swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
section.bl_top_about .bl_abst_swiper .swiper-slide {
  height: auto !important;
}
section.bl_top_about .bl_abst_swiper img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 43px 0 43px 0;
}

section.bl_top_kodawari {
  background-image: url(../images/top/kodawari-bg.webp);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% 100%;
  padding-block: 40px 40px !important;
}
@media screen and (min-width: 1025px) {
  section.bl_top_kodawari {
    background-size: cover;
    padding-block: 90px 70px !important;
    background-size: 100% auto;
  }
}
section.bl_top_kodawari .bl_kodawari {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  section.bl_top_kodawari .bl_kodawari {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 20px;
    margin-top: 60px;
  }
}
@media screen and (min-width: 1025px) {
  section.bl_top_kodawari .bl_kodawari {
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
section.bl_top_kodawari .bl_kodawari li {
  background: url(../images/top/kodawari-item-bg.svg), linear-gradient(to bottom, transparent 0%, transparent 20%, rgba(255, 255, 255, 0.85) 20%, rgba(255, 255, 255, 0.85) 100%);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  padding-block: 0 45px;
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  section.bl_top_kodawari .bl_kodawari li {
    padding-inline: 47px;
  }
  section.bl_top_kodawari .bl_kodawari li:nth-child(odd) {
    margin-bottom: 50px;
  }
  section.bl_top_kodawari .bl_kodawari li:nth-child(even) {
    margin-top: 50px;
  }
}
section.bl_top_kodawari .bl_kodawari li figure img {
  border-radius: var(--image-radius);
  display: block;
}
section.bl_top_kodawari .bl_kodawari li h3.el_kodawari_title {
  --page-h3-fsz: 25px;
  line-height: 1.57em;
  margin-top: 10px;
  text-align: center;
  font-weight: 600;
}
@media screen and (min-width: 1025px) {
  section.bl_top_kodawari .bl_kodawari li h3.el_kodawari_title {
    --page-h3-fsz: 26px;
  }
}
section.bl_top_kodawari .bl_kodawari li p {
  line-height: 1.875;
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_kodawari .bl_kodawari li p {
    margin-top: 40px;
  }
}
section.bl_top_kodawari .bl_kodawari li a.el_linkButton {
  margin-top: 40px;
  color: #fff;
  border: none;
  background: linear-gradient(150deg, rgb(224, 199, 144) 0%, rgb(0, 155, 139) 25.89%);
}
section.bl_top_kodawari .bl_kodawari li a.el_linkButton:after {
  content: none;
}
section.bl_top_kodawari .bl_kodawari li:first-child h3.el_kodawari_title {
  font-size: clamp(20px, 15.705px + 1.342vw, 26px) !important;
}
@media screen and (min-width: 768px) {
  section.bl_top_kodawari .bl_kodawari li:first-child h3.el_kodawari_title {
    font-size: clamp(18px, -6px + 3.125vw, 26px) !important;
  }
}
section.bl_top_kodawari .bl_kodawari li:nth-child(4) h3.el_kodawari_title {
  font-size: clamp(20px, 15.705px + 1.342vw, 26px) !important;
}
@media screen and (min-width: 768px) {
  section.bl_top_kodawari .bl_kodawari li:nth-child(4) h3.el_kodawari_title {
    font-size: clamp(20px, -14.909px + 4.545vw, 26px) !important;
  }
}
section.bl_top_kodawari .bl_kodawari .bl_kodawari_point {
  color: var(--main-color);
  margin-top: -32px;
  font-style: italic;
  display: flex;
  align-items: center;
  margin-left: 5px;
}
section.bl_top_kodawari .bl_kodawari .bl_kodawari_point span {
  font-size: 2.4375em;
}

section.bl_top_symptoms {
  padding-block: 35px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_symptoms {
    padding-block: 60px;
  }
}
section.bl_top_symptoms .bl_columns {
  gap: 40px;
}
section.bl_top_symptoms .bl_column {
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
}
section.bl_top_symptoms .bl_column a {
  position: relative;
  display: block;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-block: 40px 30px;
  padding-inline: 20px 15px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_symptoms .bl_column a {
    padding-block: 42px 45px;
    padding-inline: 58px 50px;
  }
}
section.bl_top_symptoms .bl_column h2.lp_heading {
  align-items: flex-start;
  gap: 5px;
}
section.bl_top_symptoms .bl_column p {
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_symptoms .bl_column p {
    margin-top: 10px;
  }
}
section.bl_top_symptoms .bl_column p.el_linkButton {
  margin-top: 20px;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1025px) {
  section.bl_top_symptoms .bl_column p.el_linkButton {
    margin-top: auto;
    margin-right: 0;
    pointer-events: none;
  }
}
section.bl_top_symptoms .bl_column.is_infertility {
  background-image: url(../images/top/infertility_bg-sp.webp);
}
@media screen and (min-width: 1025px) {
  section.bl_top_symptoms .bl_column.is_infertility {
    background-image: url(../images/top/infertility_bg.webp);
  }
}
section.bl_top_symptoms .bl_column.is_infertility p.el_linkButton::after {
  background-image: url(../images/top/arrow-infertility.svg);
}
section.bl_top_symptoms .bl_column.is_implantation_disorder {
  background-image: url(../images/top/implantation_bg-sp.webp);
}
@media screen and (min-width: 1025px) {
  section.bl_top_symptoms .bl_column.is_implantation_disorder {
    background-image: url(../images/top/implantation_bg.webp);
  }
}
section.bl_top_symptoms .bl_column.is_implantation_disorder p.el_linkButton::after {
  background-image: url(../images/top/arrow-implantation.svg);
}

section.bl_top_cover {
  position: relative;
  height: 200px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_cover {
    height: 485px;
  }
}
section.bl_top_cover div {
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/top/info-bg.webp);
}
@media screen and (min-width: 1025px) {
  section.bl_top_cover div {
    background-image: url(../images/top/info-bg.webp);
  }
}

section.bl_top_infomation {
  background-image: url(../images/common/default-texture.webp);
  background-repeat: repeat;
  padding-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_infomation {
    padding-bottom: 50px;
  }
}
section.bl_top_infomation .el_heading_tab {
  background-image: url(../images/common/default-texture.webp);
  background-repeat: repeat;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: -70px;
  padding-block: 20px;
  padding-inline: 66px;
  border-radius: 16px 16px 0 0;
}
@media screen and (min-width: 1025px) {
  section.bl_top_infomation .el_heading_tab {
    margin-top: -115px;
    padding-block: 37px;
    padding-inline: 125px;
    border-radius: 30px 30px 0 0;
  }
}
section.bl_top_infomation .bl_infomation_list {
  max-width: 880px;
  margin-inline: auto;
}
section.bl_top_infomation .bl_infomation_list li {
  position: relative;
  border-top: 1px solid var(--border-color);
}
section.bl_top_infomation .bl_infomation_list li::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  height: 1px;
  background-color: var(--main-color);
  width: 40px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_infomation .bl_infomation_list li::before {
    width: 100px;
  }
}
section.bl_top_infomation .bl_infomation_list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 16px;
  padding-block: 20px 32px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_infomation .bl_infomation_list li a {
    padding-block: 37px;
    padding-inline: 24px;
  }
}
@media screen and (min-width: 1025px) {
  section.bl_top_infomation .bl_infomation_list li a::after {
    content: "";
    background-image: url(../images/top/arrow-infox2.svg);
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    flex-shrink: 0;
  }
}
section.bl_top_infomation .bl_infomation_list li a h3 {
  --page-h3-fsz: 24px;
  color: var(--main-color);
}
section.bl_top_infomation .bl_infomation_list li a p {
  line-height: 1.625;
  margin-top: 12px;
}
@media screen and (min-width: 1025px) {
  section.bl_top_infomation .bl_infomation_list li a p {
    margin-top: 16px;
  }
}

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

.page-about .entry-content.bl_article_content {
  padding-top: 18px;
}
.page-about .bl_abst_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 750px;
  margin-inline: auto;
  background-image: url(../images/page/about-bg.svg);
  background-repeat: no-repeat;
  background-position: center top -30px;
  margin-top: 50px !important;
}
.page-about .bl_abst_content figure + p {
  margin-top: 35px;
}
@media screen and (max-width: 1024px) {
  .page-about .bl_abst_content figure + p {
    padding-inline: 3.8%;
  }
}
.page-about .bl_abst_content p {
  line-height: 2;
  font-size: 15px;
}
@media screen and (min-width: 1025px) {
  .page-about .bl_abst_content p {
    font-size: 16px;
    line-height: 2.25;
  }
}
.page-about .bl_abst_content p + figure {
  margin-top: 20px;
}

section.bl_about_intro {
  --article-mt: 100px;
}
section.bl_about_intro h2 + h3 {
  margin-top: 55px;
}
section.bl_about_intro h3 {
  margin-top: 80px;
}
section.bl_about_intro .el_about_intro_copy {
  color: #00938b;
  letter-spacing: 0.05em;
  font-size: 18px;
  line-height: 1.75;
}
@media screen and (min-width: 1025px) {
  section.bl_about_intro .el_about_intro_copy {
    font-size: 22px;
    line-height: 1.94;
  }
}
section.bl_about_intro .bl_mediaText {
  margin-top: 30px;
  gap: 20px;
}
@media screen and (min-width: 1025px) {
  section.bl_about_intro .bl_mediaText {
    margin-top: 60px;
    gap: 40px;
    grid-template-columns: 1fr 40%;
  }
}
section.bl_about_intro .bl_mediaText p {
  line-height: 2.25;
}
section.bl_about_intro .bl_mediaText figcaption {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 20px;
  justify-content: flex-end;
  margin-top: 20px;
  margin-right: 14px;
}
section.bl_about_intro .bl_mediaText figcaption span {
  background-image: url(../images/page/about-4.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 72px;
  height: 72px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.bl_about_intro .el_history li {
  display: flex;
  line-height: 1.625;
  gap: 25px;
  font-size: 14px;
}
@media screen and (min-width: 1025px) {
  section.bl_about_intro .el_history li {
    gap: 45px;
  }
}
section.bl_about_intro .el_history li > span {
  white-space: nowrap;
}
section.bl_about_intro .el_history li + li {
  margin-top: 7px;
}
@media screen and (min-width: 1025px) {
  section.bl_about_intro .intoro_2col {
    gap: 64px;
  }
}
section.bl_about_intro .bl_books {
  margin-top: 50px;
  gap: 12px;
}
@media screen and (min-width:520px) {
  section.bl_about_intro .bl_books {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
section.bl_about_intro .bl_books .bl_column {
  background-color: #e7f5f4;
  padding-inline: 33px;
  padding-block: 30px;
  position: relative;
  flex-direction: column;
  display: flex;
  justify-content: flex-end;
}
section.bl_about_intro .bl_books .bl_column a {
  display: block;
  text-align: center;
}
section.bl_about_intro .bl_books .bl_column p.el_linkButton {
  background-color: transparent;
  margin-left: auto;
  font-size: 14px;
  display: flex;
  margin-inline: auto 0;
  padding-inline: 0;
  justify-content: flex-end;
  height: auto;
  padding-block: 18px 0;
}
section.bl_about_intro .bl_books .bl_column p.el_linkButton::after {
  content: "";
  background-image: url(../images/top/arrow-news-link.svg);
  width: 20px;
  height: 20px;
}

.bl_about_slider {
  padding-block: 75px;
}
.bl_about_slider .swiper-wrapper {
  transition-timing-function: linear !important;
}
.bl_about_slider img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 43px 0 43px 0;
}

section.bl_about_section_info {
  margin-bottom: 90px;
}
section.bl_about_section_info h2 + h3 {
  margin-top: 45px;
}
section.bl_about_section_info div + h3 {
  margin-top: 64px;
}
section.bl_about_section_info p {
  line-height: 2.125 !important;
}
@media screen and (min-width: 1025px) {
  section.bl_about_section_info .section_2col {
    row-gap: 64px;
    -moz-column-gap: 64px;
         column-gap: 64px;
  }
}
section.bl_about_section_info .section_2col .bl_lpContent {
  font-size: 14px;
}
@media screen and (min-width: 1025px) {
  section.bl_about_section_info .section_2col .bl_lpContent {
    margin-top: 32px;
  }
}

.bl_achievements_wrapper {
  margin-top: 25px;
  margin-inline: auto;
  max-width: 1020px;
}
h2 + .bl_achievements_wrapper {
  margin-top: 40px;
}

ul.bl_achievements_list.is_hidden {
  display: none;
}
.bl_achievements_button + ul.bl_achievements_list {
  margin-top: 25px;
}
ul.bl_achievements_list li.el_achievements_item {
  display: flex;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background-color: #fff;
  padding-block: 28px 22px;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  ul.bl_achievements_list li.el_achievements_item {
    flex-direction: row;
  }
}
ul.bl_achievements_list li.el_achievements_item + li {
  margin-top: 25px;
}
ul.bl_achievements_list li.el_achievements_item .el_achievements_meta {
  display: flex;
  flex-shrink: 0;
  text-align: center;
  letter-spacing: 0.04em;
  align-items: center;
  line-height: 1;
  border-bottom: 1px solid var(--main-color);
  padding-bottom: 10px;
  white-space: nowrap;
  margin-inline: 20px;
}
@media screen and (min-width: 768px) {
  ul.bl_achievements_list li.el_achievements_item .el_achievements_meta {
    padding-bottom: 0;
    border-bottom: none;
    border-right: 1px solid var(--main-color);
    font-size: 22px;
    width: 270px;
    margin-right: 0;
  }
}
ul.bl_achievements_list li.el_achievements_item .el_achievements_meta span.el_achievements_year {
  font-size: 20px;
  font-weight: var(--fw-bold);
  color: var(--main-color);
  padding-inline: 10px 20px;
}
@media screen and (min-width: 1025px) {
  ul.bl_achievements_list li.el_achievements_item .el_achievements_meta span.el_achievements_year {
    width: 50%;
    padding-inline: 10px;
  }
}
ul.bl_achievements_list li.el_achievements_item .el_achievements_meta span.el_achievements_type {
  color: var(--text-color);
  font-weight: 400;
  font-size: 16px;
  display: flex;
  height: 100%;
  align-items: center;
  border-left: 1px solid var(--main-color);
  padding-inline: 20px;
}
@media screen and (min-width: 1025px) {
  ul.bl_achievements_list li.el_achievements_item .el_achievements_meta span.el_achievements_type {
    width: 50%;
    padding-inline: 10px;
    justify-content: center;
  }
}
ul.bl_achievements_list li.el_achievements_item .el_achievements_abst {
  padding-inline: 30px 20px;
  padding-block: 10px;
  letter-spacing: 0.04em;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  ul.bl_achievements_list li.el_achievements_item .el_achievements_abst {
    padding-inline: 30px 38px;
    line-height: 2;
  }
}

.bl_achievements_button {
  margin-top: 27px;
}
.bl_achievements_button .el_linkButton {
  background-color: var(--main-color);
  color: #fff;
  width: 220px;
  height: 40px;
  padding-inline: 44px 20px;
  padding-block: 12px 10px;
  justify-content: space-between;
}
.bl_achievements_button .el_linkButton::after {
  content: "＋";
  background-image: none;
  width: 16px;
  height: 16px;
  line-height: 1;
  transition: transform var(--transition);
}
.bl_achievements_button .el_linkButton .el_close_text {
  display: none;
}
.bl_achievements_button .el_linkButton.is_open::after {
  transform: rotate(45deg);
}
.bl_achievements_button .el_linkButton.is_open .el_close_text {
  display: inline;
}
.bl_achievements_button .el_linkButton.is_open .el_open_text {
  display: none;
}

section.full-width.is_green {
  background-color: #e7f5f4;
}

section.full-width.is_content_narrow > .bl_section_inner {
  max-width: 875px;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  section.full-width.is_content_narrow > .bl_section_inner {
    padding-inline: 20px;
  }
}
section.full-width.is_content_narrow > .bl_section_inner p {
  margin-top: 30px;
}

.bl_toc {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  transition: transform var(--transition);
}
@media screen and (min-width: 1025px) {
  .bl_toc {
    margin-bottom: 70px;
  }
}
.bl_toc.is_sticky {
  transform: translateY(var(--header-height, 100px));
  box-shadow: 0 0 5px #999;
}
body.is_hide_header .bl_toc.is_sticky {
  transform: translateY(0);
}
.bl_toc li {
  background-color: #e7f5f4;
  flex-grow: 1;
  flex-shrink: 1;
  position: relative;
  width: 50%;
}
@media screen and (min-width: 1025px) {
  .bl_toc li {
    width: 25%;
    flex-grow: 0;
  }
}
.bl_toc li::after {
  content: "";
  height: 70%;
  width: 1px;
  background-color: var(--border-color);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .bl_toc li:nth-child(2n)::after {
    content: none;
  }
  .bl_toc li:first-child::before, .bl_toc li:nth-child(2)::before {
    content: "";
    height: 1px;
    width: 90%;
    background-color: var(--border-color);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.bl_toc li:last-child::after {
  content: none;
}
.bl_toc li a {
  display: flex;
  padding-block: 7px;
  align-items: center;
  justify-content: space-between;
  height: 54px;
  font-size: 13px;
  padding-inline: 12px 12px;
  line-height: 1.3;
}
@media screen and (min-width: 1025px) {
  .bl_toc li a {
    padding-inline: 26px 22px;
    width: 100%;
    font-size: 16px;
  }
}
.bl_toc li a::after {
  content: "";
  background-image: url(../images/page/arrow-toc.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
}
@media screen and (min-width: 1025px) {
  .bl_toc li a::after {
    width: 20px;
    height: 20px;
  }
}
.bl_toc.col-5 li {
  width: 20%;
}
.bl_toc.col-5 li a {
  padding-inline: 12px 12px;
}
@media screen and (max-width: 1024px) {
  .bl_toc.col-5 li {
    width: 50%;
    flex-grow: 0;
  }
}
@media screen and (max-width: 1024px) {
  .bl_toc.col-5 li:nth-child(2n)::after {
    content: none;
  }
  .bl_toc.col-5 li:nth-child(3)::before {
    content: "";
    height: 1px;
    width: 90%;
    background-color: var(--border-color);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.bl_toc.col-5 li:nth-child(5n)::after {
  content: none;
}

.page-access .entry-content.bl_article_content h2 + h3 {
  margin-top: 40px;
}
.page-access .entry-content.bl_article_content .bl_comapnyMap {
  margin-top: 40px;
}
.page-access .entry-content.bl_article_content h4 {
  margin-top: 30px;
}
.page-access .entry-content.bl_article_content ol {
  margin-top: 30px;
  counter-reset: access-step;
}
.page-access .entry-content.bl_article_content ol li {
  counter-increment: access-step;
  list-style: none;
  display: flex;
  line-height: 1.75;
  gap: 20px;
  align-items: flex-start;
}
@media screen and (min-width: 1025px) {
  .page-access .entry-content.bl_article_content ol li {
    align-items: center;
  }
}
.page-access .entry-content.bl_article_content ol li > span {
  display: flex;
  flex-direction: column;
  border-radius: 10px 0;
  background-color: #00938b;
  color: #fff;
  padding-inline: 20px;
  text-align: center;
  flex-shrink: 0;
  padding-block: 10px 8px;
  gap: 0;
  line-height: 1;
  font-size: 12px;
}
.page-access .entry-content.bl_article_content ol li > span::after {
  content: counter(access-step, decimal-leading-zero);
  font-size: 16px;
  line-height: 1.5em;
  font-weight: var(--fw-bold);
}
.page-access .entry-content.bl_article_content ol li + li {
  margin-top: 25px;
}
.page-access .entry-content.bl_article_content .el_timeTable {
  margin-inline: auto;
  max-width: 900px;
  width: 90vw;
}
@media screen and (max-width: 1024px) {
  .page-access .entry-content.bl_article_content .el_timeTable {
    margin-left: calc(50% - 45vw);
  }
}
.page-access .entry-content.bl_article_content .el_timeTable table th {
  border: none;
}
.page-access .entry-content.bl_article_content .el_timeTable table td {
  border-top: none;
}
.page-access .entry-content.bl_article_content .el_timeTable table tr:last-child td {
  border-bottom: none;
}
.page-access .entry-content.bl_article_content .bl_accessMap {
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .page-access .entry-content.bl_article_content .bl_accessMap {
    gap: 0;
    grid-template-columns: 53.2% 1fr;
  }
}
.page-access .entry-content.bl_article_content .bl_accessMap figure {
  position: relative;
}
.page-access .entry-content.bl_article_content .bl_accessMap figure figcaption {
  position: absolute;
  bottom: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 430px;
  background-color: #fff;
  font-size: 16px;
  padding: 5px 12px;
  text-align: center;
}
.page-access section.bl_accsess_timeTable {
  margin-top: 40px;
}
@media screen and (min-width: 1025px) {
  .page-access section.bl_accsess_timeTable {
    margin-top: 80px;
  }
}

.page-implantation-disorder .bl_article_content,
.page-infertility .bl_article_content {
  padding-top: 40px;
}
.page-implantation-disorder .bl_overview_content,
.page-infertility .bl_overview_content {
  background-image: url(../images/page/infertility-bg.webp);
  background-size: 466px;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  min-height: 450px;
  padding-block: 0 40px;
}
@media screen and (min-width: 1025px) {
  .page-implantation-disorder .bl_overview_content,
  .page-infertility .bl_overview_content {
    gap: 40px;
    padding-block: 60px;
  }
}
.page-implantation-disorder .bl_overview_content p,
.page-infertility .bl_overview_content p {
  max-width: 750px;
  line-height: 2.25;
}
@media screen and (max-width: 1024px) {
  .page-implantation-disorder .bl_overview_content p,
  .page-infertility .bl_overview_content p {
    padding-inline: 3.8%;
  }
}
.page-implantation-disorder .bl_overview_content p .is_text_blue,
.page-implantation-disorder .bl_overview_content p .is_text_red,
.page-infertility .bl_overview_content p .is_text_blue,
.page-infertility .bl_overview_content p .is_text_red {
  font-size: 1.125em;
  font-weight: var(--fw-bold);
}
.page-implantation-disorder h2.lp_heading_small,
.page-infertility h2.lp_heading_small {
  color: #e75b6a;
  text-align: center;
  font-size: 18px;
}
@media screen and (min-width: 1025px) {
  .page-implantation-disorder h2.lp_heading_small,
  .page-infertility h2.lp_heading_small {
    font-size: 16px;
  }
}
.page-implantation-disorder section.bl_infertility_intro h2.lp_heading,
.page-infertility section.bl_infertility_intro h2.lp_heading {
  --page-h2-fsz: 26px;
}
.page-implantation-disorder section.bl_infertility_intro h2.lp_heading + p,
.page-infertility section.bl_infertility_intro h2.lp_heading + p {
  margin-top: 40px;
}
.page-implantation-disorder section.bl_infertility_intro .bl_columns,
.page-infertility section.bl_infertility_intro .bl_columns {
  gap: 20px;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .page-implantation-disorder section.bl_infertility_intro .bl_columns,
  .page-infertility section.bl_infertility_intro .bl_columns {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page-implantation-disorder section.bl_infertility_intro .bl_column,
.page-infertility section.bl_infertility_intro .bl_column {
  background-color: #e7f5f4;
  padding-block: 36px;
  padding-inline: 20px;
}
@media screen and (min-width: 1025px) {
  .page-implantation-disorder section.bl_infertility_intro .bl_column,
  .page-infertility section.bl_infertility_intro .bl_column {
    padding-block: 70px;
    padding-inline: 52px;
  }
}
.page-implantation-disorder section.bl_infertility_intro p,
.page-infertility section.bl_infertility_intro p {
  line-height: 2.25;
}
.page-implantation-disorder section.bl_infertility_intro ul.is_bg_white,
.page-infertility section.bl_infertility_intro ul.is_bg_white {
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  color: var(--main-color);
  -moz-column-gap: 8px;
       column-gap: 8px;
  row-gap: 0;
  padding-inline: 4px;
  margin-block: 4px;
}
.page-implantation-disorder section.bl_infertility_intro ul.is_bg_white.is_rows,
.page-infertility section.bl_infertility_intro ul.is_bg_white.is_rows {
  max-width: 300px;
}
.page-implantation-disorder section.bl_infertility_intro ul.is_bg_white li,
.page-infertility section.bl_infertility_intro ul.is_bg_white li {
  display: flex;
  white-space: nowrap;
  gap: 4px;
  width: -moz-fit-content;
  width: fit-content;
}
.page-implantation-disorder section.bl_infertility_intro ul.is_bg_white li::before,
.page-infertility section.bl_infertility_intro ul.is_bg_white li::before {
  content: "・";
}
.page-implantation-disorder section.bl_infertility_causes,
.page-infertility section.bl_infertility_causes {
  padding-inline: 20px;
  padding-top: 40px;
}
@media screen and (min-width: 1025px) {
  .page-implantation-disorder section.bl_infertility_causes,
  .page-infertility section.bl_infertility_causes {
    padding-top: 80px;
  }
}
.page-implantation-disorder section.bl_infertility_causes h2 + p,
.page-infertility section.bl_infertility_causes h2 + p {
  margin-top: 32px;
}
.page-implantation-disorder section.bl_infertility_causes p + h3,
.page-infertility section.bl_infertility_causes p + h3 {
  margin-top: 50px;
}
@media screen and (min-width: 1025px) {
  .page-implantation-disorder section.bl_infertility_causes .bl_lpContent,
  .page-infertility section.bl_infertility_causes .bl_lpContent {
    padding-inline: 100px;
  }
}
.page-implantation-disorder section.bl_infertility_causes .bl_lpContent + h3,
.page-infertility section.bl_infertility_causes .bl_lpContent + h3 {
  margin-top: 60px;
}
@media screen and (min-width: 1025px) {
  .page-implantation-disorder section.bl_infertility_causes .bl_lpContent + h3,
  .page-infertility section.bl_infertility_causes .bl_lpContent + h3 {
    margin-top: 80px;
  }
}
.page-implantation-disorder section.bl_infertility_causes .bl_lpContent p,
.page-infertility section.bl_infertility_causes .bl_lpContent p {
  line-height: 2.25;
}
.page-implantation-disorder section.bl_infertility_causes .bl_columns.infertility_causes_2col,
.page-infertility section.bl_infertility_causes .bl_columns.infertility_causes_2col {
  margin-top: 50px;
  gap: 64px;
}
.page-implantation-disorder section.bl_infertility_causes .bl_columns.infertility_causes_2col .bl_lpContent,
.page-infertility section.bl_infertility_causes .bl_columns.infertility_causes_2col .bl_lpContent {
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .page-implantation-disorder section.bl_infertility_causes .bl_columns.infertility_causes_2col .bl_lpContent,
  .page-infertility section.bl_infertility_causes .bl_columns.infertility_causes_2col .bl_lpContent {
    margin-top: 24px;
    padding-inline: 0;
  }
}
.page-implantation-disorder section.bl_feature_health.pd_tb_s.is_green,
.page-infertility section.bl_feature_health.pd_tb_s.is_green {
  background-color: #e7f5f4;
}
.page-implantation-disorder section.bl_feature_health.pd_tb_s.is_green h2.lp_heading,
.page-infertility section.bl_feature_health.pd_tb_s.is_green h2.lp_heading {
  --page-h2-fsz: 26px;
}
.page-implantation-disorder section.bl_feature_health.pd_tb_s.is_green .bl_section_inner,
.page-infertility section.bl_feature_health.pd_tb_s.is_green .bl_section_inner {
  padding-inline: 20px;
}
.page-implantation-disorder section.bl_feature_health.pd_tb_s.is_green .is_text_red,
.page-infertility section.bl_feature_health.pd_tb_s.is_green .is_text_red {
  font-weight: var(--fw-bold);
}
.page-implantation-disorder section.bl_feature_health.pd_tb_s.is_green p,
.page-infertility section.bl_feature_health.pd_tb_s.is_green p {
  margin-inline: auto;
  margin-top: 20px;
  line-height: 2.25;
}
@media screen and (min-width: 1025px) {
  .page-implantation-disorder section.bl_feature_health.pd_tb_s.is_green p,
  .page-infertility section.bl_feature_health.pd_tb_s.is_green p {
    margin-top: 35px;
  }
}
.page-implantation-disorder section.bl_feature_health.pd_tb_s.is_green p .is_text_white_bg,
.page-infertility section.bl_feature_health.pd_tb_s.is_green p .is_text_white_bg {
  font-weight: var(--fw-bold);
  padding-block: 5px;
}
.page-implantation-disorder section.bl_approach .bl_section_inner,
.page-infertility section.bl_approach .bl_section_inner {
  padding-inline: 20px;
}
.page-implantation-disorder section.bl_approach h3 + p,
.page-infertility section.bl_approach h3 + p {
  line-height: 2.25;
  margin-top: 26px;
}
@media screen and (min-width: 1025px) {
  .page-implantation-disorder section.bl_approach h3 + p,
  .page-infertility section.bl_approach h3 + p {
    margin-top: 46px;
  }
}
.page-implantation-disorder section.bl_approach .is_text_orange,
.page-infertility section.bl_approach .is_text_orange {
  font-weight: var(--fw-bold);
}
.page-implantation-disorder section.bl_infertility_class .bl_section_inner,
.page-infertility section.bl_infertility_class .bl_section_inner {
  padding-inline: 12px;
  max-width: 1146px;
}
.page-implantation-disorder section.bl_infertility_class .bl_mediaText,
.page-infertility section.bl_infertility_class .bl_mediaText {
  gap: 40px;
}
@media screen and (min-width: 1025px) {
  .page-implantation-disorder section.bl_infertility_class .bl_mediaText,
  .page-infertility section.bl_infertility_class .bl_mediaText {
    grid-template-columns: 1fr 40.9%;
  }
}
.page-implantation-disorder section.bl_infertility_class .bl_mediaText .bl_mediaText_content p,
.page-infertility section.bl_infertility_class .bl_mediaText .bl_mediaText_content p {
  margin-top: 0;
  line-height: 2.25;
}
@media screen and (min-width: 1025px) {
  .page-implantation-disorder section.bl_infertility_class .bl_mediaText .bl_mediaText_content p,
  .page-infertility section.bl_infertility_class .bl_mediaText .bl_mediaText_content p {
    margin-right: 4px;
  }
}
.page-implantation-disorder section.bl_infertility_class .bl_mediaText .bl_mediaText_content > .bl_mediaText,
.page-infertility section.bl_infertility_class .bl_mediaText .bl_mediaText_content > .bl_mediaText {
  gap: 20px;
}
@media screen and (min-width: 1025px) {
  .page-implantation-disorder section.bl_infertility_class .bl_mediaText .bl_mediaText_content > .bl_mediaText,
  .page-infertility section.bl_infertility_class .bl_mediaText .bl_mediaText_content > .bl_mediaText {
    grid-template-columns: 61% 1fr;
    gap: 27px;
    margin-right: -30px;
  }
}
.page-implantation-disorder section.bl_infertility_class .bl_mediaText .bl_mediaText_image,
.page-infertility section.bl_infertility_class .bl_mediaText .bl_mediaText_image {
  text-align: center;
}
.page-implantation-disorder section.bl_infertility_class .bl_mediaText ul.bl_checkList,
.page-infertility section.bl_infertility_class .bl_mediaText ul.bl_checkList {
  margin-top: 30px;
}
.page-implantation-disorder section.bl_infertility_class .bl_mediaText ul.bl_checkList li,
.page-infertility section.bl_infertility_class .bl_mediaText ul.bl_checkList li {
  padding-block: 12px;
  font-size: 18px;
}
@media screen and (min-width: 1025px) {
  .page-implantation-disorder section.bl_infertility_class .bl_mediaText ul.bl_checkList li,
  .page-infertility section.bl_infertility_class .bl_mediaText ul.bl_checkList li {
    font-size: 20px;
  }
}
.page-implantation-disorder section.bl_infertility_class .bl_mediaText .bl_mediaText > figure.bl_mediaText_image,
.page-infertility section.bl_infertility_class .bl_mediaText .bl_mediaText > figure.bl_mediaText_image {
  align-self: flex-end;
  text-align: center;
}
.page-implantation-disorder section.bl_midwife .bl_section_inner,
.page-infertility section.bl_midwife .bl_section_inner {
  max-width: var(--content-width);
  padding-inline: 12px;
}
.page-implantation-disorder section.bl_midwife .is_text_orange,
.page-infertility section.bl_midwife .is_text_orange {
  font-weight: var(--fw-bold);
}
.page-implantation-disorder section.bl_midwife .bl_mediaText,
.page-infertility section.bl_midwife .bl_mediaText {
  gap: 40px;
}
@media screen and (min-width: 1025px) {
  .page-implantation-disorder section.bl_midwife .bl_mediaText,
  .page-infertility section.bl_midwife .bl_mediaText {
    gap: 27px;
    grid-template-columns: 1fr 47%;
  }
}
.page-implantation-disorder section.bl_midwife .bl_mediaText p,
.page-infertility section.bl_midwife .bl_mediaText p {
  line-height: 2.25;
  margin-top: 0;
}
.page-implantation-disorder section.bl_midwife .bl_mediaText ul.bl_checkList,
.page-infertility section.bl_midwife .bl_mediaText ul.bl_checkList {
  display: grid;
  margin-top: 30px;
  gap: 26px;
  align-items: center;
  font-size: 18px;
}
@media screen and (min-width: 1025px) {
  .page-implantation-disorder section.bl_midwife .bl_mediaText ul.bl_checkList,
  .page-infertility section.bl_midwife .bl_mediaText ul.bl_checkList {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1025px) {
  .page-implantation-disorder section.bl_midwife .bl_mediaText ul.bl_checkList,
  .page-infertility section.bl_midwife .bl_mediaText ul.bl_checkList {
    font-size: 20px;
  }
}
.page-implantation-disorder section.bl_midwife .bl_mediaText ul.bl_checkList li + li,
.page-infertility section.bl_midwife .bl_mediaText ul.bl_checkList li + li {
  margin-top: 0;
}
.page-implantation-disorder section.bl_midwife .bl_mediaText ul.bl_tableList,
.page-infertility section.bl_midwife .bl_mediaText ul.bl_tableList {
  margin-top: 44px;
}
.page-implantation-disorder section.bl_midwife .bl_mediaText ul.bl_tableList li,
.page-infertility section.bl_midwife .bl_mediaText ul.bl_tableList li {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  padding-block: 10px;
  border-radius: 8px;
  min-height: 80px;
}
.page-implantation-disorder section.bl_midwife .bl_mediaText ul.bl_tableList li .el_table_th,
.page-infertility section.bl_midwife .bl_mediaText ul.bl_tableList li .el_table_th {
  flex-basis: 30%;
  padding-inline: 16px;
  color: var(--main-color);
  border-right: 1px solid;
  align-self: stretch;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}
@media screen and (min-width: 1025px) {
  .page-implantation-disorder section.bl_midwife .bl_mediaText ul.bl_tableList li .el_table_th,
  .page-infertility section.bl_midwife .bl_mediaText ul.bl_tableList li .el_table_th {
    padding-inline: 37px;
  }
}
.page-implantation-disorder section.bl_midwife .bl_mediaText ul.bl_tableList li .el_table_td,
.page-infertility section.bl_midwife .bl_mediaText ul.bl_tableList li .el_table_td {
  padding-inline: 26px;
}
.page-implantation-disorder section.bl_midwife .bl_mediaText ul.bl_tableList li + li,
.page-infertility section.bl_midwife .bl_mediaText ul.bl_tableList li + li {
  margin-top: 17px;
}
.page-implantation-disorder section.bl_midwife .bl_mediaText ul.bl_tableList li a,
.page-infertility section.bl_midwife .bl_mediaText ul.bl_tableList li a {
  color: #036ea9;
  text-decoration: underline;
  text-underline-offset: 8px;
}
.page-implantation-disorder section.bl_midwife .bl_mediaText .el_note,
.page-infertility section.bl_midwife .bl_mediaText .el_note {
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.5;
  display: flex;
  gap: 5px;
}
.page-implantation-disorder section.bl_midwife .bl_mediaText figure,
.page-infertility section.bl_midwife .bl_mediaText figure {
  background-image: url(../images/common/default-texture.webp);
  background-repeat: repeat;
  padding: 22px 50px 36px;
  text-align: center;
}
.page-implantation-disorder section.bl_midwife .bl_mediaText figure figcaption,
.page-infertility section.bl_midwife .bl_mediaText figure figcaption {
  text-align: center;
  margin-top: 17px;
  font-size: 14px;
}

.page-infertility .bl_overview_content {
  margin-top: -10px;
}
@media screen and (min-width: 1025px) {
  .page-infertility .bl_overview_content {
    margin-top: -30px;
  }
}
.page-infertility section.bl_infertility_intro ul.is_bg_white {
  padding-block: 2px;
}
.page-infertility section.bl_infertility_intro .bl_column:last-child ul.is_bg_white li + li {
  margin-top: 5px;
}

.page-implantation-disorder h2.lp_heading_small {
  color: #036ea9;
}
.page-implantation-disorder .bl_overview_content {
  background-image: url(../images/page/infertility-blue-bg.webp);
  margin-bottom: 60px;
}
@media screen and (min-width: 1025px) {
  .page-implantation-disorder section.bl_infertility_causes {
    padding-top: 65px;
  }
}
.page-implantation-disorder section.bl_infertility_causes .bl_mediaText {
  gap: 24px;
}
@media screen and (min-width: 1025px) {
  .page-implantation-disorder section.bl_infertility_causes .bl_mediaText {
    gap: 40px;
    grid-template-columns: 43% 1fr;
  }
}
@media screen and (min-width: 1025px) {
  .page-implantation-disorder section.bl_infertility_causes .bl_lpContent {
    padding-inline: 60px !important;
  }
}
@media screen and (min-width: 1025px) {
  .page-implantation-disorder .bl_approach .bl_lpContent {
    padding-inline: 60px !important;
  }
}
.page-implantation-disorder .bl_approach .bl_lpContent figure {
  margin-top: 24px;
  margin-bottom: 60px;
}
@media screen and (min-width: 1025px) {
  .page-implantation-disorder .bl_approach .bl_lpContent figure {
    margin-top: 50px;
    margin-bottom: 90px;
  }
}
.page-implantation-disorder .is_green_shadow {
  display: block;
  padding: 10px;
}
@media screen and (min-width: 1025px) {
  .page-implantation-disorder .is_green_shadow {
    padding: 40px 50px;
  }
}
.page-implantation-disorder .bl_mediaText .is_green_shadow {
  padding: 10px;
}
@media screen and (min-width: 1025px) {
  .page-implantation-disorder .bl_mediaText .is_green_shadow {
    padding: 20px;
  }
}

.page-flow ul.bl_card,
.page-implantation-disorder ul.bl_card,
.page-infertility ul.bl_card {
  display: grid;
  gap: 40px;
  margin-top: 30px;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 1025px) {
  .page-flow ul.bl_card,
  .page-implantation-disorder ul.bl_card,
  .page-infertility ul.bl_card {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, -50.809px + 6.915vw, 46px);
    margin-top: 67px;
  }
}
.page-flow ul.bl_card .bl_card_item,
.page-implantation-disorder ul.bl_card .bl_card_item,
.page-infertility ul.bl_card .bl_card_item {
  padding: 44px 20px;
  position: relative;
  box-shadow: 0px 0px 3px #9fcc97;
}
.page-flow ul.bl_card .bl_card_item h4,
.page-flow ul.bl_card .bl_card_item h3,
.page-implantation-disorder ul.bl_card .bl_card_item h4,
.page-implantation-disorder ul.bl_card .bl_card_item h3,
.page-infertility ul.bl_card .bl_card_item h4,
.page-infertility ul.bl_card .bl_card_item h3 {
  --page-h3-fsz: 18px;
  text-align: center;
  padding-bottom: 32px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin-inline: auto;
  font-weight: var(--fw-bold);
}
.page-flow ul.bl_card .bl_card_item h4::after,
.page-flow ul.bl_card .bl_card_item h3::after,
.page-implantation-disorder ul.bl_card .bl_card_item h4::after,
.page-implantation-disorder ul.bl_card .bl_card_item h3::after,
.page-infertility ul.bl_card .bl_card_item h4::after,
.page-infertility ul.bl_card .bl_card_item h3::after {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, rgb(132, 211, 174) 8.04%, rgb(255, 186, 172) 92.86%);
  height: 2px;
}
.page-flow ul.bl_card .bl_card_item h4 + p,
.page-flow ul.bl_card .bl_card_item h3 + p,
.page-implantation-disorder ul.bl_card .bl_card_item h4 + p,
.page-implantation-disorder ul.bl_card .bl_card_item h3 + p,
.page-infertility ul.bl_card .bl_card_item h4 + p,
.page-infertility ul.bl_card .bl_card_item h3 + p {
  margin-top: 24px;
}
.page-flow ul.bl_card .bl_card_item::before,
.page-implantation-disorder ul.bl_card .bl_card_item::before,
.page-infertility ul.bl_card .bl_card_item::before {
  content: "";
  background-image: url(../images/page/icon-check.svg);
  width: 34px;
  height: 34px;
  position: absolute;
  top: -17px;
  left: 23px;
}
.page-flow ul.bl_card + p,
.page-implantation-disorder ul.bl_card + p,
.page-infertility ul.bl_card + p {
  margin-top: 30px;
}
@media screen and (min-width: 1025px) {
  .page-flow ul.bl_card + p,
  .page-implantation-disorder ul.bl_card + p,
  .page-infertility ul.bl_card + p {
    margin-top: 60px;
  }
}

section.bl_contact {
  --content-width: 900px;
}
section.bl_contact a.el_telLinkButton {
  color: var(--main-color);
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 20px;
  font-size: 36px;
  align-items: center;
}
section.bl_contact a.el_telLinkButton::before {
  content: "";
  background-image: url(../images/common/icon-phone-green.svg);
  width: 1em;
  height: 1em;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
  flex-shrink: 0;
}
section.bl_contact .el_timeTable {
  max-width: 800px;
  margin-inline: auto;
  margin-top: 20px;
}
section.bl_contact .el_timeTable thead th {
  border: none !important;
  padding-block: 28px;
}
section.bl_contact .el_timeTable tbody tr td {
  border-top: none !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

.page-faq .bl_faq_section + .bl_faq_section {
  margin-top: 80px;
}
.page-faq .bl_faq {
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  margin-top: 40px;
  padding: 20px;
}
.page-faq .bl_faq .el_accordion_title {
  position: relative;
  pointer-events: none;
}
.page-faq .bl_faq .el_accordion_title .el_q_symbol {
  color: var(--main-color);
  font-weight: var(--fw-bold);
  font-size: 20px;
  top: 0;
  left: 16px;
  flex-shrink: 0;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .page-faq .bl_faq .el_accordion_title .el_q_symbol {
    font-size: 20px;
    left: 25px;
  }
}
.page-faq .bl_faq button.el_accordion_button {
  --ac-icon-right: 15px;
  display: flex;
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  padding-inline: 10px 10px;
  padding-block: 10px 20px;
  color: var(--text-color);
  gap: 20px;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  text-align: left;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .page-faq .bl_faq button.el_accordion_button {
    --ac-icon-right: 30px;
    padding-inline: 10px 10px;
    font-size: 18px;
  }
}
.page-faq .bl_faq .is_close .el_accordion_button::after {
  transform: translateY(-50%);
}
.page-faq .bl_faq .is_close + .el_accordion_body {
  grid-template-rows: 0fr;
}
.page-faq .bl_faq .is_close + .el_accordion_body .el_accordion_inner {
  margin-top: 0 !important;
}
.page-faq .bl_faq .el_accordion_body {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows var(--transition);
}
.page-faq .bl_faq .el_accordion_inner {
  overflow: hidden;
  position: relative;
  padding-inline: 10px;
  margin-top: 20px;
  font-size: 14px;
  display: flex;
  gap: 20px;
}
@media screen and (min-width: 1025px) {
  .page-faq .bl_faq .el_accordion_inner {
    font-size: 16px;
    margin-top: 20px;
  }
}
.page-faq .bl_faq .el_accordion_inner .el_a_symbol {
  color: var(--sub-color);
  font-weight: var(--fw-bold);
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1.4;
}
@media screen and (min-width: 1025px) {
  .page-faq .bl_faq .el_accordion_inner .el_a_symbol {
    font-size: 20px;
  }
}
.page-faq .bl_faq .el_accordion_inner .el_accordion_ansContent > * {
  margin-block: 0 20px;
  line-height: 1.75;
}
.page-faq .bl_faq .el_accordion_inner a {
  --sub-color: var(--main-color);
}
.page-faq .bl_pageFootButtons {
  margin-top: 80px;
}

.page-plan section.bl_plan_set {
  margin-bottom: 30px;
}
.page-plan .bl_plan_price {
  margin-top: 40px;
  background-color: #e8f5f4;
  border-radius: 8px;
  margin-bottom: 30px;
  max-width: 796px;
  margin-inline: auto;
  padding-block: 15px 25px;
  padding-inline: 20px;
}
@media screen and (min-width: 1025px) {
  .page-plan .bl_plan_price {
    padding-block: 20px 34px;
    padding-inline: 50px;
  }
}
.page-plan .el_price {
  text-align: center;
  display: flex;
  align-items: baseline;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 23px;
}
@media screen and (min-width: 1025px) {
  .page-plan .el_price {
    font-size: 28px;
  }
}
.page-plan .el_price .el_price_number {
  font-size: 1.3em;
  line-height: 1.1;
}
@media screen and (min-width: 1025px) {
  .page-plan .el_price .el_price_number {
    font-size: 1.5em;
  }
}
.page-plan .el_price_summary {
  background-color: #fff;
  border-radius: 8px;
  padding-block: 15px 20px;
  padding-inline: clamp(20px, 8.372px + 3.101vw, 40px);
  margin-top: 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .page-plan .el_price_summary {
    padding-inline: 30px;
  }
}
.page-plan .el_price_summary p {
  font-weight: var(--fw-bold);
  font-size: 1.1em;
}
.page-plan .el_price_summary ul {
  display: grid;
  margin-top: 2px;
  gap: 0;
  -moz-column-gap: clamp(20px, 8.372px + 3.101vw, 40px);
       column-gap: clamp(20px, 8.372px + 3.101vw, 40px);
}
@media screen and (min-width: 768px) {
  .page-plan .el_price_summary ul {
    grid-template-columns: auto auto;
  }
}
.page-plan .el_plan_guide {
  font-size: 1.1em;
  font-weight: var(--fw-bold);
}
.page-plan h2 + figure.wp-block-flexible-table-block-table {
  margin-top: 20px !important;
}
.page-plan .wp-block-group + .wp-block-group {
  margin-top: 60px;
}
.page-plan figure.wp-block-flexible-table-block-table th {
  color: var(--text-color);
}
.page-plan figure.wp-block-flexible-table-block-table th:first-child {
  width: 35%;
}
.page-plan figure.wp-block-flexible-table-block-table tbody th {
  background-color: #fff;
}
.page-plan .bl_pageFootButtons {
  margin-top: 40px !important;
}
@media screen and (min-width: 1025px) {
  .page-plan .bl_pageFootButtons {
    margin-top: 80px !important;
  }
}

section.bl_flow_1st .bl_lpContent {
  margin-top: 0;
}

.bl_flowList {
  background-color: #e8f5f4;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-inline: 20px;
  border-radius: 8px;
  padding-block: 20px;
  margin-inline: auto;
  max-width: 1100px;
}
@media screen and (min-width: 1025px) {
  .bl_flowList {
    padding-block: 60px;
  }
}
.bl_flowList li.bl_flowList_item {
  background-color: #fff;
  border-radius: 8px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  max-width: 800px;
  margin-inline: auto;
  flex-direction: column;
  padding: 15px 20px 30px;
}
@media screen and (min-width: 1025px) {
  .bl_flowList li.bl_flowList_item {
    padding: 30px 20px;
    flex-direction: row;
  }
}
.bl_flowList li.bl_flowList_item::after {
  content: "";
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid solid none;
  border-color: var(--main-color) transparent transparent;
  border-width: 20px 40px 0;
}
.bl_flowList li.bl_flowList_item + li {
  margin-top: 50px;
}
.bl_flowList li.bl_flowList_item:last-child::after {
  content: none;
}
.bl_flowList li.bl_flowList_item .el_flowList_index {
  color: var(--main-color);
  font-weight: var(--fw-bold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  align-self: stretch;
  width: auto;
}
@media screen and (min-width: 1025px) {
  .bl_flowList li.bl_flowList_item .el_flowList_index {
    padding-bottom: 16px;
    width: 100px;
  }
}
.bl_flowList li.bl_flowList_item .el_flowList_index span {
  display: flex;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 100%;
  width: 2em;
  height: 2em;
  font-size: 24px;
  align-items: center;
  justify-content: center;
}
.bl_flowList li.bl_flowList_item h3 {
  font-family: YakuHanJP_Narrow, "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  --page-h3-fsz: 24px;
  margin-bottom: 5px;
}
@media screen and (max-width: 1024px) {
  .bl_flowList li.bl_flowList_item h3 {
    margin-bottom: 14px;
    text-align: center;
  }
}
.bl_flowList li.bl_flowList_item .bl_flowButtons {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 10px;
}
@media screen and (min-width: 1025px) {
  .bl_flowList li.bl_flowList_item .bl_flowButtons {
    margin-top: 10px;
  }
}
.bl_flowList li.bl_flowList_item a.el_linkButton {
  color: #fff;
  border: none;
  background: linear-gradient(150deg, rgb(224, 199, 144) 0%, rgb(0, 155, 139) 25.89%);
}
.bl_flowList li.bl_flowList_item a.el_linkButton:after {
  content: none;
}
.bl_flowList li.bl_flowList_item ul {
  margin-top: 10px;
  padding-left: 2em;
}
.bl_flowList li.bl_flowList_item ul li {
  list-style: disc;
}
.bl_flowList li.bl_flowList_item ul li + li {
  margin-top: 10px;
}

section.bl_flow_notice ul {
  max-width: 600px;
  margin-inline: auto;
  background-color: #fff;
  box-shadow: 0px 0px 3px #9fcc97;
  padding: 30px 20px;
}
@media screen and (min-width: 1025px) {
  section.bl_flow_notice ul {
    padding: 40px 40px;
  }
}
section.bl_flow_notice ul li {
  display: flex;
  gap: 15px;
}
section.bl_flow_notice ul li::before {
  content: "";
  background-image: url(../images/page/icon-check.svg);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
section.bl_flow_notice ul li + li {
  margin-top: 15px;
}
section.bl_flow_notice + .bl_pageFootButtons {
  margin-top: 80px;
}

.page-flow section + section {
  --article-mt: 80px;
}

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

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

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

.bl_pagination {
  margin-top: 60px;
}

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

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

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

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

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

.single .bl_article_content {
  --content-width: 1200px;
  padding-top: 30px;
  line-height: 2.1875;
  margin-inline: auto;
}
@media screen and (min-width:520px) {
  .single .bl_article_content {
    padding-inline: 5%;
  }
}
@media screen and (min-width: 1025px) {
  .single .bl_article_content {
    padding-block: 50px;
  }
}
@media screen and (min-width: 1500px) {
  .single .bl_article_content {
    padding-inline: 0;
  }
}
.single .bl_article_content h1 {
  font-family: YakuHanJP_Narrow, "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 1.5rem;
}
.single .bl_article_content .bl_article_meta {
  display: flex;
  /* align-items: center; */
  gap: 20px;
}
.single .bl_article_content span.el_post_category {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.single .bl_article_content span.el_post_category > span {
  display: grid;
  place-content: center;
  white-space: nowrap;
  background-color: var(--main-color);
  color: #fff;
  padding-inline: 20px;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  height: 25px;
  border-radius: 4px;
}
@media screen and (min-width: 1025px) {
  .single .bl_article_content span.el_post_category > span {
    font-size: 16px;
    height: 30px;
  }
}
.single .bl_article_content > * + * {
  margin-top: 25px;
}
.single .bl_article_content > * + h2,
.single .bl_article_content > *:not(h2):not(h4) + h3,
.single .bl_article_content > *:not(h2):not(h3) + h4 {
  margin-top: 40px;
}
@media screen and (min-width: 1025px) {
  .single .bl_article_content > * + h2,
  .single .bl_article_content > *:not(h2):not(h4) + h3,
  .single .bl_article_content > *:not(h2):not(h3) + h4 {
    margin-top: 50px;
  }
}
.single .bl_article_content h2.wp-block-heading {
  font-family: YakuHanJP_Narrow, "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  position: relative;
  font-size: 1.375rem;
  letter-spacing: 0.04em;
  line-height: 1.75;
  border-bottom: 1px solid #acacac;
  padding-bottom: 0.2em;
  position: relative;
}
.single .bl_article_content h2.wp-block-heading::after {
  content: "";
  width: 30%;
  height: 1px;
  background-color: var(--main-color);
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.single .bl_article_content h3.wp-block-heading {
  font-family: YakuHanJP_Narrow, "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  position: relative;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  line-height: 1.75;
  padding-block: 0;
  position: relative;
  display: flex;
  align-items: center;
}
.single .bl_article_content h3.wp-block-heading::before {
  content: "";
  width: 5px;
  height: 42px;
  background-color: var(--main-color);
  border-radius: 5px;
  display: block;
  margin-right: 0.8em;
}
.single .bl_article_content h4.wp-block-heading {
  font-size: 1.125rem;
  font-weight: 700;
}
.single .bl_article_content a {
  color: var(--main-color);
  transition: opacity var(--transition-time);
}
@media (hover: hover) {
  .single .bl_article_content a:hover {
    opacity: 0.7;
  }
}
.single .bl_article_content ul {
  padding-left: 20px;
}
.single .bl_article_content ul li {
  list-style: disc;
}
.single .bl_article_content ol {
  padding-left: 20px;
}
.single .bl_article_content ol li {
  list-style: decimal;
}
.single .bl_article_content .wp-block-table table {
  width: 100%;
  margin-inline: auto;
  max-width: none;
}
.single .bl_article_content .wp-block-table table th,
.single .bl_article_content .wp-block-table table td {
  padding-block: 10px;
  padding-inline: 10px;
  border-color: #d8d8d8;
  letter-spacing: 0.06em;
  font-size: 15px;
  line-height: 1.4;
}
@media screen and (min-width: 1025px) {
  .single .bl_article_content .wp-block-table table th,
  .single .bl_article_content .wp-block-table table td {
    padding-block: 20px;
    padding-inline: 24px;
  }
}
.single .bl_article_content .wp-block-table table td:first-child,
.single .bl_article_content .wp-block-table table th {
  position: relative;
  background-color: #eeeff0;
  width: 30%;
}
@media screen and (min-width: 1025px) {
  .single .bl_article_content .wp-block-table table td:first-child,
  .single .bl_article_content .wp-block-table table th {
    width: 250px;
  }
}
.single .bl_article_content .wp-block-table table td {
  font-weight: var(--fw-medium);
}
.single .bl_article_content .wp-block-table.is-style-simple table td:first-child,
.single .bl_article_content .wp-block-table.is-style-simple table th {
  background-color: #fff;
  font-weight: var(--fw-bold);
}
.single .bl_article_content .wp-block-table.is-style-simple table td,
.single .bl_article_content .wp-block-table.is-style-simple table th {
  border-left: none;
  border-right: none;
}
.single .bl_article_content .wp-block-table.is-style-simple table tr:first-child th,
.single .bl_article_content .wp-block-table.is-style-simple table tr:first-child td {
  border-top: none;
}
.single .bl_article_content .wp-block-table.is-style-simple table tr:last-child th,
.single .bl_article_content .wp-block-table.is-style-simple table tr:last-child td {
  border-bottom: none;
}
.single .bl_article_content .wp-block-group {
  padding-block: 30px;
  padding-inline: 25px;
}
@media screen and (min-width: 1025px) {
  .single .bl_article_content .wp-block-group {
    padding-block: 50px;
    padding-inline: 40px;
  }
}
.single .bl_article_content .wp-block-group .wp-block-group__inner-container > * + * {
  margin-top: 24px;
}
.single .bl_article_content a.wp-block-button__link {
  color: #fff;
  background-color: var(--main-color);
}

.bl_postNav {
  max-width: var(--content-width);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  margin-inline: auto;
  padding-block: 30px 70px;
  flex-wrap: wrap;
  padding-inline: var(--site-inline-padding);
  font-weight: var(--fw-regular);
  font-size: 14px;
}
@media screen and (min-width: 1025px) {
  .bl_postNav {
    padding-block: 30px 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;
  padding: 5px 20px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 99px;
}
.bl_postNav_previous a,
.bl_postNav_next a {
  background-color: var(--main-color);
  transition: opacity var(--transition);
}
@media (hover: hover) {
  .bl_postNav_previous a:hover,
  .bl_postNav_next a:hover {
    opacity: 0.7;
  }
}
.bl_postNav_previous div,
.bl_postNav_next div {
  background-color: #ccc;
}
.bl_postNav_previous div .el_postNav_icon,
.bl_postNav_next div .el_postNav_icon {
  opacity: 0.5;
}

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

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

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

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

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

.ly_archiveIndex_articles {
  display: grid;
}
.ly_archiveIndex_articles.is_listStyle {
  display: block;
}
.ly_archiveIndex_articles.is_listStyle .bl_archive_art {
  --transition-time: 0.6s;
  border-bottom: 1px solid var(--border-color);
  transition: background-color var(--transition-time) ease;
}
.ly_archiveIndex_articles.is_listStyle .bl_archive_art:first-child {
  border-top: 1px solid var(--border-color);
}
@media (hover: hover) {
  .ly_archiveIndex_articles.is_listStyle .bl_archive_art:hover {
    background-color: #f1f1f1;
  }
  .ly_archiveIndex_articles.is_listStyle .bl_archive_art:hover .el_interviewArchive_cat span {
    background-color: var(--main-color);
    color: #fff;
  }
  .ly_archiveIndex_articles.is_listStyle .bl_archive_art:hover .bl_archive_content {
    opacity: 0.7;
  }
}
.ly_archiveIndex_articles.is_listStyle .bl_archive_art .el_archive_content {
  display: flex;
  padding-block: 20px;
  gap: 5px;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (min-width: 1025px) {
  .ly_archiveIndex_articles.is_listStyle .bl_archive_art .el_archive_content {
    gap: 20px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }
}
.ly_archiveIndex_articles.is_listStyle .bl_archive_art .el_archive_meta {
  display: flex;
  min-width: 136px;
  align-self: flex-start;
  flex-shrink: 0;
  gap: 5px;
}
@media screen and (min-width: 1025px) {
  .ly_archiveIndex_articles.is_listStyle .bl_archive_art .el_archive_meta {
    display: grid;
    grid-template-columns: 110px 1fr;
    width: 290px;
    align-items: flex-start;
  }
}
.ly_archiveIndex_articles.is_listStyle .bl_archive_art .el_archive_meta .el_entry_date {
  font-size: 14px;
  font-weight: var(--fw-regular);
  letter-spacing: 0.1em;
  line-height: 1;
}
.ly_archiveIndex_articles.is_listStyle .bl_archive_art .el_archive_meta .el_post_category {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 0;
}
.ly_archiveIndex_articles.is_listStyle .bl_archive_art .el_archive_meta .el_post_category span {
  display: flex;
  background-color: var(--main-color);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-regular);
  letter-spacing: 0.1em;
  white-space: nowrap;
  min-width: 95px;
  padding: 4px 8px;
  min-height: auto;
  font-size: 12px;
  height: 24px;
  border-radius: 4px;
}
@media screen and (min-width: 1025px) {
  .ly_archiveIndex_articles.is_listStyle .bl_archive_art .el_archive_meta .el_post_category span {
    font-size: 14px;
    height: 28px;
  }
}
.ly_archiveIndex_articles.is_listStyle .bl_archive_art h2 {
  font-size: 16px;
  margin-top: 0;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: var(--fw-medium);
}
.ly_archiveIndex_articles.is_listStyle .bl_archive_content {
  transition: opacity var(--transition-time) ease;
}
.ly_archiveIndex_articles.is_listStyle .bl_archive_content .el_archive_title {
  margin-top: 4px;
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: var(--main-color);
}
@media screen and (min-width: 1025px) {
  .ly_archiveIndex_articles.is_listStyle .bl_archive_content .el_archive_title {
    font-size: 26px;
  }
}
.ly_archiveIndex_articles.is_listStyle .bl_archive_content .bl_archive_date {
  font-size: 16px;
  font-weight: var(--fw-medium);
  margin-top: 10px;
}
.ly_archiveIndex_articles.is_listStyle.is_post_type_column .el_archive_meta {
  display: flex;
  flex-direction: column;
  min-width: 136px;
  align-self: flex-start;
  flex-shrink: 0;
  gap: 5px;
}
@media screen and (min-width: 1025px) {
  .ly_archiveIndex_articles.is_listStyle.is_post_type_column .el_archive_meta {
    display: grid;
    grid-template-columns: 1fr;
    width: 136px;
    align-items: flex-start;
  }
}
.ly_archiveIndex_articles.is_cardStyle {
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 1025px) {
  .ly_archiveIndex_articles.is_cardStyle {
    --column-num: 3;
    grid-template-columns: repeat(var(--column-num), 1fr);
    -moz-column-gap: 60px;
         column-gap: 60px;
    row-gap: 50px;
  }
  .ly_archiveIndex_articles.is_cardStyle.is_4col {
    --column-num: 4;
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 30px;
  }
}
.ly_archiveIndex_articles.is_cardStyle .bl_archive_art {
  --transition-time: 0.6s;
}
.ly_archiveIndex_articles.is_cardStyle .bl_archive_art figure {
  overflow: hidden;
}
.ly_archiveIndex_articles.is_cardStyle .bl_archive_art img {
  height: auto;
  transition: transform var(--transition-time) ease;
  width: 100%;
  aspect-ratio: 400/260;
  -o-object-fit: cover;
     object-fit: cover;
  filter: none;
  max-width: none;
}
@media (hover: hover) {
  .ly_archiveIndex_articles.is_cardStyle .bl_archive_art:hover img {
    transform: scale(1.05);
  }
  .ly_archiveIndex_articles.is_cardStyle .bl_archive_art:hover .el_interviewArchive_cat span {
    background-color: var(--main-color);
    color: #fff;
  }
  .ly_archiveIndex_articles.is_cardStyle .bl_archive_art:hover .bl_archive_content {
    opacity: 0.7;
  }
}
.ly_archiveIndex_articles.is_cardStyle .bl_archive_art .el_archive_content {
  margin-top: 10px;
}
.ly_archiveIndex_articles.is_cardStyle .bl_archive_art .el_archive_meta {
  display: flex;
  gap: 10px;
}
.ly_archiveIndex_articles.is_cardStyle .bl_archive_art .el_archive_meta .el_entry_date {
  font-size: 14px;
  font-weight: var(--fw-regular);
  letter-spacing: 0.1em;
  line-height: 1;
}
.ly_archiveIndex_articles.is_cardStyle .bl_archive_art .el_archive_meta .el_post_category {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.ly_archiveIndex_articles.is_cardStyle .bl_archive_art .el_archive_meta .el_post_category span {
  display: flex;
  background-color: var(--main-color);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: var(--fw-regular);
  letter-spacing: 0.1em;
  white-space: nowrap;
  height: 28px;
  min-width: 95px;
  padding: 4px 4px;
}
.ly_archiveIndex_articles.is_cardStyle .bl_archive_content {
  margin-top: 10px;
  transition: opacity var(--transition-time) ease;
}
.ly_archiveIndex_articles.is_cardStyle .bl_archive_content .el_archive_title {
  margin-top: 4px;
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: var(--main-color);
}
@media screen and (min-width: 1025px) {
  .ly_archiveIndex_articles.is_cardStyle .bl_archive_content .el_archive_title {
    font-size: 26px;
  }
}
.ly_archiveIndex_articles.is_cardStyle .bl_archive_content .bl_archive_date {
  font-size: 16px;
  font-weight: var(--fw-medium);
  margin-top: 10px;
}
.ly_archiveIndex_articles .el_listItem_content {
  margin-top: 5px;
}
.ly_archiveIndex_articles .el_listItem_content .posted-on {
  opacity: 0.7;
  font-weight: var(--fw-regular);
}
.ly_archiveIndex_articles .el_listItem_content h3 {
  font-size: 16px;
  font-weight: var(--fw-regular);
  margin-top: 4px;
}

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

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

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

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

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

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

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

@keyframes fadeSlantAnime {
  from {
    opacity: 0;
    transform: translateX(-300px) translateY(173px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}
/* 文字が滑らかに表示される */
.smooth {
  clip-path: inset(0 100% 0 0);
  display: inline-block;
  transition: 2.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}

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

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

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

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

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

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

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

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