@charset "UTF-8";
/****************************************

  Reset CSS

*****************************************/
html,
body,
div,
span,
iframe,
blockquote,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
picture,
figure,
img,
ol,
ul,
li,
article,
aside,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  text-decoration: none;
  color: #202020;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

article,
aside,
footer,
header,
menu,
nav,
section,
img {
  display: block;
}

html {
  font-size: 62.5%;
  font-family:
    "Noto Sans JP", "Yu Gothic UI", "Arial", "Helvetica Neue",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  background-color: #ffffff;
  scroll-padding-top: 72px;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 110px;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  body {
    padding-top: 72px;
  }
}

main {
  padding-top: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #f2f5fa;
}

footer {
  margin-top: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  img {
    width: 100%;
  }
}

ol,
ul {
  list-style: none;
}

/****************************************

  Common Block

*****************************************/
.bl_common_head_ttl {
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 2rem;
  font-weight: bold;
  color: #eaf6fb;
}
@media screen and (min-width: 768px) {
  .bl_common_head_ttl {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/****************************************

  Cookie CSS

*****************************************/
#cookie-notice a,
#cookie-notice span {
  color: #eaf6fb;
}

/****************************************

  Section CSS

*****************************************/
.ly_section__inner {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 6%;
  padding-right: 6%;
}
@media screen and (min-width: 1024px) {
  .ly_section__inner {
    padding-left: 60px;
    padding-right: 60px;
  }
}

.bl_section__title {
  margin-bottom: 40px;
  font-weight: bold;
  text-align: center;
  font-size: clamp(2.8rem, 1rem + 2vw, 3.6rem);
  /*
  @media screen and (min-width: 768px) {
    font-size: 2.4rem;
  }
  @media screen and (min-width: 768px) {
    font-size: 3rem;
  }*/
}
.bl_section__desc {
  margin-top: 40px;
  margin-bottom: 40px;
  font-weight: bold;
  text-align: center;
}

.hp_section_bg {
  background-color: #004b9c;
}
.hp_section_bg .ly_section__inner {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .hp_section_bg .ly_section__inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.hp_section_bg__accent {
  background-color: #d4e4f4;
}
.hp_section_bg__accent .ly_section__inner {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .hp_section_bg__accent .ly_section__inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.hp_section_bg__light {
  background-color: #f2f5fa;
}
.hp_section_bg__light .ly_section__inner {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .hp_section_bg__light .ly_section__inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/****************************************

  link CSS

*****************************************/
a img:hover,
a img:active {
  opacity: 0.8;
}

/****************************************

  CardUnit CSS

*****************************************/
.bl_cardUnit {
  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: 600px) {
  .bl_cardUnit {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.bl_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 10px 1px rgba(170, 170, 170, 0.5);
  box-shadow: 0 0 10px 1px rgba(170, 170, 170, 0.5);
}
.bl_card:not(:first-of-type) {
  margin-top: 40px;
}
@media screen and (min-width: 600px) {
  .bl_card {
    width: calc((100% - 40px) / 2);
    margin-right: 40px;
  }
  .bl_card:nth-of-type(2) {
    margin-top: 0;
  }
  .bl_card:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 960px) {
  .bl_card {
    width: calc((100% - 80px) / 3);
  }
  .bl_card:nth-of-type(3) {
    margin-top: 0;
  }
  .bl_card:nth-of-type(2n) {
    margin-right: 40px;
  }
  .bl_card:nth-of-type(3n) {
    margin-right: 0;
  }
}
.bl_card_thumb > img {
  border-radius: 20px 20px 0 0;
}
.bl_card_body {
  margin-top: 24px;
  margin-bottom: 24px;
  margin-left: 16px;
  margin-right: 16px;
}
.bl_card_logo {
  width: 100%;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}
.bl_card__date {
  margin-bottom: 16px;
}
.bl_card_ttl {
  font-size: 1.6rem;
  font-weight: bold;
}
.bl_card_desc {
  margin-top: 16px;
}
.bl_card_category {
  margin-top: 16px;
}
.bl_card_btn_wrapper {
  margin-top: auto;
  margin-bottom: 24px;
  margin-left: 16px;
  margin-right: 16px;
}
.bl_card_btn {
  display: block;
  width: 100%;
  max-width: 360px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #eaf6fb;
  background-color: #004b9c;
  border-radius: 32px;
}
.bl_card_btn:hover,
.bl_card_btn:active {
  opacity: 0.8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.bl_card__full {
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
}
.bl_card__full .bl_card_thumb > img {
  border-radius: 0;
}
.bl_card__full .bl_card_body {
  margin-left: 0;
  margin-right: 0;
}

/****************************************

  Helper CSS

*****************************************/
.hp_mgNone {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.hp_mgTop {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .hp_mgTop {
    margin-top: 80px;
  }
}
.hp_mgBottom {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .hp_mgBottom {
    margin-bottom: 80px;
  }
}
.hp_mgTB {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .hp_mgTB {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
.hp_ptTB {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .hp_ptTB {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.hp_mgLR {
  margin-left: auto;
  margin-right: auto;
}
.hp_dispSP {
  display: block;
}
@media screen and (min-width: 768px) {
  .hp_dispSP {
    display: none;
  }
}
.hp_dispTab {
  display: none;
}
@media screen and (min-width: 768px) {
  .hp_dispTab {
    display: block;
  }
}
.hp_dispPC {
  display: none;
}
@media screen and (min-width: 1024px) {
  .hp_dispPC {
    display: block;
  }
}
.hp_txtCenter {
  text-align: center;
}
.hp_txtCenter_spStart {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .hp_txtCenter_spStart {
    text-align: center;
  }
}
.hp_txtStart_spCenter {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .hp_txtStart_spCenter {
    text-align: left;
  }
}
.hp_fwBold {
  font-weight: bold;
}
.hp_txtPrimary {
  color: #004b9c;
  font-weight: bold;
}
.hp_txtAccent {
  color: #3179c7;
  font-weight: bold;
}
.hp_txtWhite {
  color: #ffffff;
  font-weight: bold;
}
.hp_txtSmall {
  font-size: 0.875rem;
}
.hp_post_middle {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}
.hp_post_box {
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (min-width: 768px) {
  .hp_post_box {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

.hp_archive_cardUnit {
  margin-top: 40px;
}
@media screen and (min-width: 600px) {
  .hp_archive_cardUnit .bl_card {
    width: calc((100% - 40px) / 2);
    margin-right: 40px;
  }
  .hp_archive_cardUnit .bl_card:nth-of-type(2) {
    margin-top: 0;
  }
  .hp_archive_cardUnit .bl_card:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 960px) {
  .hp_archive_cardUnit .bl_card:nth-of-type(3) {
    margin-top: 40px;
  }
  .hp_archive_cardUnit .bl_card:nth-of-type(2n) {
    margin-right: 0;
  }
}

.hp_border {
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  border: 1px solid #d1d1d1;
}
@media screen and (min-width: 768px) {
  .hp_border {
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

.hp_thankspage_mv {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.hp_thanks_bg01 {
  padding-top: 40px;
  padding-bottom: 40px;
  background-image: url("../images/thanks/bg01.jpg");
  background-size: cover;
  background-position: center center;
}
@media screen and (min-width: 768px) {
  .hp_thanks_bg01 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.hp_constPage_point_pic_pc {
  margin-top: auto;
  margin-bottom: auto;
  width: 100%;
  max-width: 320px;
}

.hp_restaurantPage_MV_txtarea {
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (min-width: 768px) {
  .hp_restaurantPage_MV_txtarea {
    padding-left: 0;
    padding-right: 0;
  }
}

.hp_bs_mx_auto {
  margin-left: auto;
  margin-right: auto;
}

.hp_bs_mt_auto {
  margin-top: auto;
}

.hp_bs_mb_auto {
  margin-bottom: auto;
}

.hp_bs_my_auto {
  margin-top: auto;
  margin-bottom: auto;
}

.hp_flex_gap_1 {
  gap: 0.4rem;
}

.hp_flex_gap_2 {
  gap: 0.8rem;
}

.hp_flex_gap_3 {
  gap: 1.6rem;
}

.hp_flex_gap_4 {
  gap: 2.4rem;
}

.hp_flex_column_gap_1 {
  -webkit-column-gap: 0.4rem;
  -moz-column-gap: 0.4rem;
  column-gap: 0.4rem;
}

.hp_flex_column_gap_2 {
  -webkit-column-gap: 0.8rem;
  -moz-column-gap: 0.8rem;
  column-gap: 0.8rem;
}

.hp_flex_column_gap_3 {
  -webkit-column-gap: 1.6rem;
  -moz-column-gap: 1.6rem;
  column-gap: 1.6rem;
}

.hp_flex_column_gap_4 {
  -webkit-column-gap: 2.4rem;
  -moz-column-gap: 2.4rem;
  column-gap: 2.4rem;
}

.hp_flex_column_gap_1 {
  row-gap: 0.4rem;
}

.hp_flex_row_gap_2 {
  row-gap: 0.8rem;
}

.hp_flex_row_gap_3 {
  row-gap: 1.6rem;
}

.hp_flex_row_gap_4 {
  row-gap: 2.4rem;
}

.hp_listStyle_disc {
  list-style-position: outside;
  padding-left: 1em;
}
.hp_listStyle_disc li {
  list-style: disc;
}
.hp_listStyle_notice {
  list-style-position: outside;
}
.hp_listStyle_notice li {
  text-indent: -0.35em;
  padding-left: 1em;
}
.hp_listStyle_notice li:before {
  content: "※";
  display: inline-block;
}

/****************************************

  Conversion CSS

*****************************************/
.ly_conversion {
  background-color: #004b9c;
}
.ly_conversion_inner {
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 6%;
  padding-right: 6%;
}
@media screen and (min-width: 768px) {
  .ly_conversion_inner {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
.ly_conversion_btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .ly_conversion_btnWrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .ly_conversion_btnWrap {
    margin-top: 64px;
  }
}
.ly_conversion_btnWrap > a:nth-of-type(2) {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .ly_conversion_btnWrap > a:nth-of-type(2) {
    margin-top: 0;
    margin-left: 40px;
    margin-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .ly_conversion_btnWrap > a:nth-of-type(2) {
    margin-top: 0;
    margin-left: 80px;
  }
}

.bl_conversion_txt {
  font-size: 2rem;
  font-weight: bold;
  color: #eaf6fb;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .bl_conversion_txt {
    font-size: 2.4rem;
  }
}

/****************************************

  Pagination CSS

*****************************************/
.bl_pagination {
  margin: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.4rem;
}

.bl_pagination_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.el_pagination_link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  padding: 1rem 1.6rem;
  font-family: "Lato", sans-serif;
  letter-spacing: normal;
  text-transform: uppercase;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.el_pagination_link:hover {
  color: #eaf6fb;
  background-color: #004b9c;
}

.el_pagination_pager {
  display: inline-block;
  padding: 1rem 1.6rem;
  font-family: "Lato", sans-serif;
  letter-spacing: normal;
  text-transform: uppercase;
}
.el_pagination_pager:hover {
  color: #eaf6fb;
  background-color: #004b9c;
}

.el_pagination_active {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  padding: 1rem 1.6rem;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  color: #eaf6fb;
  background-color: #004b9c;
}

/****************************************

  Post CSS

*****************************************/
.bl_post h2 {
  margin-bottom: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  font-size: 2rem;
  font-weight: bold;
  border-left: 8px solid #004b9c;
}
.bl_post h2:not(:first-child) {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .bl_post h2 {
    font-size: 2.4rem;
  }
}
.bl_post h3 {
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: bold;
}
.bl_post h3:not(:first-child) {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .bl_post h3 {
    font-size: 2rem;
  }
}
.bl_post h4 {
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-weight: bold;
}
.bl_post h4:not(:first-child) {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .bl_post h4 {
    font-size: 1.6rem;
  }
}
.bl_post ol > li {
  margin-left: 32px;
  list-style: decimal;
}
.bl_post p {
  margin-top: 20px;
  margin-bottom: 16px;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .bl_post p {
    margin-top: 40px;
  }
}
.bl_post a {
  color: #004b9c;
  word-break: break-all;
}
.bl_post strong {
  font-weight: bold;
}
.bl_post figure,
.bl_post img {
  display: inline-block;
  margin-top: 20px;
  width: auto;
}
@media screen and (min-width: 768px) {
  .bl_post figure,
  .bl_post img {
    margin-top: 40px;
  }
}
.bl_post .wp-element-caption {
  text-align: center;
}
.bl_post .hp_img_s {
  margin-left: auto;
  margin-right: auto;
  width: 40% !important;
}
@media screen and (min-width: 768px) {
  .bl_post .hp_img_s {
    width: 30% !important;
  }
}
.bl_post .hp_img_m {
  margin-left: auto;
  margin-right: auto;
  width: 60% !important;
}
@media screen and (min-width: 768px) {
  .bl_post .hp_img_m {
    width: 50% !important;
  }
}
.bl_post .hp_img_l {
  margin-left: auto;
  margin-right: auto;
  width: 80% !important;
}
@media screen and (min-width: 768px) {
  .bl_post .hp_img_l {
    width: 70% !important;
  }
}
.bl_post .hp_img_pc50 {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .bl_post .hp_img_pc50 {
    width: 50% !important;
  }
}
.bl_post .hp_img_pc60 {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .bl_post .hp_img_pc60 {
    width: 60% !important;
  }
}
.bl_post .hp_img_pc70 {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .bl_post .hp_img_pc70 {
    width: 70% !important;
  }
}
.bl_post .hp_img_pc80 {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .bl_post .hp_img_pc80 {
    width: 80% !important;
  }
}
.bl_post .hp_img_pc90 {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .bl_post .hp_img_pc90 {
    width: 90% !important;
  }
}
.bl_post .hp_border {
  border: 1px solid #afafaf;
}

/****************************************

  Sidebar CSS

*****************************************/
.bl_sidebar_box_inner {
  margin-bottom: 40px;
}
.bl_sidebar_ttl {
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  border-bottom: 1px solid #004b9c;
  border-left: 8px solid #004b9c;
}
@media screen and (min-width: 768px) {
  .bl_sidebar_ttl {
    font-size: 2rem;
  }
}
.bl_sidebar_categorylist {
  margin-top: 16px;
  margin-bottom: 40px;
}
.bl_sidebar_caseList {
  margin-top: 16px;
  margin-bottom: 40px;
}
.bl_sidebar_caseList_ttl {
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .bl_sidebar_caseList_ttl {
    font-size: 1.8rem;
  }
}
.bl_sidebar_caseList > .bl_sidebar_categorylist {
  padding-left: 16px;
  padding-right: 16px;
}
.bl_sidebar_archive {
  margin-top: 16px;
  margin-bottom: 40px;
}
.bl_sidebar_archive_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 20px;
}
.bl_sidebar_archive_thumb {
  width: 30%;
  margin-right: 16px;
}
.bl_sidebar_archive_body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.bl_sidebar_archive_body > h3 {
  font-size: 1.4rem;
  font-weight: bold;
}

/****************************************

  Tab CSS

*****************************************/
.bl_tabWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  .bl_tabWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .bl_tabWrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 768px) {
  .bl_tabWrap:after {
    content: "";
    width: 100%;
    height: 3px;
    background: #004b9c;
    display: block;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
}

@media screen and (max-width: 768px) {
  .bl_tabLabel {
    color: #003366;
    background: #d4e4f4;
    font-weight: bold;
    margin-bottom: -1px;
    padding: 1.5em 0.5em;
    border: 1px solid rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: block;
  }
  .bl_tabLabel:before {
    content: "▼";
    margin-right: 0.2em;
    display: inline-block;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}
@media screen and (min-width: 768px) {
  .bl_tabLabel {
    color: #003366;
    background: #d4e4f4;
    font-weight: bold;
    white-space: nowrap;
    text-align: center;
    padding: 10px 0.5em;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border-radius: 4px 4px 0 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .bl_tabLabel:not(:last-of-type) {
    margin-right: 4px;
  }
}

@media screen and (max-width: 768px) {
  .bl_tabSwitch:checked + .bl_tabLabel:before {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
  }
}
.bl_tabContent {
  width: 100%;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .bl_tabContent {
    padding: 0 16px;
  }
}

/* アクティブなタブ */
.bl_tabSwitch:checked + .bl_tabLabel {
  color: #ffffff;
  background: #004b9c;
}

.bl_tabSwitch:checked + .bl_tabLabel + .bl_tabContent {
  height: auto;
  overflow: auto;
  padding: 16px;
  opacity: 1;
  -webkit-transition: 0.5s opacity;
  transition: 0.5s opacity;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

/* ラジオボタン非表示 */
.bl_tabSwitch {
  display: none;
}

/* ------------------------------------------
**  機能ページをカスタム投稿タイプで編集するためのCSS
**  ブロックエディタ用CSS
------------------------------------------  */
.bl_tabWrap .smb-tabs__tabs {
  width: 100%;
  gap: 8px;
}
.bl_tabWrap .smb-tabs__tab-wrapper {
  width: calc((100% - 8px) / 3);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  overflow: hidden;
}
.bl_tabWrap .smb-tabs__tab-wrapper:has(button[aria-selected="false"]) {
  padding: 8px 4px;
  background: #6b7aa8;
}
@media (min-width: 768px) {
  .bl_tabWrap .smb-tabs__tab-wrapper:has(button[aria-selected="false"]) {
    padding: 12px 4px;
  }
}
.bl_tabWrap .smb-tabs__tab-wrapper :has(button[aria-selected="true"]) {
  padding: 8px 4px;
  background: #6b7aa8;
}
@media (min-width: 768px) {
  .bl_tabWrap .smb-tabs__tab-wrapper :has(button[aria-selected="true"]) {
    padding: 12px 4px;
  }
}
.bl_tabWrap .smb-tabs__tab-wrapper button.smb-tabs__tab {
  font-weight: bold;
  font-size: 14px;
}
@media (min-width: 768px) {
  .bl_tabWrap .smb-tabs__tab-wrapper button.smb-tabs__tab {
    font-size: 16px;
  }
}
.bl_tabWrap .smb-tabs__tab-wrapper button.smb-tabs__tab[aria-selected="true"] {
  color: #08226e;
  padding: var(--_padding-2) 0;
}
.bl_tabWrap .smb-tabs__tab-wrapper button.smb-tabs__tab[aria-selected="false"] {
  color: #ffffff;
  padding: var(--_padding-2) 0;
}

#scrollToTopBtn.c-pageTop {
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 9600;
  opacity: 0;
  visibility: hidden;
  -webkit-transition:
    opacity 0.3s,
    visibility 0.3s;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}
@media (min-width: 768px) {
  #scrollToTopBtn.c-pageTop {
    bottom: 20px;
    right: 20px;
  }
}
@media (min-width: 1024px) {
  #scrollToTopBtn.c-pageTop {
    bottom: 20px;
    right: 80px;
  }
}
#scrollToTopBtn.c-pageTop.show {
  opacity: 1;
  visibility: visible;
}
@-webkit-keyframes scrollToTop {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100vh);
    transform: translateY(-100vh);
  }
}
@keyframes scrollToTop {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100vh);
    transform: translateY(-100vh);
  }
}
#scrollToTopBtn.c-pageTop .scrolling {
  -webkit-animation: scrollToTop 0.5s ease-in-out forwards;
  animation: scrollToTop 0.5s ease-in-out forwards;
}

.c-pageTop__btn {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}
.c-pageTop__btn::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border: 0px;
  border-top: solid 2px #008bf1;
  border-right: solid 2px #008bf1;
  -webkit-transform: rotate(-45deg) translate(-15%, -50%);
  transform: rotate(-45deg) translate(-15%, -50%);
  position: absolute;
  left: 50%;
  top: 50%;
  margin: auto;
  margin-top: 4px;
}
.c-pageTop__btn::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: #008bf1;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 50%;
  margin-top: -10px;
}

/* =====================================
  Admin Bar & Global
===================================== */
#wpadminbar {
  top: auto !important;
  bottom: 0 !important;
  position: fixed !important;
  z-index: 9999;
  width: 100%;
}

html {
  margin-top: 0 !important;
}

body.home {
  background-color: #f2f6fb !important;
}

/* =====================================
  ヘッダー
===================================== */
.ly_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 110px;
  padding: 10px 12px;
  background: #fff;
  border-top: 5px solid #004b9c;
  border-bottom: 1px solid #ccc;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 検索窓 */
}
@media (min-width: 768px) {
  .ly_header {
    height: 72px;
    padding: 0 2rem;
  }
}
.ly_header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 10px;
  height: auto;
}
@media (min-width: 768px) {
  .ly_header__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
    gap: 0;
  }
}
.ly_header .bl_header__logo {
  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: 10px;
}
@media (min-width: 768px) {
  .ly_header .bl_header__logo {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 0.8rem;
  }
}
.ly_header .bl_header__logo img {
  width: auto;
  height: 32px;
}
@media (min-width: 768px) {
  .ly_header .bl_header__logo img {
    height: 48px;
  }
}
.ly_header .bl_header__logo__label {
  font-size: 1.2rem;
  font-weight: normal;
  color: #202020;
  line-height: 1;
}
@media (min-width: 768px) {
  .ly_header .bl_header__logo__label {
    font-size: 1.6rem;
    letter-spacing: 0.02em;
  }
}
.ly_header .bl_header__nav {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .ly_header .bl_header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: auto;
    gap: 2rem;
  }
}
.ly_header .bl_header__menu {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr 8px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}
@media (min-width: 768px) {
  .ly_header .bl_header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
    width: auto;
  }
}
.ly_header .bl_header__menu .icon {
  display: inline-block;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
  margin-right: 4px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.ly_header .bl_header__menu .icon-user {
  --mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='レイヤー_2' viewBox='0 0 44.85 50'%3E%3Cpath d='M34.62 18.84c3.02-6.74 0-14.65-6.73-17.67-6.74-3.02-14.65 0-17.67 6.73a13.348 13.348 0 0 0 0 10.93A18.105 18.105 0 0 0 0 35.01V50h44.85V35.01a18.06 18.06 0 0 0-10.23-16.17M22.43 6.21c3.99 0 7.22 3.24 7.22 7.23s-3.24 7.22-7.23 7.22-7.22-3.24-7.22-7.22c0-3.99 3.24-7.22 7.23-7.22m16.28 37.64H6.14v-8.84c.03-5.04 3.23-9.52 7.99-11.18a13.069 13.069 0 0 0 16.59 0c4.76 1.66 7.97 6.14 7.99 11.18v8.84Z' data-name='レイヤー_1'/%3E%3C/svg%3E");
  -webkit-mask-image: var(--mask);
  mask-image: var(--mask);
  aspect-ratio: 44.85/50;
}
.ly_header .bl_header__menu li a {
  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;
  height: 36px;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 800;
  color: #004b9c;
  text-align: center;
  text-decoration: none;
  background: #f3f7fd;
  border: 1px solid #e6eef7;
  border-radius: 10px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .ly_header .bl_header__menu li a {
    display: inline-block;
    height: auto;
    padding: 0;
    font-size: 1.6rem;
    font-weight: 700;
    background: transparent;
    border: none;
    border-radius: 0;
  }
}
.ly_header .bl_header__menu li a:hover {
  color: #0064cf;
}
@media (min-width: 768px) {
  .ly_header .bl_header__menu li a:hover::after {
    width: 100%;
  }
}
.ly_header .bl_header__menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background-color: #0064cf;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
  display: none;
}
@media (min-width: 768px) {
  .ly_header .bl_header__menu li a::after {
    display: block;
  }
}
.ly_header .bl_header_search {
  display: none !important;
}
@media (min-width: 768px) {
  .ly_header .bl_header_search {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0.5rem;
    font-size: 2.2rem;
    color: #3179c7;
    background: none;
    border: none;
    cursor: pointer;
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition:
      transform 0.2s,
      -webkit-transform 0.2s;
  }
  .ly_header .bl_header_search:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.ly_header .bl_header_searchForm {
  display: none;
}
@media (min-width: 768px) {
  .ly_header .bl_header_searchForm {
    position: absolute;
    top: 100%;
    right: 2rem;
    padding: 1.2rem;
    background: #f5f5f5;
    border: 1px solid #ccc;
  }
  .ly_header .bl_header_searchForm.is-active {
    display: block;
  }
}

/* =====================================
  フッター
===================================== */
.ly_footer {
  display: block;
  background-color: #434e5c;
}
.ly_footer_inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 2rem;
}
@media screen and (min-width: 1024px) {
  .ly_footer_inner {
    padding: 2rem 60px;
  }
}
.ly_footer_conts {
  display: block;
}
@media screen and (min-width: 1024px) {
  .ly_footer_conts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.ly_footer_conts a {
  color: #fff !important;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.ly_footer_conts a:hover {
  opacity: 80%;
}

/* =====================================
  フッターメニュー
===================================== */
.bl_footer_logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.bl_footer_logo img {
  width: auto;
  height: 28px;
}
@media screen and (min-width: 1024px) {
  .bl_footer_logo img {
    height: 36px;
  }
}
.bl_footer_logo__label {
  font-size: 1.2rem;
  font-weight: normal;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .bl_footer_logo__label {
    font-size: 1.4rem;
    letter-spacing: 0.02em;
  }
}
.bl_footer_menu {
  margin-top: 40px;
  font-size: 14px;
}
@media screen and (min-width: 1024px) {
  .bl_footer_menu {
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .bl_footer_menu_item {
    line-height: 1.8;
  }
}
.bl_footer_access {
  margin-top: 40px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .bl_footer_access {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .bl_footer_access {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 0;
    gap: 0;
  }
}
.bl_footer_access_address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.bl_footer_access_address a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 8px;
  font-size: 1.4rem;
  text-decoration: none;
}
.bl_footer_access_address a::after {
  content: "\f08e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.4rem;
  opacity: 0.8;
  -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;
}
.bl_footer_access_address a:hover::after {
  -webkit-transform: translateX(2px) scale(1.1);
  transform: translateX(2px) scale(1.1);
  opacity: 1;
}
.bl_footer_access_txt {
  color: #fff !important;
  font-size: 1.4rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .bl_footer_access_txt {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .bl_footer_access_txt {
    width: auto;
  }
}
.bl_footer_cud {
  margin-top: 24px;
  width: 100%;
  max-width: 160px;
}
@media screen and (min-width: 1024px) {
  .bl_footer_cud {
    margin-top: 0;
  }
}

/* =====================================
  copyright
===================================== */
.ly_copyright {
  width: 100%;
  padding: 16px 0;
  background-color: #004b9c;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .ly_copyright {
    padding: 24px 0;
  }
}
.ly_copyright_inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 6%;
}
@media screen and (min-width: 768px) {
  .ly_copyright_inner {
    padding: 0 40px;
  }
}

.bl_copyright_txt {
  font-size: 1.2rem;
  color: #ffffff;
  margin: 0;
}

.ly_section--search {
  padding: 72px 2rem 0;
}
.ly_section--search .ly_section__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.ly_section--search .bl_section__title {
  font-size: 24px;
  font-weight: bold;
  color: #003366;
  display: inline-block;
  position: relative;
  margin-bottom: 24px;
}
.ly_section--search .bl_section__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #004b9c;
  margin: 16px auto 0;
  border-radius: 2px;
}
.ly_section--search .bl_search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  -webkit-box-shadow: 0 0 60px rgba(0, 36, 196, 0.1);
  box-shadow: 0 0 60px rgba(0, 36, 196, 0.1);
  border: 1px solid transparent;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.ly_section--search .bl_search:focus-within {
  border-color: #3179c7;
}
.ly_section--search .bl_search__input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 16px 20px;
  border: none;
  font-size: 16px;
  outline: none;
  background: #fff;
}
.ly_section--search .bl_search__input::-webkit-input-placeholder {
  color: #999;
}
.ly_section--search .bl_search__input::-moz-placeholder {
  color: #999;
}
.ly_section--search .bl_search__input:-ms-input-placeholder {
  color: #999;
}
.ly_section--search .bl_search__input::-ms-input-placeholder {
  color: #999;
}
.ly_section--search .bl_search__input::placeholder {
  color: #999;
}
.ly_section--search .bl_search__button {
  width: 60px;
  background-color: #3179c7;
  border: none;
  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;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.ly_section--search .bl_search__button i {
  color: #fff;
  font-size: 18px;
}
.ly_section--search .bl_search__button:hover {
  background-color: #3179c7;
}

.ly_section--notice {
  padding-top: 64px;
}

.bl_notice {
  background-color: #fff;
  -webkit-box-shadow: 0 0 60px rgba(0, 36, 196, 0.1);
  box-shadow: 0 0 60px rgba(0, 36, 196, 0.1);
  border-radius: 8px;
  overflow: hidden;
}
.bl_notice__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #004b9c;
  padding: 12px 20px;
  position: relative;
}
@media (min-width: 768px) {
  .bl_notice__header {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.bl_notice__button {
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  border: 2px solid #ffffff;
  color: #fff;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 13px;
  text-decoration: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.bl_notice__button::after {
  content: "\f0a9";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 1;
  opacity: 0.9;
  -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;
}
.bl_notice__button:hover {
  background: rgba(255, 255, 255, 0.12);
}
.bl_notice__button:hover::after {
  -webkit-transform: translateX(2px);
  transform: translateX(2px);
}
@media (min-width: 768px) {
  .bl_notice__button {
    right: 20px;
    padding: 6px 14px;
    font-size: 1.4rem;
  }
}
.bl_notice__list {
  background: #ffffff;
  padding: 16px 20px;
}
.bl_notice__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  row-gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.bl_notice__item:last-child {
  border-bottom: none;
}
@media (min-width: 768px) {
  .bl_notice__item {
    -ms-grid-columns: 120px minmax(0, 180px) minmax(0, 1fr);
    grid-template-columns: 120px minmax(0, 180px) minmax(0, 1fr);
    row-gap: 0;
    padding: 12px 0;
  }
}
.bl_notice__date {
  font-weight: 700;
  color: #004b9c;
  white-space: nowrap;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .bl_notice__date {
    font-size: 1.4rem;
  }
}
.bl_notice__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 180px;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -ms-grid-column-align: start;
  justify-self: start;
}
.bl_notice__label:hover {
  opacity: 0.9;
}
.bl_notice__label.label--maintenance-notices {
  background: #e7f1ff;
  color: #004b9c;
}
.bl_notice__label.label--incidents {
  background: #fbe9e9;
  color: #c20000;
}
.bl_notice__label.label--troubleshooting {
  background: #d4f4d4;
  color: #00925d;
}
@media (min-width: 768px) {
  .bl_notice__label {
    -ms-grid-column-align: auto;
    justify-self: auto;
  }
}
.bl_notice__text {
  min-width: 0;
  font-size: 1.4rem;
  color: #333;
}
.bl_notice__text a {
  text-decoration: none;
  display: block;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.6rem;
  font-weight: 700;
  color: #282c31;
}
.bl_notice__text a:hover {
  color: #3179c7;
}
@media (min-width: 768px) {
  .bl_notice__text a {
    white-space: nowrap;
  }
}

.bl_heading__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.ly_section--guide {
  background: #f3f7fd;
  padding: 72px 0;
}

.bl_guide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}
.bl_guide__intro_card {
  background: #fff;
  border: 2px solid #004b9c;
  border-radius: 12px;
  padding: 24px;
  cursor: pointer;
  -webkit-transition:
    -webkit-transform 0.3s ease,
    -webkit-box-shadow 0.3s ease;
  transition:
    -webkit-transform 0.3s ease,
    -webkit-box-shadow 0.3s ease;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    -webkit-transform 0.3s ease,
    -webkit-box-shadow 0.3s ease;
}
.bl_guide__intro_card:hover {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 91, 172, 0.15);
  box-shadow: 0 4px 12px rgba(0, 91, 172, 0.15);
}
.bl_guide__intro_card__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .bl_guide__intro_card__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 32px;
  }
}
.bl_guide__intro_card__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  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;
  width: 80px;
  height: 80px;
  margin-left: 0;
}
.bl_guide__intro_card__icon img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.bl_guide__intro_card__text {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_guide__intro_card__text {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: auto;
  }
}
.bl_guide__intro_card__label {
  font-size: 16px;
  color: #004b9c;
  margin-bottom: 4px;
}
.bl_guide__intro_card__title {
  font-size: 32px;
  font-weight: bold;
  color: #004b9c;
}
.bl_guide__intro_card__button {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .bl_guide__intro_card__button {
    width: auto;
    display: block;
  }
}
.bl_guide__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.bl_guide__card {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 300px;
  flex: 1 1 300px;
  background: #fff;
  border: 2px solid #004b9c;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  -webkit-transition:
    -webkit-transform 0.3s ease,
    -webkit-box-shadow 0.3s ease;
  transition:
    -webkit-transform 0.3s ease,
    -webkit-box-shadow 0.3s ease;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    -webkit-transform 0.3s ease,
    -webkit-box-shadow 0.3s ease;
}
.bl_guide__card:hover {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 91, 172, 0.15);
  box-shadow: 0 4px 12px rgba(0, 91, 172, 0.15);
}
.bl_guide__card__icon {
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 64px;
}
.bl_guide__card__icon img {
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.bl_guide__card__title {
  font-size: 24px;
  font-weight: bold;
  color: #004b9c;
  margin-bottom: 8px;
}
.bl_guide__card__text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.el_btn {
  display: inline-block;
  background: #004b9c;
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.el_btn:hover {
  background: #0064cf;
}

.ly_section--faq {
  background: #004b9c;
  padding: 48px 0;
  color: #fff;
}
.ly_section--faq .bl_section__title {
  color: #fff;
}

.bl_faq__intro_card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 48px;
  cursor: pointer;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition:
    box-shadow 0.3s ease,
    -webkit-box-shadow 0.3s ease;
}
.bl_faq__intro_card:hover {
  -webkit-box-shadow: 0 4px 12px rgba(0, 91, 172, 0.25);
  box-shadow: 0 4px 12px rgba(0, 91, 172, 0.25);
}
.bl_faq__intro_card__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .bl_faq__intro_card__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 32px;
  }
}
.bl_faq__intro_card__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  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;
}
.bl_faq__intro_card__icon img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.bl_faq__intro_card__text {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_faq__intro_card__text {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: auto;
  }
}
.bl_faq__intro_card__label {
  font-size: 24px;
  font-weight: bold;
  color: #003366;
}
.bl_faq__intro_card__desc {
  font-size: 14px;
  color: #666;
  margin-top: 4px;
}
.bl_faq__intro_card__button {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .bl_faq__intro_card__button {
    width: auto;
    display: block;
  }
}
.bl_faq__intro_card__button .el_btn {
  display: inline-block;
  background: #004b9c;
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
}
.bl_faq__intro_card__button .el_btn:hover {
  background: #0064cf;
}

.bl_faq__list {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
}
.bl_faq__list__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
}
.bl_faq__list__title {
  font-size: 24px;
  font-weight: bold;
  color: #003366;
  text-align: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-bottom: 24px;
}
.bl_faq__list__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #004b9c;
  margin: 16px auto 0;
  border-radius: 2px;
}
.bl_faq__list__more {
  white-space: nowrap;
  margin-left: auto;
  font-size: 14px;
  color: #004b9c;
  text-decoration: none;
}
.bl_faq__list__more:hover {
  text-decoration: underline;
}
.bl_faq__list__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .bl_faq__list__grid {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.bl_faq__list__grid li a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  padding-left: 1.4em;
  color: #004b9c;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.bl_faq__list__grid li a i {
  position: absolute;
  left: 0;
  top: 0.48rem;
  font-size: 1.2rem;
  color: #004b9c;
  -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;
}
.bl_faq__list__grid li a:hover {
  color: #0064cf;
}
.bl_faq__list__grid li a:hover i {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}

.bl_faq__list__more_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 16px;
}

.bl_faq__list__more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  color: #0064cf;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.bl_faq__list__more i {
  font-size: 12px;
  -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;
}
.bl_faq__list__more:hover {
  color: #0064cf;
}
.bl_faq__list__more:hover i {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}

.bl_faq__badge--new {
  display: inline-block;
  background: #e05106;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  padding: 1px 6px;
  border-radius: 8px;
  margin-right: 4px;
  vertical-align: middle;
}

.ly_section--category {
  padding: 60px 0;
}
.ly_section--category .ly_section__inner {
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
}
.ly_section--category .bl_section__title {
  display: inline-block;
  margin-bottom: 24px;
  font-weight: 700;
  color: #003366;
  font-size: clamp(20px, 3.6vw, 24px);
  position: relative;
}
.ly_section--category .bl_section__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 2px;
  background: #004b9c;
}

.bl_category_list {
  background: #fff;
  border: 2px solid #004b9c;
  border-radius: 12px;
  padding: 24px 16px;
  margin-bottom: 40px;
  text-align: left;
}
@media (min-width: 768px) {
  .bl_category_list {
    padding: 32px 24px;
  }
}
.bl_category_list__heading {
  font-size: 18px;
  font-weight: 700;
  color: #003366;
  margin-bottom: 16px;
}

.bl_category {
  margin-bottom: 12px;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .bl_category {
    margin-bottom: 16px;
  }
}
.bl_category__head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: #f1f6fb;
  color: #004b9c;
  font-size: 16px;
  font-weight: 700;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  -webkit-transition:
    background-color 0.3s,
    border-radius 0.2s;
  transition:
    background-color 0.3s,
    border-radius 0.2s;
}
.bl_category__head:hover {
  background: #e4ecf5;
}
.bl_category__head.is-active {
  border-radius: 8px 8px 0 0;
}
.bl_category__title {
  color: #004b9c;
  font-weight: 700;
}
.bl_category__icon {
  margin-left: 8px;
  font-size: 18px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition:
    transform 0.3s,
    -webkit-transform 0.3s;
  color: #004b9c;
}
.bl_category__body {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  background: transparent;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}
.bl_category__body.is-open {
  background: #f1f6fb;
  border-radius: 0 0 8px 8px;
}
.bl_category__list {
  list-style: none;
  margin: 0;
  padding: 16px 0;
}
.bl_category__list li {
  padding: 10px 8px;
  border-bottom: 1px solid #dcdcdc;
}
.bl_category__list li:last-child {
  border-bottom: 0;
}
.bl_category__list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.bl_category__list li a i {
  font-size: 12px;
  color: #3179c7;
}
.bl_category__list li a:hover {
  color: #004b9c;
}
.bl_category--level2 {
  margin-left: 16px;
  position: relative;
}
@media (min-width: 768px) {
  .bl_category--level2 {
    margin-left: 24px;
  }
  .bl_category--level2::before {
    left: -12px;
  }
}
.bl_category--level2::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(0, 91, 172, 0.15);
  border-radius: 2px;
  display: none;
}
.bl_category--level2.is-opened::before {
  display: block;
}

/* =====================================
  記事ページ
===================================== */
.ly_support--single {
  padding: 110px 2rem 72px;
}
@media screen and (min-width: 768px) {
  .ly_support--single {
    padding: 72px 2rem;
  }
}
.ly_support__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .ly_support__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 300px 40px minmax(0, 1fr);
    grid-template-columns: 300px minmax(0, 1fr);
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}
.ly_support__sidebar {
  width: 100%;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media screen and (min-width: 1024px) {
  .ly_support__sidebar {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
}
.ly_support__article {
  width: 100%;
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}
@media screen and (min-width: 1024px) {
  .ly_support__article {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

/* =====================================
  記事本文
===================================== */
.bl_support_article__header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #cfcfcf;
}
.bl_support_article__title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.bl_support_article__count {
  color: #3179c7;
}
.bl_support_article__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.bl_support_article__date,
.bl_support_article__modified {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 1.2rem;
  color: #6b7a90;
}
.bl_support_article__body {
  font-size: 1.6rem;
  line-height: 1.8;
}
.bl_support_article__body p {
  margin: 0 0 1em;
}
.bl_support_article__body img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 80vh;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 24px auto;
  border-radius: 8px;
  background-color: #f8fafd;
}
@media screen and (min-width: 1024px) {
  .bl_support_article__body img {
    max-width: 720px;
    max-height: 500px;
  }
}
.bl_support_article__body a {
  color: #004b9c;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.bl_support_article__body a:hover {
  color: rgb(0, 100, 207);
  text-decoration: underline;
}

/* =====================================
  前後の記事
===================================== */
.bl_post_nav {
  margin-top: 56px;
  border-top: 1px solid #cfcfcf;
  padding-top: 40px;
}
.bl_post_nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  .bl_post_nav__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.bl_post_nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #d4e4f4;
  text-decoration: none !important;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-radius: 10px;
}
.bl_post_nav__link:hover {
  background-color: #f8fafd;
}
.bl_post_nav__link:hover .bl_post_nav__title {
  color: #3179c7;
}
.bl_post_nav__link--prev .bl_post_nav__label::before {
  content: "\f104";
}
.bl_post_nav__link--next {
  text-align: right;
}
.bl_post_nav__link--next .bl_post_nav__label {
  padding-left: 0;
  padding-right: 20px;
}
.bl_post_nav__link--next .bl_post_nav__label::before {
  content: "\f105";
  left: auto;
  right: 0;
}
.bl_post_nav__empty {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: none;
}
.bl_post_nav__label {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #3179c7;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}
.bl_post_nav__label::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.bl_post_nav__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #202020;
  line-height: 1.5;
}

/* =====================================
  サイドバー
===================================== */
.bl_support_sidebar__group + .bl_support_sidebar__group {
  margin-top: 24px;
}
.bl_support_sidebar__title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #233;
}
.bl_support_sidebar__card {
  background-color: #d4e4f4;
  padding: 16px;
  border-radius: 10px;
  overflow: hidden;
}
.bl_support_sidebar_contact_box {
  margin-top: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  text-align: center;
}
.bl_support_sidebar_contact_text {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #444;
}
.bl_support_sidebar_contact_button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 260px;
  padding: 14px;
  border-radius: 999px;
  background-color: #3179c7;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.bl_support_sidebar_contact_button:hover {
  opacity: 0.8;
}

/* =====================================
  サイドバーナビゲーション
===================================== */
.bl_support_nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bl_support_nav__list li {
  position: relative;
  --row_h: 48px;
}
.bl_support_nav__list li:last-child {
  border-bottom: none;
}
@media screen and (min-width: 1024px) {
  .bl_support_nav__list li {
    --row_h: 56px;
  }
}
.bl_support_nav__list li.is_open > a .bl_support_nav__toggle i,
.bl_support_nav__list li.is_open > span .bl_support_nav__toggle i {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.bl_support_nav__list li:not(.has_sub) > a::after,
.bl_support_nav__list li:not(.has_sub) > span::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1.4rem;
  opacity: 0.5;
  pointer-events: none;
}
.bl_support_nav__list a,
.bl_support_nav__list span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: var(--row_h);
  padding: 12px 44px 12px 12px;
  font-size: 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  color: #004b9c;
  font-weight: normal;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  cursor: pointer;
}
.bl_support_nav__list a:hover,
.bl_support_nav__list span:hover {
  background: rgba(255, 255, 255, 0.6);
}
.bl_support_nav__list .current-menu-item > a,
.bl_support_nav__list .current_menu_item > a,
.bl_support_nav__list .current-menu-ancestor > a,
.bl_support_nav__list .current_menu_ancestor > a {
  background: rgba(0, 91, 172, 0.1);
  color: #0357b1;
}
.bl_support_nav__list .bl_support_nav__toggle {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 44px;
  height: 100%;
  background: transparent !important;
  border: 0 !important;
  cursor: pointer;
  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;
  color: #223a5a;
  z-index: 2;
}
.bl_support_nav__list .bl_support_nav__toggle i {
  font-size: 1.4rem;
  -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;
  pointer-events: none;
}
.bl_support_nav__list .sub_menu {
  list-style: none;
  margin: 0;
  padding: 0 0 10px 0;
  display: none;
}
.bl_support_nav__list .sub_menu li {
  border: none;
}
.bl_support_nav__list .sub_menu li a,
.bl_support_nav__list .sub_menu li span {
  padding-left: 28px;
  font-size: 1.3rem;
  font-weight: normal;
  color: #4f637a;
}
.bl_support_nav__list .sub_menu li .sub_menu li a,
.bl_support_nav__list .sub_menu li .sub_menu li span {
  padding-left: 44px;
}

/* =====================================
  レスポンシブ
===================================== */
@media (min-width: 768px) and (max-width: 1023.98px) {
  .bl_support_sidebar {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 24px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
  .bl_support_sidebar__group + .bl_support_sidebar__group {
    margin-top: 0;
  }
}
/**
**
** block-editor/_card.scssへ移動
** p-featureArchive => p-feature__archive へ
**/
.l-feature__archive__mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: calc(100vh - 64px);
  max-height: 720px;
  background-image: url(../images/functions/mv_feature_bg800x1200.jpeg);
  background-size: cover;
  background-position: center center;
}
.l-feature__archive__mv_inner {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-left: 6%;
  padding-right: 6%;
  width: 100%;
  max-width: 1480px;
}
@media screen and (min-width: 768px) {
  .l-feature__archive__mv_inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .l-feature__archive__mv {
    background-image: url(../images/functions/mv_feature_bg1440x552.jpeg);
  }
}

/****************************************

  Contact CSS

*****************************************/
.ly_contact_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1000px;
}
@media screen and (min-width: 1024px) {
  .ly_contact_flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.ly_contact_telWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .ly_contact_telWrap {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .ly_contact_telWrap {
    width: 50%;
  }
}
.ly_contact_btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
.ly_contact_btnWrap > a:not(:first-of-type) {
  margin-top: 24px;
}
@media screen and (min-width: 1024px) {
  .ly_contact_btnWrap {
    width: 50%;
    max-width: 400px;
  }
}

.bl_contact_tel_heading {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .bl_contact_tel_heading {
    font-size: 2rem;
  }
}
.bl_contact_tel_number {
  margin-top: 16px;
  font-size: 3.2rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .bl_contact_tel_number {
    font-size: 4rem;
  }
}
.bl_contact_tel_note {
  margin-top: 16px;
  text-align: center;
}

/****************************************

  FormPage CSS

*****************************************/
.satori__custom_form {
  width: 100% !important;
}

.ly_form {
  margin-top: 30px;
}

@media screen and (min-width: 769px) {
  .ly_formPage_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media screen and (min-width: 769px) {
  .ly_formPage_conts {
    width: calc((100% - 60px) / 2);
  }
}

/****************************************

  Law CSS

*****************************************/
.ly_law {
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  width: 100%;
  max-width: 880px;
}
@media screen and (min-width: 768px) {
  .ly_law {
    padding-bottom: 80px;
  }
}

.bl_law_list {
  border: 1px solid #707070;
}
.bl_law_list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.bl_law_list_item:not(:first-of-type) {
  border-top: 1px solid #707070;
}
.bl_law_list_heading {
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  background-color: #dfdfdf;
}
@media screen and (min-width: 768px) {
  .bl_law_list_heading {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 24px;
    padding-right: 24px;
  }
}
.bl_law_list_desc {
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (min-width: 768px) {
  .bl_law_list_desc {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

/****************************************

  FAQ CSS

*****************************************/
.ly_faq {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}
.ly_faq_conts {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .ly_faq_conts:not(:first-of-type) {
    margin-top: 80px;
  }
}

.bl_faq_nav {
  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;
}
.bl_faq_nav_item {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  width: 50%;
  font-weight: bold;
  color: #eaf6fb;
  text-align: center;
  background-color: #004b9c;
  border-top: 1px solid #eaf6fb;
  border-right: 1px solid #eaf6fb;
}
.bl_faq_nav_item:hover {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  opacity: 0.6;
}
.bl_faq_nav_item:nth-of-type(1),
.bl_faq_nav_item:nth-of-type(2) {
  border-top: none;
}
.bl_faq_nav_item:nth-of-type(2n) {
  border-right: none;
}
@media screen and (min-width: 768px) {
  .bl_faq_nav_item {
    width: 33.3333333333%;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .bl_faq_nav_item:nth-of-type(3) {
    border-top: none;
  }
  .bl_faq_nav_item:nth-of-type(2n) {
    border-right: 1px solid #eaf6fb;
  }
  .bl_faq_nav_item:nth-of-type(3n) {
    border-right: none;
  }
}
@media screen and (min-width: 1024px) {
  .bl_faq_nav_item {
    width: 16.6666666667%;
    border-top: none;
  }
  .bl_faq_nav_item:nth-of-type(3n) {
    border-right: 1px solid #eaf6fb;
  }
  .bl_faq_nav_item:last-of-type {
    border-right: none;
  }
}
.bl_faq_heading {
  margin-top: -80px;
  padding-top: 80px;
  font-size: 2rem;
  font-weight: bold;
  color: #004b9c;
}
.bl_faq_list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #cfcfcf;
}
.bl_faq_list_head {
  cursor: pointer;
}
.bl_faq_list_check {
  display: none;
}
.bl_faq_list_check:checked ~ .bl_faq_list_desc {
  display: block;
}
.bl_faq_list_check:checked
  ~ .bl_faq_list_head
  .bl_faq_list_burger
  span:nth-of-type(2) {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.bl_faq_list_burger {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-right: 16px;
}
.bl_faq_list_burger > span {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #004b9c;
}
.bl_faq_list_burger > span:nth-of-type(2) {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.bl_faq_list_head {
  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;
  padding-top: 16px;
  padding-bottom: 16px;
}
.bl_faq_list_heading {
  width: calc(100% - 36px);
  font-weight: bold;
}
.bl_faq_list_desc {
  display: none;
  padding-bottom: 16px;
}
.bl_faq_list_desc > span {
  margin-top: 16px;
  display: block;
  font-size: 1.2rem;
  color: #707070;
}
.bl_faq_list_desc > a {
  font-weight: bold;
  color: #004b9c;
}
.bl_faq_list_desc > h3 {
  margin-top: 16px;
  font-weight: bold;
}

.bl_faq_descList_item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
}
.bl_faq_descList_item:not(:first-of-type) {
  margin-top: 16px;
}
.bl_faq_descList_item > a {
  font-weight: bold;
  color: #004b9c;
}

/* =====================================
  全体・余白制御
===================================== */
.ly_support {
  background-color: #f2f5fa;
}
.ly_support--notice_archive.ly_main,
.ly_support--notice_archive,
.ly_support--notice_hub.ly_main,
.ly_support--notice_hub,
.ly_support--archive.ly_main,
.ly_support--archive,
.ly_support--search.ly_main,
.ly_support--search,
.ly_support--single.ly_main,
.ly_support--single {
  padding: 0 !important;
}
.ly_support--notice_archive .ly_support__inner,
.ly_support--notice_hub .ly_support__inner,
.ly_support--archive .ly_support__inner,
.ly_support--search .ly_support__inner,
.ly_support--single .ly_support__inner {
  margin: 0 auto;
  padding: 40px 2rem 72px;
}
@media screen and (min-width: 768px) {
  .ly_support--notice_archive .ly_support__inner,
  .ly_support--notice_hub .ly_support__inner,
  .ly_support--archive .ly_support__inner,
  .ly_support--search .ly_support__inner,
  .ly_support--single .ly_support__inner {
    padding: 60px 2rem 72px;
  }
}
.ly_support--notice_archive .bl_page_title,
.ly_support--notice_hub .bl_page_title,
.ly_support--archive .bl_page_title,
.ly_support--search .bl_page_title,
.ly_support--single .bl_page_title {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  color: #202020;
  margin-bottom: 32px;
  text-align: center;
  line-height: 1.4;
}
.ly_support--notice_archive .ly_support__inner {
  max-width: 980px;
}
.ly_support--notice_hub .ly_support__inner,
.ly_support--archive .ly_support__inner,
.ly_support--search .ly_support__inner,
.ly_support--single .ly_support__inner {
  max-width: 1120px;
}
.ly_support--notice_archive .ly_support__inner,
.ly_support--notice_hub .ly_support__inner {
  display: block;
}
.ly_support--notice_archive .ly_support__article,
.ly_support--notice_hub .ly_support__article {
  width: 100%;
}
.ly_support__inner {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .ly_support__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 300px 40px minmax(0, 1fr);
    grid-template-columns: 300px minmax(0, 1fr);
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}
.ly_support__sidebar {
  width: 100%;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media screen and (min-width: 1024px) {
  .ly_support__sidebar {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
}
.ly_support__article {
  width: 100%;
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}
@media screen and (min-width: 1024px) {
  .ly_support__article {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

/* =====================================
  パンくず
===================================== */
.bl_support_breadcrumb {
  font-size: 1.2rem;
  color: #4f637a;
  margin-bottom: 24px;
}
.bl_support_breadcrumb__link {
  color: #3179c7;
  text-decoration: none;
}
.bl_support_breadcrumb__link:hover {
  text-decoration: underline;
}
.bl_support_breadcrumb__separator {
  margin: 0 6px;
}

/* =====================================
  共通・カード
===================================== */
.bl_notice_archive_card,
.bl_notice_hub__col {
  margin: 0 auto;
  padding: 18px 16px;
  background: #fff;
  border-radius: 14px;
  -webkit-box-shadow: 0 12px 40px rgba(0, 36, 196, 0.08);
  box-shadow: 0 12px 40px rgba(0, 36, 196, 0.08);
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .bl_notice_archive_card,
  .bl_notice_hub__col {
    padding: 22px 26px;
  }
}

.bl_notice_archive_card__title,
.bl_notice_hub__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: #233;
}
.bl_notice_archive_card__title i,
.bl_notice_hub__title i {
  color: #3179c7;
  font-size: 18px;
}

.bl_notice_archive_card__line,
.bl_notice_hub__line {
  display: block;
  height: 2px;
  background: #3179c7;
  border-radius: 999px;
  opacity: 0.95;
}

/* =====================================
  カスタマーサクセスからのお知らせ
===================================== */
.bl_notice_hub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .bl_notice_hub {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 40px;
  }
}
.bl_notice_hub__col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.bl_notice_hub__head {
  margin-bottom: 16px;
}
.bl_notice_hub__list {
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.bl_notice_hub__item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.bl_notice_hub__item:last-child {
  border-bottom: none;
}
.bl_notice_hub__date {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #004b9c;
}
.bl_notice_hub__link {
  font-size: 14px;
  font-weight: 700;
  color: #282c31;
  text-decoration: none;
  line-height: 1.5;
}
.bl_notice_hub__link:hover {
  color: #3179c7;
  text-decoration: underline;
}
.bl_notice_hub__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  margin-top: 24px;
}
.bl_notice_hub__more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 260px;
  padding: 14px;
  background-color: #3179c7;
  color: #ffffff !important;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 999px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.bl_notice_hub__more::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  margin-left: 8px;
  font-weight: 900;
}
.bl_notice_hub__more:hover {
  opacity: 0.8;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}

.bl_notice_archive_list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.bl_notice_archive_list__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  row-gap: 8px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.bl_notice_archive_list__item:last-child {
  border-bottom: none;
}
@media (min-width: 1024px) {
  .bl_notice_archive_list__item {
    -ms-grid-columns: 120px 16px minmax(0, 1fr);
    grid-template-columns: 120px minmax(0, 1fr);
    -webkit-column-gap: 16px;
    -moz-column-gap: 16px;
    column-gap: 16px;
    row-gap: 0;
  }
}
.bl_notice_archive_list__date {
  font-size: 13px;
  font-weight: 700;
  color: #004b9c;
  white-space: nowrap;
}
.bl_notice_archive_list__link {
  font-size: 14px;
  font-weight: 700;
  color: #282c31;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .bl_notice_archive_list__link {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.bl_notice_archive_list__link:hover {
  color: #3179c7;
}

/* =====================================
   ページネーション
===================================== */
.bl_pagination {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.bl_pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.bl_pagination .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid #d4e4f4;
  background: #fff;
  color: #004b9c;
  font-weight: 700;
  font-size: 1.4rem;
  text-decoration: none;
}
.bl_pagination .page-numbers.current {
  background: #004b9c;
  color: #fff;
}
.bl_pagination .page-numbers.prev,
.bl_pagination .page-numbers.next {
  min-width: 92px;
  border-radius: 999px;
  border-color: #004b9c;
}

/* =====================================
   Other
===================================== */
mark.el_highlight {
  background-color: transparent;
  color: #3179c7;
  font-weight: 700;
}

.bl_result_list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bl_result_list__item {
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 36, 196, 0.05);
  box-shadow: 0 4px 20px rgba(0, 36, 196, 0.05);
  margin-bottom: 20px;
  border: 1px solid #d4e4f4;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.bl_result_list__item:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 30px rgba(0, 36, 196, 0.1);
  box-shadow: 0 8px 30px rgba(0, 36, 196, 0.1);
}
.bl_result_list__link {
  display: block;
  padding: 24px;
  color: inherit;
  text-decoration: none !important;
}
.bl_result_list__link:hover .bl_result_list__item_title {
  color: #3179c7;
}
.bl_result_list__item_title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #282c31;
  margin-bottom: 12px;
  line-height: 1.4;
}
.bl_result_list__item_excerpt {
  font-size: 1.4rem;
  color: #202020;
  line-height: 1.6;
  margin-bottom: 16px;
}
.bl_result_list__item_date {
  font-size: 1.2rem;
  color: #202020;
}

/* =====================================
  はじめてガイド：固定ページ専用
===================================== */
.ly_main--guide {
  /* --- ヒーローエリア --- */
  /* --- イントロテキスト --- */
  /* --- カードセクション --- */
}
.ly_main--guide .bl_guide_hero {
  padding: 80px 0;
  background-color: #f2f5fa;
  overflow: hidden;
  width: 100%;
}
.ly_main--guide .bl_guide_hero__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 768px) {
  .ly_main--guide .bl_guide_hero__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.ly_main--guide .bl_guide_hero__content {
  text-align: center;
}
@media (min-width: 768px) {
  .ly_main--guide .bl_guide_hero__content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
  }
}
.ly_main--guide .bl_guide_hero__label {
  margin-bottom: 12px;
  font-size: 2rem;
  font-weight: 700;
  color: #004b9c;
}
.ly_main--guide .bl_guide_hero__title {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.2;
  color: #004b9c;
}
@media (min-width: 768px) {
  .ly_main--guide .bl_guide_hero__title {
    font-size: 5.2rem;
  }
}
.ly_main--guide .bl_guide_hero__image {
  max-width: 540px;
}
@media (min-width: 768px) {
  .ly_main--guide .bl_guide_hero__image {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.ly_main--guide .bl_guide_hero__image img {
  width: 100%;
  height: auto;
}
.ly_main--guide .bl_guide_intro {
  padding: 0 2rem 72px;
  text-align: center;
}
.ly_main--guide .bl_guide_intro__title {
  margin-bottom: 24px;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.4;
  color: #004b9c;
}
.ly_main--guide .bl_guide_intro__text {
  font-size: 1.8rem;
  color: #004b9c;
  opacity: 0.8;
}
.ly_main--guide .ly_section--guide {
  padding-bottom: 72px;
  background: #fff;
}
.ly_main--guide .ly_section--guide .bl_guide__cards--col2 {
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: 1fr !important;
  grid-template-columns: 1fr !important;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .ly_main--guide .ly_section--guide .bl_guide__cards--col2 {
    -ms-grid-columns: (1fr) [2] !important;
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.ly_main--guide .ly_section--guide .bl_guide__cards--col2 .bl_guide__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border: 2px solid #004b9c;
  border-radius: 10px;
  padding: 32px 24px;
  text-align: center;
  -webkit-transition:
    -webkit-transform 0.3s ease,
    -webkit-box-shadow 0.3s ease;
  transition:
    -webkit-transform 0.3s ease,
    -webkit-box-shadow 0.3s ease;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    -webkit-transform 0.3s ease,
    -webkit-box-shadow 0.3s ease;
  -webkit-box-flex: 0 !important;
  -ms-flex: none !important;
  flex: none !important;
  width: 100% !important;
}
@media (max-width: 1024px) {
  .ly_main--guide .ly_section--guide .bl_guide__cards--col2 .bl_guide__card {
    padding: 32px 24px;
  }
}
.ly_main--guide
  .ly_section--guide
  .bl_guide__cards--col2
  .bl_guide__card:hover {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
  -webkit-box-shadow: 0 15px 40px rgba(0, 75, 156, 0.12);
  box-shadow: 0 15px 40px rgba(0, 75, 156, 0.12);
}
.ly_main--guide
  .ly_section--guide
  .bl_guide__cards--col2
  .bl_guide__card__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  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;
}
.ly_main--guide
  .ly_section--guide
  .bl_guide__cards--col2
  .bl_guide__card__icon
  img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.ly_main--guide
  .ly_section--guide
  .bl_guide__cards--col2
  .bl_guide__card__title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #004b9c;
  margin-bottom: 20px;
  line-height: 1.3;
}
.ly_main--guide
  .ly_section--guide
  .bl_guide__cards--col2
  .bl_guide__card__text {
  font-size: 1.4rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.ly_main--guide
  .ly_section--guide
  .bl_guide__cards--col2
  .bl_guide__card__footer {
  width: 100%;
  margin-top: auto;
}
.ly_main--guide
  .ly_section--guide
  .bl_guide__cards--col2
  .bl_guide__card__footer
  .el_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 480px;
  padding: 14px;
  background-color: #004b9c;
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  text-decoration: none;
  border-radius: 10px;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.ly_main--guide
  .ly_section--guide
  .bl_guide__cards--col2
  .bl_guide__card__footer
  .el_btn:hover {
  background-color: #2158ab;
}

/* =====================================
  Editor Content: 編集画面からの出力調整
===================================== */
.bl_guide_editor_content {
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.8;
}
.bl_guide_editor_content p {
  font-size: 1.6rem;
  color: #444;
  margin-bottom: 2rem;
}
.bl_guide_editor_content a {
  color: #004b9c;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.bl_guide_editor_content a:hover {
  color: rgb(0, 100, 207);
  text-decoration: underline;
}
.bl_guide_editor_content .wp-block-columns {
  gap: 32px;
  margin-bottom: 40px;
}
.bl_guide_editor_content .wp-block-image {
  margin-bottom: 2rem;
}
.bl_guide_editor_content .wp-block-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.bl_guide_editor_content .wp-block-button__link {
  background-color: #004b9c;
  color: #fff;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}
.bl_guide_editor_content .wp-block-button__link:hover {
  background-color: #2563c1;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
* .has-alice-blue-color {
  color: #f2faff;
}
* .has-alice-blue-background-color {
  color: #f2faff;
}
* .has-cultured-color {
  color: #f6f6f6;
}
* .has-cultured-background-color {
  color: #f6f6f6;
}
* .has-azure-color {
  color: #00bbf1;
}
* .has-azure-background-color {
  color: #00bbf1;
}
* .has-raisin-black-color {
  color: #202020;
}
* .has-raisin-black-background-color {
  color: #202020;
}
* .has-dark-powder-blue-color {
  color: #003399;
}
* .has-dark-powder-blue-background-color {
  color: #003399;
}

:root,
:before,
:after {
  /* font-size */
  /*Break pointの設定: viewport(最小): width 375px  viewport(最大): width 1200px */
  --font-xxs: clamp(1rem, 0.9091rem + 0.3879vw, 1.2rem);
  --font-xs: clamp(1.2rem, 1.1091rem + 0.3879vw, 1.4rem);
  --font-sm: clamp(1.4rem, 1.3091rem + 0.3879vw, 1.6rem);
  --font-md: clamp(1.6rem, 1.4182rem + 0.7758vw, 2rem);
  --font-ml: clamp(1.8rem, 1.61824rem + 0.77568vw, 2.2rem);
  --font-lg: clamp(2rem, 1.8182rem + 0.7758vw, 2.4rem);
  --font-xl: clamp(2.4rem, 2.2182rem + 0.7758vw, 2.8rem);
  --font-xxl: clamp(3.2rem, 2.8364rem + 1.5515vw, 4rem);
  --font-xxxl: clamp(4rem, 2.9091rem + 4.6545vw, 6.4rem);
  /* Color */
  --powder-blue: #003399;
  --alice-blue: #f4fafd;
  --color-cultured: #f6f6f6;
}

.u-upperCase {
  text-transform: uppercase;
}

.u-font--bold {
  font-weight: 700;
}

.u-flex__reverse--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .u-flex__reverse--column {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.u-mb--24 {
  margin-bottom: 24px;
}

.u-mb--32 {
  margin-bottom: 32px;
}

.u-mt--24 {
  margin-top: 24px;
}

.u-mt--32 {
  margin-top: 32px;
}

/*
* カード比率
*/
.u-ratio--golden2 {
  aspect-ratio: 5/2;
}

.u-boxshadow {
  -webkit-box-shadow: 1px 1px 4px 2px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 4px 2px rgba(0, 0, 0, 0.25);
}

.u-boxshadow--fluffy {
  -webkit-box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.15);
  margin-bottom: 15px;
  -webkit-transition: 0.35s ease-out;
  transition: 0.35s ease-out;
}
.u-boxshadow--fluffy:hover {
  -webkit-transform: translate3d(0, -8px, 0);
  transform: translate3d(0, -8px, 0);
  -webkit-box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.u-image--center {
  display: -ms-grid;
  display: grid;
  place-items: center;
}

/*****
* ブロックエディタ
*****/
.u-bg--azure {
  background: #f2faff;
}

.u-color--powder-blue {
  color: var(--powder-blue);
}

.u-screen-width--full {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

.u-break br {
  display: none;
}
@media (min-width: 1024px) {
  .u-break br {
    display: block;
  }
}

.l-section {
  /* 共通(common) */
  line-height: 1.7;
}
.l-section .c-container {
  width: 96%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .l-section .c-container {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .l-section .c-container {
    max-width: 1080px;
  }
}
@media (min-width: 1200px) {
  .l-section .c-container {
    max-width: 1280px;
  }
}
.l-section.p-ai__faq .c-container {
  width: 96%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .l-section.p-ai__faq .c-container {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .l-section.p-ai__faq .c-container {
    max-width: 1080px;
  }
}
@media (min-width: 1200px) {
  .l-section.p-ai__faq .c-container {
    max-width: 1080px;
  }
}
.l-section.-slim .c-container {
  width: 96%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .l-section.-slim .c-container {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .l-section.-slim .c-container {
    max-width: 1080px;
  }
}
@media (min-width: 1200px) {
  .l-section.-slim .c-container {
    max-width: 1080px;
  }
}
.l-section.p-apps:first-of-type,
.l-section.p-archive:first-of-type {
  padding: 32px 0;
  -webkit-box-shadow: inset 0 -1px 0 0 rgba(0, 139, 241, 0.1);
  box-shadow: inset 0 -1px 0 0 rgba(0, 139, 241, 0.1);
  background-color: #d4e4f4;
}
.l-section.p-apps:not(:first-of-type),
.l-section .p-archive:not(:first-of-type) {
  padding-top: 100px;
  padding-bottom: 0;
  position: relative;
}
@media (min-width: 768px) {
  .l-section.p-apps:not(:first-of-type),
  .l-section .p-archive:not(:first-of-type) {
    padding-top: 208px;
  }
}
.l-section.p-apps:not(:first-of-type)::before,
.l-section .p-archive:not(:first-of-type)::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 67px;
  background: rgba(0, 139, 241, 0.4);
  top: 0;
  left: 50%;
}
@media (min-width: 768px) {
  .l-section.p-apps:not(:first-of-type)::before,
  .l-section .p-archive:not(:first-of-type)::before {
    height: 108px;
  }
}
.l-section.p-apps:not(:first-of-type)::after,
.l-section .p-archive:not(:first-of-type)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 14px;
  background: rgba(0, 139, 241, 0.4);
  top: 67px;
  left: 50%;
}
@media (min-width: 768px) {
  .l-section.p-apps:not(:first-of-type)::after,
  .l-section .p-archive:not(:first-of-type)::after {
    top: 108px;
  }
}
.l-section.p-archive {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
.l-section.p-archive:first-of-type {
  padding-bottom: 0;
  -webkit-box-shadow: inset 0 -1px 0 0 rgba(0, 139, 241, 0.1);
  box-shadow: inset 0 -1px 0 0 rgba(0, 139, 241, 0.1);
}
.l-section.p-archive:not(:first-of-type) {
  padding-top: 100px;
  padding-bottom: 0;
  position: relative;
}
@media (min-width: 768px) {
  .l-section.p-archive:not(:first-of-type) {
    padding-top: 168px;
    padding-bottom: 60px;
  }
}
.l-section.p-archive:not(:first-of-type)::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 67px;
  background: rgba(0, 139, 241, 0.4);
  top: 0;
  left: 50%;
}
@media (min-width: 768px) {
  .l-section.p-archive:not(:first-of-type)::before {
    height: 108px;
    top: -16px;
  }
}
.l-section.p-archive:not(:first-of-type)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 14px;
  background: rgba(0, 139, 241, 0.4);
  top: 53px;
  left: 50%;
}
@media (min-width: 768px) {
  .l-section.p-archive:not(:first-of-type)::after {
    top: 78px;
  }
}
.l-section.p-archive:nth-of-type(3) {
  background-color: var(--color-cultured);
}
.l-section.p-archive.p-nav {
  padding: 32px 0;
}
.l-section.p-archive.p-nav .c-container {
  width: 96%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .l-section.p-archive.p-nav .c-container {
    width: 100%;
    max-width: 480px;
  }
}

.l-section:has(.l-section__container) .c-contaienr {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .l-section:has(.l-section__container) .c-contaienr {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1024px) {
  .l-section:has(.l-section__container) .c-contaienr {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.l-section__container .c-container {
  width: 96%;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .l-section__container .c-container {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .l-section__container .c-container {
    max-width: 1080px;
  }
}
@media (min-width: 1200px) {
  .l-section__container .c-container {
    max-width: 1280px;
  }
}

.l-mv--feature {
  position: relative;
  z-index: 1;
}

.l-section__wrapper {
  position: relative;
  z-index: 2;
}

.p-cards__wrapper.smb-section {
  --smb-section--padding: var(--_padding0);
}

.p-cards {
  width: 100%;
  max-width: 1080px;
  margin: 32px auto 0;
}
@media (min-width: 1024px) {
  .p-cards {
    margin: 64px auto 0;
  }
}
.p-cards.smb-panels .c-row > .c-row__col {
  margin-bottom: 24px;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .p-cards.smb-panels .c-row > .c-row__col {
    margin-bottom: 32px;
  }
}
.p-cards.smb-panels .c-row > .c-row__col .smb-panels__item {
  border-radius: 16px;
  -webkit-box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.05);
}
.p-cards.smb-panels .c-row > .c-row__col .smb-panels__item__body {
  padding: 32px 48px;
}
.p-cards.smb-panels .smb-panels__item--free > .smb-panels__item__body > h3 {
  font-weight: bold;
  font-size: var(--font-md);
  margin-bottom: 16px;
}
.p-cards.smb-panels > p {
  font-size: var(--font-sm);
}

.p-video__wrapper.smb-section {
  --smb-section--padding: var(--_padding0);
}

.p-feature__talk {
  padding: 80px 0;
}

.p-feature__talk h2 {
  font-size: 32px;
  font-weight: bold;
}

.p-feature__media {
  width: 100%;
  max-width: 1080px;
  margin: 32px auto 0;
}
@media (min-width: 1024px) {
  .p-feature__media {
    margin: 64px auto 0;
  }
}

.c-splide-controller {
  position: absolute;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 24px;
}
.c-splide-controller .splide__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  width: 16%;
  position: relative;
}
.c-splide-controller .splide__slide {
  opacity: 0.6;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.c-splide-controller .splide__slide.is-active {
  opacity: 1;
}
.c-splide-controller .splide__arrow--prev {
  width: 32px;
  height: 32px;
  background: #51aff2;
  border-radius: 50%;
  border: none;
  position: relative;
}
.c-splide-controller .splide__arrow--prev::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: translate(-50%, -50%) rotate(225deg);
  transform: translate(-50%, -50%) rotate(225deg);
}
.c-splide-controller .splide__arrow--next {
  width: 32px;
  height: 32px;
  background: #51aff2;
  position: relative;
  border-radius: 50%;
  border: none;
}
.c-splide-controller .splide__arrow--next::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.c-carousel-progress--post {
  background: #ddd;
  width: 840%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-carousel-progress--post__bar {
  background: #51aff2;
  height: 2px;
  -webkit-transition: width 400ms ease;
  transition: width 400ms ease;
  width: 0;
}

.splide__slide__row {
  height: auto !important;
  min-height: 200px; /* 必要に応じて調整 */
}

/* css/flexible-icon-heading-pattern.css */
.c-icon-headingBlock__container > .wp-block-group__inner-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.c-icon-headingBlock__head .wp-block-group__inner-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.c-icon-heading__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.c-icon-heading__icon img {
  max-width: 100%;
  height: auto;
}

.c-icon-headingBlock__description {
  margin-top: 0.2em;
}

@media (max-width: 768px) {
  .c-icon-headingBlock__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .c-icon-heading__icon {
    margin-bottom: 0.5rem;
  }
}
/* タブレットサイズ以上の画面向けスタイル */
/* デスクトップサイズの画面向けスタイル */
.c-anchor__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto;
  grid-template-columns: auto;
  -ms-grid-rows: (1fr) [3];
  grid-template-rows: repeat(3, 1fr);
}
.c-anchor__list > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.c-anchor__list > *:nth-child(2) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.c-anchor__list > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
@media (min-width: 1024px) {
  .c-anchor__list {
    -ms-grid-columns: (1fr) [3];
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
  }
  .c-anchor__list > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .c-anchor__list > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .c-anchor__list > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}
.c-anchor__list.-archive {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: (1fr) [2];
  grid-template-rows: repeat(2, 1fr);
}
.c-anchor__list.-archive > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.c-anchor__list.-archive > *:nth-child(2) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
@media (min-width: 768px) {
  .c-anchor__list.-archive {
    -ms-grid-columns: auto 20px auto;
    grid-template-columns: auto 20px auto;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
  }
  .c-anchor__list.-archive > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .c-anchor__list.-archive > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .c-anchor__list.-archive > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .c-anchor__list.-archive .c-anchor__item:first-of-type {
    -ms-grid-column: 1;
    grid-column: 1/1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .c-anchor__list.-archive .c-anchor__item:first-of-type {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    grid-row: auto;
  }
}
@media (min-width: 768px) {
  .c-anchor__list.-archive .c-anchor__item:last-of-type {
    -ms-grid-column: 1;
    grid-column: 1/1;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .c-anchor__list.-archive .c-anchor__item:last-of-type {
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3/4;
    grid-row: auto;
  }
}

.c-anchor__item a {
  color: #003399;
  font-weight: 500;
  padding: 8px 24px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 1024px) {
  .c-anchor__item a {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 4px;
    -moz-column-gap: 4px;
    column-gap: 4px;
  }
}
.c-anchor__item:not(:last-of-type) a::after {
  content: "";
  display: none;
  position: absolute;
  right: -4%;
  top: 32%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.2);
  width: 1px;
  height: 14px;
  -webkit-transform: rotate(16deg);
  transform: rotate(16deg);
}
@media (min-width: 768px) {
  .c-anchor__item:not(:last-of-type) a::after {
    display: none;
  }
}
.c-anchor__item.p-apps:nth-of-type(1) a::after,
.c-anchor__item.p-apps:nth-of-type(2) a::after {
  content: "";
  display: none;
  position: absolute;
  right: -8%;
  top: 32%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.2);
  width: 1px;
  height: 14px;
  -webkit-transform: rotate(16deg);
  transform: rotate(16deg);
}
@media (min-width: 768px) {
  .c-anchor__item.p-apps:nth-of-type(1) a::after,
  .c-anchor__item.p-apps:nth-of-type(2) a::after {
    display: none;
  }
}

.c-faq__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #ddd;
}
.c-faq__item {
  border-bottom: 1px solid #ddd;
}
.c-faq__question {
  font-size: 16px;
}
.c-faq__question p {
  font-weight: bold;
}
.c-faq__answer {
  font-size: 16px;
}

.js-accordion {
  position: relative;
  padding: 16px 16px 16px 40px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.js-accordion::before,
.js-accordion::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  background: #008bf1;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}

.js-accordion::before {
  width: 2px;
  height: 16px;
  margin-top: -8px;
}

.js-accordion::after {
  width: 16px;
  height: 2px;
  margin-top: -1px;
  left: 8px;
}

.js-accordion.is-accordion--open::before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.js-accordion.is-accordion--open::after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.accordion-box {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  padding-top: 0;
  padding-bottom: 0;
}

.accordion-box-content {
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  padding-top: 16px;
  padding-bottom: 16px;
}

a.accordion-box__anchor {
  color: #008bf1;
  font-weight: bold;
}

.js-accordion.is-accordion--open + .accordion-box {
  max-height: 1000px; /* 十分大きな値を設定 */
  -webkit-transition: max-height 0.4s ease-in-out;
  transition: max-height 0.4s ease-in-out;
}

.js-accordion.is-accordion--open + .accordion-box .accordion-box-content {
  opacity: 1;
}

.c-chevron--down {
  display: inline-block;
  vertical-align: middle;
  color: #008bf1;
  line-height: 1;
  width: 8px;
  height: 8px;
  border: 0.16em solid #003399;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: translateY(-40%) rotate(135deg);
  transform: translateY(-40%) rotate(135deg);
  margin-left: 16px;
}

/* カスタム投稿タイプ('feature')アーカイブページ */
.p-feature__archive__wrapper {
  width: 90%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .p-feature__archive__wrapper {
    width: 90%;
    max-width: 960px;
  }
}
@media (min-width: 1024px) {
  .p-feature__archive__wrapper {
    width: 100%;
    max-width: 1080px;
  }
}
.p-feature__archive__wrapper h2 {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .p-feature__archive__wrapper h2 {
    margin-bottom: 30px;
  }
}
.p-feature__archive__wrapper .p-feature__archive__grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
}
@media (min-width: 1024px) {
  .p-feature__archive__wrapper .p-feature__archive__grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}
.p-feature__archive__wrapper .p-feature__archive__grid .c-feature-card {
  border: 1px solid #ddd;
  text-align: center;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.p-feature__archive__wrapper
  .p-feature__archive__grid
  .c-feature-card__container {
  padding: 32px 48px;
}
.p-feature__archive__wrapper
  .p-feature__archive__grid
  .c-feature-card
  figure
  img {
  max-width: 100%;
  height: auto;
}
.p-feature__archive__container.splide {
  visibility: visible !important;
  margin-top: 24px;
  padding-bottom: 80px;
  position: relative;
  z-index: 0;
}
.p-feature__archive__container.splide::after {
  content: "";
  display: block;
  position: absolute;
  width: 100vw;
  height: 88vh;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#fdfbfb),
    to(#ebedee)
  );
  background-image: linear-gradient(180deg, #fdfbfb 0%, #ebedee 100%);
  bottom: 0;
  left: 0;
  margin: 0 calc(50% - 50vw);
  z-index: -1;
}
.p-feature__archive__container.splide .splide__track {
  padding: 40px;
}
/*カスタム投稿タイプ(Feature)投稿･アーカイブ共通 */
.c-feature-list.splide__list {
  width: 100% !important;
}
.c-feature-card {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  border-radius: 16px;
}
@media (min-width: 768px) {
  .c-feature-card {
    border-radius: 16px;
  }
}
.c-feature-card h3 {
  text-align: center;
  font-weight: 600;
}
.c-feature-card figure img {
  width: 56px;
  height: 56px;
  margin: 0 auto;
}
.c-feature-card.-feature--post .c-feature-card__container {
  padding: 24px 20px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 16px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.c-feature-card.-feature--post
  .c-feature-card__container
  .c-feature-card__button {
  position: relative;
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  place-items: center;
  text-align: center;
  width: 100%;
  min-width: 80px;
  margin: 0 auto;
  height: auto;
  min-height: 32px;
  border: solid 1px #008bf1;
  background-color: #ffffff;
  border-radius: 20px;
}
.c-feature-card.-feature--post
  .c-feature-card__container
  .c-feature-card__button
  span {
  display: inline-block;
  font-size: 12px;
  color: #008bf1;
  z-index: 1;
}
.c-feature-card.-feature--post
  .c-feature-card__container
  .c-feature-card__button::after {
  background: #008bf1;
  position: absolute;
  top: 0;
  left: -4px;
  content: "";
  width: 120%;
  height: 100%;
  -webkit-transform: skewY(-10deg) scale(1, 0);
  transform: skewY(-10deg) scale(1, 0);
  height: 140px;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: 0;
}
.c-feature-card.-feature--post
  .c-feature-card__container
  .c-feature-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 8px;
}
.c-feature-card.-feature--post .c-feature-card__container h3 {
  min-height: 44px;
  height: auto;
  font-size: 14px;
  line-height: 1.6;
}
.c-feature-card.-feature--post .c-feature-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.c-feature-card.-feature--post
  .c-feature-card__link:hover
  .c-feature-card__button
  span {
  color: #ffffff;
}
.c-feature-card.-feature--post
  .c-feature-card__link:hover
  .c-feature-card__button::after {
  -webkit-transform: skewY(-10deg) scale(1, 1);
  transform: skewY(-10deg) scale(1, 1);
}
.c-feature-card.-feature--archive {
  aspect-ratio: auto;
}
.c-feature-card.-feature--archive .c-feature-card__container {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  row-gap: 16px;
}
.c-feature-card.-feature--archive .c-feature-card__container button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.c-feature-card.-feature--archive
  .c-feature-card__container
  .c-feature-card__button {
  position: relative;
  display: -ms-grid;
  display: grid;
  place-items: center;
  text-align: center;
  width: 80%;
  min-width: 80px;
  margin: 0 auto;
  height: auto;
  min-height: 32px;
  border: solid 1px #008bf1;
  border-radius: 20px;
  overflow: hidden;
}
.c-feature-card.-feature--archive
  .c-feature-card__container
  .c-feature-card__button
  span {
  display: inline-block;
  font-size: 12px;
  color: #008bf1;
  z-index: 1;
}
.c-feature-card.-feature--archive
  .c-feature-card__container
  .c-feature-card__button::after {
  background: #008bf1;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-transform: skewY(-10deg) scale(1, 0);
  transform: skewY(-10deg) scale(1, 0);
  height: 140px;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: 0;
}
.c-feature-card.-feature--archive .c-feature-card__container h3 {
  min-height: 32px;
  height: auto;
}
@media (min-width: 1024px) {
  .c-feature-card.-feature--archive .c-feature-card__container h3 {
    min-height: auto;
    height: auto;
  }
}
.c-feature-card.-feature--archive .c-feature-card__anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-feature-card.-feature--archive
  .c-feature-card__anchor:hover
  .c-feature-card__button
  span {
  color: #ffffff;
}
.c-feature-card.-feature--archive
  .c-feature-card__anchor:hover
  .c-feature-card__button::after {
  -webkit-transform: skewY(-10deg) scale(1, 1);
  transform: skewY(-10deg) scale(1, 1);
}
.c-feature-card.-feature--archive .c-feature-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 16px;
}
.c-feature-card.-feature--archive .c-feature-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 4px;
}
@media (min-width: 1024px) {
  .c-feature-card.-feature--archive .c-feature-card__head {
    row-gap: 8px;
  }
}

.c-feature-card__excerpt {
  font-size: 14px;
  text-align: left;
  width: 96%;
  margin: 0 auto;
}

.c-card--post .smb-panels__item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-column-gap: 32px;
  -moz-column-gap: 32px;
  column-gap: 32px;
}
.c-card--post__subheading {
  font-size: 24px;
  font-weight: 600;
}

.single-feature .ly_functions_mv {
  height: 60vh;
}

.p-feature--common {
  padding: 80px 0;
}

.p-feature--common h2 {
  font-size: var(--font-xl);
  font-weight: bold;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .p-feature--common h2 {
    margin-bottom: 16px;
  }
}
.p-feature--common h2 + .smb-section {
  --smb-section--padding: var(--_padding1);
}
.p-feature--common h2 + .smb-section.-scean .p-customPost__section {
  --smb-section--padding: var(--_padding0);
}

.p-ai .is-layout-flex > h4.u-mb--24 {
  margin-bottom: 24px;
}
.p-ai.p-ai__tabPanels .smb-tab-panel {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .p-ai.p-ai__tabPanels .smb-tab-panel {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .p-ai.p-ai__tabPanels .smb-tab-panel {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.p-ai.p-ai__tabPanels .smb-tab-panel__body h3 {
  color: #003399;
  font-size: var(--font-lg);
}
.p-ai.p-ai__tabPanels .smb-tab-panel__body .wp-block-group:nth-of-type(2),
.p-ai.p-ai__tabPanels .smb-tab-panel__body .wp-block-group:nth-of-type(3) {
  padding-top: 64px;
}
.p-ai.p-ai__tabPanels .p-ai-tab-mediaColumn--2 h3 {
  font-size: var(--font-lg);
  margin-bottom: 16px;
  color: #003399;
}
@media (min-width: 1024px) {
  .p-ai.p-ai__tabPanels .p-ai-tab-mediaColumn--2 h3 {
    margin-bottom: 24px;
  }
}
.p-ai.p-ai__tabPanels .p-ai-tab-mediaColumn--2 h4 {
  display: inline-block;
  margin: 0 auto 64px;
  position: relative;
  font-size: var(--font-ml);
  color: #003399;
}
.p-ai.p-ai__tabPanels .p-ai-tab-mediaColumn--2 h4::before {
  content: "";
  display: none;
  width: 20px;
  height: 2px;
  background: #003399;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.p-ai.p-ai__tabPanels .p-ai-tab-mediaColumn--3 h3 {
  font-size: var(--font-lg);
  margin-bottom: 16px;
  color: #003399;
}
@media (min-width: 1024px) {
  .p-ai.p-ai__tabPanels .p-ai-tab-mediaColumn--3 h3 {
    margin-bottom: 24px;
  }
}
.p-ai.p-ai__tabPanels .p-ai-tab-mediaColumn--3 h4 {
  display: inline-block;
  margin: 0 auto 64px;
  position: relative;
  font-size: var(--font-ml);
  color: #003399;
}
.p-ai.p-ai__tabPanels .p-ai-tab-mediaColumn--3 h4::before {
  content: "";
  display: none;
  width: 20px;
  height: 2px;
  background: #003399;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.p-ai.p-ai__feature h3.p-panel__ghost--ai {
  font-size: var(--font-lg);
}
.p-ai.p-ai__feature .p-panel__ghost--ai .smb-panels__item {
  border: 1px solid #cfcfcf;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.16);
  padding: 12px 16px 32px;
}
.p-ai.p-ai__feature
  .p-panel__ghost--ai
  .smb-panels__item
  .smb-panels__item__title,
.p-ai.p-ai__feature
  .p-panel__ghost--ai
  .smb-panels__item
  .smb-panels__item__content {
  color: #ffffff;
}
.p-ai.p-ai__improvement.smb-section {
  padding: 80px 0;
}
.p-ai.p-ai__improvement.smb-section h3 {
  font-size: var(--font-lg);
}
.p-ai.p-ai__improvement.smb-section .p-panel__shadow .smb-panels__item {
  border-radius: 20px;
}
.p-ai.p-ai__improvement.smb-section .p-panel__shadow .smb-panels__item__body {
  padding: 24px 24px 40px;
}
.p-ai.p-ai__plan.smb-section {
  padding: 80px 0;
}
.p-ai.p-ai__plan.smb-section h3 {
  font-size: var(--font-lg);
}
.p-ai.p-ai__plan.smb-section .p-panel__shadow .smb-panels__item {
  border-radius: 20px;
}
.p-ai.p-ai__plan.smb-section .p-panel__shadow .smb-panels__item__body {
  padding: 24px 24px 40px;
}
.p-ai.p-ai__plan.smb-section .p-panel__shadow .smb-panels__item__body h4 {
  font-size: var(--font-md);
}
.p-ai.p-ai__plan.smb-section
  .p-panel__shadow
  .smb-panels__item__body
  .el_priceTxt {
  font-size: var(--font-xl);
}
.p-ai.p-ai__plan.smb-section
  .p-panel__shadow
  .smb-panels__item--free
  > .smb-panels__item__body
  > ul.wp-block-list {
  margin-top: 16px;
  padding-left: 20px;
}
.p-ai.p-ai__plan.smb-section
  .p-panel__shadow
  .smb-panels__item--free
  > .smb-panels__item__body
  > ul.wp-block-list
  li {
  list-style-type: disc;
}
.p-ai.p-ai__faq.smb-section {
  background-color: #fff;
  padding: 80px 0;
}
.p-ai.p-ai__faq.smb-section h3 {
  color: #008bf1;
  font-weight: bold;
  font-size: var(--font-lg);
}

.p-customPost {
  /* 1カラムブロック: 見出し + 画像 + リスト */
}
.p-customPost.smb-section {
  --smb-section--padding: var(--_padding0);
}
.p-customPost.smb-section .p-customPost__section {
  --smb-section--padding: var(--_padding0);
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
.p-customPost .p-customPost__body.wp-block-column .p-customPost__heading {
  margin-bottom: 1.2rem;
}
.p-customPost__column.smb-section {
  --smb-section--padding: var(--_padding0);
}
.p-customPost__column .p-customPost__flexColumn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 40px;
}
.p-customPost__column .p-customPost__flex--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}
.p-customPost__column .p-customPost__flex--item {
  -webkit-box-shadow: 1px 1px 2px 2px rgba(60, 60, 60, 0.2);
  box-shadow: 1px 1px 2px 2px rgba(60, 60, 60, 0.2);
  width: calc((100% - 20px) / 2);
}
@media (min-width: 768px) {
  .p-customPost__column .p-customPost__flex--item {
    width: calc((100% - 60px) / 4);
  }
}
.p-customPost__oneColumn.smb-section {
  --smb-section--padding: var(--_padding0);
  /* 1カラムセクション: 見出し + テキスト + 画像 */
}
.p-customPost__oneColumn.smb-section .p-customPost__block--vertical ul {
  width: 90%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 4px;
}
.p-customPost__oneColumn.smb-section .p-customPost__oneColumn__body {
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .p-customPost__oneColumn.smb-section .p-customPost__oneColumn__body {
    margin-bottom: 40px;
  }
}
.p-customPost__oneColumn.smb-section.-hpm br {
  display: block;
}
@media (min-width: 1024px) {
  .p-customPost__oneColumn.smb-section.-hpm br {
    display: none;
  }
}

.p-customPost__section .case-studies {
  background-color: rgba(255, 255, 255, 0.24);
}
.p-customPost__section .case-studies.u-transparency {
  padding: 20px 8px;
}
.p-customPost__section.u-bg--azure .case-studies {
  background-color: rgba(255, 255, 255, 0.24);
}

.case-studies {
  background-color: #f8f8f8;
  margin-top: 3.2rem;
}
.case-studies__container {
  max-height: 0;
  overflow: hidden;
  -webkit-transition:
    max-height 0.5s ease-out,
    opacity 0.5s ease-out;
  transition:
    max-height 0.5s ease-out,
    opacity 0.5s ease-out;
  opacity: 0;
}
.case-studies__container.active {
  max-height: 1000px; /* 適切な最大値に調整してください */
  opacity: 1;
}

.flexible-image-text-block figure.use-lity {
  cursor: pointer;
}
.flexible-image-text-block figure.-sp {
  width: 100%;
  max-width: 48%;
  margin: 0 auto;
}
.flexible-image-text-block figure.-rectangle {
  width: 100%;
}
@media (min-width: 768px) {
  .flexible-image-text-block figure.-rectangle {
    max-width: 84%;
    margin: 0 auto;
  }
}

.flexible-image-text-group {
  margin-bottom: 2em;
}

.flexible-image-text-columns {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 1.5em;
}
@media (min-width: 1024px) {
  .flexible-image-text-columns {
    max-width: 1080px;
    margin: 0 auto;
    row-gap: 0em;
    -webkit-column-gap: 2em;
    -moz-column-gap: 2em;
    column-gap: 2em;
  }
}
@media (min-width: 1200px) {
  .flexible-image-text-columns {
    max-width: 1280px;
  }
}

.flexible-column {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 300px;
}
.flexible-column:has(> figure) {
  width: 100%;
}
@media (min-width: 768px) {
  .flexible-column:has(> figure) {
    width: calc(64% - 2em);
  }
}
.flexible-column:not(:has(> figure)) {
  width: 100%;
}
@media (min-width: 768px) {
  .flexible-column:not(:has(> figure)) {
    width: 36%;
  }
}
.flexible-column:not(:has(> figure)) .flexible-heading {
  font-size: var(--font-md);
  font-weight: 600;
  color: #333;
  margin-bottom: 1.2rem;
}
.flexible-column:not(:has(> figure)) .flexible-heading.u-color--powder-blue {
  color: var(--powder-blue);
}
.case-studies__heading {
  font-weight: bold;
  margin-bottom: 0.5em;
  padding-left: 20px;
  position: relative;
}
.case-studies__heading::before {
  content: "";
  display: block;
  width: 12px;
  height: 1px;
  background: #333;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.case-studies__paragraph {
  margin-bottom: 1em;
}

.case-studies__link {
  width: 100%;
}
.case-studies__link a {
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  color: #008bf1;
  position: relative;
  padding-bottom: 6px;
}
.case-studies__link a::before {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 6px;
  -webkit-transform: translateY(calc(-50% - 2px)) rotate(30deg);
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  width: 10px;
  height: 1px;
  background-color: #008bf1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.case-studies__link a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 6px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 88px;
  height: 1px;
  background-color: #008bf1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.case-studies__link a:hover::before,
.case-studies__link a:hover::after {
  right: -0.05em;
}

.case-studies__details {
  font-size: var(--font-xd);
}

.case-studies__link {
  margin-top: 20px;
}

.more-link {
  display: inline-block;
  margin-top: 1em;
  padding: 0.5em 1em;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  cursor: pointer;
}

.flexible-image-text-group:nth-child(even) .flexible-image-text-columns {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.p-media__desc--list {
  margin-top: 40px;
}
.p-media__desc--list .p-media__desc--item {
  font-size: var(--font-xs);
  line-height: 2;
}

/*  feature > talk-02 ブロックエディタのカラー変更 */
.p-apps .p-apps__heading {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 96%;
  margin: 0 auto;
  padding: 0;
}
@media (min-width: 768px) {
  .p-apps .p-apps__heading {
    width: 100%;
    max-width: 1080px;
  }
}
.p-apps .p-apps__heading.is-layout-flex h2 {
  font-size: var(--font-xl);
  margin-bottom: 32px;
}
.p-apps .p-apps__heading > .p-apps__headingInner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 32px;
}
.p-apps .p-apps__heading > .p-apps__headingInner h2 {
  font-size: var(--font-xl);
  margin-bottom: 0px;
  line-height: 1;
}
.p-apps .p-apps__heading > .p-apps__headingInner p {
  line-height: 1;
  color: #bcbcbc;
  font-size: 14px;
}
.p-apps .p-apps__heading > .p-apps__headingInner p span {
  color: #bcbcbc;
}
.p-apps .p-apps__subheading {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 96%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .p-apps .p-apps__subheading {
    width: 100%;
    max-width: 1080px;
    padding: 0 16px;
  }
}

.p-apps__icon-heading h3 {
  font-size: var(--font-md);
  font-weight: 700;
}

.p-apps__cta > .smb-btn {
  padding: 16px 32px;
}

.p-apps__content {
  margin: 0 calc(50% - 50vw);
  background: transparent;
}

.p-media__container {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}
.p-media__heading {
  font-size: var(--font-lg);
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}
.p-media__image {
  width: 100%;
  aspect-ratio: 5/3;
}
.p-media__image img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.custom-responsive-columns {
  width: 100%;
  max-width: 1200px; /* または望ましい最大幅 */
  margin: 0 auto;
}

.custom-column {
  width: 100%;
  padding: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.custom-image img {
  width: 100%;
  height: auto;
}

.custom-heading {
  margin-bottom: 10px;
}

.custom-paragraph {
  margin-top: 0;
}

@media (min-width: 768px) {
  .custom-responsive-columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .custom-column {
    width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
  .reverse-on-desktop {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
@media (max-width: 767px) {
  .custom-responsive-columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .custom-column.image-column {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
}
/* Lity スタイル */
.lity-container {
  max-width: 90%;
  max-height: 90%;
}

.lity-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
}

.lity-close {
  top: -35px;
  right: -35px;
}

/* フレキシブル画像・テキストブロックのスタイル */
.flexible-image-text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flexible-column {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 300px;
  flex: 1 1 300px;
  padding: 0;
  min-width: 50%;
}

.flexible-image img {
  width: 100%;
  height: auto;
}
.flexible-image.lity-enabled {
  cursor: pointer;
}

.flexible-paragraph {
  margin-top: 0;
}

/* YouTube埋め込みブロックのスタイル */
.ytube {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 アスペクト比 */
  height: 0;
  overflow: hidden;
}

.ytube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ytube a.lity-youtube {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.ytube a.lity-youtube:hover {
  background: rgba(0, 0, 0, 0.2);
}

/* レスポンシブスタイル */
@media (max-width: 767px) {
  .flexible-image-text-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flexible-column {
    width: 100%;
    min-width: 100%;
  }
}
