@charset "UTF-8";
/* 共通 */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 1.5;
}

:root {
  --white-color: #FFFFFF;
  --blue-color: #2563EB;
  --yellow-color: #FCD34E;
  --red-color: #EE221E;
  --black-color: #333333;
}

.lp__heatmap-item-ttl br {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

h2 {
  font-size: 32px;
}
@media (max-width: 950px) {
  h2 {
    font-size: clamp(16px, 4.3vw, 18px);
  }
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 18px;
}
@media (max-width: 950px) {
  h4 {
    font-size: clamp(16px, 4.3vw, 18px);
  }
}

p, li {
  font-size: 14px;
}

section {
  max-width: 100%;
  margin: 0 auto;
}

.inner {
  max-width: 1240px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

div.wrapper {
  max-width: 100%;
  overflow: hidden;
}

.text-indent {
  padding-left: 0.5em;
  text-indent: -1em;
}

span.emphasis {
  font-size: 40px;
  font-weight: 600;
}

.cv-btn {
  display: flex;
  gap: 20px;
  padding: 50px 0;
}
@media (max-width: 950px) {
  .cv-btn {
    flex-direction: column;
    gap: 30px;
    padding: 10px 0 180px;
  }
}
.cv-btn p a {
  border-radius: 50px;
  font-size: 20px;
  padding: 20px 80px;
  box-shadow: 6px 4px 6px rgba(0, 0, 0, 0.2);
}
@media (max-width: 950px) {
  .cv-btn p a {
    font-size: clamp(14px, 2.5vw, 20px);
    padding: 4% 0;
    width: 100%;
    display: inline-block;
    text-align: center;
  }
}
.cv-btn p.btn-blue a {
  background: var(--blue-color);
  border: 1px solid var(--white-color);
  color: var(--white-color);
}
.cv-btn p.btn-white a {
  background: var(--white-color);
  border: 1px solid var(--blue-color);
  color: var(--blue-color);
}

/*==============================
TOP戻るボタン
==============================*/
.top-btn {
  position: fixed;
  bottom: 10%;
  right: 5%;
  z-index: 100;
  opacity: 0;
  transition: 0.3s ease;
}

.top-btn a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: #333;
  font-size: 12px;
  border: 2px solid #fff;
  width: 60px;
  height: 60px;
  border-radius: 90px;
  box-sizing: border-box;
}

.top-btn span {
  display: block;
  font-size: inherit;
  color: #fff;
  line-height: 1;
  margin-top: 3px;
}

.top-btn i {
  color: inherit;
}

.top-btn.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 599px) {
  .top-btn {
    right: 2.5%;
    bottom: 5%;
  }
}
.lp__lv2-heading {
  font-size: 30px;
  text-align: center;
  line-height: 1.6;
}

.lp__lv2-heading02 {
  color: #d10000;
  font-size: 1.25em;
  font-style: normal;
}

.lp__lv2-heading03 {
  color: #d10000;
  font-style: normal;
  font-size: inherit;
}

.lp__lv2-heading04 {
  font-size: 30px;
  text-align: center;
  color: #fff;
}

@media (max-width: 1279px) {
  .lp__lv2-heading {
    font-size: 26px;
  }
  .lp__lv2-heading04 {
    font-size: 26px;
  }
}
@media (max-width: 950px) {
  .lp__lv2-heading,
  .lp__lv2-heading03,
  .lp__lv2-heading04 {
    font-size: 22px;
  }
}
@media (max-width: 750px) {
  .lp__lv2-heading,
  .lp__lv2-heading03,
  .lp__lv2-heading04 {
    font-size: 20px;
  }
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/*==============================
改行
==============================*/
.br-sp {
  display: none !important;
}

@media (max-width: 950px) {
  .br-sp {
    display: inline !important;
  }
}
.br-tab {
  display: none !important;
}

@media (max-width: 1200px) {
  .br-tab {
    display: inline !important;
  }
}
.br-pc {
  display: inline !important;
}

@media (max-width: 750px) {
  .br-pc {
    display: none !important;
  }
}
/*==============================
header
==============================*/
.lp__header {
  padding: 0 100px;
  position: fixed;
  top: 0;
  z-index: 9999;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  /*height: 100px;*/
  padding: 15px 0;
}

.lp__header-inner {
  width: 100%;
}

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

.lp__header-logo {
  max-width: 330px;
  width: 100%;
}

.lp__header-logo a {
  display: inline-block;
}

.lp__header-logo img {
  width: 100%;
}

.lp__nav-btn {
  display: flex;
  gap: 30px;
}
.lp__nav-btn .lp__nav-btn-tel {
  color: var(--blue-color);
  font-size: 22px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp__nav-btn .lp__nav-btn-tel img {
  width: 20px;
}
.lp__nav-btn .lp__nav-btn-inc {
  font-size: 18px;
  background: linear-gradient(to bottom right, #1D4EB8, var(--blue-color));
  color: var(--white-color);
  font-weight: 600;
  padding: 15px 50px;
  border-radius: 50px;
}

@media (max-width: 1440px) {
  .lp__header {
    padding-left: 30px;
    padding-right: 30px;
  }
  .lp__header-top {
    padding: 0 7.5% 0 6.7%;
  }
}
@media (max-width: 1279px) {
  .lp__header-logo {
    max-width: 300px;
  }
  .lp__header-top {
    padding: 0 7.1% 0 6.4%;
  }
}
@media (max-width: 1024px) {
  .lp__header-top {
    padding: 0;
  }
}
@media (max-width: 950px) {
  .lp__header {
    padding: 0 15px;
    /*height: auto;*/
    /*height: 60px;*/
    margin: 0;
  }
  .lp__header-inner {
    position: fixed;
    z-index: 9999;
    background: #fff;
    left: 0;
    width: 100%;
    top: 0;
  }
  .lp__header-top {
    height: 60px;
    padding-left: 20px;
    justify-content: start;
  }
  .lp__header-logo {
    max-width: 250px;
    margin-right: auto;
  }
  .lp__nav-btn {
    display: none;
  }
}
/*==============================
ハンバーガー
==============================*/
.hamburger {
  display: none;
}

.hamburger__btn {
  display: block;
  position: relative;
  width: 100px;
  height: 100px;
  touch-action: manipulation;
  z-index: 9999;
  padding: 0;
}

.is-active .hamburger__bar:nth-child(1) {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  top: 48px;
}

.is-active .hamburger__bar:nth-child(2) {
  background: transparent;
}

.is-active .hamburger__bar:nth-child(3) {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  top: 48px;
}

.hamburger__bar {
  display: block;
  background: var(--blue-color);
  width: 40px;
  height: 2px;
  position: absolute;
  transition-duration: 0.2s;
  transition-property: transform;
}

.hamburger__bar:nth-child(1) {
  top: 36px;
  left: 20px;
}

.hamburger__bar:nth-child(2) {
  top: 46px;
  left: 20px;
}

.hamburger__bar:nth-child(3) {
  top: 56px;
  left: 20px;
}

@media (max-width: 950px) {
  .hamburger {
    display: block;
  }
}
/*==============================
ナビゲーション
==============================*/
.lp__nav {
  display: none;
}

.lp__nav-item {
  text-align: center;
  position: relative;
  font-size: 14px;
  width: 25%;
  border-right: 1px solid #333;
}

.lp__nav-item:last-of-type {
  border-right: none;
}

.lp__nav-item a {
  color: #333;
  display: block;
  padding: 0px;
  box-sizing: border-box;
}

@media (max-width: 950px) {
  .lp__nav {
    display: block;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    height: 0;
    overflow: hidden;
  }
  .lp__nav-list {
    margin: 0;
    display: block;
    padding: 0 10px 20px;
  }
  .lp__nav-item {
    text-align: left;
    width: 100%;
    border-right: none;
  }
  .lp__nav-item a {
    display: block;
    font-size: 14px;
    padding: 12px 30px 12px 10px;
    border-bottom: 1px solid var(--blue-color);
    position: relative;
  }
  .lp__nav-item a::after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--blue-color);
    position: absolute;
    right: 15px;
  }
}
/*==============================
lp--meta_fv-meta
==============================*/
section.lp--meta_fv-meta {
  margin-top: 85px;
  padding: 0 20px;
}
section.lp--meta_fv-meta .inner {
  max-width: 1380px;
  padding: 0;
  background-color: #2563EB;
  border-radius: 50px;
  position: relative;
}
@media (max-width: 950px) {
  section.lp--meta_fv-meta .inner {
    border-radius: 25px;
  }
}
section.lp--meta_fv-meta .inner::after {
  position: absolute;
  content: "";
  width: min(35vw, 350px);
  aspect-ratio: 511/427;
  z-index: 1;
  bottom: 30px;
  right: 30px;
  background-image: url(../img/fv-meta/fv-meta_bg.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
}
@media (max-width: 950px) {
  section.lp--meta_fv-meta .inner::after {
    width: min(50vw, 280px);
    right: 0;
    left: 0;
    margin: 0 auto;
  }
}
section.lp--meta_fv-meta .inner .mainVisual {
  padding: 30px 20px 0;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
section.lp--meta_fv-meta .inner .mainVisual .yellow-text {
  padding-top: 25px;
}
@media (max-width: 950px) {
  section.lp--meta_fv-meta .inner .mainVisual .yellow-text {
    padding-top: 10px;
  }
}
section.lp--meta_fv-meta .inner .mainVisual .yellow-text p {
  font-size: 36px;
  display: inline-block;
  color: var(--yellow-color);
  font-weight: 500;
  border-bottom: 2px dashed var(--white-color);
}
@media (max-width: 950px) {
  section.lp--meta_fv-meta .inner .mainVisual .yellow-text p {
    font-size: clamp(20px, 5vw, 36px);
    display: inline;
    line-height: 2.5em;
  }
}
section.lp--meta_fv-meta .inner .mainVisual .yellow-text p span.sp-yellow {
  color: var(--yellow-color);
  font-weight: 600;
  font-size: 36px;
}
@media (max-width: 950px) {
  section.lp--meta_fv-meta .inner .mainVisual .yellow-text p span.sp-yellow {
    font-size: 5vw;
    font-size: clamp(20px, 5vw, 36px);
  }
}
section.lp--meta_fv-meta .inner .mainVisual .yellow-text p span.sp-yellow span.text-indent {
  color: var(--yellow-color);
  font-size: 36px;
  padding-left: 0;
  margin-left: -0.5em;
}
@media (max-width: 950px) {
  section.lp--meta_fv-meta .inner .mainVisual .yellow-text p span.sp-yellow span.text-indent {
    font-size: clamp(20px, 5vw, 36px);
    margin-left: -1em;
    padding-left: 0.5em;
  }
}
section.lp--meta_fv-meta .inner .mainVisual .main-text {
  padding-top: 40px;
}
@media (max-width: 950px) {
  section.lp--meta_fv-meta .inner .mainVisual .main-text {
    padding-top: 10px;
  }
}
section.lp--meta_fv-meta .inner .mainVisual .main-text h2 span {
  color: var(--white-color);
}
section.lp--meta_fv-meta .inner .mainVisual .main-text h2 span.sub {
  font-size: 40px;
  line-height: 1.8;
}
@media (max-width: 950px) {
  section.lp--meta_fv-meta .inner .mainVisual .main-text h2 span.sub {
    font-size: 4.5vw;
  }
}
section.lp--meta_fv-meta .inner .mainVisual .main-text h2 span.sub span {
  font-size: 40px;
  padding-left: 0;
  margin-left: -0.5em;
}
@media (max-width: 950px) {
  section.lp--meta_fv-meta .inner .mainVisual .main-text h2 span.sub span {
    font-size: 4.5vw;
  }
}
section.lp--meta_fv-meta .inner .mainVisual .main-text h2 span.main {
  font-size: 56px;
  padding-top: 6px;
  font-weight: 500;
}
@media (max-width: 950px) {
  section.lp--meta_fv-meta .inner .mainVisual .main-text h2 span.main {
    font-size: 6vw;
  }
}
section.lp--meta_fv-meta .inner .mainVisual .award-box {
  max-width: 600px;
  padding-top: 30px;
}
@media (max-width: 950px) {
  section.lp--meta_fv-meta .inner .mainVisual .award-box {
    padding-top: 10px;
  }
}
section.lp--meta_fv-meta .inner .mainVisual .award-box img {
  width: 100%;
}

/*==============================
lp--meta_worries
==============================*/
section.lp--meta_worries {
  background: url(../img/worries/worries_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  max-width: 1500px;
  margin: 100px auto 0;
}
@media (max-width: 950px) {
  section.lp--meta_worries {
    background: url(../img/worries/worries_bg_sp.png);
  }
}
section.lp--meta_worries .inner {
  padding: 100px 0;
}
@media (max-width: 950px) {
  section.lp--meta_worries .inner {
    padding: 30px 0;
  }
}
section.lp--meta_worries .inner .title {
  text-align: center;
  padding-bottom: 30px;
}
section.lp--meta_worries .inner .title h2 {
  color: var(--white-color);
}
section.lp--meta_worries .inner .title h2 span.emphasis {
  font-size: 48px;
  color: var(--yellow-color);
}
@media (max-width: 950px) {
  section.lp--meta_worries .inner .title h2 span.emphasis {
    font-size: clamp(24px, 3.5vw, 48px);
  }
}
section.lp--meta_worries .inner .gray-box {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 950px) {
  section.lp--meta_worries .inner .gray-box {
    flex-direction: column;
    padding: 0 20px;
  }
}
section.lp--meta_worries .inner .gray-box .content {
  padding: 15px 7px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid var(--white-color);
  max-width: 380px;
}
@media (max-width: 950px) {
  section.lp--meta_worries .inner .gray-box .content {
    max-width: none;
  }
}
section.lp--meta_worries .inner .gray-box .content h4, section.lp--meta_worries .inner .gray-box .content p {
  color: var(--white-color);
}
section.lp--meta_worries .inner .gray-box .content h4 {
  text-align: center;
}
section.lp--meta_worries .inner .gray-box .content p {
  padding-top: 20px;
  text-align: center;
}

/*==============================
lp--meta_strength
==============================*/
section.lp--meta_strength .inner {
  padding: 100px 0 0;
}
@media (max-width: 950px) {
  section.lp--meta_strength .inner {
    padding: 50px 20px 0;
  }
}
section.lp--meta_strength .inner .title {
  text-align: center;
}
section.lp--meta_strength .inner .title h2 span.emphasis {
  color: var(--blue-color);
}
@media (max-width: 950px) {
  section.lp--meta_strength .inner .title h2 span.emphasis {
    font-size: 6.5vw;
    font-size: clamp(24px, 3.5vw, 48px);
  }
}
section.lp--meta_strength .inner .flex-box {
  padding-top: 60px;
  display: flex;
  justify-content: space-between;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 950px) {
  section.lp--meta_strength .inner .flex-box {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
  }
}
section.lp--meta_strength .inner .flex-box.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 950px) {
  section.lp--meta_strength .inner .flex-box.reverse {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
section.lp--meta_strength .inner .flex-box .text {
  max-width: 480px;
}
section.lp--meta_strength .inner .flex-box .text h3 {
  font-size: 24px;
  color: var(--blue-color);
}
@media (max-width: 950px) {
  section.lp--meta_strength .inner .flex-box .text h3 {
    font-size: clamp(18px, 4.3vw, 24px);
    text-align: center;
  }
}
section.lp--meta_strength .inner .flex-box .text p {
  padding-top: 20px;
  font-size: 16px;
  letter-spacing: 0.06em;
}
@media (max-width: 950px) {
  section.lp--meta_strength .inner .flex-box .text p {
    font-size: 14px;
  }
}
section.lp--meta_strength .inner .flex-box .img {
  max-width: 270px;
}
@media (max-width: 950px) {
  section.lp--meta_strength .inner .flex-box .img {
    max-width: 200px;
    text-align: center;
  }
}
section.lp--meta_strength .inner .cv-btn {
  margin-top: 60px;
  justify-content: center;
}
@media (max-width: 950px) {
  section.lp--meta_strength .inner .cv-btn {
    margin-top: 30px;
    padding-bottom: 0;
  }
}

/*==============================
lp--meta_support
==============================*/
section.lp--meta_support .inner {
  padding: 100px 0 0;
}
section.lp--meta_support .inner .title {
  text-align: center;
}
section.lp--meta_support .inner .title h2 span.emphasis {
  color: var(--blue-color);
}
@media (max-width: 950px) {
  section.lp--meta_support .inner .title h2 span.emphasis {
    font-size: 6.5vw;
    font-size: clamp(24px, 3.5vw, 48px);
  }
}
section.lp--meta_support .inner .flex-box {
  padding-top: 60px;
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 950px) {
  section.lp--meta_support .inner .flex-box {
    flex-direction: column;
    padding: 30px 40px 0;
    gap: 30px;
  }
}
section.lp--meta_support .inner .flex-box .content {
  border: 1px solid var(--blue-color);
  border-radius: 4px;
  padding: 20px;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.25);
}
section.lp--meta_support .inner .flex-box .content h4 {
  color: var(--blue-color);
}
section.lp--meta_support .inner .flex-box .content ul {
  padding-top: 20px;
}
section.lp--meta_support .inner .flex-box .content ul li + li {
  padding-top: 2px;
}

/*==============================
lp--meta_action
==============================*/
section.lp--meta_action {
  max-width: 1500px;
  margin: 100px auto 0;
  background-image: url(../img/action/action_bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top center;
}
section.lp--meta_action .inner {
  padding: 80px 0 0;
}
section.lp--meta_action .inner .title {
  text-align: center;
}
section.lp--meta_action .inner .title h2 span.emphasis {
  color: var(--blue-color);
}
@media (max-width: 950px) {
  section.lp--meta_action .inner .title h2 span.emphasis {
    font-size: 6.5vw;
    font-size: clamp(24px, 3.5vw, 48px);
  }
}
section.lp--meta_action .inner .flex-box {
  padding-top: 60px;
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  section.lp--meta_action .inner .flex-box {
    flex-wrap: wrap;
    padding: 60px 20px 0;
    justify-content: center;
    gap: 30px;
  }
}
@media (max-width: 950px) {
  section.lp--meta_action .inner .flex-box {
    flex-direction: column;
    padding: 30px 20px 0;
    gap: 30px;
  }
}
section.lp--meta_action .inner .flex-box .content {
  width: 33%;
  max-width: 308px;
  border: 1px solid var(--blue-color);
  background-color: var(--white-color);
  border-radius: 4px;
  padding: 20px;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.25);
}
@media (max-width: 950px) {
  section.lp--meta_action .inner .flex-box .content {
    width: auto;
    max-width: none;
  }
}
section.lp--meta_action .inner .flex-box .content .img {
  width: 130px;
  margin: 0 auto;
}
section.lp--meta_action .inner .flex-box .content .title {
  padding-top: 10px;
}
section.lp--meta_action .inner .flex-box .content .arrow {
  padding-top: 10px;
  width: 100%;
  max-width: 38px;
  margin: 0 auto;
}
section.lp--meta_action .inner .flex-box .content .text {
  padding-top: 20px;
}

/*==============================
lp--meta_features
==============================*/
section.lp--meta_features .inner {
  padding: 100px 0 0;
}
section.lp--meta_features .inner .title {
  text-align: center;
}
section.lp--meta_features .inner .title h2 span.emphasis {
  color: var(--blue-color);
}
@media (max-width: 950px) {
  section.lp--meta_features .inner .title h2 span.emphasis {
    font-size: 6.5vw;
    font-size: clamp(24px, 3.5vw, 48px);
  }
}
section.lp--meta_features .inner .flex-box {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 950px) {
  section.lp--meta_features .inner .flex-box {
    flex-direction: column;
    padding: 40px 20px 0;
    gap: 30px;
  }
}
section.lp--meta_features .inner .flex-box .content {
  max-width: 300px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 950px) {
  section.lp--meta_features .inner .flex-box .content {
    max-width: none;
  }
}
section.lp--meta_features .inner .flex-box .content .img {
  max-width: 130px;
}
section.lp--meta_features .inner .flex-box .content .text {
  padding-top: 20px;
}
section.lp--meta_features .inner .flex-box .content .text h4 {
  text-align: center;
}
section.lp--meta_features .inner .flex-box .content .text p {
  padding-top: 20px;
}

/*==============================
lp--meta_format
==============================*/
/*==============================
lp--meta_case
==============================*/
section.lp--meta_case {
  background-color: #F0F4FF;
  margin: 100px 0 0;
}
section.lp--meta_case .inner {
  padding: 80px 0;
}
@media (max-width: 950px) {
  section.lp--meta_case .inner {
    padding: 30px 0 120px;
  }
}
section.lp--meta_case .inner .title {
  text-align: center;
}
section.lp--meta_case .inner .title h2 span.emphasis {
  color: var(--blue-color);
}
@media (max-width: 950px) {
  section.lp--meta_case .inner .title h2 span.emphasis {
    font-size: 6.5vw;
    font-size: clamp(24px, 3.5vw, 48px);
  }
}
section.lp--meta_case .inner .content {
  padding-top: 60px;
}
@media (max-width: 950px) {
  section.lp--meta_case .inner .content {
    padding: 30px 20px 0;
  }
}
section.lp--meta_case .inner .content + .content {
  padding-top: 60px;
}
@media (max-width: 950px) {
  section.lp--meta_case .inner .content + .content {
    padding-top: 30%;
  }
}
section.lp--meta_case .inner .content > .title {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
section.lp--meta_case .inner .content > .title p {
  position: relative;
  display: inline-block;
  font-size: 24px;
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: var(--blue-color);
}
section.lp--meta_case .inner .content > .title p:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 1px;
  background-color: var(--blue-color);
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: -30px;
}
section.lp--meta_case .inner .content > .title p:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 1px;
  background-color: var(--blue-color);
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: -30px;
}
section.lp--meta_case .inner .content > .title h3 {
  padding-top: 20px;
  border-bottom: 2px solid var(--white-color);
  padding-bottom: 10px;
}
@media (max-width: 950px) {
  section.lp--meta_case .inner .content > .title h3 {
    font-size: clamp(18px, 4.3vw, 22px);
    padding-top: 10px;
  }
}
@media (max-width: 550px) {
  section.lp--meta_case .inner .content > .title h3 {
    text-align: left;
  }
}
section.lp--meta_case .inner .content .info {
  display: flex;
  justify-content: center;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 50px;
}
@media (max-width: 950px) {
  section.lp--meta_case .inner .content .info {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
section.lp--meta_case .inner .content .info .img {
  width: 35%;
  max-width: 323px;
}
@media (max-width: 950px) {
  section.lp--meta_case .inner .content .info .img {
    width: 80%;
  }
}
section.lp--meta_case .inner .content .info .box .box-list ul {
  display: flex;
  gap: 20px;
}
section.lp--meta_case .inner .content .info .box .box-list ul li span.label {
  background-color: var(--white-color);
  padding: 3px 10px;
  border-radius: 4px;
  margin-right: 10px;
}
section.lp--meta_case .inner .content .info .box .box-assignment {
  padding-top: 20px;
}
section.lp--meta_case .inner .content .info .box .box-assignment p {
  display: inline-block;
}
section.lp--meta_case .inner .content .info .box .box-assignment p.label {
  background-color: var(--white-color);
  padding: 3px 10px;
  border-radius: 4px;
}
section.lp--meta_case .inner .content .info .box .box-assignment ul {
  padding-top: 10px;
}
section.lp--meta_case .inner .content .info .box .box-assignment ul li + li {
  padding-top: 8px;
}
section.lp--meta_case .inner .content .details {
  margin-top: 40px;
  padding: 45px 0 20px 20px;
  border: 1px solid var(--blue-color);
  max-width: 1000px;
  margin: 40px auto 0;
  position: relative;
}
@media (max-width: 950px) {
  section.lp--meta_case .inner .content .details {
    padding-bottom: 40px;
  }
}
section.lp--meta_case .inner .content .details.one::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 130px;
  background-image: url(../img/case/case_img02.png);
  background-repeat: no-repeat;
  bottom: -30px;
  right: 20px;
}
@media (max-width: 950px) {
  section.lp--meta_case .inner .content .details.one::after {
    width: 170px;
    background-size: contain;
    bottom: -90px;
    right: 0;
  }
}
section.lp--meta_case .inner .content .details.two::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 130px;
  background-image: url(../img/case/case_img04.png);
  background-repeat: no-repeat;
  bottom: -30px;
  right: 20px;
}
@media (max-width: 950px) {
  section.lp--meta_case .inner .content .details.two::after {
    width: 170px;
    background-size: contain;
    bottom: -90px;
    right: 0;
  }
}
section.lp--meta_case .inner .content .details.three::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 130px;
  background-image: url(../img/case/case_img06.png);
  background-repeat: no-repeat;
  bottom: -30px;
  right: 20px;
}
@media (max-width: 950px) {
  section.lp--meta_case .inner .content .details.three::after {
    width: 170px;
    background-size: contain;
    bottom: -90px;
    right: 0;
  }
}
section.lp--meta_case .inner .content .details .title {
  margin-top: -65px;
  text-align: center;
}
section.lp--meta_case .inner .content .details .title p {
  position: inherit;
  background-color: var(--blue-color);
  color: var(--white-color);
  padding: 4px 6px;
  font-size: 18px;
  display: inline-block;
}
section.lp--meta_case .inner .content .details .list {
  padding-top: 20px;
}
section.lp--meta_case .inner .content .details .list ul {
  list-style-position: inside;
  list-style-image: url(../img/case/case_icon.png);
}
section.lp--meta_case .inner .content .details .list ul li {
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 950px) {
  section.lp--meta_case .inner .content .details .list ul li {
    font-size: 16px;
    list-style-position: inside;
    text-indent: -25px;
    padding: 0 20px 0 20px;
  }
}
section.lp--meta_case .inner .content .details .list ul li + li {
  padding-top: 20px;
}

/*==============================
lp--meta_different
==============================*/
section.lp--meta_different .inner {
  padding: 80px 0 0;
}
@media (max-width: 950px) {
  section.lp--meta_different .inner {
    padding: 50px 0 0;
  }
}
section.lp--meta_different .inner .title {
  text-align: center;
}
section.lp--meta_different .inner .table {
  padding-top: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 950px) {
  section.lp--meta_different .inner .table {
    padding-top: 30px;
  }
}
@media only screen and (max-width: 1200px) {
  section.lp--meta_different .inner .table table {
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
  }
}
@media (max-width: 950px) {
  section.lp--meta_different .inner .table table {
    padding: 0 20px;
  }
}
section.lp--meta_different .inner .table table tr.parent {
  background-color: var(--blue-color);
}
section.lp--meta_different .inner .table table tr.parent th {
  color: var(--white-color);
  font-size: 18px;
  font-weight: 600;
  padding: 5px;
  text-align: center;
}
section.lp--meta_different .inner .table table tr.child + tr.child {
  border-top: 1px solid #BDBDBD;
}
section.lp--meta_different .inner .table table tr.child td.sub-title {
  font-size: 18px;
  font-weight: 600;
  padding: 0 20px;
}
section.lp--meta_different .inner .table table tr.child td.merit {
  padding: 20px 20px 25px 0;
}
section.lp--meta_different .inner .table table tr.child td.merit span.text-red {
  font-size: 18px;
  color: var(--red-color);
  font-weight: 600;
}
section.lp--meta_different .inner .table table tr.child td.merit span.text-normal {
  font-size: 14px;
}
section.lp--meta_different .inner .table table tr.child td.other {
  font-size: 14px;
}

/*==============================
lp--meta_offer
==============================*/
section.lp--meta_offer {
  padding-top: 100px;
}
section.lp--meta_offer .inner .banner {
  background: linear-gradient(to bottom right, #1D4EB8, var(--blue-color));
  border: 3px solid var(--yellow-color);
  border-radius: 24px;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 40px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
}
@media (max-width: 950px) {
  section.lp--meta_offer .inner .banner {
    padding: 0 20px 20px;
    max-width: 600px;
  }
}
section.lp--meta_offer .inner .banner .catch {
  text-align: center;
  margin: -30px;
}
section.lp--meta_offer .inner .banner .catch p {
  font-weight: 600;
  font-size: 22px;
  padding: 10px 20px;
  background-color: var(--yellow-color);
  color: var(--blue-color);
  display: inline-block;
  border-radius: 50px;
}
@media (max-width: 950px) {
  section.lp--meta_offer .inner .banner .catch p {
    font-size: clamp(18px, 4.3vw, 22px);
    border-radius: 16px;
  }
}
section.lp--meta_offer .inner .banner .title {
  padding: 50px 0 30px;
  text-align: center;
}
section.lp--meta_offer .inner .banner .title h2 {
  font-size: 24px;
  color: var(--white-color);
}
@media (max-width: 950px) {
  section.lp--meta_offer .inner .banner .title h2 {
    font-size: clamp(22px, 5.4vw, 24px);
  }
}
section.lp--meta_offer .inner .banner .title p {
  padding-top: 10px;
  font-size: 16px;
  color: var(--white-color);
  font-size: 14px;
}
section.lp--meta_offer .inner .banner .white-box {
  background-color: var(--white-color);
  border: 3px solid var(--yellow-color);
  border-radius: 16px;
  padding: 30px;
  max-width: 680px;
  margin: 0 auto;
}
@media (max-width: 950px) {
  section.lp--meta_offer .inner .banner .white-box {
    padding: 18px;
  }
}
section.lp--meta_offer .inner .banner .white-box .box-flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 950px) {
  section.lp--meta_offer .inner .banner .white-box .box-flex {
    flex-direction: column;
  }
}
section.lp--meta_offer .inner .banner .white-box .box-flex .text {
  width: 60%;
}
@media (max-width: 950px) {
  section.lp--meta_offer .inner .banner .white-box .box-flex .text {
    width: 100%;
  }
}
section.lp--meta_offer .inner .banner .white-box .box-flex .text p.sub-title {
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  padding-left: 10%;
}
@media (max-width: 950px) {
  section.lp--meta_offer .inner .banner .white-box .box-flex .text p.sub-title {
    padding-left: 0;
    text-align: center;
  }
}
section.lp--meta_offer .inner .banner .white-box .box-flex .text p.price {
  font-size: 24px;
  font-weight: 600;
  color: var(--red-color);
}
@media (max-width: 950px) {
  section.lp--meta_offer .inner .banner .white-box .box-flex .text p.price {
    font-size: clamp(20px, 4.3vw, 24px);
    text-align: center;
    padding-top: 20px;
    letter-spacing: 0;
  }
}
section.lp--meta_offer .inner .banner .white-box .box-flex .text p.price span {
  font-size: 46px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: var(--red-color);
  line-height: 1;
  letter-spacing: 0.05em;
}
@media (max-width: 950px) {
  section.lp--meta_offer .inner .banner .white-box .box-flex .text p.price span {
    font-size: 8vw;
    font-size: clamp(34px, 5.2vw, 46px);
  }
}
section.lp--meta_offer .inner .banner .white-box .box-flex .tab {
  margin-right: -60px;
}
@media (max-width: 950px) {
  section.lp--meta_offer .inner .banner .white-box .box-flex .tab {
    margin-right: 0;
    margin-top: 30px;
  }
}
section.lp--meta_offer .inner .banner .white-box .box-flex .tab p a {
  background-color: var(--blue-color);
  color: var(--white-color);
  border-radius: 8px;
  font-size: 22px;
  padding: 14px 22px;
  box-shadow: 6px 4px 6px rgba(0, 0, 0, 0.2);
}
@media (max-width: 950px) {
  section.lp--meta_offer .inner .banner .white-box .box-flex .tab p a {
    font-size: clamp(18px, 4vw, 22px);
    padding: 15px 10px;
    letter-spacing: 0;
  }
}
section.lp--meta_offer .inner .banner .white-box p.attention {
  font-size: 10px;
  text-align: center;
  padding-top: 10px;
}
@media (max-width: 950px) {
  section.lp--meta_offer .inner .banner .white-box p.attention {
    padding-top: 25px;
  }
}

/*==============================
lp--meta_price
==============================*/
section.lp--meta_price .inner {
  padding: 100px 0;
  max-width: 650px;
  margin: 0 auto;
}
@media (max-width: 950px) {
  section.lp--meta_price .inner {
    max-width: 100%;
    padding: 100px 20px;
  }
}
section.lp--meta_price .inner .title {
  text-align: center;
}
@media (max-width: 950px) {
  section.lp--meta_price .inner .title {
    font-size: 4.8vw;
  }
}
section.lp--meta_price .inner .title h2 {
  background-color: var(--blue-color);
  border-radius: 50px;
  color: var(--white-color);
  padding: 10px 70px;
}
section.lp--meta_price .inner .box-flex {
  padding-top: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 950px) {
  section.lp--meta_price .inner .box-flex {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding-top: 15px;
  }
}
section.lp--meta_price .inner .box-flex .price p {
  font-size: 24px;
  font-weight: 500;
}
section.lp--meta_price .inner .box-flex .price p span.text-red_large {
  color: var(--red-color);
  font-size: 60px;
  font-weight: 500;
}
section.lp--meta_price .inner .box-flex .price p span.text-red_small {
  font-size: 24px;
  font-weight: 500;
  color: var(--red-color);
}
section.lp--meta_price .inner .box-flex .plus {
  width: 20px;
}
section.lp--meta_price .inner .box-flex .description ul li {
  display: flex;
  gap: 10px;
}
section.lp--meta_price .inner .box-flex .description ul li + li {
  padding-top: 6px;
}
section.lp--meta_price .inner .box-flex .description ul li .title {
  width: 110px;
}
section.lp--meta_price .inner .box-flex .description ul li .title p {
  border: 2px solid var(--red-color);
  border-radius: 50px;
  padding: 3px 0;
  text-align: center;
  color: var(--red-color);
  font-weight: 500;
}
section.lp--meta_price .inner .box-flex .description ul li .text p {
  padding-top: 5px;
  font-size: 12px;
}

/*==============================
lp--meta_flow
==============================*/
section.lp--meta_flow {
  background: linear-gradient(to bottom right, #1D4EB8, var(--blue-color));
  padding: 80px 0;
}
@media (max-width: 950px) {
  section.lp--meta_flow .inner {
    max-width: none;
  }
}
section.lp--meta_flow .inner .title {
  text-align: center;
}
section.lp--meta_flow .inner .title h2 {
  color: var(--white-color);
}
section.lp--meta_flow .inner .title h2 span.emphasis {
  color: var(--yellow-color);
  font-size: 32px;
}
@media (max-width: 950px) {
  section.lp--meta_flow .inner .title h2 span.emphasis {
    font-size: clamp(24px, 5.4vw, 32px);
  }
}
section.lp--meta_flow .inner .flex-box {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 950px) {
  section.lp--meta_flow .inner .flex-box {
    flex-direction: column;
    max-width: none;
  }
}
section.lp--meta_flow .inner .flex-box .content {
  background-color: var(--white-color);
  padding: 40px 10px;
  border-radius: 8px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  min-height: 262px;
  max-width: 250px;
}
@media (max-width: 950px) {
  section.lp--meta_flow .inner .flex-box .content {
    min-height: auto;
  }
}
section.lp--meta_flow .inner .flex-box .content .title {
  margin-top: -55px;
  text-align: center;
}
section.lp--meta_flow .inner .flex-box .content .title p {
  display: inline-block;
  background-color: var(--yellow-color);
  color: var(--blue-color);
  font-weight: 600;
  padding: 4px 25px;
  font-size: 18px;
}
section.lp--meta_flow .inner .flex-box .content .img {
  max-width: 100px;
  margin: 0 auto;
}
@media (max-width: 950px) {
  section.lp--meta_flow .inner .flex-box .content .img {
    max-width: 70px;
  }
}
@media (max-width: 950px) {
  section.lp--meta_flow .inner .flex-box .content .img p {
    padding-top: 15px;
  }
}
section.lp--meta_flow .inner .flex-box .content h4, section.lp--meta_flow .inner .flex-box .content p {
  color: var(--blue-color);
}
section.lp--meta_flow .inner .flex-box .content h4 {
  text-align: center;
  letter-spacing: 0.08em;
}
section.lp--meta_flow .inner .flex-box .content p {
  padding-top: 30px;
}
@media (max-width: 950px) {
  section.lp--meta_flow .inner .flex-box .content p {
    padding-top: 20px;
  }
}
section.lp--meta_flow .inner .flex-box .arrow {
  padding: 0 8px;
}
@media (max-width: 950px) {
  section.lp--meta_flow .inner .flex-box .arrow {
    transform: rotate(90deg);
    padding-right: 15px;
  }
}

section.lp--meta_flow2 {
  background: linear-gradient(to top, #1D4EB8, var(--blue-color));
  padding: 80px 0;
}
@media (max-width: 950px) {
  section.lp--meta_flow2 .inner {
    max-width: none;
  }
}
section.lp--meta_flow2 .inner .title {
  text-align: center;
  padding-bottom: 40px;
}
section.lp--meta_flow2 .inner .title h2 {
  color: var(--white-color);
}
section.lp--meta_flow2 .inner .title h2 span.emphasis {
  color: var(--yellow-color);
  font-size: 32px;
}
@media (max-width: 950px) {
  section.lp--meta_flow2 .inner .title h2 span.emphasis {
    font-size: clamp(24px, 5.4vw, 32px);
  }
}
section.lp--meta_flow2 .inner .flex-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1200px) {
  section.lp--meta_flow2 .inner .flex-box {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
  }
}
@media (max-width: 750px) {
  section.lp--meta_flow2 .inner .flex-box {
    flex-direction: column;
    gap: 20px;
  }
}
section.lp--meta_flow2 .inner .flex-box .content {
  max-width: 170px;
  min-height: 336px;
}
@media (max-width: 750px) {
  section.lp--meta_flow2 .inner .flex-box .content {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
  }
}
section.lp--meta_flow2 .inner .flex-box .content .img {
  background: rgba(220, 220, 220, 0.25);
  padding: 15px;
  border: 1px solid var(--white-color);
  border-radius: 4px;
  width: 115px;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.lp--meta_flow2 .inner .flex-box .content .img p {
  padding-top: 0;
  width: 100px;
}
section.lp--meta_flow2 .inner .flex-box .content .img img {
  width: 100px;
}
section.lp--meta_flow2 .inner .flex-box .content h4 {
  color: var(--white-color);
  padding-top: 20px;
}
section.lp--meta_flow2 .inner .flex-box .content p {
  color: var(--white-color);
  padding-top: 20px;
  text-align: justify;
}
@media (max-width: 750px) {
  section.lp--meta_flow2 .inner .flex-box .arrow {
    transform: rotate(90deg);
  }
}

/*==============================
lp--meta_faq
==============================*/
section.lp--meta_faq {
  background: #F0F4FF;
  padding: 100px 0;
}
@media (max-width: 950px) {
  section.lp--meta_faq {
    margin-top: 100px;
    padding-top: 30px;
  }
}

section.lp--meta_faq .inner .title {
  padding-bottom: 40px;
}
@media (max-width: 950px) {
  section.lp--meta_faq .inner .title {
    padding-bottom: 0;
  }
}

section.lp--meta_faq .inner .title h2 {
  text-align: center;
}
@media (max-width: 950px) {
  section.lp--meta_faq .inner .title h2 {
    font-size: 4.8vw;
    font-size: clamp(22px, 3.2vw, 32px);
  }
}

section.lp--meta_faq ul {
  max-width: 800px;
  margin: 0 auto;
}

section.lp--meta_faq ul li {
  background: #fff;
  margin: 0 auto 25px;
  padding: 25px;
}

section.lp--meta_faq ul li div.question {
  position: relative;
  cursor: pointer;
}

section.lp--meta_faq ul li p.sub {
  color: var(--blue-color);
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 25px;
  display: inline-block;
  padding: 0 25px 0 0;
  vertical-align: top;
  line-height: 1.8;
}

section.lp--meta_faq ul li p.text {
  font-size: 20px;
  display: inline-block;
  vertical-align: top;
  padding: 7px 0 0;
  width: calc(100% - 70px);
  font-weight: 500;
}

section.lp--meta_faq ul li div.answer {
  display: none;
  padding: 15px 0 0;
}

section.lp--meta_faq ul li div.answer p.text {
  font-size: 16px;
  color: #666;
}

section.lp--meta_faq ul li div.question.open::after {
  content: "\f077";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #777;
  font-size: 20px;
  position: absolute;
  top: 10px;
  right: 0;
}

section.lp--meta_faq ul li div.question::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #777;
  font-size: 20px;
  position: absolute;
  top: 10px;
  right: 0;
}

@media (max-width: 850px) {
  section.lp--meta_faq ul li p.text {
    font-size: 18px;
  }
  section.lp--meta_faq ul li div.answer p.text {
    font-size: 16px;
  }
}
@media (max-width: 750px) {
  section.lp--meta_faq {
    padding: 50px 0;
  }
  section.lp--meta_faq ul {
    margin-top: 35px;
  }
  section.lp--meta_faq ul li p.text {
    font-size: 16px;
  }
  section.lp--meta_faq ul li {
    margin-bottom: 12px;
    padding: 13px 25px;
  }
  section.lp--meta_faq ul li div.answer p.text {
    font-size: 14px;
  }
}
/*=====================================================
overview__heading
======================================================*/
.overview__inner {
  padding-top: 86px;
}

.overview__heading {
  font-size: 50px;
  text-align: center;
}

.overview__heading-img {
  max-width: 390px;
  margin: 0 auto;
  padding-top: 40px;
}

.overview__heading-flex {
  display: flex;
  justify-content: center;
  gap: 50px;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 30px;
}

.overview__2col {
  margin-top: 72px;
  max-width: 800px;
  margin: 0 auto;
}

.overview__l img {
  width: 100%;
}

.overview__r-list {
  width: 100%;
}

@media (max-width: 1279px) {
  .overview__heading {
    font-size: 36px;
  }
}
@media (max-width: 750px) {
  .overview__inner {
    padding-top: 60px;
  }
  .overview__heading {
    font-size: 22px;
  }
  .overview__heading-flex {
    gap: 20px;
    align-items: center;
  }
  .overview__2col {
    display: block;
    margin-top: 35px;
  }
}
@media (max-width: 599px) {
  .overview__l img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 250px;
  }
}
/*=====================================================
overview__heading
======================================================*/
.overview__inner {
  padding-top: 86px;
}

.overview__heading {
  font-size: 32px;
  text-align: center;
}

.overview__2col {
  margin-top: 40px;
}

.overview__l img {
  width: 100%;
}

.overview__r-list {
  width: 100%;
}

@media (max-width: 1279px) {
  .overview__heading {
    font-size: 36px;
  }
}
@media (max-width: 750px) {
  .overview__inner {
    padding-top: 80px;
  }
  .overview__heading {
    font-size: 22px;
  }
  .overview__2col {
    display: block;
    margin-top: 35px;
  }
}
@media (max-width: 599px) {
  .overview__l img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 250px;
  }
}
/*=====================================================
overview
======================================================*/
.overview__r-item th {
  text-align: start;
  font-weight: 900;
  width: 20%;
}

.overview__r-item td {
  color: var(--black-color);
  font-size: 14px;
  padding-left: 35px;
  font-weight: 700;
}

.overview__r-item {
  border-bottom: #efefef 1px solid;
}

.overview__r-item th,
.overview__r-item td {
  padding: 15px;
  font-size: 16px;
}

.overview__bottom-bg img {
  width: 100%;
}

.overview__bottom-bg {
  margin-top: 50px;
  max-width: 1250px;
  width: 100%;
  margin: 60px auto 40px;
}

@media (max-width: 950px) {
  .overview__r-item th,
  .overview__r-item td {
    padding: 10px;
    font-size: 12px;
  }
}
@media (max-width: 750px) {
  .overview__r-item th,
  .overview__r-item td {
    display: block;
  }
  .overview__r-item th {
    padding: 10px 10px 0 10px;
  }
  .overview__bottom-bg {
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
    margin: 40px auto 0;
  }
}
/*==============================
メディアロゴ
==============================*/
.overview__middle {
  max-width: 900px;
  margin: 50px auto 0;
}

.overview__middle ul {
  padding: 25px;
  border: 3px solid #ccc;
  border-radius: 10px;
  letter-spacing: -7px;
  display: flex;
  justify-content: center;
}
@media (max-width: 950px) {
  .overview__middle ul {
    flex-direction: column;
  }
}

.overview__middle ul li {
  display: flex;
  letter-spacing: normal;
}

.overview__middle ul li.meta {
  max-width: 100px;
}

.overview__middle ul li img {
  max-height: 90px;
  width: auto;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}

.overview__middle ul li.meta img {
  max-height: auto;
  max-width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

.overview__middle ul li p {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 15px;
}

.overview__middle ul li .line {
  width: 1px;
  height: 100%;
  background-color: #333333;
  margin: 0 20px;
}

@media (max-width: 1000px) {
  .overview__middle {
    width: 95%;
  }
  .overview__middle ul li,
  .overview__middle ul li:nth-child(2) {
    display: block;
    margin: 10px 0;
  }
  .overview__middle ul li img {
    max-height: 80px;
  }
  .overview__middle ul li:first-child img {
    margin: 0;
  }
  .overview__middle ul li p {
    font-size: 14px;
  }
}
@media (max-width: 950px) {
  .overview__middle ul li .line {
    width: 100%;
    height: 1px;
    margin: 20px 0 0;
  }
}
@media (max-width: 570px) {
  .overview__middle {
    max-width: 370px;
  }
  .overview__middle ul {
    padding: 20px;
    border: 2px solid #ccc;
  }
  .overview__middle ul li img {
    max-height: 60px;
  }
  .overview__middle ul li:first-child img {
    margin: 0;
  }
  .overview__middle ul li:nth-child(2) img {
    max-height: none;
    height: auto;
    max-width: 100px;
  }
  .overview__middle ul li p {
    font-size: 12px;
    margin: 0 0 0 5px;
  }
}
/*=====================================================
フォーム
======================================================*/
.c-form__lv2-heading {
  margin-bottom: 60px;
}

.c-form__inner {
  padding-top: 10px;
  padding-bottom: 120px;
}

@media (max-width: 850px) {
  .c-form__inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 750px) {
  .c-form__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.lp__actual-item-box a {
  position: relative;
  display: block;
}

.lp__actual-item-box a::before {
  content: "\f04b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  font-size: 50px;
  color: #fff;
  line-height: 1;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  left: calc(50% - 35px);
  top: calc(50% - 35px);
}

.lp__actual-item-gl a {
  position: relative;
  display: block;
}

.lp__actual-item-gl a::before {
  content: "\f04b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  font-size: 50px;
  color: #fff;
  line-height: 1;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  left: calc(50% - 35px);
  top: calc(50% - 35px);
}

/*=====================================================
footer
======================================================*/
.footer__inner {
  width: 100%;
  margin: 0 auto;
  padding: 22px 100px;
  box-sizing: border-box;
}

@media (max-width: 750px) {
  .footer__inner {
    padding: 10px;
  }
}
/*=====================================================
footer 2column 左
======================================================*/
.footer__l {
  display: flex;
  align-items: flex-end;
}

.footer__logo {
  display: inline-block;
  max-width: 300px;
  width: 100%;
}

.footer__inc {
  font-size: 10px;
  margin-left: 37px;
  font-weight: 400;
}

@media (max-width: 1440px) {
  .footer__inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 1024px) {
  .footer__logo {
    max-width: 200px;
  }
}
@media (max-width: 950px) {
  .footer__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 850px) {
  .footer__inc {
    margin-left: 15px;
  }
}
@media (max-width: 750px) {
  .footer__l {
    display: block;
  }
  .footer__inc {
    margin-left: 0;
    font-size: 9px;
    line-height: 1;
  }
  .footer__logo-wrapper {
    margin-bottom: 8px;
  }
}
/*=====================================================
footer 2column 右
======================================================*/
.footer__2column {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.f-nav {
  display: flex;
  flex-wrap: wrap;
}

.f-nav__item a {
  font-size: 14px;
  font-weight: 700;
  color: var(--black-color);
  letter-spacing: 0.075em;
  padding: 5px;
  display: inline-block;
}

.f-nav__item::before {
  content: "|";
  margin: 0 18px;
  color: var(--black-color);
}

.f-nav__item:first-of-type::before {
  content: none;
}

@media (max-width: 950px) {
  .f-nav__item a {
    font-size: 12px;
  }
}
@media (max-width: 750px) {
  .footer__2column {
    display: block;
    margin-top: 20px;
  }
  .f-nav__item a {
    font-size: 9px;
  }
  .f-nav {
    margin-top: 15px;
  }
  .footer__r {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .f-nav__item::before {
    margin: 0 5px;
    font-size: 10px;
  }
}/*# sourceMappingURL=lp-meta.css.map */