@charset "UTF-8";
/* ==========================================
	BASE
 ============================================ */
/** -------------------- 変数定義 -------------------- **/
:root {
  /* カラー定義 */
  --c_text: #393c40;
  --c_wht: #fff;
  --c_blue: #116aa6;
  --c_yellow: #fff48f;
  --c_orange: #f27900;
  --c_green: #00b900;
  --c_navy: #061e4f;
  /* フォント定義 */
  --font_ja: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  --font_serif: "Shippori Mincho", serif;
  --font_eng: "Roboto", sans-serif;
  /* transition定義 */
  --anim: all 0.4s ease-out;
}

body {
  font-family: var(--font_ja);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.765;
  letter-spacing: 0.03em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: var(--c_text);
}
body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

.clearfix {
  clear: both;
}

a {
  color: var(--c_text);
  -webkit-transition: var(--anim);
  transition: var(--anim);
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

/** -------------------- 共通 -------------------- **/
.inner {
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
}
.inner.inner--wide {
  max-width: 1240px;
}
.inner.inner--narrow {
  max-width: 940px;
}

.roboto {
  font-family: var(--font_eng);
}

.white {
  color: var(--c_wht);
}

.yellow {
  color: var(--c_yellow);
}

.blue {
  color: var(--c_blue);
}

.orange {
  color: var(--c_orange);
}

.navy {
  color: var(--c_navy);
}

.w400 {
  font-weight: 400;
}

.w500 {
  font-weight: 500;
}

.w700 {
  font-weight: 700;
}

.w900 {
  font-weight: 900;
}

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.c-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.c-cta-btn {
  font-weight: 900;
  text-align: center;
  background: var(--c_orange);
  color: var(--c_wht);
  position: relative;
  border-radius: 3px;
  width: 360px;
  min-height: 58px;
  height: 100%;
  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;
}
.c-cta-btn--line {
  background: var(--c_green);
}
.c-cta-btn:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent currentColor;
  position: absolute;
  right: 26px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-cta-btn:hover {
  opacity: 1;
  -webkit-filter: brightness(125%);
          filter: brightness(125%);
}
.c-cta.c-cta--small .c-cta-btn {
  width: 220px;
  min-height: 45px;
}

/** -------------------- ヘッダー -------------------- **/
.header {
  background: var(--c_wht);
}
.header .header-container {
  padding: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
.header .header-logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 214px;
          flex: 0 1 214px;
}
.header .header-txt {
  font-size: 16px;
  line-height: 1.375;
}
.header .header-cta {
  margin-left: auto;
}

/** -------------------- 固定CTA -------------------- **/
.floating {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--c_text);
  color: var(--c_wht);
  padding: 17px 0;
  z-index: 500;
}
.floating .floating-container {
  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;
  -webkit-column-gap: 3%;
     -moz-column-gap: 3%;
          column-gap: 3%;
}
.floating .floating-txt {
  font-size: 22px;
}

/** -------------------- フッター -------------------- **/
.footer .footer-copyright {
  background: var(--c_text);
  color: var(--c_wht);
  font-size: 14px;
  line-height: 1;
  padding: 16px 0;
}

/* PCのみ
  ------------------------ */
@media (min-width: 980px) {
  .u-onlySP {
    display: none !important;
  }
}
/* スマホ
  ------------------------ */
@media (max-width: 979px) {
  body {
    font-size: 12px;
    line-height: 1.667;
  }
  .u-onlyPC {
    display: none !important;
  }
  /** -------------------- 共通 -------------------- **/
  .c-cta {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
  }
  .c-cta-btn {
    width: 300px;
    min-height: 44px;
    font-size: 15px;
  }
  .c-cta-btn:after {
    right: 20px;
  }
  .c-cta.c-cta--small .c-cta-btn {
    width: 110px;
    min-height: 35px;
    font-size: 10.5px;
  }
  .c-cta.c-cta--small .c-cta-btn:after {
    border-width: 2px 0 2px 2px;
    right: 7px;
  }
  /** -------------------- ヘッダー -------------------- **/
  .header .header-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0;
    padding: 0;
  }
  .header .header-logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 133px;
            flex: 0 1 133px;
    margin-left: 10px;
  }
  .header .header-txt {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    background: var(--c_text);
    color: var(--c_wht);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
    padding: 7px 5px;
  }
  .header .header-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-column-gap: 1px;
       -moz-column-gap: 1px;
            column-gap: 1px;
  }
  .header .header-cta-btn {
    width: 60px;
    height: 50px;
    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;
    row-gap: 5px;
    background: var(--c_orange);
    color: var(--c_wht);
    font-size: 8px;
    font-weight: 900;
    line-height: 1;
  }
  .header .header-cta-btn img {
    width: 25px;
  }
  .header .header-cta-btn--line {
    background: var(--c_green);
  }
  /** -------------------- 固定CTA -------------------- **/
  .floating {
    padding: 8px 4px;
  }
  .floating .inner {
    padding: 0;
  }
  .floating .floating-container {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
  .floating .floating-txt {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.455;
  }
  .floating .c-cta {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  /** -------------------- フッター -------------------- **/
  .footer .footer-copyright {
    font-size: 8px;
    padding: 4px 0;
  }
}
/* ==========================================
	INDEX
 ============================================ */
/** -------------------- MV -------------------- **/
.mv {
  position: relative;
}
.mv .mv-bg01 {
  padding-top: 2.343%;
  width: 90.044%;
}
.mv .mv-bg01 img {
  width: 100%;
}
.mv .mv-bg02 {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
.mv .mv-bg02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right;
     object-position: right;
  -webkit-filter: drop-shadow(3px 2px 10px rgba(83, 99, 122, 0.2));
          filter: drop-shadow(3px 2px 10px rgba(83, 99, 122, 0.2));
}
.mv .mv-container {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 4.392%;
}
.mv .mv-ttl {
  width: 59.31%;
  max-width: 739px;
  -webkit-filter: drop-shadow(3px 2px 10px rgba(83, 99, 122, 0.2));
          filter: drop-shadow(3px 2px 10px rgba(83, 99, 122, 0.2));
}
.mv .mv-txt {
  width: 57.945%;
  max-width: 722px;
  margin-top: 2.408%;
}

/** -------------------- ファースト診断 -------------------- **/
#sec-first {
  padding: 72px 0 48px;
  background: url(../img/bg_pattern.png) repeat center top/72px;
  overflow: hidden;
}
#sec-first .first-ttl {
  text-align: center;
  margin-bottom: 36px;
  font-size: 42px;
  letter-spacing: 0;
  line-height: 1.1;
}
#sec-first .first-lead {
  font-size: 20px;
  line-height: 2;
  margin-bottom: 60px;
}
#sec-first .first-step {
  max-width: 742px;
  margin: 0 auto;
  position: relative;
}
#sec-first .first-step-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 36px;
  font-size: 20px;
  letter-spacing: 0.04em;
  min-height: 112px;
  position: relative;
}
#sec-first .first-step-item:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 18px 0 18px;
  border-color: var(--c_blue) transparent transparent transparent;
  position: absolute;
  bottom: -27px;
  right: 0;
  left: 0;
  margin: auto;
}
#sec-first .first-step-item:last-of-type {
  margin-bottom: 0;
}
#sec-first .first-step-item:last-of-type:after {
  display: none;
}
#sec-first .first-step-num {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 117px;
          flex: 0 0 117px;
  border-radius: 10px 0 0 10px;
  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;
  background: var(--c_blue);
  color: var(--c_wht);
}
#sec-first .first-step-num .num {
  font-size: 140%;
}
#sec-first .first-step-txt {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background: #edf4f9;
  border-radius: 0 10px 10px 0;
  padding: 20px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#sec-first .first-step-txt .size_s {
  font-size: 18px;
}
#sec-first .first-step-img {
  position: absolute;
  bottom: 0;
  left: 88.784%;
  width: 41.486%;
}
#sec-first .first-step-note {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 18px auto 0;
  font-size: 15px;
  letter-spacing: 0;
}
#sec-first .first-point {
  max-width: 744px;
  margin: 60px auto 40px;
  background: linear-gradient(135deg, #024e9c 0%, #57a2d9 100%);
  color: var(--c_wht);
  position: relative;
  padding: 32px 20px 40px;
}
#sec-first .first-point-img {
  position: absolute;
  left: 20px;
  top: -5px;
  width: 153px;
}
#sec-first .first-point-ttl {
  font-size: 30px;
  line-height: 1.333;
  margin-bottom: 28px;
}
#sec-first .first-point-ttl .size_l {
  font-size: 130%;
}
#sec-first .first-point-list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#sec-first .first-point-item {
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 1.167;
  counter-increment: cnt;
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
}
#sec-first .first-point-item:before {
  content: counter(cnt, decimal-leading-zero);
  width: 28px;
  height: 28px;
  background: var(--c_yellow);
  color: var(--c_blue);
  font-size: 17px;
  font-weight: 900;
  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;
  position: absolute;
  top: 0;
  left: 0;
}
#sec-first .first-point-item:last-child {
  margin-bottom: 0;
}
#sec-first .first-price-ttl {
  font-size: 30px;
  line-height: 1.067;
  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;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin-bottom: 20px;
}
#sec-first .first-price-ttl:before, #sec-first .first-price-ttl:after {
  content: "";
  width: 3px;
  height: 30px;
  background: currentColor;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
#sec-first .first-price-ttl:after {
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
#sec-first .first-price-main {
  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;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}
#sec-first .first-price-txt {
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.04em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
#sec-first .first-price-txt .label {
  font-size: 18px;
  background: var(--c_text);
  color: var(--c_wht);
  padding: 5px 8px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-right: 12px;
}
#sec-first .first-price-txt .num {
  font-size: 130%;
}
#sec-first .first-price-txt .sub {
  letter-spacing: 0;
}
#sec-first .first-price-txt .sub .size_s {
  font-size: 70%;
}
#sec-first .first-price-txt--first {
  color: var(--c_orange);
}
#sec-first .first-price-txt--first .label {
  background: var(--c_orange);
}
#sec-first .first-price-arrow {
  width: 46px;
  height: 3px;
  background: var(--c_text);
  position: relative;
}
#sec-first .first-price-arrow:after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 3px solid var(--c_text);
  border-bottom: 3px solid var(--c_text);
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(-45deg) skew(10deg, 10deg);
          transform: translateY(-50%) rotate(-45deg) skew(10deg, 10deg);
}

/** -------------------- CTA01 -------------------- **/
.cta01 {
  background: var(--c_text);
  padding: 50px 0 40px;
}
.cta01 .cta01-box {
  background: var(--c_wht);
  border-radius: 10px;
  padding: 50px 0 20px;
  position: relative;
}
.cta01 .cta01-subttl {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 740px;
  max-width: 90%;
  font-size: 24px;
  line-height: 1;
  background: var(--c_blue);
  color: var(--c_wht);
  padding: 10px;
}
.cta01 .cta01-subttl:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 6px 0 6px;
  border-color: var(--c_blue) transparent transparent transparent;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  margin: auto;
}
.cta01 .cta01-ttl {
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 20px;
}

/** -------------------- リンクアップについて -------------------- **/
#sec-about {
  background: url(../img/about_bg_top.png) no-repeat right top/706px, url(../img/about_bg_bottom.png) no-repeat left bottom/706px, linear-gradient(135deg, #024e9c 0%, #5492c0 50%, #f7efde 100%);
  padding: 0 0 72px;
}
#sec-about .about-inner {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}
#sec-about .about-header {
  padding: 80px 0;
}
#sec-about .about-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  color: var(--c_wht);
}
#sec-about .about-ttl-logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 454px;
          flex: 0 1 454px;
}
#sec-about .about-ttl-txt {
  font-size: 24px;
}
#sec-about .about-lead {
  background: url(../img/about_bg01.jpg) no-repeat center/cover;
  padding: 88px 0;
}
#sec-about .about-lead-txt {
  font-size: 34px;
  line-height: 1.971;
}
#sec-about .about-lead-txt .marker {
  background: var(--c_wht);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
  padding: 0 16px;
}
#sec-about .about-lead-txt .size_s {
  font-size: 80%;
}
#sec-about .about-lead-txt .size_l {
  font-size: 110%;
}
#sec-about .about-main {
  margin: 60px 0 0;
}
#sec-about .about-main-item {
  position: relative;
  margin-bottom: 60px;
}
#sec-about .about-main-item:last-child {
  margin-bottom: 0;
}
#sec-about .about-main-item:nth-child(even) .about-main-img {
  margin-left: auto;
}
#sec-about .about-main-item:nth-child(even) .about-main-txtbox {
  right: auto;
  left: 0;
}
#sec-about .about-main-img {
  width: 59.75%;
}
#sec-about .about-main-txtbox {
  min-width: 40%;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: var(--c_wht);
  border-radius: 10px;
  padding: 50px 58px;
}
#sec-about .about-main-txt {
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
}
#sec-about .about-main-txt .size_l {
  font-size: 110%;
}
#sec-about .about-main-txt .marker {
  font-size: 140%;
  line-height: 1.428;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(75%, #fff48f), color-stop(85%, #fff48f), color-stop(85%, transparent));
  background: linear-gradient(transparent 75%, #fff48f 75%, #fff48f 85%, transparent 85%);
}
#sec-about .about-main-txt:last-child {
  margin-bottom: 0;
}
#sec-about .about-main-closer {
  font-size: 28px;
  line-height: 1.786;
  letter-spacing: 0.06em;
}
#sec-about .about-main-closer .marker {
  background: var(--c_wht);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
  padding: 0 12px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
          box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
}

/** -------------------- いくつ心当たりがありますか -------------------- **/
#sec-trouble {
  background: url(../img/trouble_bg.png) no-repeat right bottom/100%, #e2e2e2;
  padding: 60px 0;
}
#sec-trouble .trouble-lead {
  color: #626466;
  font-size: 35px;
  line-height: 1.429;
  margin-bottom: 24px;
}
#sec-trouble .trouble-ttl {
  font-size: 50px;
  line-height: 1;
  padding: 0 0 14px;
  margin: 0 auto 75px;
  max-width: 996px;
  border-bottom: 2px solid #1a1a1a;
  position: relative;
}
#sec-trouble .trouble-ttl:before, #sec-trouble .trouble-ttl:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 6px 0 6px;
  border-color: #1a1a1a transparent transparent transparent;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
}
#sec-trouble .trouble-ttl:after {
  border-color: #e2e2e2 transparent transparent transparent;
  top: calc(100% - 4px);
}
#sec-trouble .trouble-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3.636% 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 3.636%;
  margin-bottom: 77px;
}
#sec-trouble .trouble-item {
  background: var(--c_wht);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
          box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 2;
  grid-row: span 2;
  gap: 0;
}
#sec-trouble .trouble-item-header {
  background: url(../img/trouble_check.png) no-repeat left 28px center/25px, var(--c_text);
  color: var(--c_wht);
  padding: 24px 20px 24px 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#sec-trouble .trouble-subttl {
  font-size: 20px;
  line-height: 1.5;
}
#sec-trouble .trouble-txt {
  padding: 20px 30px;
}
#sec-trouble .trouble-closing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px 30px;
}
#sec-trouble .trouble-closing-ttl {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  font-size: 34px;
}
#sec-trouble .trouble-closing-ttl .marker {
  background: var(--c_text);
  color: var(--c_wht);
  padding: 0 12px 0 20px;
}
#sec-trouble .trouble-closing-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 239px;
          flex: 0 1 239px;
}
#sec-trouble .trouble-closing-txt {
  font-size: 24px;
  line-height: 1.667;
  margin-bottom: 1.667em;
}
#sec-trouble .trouble-closing-txt:last-child {
  margin-bottom: 0;
}
#sec-trouble .trouble-closing-txt .size_l {
  font-size: 120%;
}

/** -------------------- 4ステップの未来 -------------------- **/
#sec-future {
  padding: 80px 0 0;
  background: url(../img/future_bg01.png) no-repeat top center/100%, url(../img/future_bg02.png) no-repeat bottom center/100%;
}
#sec-future .future-header {
  margin-bottom: 72px;
  position: relative;
}
#sec-future .future-header-img {
  width: 302px;
  position: absolute;
  right: 6.667%;
  bottom: -50px;
}
#sec-future .future-subttl {
  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;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 24px;
}
#sec-future .future-subttl:before, #sec-future .future-subttl:after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 1 107px;
          flex: 0 1 107px;
  height: 1px;
  background: var(--c_text);
}
#sec-future .future-ttl {
  font-size: 40px;
}
#sec-future .future-ttl .size_l {
  font-size: 60px;
}
#sec-future .future-ttl .num {
  display: inline;
  width: 71px;
  margin-right: 20px;
  vertical-align: text-top;
}
#sec-future .future-step {
  margin-bottom: 32px;
}
#sec-future .future-step-item {
  margin-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 5%;
     -moz-column-gap: 5%;
          column-gap: 5%;
}
#sec-future .future-step-item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#sec-future .future-step-item:nth-child(even) .future-step-ttl .marker {
  background: linear-gradient(135deg, #006fc2 0%, #44b8f5 100%);
}
#sec-future .future-step-item:last-child {
  margin-bottom: 0;
}
#sec-future .future-step-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 41.667%;
          flex: 0 1 41.667%;
  position: relative;
}
#sec-future .future-step-img:before {
  content: "";
  width: 89.4%;
  height: 100%;
  background: #edf4f9;
  position: absolute;
  right: 0;
  bottom: -40px;
}
#sec-future .future-step-img img {
  width: 89.4%;
  position: relative;
}
#sec-future .future-step-txtbox {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 49.167%;
          flex: 0 1 49.167%;
  margin: auto 0;
}
#sec-future .future-step-num {
  font-size: 37px;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 12px;
}
#sec-future .future-step-num .num {
  font-size: 66px;
  vertical-align: middle;
  margin-left: 8px;
}
#sec-future .future-step-ttl {
  font-size: 32px;
  margin-bottom: 20px;
}
#sec-future .future-step-ttl .marker {
  background: -webkit-gradient(linear, left top, right top, from(#156c82), to(#61c5e8));
  background: linear-gradient(to right, #156c82 0%, #61c5e8 100%);
  color: var(--c_wht);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
  padding: 0 20px;
}
#sec-future .future-step-term {
  padding-bottom: 12px;
  padding-left: 36px;
  border-bottom: 1px solid var(--c_blue);
  margin-bottom: 20px;
  background: url(../img/future_clock.png) no-repeat left top/27px;
}
#sec-future .future-step-term-ttl {
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 8px;
}
#sec-future .future-step-term-txt {
  font-size: 16px;
  line-height: 1.625;
}
#sec-future .future-closing-container {
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
}
#sec-future .future-closing-container .inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
#sec-future .future-closing-txt {
  font-size: 26px;
  line-height: 1.85;
}
#sec-future .future-closing-txt .size_l {
  font-size: 34px;
}
#sec-future .future-closing-txt .u {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 12px;
  display: inline-block;
  margin-bottom: 12px;
}

/** -------------------- お客様の声 -------------------- **/
#sec-voice {
  padding: 72px 0 80px;
  background: url(../img/voice_bg.jpg) repeat-y top center/100%;
}
#sec-voice .voice-header {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 72px;
  position: relative;
  z-index: 2;
}
#sec-voice .voice-header-img {
  width: 248px;
  position: absolute;
  left: 0;
  top: -40px;
  z-index: -1;
}
#sec-voice .voice-header-txt {
  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;
  -webkit-column-gap: 36px;
     -moz-column-gap: 36px;
          column-gap: 36px;
  font-size: 24px;
  line-height: 1;
}
#sec-voice .voice-header-txt:before, #sec-voice .voice-header-txt:after {
  content: "";
  width: 87px;
  height: 1px;
  background: currentColor;
}
#sec-voice .voice-header-txt > * {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#sec-voice .voice-ttl {
  font-size: 60px;
  line-height: 1;
  margin-bottom: 16px;
}
#sec-voice .voice-subttl {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 16px;
}
#sec-voice .voice-summary {
  position: relative;
  z-index: 2;
  margin-bottom: 116px;
}
#sec-voice .voice-summary-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  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;
}
#sec-voice .voice-summary-img > img {
  height: calc((100% - 16px) / 2);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}
#sec-voice .voice-summary-txtbox {
  max-width: 544px;
  margin: 0 0 30px auto;
  background: var(--c_wht);
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
          box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
}
#sec-voice .voice-summary-ttl {
  background: url(../img/voice_check_white.png) no-repeat left 40px center/27px, var(--c_text);
  color: var(--c_wht);
  padding: 20px 20px 20px 85px;
  font-size: 26px;
  line-height: 1;
}
#sec-voice .voice-summary-ttl--orange {
  background-color: var(--c_orange);
}
#sec-voice .voice-summary-average {
  padding: 16px 20px 24px;
}
#sec-voice .voice-summary-average .num {
  font-size: 26px;
  line-height: 1;
}
#sec-voice .voice-summary-average .num .size_l {
  font-size: 130%;
}
#sec-voice .voice-summary-average .text {
  font-size: 24px;
  line-height: 1;
  margin-top: 8px;
}
#sec-voice .voice-summary-average .text .size_l {
  font-size: 33.8px;
}
#sec-voice .voice-summary-average .text .marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(85%, transparent), color-stop(85%, #fff48f));
  background: linear-gradient(transparent 85%, #fff48f 85%);
}
#sec-voice .voice-summary-change {
  padding: 24px 20px;
  max-width: 500px;
  margin: 0 auto;
}
#sec-voice .voice-summary-change .title {
  font-size: 20px;
  line-height: 1.2;
  margin: 16px 0 12px;
  padding-top: 20px;
  border-top: 1px solid #edf4f9;
}
#sec-voice .voice-summary-change .title:before {
  content: "● ";
  color: var(--c_orange);
}
#sec-voice .voice-summary-change .title:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
#sec-voice .voice-summary-star {
  padding: 24px 20px;
  max-width: 500px;
  margin: 0 auto;
}
#sec-voice .voice-item {
  background: var(--c_wht);
  border-radius: 10px;
  position: relative;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
          box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 60px 60px 40px;
  margin-top: 100px;
}
#sec-voice .voice-item-comment {
  position: absolute;
  left: 60px;
  top: -48px;
  max-width: 59.455%;
  background: #92b20b;
  color: var(--c_wht);
  font-size: 30px;
  line-height: 1.333;
  padding: 32px 52px;
  -webkit-filter: drop-shadow(0 0 5px rgba(83, 99, 122, 0.2));
          filter: drop-shadow(0 0 5px rgba(83, 99, 122, 0.2));
}
#sec-voice .voice-item-comment:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 11px 0 11px;
  border-color: #92b20b transparent transparent transparent;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  margin: auto;
}
#sec-voice .voice-item-comment > *:first-child:before, #sec-voice .voice-item-comment > *:first-child:after {
  content: "";
  width: 25px;
  height: 18px;
  background: url(../img/voice_quote.png) no-repeat center/contain;
  position: absolute;
  top: 20px;
  right: 20px;
}
#sec-voice .voice-item-comment > *:first-child:before {
  right: auto;
  left: 20px;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
}
#sec-voice .voice-item-txtbox {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 66.735%;
          flex: 0 1 66.735%;
  padding-top: 84px;
}
#sec-voice .voice-item-detail .title {
  font-size: 25px;
  line-height: 1.2;
  padding-bottom: 8px;
  margin: 24px 0 12px;
  border-bottom: 1px solid var(--c_blue);
}
#sec-voice .voice-item-detail .title:first-child {
  margin-top: 0;
}
#sec-voice .voice-item-sum {
  margin-top: 32px;
  border: 1px solid var(--c_blue);
  padding: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 142px 20px 1fr;
  grid-template-columns: 142px 1fr;
  gap: 10px 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#sec-voice .voice-item-sum dt {
  font-size: 20px;
  background: var(--c_text);
  color: var(--c_wht);
}
#sec-voice .voice-item-sum dt.is-grad {
  background: -webkit-gradient(linear, left top, right top, from(#db3333), to(#f27900));
  background: linear-gradient(to right, #db3333 0%, #f27900 100%);
}
#sec-voice .voice-item-sum dd .size_l {
  font-size: 30px;
  line-height: 1;
}
#sec-voice .voice-item-profile {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 28.98%;
          flex: 0 1 28.98%;
}
#sec-voice .voice-item-profile .box {
  margin-top: 10px;
  background: #efefef;
  padding: 15px;
}
#sec-voice .voice-item-profile .person {
  font-size: 20px;
  line-height: 1;
  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;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  margin-bottom: 8px;
}
#sec-voice .voice-item-profile .person:before {
  content: "";
  width: 18px;
  height: 18px;
  background: url(../img/voice_icon.png) no-repeat center/contain;
}
#sec-voice .voice-item-profile .job {
  color: #686767;
  margin: 8px 0;
  line-height: 1.176;
}
#sec-voice .voice-item-profile .status {
  background: var(--c_wht);
  padding: 8px 0;
  line-height: 1;
}
#sec-voice .voice-item-profile .status dt {
  padding-bottom: 6px;
  margin-bottom: 6px;
  position: relative;
}
#sec-voice .voice-item-profile .status dt:after {
  content: "";
  width: 100%;
  height: 1px;
  max-width: 200px;
  background: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
#sec-voice .voice-subitem {
  background: var(--c_wht);
  border-radius: 10px;
  position: relative;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
          box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 4.082%;
     -moz-column-gap: 4.082%;
          column-gap: 4.082%;
  padding: 40px 60px;
  margin-top: 54px;
}
#sec-voice .voice-subitem-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 28.878%;
          flex: 0 0 28.878%;
}
#sec-voice .voice-subitem-txtbox {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
#sec-voice .voice-subitem-profile {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 28px;
  background: #efefef;
  padding: 16px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
#sec-voice .voice-subitem-profile .person {
  font-size: 20px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  margin-bottom: 6px;
}
#sec-voice .voice-subitem-profile .person:before {
  content: "";
  width: 18px;
  height: 18px;
  background: url(../img/voice_icon.png) no-repeat center/contain;
}
#sec-voice .voice-subitem-profile .job {
  color: #686767;
  line-height: 1.1;
}
#sec-voice .voice-subitem-profile .status {
  background: var(--c_wht);
  padding: 8px 25px;
  line-height: 1;
}
#sec-voice .voice-subitem-profile .status dt {
  padding-bottom: 6px;
  margin-bottom: 6px;
  position: relative;
}
#sec-voice .voice-subitem-profile .status dt:after {
  content: "";
  width: 100%;
  height: 1px;
  max-width: 200px;
  background: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
#sec-voice .voice-subitem-profile .status dd {
  padding: 0 12px;
}
#sec-voice .voice-subitem-ttl {
  font-size: 25px;
  line-height: 1.32;
  letter-spacing: 0;
  margin-bottom: 20px;
}
#sec-voice .voice-subitem-txt {
  padding-top: 12px;
  margin-bottom: 12px;
  border-top: 1px solid var(--c_blue);
}
#sec-voice .voice-subitem-sum {
  border: 1px solid var(--c_blue);
  padding: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 142px 20px 1fr;
  grid-template-columns: 142px 1fr;
  gap: 10px 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#sec-voice .voice-subitem-sum dt {
  font-size: 20px;
  background: var(--c_text);
  color: var(--c_wht);
}
#sec-voice .voice-subitem-sum dt.is-grad {
  background: -webkit-gradient(linear, left top, right top, from(#db3333), to(#f27900));
  background: linear-gradient(to right, #db3333 0%, #f27900 100%);
}
#sec-voice .voice-subitem-sum dd {
  line-height: 1.529;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
#sec-voice .voice-subitem-sum dd .size_l {
  font-size: 30px;
  line-height: 1;
}
#sec-voice .voice-closing {
  margin-top: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4.167%;
     -moz-column-gap: 4.167%;
          column-gap: 4.167%;
}
#sec-voice .voice-closing-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 36.667%;
          flex: 0 1 36.667%;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
          box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
}
#sec-voice .voice-closing-txtbox {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 55%;
          flex: 0 1 55%;
}
#sec-voice .voice-closing-check {
  background: var(--c_wht);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
          box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
  border-radius: 10px;
  position: relative;
  margin-bottom: 40px;
  padding: 52px 40px 24px 32px;
}
#sec-voice .voice-closing-check-ttl {
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: -webkit-gradient(linear, left top, right top, from(#db3333), to(#f27900));
  background: linear-gradient(to right, #db3333 0%, #f27900 100%);
  color: var(--c_wht);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
  padding: 10px 24px;
}
#sec-voice .voice-closing-check-item {
  font-size: 20px;
  line-height: 1.5;
  padding-left: 32px;
  background: url(../img/voice_check.png) no-repeat top 4px left/22px;
  margin-bottom: 16px;
}
#sec-voice .voice-closing-check-item:last-child {
  margin-bottom: 0;
}
#sec-voice .voice-closing-txt {
  font-size: 26px;
  line-height: 2;
}
#sec-voice .voice-closing-txt .u {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
}

/** -------------------- 自己紹介 -------------------- **/
#sec-profile {
  background: url(../img/profile_bg_top.png) no-repeat top right/706px, url(../img/profile_bg_bottom.png) no-repeat bottom left/706px, linear-gradient(135deg, #024e9c 0%, #57a2d9 100%);
  padding: 80px 0;
  color: var(--c_wht);
  overflow: hidden;
}
#sec-profile .profile-ttl {
  margin-bottom: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-column-gap: 48px;
     -moz-column-gap: 48px;
          column-gap: 48px;
  line-height: 1;
}
#sec-profile .profile-ttl-eng {
  font-size: 115px;
  letter-spacing: 0;
}
#sec-profile .profile-ttl-jp {
  font-size: 24px;
}
#sec-profile .profile-sec01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 100px;
}
#sec-profile .profile-sec01-imgbox {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 40.909%;
          flex: 0 1 40.909%;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
          box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
}
#sec-profile .profile-sec01-imgbox .box {
  background: rgba(255, 255, 255, 0.9);
  max-width: 365px;
  margin: -60px auto 0;
  padding: 16px 20px;
  position: relative;
  color: var(--c_text);
  font-size: 20px;
  line-height: 1;
}
#sec-profile .profile-sec01-imgbox .job {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid currentColor;
}
#sec-profile .profile-sec01-txtbox {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 53.636%;
          flex: 0 1 53.636%;
}
#sec-profile .profile-sec01-ttl {
  font-size: 32px;
  margin-bottom: 28px;
}
#sec-profile .profile-sec01-ttl .marker {
  background: var(--c_wht);
  color: var(--c_text);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
  padding: 0 10px;
}
#sec-profile .profile-sec01-txt {
  line-height: 2.059;
  margin-bottom: 2.059em;
}
#sec-profile .profile-sec01-txt:last-child {
  margin-bottom: 0;
}
#sec-profile .profile-sec02 {
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}
#sec-profile .profile-sec02-imgbox {
  position: absolute;
  top: 0;
  left: 56.091%;
  width: 50.636%;
  height: 100%;
  z-index: -1;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
          box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
}
#sec-profile .profile-sec02-imgbox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}
#sec-profile .profile-sec02-txtbox {
  padding: 40px 0;
}
#sec-profile .profile-sec02-ttl {
  font-size: 26px;
  line-height: 1.385;
  margin-bottom: 24px;
}
#sec-profile .profile-sec02-txt {
  line-height: 2.059;
  margin-bottom: 2.059em;
}
#sec-profile .profile-sec02-txt:last-child {
  margin-bottom: 0;
}
#sec-profile .profile-sec03 {
  margin-bottom: 50px;
}
#sec-profile .profile-sec03-imgbox {
  margin-bottom: 60px;
}
#sec-profile .profile-sec03-txtbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 1.818%;
     -moz-column-gap: 1.818%;
          column-gap: 1.818%;
}
#sec-profile .profile-sec03-ttl {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 32px;
  line-height: 2.125;
}
#sec-profile .profile-sec03-ttl .marker {
  background: var(--c_wht);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
  padding: 0 20px;
  color: var(--c_text);
}
#sec-profile .profile-sec03-txt {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 56.364%;
          flex: 0 1 56.364%;
}
#sec-profile .profile-sec04 {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
#sec-profile .profile-sec04-imgbox {
  position: absolute;
  left: 46%;
  width: 60.727%;
  height: 100%;
  z-index: -1;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
          box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
}
#sec-profile .profile-sec04-imgbox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}
#sec-profile .profile-sec04-txtbox .box {
  max-width: 398px;
  background: var(--c_wht);
  border-radius: 10px;
  margin-bottom: 32px;
  padding: 24px 30px;
  position: relative;
  color: var(--c_text);
}
#sec-profile .profile-sec04-txtbox .sub {
  width: 153px;
  position: absolute;
  top: -40px;
  left: -36px;
}
#sec-profile .profile-sec04-txtbox .title {
  font-size: 24px;
  line-height: 1;
  padding-bottom: 8px;
  margin-bottom: 16px;
  border-bottom: 1px solid currentColor;
}
#sec-profile .profile-sec04-txtbox .list-item {
  line-height: 1;
  margin-bottom: 20px;
  padding-left: 28px;
  background: url(../img/profile_check.png) no-repeat left top/16px;
}
#sec-profile .profile-sec04-txtbox .list-item:last-child {
  margin-bottom: 0;
}
#sec-profile .profile-sec04-txtbox .text {
  line-height: 1.961;
}
#sec-profile .profile-sec04-txtbox .text .size_l {
  font-size: 120%;
}
#sec-profile .profile-sec05 {
  position: relative;
  z-index: 2;
}
#sec-profile .profile-sec05-imgbox {
  width: 60.727%;
  position: absolute;
  right: 45.636%;
  top: 0;
  z-index: -1;
  height: 100%;
}
#sec-profile .profile-sec05-imgbox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#sec-profile .profile-sec05-txtbox {
  padding: 65px 0 25px;
  max-width: 443px;
  margin-left: auto;
}
#sec-profile .profile-sec05-ttl {
  font-size: 32px;
  margin-bottom: 36px;
}
#sec-profile .profile-sec05-ttl .marker {
  background: var(--c_wht);
  color: var(--c_text);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
  padding: 0 20px;
}
#sec-profile .profile-sec05-txt {
  line-height: 2.059;
}

/** -------------------- サービス紹介 -------------------- **/
#sec-service {
  padding: 80px 0;
  background: url(../img/service_bg_top.png) no-repeat top center/100%, url(../img/service_bg_bottom.png) no-repeat bottom center/100%;
  overflow: hidden;
}
#sec-service .service-ttl {
  margin-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}
#sec-service .service-ttl-eng {
  font-size: 115px;
  line-height: 85px;
}
#sec-service .service-ttl-jp {
  font-size: 24px;
  line-height: 1.042;
}
#sec-service .service-subttl {
  position: relative;
  font-size: 40px;
  line-height: 1.075;
  margin-bottom: 40px;
}
#sec-service .service-subttl:before {
  content: "";
  width: 50vw;
  height: 2px;
  background: var(--c_blue);
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(100% + 20px);
  margin: auto;
}
#sec-service .service-feature {
  margin-bottom: 60px;
}
#sec-service .service-feature-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
#sec-service .service-feature-item .text {
  font-size: 24px;
  line-height: 1.5;
  padding: 20px 32px;
  background: #5db8d1;
  color: var(--c_wht);
}
#sec-service .service-feature-item:nth-child(4n) .text, #sec-service .service-feature-item:nth-child(4n+1) .text {
  background: var(--c_blue);
}
#sec-service .service-feature-closing {
  margin-top: 50px;
  font-size: 34px;
  line-height: 1.471;
}
#sec-service .service-detail-lead {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 52px;
}
#sec-service .service-detail-item {
  margin-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#sec-service .service-detail-item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#sec-service .service-detail-item:nth-child(even) .service-detail-txtbox {
  margin-left: 0;
  margin-right: -5.455%;
}
#sec-service .service-detail-item:nth-child(even) .service-detail-txtbox .marker {
  background: -webkit-gradient(linear, left top, right top, from(#156c82), color-stop(99%, #61c5e8));
  background: linear-gradient(to right, #156c82 0%, #61c5e8 99%);
}
#sec-service .service-detail-item:last-child {
  margin-bottom: 0;
}
#sec-service .service-detail-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 52.727%;
          flex: 0 1 52.727%;
}
#sec-service .service-detail-txtbox {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 52.727%;
          flex: 0 1 52.727%;
  position: relative;
  margin-left: -5.455%;
  margin-top: 5.455%;
  background: var(--c_wht);
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
          box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
  padding: 40px;
}
#sec-service .service-detail-ttl {
  font-size: 32px;
  line-height: 1.75;
  margin-bottom: 20px;
}
#sec-service .service-detail-ttl .marker {
  background: linear-gradient(135deg, #024e9c 0%, #57a2d9 100%);
  color: var(--c_wht);
  padding: 0 18px;
}
#sec-service .service-detail-txt {
  margin-top: 16px;
}
#sec-service .service-detail-point {
  background: #edf4f9;
  padding: 20px;
  margin-top: 16px;
}
#sec-service .service-detail-point-item {
  font-size: 20px;
  line-height: 1.1;
  padding-left: 32px;
  background: url(../img/service_check.png) no-repeat left top/22px;
  margin-bottom: 10px;
}
#sec-service .service-detail-point-item:last-child {
  margin-bottom: 0;
}
#sec-service .service-detail-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 32px;
  margin-top: 16px;
}
#sec-service .service-detail-action-item {
  font-size: 20px;
  line-height: 1.1;
  padding-left: 32px;
  background: url(../img/service_check02.png) no-repeat left top/22px;
}
#sec-service .service-detail-closing {
  margin-top: 52px;
  font-size: 22px;
  line-height: 1.818;
}
#sec-service .service-detail-closing .size_l {
  font-size: 34px;
}

/** -------------------- パフォーマンスケアとは -------------------- **/
#sec-care {
  padding: 80px 0;
  background: #fafceb;
  position: relative;
  z-index: 2;
}
#sec-care:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/care_bg_top.png) no-repeat top center/100%, url(../img/care_bg_bottom.png) no-repeat bottom center/100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
  mix-blend-mode: screen;
  z-index: -1;
}
#sec-care .care-ttl {
  font-size: 60px;
  line-height: 1;
  margin-bottom: 60px;
}
#sec-care .care-sec01 {
  margin: 60px 0;
}
#sec-care .care-sec01-ttl {
  font-size: 32px;
  line-height: 2;
  letter-spacing: 0.11em;
  -webkit-transform: translateY(-38px);
          transform: translateY(-38px);
}
#sec-care .care-sec01-ttl .marker {
  background: var(--c_wht);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
  padding: 4px 20px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
          box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
}
#sec-care .care-sec02 {
  margin: 0 auto 80px;
  max-width: 980px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 35px 20px;
}
#sec-care .care-sec02-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 45.51%;
          flex: 0 1 45.51%;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
          box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
}
#sec-care .care-sec02-txtbox {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 48.98%;
          flex: 0 1 48.98%;
}
#sec-care .care-sec02-ttl {
  font-size: 32px;
  line-height: 2;
  margin-bottom: 40px;
}
#sec-care .care-sec02-ttl .marker {
  background: var(--c_wht);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
  padding: 4px 20px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
          box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
}
#sec-care .care-sec02-txt {
  line-height: 1.765;
}
#sec-care .care-sec02-txt .size_l {
  font-size: 120%;
}
#sec-care .care-sec02-summary {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  max-width: 892px;
  margin: 0 auto;
}
#sec-care .care-sec02-summary-txt {
  font-size: 22px;
  line-height: 1.818;
}
#sec-care .care-sec02-check {
  border: 1px solid var(--c_navy);
  background: var(--c_wht);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px 36px;
  padding: 16px;
  margin-bottom: 30px;
}
#sec-care .care-sec02-check-item {
  padding-left: 32px;
  font-size: 20px;
  line-height: 1.1;
  background: url(../img/care_check.png) no-repeat left top/22px;
}
#sec-care .care-sec03 {
  margin-bottom: 70px;
  background: var(--c_wht);
  position: relative;
  padding: 70px 40px 50px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
          box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
  border-radius: 10px;
  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;
}
#sec-care .care-sec03-ttl {
  font-size: 32px;
  line-height: 1.75;
  background: var(--c_text);
  color: var(--c_wht);
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#sec-care .care-sec03-txtbox {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 46.078%;
          flex: 0 1 46.078%;
}
#sec-care .care-sec03-check {
  background: #fafceb;
  padding: 20px 30px;
  margin-bottom: 24px;
}
#sec-care .care-sec03-check-item {
  padding-left: 32px;
  background: url(../img/care_check02.png) no-repeat left top/22px;
  font-size: 20px;
  line-height: 1.1;
  margin-bottom: 10px;
}
#sec-care .care-sec03-check-item:last-child {
  margin-bottom: 0;
}
#sec-care .care-sec03-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 49.02%;
          flex: 0 1 49.02%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}
#sec-care .care-sec04 {
  background: var(--c_wht);
  position: relative;
  padding: 70px 40px 50px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
          box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
  border-radius: 10px;
  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;
}
#sec-care .care-sec04-ttl {
  font-size: 32px;
  line-height: 1.75;
  background: var(--c_text);
  color: var(--c_wht);
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#sec-care .care-sec04-ttl .size_s {
  font-size: 80%;
}
#sec-care .care-sec04-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 46.078%;
          flex: 0 1 46.078%;
}
#sec-care .care-sec04-txtbox {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 46.078%;
          flex: 0 1 46.078%;
}
#sec-care .care-sec04-flow {
  margin: -20px 0 30px;
  padding-left: 42px;
}
#sec-care .care-sec04-flow-item {
  counter-increment: cnt;
  font-size: 20px;
  line-height: 1.4;
  position: relative;
  padding: 18px 0;
  border-bottom: 1px solid #edf4f9;
}
#sec-care .care-sec04-flow-item:before {
  content: "";
  width: 1px;
  height: calc(100% + 1px);
  background: #92b20b;
  position: absolute;
  left: -28px;
  top: 18px;
}
#sec-care .care-sec04-flow-item:after {
  content: counter(cnt, decimal-leading-zero);
  width: 28px;
  height: 28px;
  font-family: var(--font_eng);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  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;
  background: #92b20b;
  color: var(--c_wht);
  position: absolute;
  left: -42px;
  top: 18px;
}
#sec-care .care-sec04-flow-item .size_s {
  font-size: 15px;
}
#sec-care .care-sec04-flow-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
#sec-care .care-sec04-flow-item:last-child:before {
  height: calc(100% - 30px);
}

/** -------------------- デリバリー型パフォーマンスケア -------------------- **/
#sec-delivery {
  padding: 64px 0;
}
#sec-delivery .delivery-ttl {
  font-size: 60px;
  line-height: 1.15;
  margin-bottom: 64px;
}
#sec-delivery .delivery-ttl .grad {
  background: -webkit-gradient(linear, left top, right top, from(#d96d5a), to(#f0a72c));
  background: linear-gradient(to right, #d96d5a 0%, #f0a72c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 6px;
}
#sec-delivery .delivery-ttl .size_s {
  font-size: 80%;
}
#sec-delivery .delivery-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
#sec-delivery .delivery-txtbox {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 47.273%;
          flex: 0 1 47.273%;
}
#sec-delivery .delivery-subttl {
  font-size: 34px;
  line-height: 2.029;
  margin-bottom: 20px;
}
#sec-delivery .delivery-subttl .marker {
  background: -webkit-gradient(linear, left top, right top, from(#d96d5a), to(#f0a72c));
  background: linear-gradient(to right, #d96d5a 0%, #f0a72c 100%);
  color: var(--c_wht);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
  padding: 0 20px;
}
#sec-delivery .delivery-check {
  position: relative;
  background: #fcf9f0;
  padding: 32px 40px;
  margin-bottom: 32px;
}
#sec-delivery .delivery-check-img {
  width: 37.5%;
  position: absolute;
  bottom: -15px;
  right: -15px;
}
#sec-delivery .delivery-check-item {
  font-size: 20px;
  line-height: 1.25;
  padding-left: 32px;
  background: url(../img/delivery_check.png) no-repeat left top/25px;
  margin-bottom: 20px;
}
#sec-delivery .delivery-check-item:last-child {
  margin-bottom: 0;
}
#sec-delivery .delivery-txt {
  font-size: 20px;
  line-height: 1.5;
}
#sec-delivery .delivery-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 47.273%;
          flex: 0 1 47.273%;
}
#sec-delivery .delivery-closing {
  font-size: 34px;
  line-height: 1.471;
  letter-spacing: 0.11em;
}

/** -------------------- 料金について -------------------- **/
#sec-price {
  background: #fafceb;
  padding: 80px 0;
}
#sec-price .price-ttl {
  font-size: 60px;
  line-height: 1.067;
  letter-spacing: 0.07em;
  margin-bottom: 72px;
}
#sec-price .price-box {
  background: var(--c_wht);
  max-width: 880px;
  margin: 0 auto;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
          box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
  padding: 32px 40px;
}
#sec-price .price-box-header {
  border-bottom: 1px solid var(--c_navy);
  padding-bottom: 30px;
  margin-bottom: 30px;
  line-height: 1;
  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;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
#sec-price .price-box-header .label {
  background: #92b20b;
  color: var(--c_wht);
  font-size: 27px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 77px;
          flex: 0 0 77px;
  padding: 6px 0 10px;
}
#sec-price .price-box-header .label .size_s {
  font-size: 70%;
}
#sec-price .price-box-header .text {
  font-size: 28px;
}
#sec-price .price-box-header .text .num {
  font-size: 140%;
}
#sec-price .price-box-body {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#sec-price .price-include {
  margin-bottom: 20px;
}
#sec-price .price-include-item {
  font-size: 22px;
  line-height: 1;
  padding-left: 32px;
  background: url(../img/price_check.png) no-repeat left top/22px;
  margin-bottom: 20px;
}
#sec-price .price-include-item:last-child {
  margin-bottom: 0;
}
#sec-price .price-include-item .size_s {
  font-size: 15px;
  margin-left: 24px;
}
#sec-price .price-target {
  margin: 16px 20px;
}
/** -------------------- 半年に一度、身体をアップデートします -------------------- **/
#sec-update {
  padding: 80px 0;
  background: url(../img/update_bg.png) no-repeat top left/527px, linear-gradient(135deg, #024e9c 0%, #f7efde 100%);
  color: var(--c_wht);
}
#sec-update .update-ttl {
  font-size: 50px;
  line-height: 1.08;
  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;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  margin-bottom: 40px;
}
#sec-update .update-ttl:before, #sec-update .update-ttl:after {
  content: "";
  width: 2px;
  height: 60px;
  background: currentColor;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
#sec-update .update-ttl:after {
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
#sec-update .update-container {
  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;
  -webkit-column-gap: 5.455%;
     -moz-column-gap: 5.455%;
          column-gap: 5.455%;
}
#sec-update .update-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 35.455%;
          flex: 0 1 35.455%;
}
#sec-update .update-txtbox {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 42.727%;
          flex: 0 1 42.727%;
}
#sec-update .update-txt {
  margin-bottom: 1.765em;
}
#sec-update .update-txt:last-child {
  margin-bottom: 0;
}
#sec-update .update-txt .size_l {
  font-size: 120%;
}
#sec-update .update-closing {
  margin: 54px 0 30px;
  font-size: 34px;
  line-height: 1.471;
}

/** -------------------- よくあるご質問 -------------------- **/
#sec-faq {
  background: #efefef;
  padding: 64px 0 80px;
}
#sec-faq .faq-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  margin-bottom: 64px;
}
#sec-faq .faq-ttl-eng {
  font-size: 115px;
  line-height: 0.87;
}
#sec-faq .faq-ttl-jp {
  font-size: 24px;
  line-height: 1.1;
}
#sec-faq .faq-item {
  margin-bottom: 30px;
  background: var(--c_wht);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
          box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
  padding: 0 40px;
}
#sec-faq .faq-item:last-child {
  margin-bottom: 0;
}
#sec-faq .faq-item-q {
  position: relative;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  padding: 20px 54px;
}
#sec-faq .faq-item-q:before {
  content: "Q";
  width: 36px;
  height: 36px;
  background: var(--c_blue);
  color: var(--c_wht);
  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;
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 0;
}
#sec-faq .faq-item-q:after {
  content: "";
  width: 16px;
  height: 16px;
  border-right: 3px solid var(--c_blue);
  border-bottom: 3px solid var(--c_blue);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: var(--anim);
  transition: var(--anim);
}
#sec-faq .faq-item-q.is-open:after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
#sec-faq .faq-item-a {
  display: none;
  position: relative;
  padding: 20px 54px;
  border-top: 1px solid var(--c_text);
}
#sec-faq .faq-item-a:before {
  content: "A";
  width: 36px;
  height: 36px;
  background: var(--c_text);
  color: var(--c_wht);
  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;
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 0;
}

/** -------------------- 体験トレーニングのご案内 -------------------- **/
#sec-trial {
  background: url(../img/trial_bg_top.png) no-repeat top center/100%, url(../img/bg_pattern.png) repeat center top/72px;
  padding: 80px 0;
  overflow: hidden;
}
#sec-trial .trial-ttl {
  position: relative;
  z-index: 2;
  margin-bottom: 72px;
}
#sec-trial .trial-ttl-eng {
  width: 161px;
  position: absolute;
  top: -16px;
  left: 40px;
  z-index: -1;
}
#sec-trial .trial-ttl-jp {
  font-size: 60px;
  line-height: 1.067;
}
#sec-trial .trial-subttl {
  position: relative;
  font-size: 40px;
  line-height: 1.075;
  margin-bottom: 40px;
}
#sec-trial .trial-subttl:before {
  content: "";
  width: 50vw;
  height: 2px;
  background: var(--c_blue);
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(100% + 20px);
  margin: auto;
}
#sec-trial .trial-subttl .marker {
  background: var(--c_text);
  color: var(--c_wht);
  font-size: 30px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
  padding: 0 16px;
  margin-left: 20px;
}
#sec-trial .trial-sec01 {
  margin-bottom: 90px;
}
#sec-trial .trial-sec01-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#sec-trial .trial-sec01-txtbox {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 52.727%;
          flex: 0 1 52.727%;
}
#sec-trial .trial-sec01-ttl {
  font-size: 32px;
  line-height: 2;
  margin-bottom: 28px;
}
#sec-trial .trial-sec01-ttl .marker {
  background: var(--c_wht);
  color: var(--c_blue);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
  padding: 4px 20px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
          box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
}
#sec-trial .trial-sec01-list {
  padding: 20px 28px;
  position: relative;
  z-index: 2;
  margin: 24px 0;
  max-width: 472px;
}
#sec-trial .trial-sec01-list:before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--c_wht);
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: -1;
}
#sec-trial .trial-sec01-list:after {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid var(--c_navy);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#sec-trial .trial-sec01-list-item {
  font-size: 20px;
  line-height: 1.1;
  padding-left: 32px;
  background: url(../img/trial_check.png) no-repeat left top/22px;
  margin-bottom: 10px;
}
#sec-trial .trial-sec01-list-item:last-child {
  margin-bottom: 0;
}
#sec-trial .trial-sec01-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 42%;
          flex: 0 1 42%;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
          box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
}
#sec-trial .trial-sec02 {
  margin: 90px 0;
}
#sec-trial .trial-sec02-lead {
  margin-bottom: 80px;
  font-size: 24px;
  line-height: 1.25;
}
#sec-trial .trial-sec02-box {
  background: var(--c_wht);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
          box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
  border-radius: 10px;
  padding: 70px 40px 50px;
  position: relative;
  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-bottom: 70px;
}
#sec-trial .trial-sec02-box:last-child {
  margin-bottom: 0;
}
#sec-trial .trial-sec02-ttl {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 32px;
  line-height: 1;
  background: var(--c_text);
  color: var(--c_wht);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  padding: 12px 20px;
}
#sec-trial .trial-sec02-ttl .label {
  font-size: 28px;
  background: var(--c_wht);
  color: var(--c_text);
  border-radius: 100px;
  padding: 0 14px 4px;
}
#sec-trial .trial-sec02-ttl .label .size_s {
  font-size: 70%;
}
#sec-trial .trial-sec02-txtbox {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50.098%;
          flex: 0 1 50.098%;
}
#sec-trial .trial-sec02-check {
  background: #edf4f9;
  margin-bottom: 28px;
  padding: 20px 30px;
}
#sec-trial .trial-sec02-check-item {
  font-size: 20px;
  line-height: 1.5;
  padding-left: 32px;
  background: url(../img/trial_check.png) no-repeat top 4px left/22px;
  margin-bottom: 4px;
}
#sec-trial .trial-sec02-check-item:last-child {
  margin-bottom: 0;
}
#sec-trial .trial-sec02-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 44.804%;
          flex: 0 1 44.804%;
}
#sec-trial .trial-point {
  margin: 80px auto;
  max-width: 900px;
  position: relative;
  background: linear-gradient(135deg, #024e9c 0%, #57a2d9 100%);
  color: var(--c_wht);
  padding: 28px 60px 50px;
}
#sec-trial .trial-point-img {
  width: 153px;
  position: absolute;
  top: -4px;
  left: 18px;
}
#sec-trial .trial-point-ttl {
  font-size: 30px;
  line-height: 1.067;
  margin-bottom: 30px;
}
#sec-trial .trial-point-list {
  margin: 20px 0;
  position: relative;
  z-index: 2;
  color: var(--c_text);
  padding: 20px 30px;
}
#sec-trial .trial-point-list:before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--c_wht);
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: -1;
}
#sec-trial .trial-point-list:after {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid var(--c_navy);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#sec-trial .trial-point-list-item {
  font-size: 20px;
  line-height: 1.1;
  padding-left: 32px;
  background: url(../img/trial_check.png) no-repeat left top/22px;
  margin-bottom: 10px;
}
#sec-trial .trial-point-list-item:last-child {
  margin-bottom: 0;
}
#sec-trial .trial-sec03-box {
  margin: 56px auto 0;
  max-width: 880px;
  background: var(--c_wht);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
          box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
  border-radius: 10px;
  position: relative;
  padding: 64px 40px 40px;
}
#sec-trial .trial-sec03-box-ttl {
  font-size: 32px;
  background: linear-gradient(135deg, #024e9c 0%, #57a2d9 100%);
  color: var(--c_wht);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 700px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding-bottom: 2px;
}
#sec-trial .trial-sec03-box-ttl .size_s {
  font-size: 70%;
}
#sec-trial .trial-sec03-box-in {
  max-width: 700px;
  margin: 0 auto;
}
#sec-trial .trial-sec03-price {
  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;
  -webkit-column-gap: 14px;
     -moz-column-gap: 14px;
          column-gap: 14px;
  line-height: 1;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--c_navy);
  margin-bottom: 12px;
}
#sec-trial .trial-sec03-price .label {
  font-size: 27px;
  padding: 4px 11px 8px;
  background: var(--c_blue);
  color: var(--c_wht);
}
#sec-trial .trial-sec03-price .regular {
  font-size: 20px;
  position: relative;
}
#sec-trial .trial-sec03-price .regular:before {
  content: "";
  width: calc(100% + 8px);
  height: 1px;
  background: var(--c_navy);
  position: absolute;
  top: 0;
  bottom: 0;
  left: -4px;
  margin: auto;
}
#sec-trial .trial-sec03-price .regular .size_l {
  font-size: 140%;
}
#sec-trial .trial-sec03-price .arrow {
  width: 28px;
  height: 1px;
  background: var(--c_navy);
  position: relative;
}
#sec-trial .trial-sec03-price .arrow:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 8px;
  border-color: transparent transparent transparent var(--c_navy);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
#sec-trial .trial-sec03-price .first {
  font-size: 28px;
}
#sec-trial .trial-sec03-price .first .size_s {
  font-size: 70%;
}
#sec-trial .trial-sec03-price .first .size_l {
  font-size: 140%;
}
#sec-trial .trial-sec03-detail {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 0 auto;
  grid-template-columns: auto auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
}
#sec-trial .trial-sec03-detail-label {
  padding: 8px 20px 8px 0;
  border-bottom: 1px solid #edf4f9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
}
#sec-trial .trial-sec03-detail-label img {
  width: 16px;
}
#sec-trial .trial-sec03-detail-txt {
  padding: 8px 0;
  border-bottom: 1px solid #edf4f9;
}
#sec-trial .trial-sec03-closing {
  margin-top: 20px;
  background: #edf4f9;
  padding: 20px;
}
#sec-trial .trial-sec03-closing-txt {
  margin-bottom: 8px;
}
#sec-trial .trial-sec03-closing-txt:last-child {
  margin-bottom: 0;
}
#sec-trial .trial-sec03-closing-txt .size_l {
  font-size: 22px;
}

/** -------------------- CTA02 -------------------- **/
.cta02 {
  background: url(../img/cta_bg_top.png) no-repeat top left/527px, linear-gradient(135deg, #024e9c 0%, #5492c0 50%, #f7efde 100%);
  color: var(--c_wht);
  padding: 80px 0;
}
.cta02 .cta02-lead {
  margin-bottom: 16px;
  font-size: 26px;
  line-height: 1.077;
  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;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.cta02 .cta02-lead:before, .cta02 .cta02-lead:after {
  content: "";
  width: 2px;
  height: 36px;
  background: currentColor;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
.cta02 .cta02-lead:after {
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
.cta02 .cta02-ttl {
  font-size: 34px;
  line-height: 1.471;
  margin-bottom: 24px;
}
.cta02 .cta02-txt {
  margin-bottom: 40px;
}

/** -------------------- フォーム -------------------- **/
#form {
  background: #edf4f9;
  padding: 80px 0;
}
#form .inner {
  max-width: 800px;
}
#form .form-ttl {
  margin-bottom: 48px;
  font-size: 40px;
  line-height: 1.075;
}
#form .form-notice {
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  padding: 20px;
}
#form .form-notice:before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--c_wht);
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: -1;
}
#form .form-notice:after {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid var(--c_navy);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#form .form-notice-ttl {
  font-size: 22px;
  line-height: 1.091;
  margin-bottom: 18px;
}
#form .form-notice-sub {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
  font-size: 15px;
}
#form .form-notice-sub-item {
  padding-left: 1em;
  text-indent: -1em;
}
#form .form-container {
  background: var(--c_wht);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
          box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
  padding: 20px;
}
#form .form-input {
  max-width: 640px;
  margin: 0 auto 40px;
}
#form .form-input .req, #form .form-input .any {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  background: #c1272d;
  color: var(--c_wht);
  padding: 3px 5px;
}
#form .form-input .any {
  background: var(--c_text);
}
#form .form-input-label {
  padding: 20px 0 12px;
  font-weight: 700;
  line-height: 1;
}
#form .form-input-label .req, #form .form-input-label .any {
  margin-right: 8px;
}
#form .form-input-item {
  padding-bottom: 20px;
  border-bottom: 1px solid #edf4f9;
}
#form .form-input-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
#form .form-input-item .note {
  display: block;
  font-size: 15px;
  margin-top: 8px;
}
#form .form-input-time {
  padding: 20px 0 0 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#form .form-input-time-label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 700;
  margin-right: 30px;
}
#form .form-input-time-label .req, #form .form-input-time-label .any {
  margin-left: 8px;
}
#form .form-input-time-items {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
#form .form-input-time-items > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#form .form-input-check {
  padding-left: 28px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 28px auto;
  grid-template-columns: auto auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px 28px;
}
#form .form-input-check--col1 {
  -ms-grid-columns: auto;
  grid-template-columns: auto;
}
#form .form-input input[type=text], #form .form-input input[type=email], #form .form-input input[type=tel] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  background: #f2f2f2;
  border: 0;
  font-family: var(--font_ja);
  font-size: 100%;
  font-weight: 700;
  line-height: 1.1;
  padding: 16px 20px;
}
#form .form-input input[type=text]::-webkit-input-placeholder, #form .form-input input[type=email]::-webkit-input-placeholder, #form .form-input input[type=tel]::-webkit-input-placeholder {
  color: #808080;
}
#form .form-input input[type=checkbox] {
  margin: 0 8px 0 0;
  font-size: 100%;
  width: 1em;
  height: 1em;
}
#form .form-input textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 130px;
  background: #f2f2f2;
  border: 0;
  font-family: var(--font_ja);
  font-size: 100%;
  font-weight: 700;
  line-height: 1.1;
  padding: 16px 20px;
}
#form .form-input textarea::-webkit-input-placeholder {
  color: #808080;
}
#form .form-input select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  background: url(../img/select_bg.png) no-repeat right 16px center/14px, #f2f2f2;
  border: 0;
  color: var(--c_text);
  font-family: var(--font_ja);
  font-size: 100%;
  font-weight: 700;
  line-height: 1.1;
  padding: 16px 20px;
}
#form .form-input label {
  font-weight: 700;
  cursor: pointer;
}
#form .form-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  background: var(--c_orange);
  color: var(--c_wht);
  border: 0;
  font-family: var(--font_ja);
  font-size: 20px;
  font-weight: 900;
  position: relative;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
  padding: 14px;
  -webkit-transition: var(--anim);
  transition: var(--anim);
}
#form .form-btn:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent currentColor;
  position: absolute;
  right: 24px;
  top: 0;
  bottom: 0;
  margin: auto;
}
#form .form-btn:hover {
  -webkit-filter: brightness(125%);
          filter: brightness(125%);
}

/* スマホ
  ------------------------ */
@media (max-width: 979px) {
  /** -------------------- MV -------------------- **/
  .mv .mv-bg01 {
    padding-top: 8%;
    width: 92%;
  }
  .mv .mv-bg02 {
    width: 100%;
    height: auto;
  }
  .mv .mv-bg02 img {
    height: auto;
  }
  .mv .mv-container {
    padding: 0 0 8%;
  }
  .mv .mv-ttl {
    width: 100%;
    max-width: 100%;
  }
  .mv .mv-txt {
    width: 100%;
    max-width: 100%;
    margin-top: 4.267%;
  }
  /** -------------------- ファースト診断 -------------------- **/
  #sec-first {
    padding: 36px 0 24px;
    background-size: 36px;
  }
  #sec-first .first-ttl {
    margin: 0 -10px 18px;
    font-size: 19px;
  }
  #sec-first .first-lead {
    font-size: 13px;
    line-height: 1.538;
    margin-bottom: 20px;
  }
  #sec-first .first-step {
    max-width: 670px;
  }
  #sec-first .first-step-item {
    margin-bottom: 28px;
    min-height: auto;
    font-size: 14px;
    line-height: 1.429;
  }
  #sec-first .first-step-num {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 76px;
            flex: 0 0 76px;
    font-size: 13px;
  }
  #sec-first .first-step-txt {
    padding: 16px 20px;
  }
  #sec-first .first-step-txt .size_s {
    font-size: 10px;
    line-height: 1.5;
    display: inline-block;
    margin-top: 4px;
  }
  #sec-first .first-step-img {
    width: 130px;
    left: auto;
    right: -20px;
  }
  #sec-first .first-step-note {
    width: auto;
    max-width: 670px;
    margin-top: 10px;
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    text-align: left;
  }
  #sec-first .first-point {
    max-width: 335px;
    margin: 25px auto 30px;
    padding: 16px 20px 20px;
  }
  #sec-first .first-point-img {
    width: 76px;
    left: -4px;
    top: -8px;
  }
  #sec-first .first-point-ttl {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 16px;
  }
  #sec-first .first-point-item {
    font-size: 15px;
    letter-spacing: 0.04em;
    line-height: 1.5;
    padding-left: 48px;
  }
  #sec-first .first-point-item:before {
    width: 38px;
    height: 38px;
    font-size: 23px;
    top: 4px;
    padding-bottom: 2px;
  }
  #sec-first .first-price-ttl {
    font-size: 20px;
    line-height: 1.3;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
  #sec-first .first-price-ttl:before, #sec-first .first-price-ttl:after {
    width: 2px;
    height: 20px;
  }
  #sec-first .first-price-main {
    display: block;
    text-align: center;
  }
  #sec-first .first-price-txt {
    font-size: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #sec-first .first-price-txt .label {
    font-size: 12px;
    padding: 4px 5px;
    margin-right: 6px;
  }
  #sec-first .first-price-txt .num {
    font-size: 140%;
  }
  #sec-first .first-price-arrow {
    width: 100%;
    height: auto;
    margin: 10px 0;
    background: none;
  }
  #sec-first .first-price-arrow:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 12px 0 12px;
    border-color: var(--c_text) transparent transparent transparent;
    display: block;
    margin: 0 auto;
  }
  #sec-first .first-price-arrow:after {
    display: none;
  }
  /** -------------------- CTA01 -------------------- **/
  .cta01 {
    padding: 30px 0 20px;
  }
  .cta01 .cta01-box {
    padding: 24px 0 16px;
  }
  .cta01 .cta01-subttl {
    font-size: 13.5px;
    width: 320px;
    max-width: 100%;
    padding: 6px 4px;
  }
  .cta01 .cta01-subttl:after {
    border-width: 7px 3px 0 3px;
  }
  .cta01 .cta01-ttl {
    font-size: 15px;
    margin-bottom: 8px;
  }
  /** -------------------- リンクアップについて -------------------- **/
  #sec-about {
    background-size: 94.133%, 94.133%, 100%;
    padding-bottom: 36px;
  }
  #sec-about .about-header {
    padding: 36px 0 16px;
  }
  #sec-about .about-ttl {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px 20px;
  }
  #sec-about .about-ttl-logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 227px;
            flex: 0 1 227px;
  }
  #sec-about .about-ttl-txt {
    font-size: 12px;
  }
  #sec-about .about-lead {
    padding: 90px 0 10px;
  }
  #sec-about .about-lead-txt {
    font-size: 17px;
  }
  #sec-about .about-lead-txt .marker {
    padding: 0 8px;
  }
  #sec-about .about-main {
    margin: 16px 0 0;
  }
  #sec-about .about-main-item {
    margin-bottom: 20px;
  }
  #sec-about .about-main-img {
    width: 100%;
  }
  #sec-about .about-main-txtbox {
    width: 92.537%;
    position: relative;
    right: auto;
    top: auto;
    -webkit-transform: none;
            transform: none;
    margin: -36px auto 0;
    padding: 20px 16px;
  }
  #sec-about .about-main-txt {
    font-size: 12px;
    margin-bottom: 20px;
  }
  #sec-about .about-main-closer {
    font-size: 14px;
    margin: 0 -10px;
  }
  #sec-about .about-main-closer .marker {
    padding: 0 6px;
  }
  /** -------------------- いくつ心当たりがありますか -------------------- **/
  #sec-trouble {
    padding: 36px 0;
  }
  #sec-trouble .trouble-lead {
    font-size: 15.5px;
    margin-bottom: 12px;
  }
  #sec-trouble .trouble-ttl {
    font-size: 25px;
    line-height: 1.2;
    padding-bottom: 10px;
    margin-bottom: 24px;
    border-width: 1px;
  }
  #sec-trouble .trouble-ttl:before, #sec-trouble .trouble-ttl:after {
    border-width: 6px 3px 0 3px;
  }
  #sec-trouble .trouble-ttl:after {
    top: calc(100% - 2px);
  }
  #sec-trouble .trouble-list {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 20px 0;
    margin-bottom: 32px;
  }
  #sec-trouble .trouble-item {
    display: block;
  }
  #sec-trouble .trouble-item-header {
    padding: 14px 12px 14px 42px;
    background-size: 16px;
    background-position: left 16px center;
  }
  #sec-trouble .trouble-subttl {
    font-size: 13px;
    line-height: 1.5;
  }
  #sec-trouble .trouble-txt {
    padding: 12px 14px;
  }
  #sec-trouble .trouble-closing {
    display: block;
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  #sec-trouble .trouble-closing-ttl {
    font-size: 17px;
    margin-bottom: 20px;
  }
  #sec-trouble .trouble-closing-ttl .marker {
    padding: 0 8px 0 12px;
  }
  #sec-trouble .trouble-closing-img {
    width: 95px;
    position: absolute;
    left: 0;
    bottom: 10px;
  }
  #sec-trouble .trouble-closing-txtbox {
    padding-left: 110px;
  }
  #sec-trouble .trouble-closing-txt {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 1em;
  }
  /** -------------------- 4ステップの未来 -------------------- **/
  #sec-future {
    padding: 40px 0 0;
  }
  #sec-future .future-header {
    margin-bottom: 36px;
  }
  #sec-future .future-header-img {
    width: 85px;
    bottom: -26px;
    right: 0;
  }
  #sec-future .future-subttl {
    font-size: 12px;
    -webkit-column-gap: 14px;
       -moz-column-gap: 14px;
            column-gap: 14px;
    margin: 0 -10px 10px;
  }
  #sec-future .future-subttl:before, #sec-future .future-subttl:after {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 42px;
            flex: 0 1 42px;
  }
  #sec-future .future-ttl {
    font-size: 17px;
  }
  #sec-future .future-ttl .size_l {
    font-size: 30px;
  }
  #sec-future .future-ttl .num {
    width: 39px;
    margin-right: 8px;
    vertical-align: bottom;
  }
  #sec-future .future-step {
    margin-bottom: 20px;
  }
  #sec-future .future-step-item {
    margin-bottom: 40px;
    display: block;
  }
  #sec-future .future-step-img {
    width: 66.716%;
    max-width: 420px;
    margin: 0 auto 36px;
  }
  #sec-future .future-step-img:before {
    width: 100%;
    right: -25px;
    bottom: -20px;
  }
  #sec-future .future-step-img img {
    width: 100%;
  }
  #sec-future .future-step-num {
    font-size: 24px;
    margin-bottom: 8px;
  }
  #sec-future .future-step-num .num {
    font-size: 43px;
    margin-left: 4px;
  }
  #sec-future .future-step-ttl {
    font-size: 18px;
    margin-bottom: 12px;
  }
  #sec-future .future-step-ttl .marker {
    padding: 0 12px;
  }
  #sec-future .future-step-term {
    padding-bottom: 10px;
    padding-left: 24px;
    background-size: 18px;
    margin-bottom: 10px;
  }
  #sec-future .future-step-term-ttl {
    font-size: 14px;
    margin-bottom: 4px;
  }
  #sec-future .future-step-term-txt {
    font-size: 11px;
  }
  #sec-future .future-closing {
    margin-top: 40px;
  }
  #sec-future .future-closing-container .inner {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    display: block;
  }
  #sec-future .future-closing-img {
    margin-top: -40px;
  }
  #sec-future .future-closing-txt {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    font-size: 13px;
  }
  #sec-future .future-closing-txt .size_l {
    font-size: 17px;
  }
  #sec-future .future-closing-txt .u {
    text-underline-offset: 6px;
    margin-bottom: 6px;
  }
  /** -------------------- お客様の声 -------------------- **/
  #sec-voice {
    padding: 40px 0;
  }
  #sec-voice .voice-header {
    margin-bottom: 24px;
  }
  #sec-voice .voice-header-img {
    width: 77px;
    top: -16px;
    left: auto;
    right: calc(50% + 55px);
  }
  #sec-voice .voice-header-txt {
    font-size: 12px;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }
  #sec-voice .voice-header-txt:before, #sec-voice .voice-header-txt:after {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 33px;
            flex: 0 1 33px;
  }
  #sec-voice .voice-ttl {
    font-size: 30px;
    margin-bottom: 8px;
  }
  #sec-voice .voice-subttl {
    font-size: 15px;
    margin-bottom: 8px;
  }
  #sec-voice .voice-summary {
    margin-bottom: 72px;
  }
  #sec-voice .voice-summary-img {
    position: relative;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 5px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
    margin-bottom: 20px;
  }
  #sec-voice .voice-summary-img > img {
    width: 100%;
    height: auto;
  }
  #sec-voice .voice-summary-txtbox {
    max-width: none;
    margin: 0 0 16px;
  }
  #sec-voice .voice-summary-ttl {
    font-size: 16px;
    padding: 13px 12px 13px 54px;
    background-size: 18px;
    background-position: left 26px center;
  }
  #sec-voice .voice-summary-average {
    padding: 12px 12px 16px;
  }
  #sec-voice .voice-summary-average .num {
    font-size: 16.5px;
  }
  #sec-voice .voice-summary-average .text {
    font-size: 15.6px;
  }
  #sec-voice .voice-summary-average .text .size_l {
    font-size: 21.45px;
  }
  #sec-voice .voice-summary-change {
    padding: 20px;
    max-width: none;
  }
  #sec-voice .voice-summary-change .title {
    font-size: 14px;
    margin: 10px 0 6px;
    padding-top: 10px;
  }
  #sec-voice .voice-summary-star {
    padding: 16px 20px;
  }
  #sec-voice .voice-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 48px 12px 20px;
    margin-top: 80px;
  }
  #sec-voice .voice-item-comment {
    left: 0;
    right: 0;
    top: 0;
    -webkit-transform: translateY(-70%);
            transform: translateY(-70%);
    margin: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 91.176%;
    font-size: 16px;
    line-height: 1.344;
    padding: 16px 24px;
  }
  #sec-voice .voice-item-comment:after {
    border-width: 12px 6px 0 6px;
  }
  #sec-voice .voice-item-comment > *:first-child:before, #sec-voice .voice-item-comment > *:first-child:after {
    width: 14px;
    height: 10px;
    top: 10px;
    right: 8px;
  }
  #sec-voice .voice-item-comment > *:first-child:before {
    left: 8px;
  }
  #sec-voice .voice-item-txtbox {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    padding: 0;
    margin-top: 20px;
  }
  #sec-voice .voice-item-detail .title {
    font-size: 15px;
    line-height: 1.3;
    margin: 16px 0 8px;
  }
  #sec-voice .voice-item-sum {
    margin-top: 20px;
    padding: 12px 14px;
    -ms-grid-columns: 92px 16px 1fr;
    grid-template-columns: 92px 1fr;
    gap: 6px 16px;
  }
  #sec-voice .voice-item-sum dt {
    font-size: 13px;
  }
  #sec-voice .voice-item-sum dd {
    font-size: 11px;
  }
  #sec-voice .voice-item-sum dd .size_l {
    font-size: 20px;
  }
  #sec-voice .voice-item-profile {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
  #sec-voice .voice-item-profile .thumb {
    width: 58.413%;
    margin: 0 auto 6px;
    max-width: 320px;
  }
  #sec-voice .voice-item-profile .box {
    padding: 10px;
    margin-top: 6px;
  }
  #sec-voice .voice-item-profile .person {
    font-size: 13px;
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
    margin-bottom: 4px;
  }
  #sec-voice .voice-item-profile .person:before {
    width: 12px;
    height: 12px;
  }
  #sec-voice .voice-item-profile .job {
    margin: 4px 0 8px;
    font-size: 11px;
  }
  #sec-voice .voice-item-profile .status {
    padding: 5px;
  }
  #sec-voice .voice-item-profile .status dt {
    padding-bottom: 4px;
    margin-bottom: 4px;
    font-size: 10px;
  }
  #sec-voice .voice-item-profile .status dt:after {
    max-width: 130px;
  }
  #sec-voice .voice-item-profile .status dd {
    font-size: 11px;
  }
  #sec-voice .voice-subitem {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 20px 12px;
    margin-top: 40px;
  }
  #sec-voice .voice-subitem-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.413%;
            flex: 0 0 58.413%;
    max-width: 320px;
    margin: 0 auto 6px;
  }
  #sec-voice .voice-subitem-txtbox {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
  #sec-voice .voice-subitem-profile {
    width: 100%;
    padding: 10px;
    display: block;
    text-align: center;
  }
  #sec-voice .voice-subitem-profile .person {
    font-size: 13px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
    margin-bottom: 4px;
  }
  #sec-voice .voice-subitem-profile .person:before {
    width: 12px;
    height: 12px;
  }
  #sec-voice .voice-subitem-profile .job {
    margin: 4px 0 8px;
  }
  #sec-voice .voice-subitem-profile .status {
    padding: 5px;
  }
  #sec-voice .voice-subitem-profile .status dt {
    padding-bottom: 4px;
    margin-bottom: 4px;
    font-size: 10px;
  }
  #sec-voice .voice-subitem-profile .status dd {
    font-size: 11px;
  }
  #sec-voice .voice-subitem-ttl {
    font-size: 15px;
    line-height: 1.3;
    margin: 16px 0 8px;
  }
  #sec-voice .voice-subitem-txt {
    padding-top: 8px;
  }
  #sec-voice .voice-subitem-sum {
    margin-top: 12px;
    padding: 12px 14px;
    -ms-grid-columns: 92px 16px 1fr;
    grid-template-columns: 92px 1fr;
    gap: 6px 16px;
  }
  #sec-voice .voice-subitem-sum dt {
    font-size: 13px;
  }
  #sec-voice .voice-subitem-sum dd {
    font-size: 11px;
  }
  #sec-voice .voice-closing {
    margin-top: 40px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #sec-voice .voice-closing-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 74.559%;
            flex: 0 1 74.559%;
    max-width: 480px;
  }
  #sec-voice .voice-closing-txtbox {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    margin-top: -40px;
  }
  #sec-voice .voice-closing-check {
    padding: 48px 20px 20px;
    margin-bottom: 28px;
  }
  #sec-voice .voice-closing-check-ttl {
    font-size: 15px;
    padding: 4px 12px;
  }
  #sec-voice .voice-closing-check-item {
    font-size: 12px;
    padding-left: 20px;
    background-size: 14px;
    background-position: top 2px left;
    margin-bottom: 8px;
  }
  #sec-voice .voice-closing-txt {
    font-size: 14px;
  }
  #sec-voice .voice-closing-txt .u {
    text-underline-offset: 4px;
  }
  /** -------------------- 自己紹介 -------------------- **/
  #sec-profile {
    padding: 30px 0;
    background-size: 94.133%, 94.133%, 100%;
  }
  #sec-profile .profile-ttl {
    margin-bottom: 20px;
    display: block;
  }
  #sec-profile .profile-ttl-eng {
    font-size: 57.5px;
  }
  #sec-profile .profile-ttl-jp {
    font-size: 12px;
    margin-top: 8px;
  }
  #sec-profile .profile-sec01 {
    margin-bottom: 40px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #sec-profile .profile-sec01-imgbox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 292px;
            flex: 0 0 292px;
  }
  #sec-profile .profile-sec01-imgbox .box {
    max-width: 238px;
    margin: -40px auto 0;
    padding: 14px;
    font-size: 12px;
  }
  #sec-profile .profile-sec01-imgbox .job {
    font-size: 13px;
    padding-bottom: 8px;
    margin-bottom: 8px;
  }
  #sec-profile .profile-sec01-txtbox {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
  #sec-profile .profile-sec01-ttl {
    font-size: 16px;
    margin-bottom: 12px;
  }
  #sec-profile .profile-sec01-ttl .marker {
    padding: 2px 4px;
  }
  #sec-profile .profile-sec01-txt {
    line-height: 1.667;
    margin-bottom: 1.667em;
  }
  #sec-profile .profile-sec02 {
    margin-bottom: 32px;
  }
  #sec-profile .profile-sec02-imgbox {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
  }
  #sec-profile .profile-sec02-txtbox {
    padding: 0;
    margin: 20px 0 0;
  }
  #sec-profile .profile-sec02-ttl {
    font-size: 14px;
    margin-bottom: 16px;
  }
  #sec-profile .profile-sec03 {
    margin-bottom: 40px;
  }
  #sec-profile .profile-sec03-imgbox {
    margin: 0 -20px 20px;
  }
  #sec-profile .profile-sec03-txtbox {
    display: block;
  }
  #sec-profile .profile-sec03-ttl {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
  }
  #sec-profile .profile-sec03-ttl .marker {
    padding: 0 8px;
  }
  #sec-profile .profile-sec04 {
    margin-bottom: 30px;
  }
  #sec-profile .profile-sec04-imgbox {
    position: relative;
    left: auto;
    width: 100%;
    height: auto;
  }
  #sec-profile .profile-sec04-txtbox .box {
    max-width: 280px;
    width: 91.176%;
    margin: -36px auto 20px;
    padding: 16px 20px;
  }
  #sec-profile .profile-sec04-txtbox .sub {
    width: 76px;
    top: -8px;
    left: -16px;
  }
  #sec-profile .profile-sec04-txtbox .title {
    font-size: 14px;
    padding-bottom: 4px;
    margin-bottom: 8px;
    text-align: center;
  }
  #sec-profile .profile-sec04-txtbox .list-item {
    padding-left: 18px;
    background-size: 12px;
    margin-bottom: 10px;
  }
  #sec-profile .profile-sec05-imgbox {
    width: 100%;
    position: relative;
    right: auto;
    top: auto;
    height: auto;
  }
  #sec-profile .profile-sec05-txtbox {
    padding: 0;
    max-width: none;
    margin: 20px 0;
  }
  #sec-profile .profile-sec05-ttl {
    font-size: 16px;
    margin-bottom: 12px;
  }
  #sec-profile .profile-sec05-ttl .marker {
    padding: 0 8px;
  }
  /** -------------------- サービス紹介 -------------------- **/
  #sec-service {
    padding: 40px 0;
  }
  #sec-service .service-ttl {
    margin-bottom: 32px;
    display: block;
  }
  #sec-service .service-ttl-eng {
    font-size: 57.5px;
    line-height: 1;
  }
  #sec-service .service-ttl-jp {
    margin-top: 4px;
    font-size: 12px;
  }
  #sec-service .service-subttl {
    font-size: 25px;
    margin-bottom: 16px;
    padding-left: 28px;
  }
  #sec-service .service-subttl:before {
    right: calc(100% - 18px);
  }
  #sec-service .service-feature {
    margin-bottom: 32px;
  }
  #sec-service .service-feature-list {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 20px 0;
  }
  #sec-service .service-feature-item .text {
    font-size: 15px;
    padding: 12px;
  }
  #sec-service .service-feature-closing {
    margin-top: 32px;
    font-size: 17px;
  }
  #sec-service .service-detail-lead {
    font-size: 12px;
    letter-spacing: 0;
    margin-bottom: 28px;
  }
  #sec-service .service-detail-item {
    margin-bottom: 32px;
    display: block;
  }
  #sec-service .service-detail-item:nth-child(even) .service-detail-txtbox {
    margin-left: auto;
    margin-right: auto;
  }
  #sec-service .service-detail-txtbox {
    width: 91.176%;
    margin: -32px auto 0;
    padding: 20px;
  }
  #sec-service .service-detail-ttl {
    font-size: 16px;
    margin-bottom: 4px;
  }
  #sec-service .service-detail-ttl .marker {
    padding: 0 8px;
  }
  #sec-service .service-detail-txt {
    margin-top: 8px;
  }
  #sec-service .service-detail-point {
    padding: 12px;
    margin-top: 8px;
  }
  #sec-service .service-detail-point-item {
    font-size: 12px;
    line-height: 14px;
    padding-left: 20px;
    background-size: 14px;
  }
  #sec-service .service-detail-action {
    gap: 4px 16px;
    margin-top: 8px;
  }
  #sec-service .service-detail-action-item {
    font-size: 12px;
    line-height: 14px;
    padding-left: 20px;
    background-size: 14px;
  }
  #sec-service .service-detail-closing {
    margin-top: 32px;
    font-size: 15px;
    line-height: 1.75;
  }
  #sec-service .service-detail-closing .size_l {
    font-size: 18px;
  }
  /** -------------------- パフォーマンスケアとは -------------------- **/
  #sec-care {
    padding: 40px 0;
  }
  #sec-care .care-ttl {
    font-size: 25px;
    margin-bottom: 36px;
  }
  #sec-care .care-sec01 {
    margin: 36px 0;
  }
  #sec-care .care-sec01-img img {
    aspect-ratio: 680/300;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #sec-care .care-sec01-ttl {
    font-size: 16px;
    -webkit-transform: translateY(-18px);
            transform: translateY(-18px);
  }
  #sec-care .care-sec01-ttl .marker {
    padding: 2px 8px;
  }
  #sec-care .care-sec02 {
    margin: 0 auto 40px;
    max-width: none;
    display: block;
  }
  #sec-care .care-sec02-img img {
    aspect-ratio: 680/300;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #sec-care .care-sec02-ttl {
    font-size: 16px;
    -webkit-transform: translateY(-18px);
            transform: translateY(-18px);
    margin: 0;
  }
  #sec-care .care-sec02-ttl .marker {
    padding: 2px 8px;
  }
  #sec-care .care-sec02-summary {
    margin-top: 20px;
  }
  #sec-care .care-sec02-summary-txt {
    font-size: 12px;
  }
  #sec-care .care-sec02-check {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 24px auto;
    grid-template-columns: auto auto;
    gap: 8px 24px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 12px;
    margin-bottom: 12px;
  }
  #sec-care .care-sec02-check-item {
    font-size: 12px;
    line-height: 14px;
    padding-left: 20px;
    background-size: 14px;
  }
  #sec-care .care-sec03 {
    margin-bottom: 40px;
    padding: 28px 20px 16px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 16px;
  }
  #sec-care .care-sec03-ttl {
    font-size: 16px;
    padding: 0 12px;
  }
  #sec-care .care-sec03-txtbox {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
  #sec-care .care-sec03-check {
    padding: 12px;
    margin-bottom: 12px;
  }
  #sec-care .care-sec03-check-item {
    font-size: 12px;
    line-height: 14px;
    padding-left: 20px;
    background-size: 14px;
  }
  #sec-care .care-sec03-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    -webkit-column-gap: 4px;
       -moz-column-gap: 4px;
            column-gap: 4px;
  }
  #sec-care .care-sec04 {
    padding: 28px 20px 16px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 16px;
  }
  #sec-care .care-sec04-ttl {
    font-size: 16px;
    padding: 0 12px;
  }
  #sec-care .care-sec04-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
  #sec-care .care-sec04-img img {
    aspect-ratio: 680/300;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #sec-care .care-sec04-txtbox {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
  #sec-care .care-sec04-flow {
    padding-left: 28px;
    margin: -8px 0 20px;
  }
  #sec-care .care-sec04-flow-item {
    font-size: 12px;
    padding: 8px 0;
  }
  #sec-care .care-sec04-flow-item:before {
    top: 8px;
    left: -19px;
  }
  #sec-care .care-sec04-flow-item:after {
    width: 18px;
    height: 18px;
    left: -28px;
    top: 8px;
  }
  #sec-care .care-sec04-flow-item .size_s {
    font-size: 10px;
  }
  /** -------------------- デリバリー型パフォーマンスケア -------------------- **/
  #sec-delivery {
    padding: 32px 0;
  }
  #sec-delivery .delivery-ttl {
    font-size: 25px;
    margin-bottom: 28px;
  }
  #sec-delivery .delivery-ttl .grad {
    margin-right: 0;
  }
  #sec-delivery .delivery-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 12px;
    margin-bottom: 20px;
  }
  #sec-delivery .delivery-txtbox {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
  #sec-delivery .delivery-subttl {
    font-size: 15px;
    margin-bottom: 4px;
  }
  #sec-delivery .delivery-subttl .marker {
    padding: 0 12px;
  }
  #sec-delivery .delivery-check {
    padding: 12px;
    margin-bottom: 12px;
  }
  #sec-delivery .delivery-check-img {
    width: 100px;
    right: -8px;
    bottom: -8px;
  }
  #sec-delivery .delivery-check-item {
    font-size: 12px;
    line-height: 16px;
    padding-left: 20px;
    background-size: 16px;
    margin-bottom: 8px;
  }
  #sec-delivery .delivery-txt {
    font-size: 12px;
  }
  #sec-delivery .delivery-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  #sec-delivery .delivery-img img {
    aspect-ratio: 680/300;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #sec-delivery .delivery-closing {
    font-size: 17px;
  }
  /** -------------------- 料金について -------------------- **/
  #sec-price {
    padding: 40px 0;
  }
  #sec-price .price-ttl {
    font-size: 25px;
    margin-bottom: 36px;
  }
  #sec-price .price-box {
    padding: 20px;
  }
  #sec-price .price-box-header {
    padding-bottom: 12px;
    margin-bottom: 16px;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }
  #sec-price .price-box-header .label {
    font-size: 16px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40px;
            flex: 0 0 40px;
    padding: 3px 0 5px;
  }
  #sec-price .price-box-header .text {
    font-size: 16px;
  }
  #sec-price .price-include {
    margin-bottom: 12px;
  }
  #sec-price .price-include-item {
    font-size: 12px;
    line-height: 14px;
    padding-left: 20px;
    background-size: 14px;
    margin-bottom: 10px;
  }
  #sec-price .price-include-item .size_s {
    font-size: 10px;
    margin-left: 0;
  }
  #sec-price .price-target {
    margin: 8px 12px;
  }
  /** -------------------- 半年に一度、身体をアップデートします -------------------- **/
  #sec-update {
    padding: 40px 0;
    background-size: 70.267%, 100%;
  }
  #sec-update .update-ttl {
    font-size: 25px;
    margin-bottom: 24px;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  #sec-update .update-ttl:before, #sec-update .update-ttl:after {
    height: 40px;
  }
  #sec-update .update-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 16px;
  }
  #sec-update .update-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 254px;
            flex: 0 1 254px;
  }
  #sec-update .update-txtbox {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
  #sec-update .update-closing {
    margin: 28px 0 20px;
    font-size: 16px;
  }
  /** -------------------- よくあるご質問 -------------------- **/
  #sec-faq {
    padding: 40px 0;
  }
  #sec-faq .faq-ttl {
    display: block;
    margin-bottom: 32px;
  }
  #sec-faq .faq-ttl-eng {
    font-size: 57.5px;
  }
  #sec-faq .faq-ttl-jp {
    font-size: 12px;
    margin-top: 8px;
  }
  #sec-faq .faq-item {
    margin-bottom: 20px;
    padding: 0 16px;
  }
  #sec-faq .faq-item-q {
    padding: 12px 12px 12px 24px;
    font-size: 12px;
  }
  #sec-faq .faq-item-q:before {
    width: 18px;
    height: 18px;
    top: 13px;
    padding-bottom: 2px;
  }
  #sec-faq .faq-item-q:after {
    width: 8px;
    height: 8px;
    border-width: 2px;
    right: -4px;
  }
  #sec-faq .faq-item-a {
    padding: 12px 12px 12px 24px;
    font-size: 12px;
  }
  #sec-faq .faq-item-a:before {
    width: 18px;
    height: 18px;
    top: 13px;
    padding-bottom: 2px;
  }
  /** -------------------- 体験トレーニングのご案内 -------------------- **/
  #sec-trial {
    padding: 40px 0;
    background-size: 100%, 36px;
  }
  #sec-trial .trial-ttl {
    margin-bottom: 32px;
  }
  #sec-trial .trial-ttl-eng {
    width: 80px;
    top: -8px;
    left: 20px;
  }
  #sec-trial .trial-ttl-jp {
    font-size: 25px;
  }
  #sec-trial .trial-subttl {
    font-size: 25px;
    margin-bottom: 16px;
    padding-left: 28px;
  }
  #sec-trial .trial-subttl:before {
    bottom: auto;
    top: 0.5em;
    right: calc(100% - 18px);
  }
  #sec-trial .trial-subttl .marker {
    font-size: 16px;
    padding: 0 8px;
    margin-left: 0;
  }
  #sec-trial .trial-sec01 {
    margin-bottom: 40px;
  }
  #sec-trial .trial-sec01-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #sec-trial .trial-sec01-txtbox {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
  #sec-trial .trial-sec01-ttl {
    font-size: 16px;
    margin: -16px 0 12px;
  }
  #sec-trial .trial-sec01-ttl .marker {
    padding: 2px 12px;
  }
  #sec-trial .trial-sec01-list {
    padding: 12px;
    margin: 12px 0;
    max-width: none;
  }
  #sec-trial .trial-sec01-list:before {
    top: 2px;
    left: 2px;
  }
  #sec-trial .trial-sec01-list-item {
    font-size: 12px;
    line-height: 14px;
    padding-left: 20px;
    background-size: 14px;
    margin-bottom: 4px;
  }
  #sec-trial .trial-sec01-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  #sec-trial .trial-sec01-img img {
    aspect-ratio: 680/300;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #sec-trial .trial-sec02 {
    margin: 40px 0;
  }
  #sec-trial .trial-sec02-lead {
    margin-bottom: 28px;
    font-size: 14px;
  }
  #sec-trial .trial-sec02-box {
    padding: 32px 20px 20px;
    margin-bottom: 32px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 20px;
  }
  #sec-trial .trial-sec02-ttl {
    font-size: 16px;
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
    padding: 6px 10px;
  }
  #sec-trial .trial-sec02-ttl .label {
    font-size: 12px;
    padding: 0 6px 2px;
  }
  #sec-trial .trial-sec02-txtbox {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
  #sec-trial .trial-sec02-check {
    margin-bottom: 12px;
    padding: 12px;
  }
  #sec-trial .trial-sec02-check-item {
    font-size: 12px;
    line-height: 14px;
    padding-left: 20px;
    background-size: 14px;
    background-position: top left;
  }
  #sec-trial .trial-sec02-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  #sec-trial .trial-sec02-img img {
    aspect-ratio: 680/300;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #sec-trial .trial-point {
    margin: 40px auto;
    padding: 28px 20px 16px;
  }
  #sec-trial .trial-point-img {
    width: 76px;
    top: -10px;
    left: -6px;
  }
  #sec-trial .trial-point-ttl {
    font-size: 20px;
    margin-bottom: 16px;
  }
  #sec-trial .trial-point-list {
    margin: 12px 0;
    padding: 12px;
  }
  #sec-trial .trial-point-list:before {
    left: 2px;
    top: 2px;
  }
  #sec-trial .trial-point-list-item {
    font-size: 12px;
    line-height: 14px;
    padding-left: 20px;
    background-size: 14px;
    margin-bottom: 8px;
  }
  #sec-trial .trial-sec03-box {
    margin: 32px auto 0;
    padding: 32px 20px 10px;
  }
  #sec-trial .trial-sec03-box-ttl {
    font-size: 18px;
    width: 90%;
  }
  #sec-trial .trial-sec03-price {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    padding-bottom: 12px;
    margin-bottom: 8px;
  }
  #sec-trial .trial-sec03-price .label {
    font-size: 14px;
    padding: 2px 5px 4px;
  }
  #sec-trial .trial-sec03-price .spacer {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    height: 8px;
  }
  #sec-trial .trial-sec03-price .regular {
    font-size: 14px;
  }
  #sec-trial .trial-sec03-price .arrow {
    width: 18px;
  }
  #sec-trial .trial-sec03-price .arrow:before {
    border-width: 3px 0 3px 6px;
  }
  #sec-trial .trial-sec03-price .first {
    font-size: 18px;
  }
  #sec-trial .trial-sec03-detail-label {
    padding: 4px 12px 4px 0;
    -webkit-column-gap: 4px;
       -moz-column-gap: 4px;
            column-gap: 4px;
  }
  #sec-trial .trial-sec03-detail-label img {
    width: 12px;
  }
  #sec-trial .trial-sec03-detail-txt {
    padding: 4px 0;
  }
  #sec-trial .trial-sec03-closing {
    margin-top: 16px;
    padding: 16px 12px;
  }
  #sec-trial .trial-sec03-closing-txt {
    margin-bottom: 4px;
    font-size: 11px;
  }
  #sec-trial .trial-sec03-closing-txt .size_l {
    font-size: 14px;
  }
  /** -------------------- CTA02 -------------------- **/
  .cta02 {
    padding: 40px 0;
    background-size: 70.267%, 100%;
  }
  .cta02 .cta02-lead {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.4;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .cta02 .cta02-lead:before, .cta02 .cta02-lead:after {
    width: 1px;
    height: 24px;
  }
  .cta02 .cta02-ttl {
    font-size: 17px;
    margin-bottom: 20px;
  }
  .cta02 .cta02-txt {
    margin-bottom: 20px;
  }
  /** -------------------- フォーム -------------------- **/
  #form {
    padding: 40px 0;
  }
  #form .form-ttl {
    margin-bottom: 24px;
    font-size: 18px;
  }
  #form .form-notice {
    margin-bottom: 20px;
    padding: 12px;
  }
  #form .form-notice:before {
    left: 2px;
    top: 2px;
  }
  #form .form-notice-ttl {
    font-size: 16px;
    margin-bottom: 8px;
  }
  #form .form-notice-sub {
    margin-top: 4px;
    font-size: 10px;
  }
  #form .form-container {
    padding: 12px;
  }
  #form .form-input {
    margin: 0 auto 20px;
  }
  #form .form-input .req, #form .form-input .any {
    font-size: 10px;
  }
  #form .form-input-label {
    padding: 12px 0 8px;
    font-size: 14px;
  }
  #form .form-input-item {
    padding-bottom: 12px;
  }
  #form .form-input-item .note {
    font-size: 10px;
    margin-top: 4px;
  }
  #form .form-input-time {
    padding: 12px 0 0 16px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4px 8px;
  }
  #form .form-input-time-label {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    margin-right: 0;
  }
  #form .form-input-time-label .req, #form .form-input-time-label .any {
    margin-left: 4px;
  }
  #form .form-input-time-items {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }
  #form .form-input-check {
    padding-left: 16px;
    gap: 8px 16px;
  }
  #form .form-input input[type=text], #form .form-input input[type=email], #form .form-input input[type=tel] {
    font-size: 16px;
    padding: 12px;
  }
  #form .form-input input[type=checkbox] {
    margin: 0 6px 0 0;
  }
  #form .form-input textarea {
    font-size: 16px;
    padding: 12px;
  }
  #form .form-input select {
    font-size: 16px;
    padding: 12px;
    background-position: right 8px center;
    background-size: 8px;
  }
  #form .form-btn {
    font-size: 18px;
  }
}
/* ==========================================
	CONFIRM
 ============================================ */
body#confirm {
  background: #edf4f9;
}

#sec-confirm {
  padding: 110px 0;
}
#sec-confirm .confirm-ttl {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 15px;
}
#sec-confirm .confirm-lead {
  font-size: 20px;
  margin-bottom: 40px;
}
#sec-confirm .confirm-container {
  background: var(--c_wht);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
          box-shadow: 0px 0px 5px 0px rgba(83, 99, 122, 0.2);
  padding: 20px;
}
#sec-confirm .form-input {
  max-width: 640px;
  margin: 0 auto 40px;
}
#sec-confirm .form-input .req, #sec-confirm .form-input .any {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  background: #c1272d;
  color: var(--c_wht);
  padding: 3px 5px;
}
#sec-confirm .form-input .any {
  background: var(--c_text);
}
#sec-confirm .form-input-label {
  padding: 20px 0 12px;
  font-weight: 700;
  line-height: 1;
}
#sec-confirm .form-input-label .req, #sec-confirm .form-input-label .any {
  margin-right: 8px;
}
#sec-confirm .form-input-item {
  padding-bottom: 20px;
  border-bottom: 1px solid #edf4f9;
}
#sec-confirm .form-input-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
#sec-confirm .form-input-item .note {
  display: block;
  font-size: 15px;
  margin-top: 8px;
}
#sec-confirm .form-input-time {
  padding: 20px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#sec-confirm .form-input-time-label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 700;
  margin-right: 30px;
}
#sec-confirm .form-input-time-label .req, #sec-confirm .form-input-time-label .any {
  margin-left: 8px;
}
#sec-confirm .form-input-time-items {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 22px;
     -moz-column-gap: 22px;
          column-gap: 22px;
}
#sec-confirm .form-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  background: var(--c_orange);
  color: var(--c_wht);
  border: 0;
  font-family: var(--font_ja);
  font-size: 20px;
  font-weight: 900;
  position: relative;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
  padding: 14px;
  -webkit-transition: var(--anim);
  transition: var(--anim);
}
#sec-confirm .form-btn:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent currentColor;
  position: absolute;
  right: 24px;
  top: 0;
  bottom: 0;
  margin: auto;
}
#sec-confirm .form-btn:hover {
  -webkit-filter: brightness(125%);
          filter: brightness(125%);
}
#sec-confirm .form-btn--back {
  background: var(--c_text);
  margin-top: 12px;
}
#sec-confirm .form-btn--back:after {
  right: auto;
  left: 24px;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
#sec-confirm .form-btn--back:hover {
  -webkit-filter: brightness(150%);
          filter: brightness(150%);
}

/* スマホ
  ------------------------ */
@media (max-width: 979px) {
  #sec-confirm {
    padding: 40px 0;
  }
  #sec-confirm .confirm-ttl {
    font-size: 20px;
  }
  #sec-confirm .confirm-lead {
    font-size: 14px;
    margin-bottom: 20px;
  }
  #sec-confirm .confirm-container {
    padding: 12px;
  }
  #sec-confirm .form-input {
    margin: 0 auto 20px;
  }
  #sec-confirm .form-input .req, #sec-confirm .form-input .any {
    font-size: 10px;
  }
  #sec-confirm .form-input-label {
    padding: 12px 0 8px;
    font-size: 14px;
  }
  #sec-confirm .form-input-item {
    padding-bottom: 12px;
  }
  #sec-confirm .form-input-item .note {
    font-size: 10px;
    margin-top: 4px;
  }
  #sec-confirm .form-input-time {
    padding: 12px 0 0 0;
    gap: 4px 8px;
  }
  #sec-confirm .form-input-time-label {
    margin-right: 12px;
  }
  #sec-confirm .form-input-time-label .req, #sec-confirm .form-input-time-label .any {
    margin-left: 4px;
  }
  #sec-confirm .form-input-time-items {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }
  #sec-confirm .form-btn {
    font-size: 18px;
  }
}
/* ==========================================
	THANKS
 ============================================ */
body#thanks {
  background: #edf4f9;
}

#sec-thanks {
  padding: 110px 0;
}
#sec-thanks .thanks-ttl {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 25px;
}
#sec-thanks .thanks-txt {
  font-size: 20px;
  line-height: 1.5;
}
#sec-thanks .thanks-txt p + p {
  margin-top: 1.5em;
}
#sec-thanks .thanks-back {
  margin-top: 48px;
}
#sec-thanks .thanks-back-btn {
  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;
  font-size: 20px;
  max-width: 360px;
  height: 59px;
  margin: 0 auto;
  background: var(--c_text);
  color: var(--c_wht);
  border-radius: 3px;
  position: relative;
}
#sec-thanks .thanks-back-btn:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent currentColor;
  position: absolute;
  right: 26px;
  top: 0;
  bottom: 0;
  margin: auto;
}
#sec-thanks .thanks-back-btn:hover {
  opacity: 1;
  -webkit-filter: brightness(125%);
          filter: brightness(125%);
}

/* スマホ
  ------------------------ */
@media (max-width: 979px) {
  #sec-thanks {
    padding: 60px 0 100px;
  }
  #sec-thanks .thanks-ttl {
    font-size: 20px;
  }
  #sec-thanks .thanks-txt {
    font-size: 14px;
  }
  #sec-thanks .thanks-back {
    margin-top: 32px;
  }
  #sec-thanks .thanks-back-btn {
    width: 300px;
    height: 44px;
    font-size: 15px;
  }
  #sec-thanks .thanks-back-btn:after {
    right: 20px;
  }
}