@charset "UTF-8";
/*fixed spacing*/
/*spacing*/
/*line-height*/
/*radius*/
.l-content {
  margin-bottom: 0 !important;
}

.header_cta_contact a:hover {
  background: #dbf8ff;
}

/*fix-bottom-cta*/
@media screen and (max-width: 959px) {
  body {
    padding-bottom: 80px; /* 固定メニューの高さに合わせて余白を設定 */
  }
  .p-fixBtnWrap {
    bottom: 5.5em; /* 上に戻るボタンの位置を上に */
  }
  #fixed-bottom-cta {
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 99;
    background: rgba(255, 255, 255, 0.73);
    padding: 1.5em 0.3em;
  }
  #fixed-bottom-cta .swell-block-column {
    padding: 0.5em;
  }
  #fixed-bottom-cta .swell-block-button__link:first-child {
    background-color: white;
  }
  #fixed-bottom-cta .swell-block-button__link[data-has-icon] {
    padding: 1em 1em;
  }
}
@media screen and (min-width: 960px) {
  #fixed-bottom-cta, #fixed-sidebar-menu {
    display: none; /* PCでは非表示にする */
  }
}

.c-gnav > .menu-item > a .ttl {
  font-weight: bold;
}

.header_cta_contact a {
  border: 2px solid #043491;
}
.header_cta_contact a:hover {
  background: white;
  color: #033491;
  border: 2px solid #033491;
}

.header_cta_meeting {
  width: 200px;
  border: 2px solid #033491;
  border-radius: 128px;
}

/* ===== LPヘッダー共通 ===== */
.l-header.-lpHeader {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.lpHeader__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* ロゴ */
.lpHeader__logo img {
  max-height: 42px;
  height: auto;
  width: auto;
  display: block;
}

/* PCナビ */
.lpHeader__nav ul {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lpHeader__nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #033491;
  position: relative;
  padding-bottom: 5px;
}

.lpHeader__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #033491;
  transition: width 0.25s ease;
}

.lpHeader__nav a:hover::after {
  width: 100%;
}

/* PC CTAボタン */
.lpHeader__cta {
  margin-left: auto;
}

.lpHeader__btn {
  display: inline-block;
  padding: 10px 30px;
  background-color: #033491;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lpHeader__btn:hover {
  background-color: #033491;
  transform: translateY(-1px);
}

/* ===== ハンバーガー＆ドロワー（SP用） ===== */
/* ハンバーガーボタン */
.lpHeader__toggle {
  display: none; /* PCでは非表示 */
  position: relative;
  width: 32px;
  height: 24px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.lpHeader__toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #033491;
  font-weight: 700;
  border-radius: 2px;
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}

.lpHeader__toggle span:nth-child(1) {
  top: 0;
}

.lpHeader__toggle span:nth-child(2) {
  top: 11px;
}

.lpHeader__toggle span:nth-child(3) {
  top: 22px;
}

/* 開いたときの×印アニメ */
.lpHeader__toggle.-open span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}

.lpHeader__toggle.-open span:nth-child(2) {
  opacity: 0;
}

.lpHeader__toggle.-open span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

/* ドロワーメニュー全体 */
.lpHeader__drawer {
  position: fixed;
  top: 56px; /* ヘッダーの高さに合わせて調整 */
  left: 0;
  right: 0;
  background: #fff;
  max-height: 0;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  transition: max-height 0.25s ease;
  z-index: 999;
}

.lpHeader__drawer.-open {
  max-height: 70vh; /* 開いたときの高さ */
}

.lpHeader__drawerNav ul {
  list-style: none;
  margin: 0;
  padding: 12px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lpHeader__drawerNav a {
  display: block;
  text-decoration: none;
  font-size: 15px;
  color: #033491;
  font-weight: 700;
  padding: 8px 0;
}

/* ドロワー内のCTA */
.lpHeader__drawerBtn {
  margin-top: 4px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #0070c9;
  color: #fff;
  text-align: center;
}

/* 背景スクロール止める場合 */
body.lpMenu-open {
  overflow: hidden;
}

/* ===== ブレークポイント 768px以下（SP） ===== */
@media (max-width: 768px) {
  .lpHeader__inner {
    padding: 10px 16px;
  }
  /* ロゴ、メニュー、CTAのレイアウト調整 */
  .lpHeader__nav,
  .lpHeader__cta {
    display: none; /* SPではヘッダー内のナビとCTAは非表示にして、ドロワー側に集約 */
  }
  .lpHeader__toggle {
    display: block;
    margin-left: auto;
  }
}
.MV_opendate {
  padding: 1rem 1.5rem;
  border-radius: 8px;
}
@media screen and (max-width: 767.98px) {
  .MV_opendate {
    padding: 1rem;
  }
}
.MV_opendate span.swl-inline-icon {
  font-size: 28px;
  margin-right: 0.5rem;
}
@media screen and (max-width: 767.98px) {
  .MV_opendate span.swl-inline-icon {
    font-size: 16px !important;
  }
}

.MV_maincatch_txt {
  line-height: 1.6 !important;
  margin-left: 0.5rem !important;
  -webkit-text-stroke: 6px white;
  paint-order: stroke;
}

.MV_minicatch {
  background-color: black;
  color: white;
  font-weight: 300 !important;
  padding: 1rem;
  border-radius: 128px;
}

.MV_minicatch_notice_pc {
  width: 60%;
  -webkit-text-stroke: 3px white;
  paint-order: stroke;
}

.MV_CTA .MV_CTA_btn a.swell-block-button__link:hover {
  transition: all 0.5s;
  transform: scale(1.02, 1.02);
}
.MV_CTA .MV_CTA_catch_pc {
  position: relative;
  left: 15%;
  overflow: hidden;
}

.aboutus_quote {
  position: relative;
  padding: 2rem;
  width: 80%;
  background-image: linear-gradient(-135deg, transparent 10px, #f5f7ff 10px);
  color: #212121;
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  .aboutus_quote {
    width: 100%;
    padding: 1rem;
  }
}
.aboutus_quote::before {
  position: absolute;
  content: "";
  right: 0px;
  top: 0px;
  width: 15px;
  height: 15px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
}

#aboutus {
  background-image: url(http://mar-kpt.co.jp/type-b/wp-content/uploads/2025/02/aboutus_bg01.png);
  background-size: 180px;
  background-repeat: no-repeat;
  background-position: 85% 80%;
}
@media screen and (max-width: 767.98px) {
  #aboutus {
    background-image: none;
  }
}

h2.feature_lead {
  position: relative;
  padding: 0.5rem 0;
  overflow: hidden;
}
h2.feature_lead::before, h2.feature_lead::after {
  position: absolute;
  width: 100%;
  bottom: 0;
  content: "";
}
h2.feature_lead::before {
  border-bottom: 3px solid #043491;
}
h2.feature_lead::after {
  border-bottom: 3px solid #E1E7F4;
}

.swell-block-box-menu.is-style-default .swell-block-box-menu__item {
  background: white;
  border-radius: 4px;
  box-shadow: 2px 2px 3px #eee;
}

.flow_requirement {
  background: #eff8ff;
  border-radius: 8px;
  box-shadow: 2px 2px 5px #d1d1d1;
  padding: 2rem;
}

summary.swell-block-accordion__title {
  border-radius: 4px;
}

details.swell-block-accordion__item {
  margin-bottom: 2rem;
}

div.swell-block-accordion__body {
  background-color: white;
}

/*アコーディオン*/
div.p-blogParts.post_content.faq_contents {
  width: 80%;
}

dl.swell-block-faq.faq_contents {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.swell-block-faq__item {
  width: 70%;
}

@media screen and (max-width: 768px) {
  .swell-block-faq__item {
    width: 100%;
  }
}
.swell-block-faq__item .faq_q {
  cursor: pointer;
  padding-right: 1rem;
  background: #043491;
  color: white;
  border-radius: 4px;
}

@media screen and (max-width: 768px) {
  dt.faq_q {
    font-size: 14px;
  }
}
.swell-block-faq .faq_q:before {
  content: "Q：";
  left: 10px;
}

.swell-block-faq__item .faq_q::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  display: block;
  width: 7px;
  height: 7px;
  margin: auto;
  content: "";
  -webkit-transform: translate(0px, -2px) rotate(135deg);
  transform: translate(0px, -2px) rotate(135deg);
  border-top: 2px solid white;
  border-right: 2px solid white;
  transition: 0.5s;
}

.faq_q.faq-open::after {
  transition: 0.5s;
  -webkit-transform: translate(0px, 2px) rotate(-45deg);
  transform: translate(0px, 2px) rotate(-45deg);
}

.faq_a {
  transition: 0.5s;
}

.faq_q:not(.faq-open) + .faq_a {
  padding-top: 0;
  padding-bottom: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: 0.5s;
}

.RWK_problem {
  background-color: white;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 3px 2px 5px 0px rgba(0, 0, 0, 0.2);
}

#RWK_about h3 {
  position: relative;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #3D79D6;
  color: #333;
  font-weight: bold;
  background-color: #F5FBFF;
  width: 60%;
  margin: 0 auto 2rem;
}
#RWK_about h3::before {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) skew(-25deg);
  height: 20px;
  width: 10px;
  border-right: 3px solid #3D79D6;
  background-color: #F5FBFF;
  content: "";
}

.heading_img_aboutus figure.wp-block-media-text__media {
  opacity: 0.1;
  position: relative;
  right: 70%;
  bottom: 20px;
}
@media screen and (max-width: 767.98px) {
  .heading_img_aboutus figure.wp-block-media-text__media {
    right: 0;
    bottom: 10px;
  }
}

.heading_img_feature figure.wp-block-media-text__media {
  opacity: 0.1;
  position: relative;
  right: 35%;
  bottom: 20px;
}
@media screen and (max-width: 767.98px) {
  .heading_img_feature figure.wp-block-media-text__media {
    right: 0;
    bottom: 0;
    top: 35px;
  }
}

.heading_img_course figure.wp-block-media-text__media {
  opacity: 0.1;
  position: relative;
  right: 910px;
  bottom: 20px;
}
@media screen and (max-width: 767.98px) {
  .heading_img_course figure.wp-block-media-text__media {
    right: 0;
    width: 30%;
  }
}

.heading_img_flow figure.wp-block-media-text__media {
  opacity: 0.1;
  position: relative;
  right: 215%;
  bottom: 20px;
}
@media screen and (max-width: 767.98px) {
  .heading_img_flow figure.wp-block-media-text__media {
    right: 0;
    bottom: 15px;
    width: 50%;
  }
}

.flow_requirement .flow_requirement_heading {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5em !important;
  display: flex;
  justify-content: center;
}
.flow_requirement .flow_requirement_heading::before {
  content: "";
  position: absolute;
  bottom: -10px;
  display: inline-block;
  width: 60px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #033491;
  border-radius: 2px;
}
.flow_requirement .flow_requirement_note {
  margin-top: 1em !important;
}

div.p-blogParts.post_content.faq_contents {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 767.98px) {
  div.p-blogParts.post_content.faq_contents {
    width: 100%;
  }
}

/*# sourceMappingURL=add.css.map */
