@charset "UTF-8";

:root {
  --main-color: #06426a;
  --main-color-dark: #161d38;
  --main-color-font: #313c67;
  --main-color-strong: #0052a0;
  --main-color-bright: #0075be;
  --emphasis-color: #b78b04;
  --deco-color: #d0b871;
}

/* ---------------------------------------common set */

/* -------------------------
   共通設定
------------------------- */
html {
  font-size: 1px; /* PC基準: 1rem = 1px */
  overscroll-behavior: none;
  scroll-behavior: smooth;
}

/* -------------------------
   スマホ（〜767px）
   → 375px幅を基準に拡大
------------------------- */
@media (max-width: 767px) {
  html {
    font-size: calc(100vw / 375);
  }
}

/* -------------------------
   タブレット（768〜1100px）
   → デザイン幅1100px基準で縮小
------------------------- */
@media (min-width: 768px) and (max-width: 1100px) {
  html {
    font-size: calc(100vw / 1100);
  }
}

/* CSS STYLE */
html {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans JP", sans-serif;
}
body {
  font-size: 16rem;
  font-weight: 500;
  line-height: 1.8;
}
@media only screen and (max-width: 959px) {
  body {
    font-size: 13rem;
  }
}

/* スクロール位置対策 */
[id] {
  scroll-margin-top: 80rem;
}

@media (max-width: 767px) {
  [id] {
    scroll-margin-top: 67rem;
  }
}

a,
a img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none;
}
a:hover img {
  opacity: 0.7;
}
img {
  width: 100%;
  height: auto;
}
iframe {
  vertical-align: bottom;
}
.cb {
  clear: both;
}
.pcnone {
  display: none !important;
}
.nolink {
  pointer-events: none;
  color: #999 !important;
}
/* line */
.line {
  display: block;
}
.pc-line {
  display: block;
}
.sp-line {
  display: inline;
}
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}
@media only screen and (max-width: 767px) {
  .pc-line {
    display: inline;
  }
  .sp-line {
    display: block;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
.anchor {
  padding-top: 80rem;
  margin-top: -80rem;
}

/* PARTS */
#contents {
  padding-top: 80rem;
  overflow: hidden;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  #contents {
    padding-top: 67rem;
  }
}
.inner {
  position: relative;
  width: min(calc(100% - 40rem), 1100rem);
  margin: auto;
}

.btn {
  text-align: center;
}
a.btn {
  position: relative;
  top: 0;
  left: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 464rem;
  height: 78rem;
  padding: 0 20rem;
  font-size: 24rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  color: #fff;
}
a.btn:hover {
  transform: translateY(2rem);
  box-shadow: none;
}
a.btn.ic-mail::before {
  display: inline-block;
  margin-right: 8rem;
  content: "";
  width: 32rem;
  height: 32rem;
  background: url("../img/ic-mail.svg") center no-repeat;
  background-size: cover;
}
a.btn.ic-speech-bubble::before {
  display: inline-block;
  margin-right: 8rem;
  content: "";
  width: 32rem;
  height: 32rem;
  background: url("../img/ic-speech-bubble.svg") center no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  a.btn.ic-mail::before {
    display: inline-block;
    margin-right: 8rem;
    content: "";
    width: 24rem;
    height: 24rem;
    background: url("../img/ic-mail.svg") center no-repeat;
    background-size: cover;
  }
}
a.btn.medium {
  width: 387rem;
  height: auto;
  padding: 20rem 0 24rem;
  font-size: 22rem;
  background: var(--emphasis-color);
  box-shadow: -4rem -4rem 0 0 rgba(0, 0, 0, 0.25) inset;
  border-radius: 0;
  position: relative;
  border-radius: 4rem;
}
a.btn.medium.large {
  width: 440rem;
  height: 74rem;
  font-size: 20rem;
}
a.btn.medium::after {
  display: inline-block;
  content: "";
  width: 21rem;
  height: 12rem;
  background: url("../img/arrow-right.svg") center no-repeat;
  background-size: contain;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 30rem;
}
a.btn.medium:hover {
  box-shadow: -2rem -2rem 0 0 rgba(0, 0, 0, 0.25) inset;
}
a.btn.medium:hover:after {
  content: "";
  -webkit-transform: translate(5rem, 0);
  transform: translate(5rem, 0);
}
a.btn.small {
  width: 220rem;
  height: 44rem;
  font-size: 16rem;
  border-radius: 4rem;
  box-shadow: -4rem -4rem 0 0 rgba(0, 0, 0, 0.25) inset;
  letter-spacing: 0.05em;
}
a.btn.small:hover {
  box-shadow: none;
}
a.btn.small.contact {
  background: var(--emphasis-color);
}
a.btn.small.contact::before {
  display: inline-block;
  margin-right: 10rem;
  content: "";
  width: 22rem;
  height: 21rem;
  background: url("../img/ic-mail.svg") center no-repeat;
  background-size: contain;
}
a.btn.small.document {
  background: var(--main-color-bright);
}
a.btn.small.document::before {
  display: inline-block;
  margin-right: 10rem;
  content: "";
  width: 15rem;
  height: 18rem;
  background: url("../img/ic-document.svg") center no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  a.btn.small.contact::before,
  a.btn.small.document::before {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  a.btn {
    border-radius: 40vw;
    width: 80vw;
    max-width: 100%;
    height: 48rem;
    padding: 0 2rem;
    font-size: 18rem;
  }
  a.btn.medium {
    width: 88%;
    height: 42rem;
    font-size: 14rem;
  }
  a.btn.medium.large {
    width: 100%;
    height: 52rem;
    font-size: 14rem;
  }
  a.btn.medium.large::after {
    right: 15rem;
    width: 16rem;
  }
  a.btn.small {
    width: 48rem;
    height: 48rem;
    font-size: 10rem;
    border-radius: 4rem;
    padding: 1rem 4rem;
    letter-spacing: 1rem;
    line-height: 1.2;
  }
  a.btn.small::after,
  a.btn.small:hover::after {
    content: none;
  }
}
.emphasis {
  color: var(--main-color-font);
  font-weight: 600;
}
.big {
  font-size: 112.5%;
}
.sml {
  font-size: 87.5%;
  line-height: 2.1;
}
.notes {
  font-size: 13rem;
  font-weight: 400;
  color: #707070;
}
.fade {
  opacity: 0;
  -webkit-transition: 0.6s linear;
  transition: 0.6s linear;
}
.fade.active {
  opacity: 1;
}
.fade-l {
  position: relative;
  opacity: 0;
  -webkit-transform: translate(-20rem, 0);
  transform: translate(-20rem, 0);
  -webkit-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
}
.fade-l.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.fade-r {
  position: relative;
  opacity: 0;
  -webkit-transform: translate(20rem, 0);
  transform: translate(20rem, 0);
  -webkit-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
}
.fade-r.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.fade-t {
  position: relative;
  opacity: 0;
  -webkit-transform: translate(0, -20rem);
  transform: translate(0, -20rem);
  -webkit-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
}
.fade-t.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.fade-b {
  position: relative;
  opacity: 0;
  -webkit-transform: translate(0, 20rem);
  transform: translate(0, 20rem);
  -webkit-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
}
.fade-b.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.fade-w {
  -webkit-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
  opacity: 0;
}
.fade-z {
  -webkit-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
  -webkit-transform: scale(0.95, 0.95);
  transform: scale(0.95, 0.95);
  opacity: 0;
}
.fade-w.active,
.fade-z.active {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
}
/* HELPER */
.hp_mbm {
  margin-bottom: 24rem;
}
@media only screen and (max-width: 767px) {
  .hp_mbm {
    margin-bottom: 1.6rem;
  }
}
.hp_underline {
  background: linear-gradient(transparent 80%, #ffd3da 80%);
}
/* -------------------------------------------------------------------------- HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 80rem;
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
  z-index: 10000;
}
header .header-top {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  width: 100%;
  height: 80rem;
  padding: 6rem 50rem 0 50rem;
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
  z-index: 1;
  background: #fff url(../img/header-line.webp) center top repeat-x;
  background-size: 1500rem;
  box-shadow: 8rem 0 12rem rgba(0, 0, 0, 0.25);
}
header.active .header-top {
  position: absolute;
  top: 0rem;
  left: 0;
  height: 80rem;
}
@media only screen and (max-width: 1140px) {
  header .header-top {
    padding: 0 24rem;
  }
}
header.active.hide {
  top: -80rem;
  height: 0;
}
header.active .header-top {
  top: 0rem;
  height: 80rem;
}
header .header-top .menu-logo {
  width: 240rem;
  font-size: 0;
}
header .header-top .menu-btn-unit {
  display: flex;
  column-gap: 26rem;
}
@media only screen and (max-width: 767px) {
  /* HEADER sp*/
  header {
    height: 67rem;
    z-index: 100000;
  }
  header .header-top {
    height: 67rem;
    padding: 6rem 20rem 6rem 20rem;
    background: #fff url(../img/header-line.webp) center top repeat-x;
    background-size: 1500rem;
    box-shadow: 8rem 0 8rem rgba(0, 0, 0, 0.25);
  }
  header.active .header-top {
    position: absolute;
    top: 0;
    left: 0;
    height: 67rem;
  }
  header.active {
    box-shadow: 0 2rem 2rem rgba(0, 0, 0, 0.15);
  }
  header.hide {
    box-shadow: none;
  }
  header.hide .header-top {
    top: -70rem;
  }

  header .header-top .menu-logo {
    width: 160rem;
    font-size: 0;
  }
  header .header-top .menu-btn-unit {
    column-gap: 10rem;
    padding-top: 5rem;
  }
  header .header-top .menu-btn-unit li {
    display: block;
  }
}
/* -------------------------------------------------------------------------- FOOTER */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  border-top: 1rem solid #e6e6e6;
  background-color: #fff;
  width: 100%;
  padding: 20rem 50rem 30rem 50rem;
  z-index: 2;
}
footer .logo {
  display: flex;
  align-items: flex-end;
  font-size: 10rem;
  letter-spacing: 0.7rem;
  line-height: 1.4;
  color: #848484;
}
footer .logo img {
  width: 120rem;
  margin-right: 20rem;
}
footer .gft-cybertrust {
  width: 100rem;
  height: 72rem;
}
#gotop {
  position: fixed;
  right: 20rem;
  bottom: 20rem;
  width: 48rem;
  height: 48rem;
  z-index: 10001;
}
#gotop a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #4a809e;
  width: 100%;
  height: 100%;
  text-align: center;
}
#gotop a::before {
  content: "";
  display: inline-block;
  width: 15rem;
  aspect-ratio: 5 / 8;
  background: url(../img/arrow-up.svg) center no-repeat;
  background-size: 100% auto;
}
#gotop a:hover {
  background-color: var(--main-color-dark);
}
@media only screen and (max-width: 767px) {
  footer {
    padding: 35rem 20rem 45rem 20rem;
  }
  footer .logo {
    font-size: 9rem;
    line-height: 1.2;
    flex-direction: column;
    align-items: flex-start;
  }
  footer .logo img {
    display: block;
    margin-bottom: 1.5rem;
    margin-right: auto;
  }
  footer .gft-cybertrust {
    width: 100rem;
    height: 72rem;
  }
  #gotop {
    right: 20rem;
    bottom: 20rem;
  }
}
/* -------------------------------------------------------------------------- LP */
.sp-menu {
  display: none;
}
@media only screen and (max-width: 767px) {
  .sp-menu {
    position: fixed;
    top: -4rem;
    left: 0;
    width: 100%;
    height: 4rem;
    z-index: 2;
    display: none;
  }
  .sp-menu .sp-fixed {
    position: fixed;
    top: -4rem;
    left: 0;
    background-color: #eef6ff;
    width: 100%;
    height: 4rem;
    -webkit-transition: 0.4s ease-out;
    transition: 0.4s ease-out;
  }
  .sp-menu.active .sp-fixed {
    position: fixed;
    top: 6.2rem;
    left: 0;
  }
  .sp-menu.active.move .sp-fixed {
    top: calc(6rem + 0.7rem);
    top: 6.2rem;
  }
  .sp-menu ul {
    display: flex;
    position: relative;
    background-color: #eef6ff;
    width: 100%;
    height: 4rem;
    font-size: 1.2rem;
    font-weight: 700;
  }
  .sp-menu ul li {
    border-right: 1rem solid #cfddec;
    width: 100%;
  }
  .sp-menu ul li:last-child {
    border-right: none;
  }
  .sp-menu ul a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: var(--main-color);
  }
}
/* -------------------------------------------------------------------------- MODULE */
.el_caption {
  font-size: 10rem;
  font-weight: 300;
}
.el_caption__w {
  font-size: 8rem;
  color: white;
  font-weight: 400;
}
.el_caption__right {
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .el_caption {
    font-size: 10rem;
  }

  .el_caption__w {
    font-size: 10rem;
  }
}
.section-title {
  text-align: center;
  font-size: 44rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75em;
}
.section-title .sub {
  display: block;
  font-size: 22rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.6em;
}
.section-title .dots {
  position: relative;
  color: var(--main-color-font);
}
.section-title .dots::before {
  content: "";
  width: 8rem;
  height: 8rem;
  border-radius: 4rem;
  background: var(--main-color-font);
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -4rem;
}
@media only screen and (max-width: 767px) {
  .section-title {
    font-size: 20rem;
  }
  .section-title .sub {
    font-size: 13rem;
    margin-bottom: 4rem;
  }
  .section-title .dots::before {
    content: "";
    width: 5rem;
    height: 5rem;
    border-radius: 4rem;
    background: var(--main-color-font);
    position: absolute;
    top: -2rem;
    left: 50%;
    margin-left: -2.5rem;
  }
}
/* cv-block */
.cv-block {
  background: url("../img/cv-bg.webp") center no-repeat;
  background-size: cover;
  padding: 80rem 0;
}
.cv-block-inner {
  position: relative;
  width: min(calc(100% - 40rem), 890rem);
  background: var(--main-color);
  text-align: center;
  color: #ffffff;
  margin: 0 auto;
  padding: 40rem;
}
.cv-block h3 {
  position: relative;
  display: inline-block;
  text-align: center;
  color: #ffffff;
  font-size: 20rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2em;
  margin-bottom: 24rem;
}
.btn-box {
  text-align: center;
}
.cv-block .caption {
  position: absolute;
  right: 0;
  bottom: -40rem;
}
@media only screen and (max-width: 767px) {
  .cv-block {
    padding: 48rem 0 60rem 0;
  }
  .cv-block-inner {
    padding: 30rem 20rem;
  }
  .cv-block h3 {
    font-size: 14rem;
  }
  .cv-block h3 br.sp {
    display: block;
  }
  .cv-block h3 span.cv-emphasis {
    font-size: 20rem;
  }
  .cv-block .caption {
    bottom: -28rem;
  }
}
/* section-header */
.section-header {
  text-align: center;
  margin-bottom: 50rem;
}
.section-header h2 {
  margin-bottom: 24rem;
}
.section-header p {
  font-size: 18rem;
}

@media only screen and (max-width: 767px) {
  .section-header p {
    font-size: 13rem;
  }
}
/* -------------------------------------------------------------------------- MENU */
.main-menu {
  position: relative;
  width: 100%;
  height: 70rem;
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
  z-index: 10001;
}
.main-menu .menu-fixed {
  background-color: var(--main-color-dark);
  width: 100%;
  height: 70rem;
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
  z-index: 10001;
  border-bottom: solid 1rem #cecce3;
}
.main-menu.active .menu-fixed {
  position: fixed;
  top: 80rem;
  left: 0;
}
.main-menu.active.move .menu-fixed {
  top: 80rem;
}
.main-menu ul {
  display: flex;
  position: relative;
  width: 100%;
  max-width: 1100rem;
  height: 70rem;
  margin: 0 auto;
}
.main-menu ul li {
  position: relative;
  width: 25%;
  height: 70rem;
  font-size: 14rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}
.main-menu ul li .small {
  display: block;
  font-size: 11rem;
}
.main-menu ul li:before,
.main-menu ul li:after {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  height: 100%;
}
.main-menu ul li:before {
  left: 0;
  border-left: 1rem solid #5e6682;
}
.main-menu ul li:last-child:after {
  right: 0;
  border-right: 1rem solid #5e6682;
}
.main-menu a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10rem;
  color: #fff;
  letter-spacing: 0.05em;
}
.main-menu a:hover,
.main-menu a.is-active {
  background-color: var(--main-color);
  color: white;
}
.main-menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4rem;
  width: 12rem;
  height: 7rem;
  margin-left: -6rem;
  background: url("../img/arrow-down.svg") bottom center no-repeat;
  opacity: 0;
  background-size: contain;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.main-menu a:hover:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 12rem;
  height: 7rem;
  margin-left: -6rem;
  background: url("../img/arrow-down_w.svg") bottom center no-repeat;
  background-size: contain;
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .main-menu {
    width: 100%;
    height: auto;
  }
  .main-menu .menu-fixed {
    height: auto;
  }
  .main-menu.active .menu-fixed {
    position: fixed;
    top: 67rem; /* SP時のheaderの高さ分下に配置 */
  }
  .main-menu.active.move .menu-fixed {
    top: 67rem; /* SP時のheaderの高さ分下に配置 */
  }
  .main-menu ul {
    width: 100%;
    display: block;
    height: auto;
    border-top: 1rem solid #5e6682;
  }
  .main-menu ul li {
    border-bottom: 1rem solid #5e6682;
    width: 100%;
    height: auto;
    font-size: 14rem;
    line-height: 1.2;
    text-align: center;
  }
  .main-menu ul li .small {
    display: inline;
    margin-right: 1em;
  }
  .main-menu ul li:before {
    border-left: none;
  }
  .main-menu ul li:last-child:after {
    border-right: none;
  }
  .main-menu ul li:last-child {
    border-bottom: none;
  }
  .main-menu a {
    display: block;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 13rem 28rem 13rem 13rem;
  }
  .main-menu a::after {
    content: "";
    position: absolute;
    left: auto;
    right: 10rem;
    bottom: 50%;
    width: 12rem;
    height: 7rem;
    margin-left: 0;
    margin-bottom: -3.5rem;
    background: url("../img/arrow-down_w.svg") bottom center no-repeat;
    background-size: contain;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    opacity: 1;
  }
  .main-menu a:hover:after {
    content: "";
    position: absolute;
    left: auto;
    right: 10rem;
    bottom: 40%;
    width: 12rem;
    height: 7rem;
    margin-left: 0;
    margin-bottom: -3.5rem;
    background: url("../img/arrow-down_w.svg") bottom center no-repeat;
    background-size: contain;
  }
}
/* -------------------------------------------------------------------------- MAIN AREA */
#main-area {
  background: url("../img/main-bg-pc.webp") center no-repeat var(--main-color);
  background-size: 1600rem auto;
  height: 575rem;
}
#main-area .inner {
  position: relative;
  padding-top: 47rem;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  flex-direction: row-reverse;
}
#main-area .emblems {
  display: flex;
  justify-content: space-between;
  max-width: 460rem;
  margin-left: 60rem;
}
#main-area .emblems li {
  width: 50%;
}
#main-area .main-area-txt {
  max-width: 440rem;
  text-align: center;
}
#main-area .page-title {
  color: #fff;
  padding-bottom: 22rem;
}
#main-area .page-title span {
  display: block;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3em;
}
#main-area .page-title .sub {
  font-size: 20rem;
}
#main-area .page-title .main {
  font-size: 40rem;
}
#main-area .page-title img {
  display: block;
  margin: 22rem 0;
}
#main-area .page-title .line {
  font-size: 22rem;
  padding: 6rem 0;
  border-top: #fff 1px solid;
  border-bottom: #fff 1px solid;
}
#main-area p {
  color: #fff;
  font-size: 18rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2em;
}
#main-area .cv-unit {
  padding-top: 22rem;
}
#main-area p.el_caption__w {
  font-size: 10rem;
  line-height: 2em;
  font-weight: 400;
  position: absolute;
  left: 0;
  bottom: 17rem;
}
@media only screen and (max-width: 767px) {
  #main-area {
    background: url("../img/main-bg-sp.webp") center bottom no-repeat
      var(--main-color);
    background-size: 100% auto;
    height: 700rem;
  }
  #main-area .inner {
    padding: 25rem 20rem 0 20rem;
    max-width: 100%;
    height: 100%;
    display: block;
  }
  #main-area .emblems {
    margin-left: 0;
    padding-bottom: 15rem;
  }
  #main-area .emblems li {
    width: 50%;
  }
  #main-area .page-title {
    padding-bottom: 14rem;
  }
  #main-area .page-title .sub {
    font-size: 14rem;
  }
  #main-area .page-title .main {
    font-size: 26rem;
  }
  #main-area .page-title img {
    margin: 14rem 0;
  }
  #main-area .page-title .line {
    font-size: 14rem;
    padding: 5rem 0;
  }
  #main-area p {
    font-size: 12rem;
  }
  #main-area .cv-unit {
    padding-top: 14rem;
  }
  #main-area p.el_caption__w {
    padding: 0 17rem 1em;
    font-size: 8rem;
  }
}

/* -------------------------------------------------------------------------- MAIN AREA _logo*/
#main-area_logo {
  background: url("../img/main-bg-pc_b.webp") center no-repeat var(--main-color);
  background-size: 1900rem auto;
  height: 575rem;
}
#main-area_logo .inner {
  position: relative;
  padding: 46rem 0;
  height: 100%;
  display: flex;
  justify-content: space-between;
}

#main-area_logo .main-area-txt {
  max-width: 444rem;
  text-align: center;
  padding: 20rem 20rem 0 0;
}
@media only screen and (max-width: 1148px) {
  #main-area_logo .main-area-txt {
    padding: 20rem 20rem 0 4rem;
  }
}
#main-area_logo .page-title {
  color: #fff;
  padding-bottom: 22rem;
}
#main-area_logo .page-title span {
  display: block;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5em;
}
#main-area_logo .page-title .sub {
  font-size: 20rem;
}
#main-area_logo .page-title .main {
  font-size: 40rem;
}
#main-area_logo .page-title img {
  display: block;
  margin: 14rem 0 22rem 0;
}
#main-area_logo .page-title .line {
  font-size: 22rem;
  padding: 6rem 0;
  border-top: #fff 1px solid;
  border-bottom: #fff 1px solid;
}
#main-area_logo p {
  color: #fff;
  font-size: 18rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2em;
}
#main-area_logo .cv-unit {
  padding-top: 22rem;
}
#main-area_logo p.el_caption__w {
  font-size: 10rem;
  line-height: 2em;
  font-weight: 400;
  position: absolute;
  left: 0;
  bottom: 17rem;
}
#main-area_logo .main-area_logo-container {
  background: #ffffff;
  width: calc(100% - 464rem);
  border-radius: 8rem;
  padding: 20rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 1148px) {
  #main-area_logo .main-area_logo-container {
    width: calc(100% - 444rem);
  }
}
#main-area_logo .main-area_logo-container .emblems {
  display: flex;
  justify-content: center;
  margin-bottom: 8rem;
  column-gap: 40rem;
}
#main-area_logo .main-area_logo-container .emblems li {
  width: 190rem;
  display: block;
}

#main-area_logo .main-area_logo-container ul.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 6rem;
  padding: 6rem;
  width: 600rem;
  margin: 10rem auto;
}

#main-area_logo .main-area_logo-container ul.logos li {
  opacity: 0;
  animation: flipIn 0.6s ease-out forwards;
  animation-delay: calc(var(--i) * 0.1s);
  display: inline-block;
  max-width: auto;
}
#main-area_logo .main-area_logo-container ul.logos li img {
  height: 72rem;
  width: auto;
}

@media only screen and (max-width: 1148px) {
  #main-area_logo .main-area_logo-container ul.logos {
    width: 580rem;
    gap: 6rem 6rem;
  }
  #main-area_logo .main-area_logo-container ul.logos li img {
    height: 68rem;
    width: auto;
  }
}

@keyframes flipIn {
  0% {
    opacity: 0;
    transform: rotateX(-90deg); /* 上に90度倒れた状態 */
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg); /* 正面を向いた状態 */
  }
}
#main-area_logo .main-area_logo-container .logo-container_captions {
  padding: 0 24rem 8rem 24rem;
}
@media only screen and (max-width: 1148px) {
  #main-area_logo .main-area_logo-container .logo-container_captions {
    padding: 0 4rem 8rem 10rem;
  }
}

#main-area_logo .main-area_logo-container .el_caption {
  font-size: 10rem;
  color: #000000;
  font-weight: 300;
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  #main-area_logo .main-area-txt {
    padding: 20rem 20rem 0 20rem;
  }
  #main-area_logo {
    background: url("../img/main-bg-sp_b.webp") center bottom no-repeat
      var(--main-color);
    background-size: 100% auto;
    height: 720rem;
  }
  #main-area_logo .inner {
    padding: 16rem 0 24rem 0;
    max-width: 100%;
    height: 100%;
    flex-direction: column;
  }

  #main-area_logo .page-title {
    padding-bottom: 14rem;
  }
  #main-area_logo .page-title .sub {
    font-size: 14rem;
  }
  #main-area_logo .page-title .main {
    font-size: 26rem;
  }
  #main-area_logo .page-title img {
    margin: 14rem 0;
  }
  #main-area_logo .page-title .line {
    font-size: 14rem;
    padding: 5rem 0;
  }
  #main-area_logo p {
    font-size: 12rem;
  }
  #main-area_logo .cv-unit {
    padding-top: 14rem;
  }
  #main-area_logo p.el_caption__w {
    padding: 0 17rem 1em;
    font-size: 8rem;
  }
  #main-area_logo .main-area_logo-container {
    width: 100%;
    padding: 16rem 6rem;
  }
  #main-area_logo .main-area_logo-container .emblems {
    margin-bottom: 8rem;
    padding: 0 32rem;
    column-gap: 32rem;
  }
  #main-area_logo .main-area_logo-container .emblems li {
    width: auto;
    display: block;
  }
  #main-area_logo .main-area_logo-container ul.logos {
    gap: 4rem;
  }
  #main-area_logo .main-area_logo-container ul.logos {
    width: 100%;
  }
  #main-area_logo .main-area_logo-container ul li {
    width: auto;
  }
  #main-area_logo .main-area_logo-container ul.logos li img {
    height: 37rem;
    width: auto;
  }
  #main-area_logo .main-area_logo-container .logo-container_captions {
    padding: 4rem 8rem;
  }
  #main-area_logo .main-area_logo-container .el_caption {
    font-size: 8rem;
  }
}

.bnr-area {
  padding-top: 40rem;
  padding-bottom: 5rem;
  width: min(calc(100% - 40rem), 810rem);
  margin: auto;
}
.bnr-area ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.bnr-area ul li {
  display: block;
  width: 17.8%;
  margin-bottom: 20rem;
}
@media only screen and (max-width: 767px) {
  .bnr-area {
    padding-top: 20rem;
  }
  .bnr-area ul li {
    width: 31%;
    margin-bottom: 10rem;
  }
}
#pro-moa_feature {
  background: url(../img/bg-feature.webp) center bottom no-repeat;
  background-size: cover;
  padding-top: 60rem;
  padding-bottom: 94rem;
}
#pro-moa_feature .section-title {
  color: var(--main-color);
  margin-bottom: 50rem;
}
#pro-moa_feature .navi-list {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18rem;
}
#pro-moa_feature .box {
  width: 31%;
  background: #fff;
  box-shadow: 0 0 8rem rgba(0, 0, 0, 0.25);
  position: relative;
  padding: 27rem 32rem 56rem;
  text-align: center;
}
#pro-moa_feature .box:hover {
  box-shadow: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  transform: translateY(4rem);
}
#pro-moa_feature .box::before {
  content: "";
  display: block;
  width: 60rem;
  aspect-ratio: 1 / 1;
  background: url(../img/round.svg) center no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 0;
  left: 0;
}
#pro-moa_feature .num {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 28rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.75em;
  margin-bottom: 17rem;
  color: var(--main-color);
}
#pro-moa_feature h3 {
  color: var(--main-color);
  font-size: 24rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75em;
  padding-bottom: 23rem;
}
#pro-moa_feature figure {
  display: block;
  width: min(100%, 138rem);
  margin: 0 auto 26rem;
}
#pro-moa_feature figure img {
  display: block;
}
#pro-moa_feature p {
  text-align: left;
  font-size: 14rem;
  font-weight: 400;
  line-height: 2em;
}
#pro-moa_feature p strong {
  font-weight: 700;
  color: var(--main-color-strong);
}
#pro-moa_feature p.att {
  text-align: right;
  font-size: 10rem;
  line-height: 1.6em;
}
#pro-moa_feature .link-btn {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
#pro-moa_feature .link-btn::before,
#pro-moa_feature .link-btn::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
}
#pro-moa_feature .link-btn::before {
  width: 68rem;
  height: 68rem;
  background: #ceab44;
  border-radius: 50%;
  transform: translate(-50%, 50%);
}
#pro-moa_feature .link-btn::after {
  width: 13rem;
  aspect-ratio: 13 / 19;
  background: url(../img/arrow-dash.svg) center no-repeat;
  background-size: 100% auto;
  transform: translate(-50%, -5rem);
  transition: 0.3s;
}
#pro-moa_feature .link-btn:hover::after {
  transform: translate(-50%, 0);
}
@media only screen and (max-width: 767px) {
  #pro-moa_feature {
    padding: 60rem 0;
  }
  #pro-moa_feature .section-title {
    margin-bottom: 30rem;
  }
  #pro-moa_feature .navi-list {
    display: block;
  }
  #pro-moa_feature .box {
    width: 85%;
    padding: 20rem 24rem 56rem;
    margin: 0 auto 24rem auto;
  }
  #pro-moa_feature .box:last-of-type {
    margin-bottom: 0;
  }
  #pro-moa_feature .num {
    font-size: 22rem;
    margin-bottom: 12rem;
  }
  #pro-moa_feature h3 {
    font-size: 18rem;
  }
  #pro-moa_feature p.att {
    text-align: left;
  }
}
.pro-moa_ttl {
  font-size: 40rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75em;
  color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 35rem;
  position: relative;
  margin-bottom: 46rem;
}
.pro-moa_ttl span {
  color: var(--deco-color);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 92rem;
  font-weight: 700;
  display: block;
  margin-right: 32rem;
}
.pro-moa_ttl::after {
  content: "";
  display: block;
  width: 50vw;
  aspect-ratio: 705 / 2;
  background: url(../img/line.webp) center no-repeat;
  background-size: 100% auto;
  margin-left: calc(-1 * (100vw - 100%) / 2);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .pro-moa_ttl {
    font-size: 20rem;
    padding-bottom: 15rem;
    margin-bottom: 20rem;
  }
  .pro-moa_ttl span {
    font-size: 48rem;
    margin-right: 12rem;
  }
  .pro-moa_ttl::after {
    width: 70vw;
  }
}
.pro-moa_lead {
  color: #fff;
  padding-bottom: 65rem;
}
.pro-moa_lead p {
  font-size: 24rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.75em;
  max-width: 840rem;
}
.pro-moa_lead p span.emphasis_pc {
  display: inline-block;
  background: #fff;
  color: var(--main-color);
  font-weight: 700;
  padding: 2rem 15rem;
  margin: 12rem 0;
}

@media only screen and (max-width: 767px) {
  .pro-moa_lead {
    padding-bottom: 30rem;
  }
  .pro-moa_lead p {
    font-size: 15rem;
  }
  .pro-moa_lead p strong {
    padding: 5rem 10rem;
    margin: 10rem 0;
  }
  .pro-moa_lead p span.emphasis_pc {
    display: block;
    background: none;
    padding: 0;
    margin: 0;
  }
  .pro-moa_lead p span.emphasis {
    display: inline-block;
    background: #fff;
    color: var(--main-color);
    font-weight: 700;
    padding: 1rem 7rem;
    margin: 4rem 0;
  }
}
.pro-moa_inbox {
  background: #fff;
  padding: 56rem 40rem 48rem;
  border-radius: 0 120rem 0 0;
}
.pro-moa_inbox .sub-ttl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  font-size: 32rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75em;
  color: var(--main-color);
  padding-bottom: 12rem;
  border-bottom: var(--main-color) 2rem solid;
  margin-bottom: 24rem;
  width: 100%;
}
.pro-moa_inbox .sub-ttl::before {
  content: "";
  display: block;
  width: 39rem;
  aspect-ratio: 40 / 41;
  background: url(../img/check.svg) center no-repeat;
  background-size: 100% auto;
  margin-right: 12rem;
  margin-top: 11rem;
}
@media only screen and (max-width: 767px) {
  .pro-moa_inbox {
    padding: 30rem 16rem;
    border-radius: 0 60rem 0 0;
  }
  .pro-moa_inbox .sub-ttl {
    font-size: 16rem;
    padding-bottom: 6rem;
    margin-bottom: 20rem;
    padding-left: 28rem;
    position: relative;
  }
  .pro-moa_inbox .sub-ttl::before {
    content: "";
    display: block;
    width: 30rem;
    margin-right: 8rem;
  }
  .pro-moa_inbox .sub-ttl::before {
    content: "";
    display: block;
    width: 24rem;
    aspect-ratio: 40 / 41;
    background: url(../img/check.svg) center no-repeat;
    background-size: 100% auto;
    position: absolute;
    left: 0;
    top: -8rem;
  }
}
#pro-moa_measurement {
  background: var(--main-color);
  position: relative;
  padding: 120rem 0;
  overflow: hidden;
}
#pro-moa_measurement::before,
#pro-moa_measurement::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
}
#pro-moa_measurement::before {
  aspect-ratio: 140 / 57;
  background: url(../img/mesurement-bg.webp) center no-repeat;
  background-size: 100% auto;
  top: 70rem;
}

#pro-moa_measurement::after {
  aspect-ratio: 1400 / 729;
  background: url(../img/mesurement-btm.webp) center no-repeat;
  background-size: 100% auto;
  bottom: 0;
}
#pro-moa_measurement .inner {
  position: relative;
  z-index: 3;
}
#pro-moa_measurement .checklist {
  background: #eaeef2;
  padding: 23rem 32rem 24rem;
  margin-bottom: 24rem;
}
#pro-moa_measurement .checklist h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 16rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #5e5c55;
  padding-bottom: 21rem;
}
#pro-moa_measurement .checklist h4 span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 57rem;
  height: 30rem;
  color: #fff;
  background: #1179ba;
  margin-right: 10rem;
}
#pro-moa_measurement .checklist ul {
  display: flex;
  justify-content: space-between;
  position: relative;
}
#pro-moa_measurement .checklist ul li {
  width: 48%;
}
#pro-moa_measurement .checklist ul::after {
  content: "併用";
  font-size: 16rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--main-color-strong);
  width: 79rem;
  height: 79rem;
  border-radius: 50%;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
}
#pro-moa_measurement .leadtxt {
  padding-bottom: 60rem;
}
#pro-moa_measurement .leadtxt.last {
  padding-top: 24rem;
  padding-bottom: 0;
}
#pro-moa_measurement .leadtxt p {
  font-size: 16rem;
  font-weight: 500;
}
#pro-moa_measurement .leadtxt p strong {
  font-weight: 700;
  color: var(--main-color-strong);
}
#pro-moa_measurement .early {
  background: #eaeef2;
  width: calc(100% - 120rem);
  padding: 40rem 110rem 40rem 40rem;
  position: relative;
  margin-bottom: 24rem;
}
#pro-moa_measurement .early::after {
  content: "";
  display: block;
  width: 124rem;
  aspect-ratio: 62 / 95;
  background: url(../img/mesurement4.webp) center no-repeat;
  background-size: 100% auto;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(50%);
}
#pro-moa_measurement .illust {
  display: block;
  width: min(100%, 889rem);
  margin: auto;
}
@media only screen and (max-width: 767px) {
  #pro-moa_measurement {
    padding: 40rem 0 60rem 0;
  }
  #pro-moa_measurement::before {
    aspect-ratio: 99 / 57;
    background: url(../img/mesurement-bg.webp) center no-repeat;
    background-size: 135% auto;
    top: 70rem;
  }
  #pro-moa_measurement .checklist {
    padding: 12rem 12rem 20rem;
  }
  #pro-moa_measurement .checklist h4 {
    font-size: 12rem;
    padding-bottom: 16rem;
    display: block;
    text-align: left;
  }
  #pro-moa_measurement .checklist h4 span {
    width: 42rem;
    height: auto;
    margin-bottom: 5rem;
  }
  #pro-moa_measurement .checklist {
    margin-bottom: 20rem;
  }
  #pro-moa_measurement .checklist ul {
    display: block;
  }
  #pro-moa_measurement .checklist ul li {
    width: 100%;
  }
  #pro-moa_measurement .checklist ul li:first-child {
    margin-bottom: 50rem;
  }
  #pro-moa_measurement .checklist ul::after {
    font-size: 14rem;
    width: 50rem;
    height: 50rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #pro-moa_measurement .leadtxt {
    padding-bottom: 30rem;
  }
  #pro-moa_measurement .leadtxt.last {
    padding-top: 20rem;
  }
  #pro-moa_measurement .leadtxt p {
    font-size: 14rem;
  }
  #pro-moa_measurement .early {
    width: 90%;
    padding: 12rem;
    position: relative;
    margin-bottom: 20rem;
  }
  #pro-moa_measurement .early::after {
    width: 60rem;
    transform: translateX(55%);
  }

  #pro-moa_measurement .illust {
    width: 889px;
    max-width: 889px;
  }
}
#pro-moa_prevent {
  background: #126180;
  position: relative;
  padding: 120rem 0;
  overflow: hidden;
}
#pro-moa_prevent::before,
#pro-moa_prevent::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
}
#pro-moa_prevent::before {
  aspect-ratio: 175 / 69;
  background: url(../img/prevent-bg.webp) center no-repeat;
  background-size: 100% auto;
  top: 70rem;
}
#pro-moa_prevent::after {
  aspect-ratio: 2800 / 1451;
  background: url(../img/prevent-btm.webp) center no-repeat;
  background-size: 100% auto;
  bottom: 10%;
}
#pro-moa_prevent .inner {
  position: relative;
  z-index: 3;
}
#pro-moa_prevent .pro-moa_ttl {
  margin-left: 34.5%;
}
#pro-moa_prevent .pro-moa_ttl::after {
  margin-left: 0;
  width: 50.3vw;
}
#pro-moa_prevent .pro-moa_lead {
  margin-left: 34.5%;
}
#pro-moa_prevent .followup {
  background: #eaeef2;
  padding: 40rem;
  margin-bottom: 24rem;
}
#pro-moa_prevent .followup ul {
  display: flex;
  justify-content: space-between;
}
#pro-moa_prevent .followup ul li {
  display: block;
  width: 48%;
}
#pro-moa_prevent .leadtxt {
  padding-bottom: 48rem;
}
#pro-moa_prevent .leadtxt.last {
  padding-bottom: 0;
}
#pro-moa_prevent .leadtxt p {
  font-size: 16rem;
}
#pro-moa_prevent .leadtxt p strong {
  font-weight: 700;
  color: var(--main-color-strong);
}
#pro-moa_prevent .figbox {
  background: #eaeef2;
  padding: 40rem;
  margin-bottom: 24rem;
}
@media only screen and (max-width: 767px) {
  #pro-moa_prevent {
    padding: 40rem 0 60rem 0;
  }
  #pro-moa_prevent::before {
    aspect-ratio: 99 / 57;
    background: url(../img/prevent-bg.webp) center no-repeat;
    background-size: 135% auto;
    top: 70rem;
    left: 190rem;
  }
  #pro-moa_prevent .pro-moa_ttl {
    margin-left: 0;
  }
  #pro-moa_prevent .pro-moa_ttl::after {
    margin-left: calc(-1 * (100vw - 100%) / 2);
    width: 70vw;
  }
  #pro-moa_prevent .pro-moa_lead {
    margin-left: 0;
  }
  #pro-moa_prevent .followup {
    padding: 12rem;
    margin-bottom: 20rem;
  }
  #pro-moa_prevent .followup ul {
    display: block;
  }
  #pro-moa_prevent .followup ul li {
    width: 100%;
  }
  #pro-moa_prevent .followup ul li:first-child {
    margin-bottom: 20rem;
  }
  #pro-moa_prevent .leadtxt p {
    font-size: 14rem;
  }
  #pro-moa_prevent .figbox {
    padding: 12rem;
    margin-bottom: 20rem;
  }
  #pro-moa_prevent .figbox figure {
    display: block;
  }
}
#pro-moa_support {
  background: var(--main-color);
  position: relative;
  padding: 120rem 0;
  overflow: hidden;
}
#pro-moa_support::before,
#pro-moa_support::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
}
#pro-moa_support::before {
  aspect-ratio: 140 / 57;
  background: url(../img/support-bg.webp) center no-repeat;
  background-size: 100% auto;
  top: 70rem;
}
#pro-moa_support::after {
  aspect-ratio: 1400 / 729;
  background: url(../img/mesurement-btm.webp) center no-repeat;
  background-size: 100% auto;
  bottom: 0;
}
#pro-moa_support .inner {
  position: relative;
  z-index: 3;
}
#pro-moa_support .achievements {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
  margin: auto;
}
#pro-moa_support .achievements .embs {
  display: flex;
  justify-content: center;
  gap: 40rem;
  padding-bottom: 24rem;
}
#pro-moa_support .achievements .embs li {
  width: 220rem;
}
#pro-moa_support .achievements .logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12rem;
}

#pro-moa_support .achievements .logos li {
  display: block;
  width: auto;
}
#pro-moa_support .achievements .logos li img {
  height: 96rem;
  width: auto;
}
#pro-moa_support .achievements .logos li:nth-child(n + 10) {
  margin-bottom: 0;
}
#pro-moa_support .achievements .logo_container .el_caption__right {
  font-size: 10rem;
  font-weight: 400;
  padding: 0 24rem;
}

#pro-moa_support .achievements .att {
  width: 100%;
  font-size: 10rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6em;
  padding: 8rem 0 40rem 0;
}
#pro-moa_support .flow {
  margin-bottom: 24rem;
}

#pro-moa_support .flow-detail {
  margin-bottom: 24rem;
}

.support-detail {
  background: url("../img/support-detail_bg.svg") right center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 0 40rem;
  margin-bottom: 16rem;
}
.support-detail figure {
  width: 140rem;
}
.support-detail p {
  width: calc(100% - 140rem);
}

#pro-moa_support .burden {
  display: flex;
  justify-content: space-between;
  padding-bottom: 24rem;
}
#pro-moa_support .burden li {
  width: 48%;
  background: #eaeef2;
  padding: 24rem 40rem 12rem;
  font-size: 16rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2em;
}
#pro-moa_support .burden li figure {
  display: block;
  margin-bottom: 16rem;
}
#pro-moa_support .burden li span {
  display: block;
  font-size: 10rem;
  font-weight: 400;
}
#pro-moa_support .lead-txt {
  width: 100%;
  text-align: center;
  padding-bottom: 48rem;
}
#pro-moa_support .lead-txt p {
  font-size: 22rem;
  font-weight: 700;
  color: var(--main-color);
}
#pro-moa_support .scontents {
  display: flex;
  justify-content: space-between;
  padding-bottom: 24rem;
}
#pro-moa_support .scontents li {
  display: block;
  width: 48%;
}
#pro-moa_support .leadtxt p {
  font-size: 16rem;
}
#pro-moa_support .leadtxt p strong {
  font-weight: 700;
  color: var(--main-color-strong);
}
@media only screen and (max-width: 767px) {
  #pro-moa_support {
    padding: 40rem 0 60rem 0;
  }

  #pro-moa_support .achievements {
    display: block;
  }
  #pro-moa_support .achievements .logo_container {
    width: 100%;
  }
  #pro-moa_support .achievements .embs {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 12rem;
    padding-bottom: 4rem;
  }
  #pro-moa_support .achievements .embs li {
    width: 130rem;
    margin-bottom: 10rem;
  }
  #pro-moa_support .achievements .logos {
    width: 100%;
  }
  #pro-moa_support .achievements .logos li img {
    height: 47rem;
    width: auto;
  }
  #pro-moa_support .achievements .logos li:nth-child(n + 10) {
    margin-bottom: 10rem;
  }
  #pro-moa_support .achievements .logo_container .el_caption__right {
    font-size: 8rem;
    font-weight: 400;
    padding: 0;
    text-align: left;
  }
  #pro-moa_support .achievements .att {
    font-size: 8rem;
    padding: 0rem 0 24rem;
    text-align: left;
  }
  #pro-moa_support .flow {
    margin-bottom: 20rem;
  }

  #pro-moa_support .burden {
    display: block;
    padding-bottom: 20rem;
  }
  #pro-moa_support .burden li {
    width: 100%;
    padding: 12rem;
    font-size: 14rem;
  }
  #pro-moa_support .burden li:first-child {
    margin-bottom: 20rem;
  }
  #pro-moa_support .burden li figure {
    margin-bottom: 10rem;
  }
  #pro-moa_support .burden li span {
    font-size: 8rem;
  }
  #pro-moa_support .lead-txt {
    text-align: left;
    padding-bottom: 24rem;
  }
  #pro-moa_support .lead-txt p {
    font-size: 14rem;
  }
  #pro-moa_support .scontents {
    display: block;
    padding-bottom: 20rem;
  }
  #pro-moa_support .scontents li {
    width: 100%;
  }
  #pro-moa_support .scontents li:first-child {
    margin-bottom: 20rem;
  }
  #pro-moa_support .leadtxt p {
    font-size: 14rem;
  }

  .support-detail {
    background: url("../img/support-detail_bg_sp.svg") right center no-repeat;
    background-size: cover;
    flex-direction: column;
    padding: 8rem 20rem;
    margin-bottom: 16rem;
  }
  .support-detail figure {
    width: 80rem;
  }
  .support-detail p {
    width: 100%;
    font-size: 11rem;
  }
}
.pro-moa_con {
  background: url(../img/cv-bg-pic.webp) center no-repeat;
  background-size: cover;
  padding-top: 114rem;
  padding-bottom: 120rem;
}
.pro-moa_con .cv-box {
  background: var(--main-color);
  padding: 40rem 38rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(calc(100% - 40rem), 1060rem);
  margin: auto;
  color: #fff;
  margin-bottom: 40rem;
}
.pro-moa_con .cv-box p {
  font-size: 16rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2em;
}
.pro-moa_con h3 {
  font-size: 22rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2em;
  color: #fff;
  text-align: center;
}
.pro-moa_con .cv-box h3 {
  font-size: 20rem;
  text-align: left;
}
.pro-moa_con .ph-box {
  width: min(calc(100% - 40rem), 858rem);
  background: #fff;
  padding: 34rem 24rem 24rem 52rem;
  margin: 14rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: var(--main-color);
}
.pro-moa_con h4 {
  width: 100%;
  font-size: 18rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3em;
}
.pro-moa_con .ph-box a {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 40rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 2em;
  display: flex;
  justify-content: flex-start;
  width: 320rem;
  pointer-events: none;
}
.pro-moa_con .ph-box a::before {
  content: "";
  display: block;
  width: 30rem;
  aspect-ratio: 30 / 47;
  background: url(../img/phone.svg) center no-repeat;
  background-size: 100% auto;
  margin-right: 14rem;
}
.pro-moa_con .ph-box ul {
  width: 440rem;
}
.pro-moa_con .ph-box ul li {
  font-size: 12rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2em;
}
.pro-moa_con .ph-box ul li:nth-child(1):before {
  content: "・";
}
@media only screen and (max-width: 767px) {
  .pro-moa_con {
    padding: 40rem 0;
  }
  .pro-moa_con .cv-box {
    padding: 30rem;
    display: block;
    margin-bottom: 30rem;
  }
  .pro-moa_con .cv-box p {
    font-size: 12rem;
  }
  .pro-moa_con .cv-box p br {
    display: none;
  }
  .pro-moa_con .cv-box .txt {
    padding-bottom: 30rem;
  }
  .pro-moa_con h3 {
    font-size: 16rem;
  }
  .pro-moa_con .cv-box h3 {
    font-size: 16rem;
  }
  .pro-moa_con .ph-box {
    padding: 30rem;
    display: block;
  }
  .pro-moa_con h4 {
    font-size: 16rem;
    padding-bottom: 10rem;
  }
  .pro-moa_con .ph-box a {
    font-size: 30rem;
    pointer-events: all;
    width: 100%;
  }
  .pro-moa_con .ph-box a::before {
    width: 24rem;
  }
  .pro-moa_con .ph-box ul {
    width: 100%;
  }
  .pro-moa_con .ph-box ul li {
    font-size: 10rem;
    text-indent: -1em;
    padding-left: 1em;
  }
}
#pro-moa_case {
  background: url(../img/white-bg.webp) center no-repeat;
  background-size: cover;
  padding-top: 80rem;
  padding-bottom: 20rem;
}
#pro-moa_case .section-title {
  color: var(--main-color-font);
  margin-bottom: 40rem;
}
#pro-moa_case .case-list {
  display: flex;
  justify-content: space-between;
}
#pro-moa_case .case-list:nth-of-type(2) {
  justify-content: center;
}
#pro-moa_case .case-list:nth-of-type(2) .box:nth-of-type(1) {
  margin-right: 3.5%;
}
#pro-moa_case .case-list .box {
  width: 31%;
  padding-bottom: 50rem;
  line-height: 1.75em;
}
#pro-moa_case .case-list .box:hover h3,
#pro-moa_case .case-list .box:hover p {
  text-decoration: underline;
}
#pro-moa_case .case-list figure {
  display: block;
  width: 100%;
  aspect-ratio: 340 / 191;
  overflow: hidden;
  margin-bottom: 8rem;
}
#pro-moa_case .case-list figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
#pro-moa_case .case-list a:hover figure img {
  transform: scale(1.1);
}
#pro-moa_case h3 {
  font-size: 22rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75em;
}
#pro-moa_case p {
  font-size: 14rem;
  letter-spacing: 0.05em;
}
#pro-moa_case ul {
  padding-bottom: 8rem;
}
#pro-moa_case ul li {
  padding-top: 1rem;
}
#pro-moa_case ul li span {
  display: inline-block;
  font-size: 12rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 22rem;
  padding: 0 12rem;
  background: #eaeef2;
  border-radius: 40rem;
}
#pro-moa_case dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#pro-moa_case dl dt,
#pro-moa_case dl dd {
  font-size: 12rem;
  letter-spacing: 0.05em;
}
#pro-moa_case dl dt {
  display: inline-block;
  font-weight: 500;
  background: #eaeef2;
  line-height: 20rem;
  padding: 0 6rem;
  border-radius: 4rem;
  margin-right: 8rem;
}
#pro-moa_case dl dd {
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  #pro-moa_case {
    padding-top: 40rem;
    padding-bottom: 10rem;
    background: url(../img/white-bg_sp.webp) center no-repeat;
    background-size: cover;
  }
  #pro-moa_case .section-title {
    margin-bottom: 30rem;
  }
  #pro-moa_case .case-list {
    display: block;
  }
  #pro-moa_case .case-list .box {
    width: 100%;
    padding: 0 24rem 32rem 24rem;
  }
  #pro-moa_case .case-list:nth-of-type(2) .box:nth-of-type(1) {
    margin-right: 0;
  }
  #pro-moa_case h3 {
    font-size: 16rem;
  }
  #pro-moa_case p {
    font-size: 12rem;
  }
  #pro-moa_case ul li {
    padding-top: 6rem;
  }
  #pro-moa_case ul li span {
    font-size: 10rem;
    line-height: 20rem;
    padding: 0 10rem;
  }
  #pro-moa_case dl dt,
  #pro-moa_case dl dd {
    font-size: 10rem;
  }
}
#pro-moa_solution {
  background: var(--main-color);
  padding-top: 70rem;
  padding-bottom: 80rem;
}
#pro-moa_solution .section-title {
  color: #fff;
  margin-bottom: 40rem;
}
#pro-moa_solution .sol-list {
  display: flex;
  justify-content: space-between;
}
#pro-moa_solution .sol-list a:hover {
  text-decoration: underline;
}
#pro-moa_solution .sol-list li {
  width: 22.2%;
  color: #fff;
  font-size: 16rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75em;
}
#pro-moa_solution .sol-list figure {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 3;
  overflow: hidden;
  margin-bottom: 12rem;
}
#pro-moa_solution .sol-list figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
#pro-moa_solution .sol-list a:hover figure img {
  transform: scale(1.1);
}
#pro-moa_solution .sol-list li .cat {
  display: inline-block;
  font-size: 13rem;
  line-height: 19rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 0 12rem;
  border-radius: 2rem;
  margin-bottom: 6rem;
}
#pro-moa_solution .sol-list li .cat.gr {
  background: #1c9157;
}
#pro-moa_solution .sol-list li .cat.or {
  background: #d2651d;
}
#pro-moa_solution .sol-list li .cat.bl {
  background: #1d86d2;
}
#pro-moa_solution .sol-list li .cat.gl {
  background: #a48a1e;
}
#pro-moa_solution .sol-list li b {
  display: block;
}
#pro-moa_solution .sol-list li .sub {
  display: block;
  font-size: 14rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  #pro-moa_solution {
    padding-top: 40rem;
    padding-bottom: 10rem;
  }
  #pro-moa_solution .section-title {
    margin-bottom: 30rem;
  }
  #pro-moa_solution .sol-list {
    display: block;
  }
  #pro-moa_solution .sol-list li {
    width: 100%;
    font-size: 14rem;
    padding: 0 24rem 32rem 24rem;
  }
  #pro-moa_solution .sol-list figure {
    margin-bottom: 10rem;
  }
  #pro-moa_solution .sol-list li .cat {
    font-size: 10rem;
    line-height: 18rem;
    padding: 0 10rem;
    margin-bottom: 10rem;
  }
  #pro-moa_solution .sol-list li .sub {
    font-size: 12rem;
  }
}
#pro-moa_seminar {
  background: url(../img/white-bg.webp) center no-repeat;
  background-size: cover;
  padding: 80rem 0;
}
#pro-moa_seminar .inner {
  width: min(calc(100% - 40rem), 680rem);
}
#pro-moa_seminar .section-title {
  color: var(--main-color-font);
  margin-bottom: 40rem;
}
#pro-moa_seminar .sem-list {
  display: flex;
  justify-content: space-between;
}
#pro-moa_seminar .box {
  width: 47%;
}
#pro-moa_seminar figure {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 12rem;
}
#pro-moa_seminar figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
#pro-moa_seminar a:hover figure img {
  transform: scale(1.1);
}
#pro-moa_seminar .sem-cat {
  display: flex;
  justify-content: flex-start;
  padding-bottom: 6rem;
}
#pro-moa_seminar .sem-cat li {
  display: inline-block;
  margin-right: 8rem;
  font-size: 13rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 2rem 12rem;
  background: #dd1331;
  border-radius: 2rem;
}
#pro-moa_seminar .sem-cat li.gr {
  background: #6eb714;
}
#pro-moa_seminar .sem-cat li.pu {
  background: #ba4fc3;
}
#pro-moa_seminar h3 {
  font-size: 16rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75em;
}
#pro-moa_seminar a:hover h3 {
  text-decoration: underline;
}
#pro-moa_seminar h3 span {
  display: block;
  font-size: 14rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  #pro-moa_seminar {
    padding-top: 40rem;
    padding-bottom: 10rem;
    background: url(../img/white-bg_sp.webp) center no-repeat;
    background-size: cover;
  }
  #pro-moa_seminar .section-title {
    margin-bottom: 20rem;
  }
  #pro-moa_seminar .sem-list {
    display: block;
  }
  #pro-moa_seminar .box {
    width: 100%;
    padding: 0 24rem 32rem 24rem;
  }
  #pro-moa_seminar figure {
    margin-bottom: 10rem;
  }
  #pro-moa_seminar .sem-cat {
    padding-bottom: 10rem;
  }
  #pro-moa_seminar .sem-cat li {
    margin-right: 8rem;
    font-size: 10rem;
    padding: 2rem 10rem;
  }
  #pro-moa_seminar h3 {
    font-size: 14rem;
  }
  #pro-moa_seminar h3 span {
    font-size: 12rem;
  }
}
#pro-moa_column {
  background: var(--main-color);
  color: #fff;
  padding-top: 100rem;
  padding-bottom: 30rem;
}
#pro-moa_column .inner {
  width: min(calc(100% - 40rem), 1040rem);
}
#pro-moa_column .section-title {
  margin-bottom: 53rem;
}
#pro-moa_column .column-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#pro-moa_column .column-list li {
  width: 30.7%;
  font-size: 16rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75em;
  padding-bottom: 50rem;
}
#pro-moa_column .column-list li a:hover {
  text-decoration: underline;
}
#pro-moa_column .column-list li span {
  display: block;
  font-size: 14rem;
  font-weight: 500;
}
#pro-moa_column .column-list li figure {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 12rem;
}
#pro-moa_column .column-list li figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
#pro-moa_column .column-list li a:hover figure img {
  transform: scale(1.1);
}
@media only screen and (max-width: 767px) {
  #pro-moa_column {
    padding-top: 40rem;
  }
  #pro-moa_column .section-title {
    margin-bottom: 30rem;
  }
  #pro-moa_column .column-list {
    display: block;
  }
  #pro-moa_column .column-list li {
    width: 100%;
    padding: 0 24rem 32rem 24rem;
    font-size: 14rem;
  }
  #pro-moa_column .column-list li span {
    font-size: 12rem;
  }
}

/* -- module -- */
.contents-explanation {
  background: #ffffff;
}

.contents-explanation__header {
  background: #18a2b4;
  color: #ffffff;
  padding: 4rem 12rem;
  text-align: center;
  font-size: 18rem;
  position: relative;
}

.contents-explanation__header.likert-method,
.contents-explanation__header.coaching {
  background: #1179ba;
}
.contents-explanation__body.session,
.contents-explanation__body.coaching {
  padding-bottom: 24rem;
}

.contents-explanation__body.session h6 {
  color: #18a2b4;
  font-weight: bold;
}
.contents-explanation__body.coaching h6 {
  color: #1179ba;
  font-weight: bold;
  margin-bottom: 4rem;
}
.contents-explanation__body.session p,
.contents-explanation__body.coaching p {
  margin-bottom: 8rem;
}

.contents-explanation__header.probst-method::before,
.contents-explanation__header.likert-method::before {
  content: "";
  position: absolute;
  width: 74rem;
  height: 74rem;
  background: url("../img/deco_ic_pencil.svg") center no-repeat;
  background-size: contain;
  right: 0;
  top: 20rem;
}

.contents-explanation__header span {
  font-size: 12rem;
  display: block;
}

.contents-explanation__body {
  padding: 24rem 24rem 0 24rem;
}

.contents-explanation .probst-method_line {
  aspect-ratio: 460 / 124;
  background: url("../img/probst-method_lines.svg") center no-repeat;
  background-size: contain;
  margin-left: -12rem;
}

.contents-explanation .probst-method_line p {
  font-size: 13rem;
  width: 334rem;
  padding: 38rem 0 0 24rem;
}

.contents-explanation .likert-method_line {
  aspect-ratio: 460 / 124;
  background: url("../img/likert-method_lines.svg") center no-repeat;
  background-size: contain;
  margin-left: -12rem;
}

.contents-explanation .likert-method_line p {
  font-size: 13rem;
  width: 334rem;
  padding: 38rem 0 0 24rem;
}

@media only screen and (max-width: 767px) {
  .contents-explanation__header {
    font-size: 13rem;
  }
  .contents-explanation__header span {
    font-size: 11rem;
    display: block;
  }

  .contents-explanation__header.probst-method::before,
  .contents-explanation__header.likert-method::before {
    content: "";
    position: absolute;
    width: 44rem;
    height: 44rem;
    background: url("../img/deco_ic_pencil.svg") center no-repeat;
    background-size: contain;
    right: 0;
    top: 10rem;
  }

  .contents-explanation__body {
    padding: 12rem 12rem 0 12rem;
  }

  .contents-explanation .probst-method_line,
  .contents-explanation .likert-method_line {
    width: 304rem;
    height: 80rem;
  }
  .contents-explanation .probst-method_line p,
  .contents-explanation .likert-method_line p {
    font-size: 9rem;
    width: 336rem;
    padding: 20rem 0 0 16rem;
  }
}
