@charset "UTF-8";
/* ======================================
    Reset CSS
====================================== */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
main,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

article,
aside,
details,
figcaption,
figure,
main,
footer,
header,
menu,
nav,
section,
picture {
  display: block;
}

nav ul,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/* form reset
------------------------------- */
input,
select {
  vertical-align: middle;
}

input[type=button],
input[type=text],
input[type=submit],
input[type=image],
textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

/* IE text マーク削除 */
input::-ms-clear {
  visibility: hidden;
}

/* IE password マーク削除 */
input::-ms-reveal {
  visibility: hidden;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -moz-appearance: none;
       appearance: none;
  color: inherit;
  -webkit-appearance: none;
}

span {
  font-weight: inherit;
}

[data-theme=blue],
.theme-blue-other {
  --color-primary: #1985d3;
  --color-secondary: #d1e7f6;
  --color-light: #dcedf8;
  --color-flow: #e8f3fb;
  --color-sidebkg: #e8f3fb;
  --color-topFv: #1985d3;
  --icon-h3: url(../images/common/icon_heading3-blue.svg) no-repeat center center/contain;
}

[data-theme=pink],
.theme-pink-other {
  --color-primary: #e95e9f;
  --color-secondary: #f7c0da;
  --color-light: #fbe4ef;
  --color-flow: #fdedf4;
  --color-sidebkg: #fdedf4;
  --color-topFv: #e95e9f;
  --icon-h3: url(../images/common/icon_heading3-pink.svg) no-repeat center center/contain;
}

[data-theme=orange],
.theme-orange-other {
  --color-primary: #e67a00;
  --color-secondary: #fae4cc;
  --color-light: #fbebd9;
  --color-flow: #fcf2e5;
  --color-sidebkg: #fcf2e5;
  --color-topFv: #e88719;
  --icon-h3: url(../images/common/icon_heading3-orange.svg) no-repeat center center/contain;
}

[data-theme=green],
.theme-green-other {
  --color-primary: #57a600;
  --color-secondary: #ddedcc;
  --color-light: #e6f2d9;
  --color-flow: #eef6e5;
  --color-sidebkg: #eef6e5;
  --color-topFv: #68af19;
  --icon-h3: url(../images/common/icon_heading3-green.svg) no-repeat center center/contain;
}

/* ======================================
    Base
====================================== */
html {
  overflow-x: hidden;
  margin: 0;
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  margin: 0 auto;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.025em;
  background: #fff;
  word-wrap: break-word;
  font-family: "Noto Sans JP", sans-serif;
  color: #212121;
  -webkit-font-smoothing: antialiased;
  -webkit-animation: fadeInAnime 2s ease 0s 1 normal;
          animation: fadeInAnime 2s ease 0s 1 normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1024px) {
  body {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.75;
    letter-spacing: 0.025em;
  }
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

p {
  line-height: 1.75;
}
p a:link {
  text-decoration: underline;
}
@media screen and (min-width: 1024px) {
  p {
    line-height: 1.75;
  }
}

img[src$=".svg"] {
  width: 100%;
  height: auto;
}

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

a img {
  border: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

small {
  text-align: center;
  font-size: 1rem;
  font-style: normal;
}

address {
  font-style: normal;
}

strong {
  font-weight: 700;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -moz-appearance: none;
       appearance: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  -webkit-appearance: none;
}

sub {
  font-size: 60%;
  vertical-align: sub;
}

sup {
  font-size: 60%;
  vertical-align: super;
}

a {
  text-decoration: none;
}
a:link {
  color: #0087c9;
}
a:visited {
  color: #808080;
}
a:hover {
  color: #0087c9;
  text-decoration: none;
  opacity: 0.7;
}
@media screen and (min-width: 1024px) {
  a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  a:hover img, a:focus img {
    opacity: 0.7;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* =================================================
    .bl_header
=================================================== */
.bl_header {
  position: fixed;
  top: var(--alert-h);
  left: 0;
  width: 100%;
  height: 60px;
  background: #fff;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  z-index: 11000;
}
.bl_header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: inherit;
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
}
@media screen and (min-width: 1024px) {
  .bl_header {
    height: 90px;
  }
}
.bl_header_inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 89.3333333333%;
  height: 100%;
  margin: 0 auto;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .bl_header_inner {
    width: 92.1875%;
  }
}
@media screen and (min-width: 1024px) {
  .bl_header_inner {
    width: 94.7368421053%;
  }
}
.bl_header_logo {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 70.1492537313%;
  max-width: 235px;
  height: auto;
  z-index: 11000;
}
@media screen and (min-width: 1024px) {
  .bl_header_logo {
    width: 30%;
    max-width: 420px;
  }
}
.bl_header_logo a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
}

.is_btnHamburger__on .bl_header,
.bl_header.is_scroll {
  background: #fff;
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
}

/* =================================================
    検索ボックス
=================================================== */
button {
  font: inherit;
  cursor: pointer;
  display: inline-block;
}

.search-toggle {
  position: fixed;
  top: 10px;
  right: 65px;
  z-index: 3;
  align-self: center;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: url(../images/common/icon_search.svg) no-repeat center center/contain;
}
.search-toggle[aria-expanded=true] {
  background: url(../images/common/icon_search__on.svg) no-repeat center center/contain;
}
@media screen and (min-width: 1024px) {
  .search-toggle {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 30px;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }
  .search-toggle:hover {
    opacity: 0.4;
  }
}
@media screen and (min-width: 1280px) {
  .search-toggle {
    width: 45px;
    height: 45px;
    right: 3%;
  }
}

.search-submit svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
}

.search-panel {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 24px 18px 18px;
  background: #fff;
  -webkit-box-shadow: 0 5px 9px rgba(0, 0, 0, 0.3);
          box-shadow: 0 5px 9px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(-120%);
          transform: translateY(-120%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 180ms ease, visibility 0ms linear 260ms, -webkit-transform 260ms ease;
  transition: opacity 180ms ease, visibility 0ms linear 260ms, -webkit-transform 260ms ease;
  transition: transform 260ms ease, opacity 180ms ease, visibility 0ms linear 260ms;
  transition: transform 260ms ease, opacity 180ms ease, visibility 0ms linear 260ms, -webkit-transform 260ms ease;
}
@media screen and (min-width: 1024px) {
  .search-panel {
    top: 90px;
    padding: 80px 30px 30px;
  }
}

.search-panel.is-open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 180ms ease, -webkit-transform 260ms ease;
  transition: opacity 180ms ease, -webkit-transform 260ms ease;
  transition: transform 260ms ease, opacity 180ms ease;
  transition: transform 260ms ease, opacity 180ms ease, -webkit-transform 260ms ease;
}

.search-form {
  max-width: 560px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .search-form {
    max-width: 1084px;
  }
}

.search-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
}

.search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 90px;
  gap: 12px;
}
@media screen and (min-width: 1024px) {
  .search-row {
    grid-template-columns: minmax(0, 1fr) 146px;
    gap: 6px;
  }
}

.search-row input {
  width: 100%;
  min-height: 56px;
  padding: 8px 12px;
  border: 2px solid #909090;
  border-radius: 6px;
  background-color: #f4f4f4;
  outline: none;
}

.search-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  min-height: 56px;
  padding: 0 13px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background-color: #1985d3;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .search-submit {
    width: 146px;
    gap: 18px;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }
  .search-submit:hover {
    opacity: 0.4;
  }
}

.search-submit svg {
  width: 20px;
  height: 20px;
}

.close-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  width: min(100%, 336px);
  min-height: 50px;
  margin: 25px auto 0;
  border: 0;
  border-radius: 7px;
  color: #111;
  background: #f4f4f4;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .close-search {
    width: 100%;
    max-width: 1800px;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }
  .close-search:hover {
    opacity: 0.4;
  }
}

.close-search span:first-child {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  line-height: 1;
}

/* =================================================
    main
=================================================== */
main:not(.ly_page_top) {
  margin-top: 60px;
}
@media screen and (min-width: 1024px) {
  main:not(.ly_page_top) {
    margin-top: 90px;
  }
}

main.ly_page_top {
  margin-top: calc(60px + var(--alert-h));
}
@media screen and (min-width: 1024px) {
  main.ly_page_top {
    margin-top: calc(90px + var(--alert-h));
  }
}

/* =================================================
    layout section
=================================================== */
.ly_sec {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.ly_sec_inner {
  width: 89.3333333333%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .ly_sec_inner {
    width: 92.1875%;
  }
}
@media screen and (min-width: 1024px) {
  .ly_sec_inner {
    width: 96.875%;
    max-width: 1310px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* =================================================
    footer
=================================================== */
.page_top .bl_footer {
  background: #fff;
}

.bl_footer {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding-top: 25px;
  padding-bottom: 20px;
  background: #f0f0f0;
  color: #212121;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .bl_footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.bl_footer_inner {
  width: 89.3333333333%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .bl_footer_inner {
    width: 94.7368421053%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.bl_footer .bl_address {
  margin: 0 auto;
  line-height: 1.4666666667;
}
@media screen and (min-width: 768px) {
  .bl_footer .bl_address {
    margin: 0;
  }
}
@media screen and (min-width: 1024px) {
  .bl_footer .bl_address {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
  }
}
.bl_footer .bl_address .bl_footer_logo {
  display: block;
  font-size: 20px;
  font-size: 2rem;
  font-size: clamp(16px, 5.3333333333vw, 20px);
  letter-spacing: 0.025em;
  font-weight: 700;
  text-align: left;
  color: #212121;
}
@media screen and (min-width: 1024px) {
  .bl_footer .bl_address .bl_footer_logo {
    font-size: 21px;
    font-size: 2.1rem;
  }
  .bl_footer .bl_address .bl_footer_logo br {
    display: none;
  }
}
.bl_footer .bl_address address {
  margin-top: 14px;
  text-align: left;
}
@media screen and (min-width: 1280px) {
  .bl_footer .bl_address .el_telList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0px 30px;
  }
}
.bl_footer .bl_address .el_telList li {
  text-align: left;
}
.bl_footer .bl_address .el_telList li a {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.625;
  letter-spacing: 0.025em;
  color: #212121;
}
@media screen and (min-width: 1280px) {
  .bl_footer .bl_address .el_fax-mail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 46px;
  }
}
.bl_footer .bl_address .el_fax-mail li {
  text-align: left;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.625;
  letter-spacing: 0.025em;
  color: #212121;
}
.bl_footer .bl_address .el_fax-mail li a {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.625;
  letter-spacing: 0.025em;
  color: #212121;
}
.bl_footer .bl_address .el_sitemap {
  display: none;
}
@media screen and (min-width: 1024px) {
  .bl_footer .bl_address .el_sitemap {
    display: block;
  }
  .bl_footer .bl_address .el_sitemap a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 5px;
    margin-top: 35px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #212121;
    text-align: left;
  }
  .bl_footer .bl_address .el_sitemap a::before {
    content: "";
    display: block;
    width: 6px;
    height: 10px;
    background: url(../images/common/arrow_sitemap.svg) no-repeat center center/contain;
  }
}
.bl_footer_copy {
  margin-top: 26px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .bl_footer_copy {
    margin-top: 0;
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.bl_footer_copy .el_logoList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 15px 28px;
}
@media screen and (min-width: 1024px) {
  .bl_footer_copy .el_logoList {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 45px;
  }
}
.bl_footer_copy .el_logoList li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 107px;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}
@media screen and (min-width: 1024px) {
  .bl_footer_copy .el_logoList li {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}
.bl_footer_copy .el_logoList li.el_logoList_okadai img {
  max-width: 57px;
}
@media screen and (min-width: 1024px) {
  .bl_footer_copy .el_logoList li.el_logoList_okadai img {
    width: 100%;
  }
}
.bl_footer_copy .el_logoList li.el_logoList_ouh img {
  max-width: 67px;
}
@media screen and (min-width: 1024px) {
  .bl_footer_copy .el_logoList li.el_logoList_ouh img {
    width: 100%;
  }
}
.bl_footer_copy .bl_footer_copyright {
  margin-top: 33px;
  display: block;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0.022em;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .bl_footer_copy .bl_footer_copyright {
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-top: 0;
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0em;
    text-align: right;
  }
}

/* =================================================
    layout Flex
=================================================== */
.ly_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ly_flex_center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ly_flex_btw {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ly_flex_ard {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.ly_flex_start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.ly_flex_row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.ly_flex_nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.ly_flex .ly_flexBox50 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

@media screen and (min-width: 1024px) {
  .ly_flex_pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .ly_flex_pc_center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .ly_flex_pc_btw {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .ly_flex_pc_ard {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .ly_flex_pc_start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .ly_flex_pc_row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .ly_flex_pc_nowrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.ly_contentsWrap {
  width: 100%;
  padding-top: clamp(34px, 18.9768875193px + 4.0061633282vw, 60px);
  overflow-x: hidden;
}
@media screen and (min-width: 1024px) {
  .ly_contentsWrap {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.ly_contentsWrap .ly_contents {
  width: 89.3333333333%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .ly_contentsWrap .ly_contents {
    width: 65.8203125%;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 1366px) {
  .ly_contentsWrap .ly_contents {
    max-width: 1310px;
  }
}
@media screen and (min-width: 1024px) {
  .ly_contentsWrap .ly_main {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 73.5294117647%;
            flex: 0 1 73.5294117647%;
  }
}
.ly_contentsWrap .ly_side {
  display: none;
}
@media screen and (min-width: 1024px) {
  .ly_contentsWrap .ly_side {
    position: sticky;
    top: 100px;
    z-index: 1;
    display: block;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 300px;
            flex: 0 0 300px;
    -ms-flex-item-align: start;
        align-self: flex-start;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding-bottom: 100px;
    margin-right: 50px;
  }
}

.page_archive .ly_contentsWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 1024px) {
  .page_archive .ly_contentsWrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.page_archive .ly_contentsWrap .ly_side {
  display: block;
  padding-top: 6px;
}
@media screen and (min-width: 1024px) {
  .page_archive .ly_contentsWrap .ly_side {
    padding-top: 0;
  }
}
.page_archive .ly_contentsWrap .ly_side .bl_aside {
  width: 89.3333333333%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .page_archive .ly_contentsWrap .ly_side .bl_aside {
    width: 96.875%;
  }
}

/* ======================================
    .bl_headerNav
====================================== */
.is_btnHamburger__on .bl_headerNav {
  right: 0; /* 右から出す場合 */
  opacity: 1;
}

.bl_headerNav {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 400px;
  position: fixed;
  top: 60px;
  right: -100%;
  height: auto;
  max-height: calc(100dvh - 60px);
  background: #fff;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  overflow-y: auto;
  z-index: 11100;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.bl_headerNav::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
@media screen and (min-width: 1024px) {
  .bl_headerNav {
    width: calc(65% - 20px);
    max-width: none;
    position: absolute;
    top: 50%;
    right: 60px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: #fff;
    max-height: none;
    opacity: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    overflow-y: visible;
  }
}
@media screen and (min-width: 1280px) {
  .bl_headerNav {
    right: 80px;
  }
}
.bl_headerNav_global {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1024px) {
  .bl_headerNav_global {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    align-items: center;
    gap: 7px;
    background: transparent;
  }
}
.bl_headerNav_global > li {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: auto;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .bl_headerNav_global > li {
    display: inline-block;
    width: 105px;
    margin: 0;
    background: transparent;
    border-bottom: none;
    border-radius: 5px;
  }
}
.bl_headerNav_global > li.el_pink {
  background: #e95e9f;
}
.bl_headerNav_global > li.el_pink .bl_headerNav_toggle > ul > li.has_chiled > .el_iconToggle::before,
.bl_headerNav_global > li.el_pink .bl_headerNav_toggle > ul > li.has_chiled > .el_iconToggle::after {
  background: #e95e9f;
}
.bl_headerNav_global > li.el_pink .bl_headerNav_toggle > ul > li > a {
  color: #e95e9f;
}
.bl_headerNav_global > li.el_orange {
  background: #e67a00;
}
.bl_headerNav_global > li.el_orange .bl_headerNav_toggle > ul > li.has_chiled > .el_iconToggle::before,
.bl_headerNav_global > li.el_orange .bl_headerNav_toggle > ul > li.has_chiled > .el_iconToggle::after {
  background: #e67a00;
}
.bl_headerNav_global > li.el_orange .bl_headerNav_toggle > ul > li > a {
  color: #e67a00;
}
.bl_headerNav_global > li.el_green {
  background: #57a600;
}
.bl_headerNav_global > li.el_green .bl_headerNav_toggle > ul > li.has_chiled > .el_iconToggle::before,
.bl_headerNav_global > li.el_green .bl_headerNav_toggle > ul > li.has_chiled > .el_iconToggle::after {
  background: #57a600;
}
.bl_headerNav_global > li.el_green .bl_headerNav_toggle > ul > li > a {
  color: #57a600;
}
@media screen and (min-width: 1024px) {
  .bl_headerNav_global > li.el_pink, .bl_headerNav_global > li.el_orange, .bl_headerNav_global > li.el_green {
    width: 175px;
  }
}
.bl_headerNav_global > li.el_pink > a, .bl_headerNav_global > li.el_orange > a, .bl_headerNav_global > li.el_green > a {
  border: none;
  color: #fff;
  font-weight: 700;
}
.bl_headerNav_global > li > a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: auto;
  padding: 21px 30px;
  padding-right: 70px;
  margin: 0 auto;
  border-bottom: 1px solid #c7c7c7;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5555555556;
  letter-spacing: 0.1em;
  text-align: left;
  color: #212121;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 1024px) {
  .bl_headerNav_global > li > a {
    width: auto;
    height: 100%;
    background: transparent;
    padding: 0;
    padding: 10px 5px;
    margin: 0;
    border: 1px solid #009fe3;
    border-radius: 5px;
    overflow: hidden;
    font-size: 17px;
    font-size: 1.7rem;
    font-size: clamp(13.6px, 0.8854166667vw, 17px);
    letter-spacing: 0.05em;
    color: #009fe3;
    text-align: center;
  }
}
.bl_headerNav_global > li > .el_iconToggle {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 60px;
  height: 60px;
}
.bl_headerNav_global > li > .el_iconToggle::before, .bl_headerNav_global > li > .el_iconToggle::after {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 15px;
  height: 2px;
  background-color: #fff;
  border-radius: 10px;
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.bl_headerNav_global > li > .el_iconToggle::before {
  width: 2px;
  height: 15px;
}
@media screen and (min-width: 1024px) {
  .bl_headerNav_global > li > .el_iconToggle {
    display: none;
  }
}
.bl_headerNav_global > li > .el_iconToggle.is_open::before {
  display: none;
}
.bl_headerNav_toggle {
  display: none;
  overflow-y: visible;
  height: 100%;
}
.bl_headerNav_toggle > ul > li {
  position: relative;
  background: #fff;
}
.bl_headerNav_toggle > ul > li > a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 89.3333333333%;
  height: auto;
  padding: 15px 42px;
  padding-left: 8px;
  margin: 0 auto;
  font-size: 18px;
  font-size: 1.8rem;
  text-align: left;
  color: #212121;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 1024px) {
  .bl_headerNav_toggle > ul > li > a {
    width: 100%;
    padding: 5px 0;
    padding-left: 30px;
    margin: 0;
    border-bottom: none;
    font-size: 16px;
    font-size: 1.6rem;
    background: transparent;
    color: #fff;
    text-indent: -20px;
  }
  .bl_headerNav_toggle > ul > li > a::before {
    content: "-";
    display: inline-block;
    width: 9px;
    height: 12px;
    margin-right: 10px;
  }
  .bl_headerNav_toggle > ul > li > a:hover {
    opacity: 1;
    color: #008bd7;
  }
}
.bl_headerNav_toggle > ul > li.has_chiled > .el_iconToggle {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 60px;
  height: 60px;
}
.bl_headerNav_toggle > ul > li.has_chiled > .el_iconToggle::before, .bl_headerNav_toggle > ul > li.has_chiled > .el_iconToggle::after {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 15px;
  height: 2px;
  background-color: #1985d3;
  border-radius: 10px;
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.bl_headerNav_toggle > ul > li.has_chiled > .el_iconToggle::before {
  width: 2px;
  height: 15px;
}
@media screen and (min-width: 1024px) {
  .bl_headerNav_toggle > ul > li.has_chiled > .el_iconToggle {
    display: none;
  }
}
.bl_headerNav_toggle > ul > li.has_chiled > .el_iconToggle.is_open::before {
  display: none;
}
.bl_headerNav_toggle > ul > li.has_chiled > ul {
  display: none;
  height: 100%;
  padding-top: 0px;
  padding-bottom: 10px;
  padding-left: 50px;
  padding-right: 15px;
  background: #fff;
}
.bl_headerNav_toggle > ul > li.has_chiled > ul > li {
  position: relative;
  background: #fff;
}
.bl_headerNav_toggle > ul > li.has_chiled > ul > li:last-of-type {
  border-bottom: none;
}
.bl_headerNav_toggle > ul > li.has_chiled > ul > li > a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 20px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
  color: #212121;
  font-weight: 400;
  text-align: left;
}
.bl_headerNav_toggle > ul > li.has_chiled > ul > li > a::before {
  content: "-";
  display: block;
  width: 1em;
  position: absolute;
  top: 2px;
  left: 0px;
}

@media screen and (min-width: 1024px) {
  .bl_commonNav_sp {
    display: none;
  }
}
.bl_commonNav_sp ul {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
}
.bl_commonNav_sp ul li {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 21px;
  padding-bottom: 21px;
}
.bl_commonNav_sp ul li a {
  width: 100%;
  height: 100%;
  color: #212121;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.bl_commonNav_sp ul li a::before {
  content: "";
  display: block;
  width: 6px;
  height: 10px;
  background: url(../images/common/arrow_sitemap.svg) no-repeat center center/contain;
}

/* ==============================================
    form Reset
================================================= */
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  vertical-align: middle;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  vertical-align: middle;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  vertical-align: middle;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  vertical-align: middle;
}
input,
select,
textarea,
label,
option,
input::placeholder,
textarea::placeholder {
  font-family: "Noto Sans JP", sans-serif;
  vertical-align: middle;
}

input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=tel],
input[type=url],
textarea {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 0 0 0 transparent;
          box-shadow: 0 0 0 0 transparent;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=url]:focus,
textarea:focus {
  outline-offset: 0;
  outline: 2px solid #3498db;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  background: transparent;
  color: #212121;
}

textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  resize: none;
  outline: none;
}

select::-ms-expand {
  display: none;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset;
          box-shadow: 0 0 0 1000px white inset;
}

#autozip {
  display: none !important;
}

/* ==============================================
   form module contactform7
================================================= */
.bl_post .el_required {
  display: inline-block;
  margin-left: 0.5em;
  padding: 0.1em 0.6em;
  font-size: 12px;
  font-size: 1.2rem;
  background: #d80a30;
  color: #fff;
}
.bl_post .wpcf7-response-output,
.bl_post .el_error_ttl,
.bl_post .wpcf7-not-valid-tip {
  display: block;
  color: #d80a30;
  font-weight: bold;
}
.bl_post input[type=text],
.bl_post input[type=email],
.bl_post input[type=password],
.bl_post input[type=number],
.bl_post input[type=tel],
.bl_post input[type=url],
.bl_post textarea {
  width: 100%;
  background: #fff;
  padding: 0.6em 0.9em;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #212121;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
}
.bl_post input[type=hidden],
.bl_post textarea[type=hidden],
.bl_post select[type=hidden],
.bl_post .form_preview .required {
  display: none;
}
.bl_post input::-webkit-input-placeholder, .bl_post textarea::-webkit-input-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #ccc;
  font-weight: normal;
}
.bl_post input::-moz-placeholder, .bl_post textarea::-moz-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #ccc;
  font-weight: normal;
}
.bl_post input:-ms-input-placeholder, .bl_post textarea:-ms-input-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #ccc;
  font-weight: normal;
}
.bl_post input::-ms-input-placeholder, .bl_post textarea::-ms-input-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #ccc;
  font-weight: normal;
}
.bl_post input::placeholder,
.bl_post textarea::placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #ccc;
  font-weight: normal;
}
.bl_post .el_selectWrap {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
}
.bl_post .el_selectWrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #212121;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
.bl_post .el_selectWrap select {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  padding: 0.5em 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #212121;
  border-radius: 3px;
  background: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 13px 13px;
}
.bl_post .el_selectWrap select:focus {
  outline: 2px solid #3498db;
}
.bl_post .wpcf7-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  display: inline-block;
  margin-top: 0.5em;
  font-size: 90%;
  z-index: -1;
}
.bl_post .wpcf7-checkbox label {
  cursor: pointer;
}
.bl_post .wpcf7-checkbox .wpcf7-list-item-label {
  padding-left: 2em;
  position: relative;
  margin-right: 20px;
}
.bl_post .wpcf7-checkbox .wpcf7-list-item-label::before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  border-radius: 2px;
}
.bl_post .wpcf7-checkbox input[type=checkbox]:checked ~ .wpcf7-list-item-label {
  color: #000;
}
.bl_post .wpcf7-checkbox input[type=checkbox]:checked ~ .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  left: 5px;
  width: 7px;
  height: 14px;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
}
.bl_post .wpcf7-checkbox input[type=checkbox]:focus + span::before {
  outline: 2px solid #3498db; /* Outline color when focused */
}
.bl_post .wpcf7-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.bl_post .wpcf7-radio label {
  display: inline-block;
  cursor: pointer;
  margin-right: 1em;
}
.bl_post .wpcf7-radio .wpcf7-list-item-label {
  position: relative;
  padding-left: 3em;
}
.bl_post .wpcf7-radio input[type=radio] + span::before,
.bl_post .wpcf7-radio input[type=radio] + span::after {
  position: absolute;
  display: block;
  content: "";
  border-radius: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.bl_post .wpcf7-radio input[type=radio] + span::before {
  top: 50%;
  left: 0;
  width: 22px;
  height: 22px;
  background: #fff;
  border: 1px solid #000;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.bl_post .wpcf7-radio input[type=radio] + span::after {
  opacity: 0;
  top: 50%;
  left: 4px;
  width: 16px;
  height: 16px;
  background: #000;
  -webkit-transform: translateY(-50%) scale(1.6);
          transform: translateY(-50%) scale(1.6);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.bl_post .wpcf7-radio input[type=radio]:checked + span::after {
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}
.bl_post .wpcf7-radio input[type=radio]:focus + span::before {
  outline: 2px solid #3498db;
}
.bl_post input.wpcf7-submit,
.bl_post input.btn-check,
.bl_post input.btn-back,
.bl_post input.btn-send,
.bl_post input[type=submit],
.bl_post input[type=button] {
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: auto;
  padding: 6px 20px;
  margin-top: 60px;
  background: #1985d3;
  border: 2px solid #fff;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.6666666667;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #fff;
  text-decoration: none !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .bl_post input.wpcf7-submit,
  .bl_post input.btn-check,
  .bl_post input.btn-back,
  .bl_post input.btn-send,
  .bl_post input[type=submit],
  .bl_post input[type=button] {
    padding: 9px 20px;
  }
  .bl_post input.wpcf7-submit:hover,
  .bl_post input.btn-check:hover,
  .bl_post input.btn-back:hover,
  .bl_post input.btn-send:hover,
  .bl_post input[type=submit]:hover,
  .bl_post input[type=button]:hover {
    background: #fff;
    border: 2px solid #1985d3;
    opacity: 1;
    color: #1985d3;
  }
}
.bl_post .wpcf7 .wpcf7-spinner {
  display: block;
}

/* ======================================
    .bl_breadcrumbs
====================================== */
.bl_breadcrumbs {
  display: none;
}
@media screen and (min-width: 768px) {
  .bl_breadcrumbs {
    display: block;
  }
  .bl_breadcrumbs li {
    display: inline;
    font-size: 15px;
    font-size: 1.5rem;
    color: #212121;
    letter-spacing: 0.05em;
  }
  .bl_breadcrumbs li::after {
    content: "―";
    display: inline-block;
    width: 8px;
    height: 12px;
    margin: 0 9px;
  }
  .bl_breadcrumbs li:last-of-type::after {
    content: none;
  }
  .bl_breadcrumbs li:first-of-type a {
    color: #0087c9;
  }
  .bl_breadcrumbs li a {
    font-size: inherit;
    color: #212121;
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .bl_breadcrumbs li a:hover {
    color: #1985d3;
  }
}
@media screen and (min-width: 1024px) {
  .bl_breadcrumbs {
    width: 94.7368421053%;
  }
}

/* ======================================
    el_btnHamburger
====================================== */
.el_btnHamburger {
  position: fixed;
  top: 0;
  right: 0;
  width: 55px;
  height: 60px;
  margin: 0;
  overflow: hidden;
  z-index: 100000;
  background-color: #0060b2;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .el_btnHamburger {
    display: none;
  }
}
.el_btnHamburger__animation {
  position: absolute;
  top: 25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 28px;
  height: 21px;
  text-align: center;
}
.el_btnHamburger__animation::after {
  content: "MENU";
  position: absolute;
  bottom: 118%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  font-size: 10px;
  font-size: 1rem;
  letter-spacing: 0.075em;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  text-align: center;
}
.el_btnHamburger_line {
  /* 線色 */
  background: #fff;
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.el_btnHamburger_line__top {
  top: 0;
}
.el_btnHamburger_line__bottom {
  top: 100%;
}

/* 背景 */
.js_wrapBg {
  position: fixed;
  left: 0;
  top: 60px;
  width: 100vw;
  height: calc(100vh - 60px);
  z-index: 10100;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}

.is_btnHamburger__on .el_btnHamburger_line__top {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 50%;
}
.is_btnHamburger__on .el_btnHamburger_line__middle {
  background: transparent;
}
.is_btnHamburger__on .el_btnHamburger_line__bottom {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 50%;
}
.is_btnHamburger__on .el_btnHamburger__animation::after {
  content: "CLOSE";
}
.is_btnHamburger__on .js_wrapBg {
  opacity: 0.3;
  visibility: visible;
}

/* ======================================
    font icomoon
====================================== */
@font-face {
  font-family: "icomoon";
  src: url("../fonts/fonts/icomoon.eot?erygqh");
  src: url("../fonts/fonts/icomoon.eot?erygqh#iefix") format("embedded-opentype"), url("../fonts/fonts/icomoon.ttf?erygqh") format("truetype"), url("../fonts/fonts/icomoon.woff?erygqh") format("woff"), url("../fonts/fonts/icomoon.svg?erygqh#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-],
[class*=" icon-"] {
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-icon_close:before {
  content: "\e90c";
  color: #eee;
}

.icon-icon_tag:before {
  content: "\e90b";
}

.icon-icon_panel__minus:before {
  content: "\e907";
}

.icon-icon_panel__plus:before {
  content: "\e908";
}

.icon-icon_tableofcontents_list:before {
  content: "\e90a";
}

.icon-icon_flow:before {
  content: "\e906";
}

.icon-icon_jump:before {
  content: "\e909";
}

.icon-icon_search:before {
  content: "\e901";
}

.icon-icon_angle-d:before {
  content: "\e905";
}

.icon-icon_arrow:before {
  content: "\e900";
}

.icon-icon_access:before {
  content: "\e902";
}

.icon-icon_blank:before {
  content: "\e903";
}

.icon-icon_mail:before {
  content: "\e904";
}

/* ======================================
    .js_pageTop
====================================== */
.bl_pageTop {
  width: 100%;
  height: 45px;
  display: grid;
  place-items: center;
  background: #0d68b6;
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.bl_pageTop img {
  width: 120px;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .bl_pageTop {
    width: 70px;
    height: auto;
    cursor: pointer;
    position: fixed;
    bottom: -300px;
    right: 48px;
    background: transparent;
    padding-top: 0;
    z-index: 10010;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  .bl_pageTop.is_active {
    bottom: 50px;
  }
}

/* ======================================
    .Swiper 初期化
====================================== */
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "";
}

/* =================================================
    .is_noslide
=================================================== */
.is_noslide .swiper-wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
}
.is_noslide .swiper-wrapper .swiper-slide {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  width: 100%;
  max-width: 400px;
}
@media screen and (min-width: 768px) {
  .is_noslide .swiper-wrapper .swiper-slide {
    max-width: 400px;
  }
}
.is_noslide .swiper-button-prev,
.is_noslide .swiper-button-next {
  display: none;
}

/* =================================================
    #sec_sample_slide6
=================================================== */
#sec_sample_slide6 {
  padding-top: 30px;
  padding-bottom: 80px;
}
@media screen and (min-width: 1024px) {
  #sec_sample_slide6 {
    padding-top: 60px;
    padding-bottom: 120px;
  }
}
#sec_sample_slide6 .bl_sample_slideWrap {
  position: relative;
  margin: 30px calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  #sec_sample_slide6 .bl_sample_slideWrap {
    margin: 50px auto;
  }
}
@media screen and (min-width: 1024px) {
  #sec_sample_slide6 .bl_sample_slideWrap {
    max-width: 1140px;
    margin: 60px 0;
  }
}
#sec_sample_slide6 .bl_sample_slideWrap .swiper {
  position: relative;
}
#sec_sample_slide6 .bl_sample_slideWrap .swiper .swiper-slide > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  color: #212121;
}
#sec_sample_slide6 .bl_sample_slideWrap .swiper .swiper-slide > a .el_thum {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  overflow: hidden;
}
#sec_sample_slide6 .bl_sample_slideWrap .swiper .swiper-slide > a .el_thum img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#sec_sample_slide6 .bl_sample_slideWrap .swiper .swiper-slide > a .el_cont {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
  padding: 10px;
}
#sec_sample_slide6 .bl_sample_slideWrap .swiper .swiper-slide > a .el_cont time {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
#sec_sample_slide6 .bl_sample_slideWrap .swiper .swiper-slide > a .el_cont p {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.3333333333;
  letter-spacing: 0.025em;
}
#sec_sample_slide6 .bl_sample_slideWrap .el_swiperButton {
  position: absolute;
  width: 100vw;
  height: 45px;
  top: 28.6458333333vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
  z-index: 20;
}
@media screen and (min-width: 1024px) {
  #sec_sample_slide6 .bl_sample_slideWrap .el_swiperButton {
    top: 7.34375vw;
    height: 60px;
  }
}
@media screen and (min-width: 1280px) {
  #sec_sample_slide6 .bl_sample_slideWrap .el_swiperButton {
    top: 85px;
    width: calc(100% + 120px);
  }
}
#sec_sample_slide6 .bl_sample_slideWrap .el_swiperButton .swiper-button-prev,
#sec_sample_slide6 .bl_sample_slideWrap .el_swiperButton .swiper-button-next {
  width: 45px;
  height: 45px;
  opacity: 1;
  margin-top: 0;
  top: 0;
  pointer-events: all;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 1024px) {
  #sec_sample_slide6 .bl_sample_slideWrap .el_swiperButton .swiper-button-prev,
  #sec_sample_slide6 .bl_sample_slideWrap .el_swiperButton .swiper-button-next {
    width: 60px;
    height: 60px;
  }
}
@media screen and (min-width: 1024px) {
  #sec_sample_slide6 .bl_sample_slideWrap .el_swiperButton .swiper-button-prev,
  #sec_sample_slide6 .bl_sample_slideWrap .el_swiperButton .swiper-button-next {
    cursor: pointer;
  }
  #sec_sample_slide6 .bl_sample_slideWrap .el_swiperButton .swiper-button-prev:hover,
  #sec_sample_slide6 .bl_sample_slideWrap .el_swiperButton .swiper-button-next:hover {
    opacity: 0.7;
  }
}
#sec_sample_slide6 .bl_sample_slideWrap .el_swiperButton .swiper-button-prev {
  left: 0;
  background: url("../images/top/slideleft_black.svg") no-repeat center center/contain;
}
#sec_sample_slide6 .bl_sample_slideWrap .el_swiperButton .swiper-button-next {
  right: 0;
  background: url("../images/top/slideright_black.svg") no-repeat center center/contain;
}
#sec_sample_slide6 .bl_sample_slideWrap .swiper-pagination {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  margin: 30px auto 0;
}
@media screen and (min-width: 1024px) {
  #sec_sample_slide6 .bl_sample_slideWrap .swiper-pagination {
    margin: 50px auto 0;
  }
}
#sec_sample_slide6 .bl_sample_slideWrap .swiper-pagination {
  gap: 20px;
}
#sec_sample_slide6 .bl_sample_slideWrap .swiper-pagination .swiper-pagination-bullet {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 30px;
  height: 30px;
  margin: 0;
  background: #cad2e2;
  border-radius: 100vh;
  opacity: 1;
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
  color: #1985d3;
  line-height: 30px;
  text-align: center;
}
#sec_sample_slide6 .bl_sample_slideWrap .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #0092d9;
}
#sec_sample_slide6 .el_btnWrap {
  text-align: center;
}

/* ======================================
    Common Class
====================================== */
/*  display
-------------------------------------- */
.hp_sp_none {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .hp_sp_none {
    display: block !important;
  }
}

.hp_sp_display {
  display: block !important;
}
@media screen and (min-width: 768px) {
  .hp_sp_display {
    display: none !important;
  }
}

.hp_pc_none {
  display: block !important;
}
@media screen and (min-width: 1024px) {
  .hp_pc_none {
    display: none !important;
  }
}

.hp_pc_display {
  display: none !important;
}
@media screen and (min-width: 1024px) {
  .hp_pc_display {
    display: block !important;
  }
}

/*  direction
-------------------------------------- */
.hp_row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

/*  text_align
-------------------------------------- */
.hp_text_center {
  text-align: center !important;
}

.hp_text_left {
  text-align: left !important;
}

.hp_text_right {
  text-align: right !important;
}

/*  margin padding
-------------------------------------- */
/* padding 部分的な設定*/
.hp_pb-0 {
  padding-bottom: 0px !important;
  padding-bottom: 0rem !important;
}

.hp_pb-5 {
  padding-bottom: 5px !important;
  padding-bottom: 0.5rem !important;
}

.hp_pb-10 {
  padding-bottom: 10px !important;
  padding-bottom: 1rem !important;
}

.hp_pb-15 {
  padding-bottom: 15px !important;
  padding-bottom: 1.5rem !important;
}

.hp_pb-20 {
  padding-bottom: 20px !important;
  padding-bottom: 2rem !important;
}

.hp_pb-25 {
  padding-bottom: 25px !important;
  padding-bottom: 2.5rem !important;
}

.hp_pb-30 {
  padding-bottom: 30px !important;
  padding-bottom: 3rem !important;
}

.hp_pb-35 {
  padding-bottom: 35px !important;
  padding-bottom: 3.5rem !important;
}

.hp_pb-40 {
  padding-bottom: 40px !important;
  padding-bottom: 4rem !important;
}

.hp_pb-45 {
  padding-bottom: 45px !important;
  padding-bottom: 4.5rem !important;
}

.hp_pb-50 {
  padding-bottom: 50px !important;
  padding-bottom: 5rem !important;
}

/* margin 部分的な設定*/
.mt-0 {
  margin-top: 0px !important;
}
@media screen and (min-width: 1024px) {
  .mt-0 {
    margin-top: 0px !important;
  }
}

.mt-10 {
  margin-top: 8px !important;
}
@media screen and (min-width: 1024px) {
  .mt-10 {
    margin-top: 10px !important;
  }
}

.mt-20 {
  margin-top: 16px !important;
}
@media screen and (min-width: 1024px) {
  .mt-20 {
    margin-top: 20px !important;
  }
}

.mt-30 {
  margin-top: 24px !important;
}
@media screen and (min-width: 1024px) {
  .mt-30 {
    margin-top: 30px !important;
  }
}

.mt-40 {
  margin-top: 32px !important;
}
@media screen and (min-width: 1024px) {
  .mt-40 {
    margin-top: 40px !important;
  }
}

.mt-50 {
  margin-top: 40px !important;
}
@media screen and (min-width: 1024px) {
  .mt-50 {
    margin-top: 50px !important;
  }
}

.mt-60 {
  margin-top: 48px !important;
}
@media screen and (min-width: 1024px) {
  .mt-60 {
    margin-top: 60px !important;
  }
}

.mt-70 {
  margin-top: 56px !important;
}
@media screen and (min-width: 1024px) {
  .mt-70 {
    margin-top: 70px !important;
  }
}

.mt-80 {
  margin-top: 64px !important;
}
@media screen and (min-width: 1024px) {
  .mt-80 {
    margin-top: 80px !important;
  }
}

.mt-90 {
  margin-top: 72px !important;
}
@media screen and (min-width: 1024px) {
  .mt-90 {
    margin-top: 90px !important;
  }
}

.mt-100 {
  margin-top: 80px !important;
}
@media screen and (min-width: 1024px) {
  .mt-100 {
    margin-top: 100px !important;
  }
}

.mt--0 {
  margin-top: 0px !important;
}
@media screen and (min-width: 1024px) {
  .mt--0 {
    margin-top: 0px !important;
  }
}

.mt--10 {
  margin-top: -8px !important;
}
@media screen and (min-width: 1024px) {
  .mt--10 {
    margin-top: -10px !important;
  }
}

.mt--20 {
  margin-top: -16px !important;
}
@media screen and (min-width: 1024px) {
  .mt--20 {
    margin-top: -20px !important;
  }
}

.mt--30 {
  margin-top: -24px !important;
}
@media screen and (min-width: 1024px) {
  .mt--30 {
    margin-top: -30px !important;
  }
}

.mt--40 {
  margin-top: -32px !important;
}
@media screen and (min-width: 1024px) {
  .mt--40 {
    margin-top: -40px !important;
  }
}

.mt--50 {
  margin-top: -40px !important;
}
@media screen and (min-width: 1024px) {
  .mt--50 {
    margin-top: -50px !important;
  }
}

.mt--60 {
  margin-top: -48px !important;
}
@media screen and (min-width: 1024px) {
  .mt--60 {
    margin-top: -60px !important;
  }
}

.mt--70 {
  margin-top: -56px !important;
}
@media screen and (min-width: 1024px) {
  .mt--70 {
    margin-top: -70px !important;
  }
}

.mt--80 {
  margin-top: -64px !important;
}
@media screen and (min-width: 1024px) {
  .mt--80 {
    margin-top: -80px !important;
  }
}

.mt--90 {
  margin-top: -72px !important;
}
@media screen and (min-width: 1024px) {
  .mt--90 {
    margin-top: -90px !important;
  }
}

.mt--100 {
  margin-top: -80px !important;
}
@media screen and (min-width: 1024px) {
  .mt--100 {
    margin-top: -100px !important;
  }
}

.mb-0 {
  margin-bottom: 0px !important;
}
@media screen and (min-width: 1024px) {
  .mb-0 {
    margin-bottom: 0rem !important;
  }
}

.mb-10 {
  margin-bottom: 8px !important;
}
@media screen and (min-width: 1024px) {
  .mb-10 {
    margin-bottom: 10rem !important;
  }
}

.mb-20 {
  margin-bottom: 16px !important;
}
@media screen and (min-width: 1024px) {
  .mb-20 {
    margin-bottom: 20rem !important;
  }
}

.mb-30 {
  margin-bottom: 24px !important;
}
@media screen and (min-width: 1024px) {
  .mb-30 {
    margin-bottom: 30rem !important;
  }
}

.mb-40 {
  margin-bottom: 32px !important;
}
@media screen and (min-width: 1024px) {
  .mb-40 {
    margin-bottom: 40rem !important;
  }
}

.mb-50 {
  margin-bottom: 40px !important;
}
@media screen and (min-width: 1024px) {
  .mb-50 {
    margin-bottom: 50rem !important;
  }
}

.mb-60 {
  margin-bottom: 48px !important;
}
@media screen and (min-width: 1024px) {
  .mb-60 {
    margin-bottom: 60rem !important;
  }
}

.mb-70 {
  margin-bottom: 56px !important;
}
@media screen and (min-width: 1024px) {
  .mb-70 {
    margin-bottom: 70rem !important;
  }
}

.mb-80 {
  margin-bottom: 64px !important;
}
@media screen and (min-width: 1024px) {
  .mb-80 {
    margin-bottom: 80rem !important;
  }
}

.mb-90 {
  margin-bottom: 72px !important;
}
@media screen and (min-width: 1024px) {
  .mb-90 {
    margin-bottom: 90rem !important;
  }
}

.mb-100 {
  margin-bottom: 80px !important;
}
@media screen and (min-width: 1024px) {
  .mb-100 {
    margin-bottom: 100rem !important;
  }
}

.mb-110 {
  margin-bottom: 88px !important;
}
@media screen and (min-width: 1024px) {
  .mb-110 {
    margin-bottom: 110rem !important;
  }
}

.mb-120 {
  margin-bottom: 96px !important;
}
@media screen and (min-width: 1024px) {
  .mb-120 {
    margin-bottom: 120rem !important;
  }
}

.mb-130 {
  margin-bottom: 104px !important;
}
@media screen and (min-width: 1024px) {
  .mb-130 {
    margin-bottom: 130rem !important;
  }
}

.mb-140 {
  margin-bottom: 112px !important;
}
@media screen and (min-width: 1024px) {
  .mb-140 {
    margin-bottom: 140rem !important;
  }
}

.mb-150 {
  margin-bottom: 120px !important;
}
@media screen and (min-width: 1024px) {
  .mb-150 {
    margin-bottom: 150rem !important;
  }
}

.mb-160 {
  margin-bottom: 128px !important;
}
@media screen and (min-width: 1024px) {
  .mb-160 {
    margin-bottom: 160rem !important;
  }
}

.mb-170 {
  margin-bottom: 136px !important;
}
@media screen and (min-width: 1024px) {
  .mb-170 {
    margin-bottom: 170rem !important;
  }
}

.mb-180 {
  margin-bottom: 144px !important;
}
@media screen and (min-width: 1024px) {
  .mb-180 {
    margin-bottom: 180rem !important;
  }
}

.mb-190 {
  margin-bottom: 152px !important;
}
@media screen and (min-width: 1024px) {
  .mb-190 {
    margin-bottom: 190rem !important;
  }
}

.mb-200 {
  margin-bottom: 160px !important;
}
@media screen and (min-width: 1024px) {
  .mb-200 {
    margin-bottom: 200rem !important;
  }
}

.mb--0 {
  margin-bottom: 0px !important;
}
@media screen and (min-width: 1024px) {
  .mb--0 {
    margin-bottom: 0rem !important;
  }
}

.mb--10 {
  margin-bottom: -8px !important;
}
@media screen and (min-width: 1024px) {
  .mb--10 {
    margin-bottom: -10rem !important;
  }
}

.mb--20 {
  margin-bottom: -16px !important;
}
@media screen and (min-width: 1024px) {
  .mb--20 {
    margin-bottom: -20rem !important;
  }
}

.mb--30 {
  margin-bottom: -24px !important;
}
@media screen and (min-width: 1024px) {
  .mb--30 {
    margin-bottom: -30rem !important;
  }
}

.mb--40 {
  margin-bottom: -32px !important;
}
@media screen and (min-width: 1024px) {
  .mb--40 {
    margin-bottom: -40rem !important;
  }
}

.mb--50 {
  margin-bottom: -40px !important;
}
@media screen and (min-width: 1024px) {
  .mb--50 {
    margin-bottom: -50rem !important;
  }
}

.mb--60 {
  margin-bottom: -48px !important;
}
@media screen and (min-width: 1024px) {
  .mb--60 {
    margin-bottom: -60rem !important;
  }
}

.mb--70 {
  margin-bottom: -56px !important;
}
@media screen and (min-width: 1024px) {
  .mb--70 {
    margin-bottom: -70rem !important;
  }
}

.mb--80 {
  margin-bottom: -64px !important;
}
@media screen and (min-width: 1024px) {
  .mb--80 {
    margin-bottom: -80rem !important;
  }
}

.mb--90 {
  margin-bottom: -72px !important;
}
@media screen and (min-width: 1024px) {
  .mb--90 {
    margin-bottom: -90rem !important;
  }
}

.mb--100 {
  margin-bottom: -80px !important;
}
@media screen and (min-width: 1024px) {
  .mb--100 {
    margin-bottom: -100rem !important;
  }
}

.mb--110 {
  margin-bottom: -88px !important;
}
@media screen and (min-width: 1024px) {
  .mb--110 {
    margin-bottom: -110rem !important;
  }
}

.mb--120 {
  margin-bottom: -96px !important;
}
@media screen and (min-width: 1024px) {
  .mb--120 {
    margin-bottom: -120rem !important;
  }
}

.mb--130 {
  margin-bottom: -104px !important;
}
@media screen and (min-width: 1024px) {
  .mb--130 {
    margin-bottom: -130rem !important;
  }
}

.mb--140 {
  margin-bottom: -112px !important;
}
@media screen and (min-width: 1024px) {
  .mb--140 {
    margin-bottom: -140rem !important;
  }
}

.mb--150 {
  margin-bottom: -120px !important;
}
@media screen and (min-width: 1024px) {
  .mb--150 {
    margin-bottom: -150rem !important;
  }
}

.mb--160 {
  margin-bottom: -128px !important;
}
@media screen and (min-width: 1024px) {
  .mb--160 {
    margin-bottom: -160rem !important;
  }
}

.mb--170 {
  margin-bottom: -136px !important;
}
@media screen and (min-width: 1024px) {
  .mb--170 {
    margin-bottom: -170rem !important;
  }
}

.mb--180 {
  margin-bottom: -144px !important;
}
@media screen and (min-width: 1024px) {
  .mb--180 {
    margin-bottom: -180rem !important;
  }
}

.mb--190 {
  margin-bottom: -152px !important;
}
@media screen and (min-width: 1024px) {
  .mb--190 {
    margin-bottom: -190rem !important;
  }
}

.mb--200 {
  margin-bottom: -160px !important;
}
@media screen and (min-width: 1024px) {
  .mb--200 {
    margin-bottom: -200rem !important;
  }
}

/*  clearfix
-------------------------------------- */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.hp_scrollbarNone {
  /*Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}
.hp_scrollbarNone::-webkit-scrollbar {
  display: none;
}

/* =================================================
    ボタン
=================================================== */
.el_btn {
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 258px;
  height: auto;
  padding: 16px;
  border: 1px solid #1985d3;
  border-radius: 100vh;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 500;
  color: #1985d3 !important;
  text-align: center;
  overflow: hidden;
  text-decoration: none !important;
}
@media screen and (min-width: 768px) {
  .el_btn {
    font-size: 18px;
    font-size: 1.8rem;
    font-size: clamp(14.4px, 1.756097561vw, 18px);
  }
}
@media screen and (min-width: 1024px) {
  .el_btn {
    width: 310px;
    padding: 21px;
  }
  .el_btn:hover {
    background: #1985d3;
    opacity: 1;
    color: #fff !important;
  }
}

/* =================================================
    重要なお知らせ
=================================================== */
/* 変数 */
:root {
  --alert-h: 0px;
  --header-h: 64px;
}

/* 重要なお知らせ */
#js-important {
  overflow: hidden;
  height: auto;
  -webkit-transition: height 0.35s ease;
  transition: height 0.35s ease;
}
#js-important .bl_important_list {
  display: block;
}
#js-important #js-important-close {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
#js-important.is-closed .bl_important_list {
  display: none;
}
#js-important.is-closed .bl_important_inner {
  padding: 10px 0;
  gap: 0;
}
#js-important.is-closed #js-important-close {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.bl_important {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100000;
  background: #ffe1e1;
  color: #e3001e;
  border-bottom: 1px solid rgba(176, 0, 32, 0.25);
}
.bl_important.is-hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 260ms ease;
  transition: -webkit-transform 260ms ease;
  transition: transform 260ms ease;
  transition: transform 260ms ease, -webkit-transform 260ms ease;
}
.bl_important .bl_important_ttl {
  grid-area: ttl;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .bl_important .bl_important_ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.bl_important .bl_important_inner {
  display: grid;
  grid-template-areas: "ttl close" "list list";
  grid-template-columns: 1fr 20px;
  gap: 15px 70px;
  padding: 20px 0;
}
@media screen and (min-width: 1024px) {
  .bl_important .bl_important_inner {
    max-width: 1860px;
    padding: 20px 0;
    gap: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-template-columns: 180px 1fr 20px;
    grid-template-areas: "ttl list close";
  }
}
.bl_important .bl_important_list {
  grid-area: list;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: auto hidden;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media screen and (min-width: 1024px) {
  .bl_important .bl_important_list {
    padding: 10px 30px;
    border-left: 1px solid #212121;
  }
}
.bl_important .bl_important_list li + li {
  margin-top: 15px;
}
@media screen and (min-width: 1024px) {
  .bl_important .bl_important_list li + li {
    margin-top: 5px;
  }
}
.bl_important .bl_important_list li time {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #212121;
  line-height: 1;
}
.bl_important .bl_important_list li time::before {
  content: "・";
  display: inline-block;
  font-weight: 700;
}
.bl_important .bl_important_list li a {
  color: #212121;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .bl_important .bl_important_list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
}
.bl_important .el_close {
  grid-area: close;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  color: #212121;
  line-height: 1;
  font-size: 25px;
  font-size: 2.5rem;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .bl_important .el_close:hover {
    opacity: 0.9;
  }
}

/* 本文の頭出し（重なり防止） */
/* アニメーションの初期状態（JS適用前のチラつき対策） */
.bl_important,
.ly_header,
.ly_main {
  will-change: transform, padding, inset;
}

/* =================================================
    #sec_fv
=================================================== */
#sec_fv {
  padding-top: clamp(24px, 13.0215716487px + 2.9275808937vw, 43px);
  padding-bottom: clamp(30px, 15.5546995378px + 3.8520801233vw, 55px);
  background: #f8f9ed;
}
@media screen and (min-width: 1024px) {
  #sec_fv .ly_sec_inner {
    max-width: 1860px;
  }
}
#sec_fv .el_kvCopy {
  font-size: clamp(22px, 10.4437596302px + 3.0816640986vw, 42px);
  --_lh-t: clamp(0, calc((100vw - 375px) / (1024px - 375px)), 1);
  line-height: calc(1 + 0 * var(--_lh-t));
  letter-spacing: clamp(0.075em, 0.0605546995em + 0.0038520801vw, 0.1em);
  color: #212121;
  font-weight: 500;
  text-align: center;
}
#sec_fv .bl_cardFlex {
  width: 100%;
  margin-top: 45px;
}
@media screen and (min-width: 768px) {
  #sec_fv .bl_cardFlex {
    margin-top: 90px;
  }
}
@media screen and (min-width: 1280px) {
  #sec_fv .bl_cardFlex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 30px;
  }
}
#sec_fv .bl_cardFlex .bl_card {
  max-width: 600px;
  position: relative;
  margin: 37px auto 0;
  border-radius: 10px;
  color: #fff;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
          box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  #sec_fv .bl_cardFlex .bl_card {
    margin: 90px auto 0;
  }
}
@media screen and (min-width: 1280px) {
  #sec_fv .bl_cardFlex .bl_card {
    margin: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 60px) / 3);
            flex: 0 0 calc((100% - 60px) / 3);
  }
}
#sec_fv .bl_cardFlex .bl_card--blue {
  background-color: #d1e7f6;
}
#sec_fv .bl_cardFlex .bl_card--blue .bl_card_hd {
  background-color: #1985d3;
}
#sec_fv .bl_cardFlex .bl_card--blue .bl_card_hd .bl_card_ttl a::before {
  color: #1985d3;
}
#sec_fv .bl_cardFlex .bl_card--blue .el_menu {
  color: #1985d3;
}
#sec_fv .bl_cardFlex .bl_card--blue .el_menu::before, #sec_fv .bl_cardFlex .bl_card--blue .el_menu::after {
  background-color: #1985d3;
}
@media screen and (min-width: 1024px) {
  #sec_fv .bl_cardFlex .bl_card--blue .bl_card_links li a::before {
    background-color: #1985d3;
  }
}
#sec_fv .bl_cardFlex .bl_card--pink {
  background-color: #f7c0da;
}
#sec_fv .bl_cardFlex .bl_card--pink .bl_card_hd {
  background-color: #e95e9f;
}
#sec_fv .bl_cardFlex .bl_card--pink .bl_card_hd .bl_card_ttl a::before {
  color: #e95e9f;
}
#sec_fv .bl_cardFlex .bl_card--pink .el_menu {
  color: #e95e9f;
}
#sec_fv .bl_cardFlex .bl_card--pink .el_menu::before, #sec_fv .bl_cardFlex .bl_card--pink .el_menu::after {
  background-color: #e95e9f;
}
@media screen and (min-width: 1024px) {
  #sec_fv .bl_cardFlex .bl_card--pink .bl_card_links li a::before {
    background-color: #e95e9f;
  }
}
#sec_fv .bl_cardFlex .bl_card--orange {
  background-color: #fae4cc;
}
#sec_fv .bl_cardFlex .bl_card--orange .bl_card_hd {
  background-color: #e88719;
}
#sec_fv .bl_cardFlex .bl_card--orange .bl_card_hd .bl_card_ttl a::before {
  color: #e88719;
}
#sec_fv .bl_cardFlex .bl_card--orange .el_menu {
  color: #e88719;
}
#sec_fv .bl_cardFlex .bl_card--orange .el_menu::before, #sec_fv .bl_cardFlex .bl_card--orange .el_menu::after {
  background-color: #e88719;
}
@media screen and (min-width: 1024px) {
  #sec_fv .bl_cardFlex .bl_card--orange .bl_card_links li a::before {
    background-color: #e88719;
  }
}
#sec_fv .bl_cardFlex .bl_card--green {
  background-color: #ddedcc;
}
#sec_fv .bl_cardFlex .bl_card--green .bl_card_hd {
  background-color: #68af19;
}
#sec_fv .bl_cardFlex .bl_card--green .bl_card_hd .bl_card_ttl a::before {
  color: #68af19;
}
#sec_fv .bl_cardFlex .bl_card--green .el_menu {
  color: #68af19;
}
#sec_fv .bl_cardFlex .bl_card--green .el_menu::before, #sec_fv .bl_cardFlex .bl_card--green .el_menu::after {
  background-color: #68af19;
}
@media screen and (min-width: 1024px) {
  #sec_fv .bl_cardFlex .bl_card--green .bl_card_links li a::before {
    background-color: #68af19;
  }
}
#sec_fv .bl_cardFlex .bl_card.bl_card--pink .bl_card_hd::after {
  aspect-ratio: 241/76;
  width: 240px;
  height: auto;
  background: url(../images/top/illust-01_sp.svg) no-repeat center center/contain;
}
@media screen and (min-width: 1280px) {
  #sec_fv .bl_cardFlex .bl_card.bl_card--pink .bl_card_hd::after {
    width: 320px;
    aspect-ratio: 300/126;
    background: url(../images/top/illust-01.svg) no-repeat center center/contain;
  }
}
#sec_fv .bl_cardFlex .bl_card.bl_card--orange .bl_card_hd::after {
  aspect-ratio: 241/76;
  width: 240px;
  height: auto;
  background: url(../images/top/illust-02_sp.svg) no-repeat center center/contain;
}
@media screen and (min-width: 1280px) {
  #sec_fv .bl_cardFlex .bl_card.bl_card--orange .bl_card_hd::after {
    width: 320px;
    aspect-ratio: 300/126;
    background: url(../images/top/illust-02.svg) no-repeat center center/contain;
  }
}
#sec_fv .bl_cardFlex .bl_card.bl_card--green .bl_card_hd::after {
  aspect-ratio: 241/76;
  width: 240px;
  height: auto;
  background: url(../images/top/illust-03_sp.svg) no-repeat center center/contain;
}
@media screen and (min-width: 1280px) {
  #sec_fv .bl_cardFlex .bl_card.bl_card--green .bl_card_hd::after {
    width: 320px;
    aspect-ratio: 300/126;
    background: url(../images/top/illust-03.svg) no-repeat center center/contain;
  }
}
#sec_fv .bl_cardFlex .bl_card .bl_card_hd {
  position: relative;
  padding: 60px 10px 15px;
  border-radius: 10px 10px 0 0;
}
@media screen and (min-width: 1280px) {
  #sec_fv .bl_cardFlex .bl_card .bl_card_hd {
    padding: 96px 10px 28px;
  }
}
#sec_fv .bl_cardFlex .bl_card .bl_card_hd::after {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
  #sec_fv .bl_cardFlex .bl_card .bl_card_hd::after {
    top: -50px;
  }
}
#sec_fv .bl_cardFlex .bl_card .bl_card_hd .bl_card_ttl a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  font-size: clamp(26px, 20.2218798151px + 1.5408320493vw, 36px);
  --_lh-t: clamp(0, calc((100vw - 375px) / (1024px - 375px)), 1);
  line-height: calc(1 + 0 * var(--_lh-t));
  letter-spacing: clamp(0.05em, 0.05em + 0vw, 0.05em);
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  #sec_fv .bl_cardFlex .bl_card .bl_card_hd .bl_card_ttl a {
    text-align: center;
  }
}
#sec_fv .bl_cardFlex .bl_card .bl_card_hd .bl_card_ttl a::before {
  display: grid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  place-items: center;
  width: 25px;
  height: 25px;
  background: #fff;
  border-radius: 50px;
  position: absolute;
  top: 0;
  right: 7px;
  text-align: center;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90a";
  font-size: 12px;
}
@media screen and (min-width: 1024px) {
  #sec_fv .bl_cardFlex .bl_card .bl_card_hd .bl_card_ttl a::before {
    width: 30px;
    height: 30px;
    top: 10px;
    right: 30px;
  }
}
#sec_fv .bl_cardFlex .bl_card .bl_card_hd .bl_card_lead {
  margin-top: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5625;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 1024px) {
  #sec_fv .bl_cardFlex .bl_card .bl_card_hd .bl_card_lead {
    margin-top: 20px;
    text-align: center;
  }
}
#sec_fv .bl_cardFlex .bl_card .bl_card_hd .bl_card_lead br {
  display: none;
}
@media screen and (min-width: 1024px) {
  #sec_fv .bl_cardFlex .bl_card .bl_card_hd .bl_card_lead br {
    display: inline-block;
  }
}
#sec_fv .bl_cardFlex .bl_card .el_menu {
  position: relative;
  width: 100%;
  padding: 14px;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.025em;
  font-weight: 600;
  text-align: left;
}
#sec_fv .bl_cardFlex .bl_card .el_menu::before, #sec_fv .bl_cardFlex .bl_card .el_menu::after {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 15px;
  height: 2px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 12px;
}
#sec_fv .bl_cardFlex .bl_card .el_menu::before {
  width: 2px;
  height: 15px;
  right: 19px;
}
@media screen and (min-width: 1024px) {
  #sec_fv .bl_cardFlex .bl_card .el_menu {
    display: none;
  }
}
#sec_fv .bl_cardFlex .bl_card .el_menu.is_open::before {
  display: none;
}
#sec_fv .bl_cardFlex .bl_card .el_toggle {
  display: none;
}
@media screen and (min-width: 1024px) {
  #sec_fv .bl_cardFlex .bl_card .el_toggle {
    display: block;
  }
}
#sec_fv .bl_cardFlex .bl_card .bl_card_links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 10px;
  padding: 6px 10px 12px;
}
@media screen and (min-width: 1024px) {
  #sec_fv .bl_cardFlex .bl_card .bl_card_links {
    padding: 42px 20px;
  }
}
#sec_fv .bl_cardFlex .bl_card .bl_card_links li.el_large {
  grid-column: 1/-1;
}
#sec_fv .bl_cardFlex .bl_card .bl_card_links li.el_large a {
  padding: 25px 12px;
}
@media screen and (min-width: 1024px) {
  #sec_fv .bl_cardFlex .bl_card .bl_card_links li.el_large a {
    padding: 30px 12px;
    padding-left: 53px;
  }
}
#sec_fv .bl_cardFlex .bl_card .bl_card_links li a {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 12px;
  background: #fff;
  -webkit-box-shadow: 1px 0px 2px rgba(0, 0, 0, 0.35), 0px 1px 2px rgba(0, 0, 0, 0.35);
          box-shadow: 1px 0px 2px rgba(0, 0, 0, 0.35), 0px 1px 2px rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.4705882353;
  letter-spacing: 0.025em;
  font-weight: 500;
  text-align: left;
  color: #212121;
}
@media screen and (min-width: 1024px) {
  #sec_fv .bl_cardFlex .bl_card .bl_card_links li a {
    padding: 10px 12px;
    padding-left: 53px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.3888888889;
    letter-spacing: 0.025em;
  }
  #sec_fv .bl_cardFlex .bl_card .bl_card_links li a::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
    width: 35px;
    height: 35px;
    border-radius: 35px;
    background-image: url(../images/top/icon_linkmenu.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 18px 24px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1024px) {
  #sec_fv .bl_cardFlex .bl_card .bl_card_links li a::before {
    left: 6px;
  }
}

/* =================================================
    #sec_recruit
=================================================== */
#sec_recruit {
  padding-top: clamp(30px, 18.4437596302px + 3.0816640986vw, 50px);
  padding-bottom: clamp(30px, 18.4437596302px + 3.0816640986vw, 50px);
  background: #009fe8;
}
#sec_recruit .ly_sec_inner {
  max-width: 1460px;
}
#sec_recruit .bl_ctaGrid {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 15px;
}
@media screen and (min-width: 1024px) {
  #sec_recruit .bl_ctaGrid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    gap: 30px;
  }
}
#sec_recruit .bl_cta {
  aspect-ratio: 335/90;
  position: relative;
  display: grid;
  place-items: center;
  text-align: left;
  justify-items: start;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.35);
          box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.35);
  border-radius: 4px;
  padding-left: 15px;
  background: #f1fbff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
  #sec_recruit .bl_cta {
    aspect-ratio: 700/160;
    border-radius: 7px;
    padding-left: 50px;
  }
}
#sec_recruit .bl_cta h3 {
  position: relative;
  z-index: 1;
}
#sec_recruit .bl_cta img {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 1024px) {
  #sec_recruit .bl_cta img {
    right: 38px;
  }
}
#sec_recruit .bl_cta.bl_cta_recruit img {
  width: 52.2388059701%;
}
@media screen and (min-width: 1024px) {
  #sec_recruit .bl_cta.bl_cta_recruit img {
    width: 44.2815249267%;
  }
}
#sec_recruit .bl_cta.bl_cta_participant {
  padding-right: 0;
}
#sec_recruit .bl_cta.bl_cta_participant h3 {
  letter-spacing: 0.01em;
}
@media screen and (min-width: 1024px) {
  #sec_recruit .bl_cta.bl_cta_participant h3 {
    letter-spacing: 0.075em;
  }
}
#sec_recruit .bl_cta.bl_cta_participant img {
  width: 34.328358209%;
}
@media screen and (min-width: 1024px) {
  #sec_recruit .bl_cta.bl_cta_participant img {
    width: 29.7653958944%;
  }
}
#sec_recruit .bl_cta h3 {
  font-size: clamp(24px, 15.3328197227px + 2.311248074vw, 39px);
  --_lh-t: clamp(0, calc((100vw - 375px) / (1024px - 375px)), 1);
  line-height: calc(1 + 0 * var(--_lh-t));
  letter-spacing: clamp(0.25em, 0.3511171032em + -0.0269645609vw, 0.075em);
  color: #0d4685;
  font-weight: 700;
}

/* =================================================
    .bl_free
=================================================== */
.bl_free {
  padding-top: clamp(50px, 44.2218798151px + 1.5408320493vw, 60px);
  padding-bottom: clamp(20px, 8.4437596302px + 3.0816640986vw, 40px);
}
.bl_free .ly_sec_inner {
  max-width: 1460px;
}

/* =================================================
    #sec_news
=================================================== */
#sec_news {
  padding-top: clamp(50px, 55.7781201849px + -1.5408320493vw, 40px);
  padding-bottom: clamp(50px, 26.8875192604px + 6.1633281972vw, 90px);
}
#sec_news .ly_sec_inner {
  max-width: 1460px;
}
#sec_news .bl_news_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#sec_news .bl_news_header .el_secTtl {
  font-family: "Inter", sans-serif;
  font-size: clamp(38px, 35.688751926px + 0.6163328197vw, 42px);
  --_lh-t: clamp(0, calc((100vw - 375px) / (1024px - 375px)), 1);
  line-height: calc(1 + 0 * var(--_lh-t));
  letter-spacing: clamp(0.1em, 0.1em + 0vw, 0.1em);
  color: #212121;
  font-weight: 600;
}
#sec_news .bl_news_header .el_btnmore {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #212121;
}
#sec_news .bl_news_header .el_btnmore::after {
  display: grid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  place-items: center;
  width: 30px;
  height: 30px;
  background: #0060b2;
  border-radius: 50px;
  text-align: center;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: 500;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90a";
  font-size: 12px;
  color: #fff;
}
#sec_news .bl_newsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-top: 12px;
}
@media screen and (min-width: 1024px) {
  #sec_news .bl_newsList {
    margin-top: 18px;
  }
}
#sec_news .bl_newsList .bl_newsItem {
  padding-top: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid #c7c7c7;
}
@media screen and (min-width: 1024px) {
  #sec_news .bl_newsList .bl_newsItem {
    padding-top: 16px;
    padding-bottom: 18px;
  }
}
#sec_news .bl_newsList .bl_newsItem .bl_newsLink {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px 15px;
  color: #212121;
}
@media screen and (min-width: 1024px) {
  #sec_news .bl_newsList .bl_newsItem .bl_newsLink {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 33px;
  }
}
#sec_news .bl_newsList .bl_newsItem .bl_newsLink .el_date {
  -ms-flex-preferred-size: 85px;
      flex-basis: 85px;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1;
}
#sec_news .bl_newsList .bl_newsItem .bl_newsLink .el_date time {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.025em;
  font-weight: 300;
  color: inherit;
}
#sec_news .bl_newsList .bl_newsItem .bl_newsLink h3 {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5625;
  letter-spacing: 0.025em;
}

/* =================================================
    #sec_inquiry
=================================================== */
#sec_inquiry {
  padding-top: clamp(30px, 24.2218798151px + 1.5408320493vw, 40px);
  padding-bottom: clamp(30px, 24.2218798151px + 1.5408320493vw, 40px);
  background: #bfe7f8;
}
#sec_inquiry .ly_sec_inner {
  max-width: 1460px;
}
#sec_inquiry .bl_inquiry_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 1024px) {
  #sec_inquiry .bl_inquiry_flex {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 35px;
  }
}
#sec_inquiry .bl_inquiry_flex .el_bnr {
  width: 100%;
  max-width: 443px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.35);
          box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.35);
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 0.025em;
  font-weight: 500;
  color: #212121;
}
@media screen and (min-width: 1280px) {
  #sec_inquiry .bl_inquiry_flex .el_bnr {
    height: 110px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 60px) / 3);
            flex: 0 0 calc((100% - 60px) / 3);
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: 0.025em;
  }
}
@media screen and (min-width: 1280px) {
  #sec_inquiry .bl_inquiry_flex .el_bnr {
    gap: 50px;
  }
}
#sec_inquiry .bl_inquiry_flex .el_bnr .el_bnr_icon {
  -ms-flex-preferred-size: 33px;
      flex-basis: 33px;
}
@media screen and (min-width: 1024px) {
  #sec_inquiry .bl_inquiry_flex .el_bnr .el_bnr_icon {
    -ms-flex-preferred-size: 48px;
        flex-basis: 48px;
  }
}
#sec_inquiry .bl_inquiry_flex .el_bnr .el_btn_label {
  font-weight: inherit;
}
#sec_inquiry .bl_inquiry_flex .el_bnr .el_btn_label span {
  font-family: "Inter", sans-serif;
  font-size: 23px;
  font-size: 2.3rem;
  line-height: 1;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 1024px) {
  #sec_inquiry .bl_inquiry_flex .el_bnr .el_btn_label span {
    font-size: 29px;
    font-size: 2.9rem;
    line-height: 1;
    letter-spacing: 0.2em;
  }
}

/* =================================================
    #sec_top
=================================================== */
#sec_top {
  padding-top: clamp(22px, 11.5993836672px + 2.7734976888vw, 40px);
  padding-bottom: clamp(30px, 24.2218798151px + 1.5408320493vw, 40px);
}
#sec_top h2 {
  font-size: clamp(32px, 23.3328197227px + 2.311248074vw, 47px);
  --_lh-t: clamp(0, calc((100vw - 375px) / (1024px - 375px)), 1);
  line-height: calc(1 + 0 * var(--_lh-t));
  letter-spacing: clamp(0.05em, 0.05em + 0vw, 0.05em);
  color: #212121;
}

/* =================================================
    .bl_bannerImg
=================================================== */
.bl_bannerImg {
  padding-top: clamp(30px, 18.4437596302px + 3.0816640986vw, 50px);
  padding-bottom: clamp(30px, 18.4437596302px + 3.0816640986vw, 50px);
  background: #efefef;
}
.bl_bannerImg .ly_sec_inner {
  max-width: 1460px;
}
.bl_bannerImg ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
}
.bl_bannerImg ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 10px) / 2);
          flex: 0 0 calc((100% - 10px) / 2);
  background: #fff;
  height: clamp(50px, 22.2650231125px + 7.3959938367vw, 98px);
}
@media screen and (min-width: 1024px) {
  .bl_bannerImg ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px) / 3);
            flex: 0 0 calc((100% - 20px) / 3);
    height: 90px;
  }
}
.bl_bannerImg ul li a {
  display: grid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  place-items: center;
  width: 100%;
  height: 100%;
}
.bl_bannerImg ul li:first-of-type img {
  max-width: clamp(95px, 47.0416024653px + 12.7889060092vw, 178px);
}
.bl_bannerImg ul li:nth-of-type(2) img {
  max-width: clamp(129px, 61.9738058552px + 17.873651772vw, 245px);
}
.bl_bannerImg ul li:nth-of-type(3) img {
  max-width: clamp(143px, 68.4622496148px + 19.8767334361vw, 272px);
}

/* =================================================
    .bl_bannerTxt
=================================================== */
.bl_bannerTxt {
  position: relative;
  background: #efefef;
  padding-bottom: clamp(30px, 18.4437596302px + 3.0816640986vw, 50px);
}
.bl_bannerTxt .ly_sec_inner {
  max-width: 1460px;
}
.bl_bannerTxt ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 10px;
}
.bl_bannerTxt ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 10px) / 2);
          flex: 0 0 calc((100% - 10px) / 2);
}
@media screen and (min-width: 768px) {
  .bl_bannerTxt ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px) / 3);
            flex: 0 0 calc((100% - 20px) / 3);
  }
}
@media screen and (min-width: 1024px) {
  .bl_bannerTxt ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 40px) / 5);
            flex: 0 0 calc((100% - 40px) / 5);
    min-height: 80px;
  }
}
.bl_bannerTxt ul li {
  height: auto;
}
.bl_bannerTxt ul li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
[data-theme=blue] {
  --color-primary: #1985d3;
  --color-secondary: #d1e7f6;
  --color-light: #dcedf8;
  --color-flow: #e8f3fb;
  --h3iconUrl: url(../images/common/icon_heading3-blue.svg) no-repeat center center/contain;
  --color-sidebkg: #e8f3fb;
}

[data-theme=pink] {
  --color-primary: #e95e9f;
  --color-secondary: #f7c0da;
  --color-light: #fbe4ef;
  --color-flow: #fdedf4;
  --h3iconUrl: url(../images/common/icon_heading3-pink.svg) no-repeat center center/contain;
  --color-sidebkg: #fdedf4;
}

[data-theme=orange] {
  --color-primary: #e67a00;
  --color-secondary: #fae4cc;
  --color-light: #fbebd9;
  --color-flow: #fcf2e5;
  --h3iconUrl: url(../images/common/icon_heading3-orange.svg) no-repeat center center/contain;
  --color-sidebkg: #fcf2e5;
}

[data-theme=green] {
  --color-primary: #57a600;
  --color-secondary: #ddedcc;
  --color-light: #e6f2d9;
  --color-flow: #eef6e5;
  --h3iconUrl: url(../images/common/icon_heading3-green.svg) no-repeat center center/contain;
  --color-sidebkg: #eef6e5;
}

/* =================================================
    カテゴリ
=================================================== */
.el_cat {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 160px;
          flex: 0 0 160px;
  width: 160px;
  height: 23px;
  border-radius: 3px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.6428571429;
  letter-spacing: 0em;
  text-align: center;
}
.el_cat__notice {
  background: #d5e9bf;
}
.el_cat__sponsor {
  background: #f9debf;
}
.el_cat__public {
  background: #f9d2e4;
}
.el_cat__recruit {
  background: #c8c8ec;
}
.el_cat__other {
  background: #bfe7f8;
}

/* =================================================
    .bl_page
=================================================== */
.bl_page {
  padding-top: 30px;
  padding-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .bl_page {
    padding-top: 32px;
    padding-bottom: 80px;
  }
}

/* =================================================
    .bl_pageheader
=================================================== */
.page_editor .bl_pageheader {
  background: none;
}
.page_editor .bl_pageheader h1 {
  color: #212121;
}

.bl_pageheader {
  width: 100%;
  height: auto;
  padding: 0;
  aspect-ratio: 375/150;
  background: var(--color-secondary);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .bl_pageheader {
    aspect-ratio: auto;
    height: 204px;
  }
}
@media screen and (min-width: 1024px) {
  .bl_pageheader {
    padding-right: 350px;
  }
}
.bl_pageheader .ly_sec_inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
@media screen and (min-width: 768px) {
  .bl_pageheader .ly_sec_inner {
    gap: 25px;
  }
}
@media screen and (min-width: 1024px) {
  .bl_pageheader .ly_sec_inner {
    width: 100%;
    max-width: 1310px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.bl_pageheader h1 {
  font-size: clamp(26px, 17.9106317411px + 2.157164869vw, 40px);
  --_lh-t: clamp(0, calc((100vw - 375px) / (1024px - 375px)), 1);
  line-height: calc(1.2307692308 + -0.0807692308 * var(--_lh-t));
  letter-spacing: clamp(0.075em, 0.075em + 0vw, 0.075em);
  text-align: left;
  color: #212121;
  font-weight: 700;
}

/* =================================================
    サイドメニュー
=================================================== */
.bl_aside {
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid #909090;
}
.bl_aside .bl_aside_header {
  width: 100%;
  height: 130px;
  display: grid;
  place-items: center;
  background: var(--color-primary);
}
.bl_aside .bl_aside_header h3 {
  text-align: center;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
}
.bl_aside .bl_aside_list > ul > li {
  position: relative;
  width: 100%;
  height: auto;
  background: var(--color-sidebkg);
  border-bottom: 1px solid #909090;
}
.bl_aside .bl_aside_list > ul > li:last-of-type {
  border-bottom: none;
}
.bl_aside .bl_aside_list > ul > li.has_chiled > a::after {
  display: none;
}
.bl_aside .bl_aside_list > ul > li > a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: auto;
  padding: 18px 30px;
  padding-right: 70px;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.4117647059;
  letter-spacing: 0.025em;
  color: #212121;
  text-align: left;
}
.bl_aside .bl_aside_list > ul > li > a::after {
  content: "\e90a";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  line-height: 30px;
  font-size: 10px;
  color: var(--color-primary);
  text-align: center;
}
.bl_aside .bl_aside_list > ul > li > .el_iconToggle {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 60px;
  height: 60px;
}
.bl_aside .bl_aside_list > ul > li > .el_iconToggle::before, .bl_aside .bl_aside_list > ul > li > .el_iconToggle::after {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 15px;
  height: 2px;
  background-color: var(--color-primary);
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.bl_aside .bl_aside_list > ul > li > .el_iconToggle::before {
  width: 2px;
  height: 15px;
}
.bl_aside .bl_aside_list > ul > li > .el_iconToggle.is_open::before {
  display: none;
}
.bl_aside .bl_aside_list > ul > li .bl_aside_listToggle {
  display: none;
  overflow-y: visible;
  height: 100%;
  background: #fff;
  padding: 15px 25px;
}
.bl_aside .bl_aside_list > ul > li .bl_aside_listToggle li {
  margin-bottom: 10px;
  color: #212121;
  text-align: left;
}
.bl_aside .bl_aside_list > ul > li .bl_aside_listToggle li:last-of-type {
  margin-bottom: 0;
}
.bl_aside .bl_aside_list > ul > li .bl_aside_listToggle li a {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.025em;
  color: #212121;
}

.page_archive .bl_aside .bl_aside_header {
  width: 100%;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--color-primary);
}
@media screen and (min-width: 1024px) {
  .page_archive .bl_aside .bl_aside_header {
    width: 100%;
    height: 130px;
    display: grid;
    place-items: center;
    background: var(--color-primary);
  }
}
.page_archive .bl_aside .bl_aside_header h3 {
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .page_archive .bl_aside .bl_aside_header h3 {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}
.page_archive .bl_aside .bl_aside_list > ul > li > a {
  padding: 6px 13px;
  padding-right: 70px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 1024px) {
  .page_archive .bl_aside .bl_aside_list > ul > li > a {
    padding: 18px 30px;
    padding-right: 70px;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.4117647059;
    letter-spacing: 0.025em;
  }
}

/* =================================================
    .記事詳細ページ 
=================================================== */
.page_base .bl_post {
  padding-bottom: clamp(60px, 7.9969183359px + 13.8674884438vw, 150px);
}

.bl_post .txt_aliginLeft {
  text-align: left !important;
}
.bl_post .txt_aliginRight {
  text-align: right !important;
}
.bl_post .txt_aliginCenter {
  text-align: center !important;
}
.bl_post .block_alignCenter, .bl_post .block_alignRight, .bl_post .block_alignLeft {
  margin-inline: auto !important;
}
@media screen and (min-width: 768px) {
  .bl_post .block_alignLeft {
    margin-inline: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .bl_post .block_alignRight {
    margin-inline: 0 0 0 auto !important;
  }
}
.bl_post .el_postjumpNavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  row-gap: 10px;
}
@media screen and (min-width: 1024px) {
  .bl_post .el_postjumpNavi {
    gap: 12px 35px;
  }
}
.bl_post .el_postjumpNavi li a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #212121;
  text-decoration: none !important;
  padding: 0;
  padding-left: 19px;
  line-height: 1.6;
}
.bl_post .el_postjumpNavi li a::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0px;
  display: inline-block;
  content: "\e906";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 10px;
  color: var(--color-primary);
  font-weight: 700;
  vertical-align: middle;
}
.bl_post * + .el_postjumpNavi {
  margin-top: 30px;
}
.bl_post .el_tabBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  row-gap: 10px;
}
@media screen and (min-width: 1024px) {
  .bl_post .el_tabBtn {
    gap: 12px 15px;
  }
}
.bl_post .el_tabBtn li a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #212121;
  text-decoration: none !important;
  padding: 4px 15px;
  padding-right: 32px;
  border: 1px solid var(--color-primary);
  border-radius: 5px;
  color: var(--color-primary);
  line-height: 1.6;
}
.bl_post .el_tabBtn li a::after {
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-block;
  content: "\e90a";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 10px;
  color: var(--color-primary);
  font-weight: 700;
  vertical-align: middle;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.bl_post * + .el_tabBtn {
  margin-top: 30px;
}
.bl_post h2:not(.el_singleTtl) {
  position: relative;
  background: var(--color-primary);
  border-radius: 7px;
  padding: 10px 15px;
  font-size: clamp(24px, 18.2218798151px + 1.5408320493vw, 34px);
  --_lh-t: clamp(0, calc((100vw - 375px) / (1024px - 375px)), 1);
  line-height: calc(1.3333333333 + -0.1568627451 * var(--_lh-t));
  letter-spacing: clamp(0.05em, 0.05em + 0vw, 0.05em);
  font-weight: 700;
  color: #fff;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .bl_post h2:not(.el_singleTtl) {
    padding: 10px 29px;
  }
}
.bl_post h2:not(.el_singleTtl) + *:not(.el_tableofcontents) {
  margin-top: 23px !important;
}
.bl_post * + h2:not(.el_singleTtl) {
  margin-top: 60px;
}
@media screen and (min-width: 1024px) {
  .bl_post * + h2:not(.el_singleTtl) {
    margin-top: 65px;
  }
}
.bl_post h3 {
  position: relative;
  padding-bottom: 5px;
  margin-top: 10px;
  border-bottom: 2px solid var(--color-primary);
  font-size: clamp(22px, 19.688751926px + 0.6163328197vw, 26px);
  --_lh-t: clamp(0, calc((100vw - 375px) / (1024px - 375px)), 1);
  line-height: calc(1.2727272727 + 0.1118881119 * var(--_lh-t));
  letter-spacing: clamp(0.05em, 0.05em + 0vw, 0.05em);
  color: var(--color-primary);
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .bl_post h3 {
    padding-bottom: 10px;
    margin-top: 20px;
  }
}
.bl_post h3::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-right: 5px;
  background: var(--h3iconUrl);
  vertical-align: middle;
}
.bl_post h3 + *:not(.el_tableofcontents) {
  margin-top: 15px !important;
}
@media screen and (min-width: 1024px) {
  .bl_post h3 + *:not(.el_tableofcontents) {
    margin-top: 19px !important;
  }
}
.bl_post * + h3 {
  margin-top: 44px;
}
@media screen and (min-width: 1024px) {
  .bl_post * + h3 {
    margin-top: 76px;
  }
}
.bl_post h4 {
  position: relative;
  margin-top: 10px;
  padding: 3px 15px;
  background: var(--color-light);
  font-size: clamp(19px, 17.844375963px + 0.3081664099vw, 21px);
  --_lh-t: clamp(0, calc((100vw - 375px) / (1024px - 375px)), 1);
  line-height: calc(1.4736842105 + -0.0927318296 * var(--_lh-t));
  letter-spacing: clamp(0.025em, 0.025em + 0vw, 0.025em);
  color: #212121;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .bl_post h4 {
    padding: 8px 15px;
    margin-top: 20px;
  }
}
.bl_post h4 + * {
  margin-top: 13px !important;
}
@media screen and (min-width: 1024px) {
  .bl_post h4 + * {
    margin-top: 20px !important;
  }
}
.bl_post * + h4 {
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .bl_post * + h4 {
    margin-top: 62px;
  }
}
.bl_post h5 {
  margin-top: 30px;
  font-size: clamp(17px, 17px + 0vw, 17px);
  --_lh-t: clamp(0, calc((100vw - 375px) / (1024px - 375px)), 1);
  line-height: calc(1.7647058824 + 0 * var(--_lh-t));
  letter-spacing: clamp(0.025em, 0.025em + 0vw, 0.025em);
  color: #212121;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .bl_post h5 {
    margin-top: 40px;
  }
}
.bl_post h5 + * {
  margin-top: 9px !important;
}
@media screen and (min-width: 1024px) {
  .bl_post h5 + * {
    margin-top: 12px !important;
  }
}
.bl_post p:not([class]) {
  margin-top: clamp(30px, 38.6671802773px + -2.311248074vw, 15px);
  text-align: left;
  line-height: 1.75;
}
@media screen and (min-width: 1024px) {
  .bl_post p:not([class]) {
    line-height: 1.75;
  }
}
.bl_post p:not([class]):first-of-type {
  margin-top: 0;
}
.bl_post * + p {
  margin-top: clamp(30px, 38.6671802773px + -2.311248074vw, 15px);
}
.bl_post .el_postLead {
  margin-top: 31px;
  font-size: clamp(20px, 18.2665639445px + 0.4622496148vw, 23px);
  --_lh-t: clamp(0, calc((100vw - 375px) / (1024px - 375px)), 1);
  line-height: calc(1.4 + -0.0086956522 * var(--_lh-t));
  letter-spacing: clamp(0.025em, 0.025em + 0vw, 0.025em);
  font-weight: 700;
}
.bl_post strong {
  font-weight: 700;
}
.bl_post a:not(.el_linkBtn):not(.el_postjumpNavi a):not(.el_tableofcontents a):not(.el_figureFlex a):not(.el_tabBtn a) {
  text-decoration: none;
}
.bl_post a:not(.el_linkBtn):not(.el_postjumpNavi a):not(.el_tableofcontents a):not(.el_figureFlex a):not(.el_tabBtn a):link {
  color: #0087c9;
}
.bl_post a:not(.el_linkBtn):not(.el_postjumpNavi a):not(.el_tableofcontents a):not(.el_figureFlex a):not(.el_tabBtn a):visited {
  color: #808080;
}
@media (hover: hover) and (pointer: fine) {
  .bl_post a:not(.el_linkBtn):not(.el_postjumpNavi a):not(.el_tableofcontents a):not(.el_figureFlex a):not(.el_tabBtn a):hover {
    opacity: 1;
    text-decoration: underline;
  }
}
.bl_post iframe {
  max-width: 100%;
  display: block;
}
.bl_post ul:not(.el_postjumpNavi):not(.el_tabBtn):not(.el_tableofcontents ul) {
  padding-left: 8px;
}
@media screen and (min-width: 1024px) {
  .bl_post ul:not(.el_postjumpNavi):not(.el_tabBtn):not(.el_tableofcontents ul) {
    padding-left: 12px;
  }
}
.bl_post ul:not(.el_postjumpNavi):not(.el_tabBtn):not(.el_tableofcontents ul) li {
  position: relative;
  margin-top: 10px;
  padding-left: 19px;
  color: #212121;
  line-height: 1.6;
}
.bl_post ul:not(.el_postjumpNavi):not(.el_tabBtn):not(.el_tableofcontents ul) li:first-of-type {
  margin-top: 0;
}
.bl_post ul:not(.el_postjumpNavi):not(.el_tabBtn):not(.el_tableofcontents ul) li::before {
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: var(--color-primary);
}
.bl_post * + ul:not(.el_postjumpNavi):not(.el_tabBtn):not(.el_tableofcontents):not(.el_tableofcontents ul) {
  margin-top: 31px;
}
@media screen and (min-width: 1024px) {
  .bl_post * + ul:not(.el_postjumpNavi):not(.el_tabBtn):not(.el_tableofcontents):not(.el_tableofcontents ul) {
    margin-top: 30px;
  }
}
.bl_post ol:not(.el_flow):not(.el_flowNo) {
  list-style-type: none;
  counter-reset: cnt;
  padding-left: 8px;
}
.bl_post ol:not(.el_flow):not(.el_flowNo) li {
  position: relative;
  counter-increment: cnt;
  padding-left: 23px;
  margin-top: 13px;
  color: #212121;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .bl_post ol:not(.el_flow):not(.el_flowNo) li {
    padding-left: 25px;
  }
}
.bl_post ol:not(.el_flow):not(.el_flowNo) li:first-of-type {
  margin-top: 0;
}
.bl_post ol:not(.el_flow):not(.el_flowNo) li:before {
  content: counter(cnt);
  display: inline-block;
  margin-left: -22px;
  width: 2em;
  text-align: right;
  position: absolute;
  top: 0;
  left: 0;
}
.bl_post * + ol:not(.el_flow):not(.el_flowNo) {
  margin-top: 25px;
}
@media screen and (min-width: 1024px) {
  .bl_post * + ol:not(.el_flow):not(.el_flowNo) {
    margin-top: 33px;
  }
}
.bl_post table:not(table.el_table_responsive):not(table.tbl_scroll) {
  width: 100% !important;
}
.bl_post table.el_p0 th,
.bl_post table.el_p0 td {
  padding: 2px !important;
}
.bl_post table.el_f-small th,
.bl_post table.el_f-small td {
  font-size: 80% !important;
}
.bl_post table th p:last-of-type,
.bl_post table th ul:last-of-type,
.bl_post table th ol:last-of-type,
.bl_post table th img:last-of-type,
.bl_post table th figure:last-of-type,
.bl_post table th ol:not(.el_flow):not(.el_flowNo):last-of-type,
.bl_post table th ul:not(.el_postjumpNavi):not(.el_tabBtn):not(.el_tableofcontents):not(.el_tableofcontents ul):last-of-type,
.bl_post table td p:last-of-type,
.bl_post table td ul:last-of-type,
.bl_post table td ol:last-of-type,
.bl_post table td img:last-of-type,
.bl_post table td figure:last-of-type,
.bl_post table td ol:not(.el_flow):not(.el_flowNo):last-of-type,
.bl_post table td ul:not(.el_postjumpNavi):not(.el_tabBtn):not(.el_tableofcontents):not(.el_tableofcontents ul):last-of-type {
  margin-bottom: 0;
}
.bl_post table {
  background: #fff;
  border: 1px solid #909090;
  border-collapse: collapse;
}
.bl_post table .label {
  display: inline-block;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit !important;
  text-align: inherit;
  white-space: nowrap;
  vertical-align: inherit;
  border-radius: 0;
}
.bl_post table .label.label-finish {
  padding: 0.2em 0.6em 0.3em;
  line-height: 1.6;
  text-align: center;
  background: #4d5357;
  color: #fff !important;
  border-radius: 0.25em;
  font-size: 14px;
}
.bl_post table .label.label-primary {
  padding: 0.2em 0.6em 0.3em;
  line-height: 1.6;
  text-align: center;
  background: #337ab7;
  color: #fff !important;
  border-radius: 0.25em;
  font-size: 14px;
}
.bl_post table th,
.bl_post table td {
  padding: 10px 20px;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.bl_post table .el_cellColored {
  background-color: #ffe6e6 !important;
}
.bl_post table td {
  vertical-align: top;
}
.bl_post table thead th {
  background: #dedede;
  border: 1px solid #909090;
  text-align: left;
  font-weight: 700;
  color: #212121;
  text-align: center;
}
.bl_post table tbody th {
  background: #f7f7f7;
  border: 1px solid #909090;
  color: #212121;
  font-weight: 500;
}
.bl_post table tbody td {
  background: #fff;
  border: 1px solid #909090;
}
.bl_post * + table {
  margin-top: 30px;
}
@media screen and (min-width: 1024px) {
  .bl_post * + table {
    margin-top: 30px;
  }
}
.bl_post table.el_table_none {
  border: none !important;
}
.bl_post table.el_table_none > thead > tr > th,
.bl_post table.el_table_none > thead > tr > td,
.bl_post table.el_table_none > tbody > tr > th,
.bl_post table.el_table_none > tbody > tr > td {
  color: #212121;
  background: transparent;
  border: none !important;
}
.bl_post table.el_table_none > thead > tr,
.bl_post table.el_table_none > tbody > tr {
  border: none !important;
}
.bl_post table.el_table_responsive {
  width: 100%;
}
.bl_post table.el_table_responsive th,
.bl_post table.el_table_responsive td {
  display: block;
  border: none;
}
@media screen and (min-width: 768px) {
  .bl_post table.el_table_responsive th,
  .bl_post table.el_table_responsive td {
    display: table-cell;
    border: 1px solid #909090;
  }
}
@media screen and (max-width: 767px) {
  .bl_post table.el_table_responsive th,
  .bl_post table.el_table_responsive td {
    width: 100% !important;
  }
}
.bl_post table.el_table_responsive th {
  border-bottom: 1px solid #909090;
}
.bl_post table.el_table_responsive td {
  vertical-align: top;
}
.bl_post table.el_table_responsive tr {
  border-bottom: 1px solid #909090;
}
@media screen and (min-width: 768px) {
  .bl_post table.el_table_responsive tr {
    border: none;
  }
}
.bl_post table.el_table_fix {
  table-layout: fixed !important;
}
.bl_post * + .bl_overflowSP {
  margin-top: 30px;
}
.bl_post .bl_overflowSP {
  width: 100% !important;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.bl_post .bl_overflowSP table {
  min-width: 800px;
}
.bl_post .bl_overflowSP::before {
  content: "→スクロールできます。";
  display: inline-block;
  margin-bottom: 10px;
  line-height: 1;
}
@media screen and (min-width: 1680px) {
  .bl_post .bl_overflowSP table {
    min-width: 100%;
  }
  .bl_post .bl_overflowSP::before {
    display: none;
  }
}
.bl_post .el_tableofcontents_grid {
  display: grid;
  grid-template-columns: auto;
  gap: 15px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (min-width: 768px) {
  .bl_post .el_tableofcontents_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .bl_post .el_tableofcontents_grid {
    gap: 40px 80px;
  }
}
.bl_post .el_tableofcontents {
  background: #fff;
  border: 1px solid #cecece;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .bl_post .el_tableofcontents {
    width: 100%;
    vertical-align: text-top;
  }
  .bl_post .el_tableofcontents.is-even {
    margin-right: 0;
  }
}
.bl_post .el_tableofcontents_ttl {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--color-light);
  padding: 22px 14px;
  padding-right: 70px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5555555556;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #212121;
}
@media screen and (min-width: 1024px) {
  .bl_post .el_tableofcontents_ttl {
    height: auto;
    min-height: 94px;
    padding: 30px 29px;
    padding-right: 105px;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}
.bl_post .el_tableofcontents_ttl::after {
  content: "\e90a";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 33px;
  background: var(--color-primary);
  line-height: 30px;
  font-size: 11px;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .bl_post .el_tableofcontents_ttl::after {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    right: 25px;
    line-height: 40px;
    font-size: 13px;
  }
}
.bl_post .el_tableofcontents > li > a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 100%;
}
.bl_post .el_tableofcontents > li > a::after {
  content: "\e900";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  right: 14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 33px;
  height: 33px;
  border-radius: 33px;
  background: #fff;
  line-height: 33px;
  font-size: 10px;
  color: #1985d3;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .bl_post .el_tableofcontents > li > a::after {
    right: 26px;
  }
}
.bl_post .el_tableofcontents_lv2 {
  padding: 16px 11px 20px;
}
@media screen and (min-width: 1024px) {
  .bl_post .el_tableofcontents_lv2 {
    padding: 30px 20px 21px;
  }
}
.bl_post .el_tableofcontents_lv2 > li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 15px;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .bl_post .el_tableofcontents_lv2 > li {
    padding-left: 30px;
  }
}
.bl_post .el_tableofcontents_lv2 > li:last-of-type {
  margin-bottom: 0;
}
.bl_post .el_tableofcontents_lv2 > li:not(.el_tableofcontents_hasChiled)::before {
  content: "\e90a";
  color: #1985d3;
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  display: block;
  position: absolute;
  top: 6px;
  left: 5px;
  width: 13px;
  height: 13px;
}
@media screen and (min-width: 1024px) {
  .bl_post .el_tableofcontents_lv2 > li:not(.el_tableofcontents_hasChiled)::before {
    left: 10px;
  }
}
.bl_post .el_tableofcontents_lv2 > li > a {
  position: relative;
  color: #1985d3;
  text-decoration: underline !important;
}
@media screen and (min-width: 1024px) {
  .bl_post .el_tableofcontents_lv2 > li > a:hover {
    text-decoration: none !important;
  }
}
.bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled {
  display: grid;
  grid-template-areas: "icon list" "icon childlist";
  grid-template-columns: 24px 1fr;
  padding-left: 0;
  margin-bottom: 15px;
}
@media screen and (min-width: 1024px) {
  .bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled {
    grid-template-columns: 31px 1fr;
  }
}
.bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled .el_btnToggle {
  grid-area: icon;
  display: block;
  width: 14px;
  height: 14px;
  -webkit-transform: translate(5px, 5px);
          transform: translate(5px, 5px);
  background: url(../images/common/icon/icon_tableofcontents_open.svg) no-repeat center/contain;
  text-align: center;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled .el_btnToggle {
    -webkit-transform: translate(8px, 6px);
            transform: translate(8px, 6px);
  }
}
.bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled .el_btnToggle.is_open {
  background: url(../images/common/icon/icon_tableofcontents_close.svg) no-repeat center/contain;
}
.bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled > a {
  grid-area: list;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #0087c9;
  text-decoration: underline !important;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled > a:hover {
    text-decoration: none !important;
  }
}
.bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled > ul {
  grid-area: childlist;
  display: none;
}
.bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled > ul li {
  position: relative;
  padding-left: 14px;
  margin-top: 12px;
}
.bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled > ul li::before {
  content: "-";
  display: inline-block;
  position: absolute;
  top: 1px;
  left: 0;
}
.bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled > ul li > a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #0087c9;
  text-decoration: underline !important;
}
.bl_post .el_linkBtn {
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: auto;
  padding: 15px 30px 15px;
  padding-right: 55px;
  margin-bottom: 15px;
  margin-right: 8px;
  background: var(--color-primary);
  border-radius: 7px;
  border: 1px solid var(--color-primary);
  font-weight: 500;
  line-height: 1.7333333333;
  color: #fff;
  text-decoration: none !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .bl_post .el_linkBtn {
    padding: 15px 30px;
    padding-right: 68px;
    margin-right: 30px;
  }
  .bl_post .el_linkBtn:hover {
    background: #fff;
    opacity: 1;
    color: var(--color-primary);
  }
  .bl_post .el_linkBtn:hover::after {
    color: var(--color-primary);
  }
}
.bl_post .el_linkBtn:last-of-type {
  margin-right: 0;
}
.bl_post .el_linkBtn::after {
  content: "\e90a";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  right: 14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .bl_post .el_linkBtn::after {
    right: 30px;
    font-size: 12px;
  }
}
.bl_post .bl_accordion,
.bl_post .bl_qanda {
  margin-bottom: 15px;
  background: #fff;
  border: 1px solid var(--color-primary);
  border-radius: 10px;
}
@media screen and (min-width: 1024px) {
  .bl_post .bl_accordion,
  .bl_post .bl_qanda {
    margin-bottom: 20px;
  }
}
.bl_post .bl_accordion_ttl,
.bl_post .bl_qanda_ttl {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 16px 44px 16px 15px;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .bl_post .bl_accordion_ttl,
  .bl_post .bl_qanda_ttl {
    padding: 24px 55px 24px 30px;
  }
}
.bl_post .bl_accordion_ttl *:last-of-type,
.bl_post .bl_qanda_ttl *:last-of-type {
  margin-bottom: 0;
}
.bl_post .bl_accordion_ttl p,
.bl_post .bl_qanda_ttl p {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5555555556;
  letter-spacing: 0em;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .bl_post .bl_accordion_ttl p,
  .bl_post .bl_qanda_ttl p {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}
.bl_post .bl_accordion_ttl::before, .bl_post .bl_accordion_ttl::after,
.bl_post .bl_qanda_ttl::before,
.bl_post .bl_qanda_ttl::after {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 15px;
  height: 2px;
  background-color: var(--color-primary);
  position: absolute;
  top: 50%;
  right: 14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .bl_post .bl_accordion_ttl::before, .bl_post .bl_accordion_ttl::after,
  .bl_post .bl_qanda_ttl::before,
  .bl_post .bl_qanda_ttl::after {
    right: 30px;
  }
}
.bl_post .bl_accordion_ttl::before,
.bl_post .bl_qanda_ttl::before {
  width: 2px;
  height: 15px;
  right: 20px;
}
@media screen and (min-width: 1024px) {
  .bl_post .bl_accordion_ttl::before,
  .bl_post .bl_qanda_ttl::before {
    right: 36px;
  }
}
.bl_post .bl_accordion_ttl.is_open::before,
.bl_post .bl_qanda_ttl.is_open::before {
  display: none;
}
.bl_post .bl_accordion_body,
.bl_post .bl_qanda_body {
  position: relative;
  display: none;
  padding: 0 18px 15px;
}
@media screen and (min-width: 1024px) {
  .bl_post .bl_accordion_body,
  .bl_post .bl_qanda_body {
    padding: 16px 20px;
  }
}
.bl_post .bl_accordion_body *:last-of-type,
.bl_post .bl_qanda_body *:last-of-type {
  margin-bottom: 0;
}
.bl_post .bl_accordion.bl_accordion_history,
.bl_post .bl_qanda.bl_accordion_history {
  border: none;
}
.bl_post .bl_accordion.bl_accordion_history .bl_accordion_ttl,
.bl_post .bl_qanda.bl_accordion_history .bl_accordion_ttl {
  padding: 3px 22px;
}
.bl_post .bl_accordion.bl_accordion_history .bl_accordion_ttl p,
.bl_post .bl_qanda.bl_accordion_history .bl_accordion_ttl p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.8666666667;
  letter-spacing: 0em;
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .bl_post .bl_accordion.bl_accordion_history .bl_accordion_ttl p,
  .bl_post .bl_qanda.bl_accordion_history .bl_accordion_ttl p {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.8666666667;
    letter-spacing: 0em;
  }
}
.bl_post .bl_accordion.bl_accordion_history .bl_accordion_ttl::before, .bl_post .bl_accordion.bl_accordion_history .bl_accordion_ttl::after,
.bl_post .bl_qanda.bl_accordion_history .bl_accordion_ttl::before,
.bl_post .bl_qanda.bl_accordion_history .bl_accordion_ttl::after {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 10px;
  height: 2px;
  background-color: var(--color-primary);
  position: absolute;
  top: 50%;
  right: auto;
  left: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.bl_post .bl_accordion.bl_accordion_history .bl_accordion_ttl::before,
.bl_post .bl_qanda.bl_accordion_history .bl_accordion_ttl::before {
  width: 2px;
  height: 10px;
  right: auto;
  left: 9px;
}
.bl_post .bl_accordion.bl_accordion_history .bl_accordion_ttl.is_open::before,
.bl_post .bl_qanda.bl_accordion_history .bl_accordion_ttl.is_open::before {
  display: none;
}
.bl_post .bl_qanda_ttl {
  padding-left: 47px;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .bl_post .bl_qanda_ttl {
    padding-left: 78px;
  }
}
.bl_post .bl_qanda_ttl p::before {
  position: absolute;
  display: block;
  width: 31px;
  height: 31px;
  top: 16px;
  left: 10px;
  content: "Q";
  font-family: "Inter", sans-serif;
  color: var(--color-primary);
  text-align: center;
  font-weight: 500;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .bl_post .bl_qanda_ttl p::before {
    top: 25px;
    left: 24px;
  }
}
.bl_post .bl_qanda_body {
  padding: 0;
  position: relative;
}
.bl_post .bl_qanda_body .bl_qanda_bodyInner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 85px;
  padding: 0 14px 15px;
}
@media screen and (min-width: 1024px) {
  .bl_post .bl_qanda_body .bl_qanda_bodyInner {
    padding: 0 33px 30px;
  }
}
.bl_post .el_flow {
  list-style: none;
  counter-reset: num;
}
.bl_post .el_flow li {
  position: relative;
  padding: 14px 16px;
  background: var(--color-flow);
  margin-bottom: 36px;
}
@media screen and (min-width: 1024px) {
  .bl_post .el_flow li {
    padding: 23px 27px 20px;
  }
}
.bl_post .el_flow li:last-of-type::after {
  display: none;
}
.bl_post .el_flow li::after {
  position: absolute;
  top: calc(100% + 11px);
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
  content: "\e90a";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--color-primary);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 14px;
}
.bl_post .el_flow li > p:first-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6666666667;
}
@media screen and (min-width: 1024px) {
  .bl_post .el_flow li > p:first-of-type {
    margin-bottom: 16px;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.5;
  }
}
.bl_post .el_flow li .el_flow_cont p {
  margin-bottom: 1em;
}
.bl_post .el_flow li .el_flow_cont *:last-of-type {
  margin-bottom: 0;
}
.bl_post .el_flow_num li > p:first-of-type {
  position: relative;
}
@media screen and (min-width: 768px) {
  .bl_post .el_flow_num li > p:first-of-type {
    padding-left: 80px;
  }
}
.bl_post .el_flow_num li > p:first-of-type::before {
  content: counter(num, decimal-leading-zero);
  counter-increment: num;
  display: block;
  width: 80px;
  margin-bottom: 9px;
  border-right: 1px solid #959595;
  line-height: 1;
  font-size: 30px;
  font-size: 3rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .bl_post .el_flow_num li > p:first-of-type::before {
    position: absolute;
    top: 2px;
    left: 0px;
    display: inline-block;
    padding-right: 1px;
    width: 52px;
    margin-bottom: 0;
  }
}
.bl_post img {
  display: block;
}
.bl_post figure,
.bl_post .el_figure {
  display: table !important;
}
.bl_post figure figcaption,
.bl_post figure .el_caption,
.bl_post .el_figure figcaption,
.bl_post .el_figure .el_caption {
  display: table-caption !important;
  caption-side: bottom;
  margin-top: 6px;
  line-height: 1.8666666667;
}
.bl_post * + figure,
.bl_post .el_figure_fluid {
  margin-top: 20px;
}
.bl_post .el_figure_fluid {
  margin: 0 calc(50% - 50vw) 25px;
}
@media screen and (min-width: 768px) {
  .bl_post .el_figure_fluid {
    margin: 0 auto 50px;
  }
}
.bl_post .el_figure_fluid img {
  border-radius: 0;
}
.bl_post .el_figure_fluid figcaption {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .bl_post .el_figure_fluid figcaption {
    width: 100%;
  }
}
.bl_post .alignleft {
  margin: 0 auto 10px;
}
@media screen and (min-width: 768px) {
  .bl_post .alignleft {
    float: left;
    margin-right: 2em;
    margin-bottom: 5px;
  }
}
.bl_post .alignright {
  margin: 0 auto 10px;
}
@media screen and (min-width: 768px) {
  .bl_post .alignright {
    float: right;
    margin-left: 2em;
    margin-bottom: 5px;
  }
}
.bl_post .aligncenter {
  margin-bottom: 10px;
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.bl_post .el_figureFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.bl_post .el_figureFlex > div {
  width: 47%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .bl_post .el_figureFlex > div {
    width: calc(50% - 20px);
  }
}
.bl_post .el_figureFlex > div .wp-caption,
.bl_post .el_figureFlex > div img {
  width: 100% !important;
}
.bl_post .el_figureFlex > div figcaption,
.bl_post .el_figureFlex > div p {
  line-height: 1.8666666667;
}
.bl_post .el_figureFlex > div figure img {
  margin-bottom: 0;
}
.bl_post .el_figureFlex > div .wp-caption-dd,
.bl_post .el_figureFlex > div img + p,
.bl_post .el_figureFlex > div img + figcaption {
  margin-top: 10px;
}
.bl_post .el_figureFlex > div a {
  color: #212121;
}
.bl_post .el_figureFlex__half {
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .bl_post .el_figureFlex__half {
    gap: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .bl_post .el_figureFlex__half {
    gap: 80px;
  }
}
.bl_post .el_figureFlex__half > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 15px) / 2);
          flex: 0 0 calc((100% - 15px) / 2);
}
@media screen and (min-width: 768px) {
  .bl_post .el_figureFlex__half > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 40px) / 2);
            flex: 0 0 calc((100% - 40px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .bl_post .el_figureFlex__half > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 80px) / 2);
            flex: 0 0 calc((100% - 80px) / 2);
  }
}
.bl_post .el_figureFlex__onethird {
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .bl_post .el_figureFlex__onethird {
    gap: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .bl_post .el_figureFlex__onethird {
    gap: 45px;
  }
}
.bl_post .el_figureFlex__onethird > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 15px) / 2);
          flex: 0 0 calc((100% - 15px) / 2);
}
@media screen and (min-width: 768px) {
  .bl_post .el_figureFlex__onethird > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 40px) / 3);
            flex: 0 0 calc((100% - 40px) / 3);
  }
}
@media screen and (min-width: 1024px) {
  .bl_post .el_figureFlex__onethird > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 90px) / 3);
            flex: 0 0 calc((100% - 90px) / 3);
  }
}
.bl_post .el_figureFlex__quarter {
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .bl_post .el_figureFlex__quarter {
    gap: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .bl_post .el_figureFlex__quarter {
    gap: 36px;
  }
}
.bl_post .el_figureFlex__quarter > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 15px) / 2);
          flex: 0 0 calc((100% - 15px) / 2);
}
@media screen and (min-width: 768px) {
  .bl_post .el_figureFlex__quarter > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 60px) / 4);
            flex: 0 0 calc((100% - 60px) / 4);
  }
}
@media screen and (min-width: 1024px) {
  .bl_post .el_figureFlex__quarter > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 108px) / 4);
            flex: 0 0 calc((100% - 108px) / 4);
  }
}
@media screen and (min-width: 768px) {
  .bl_post .el_figureFlex__halfTitle {
    gap: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .bl_post .el_figureFlex__halfTitle {
    gap: 80px;
  }
}
.bl_post .el_figureFlex__halfTitle > div {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .bl_post .el_figureFlex__halfTitle > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 40px) / 2);
            flex: 0 0 calc((100% - 40px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .bl_post .el_figureFlex__halfTitle > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 80px) / 2);
            flex: 0 0 calc((100% - 80px) / 2);
  }
}
.bl_post .el_figureFlex__halfTitle > div + div {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .bl_post .el_figureFlex__halfTitle > div + div {
    margin-top: 0;
  }
}
.bl_post .el_figureFlex__halfTitle + * {
  margin-top: 40px;
}
.bl_post * + .el_figureFlex {
  margin-top: 25px;
}
@media screen and (min-width: 1024px) {
  .bl_post * + .el_figureFlex {
    margin-top: 50px;
  }
}

.icon_pdf::after,
.icon_excel::after,
.icon_word::after,
.icon_ppt::after,
.icon_blank::after,
.icon_new::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1em;
  margin: 0 5px 3px;
  margin-right: 5px;
  vertical-align: middle;
}

.icon_pdf::after {
  background: url(../images/common/icon/icon_pdf.svg) no-repeat center center/contain;
}

.icon_excel::after {
  background: url(../images/common/icon/icon_excel.svg) no-repeat center center/contain;
}

.icon_word::after {
  background: url(../images/common/icon/icon_word.svg) no-repeat center center/contain;
}

.icon_ppt::after {
  height: 15px;
  background: url(../images/common/icon/icon_ppt.svg) no-repeat center center/contain;
}

.icon_blank::after {
  display: inline-block;
  background-color: #909090;
  -webkit-mask: url("../images/common/icon/icon_blank.svg") no-repeat 50%/contain;
          mask: url("../images/common/icon/icon_blank.svg") no-repeat 50%/contain;
  width: 15px;
}

.icon_new:not(.icon_pdf)::after,
.icon_pdf.icon_new::after {
  content: "NEW";
  display: inline-block;
  width: auto;
  height: 1em;
  vertical-align: middle;
  font-weight: 500;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: #e3001e;
  line-height: 1;
  white-space: nowrap;
}

.icon_new:not(.icon_pdf)::after {
  margin: 0 0 5px;
}

.icon_pdf.icon_new::after {
  display: inline-block;
  width: 30px;
  height: 15px;
  padding-left: 35px;
  margin: 0 0px 2px;
  background: url(../images/common/icon/icon_pdf.svg) no-repeat left center/contain;
}

/* =================================================
    .bl_archive
=================================================== */
#sec_archive {
  padding-bottom: clamp(60px, 7.9969183359px + 13.8674884438vw, 150px);
}
#sec_archive .el_archiveTtl {
  position: relative;
  background: var(--color-primary);
  border-radius: 7px;
  margin-top: 60px;
  padding: 10px 15px;
  font-size: clamp(24px, 18.2218798151px + 1.5408320493vw, 34px);
  --_lh-t: clamp(0, calc((100vw - 375px) / (1024px - 375px)), 1);
  line-height: calc(1.3333333333 + -0.1568627451 * var(--_lh-t));
  letter-spacing: clamp(0.05em, 0.05em + 0vw, 0.05em);
  font-weight: 700;
  color: #fff;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  #sec_archive .el_archiveTtl {
    margin-top: 0;
    padding: 10px 29px;
  }
}
#sec_archive .bl_newsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-top: 12px;
}
@media screen and (min-width: 1024px) {
  #sec_archive .bl_newsList {
    margin-top: 18px;
  }
}
#sec_archive .bl_newsList .bl_newsItem {
  padding-top: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid #c7c7c7;
}
@media screen and (min-width: 1024px) {
  #sec_archive .bl_newsList .bl_newsItem {
    padding-bottom: 18px;
  }
}
#sec_archive .bl_newsList .bl_newsItem .bl_newsLink {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px 15px;
  color: #212121;
}
@media screen and (min-width: 1024px) {
  #sec_archive .bl_newsList .bl_newsItem .bl_newsLink {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 30px;
  }
}
#sec_archive .bl_newsList .bl_newsItem .bl_newsLink .el_date {
  -ms-flex-preferred-size: 85px;
      flex-basis: 85px;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1;
}
#sec_archive .bl_newsList .bl_newsItem .bl_newsLink .el_date time {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.025em;
  font-weight: 300;
  color: inherit;
}
#sec_archive .bl_newsList .bl_newsItem .bl_newsLink h3 {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5625;
  letter-spacing: 0.025em;
}
#sec_archive .bl_pagenation {
  margin-top: 30px;
}
@media screen and (min-width: 1024px) {
  #sec_archive .bl_pagenation {
    margin-top: 60px;
  }
}

/* =================================================
    .bl_single
=================================================== */
.bl_single {
  padding-bottom: clamp(60px, 7.9969183359px + 13.8674884438vw, 150px);
}
.bl_single .bl_single_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.bl_single .el_singleTtl {
  margin-top: 15px;
  margin-bottom: 22px;
  position: relative;
  background: var(--color-primary);
  border-radius: 7px;
  padding: 7px 15px;
  font-size: clamp(24px, 18.2218798151px + 1.5408320493vw, 34px);
  --_lh-t: clamp(0, calc((100vw - 375px) / (1024px - 375px)), 1);
  line-height: calc(1.3333333333 + -0.1568627451 * var(--_lh-t));
  letter-spacing: clamp(0.05em, 0.05em + 0vw, 0.05em);
  font-weight: 700;
  color: #fff;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .bl_single .el_singleTtl {
    margin-top: 23px;
    margin-bottom: 25px;
    padding: 10px 29px;
  }
}
.bl_single .bl_btnWrap {
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .bl_single .bl_btnWrap {
    margin-top: 60px;
  }
}
.bl_single .el_btn_backtolist {
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: auto;
  padding: 15px 50px 15px;
  padding-left: 58px;
  background: var(--color-primary);
  border-radius: 7px;
  border: 1px solid var(--color-primary);
  font-weight: 500;
  line-height: 1.7333333333;
  color: #fff;
  text-decoration: none !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .bl_single .el_btn_backtolist {
    padding: 15px 34px;
    padding-left: 68px;
  }
  .bl_single .el_btn_backtolist:hover {
    background: #fff;
    opacity: 1;
    color: var(--color-primary);
  }
  .bl_single .el_btn_backtolist:hover::before {
    color: var(--color-primary);
  }
}
.bl_single .el_btn_backtolist::before {
  content: "\e90a";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  left: 21px;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  font-size: 12px;
  color: #fff;
  text-align: center;
}

/* =================================================
    #sec_sitemap
=================================================== */
#sec_sitemap {
  padding-bottom: clamp(60px, 36.8875192604px + 6.1633281972vw, 100px);
  display: grid;
  grid-template-columns: auto;
  gap: 30px;
}
@media screen and (min-width: 1024px) {
  #sec_sitemap {
    grid-template-columns: repeat(2, 1fr);
    gap: 7.5%;
    row-gap: 62px;
  }
}
#sec_sitemap .bl_sitemap_list > li > a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  padding: 9px 15px;
  background: #dcedf8;
  font-size: clamp(19px, 17.844375963px + 0.3081664099vw, 21px);
  --_lh-t: clamp(0, calc((100vw - 375px) / (1024px - 375px)), 1);
  line-height: calc(1.4736842105 + -0.0927318296 * var(--_lh-t));
  letter-spacing: clamp(0.025em, 0.025em + 0vw, 0.025em);
  color: #212121;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  #sec_sitemap .bl_sitemap_list > li > a {
    padding: 16px 15px;
  }
}
#sec_sitemap .bl_sitemap_list > li > a span {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding-left: 32px;
}
@media screen and (min-width: 1024px) {
  #sec_sitemap .bl_sitemap_list > li > a span {
    padding-left: 38px;
  }
}
#sec_sitemap .bl_sitemap_list > li > a span::before {
  display: grid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  place-items: center;
  width: 25px;
  height: 25px;
  background: #fff;
  border-radius: 50px;
  position: absolute;
  top: 3px;
  left: 0;
  text-align: center;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 25px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90a";
  color: #1985d3;
  font-size: 8px;
}
#sec_sitemap .bl_sitemap_list > li > ul {
  padding-left: 15px;
  margin-top: 25px;
}
#sec_sitemap .bl_sitemap_list > li > ul > li + li {
  margin-top: 5px;
}
#sec_sitemap .bl_sitemap_list > li > ul > li > a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 35px;
  font-size: clamp(17px, 16.4221879815px + 0.1540832049vw, 18px);
  --_lh-t: clamp(0, calc((100vw - 375px) / (1024px - 375px)), 1);
  line-height: calc(1.4705882353 + 0.1960784314 * var(--_lh-t));
  letter-spacing: clamp(0.05em, 0.05em + 0vw, 0.05em);
  color: #212121;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  #sec_sitemap .bl_sitemap_list > li > ul > li > a {
    padding-left: 35px;
  }
}
#sec_sitemap .bl_sitemap_list > li > ul > li > a::before {
  display: grid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  place-items: center;
  width: 25px;
  height: 25px;
  background: #1985d3;
  border-radius: 50px;
  position: absolute;
  top: 2px;
  left: 0;
  text-align: center;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90a";
  color: #fff;
  font-size: 8px;
}
@media screen and (min-width: 1024px) {
  #sec_sitemap .bl_sitemap_list > li > ul > li > a::before {
    top: 3px;
  }
}
#sec_sitemap .bl_sitemap_list > li > ul > li > ul {
  padding-left: 23px;
  margin-top: 17px;
}
@media screen and (min-width: 1024px) {
  #sec_sitemap .bl_sitemap_list > li > ul > li > ul {
    margin-top: 10px;
    padding-left: 43px;
  }
}
#sec_sitemap .bl_sitemap_list > li > ul > li > ul > li {
  margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  #sec_sitemap .bl_sitemap_list > li > ul > li > ul > li {
    margin-bottom: 12px;
  }
}
#sec_sitemap .bl_sitemap_list > li > ul > li > ul > li > a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 14px;
  font-size: clamp(16px, 16px + 0vw, 16px);
  --_lh-t: clamp(0, calc((100vw - 375px) / (1024px - 375px)), 1);
  line-height: calc(1.5 + 0 * var(--_lh-t));
  letter-spacing: clamp(0.025em, 0.025em + 0vw, 0.025em);
  color: #0087c9;
}
#sec_sitemap .bl_sitemap_list > li > ul > li > ul > li > a::before {
  display: grid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  place-items: center;
  position: absolute;
  top: 10px;
  left: 0;
  text-align: center;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90a";
  color: #1985d3;
  font-size: 9px;
}
#sec_sitemap .bl_sitemap_list > li > ul > li > ul > li > ul {
  padding-left: 15px;
  margin-top: 5px;
}
@media screen and (min-width: 1024px) {
  #sec_sitemap .bl_sitemap_list > li > ul > li > ul > li > ul {
    padding-left: 43px;
    margin-top: 2px;
  }
}
#sec_sitemap .bl_sitemap_list > li > ul > li > ul > li > ul > li > a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0em;
  padding-left: 14px;
  color: #0087c9;
}
@media screen and (min-width: 1024px) {
  #sec_sitemap .bl_sitemap_list > li > ul > li > ul > li > ul > li > a {
    padding-left: 20px;
  }
}
#sec_sitemap .bl_sitemap_list > li > ul > li > ul > li > ul > li > a::before {
  display: grid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  place-items: center;
  position: absolute;
  top: 8px;
  left: 0;
  text-align: center;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90a";
  color: #1985d3;
  font-size: 9px;
}
#sec_sitemap .bl_sitemap_list > li > ul > li > ul > li > ul > li > ul {
  padding-left: 15px;
}
@media screen and (min-width: 1024px) {
  #sec_sitemap .bl_sitemap_list > li > ul > li > ul > li > ul > li > ul {
    padding-left: 24px;
  }
}
#sec_sitemap .bl_sitemap_list > li > ul > li > ul > li > ul > li > ul > li > a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.2857142857;
  letter-spacing: 0em;
  padding-left: 14px;
  color: #0087c9;
}
#sec_sitemap .bl_sitemap_list > li > ul > li > ul > li > ul > li > ul > li > a::before {
  content: "−";
  display: grid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  place-items: center;
  position: absolute;
  top: 0px;
  left: -2px;
  color: #1985d3;
  font-size: 16px;
}

/* ======================================
  .wp-pagenavi
======================================= */
.wp-pagenavi {
  width: calc(100% - 30px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  align-items: center;
  gap: 15px;
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-block;
  margin: 0;
  padding: 0;
  color: #212121;
  border: none;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
.wp-pagenavi .page {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 35px;
  width: 35px;
  height: 35px;
  background-color: transparent;
  color: #212121;
}
@media screen and (min-width: 1024px) {
  .wp-pagenavi .page:hover {
    border-radius: 35px;
    background-color: #1985d3;
    color: #fff;
    opacity: 1;
  }
}
.wp-pagenavi span.current {
  line-height: 35px;
  width: 35px;
  height: 35px;
  border-radius: 35px;
  color: #fff;
  background-color: #1985d3;
}
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  position: relative;
  font-size: 17px;
  font-size: 1.7rem;
  color: #212121;
  font-weight: 700;
}
.wp-pagenavi .previouspostslink {
  margin-right: 1em;
  color: #1985d3;
}
.wp-pagenavi .nextpostslink {
  margin-left: 1em;
  color: #1985d3;
}/*# sourceMappingURL=style.css.map */