@charset "UTF-8";
/* Modern CSS Reset */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  font-family: sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

img {
  width: 100%;
  height: auto;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

:root {
  --txt: #102741;
  --orange: #ff5c36;
  --darkblue: #33475A;
  --lightblue: #ACEDFF;
  --lightblue: #ACEDFF;
  --yellow: #F6E27F;
}

/* container
===============================================================================================*/
html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--txt);
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  word-break: break-all;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 768px) {
  body {
    line-height: 1.7;
  }
}

a {
  color: inherit;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
}

/* header
===============================================================================================*/
.header {
  position: absolute;
  z-index: 10;
  width: 100%;
  padding: 20px 30px;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 3.8461538462vw 5.641025641vw;
  }
}
.header__ttl {
  font-size: 14px;
  font-weight: bold;
  padding-left: 42px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header__ttl {
    font-size: 3.0769230769vw;
    padding-left: 9.2307692308vw;
  }
}
.header__ttl::before {
  content: "";
  width: 35px;
  height: 37px;
  background: url("../img/common/icon_log.svg") center center/contain no-repeat;
  position: absolute;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .header__ttl::before {
    width: 7.6923076923vw;
    height: 8.2051282051vw;
  }
}

/* footer
===============================================================================================*/
.footer {
  text-align: center;
  padding: 20px;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 5.641025641vw;
    font-size: 3.0769230769vw;
  }
}

/* 汎用モジュール
========================================================*/
.modBtn {
  padding: 8px;
  background: rgba(248, 121, 89, 0.2);
  border-radius: 50px;
  max-width: 423px;
  text-align: center;
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: visible;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  background: none;
}
@media screen and (max-width: 768px) {
  .modBtn {
    display: block;
    max-width: 100%;
    border-radius: 10.7692307692vw;
    padding: 2.0512820513vw;
  }
}
.modBtn__txt {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  display: block;
  background: var(--orange);
  padding: 20px 0;
  width: 100%;
  border-radius: 42px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .modBtn__txt {
    font-size: 4.8717948718vw;
    border-radius: 10.7692307692vw;
    padding: 3.5897435897vw 0;
  }
}
.modBtn__txt .modBtn__icon {
  position: relative;
  display: inline-block;
  padding-left: 56px;
}
@media screen and (max-width: 768px) {
  .modBtn__txt .modBtn__icon {
    padding-left: 10.2564102564vw;
  }
}
.modBtn__txt .modBtn__icon::before {
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .modBtn__txt .modBtn__icon::before {
    width: 7.6923076923vw;
    height: 7.6923076923vw;
  }
}
.modBtn__txt .modBtn__icon.modBtn__icon--messe::before {
  background: url("../img/common/icon__messe.svg") center center/cover no-repeat;
}
.modBtn__txt .modBtn__icon.modBtn__icon--pdf::before {
  background: url("../img/common/icon__pdf.svg") center center/cover no-repeat;
}
.modBtn::before, .modBtn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: rgba(248, 121, 89, 0.3);
  border-radius: 75px;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .modBtn::before, .modBtn::after {
    background: rgb(248, 121, 89);
    width: 103%;
    height: 103%;
    border-radius: 12.8205128205vw;
  }
}
.modBtn--row::before, .modBtn--row::after {
  content: "";
  width: 110%;
  height: 110%;
}
.modBtn::before {
  -webkit-animation: pulse 2s ease-out infinite;
          animation: pulse 2s ease-out infinite;
}
.modBtn::after {
  -webkit-animation: pulse 2s ease-out infinite;
          animation: pulse 2s ease-out infinite;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.5);
            transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
            transform: translate(-50%, -50%) scale(1.1);
    opacity: 0;
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.5);
            transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
            transform: translate(-50%, -50%) scale(1.1);
    opacity: 0;
  }
}

.modSection {
  padding: 100px 0 0;
}
@media screen and (max-width: 768px) {
  .modSection {
    padding: 15.3846153846vw 0 0;
  }
}
@media screen and (max-width: 768px) {
  .modSection--pt {
    padding: 0;
  }
}
.modSection--gray {
  background: #F7F7F7;
  padding: 100px 0;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .modSection--gray {
    padding: 15.3846153846vw 0;
    margin-top: 15.3846153846vw;
  }
}
.modSection--soltion {
  padding: 243px 0 0;
  position: relative;
}
.modSection--soltion::before {
  content: "";
  width: 149px;
  height: 58px;
  background: url("../img/top/soltion/icon__arrow.svg") center center/contain no-repeat;
  position: absolute;
  top: 130px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .modSection--soltion::before {
    width: 25.1282051282vw;
    height: 9.7435897436vw;
    top: 17.9487179487vw;
  }
}
@media screen and (max-width: 768px) {
  .modSection--soltion {
    padding: 40.5128205128vw 0 0;
  }
}
.modSection__inner {
  max-width: 1192px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (max-width: 768px) {
  .modSection__inner {
    padding: 0 5.641025641vw;
  }
}
.modSection__ttl {
  text-align: center;
  font-size: 40px;
  position: relative;
  z-index: 1;
}
.modSection__ttl img {
  width: 240px;
  margin: 0 auto 0.25em;
}
@media screen and (max-width: 768px) {
  .modSection__ttl {
    font-size: 7.1794871795vw;
  }
}
.modSection__ttl__sub {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: rgba(16, 39, 65, 0.4);
}
@media screen and (max-width: 768px) {
  .modSection__ttl__sub {
    font-size: 3.0769230769vw;
    margin-top: 1.5384615385vw;
  }
}

/* 強調
========================================================*/
.emp-dot {
  -webkit-text-emphasis: circle var(--orange);
          text-emphasis: circle var(--orange);
}

.emp-wave {
  -webkit-text-decoration: underline wavy var(--orange);
          text-decoration: underline wavy var(--orange);
  text-underline-offset: 0.3em;
}

.emp-line {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(30%, var(--yellow)));
  background: -webkit-linear-gradient(transparent 70%, var(--yellow) 30%);
  background: linear-gradient(transparent 70%, var(--yellow) 30%);
  padding: 0 0.1em;
}

.emp-large {
  font-size: 1.2em;
}

.col-orange {
  color: #ff5c36;
}

/* 汎用モジュール
========================================================*/
@media screen and (min-width: 1025px) {
  .modBpPc {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .modBpPc {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .modBpSp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .modBpSp {
    display: block;
  }
}

.mv {
  padding: 120px 0 20px;
  position: relative;
  background: url("../img/top/mv/mv_bg.jpg") center center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .mv {
    padding: 22.5641025641vw 0 6.6666666667vw;
    background: url("../img/top/mv/sp/mv_bg.jpg") center center/cover no-repeat;
  }
}
.mv::before {
  content: "";
  width: 27.34375vw;
  height: 45.3125vw;
  background: url("../img/miura/mv.png") center center/contain no-repeat;
  position: absolute;
  bottom: 0;
  right: 7.8125vw;
}
@media screen and (max-width: 768px) {
  .mv::before {
    width: 94.358974359vw;
    height: 93.5897435897vw;
    background: url("../img/miura/mv.png") center center/contain no-repeat;
    right: auto;
  }
}
.mv::after {
  content: "";
  width: 191px;
  height: 190px;
  background: url("../img/top/mv/mv__img02.svg") center center/contain no-repeat;
  position: absolute;
  top: 20px;
  right: 32px;
}
@media screen and (max-width: 768px) {
  .mv::after {
    content: none;
  }
}
.mv__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .mv__inner {
    max-width: 100%;
    padding: 0 5.641025641vw;
  }
}
.mv__label {
  font-size: 20px;
  padding: 14px 23px;
  border-radius: 4px;
  position: relative;
  display: inline-block;
  background: var(--darkblue);
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .mv__label {
    font-size: 3.3333333333vw;
    padding: 2.5641025641vw;
    border-radius: 1.0256410256vw;
  }
}
.mv__label span {
  color: var(--orange);
}
.mv__label::before {
  content: "";
  width: 32px;
  height: 28px;
  background: url("../img/top/mv/icon_arrow.svg") center center/contain no-repeat;
  position: absolute;
  bottom: -14px;
  left: 44px;
}
@media screen and (max-width: 768px) {
  .mv__label::before {
    width: 4.8717948718vw;
    height: 4.358974359vw;
    bottom: -2.8205128205vw;
    left: 7.1794871795vw;
  }
}
.mv__txt {
  margin-top: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .mv__txt {
    margin-top: 5.8974358974vw;
    gap: 1.2820512821vw;
  }
}
.mv__txt__img {
  max-width: 211px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .mv__txt__img {
    max-width: 27.1794871795vw;
  }
}
.mv__txt__txt {
  font-size: 43px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .mv__txt__txt {
    font-size: 5.1282051282vw;
  }
}
.mv__storong {
  font-size: 40px;
  margin-top: 14px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .mv__storong {
    font-size: 8.9743589744vw;
    margin-top: 1.7948717949vw;
  }
}
.mv__storong strong {
  font-size: 54px;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .mv__storong strong {
    font-size: 9.7435897436vw;
  }
}
.mv__storong strong::before {
  content: "";
  width: 100%;
  height: 20px;
  background: var(--orange);
  position: absolute;
  bottom: 6px;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .mv__storong strong::before {
    height: 3.0769230769vw;
    bottom: 1.5384615385vw;
  }
}
.mv__storong strong .lg {
  font-size: 62px;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .mv__storong strong .lg {
    font-size: 12.8205128205vw;
  }
}
.mv__storong .md {
  font-size: 44px;
  display: inline-block;
  padding: 0 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .mv__storong .md {
    font-size: 8.9743589744vw;
    padding: 0 3.3333333333vw;
  }
}
.mv__storong .tab {
  display: none;
}
@media screen and (max-width: 860px) and (min-width: 769px) {
  .mv__storong .tab {
    display: block;
  }
}
.mv__list {
  margin-top: 47px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .mv__list {
    margin-top: 10.2564102564vw;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10vw;
  }
}
.mv__list__item {
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  .mv__list__item {
    padding: 0;
  }
}
.mv__list__item:nth-child(2) {
  position: relative;
}
.mv__list__item:nth-child(2)::before, .mv__list__item:nth-child(2)::after {
  content: "";
  width: 1px;
  height: 100px;
  background: #3A4E62;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .mv__list__item:nth-child(2)::before, .mv__list__item:nth-child(2)::after {
    content: none;
  }
}
.mv__list__item:nth-child(2)::before {
  left: 0;
}
.mv__list__item:nth-child(2)::after {
  right: 0;
}
.mv__list__item .icon {
  max-width: 55px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .mv__list__item .icon {
    max-width: 11.2820512821vw;
  }
}
.mv__list__item .txt {
  text-align: center;
  font-weight: bold;
  letter-spacing: 0;
  margin-top: 11px;
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .mv__list__item .txt {
    margin-top: 1.5384615385vw;
    font-size: 3.3333333333vw;
  }
}
.mv__list__item .txt__xlg {
  font-size: 43px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  display: inline-block;
  padding: 0 5px;
}
@media screen and (max-width: 768px) {
  .mv__list__item .txt__xlg {
    padding: 0 1.5384615385vw;
    font-size: 6.9230769231vw;
  }
}
.mv__list__item .txt__lg {
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .mv__list__item .txt__lg {
    font-size: 4.6153846154vw;
  }
}
.mv__list__item .txt__xsm {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .mv__list__item .txt__xsm {
    font-size: 2.5641025641vw;
  }
}
.mv__btn {
  margin: 45px 0 0 170px;
}
@media screen and (max-width: 768px) {
  .mv__btn {
    margin: 69.7435897436vw 0 0;
  }
}
.mv__bttomtxt {
  margin-top: 36px;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .mv__bttomtxt {
    margin-top: 2.8205128205vw;
    padding: 0;
  }
}

.achievementList {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .achievementList {
    margin-top: 7.6923076923vw;
  }
}
.achievementList__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #F7F7F7;
  border-radius: 10px;
  min-height: 200px;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .achievementList__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 2.5641025641vw;
    min-height: auto;
    gap: 8.9743589744vw;
  }
}
.achievementList__inner:not(:first-child) {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .achievementList__inner:not(:first-child) {
    margin-top: 2.5641025641vw;
  }
}
.achievementList__head {
  width: 393px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .achievementList__head {
    width: 100%;
  }
}
.achievementList__head::before {
  content: "";
  width: 222px;
  height: 92px;
  background: url("../img/top/achievement/icon__arrow.svg") center center/contain no-repeat;
  position: absolute;
  top: 62%;
  right: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .achievementList__head::before {
    width: 56.9230769231vw;
    height: 23.8461538462vw;
    top: 73%;
    right: 8.2051282051vw;
  }
}
.achievementList__head__title {
  background: #526173;
  border-radius: 10px 0 10px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .achievementList__head__title {
    position: static;
    border-radius: 2.5641025641vw 2.5641025641vw 0 0;
  }
}
.achievementList__head__title .num {
  font-size: 25px;
  padding: 3px 11px;
  border-radius: 10px 0 10px 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  background: #33465A;
}
@media screen and (max-width: 768px) {
  .achievementList__head__title .num {
    font-size: 6.4102564103vw;
    padding: 1.7948717949vw 0;
    text-align: center;
    width: 13.0769230769vw;
    border-radius: 2.5641025641vw 0 2.5641025641vw 0;
  }
}
.achievementList__head__title .txt {
  padding-left: 22px;
  font-size: 14px;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .achievementList__head__title .txt {
    width: calc(100% - 13.0769230769vw);
    font-size: 3.3333333333vw;
    padding: 0 4.6153846154vw;
  }
}
.achievementList__head__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.achievementList__head__effect {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0 18px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 23px 0;
}
@media screen and (max-width: 768px) {
  .achievementList__head__effect {
    gap: 18px;
    padding: 7.6923076923vw 5.8974358974vw 0;
  }
}
.achievementList__head__effect .txt {
  font-size: 20px;
  display: block;
}
@media screen and (max-width: 768px) {
  .achievementList__head__effect .txt {
    font-size: 4.1025641026vw;
  }
}
.achievementList__head__effect .orangetxt {
  color: var(--orange);
  display: block;
  font-weight: bold;
  font-size: 28px;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
@media screen and (max-width: 768px) {
  .achievementList__head__effect .orangetxt {
    font-size: 7.1794871795vw;
  }
}
.achievementList__head__effect .orangetxt__lg {
  font-size: 55px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .achievementList__head__effect .orangetxt__lg {
    font-size: 11.5384615385vw;
  }
}
.achievementList__head__effect .orangetxt__md {
  font-size: 41px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .achievementList__head__effect .orangetxt__md {
    font-size: 10.5128205128vw;
  }
}
.achievementList__head__effect .orangetxt__pop {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.achievementList__content {
  width: calc(100% - 393px - 30px);
  padding: 22px 17px 14px;
}
@media screen and (max-width: 768px) {
  .achievementList__content {
    width: 100%;
    padding: 0 3.8461538462vw 3.8461538462vw;
  }
}
.achievementList__content__ttl {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .achievementList__content__ttl {
    font-size: 4.1025641026vw;
    line-height: 1.8;
  }
}
.achievementList__content__ttl .label {
  background: #DDDDDD;
  border-radius: 3px;
  font-size: 13px;
  color: #3A4E62;
  padding: 4px 9px;
  display: inline-block;
  margin-right: 12px;
}
@media screen and (max-width: 768px) {
  .achievementList__content__ttl .label {
    border-radius: 0.7692307692vw;
    font-size: 3.3333333333vw;
    padding: 1.0256410256vw 2.3076923077vw;
    margin: 0 0 2.0512820513vw 0;
    font-size: 3.3333333333vw;
  }
}
.achievementList__content__txt {
  background: #fff;
  border-radius: 5px;
  padding: 12px 16px;
  margin-top: 18px;
}
@media screen and (max-width: 768px) {
  .achievementList__content__txt {
    border-radius: 1.2820512821vw;
    font-size: 3.5897435897vw;
    padding: 3.0769230769vw 4.1025641026vw;
    margin-top: 3.8461538462vw;
    line-height: 1.7;
  }
}

.worries {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 66px;
}
@media screen and (max-width: 768px) {
  .worries {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 7.6923076923vw;
  }
}
.worries__list {
  margin-top: 80px;
  width: calc(100% - 66px - 404px);
}
@media screen and (max-width: 768px) {
  .worries__list {
    width: 100%;
    margin-top: 0;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
.worries__list li {
  font-size: 16px;
  padding-left: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .worries__list li {
    font-size: 3.5897435897vw;
    padding-left: 7.6923076923vw;
  }
}
.worries__list li:not(:first-child) {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .worries__list li:not(:first-child) {
    margin-top: 4.1025641026vw;
  }
}
.worries__list li::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../img/top/worries/icon__arrow.svg") center center/contain no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .worries__list li::before {
    width: 5.1282051282vw;
    height: 5.1282051282vw;
  }
}
.worries__img {
  width: 404px;
}
@media screen and (max-width: 768px) {
  .worries__img {
    width: 68.4615384615vw;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    margin: 10.2564102564vw auto 0;
  }
}

.soltion {
  margin-top: 52px;
  gap: 111px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .soltion {
    margin-top: 7.6923076923vw;
    gap: 7.6923076923vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.soltion__content {
  width: 527px;
}
@media screen and (max-width: 768px) {
  .soltion__content {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
.soltion__content__ttl {
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .soltion__content__ttl {
    font-size: 5.641025641vw;
  }
}
.soltion__content__ttl span {
  position: relative;
}
.soltion__content__ttl span::before {
  content: "";
  width: 100%;
  height: 15px;
  background: var(--yellow);
  position: absolute;
  bottom: 0;
  left: -5px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .soltion__content__ttl span::before {
    height: 3.8461538462vw;
    left: -1.2820512821vw;
  }
}
.soltion__content__txt {
  font-size: 16px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .soltion__content__txt {
    font-size: 3.5897435897vw;
    margin-top: 5.8974358974vw;
  }
}
.soltion__img {
  width: calc(100% - 111px - 527px);
}
@media screen and (max-width: 1024px) {
  .soltion__img {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    width: 71.7948717949vw;
    margin: 0 auto;
    line-height: 1.5;
  }
}

.necessity {
  margin-top: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .necessity {
    margin-top: 20.5128205128vw;
    gap: 17.9487179487vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.necessity__item {
  width: calc(33.3% - 26.6666666667px);
  background: #fff;
  border-radius: 10px;
  padding: 96px 25px 40px;
  position: relative;
  -webkit-box-shadow: 0 4px 24px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 24px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .necessity__item {
    width: 100%;
    border-radius: 2.5641025641vw;
    padding: 23.0769230769vw 4.6153846154vw 7.6923076923vw;
  }
}
.necessity__item__img {
  width: 120px;
  height: 120px;
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .necessity__item__img {
    width: 30.7692307692vw;
    height: 30.7692307692vw;
    top: -12.8205128205vw;
  }
}
.necessity__item__ttl {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .necessity__item__ttl {
    font-size: 5.641025641vw;
  }
}
.necessity__item__txt {
  margin-top: 30px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .necessity__item__txt {
    font-size: 3.5897435897vw;
    margin-top: 7.6923076923vw;
  }
}
.necessity__item__txt .label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
  border-radius: 3px;
  background: var(--orange);
  color: #fff;
  padding: 4px 11px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .necessity__item__txt .label {
    margin-bottom: 3.0769230769vw;
    font-size: 3.0769230769vw;
    border-radius: 0.7692307692vw;
    padding: 1.0256410256vw 2.5641025641vw;
  }
}
.necessity__item__txt .label.blue {
  background: #526173;
  border: 1px solid #3A4E62;
  color: #fff;
}

.reason {
  margin-top: 60px;
  background-image: -webkit-repeating-linear-gradient(left, #102741 0, #102741 2px, transparent 2px, transparent 10px);
  background-image: repeating-linear-gradient(to right, #102741 0, #102741 2px, transparent 2px, transparent 10px);
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: auto 1px;
}
@media screen and (max-width: 768px) {
  .reason {
    margin-top: 7.6923076923vw;
  }
}
.reason__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
  position: relative;
  background-image: -webkit-repeating-linear-gradient(left, #102741 0, #102741 2px, transparent 2px, transparent 10px);
  background-image: repeating-linear-gradient(to right, #102741 0, #102741 2px, transparent 2px, transparent 10px);
  background-repeat: repeat-x;
  background-position: top;
  background-size: auto 1px;
}
@media screen and (max-width: 768px) {
  .reason__item {
    padding: 7.6923076923vw 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.reason__item::before {
  content: "";
  width: 205px;
  height: 156px;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .reason__item::before {
    width: 35.1282051282vw;
    height: 26.6666666667vw;
    top: auto;
    bottom: 7.6923076923vw;
    -webkit-transform: none;
            transform: none;
    right: 0;
  }
}
.reason__item:nth-child(1)::before {
  background: url("../img/top/reason/reason__num01.svg") center center/contain no-repeat;
}
.reason__item:nth-child(2)::before {
  background: url("../img/top/reason/reason__num02.svg") center center/contain no-repeat;
}
.reason__item:nth-child(3)::before {
  background: url("../img/top/reason/reason__num03.svg") center center/contain no-repeat;
}
.reason__item:nth-child(4)::before {
  background: url("../img/top/reason/reason__num04.svg") center center/contain no-repeat;
}
.reason__item:nth-child(5)::before {
  background: url("../img/top/reason/reason__num05.svg") center center/contain no-repeat;
}
.reason__item__img {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .reason__item__img {
    width: 47.9487179487vw;
    margin: 0 auto;
  }
}
.reason__item__content {
  width: calc(100% - 300px);
  padding: 0 60px;
}
@media screen and (max-width: 768px) {
  .reason__item__content {
    width: 100%;
    padding: 0;
  }
}
.reason__item__content .ttl {
  font-size: 32px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .reason__item__content .ttl {
    font-size: 5.641025641vw;
    margin-top: 2.5641025641vw;
  }
}
.reason__item__content .txt {
  font-size: 16px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .reason__item__content .txt {
    font-size: 3.5897435897vw;
    margin-top: 5.1282051282vw;
  }
}
.reasonBtn {
  margin-top: 50px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .reasonBtn {
    margin-top: 10.2564102564vw;
  }
}

.whatwedo {
  margin-top: 50px;
  gap: 30px 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .whatwedo {
    margin-top: 7.6923076923vw;
    gap: 4.1025641026vw;
  }
}
.whatwedo__inner {
  width: calc(33.3% - 26.6666666667px);
  background: #526173;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .whatwedo__inner {
    width: 100%;
    border-radius: 2.5641025641vw;
  }
}
.whatwedo__item {
  padding: 20px 25px 20px;
}
@media screen and (max-width: 768px) {
  .whatwedo__item {
    padding: 5.1282051282vw 6.4102564103vw;
  }
}
.whatwedo__item__num {
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .whatwedo__item__num {
    font-size: 10.2564102564vw;
  }
}
.whatwedo__item__ttl {
  color: #fff;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0;
  font-size: 22px;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .whatwedo__item__ttl {
    font-size: 5.3846153846vw;
    margin-top: 1.2820512821vw;
  }
}
.whatwedo__item__img {
  max-width: 310px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .whatwedo__item__img {
    max-width: 75.8974358974vw;
    margin-top: 5.1282051282vw;
  }
}
.whatwedo__item__txt {
  color: #fff;
  font-size: 14px;
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .whatwedo__item__txt {
    font-size: 3.5897435897vw;
    margin-top: 5.1282051282vw;
  }
}
.whatwedo__item__hideTxt {
  background: #fff;
  padding: 20px 20px 14px;
  font-size: 14px;
  border-radius: 5px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .whatwedo__item__hideTxt {
    padding: 5.1282051282vw;
    font-size: 3.5897435897vw;
    border-radius: 1.2820512821vw;
    margin-top: 5.1282051282vw;
  }
}
.whatwedo__item__btn {
  font-size: 14px;
  padding: 18px 0;
  border-radius: 0 0 10px 10px;
  border-top: 1px solid #fff;
  cursor: pointer;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .whatwedo__item__btn {
    font-size: 3.5897435897vw;
    padding: 5.1282051282vw 0;
    border-radius: 0 0 2.5641025641vw 2.5641025641vw;
    border-top: 0.2564102564vw solid #fff;
  }
}
.whatwedo__item__btn.is-open span::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}
.whatwedo__item__btn span {
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  margin-left: 8px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .whatwedo__item__btn span {
    width: 6.6666666667vw;
    height: 6.6666666667vw;
    border: 0.2564102564vw solid rgba(255, 255, 255, 0.4);
    margin-left: 2.0512820513vw;
  }
}
.whatwedo__item__btn span::before, .whatwedo__item__btn span::after {
  content: "";
  width: 12px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}
@media screen and (max-width: 768px) {
  .whatwedo__item__btn span::before, .whatwedo__item__btn span::after {
    width: 3.0769230769vw;
    height: 0.2564102564vw;
  }
}
.whatwedo__item__btn span::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.whatwedo__item__btn span::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.jsHide {
  display: none;
}

.flow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .flow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.flow__ttl {
  width: calc(100% - 800px);
}
@media screen and (max-width: 1024px) {
  .flow__ttl {
    width: 100%;
  }
}
.flow__ttl .modSection__ttl {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .flow__ttl .modSection__ttl {
    position: static;
    text-align: center;
  }
}
.flow .flowList {
  width: 800px;
}
@media screen and (max-width: 1024px) {
  .flow .flowList {
    width: 100%;
    margin-top: 7.6923076923vw;
  }
}
.flow .flowList__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 106px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .flow .flowList__item {
    min-height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 2.5641025641vw;
  }
}
.flow .flowList__item:not(:first-child) {
  margin-top: 14px;
}
@media screen and (max-width: 768px) {
  .flow .flowList__item:not(:first-child) {
    margin-top: 3.5897435897vw;
  }
}
.flow .flowList__item:nth-child(1) .flowList__item__head {
  background: rgba(51, 70, 90, 0.4);
}
.flow .flowList__item:nth-child(2) .flowList__item__head {
  background: rgba(51, 70, 90, 0.45);
}
.flow .flowList__item:nth-child(3) .flowList__item__head {
  background: rgba(51, 70, 90, 0.5);
}
.flow .flowList__item:nth-child(4) .flowList__item__head {
  background: rgba(51, 70, 90, 0.55);
}
.flow .flowList__item:nth-child(5) .flowList__item__head {
  background: rgba(51, 70, 90, 0.6);
}
.flow .flowList__item:nth-child(6) .flowList__item__head {
  background: rgba(51, 70, 90, 0.65);
}
.flow .flowList__item:nth-child(7) .flowList__item__head {
  background: rgba(51, 70, 90, 0.7);
}
.flow .flowList__item:nth-child(8) .flowList__item__head {
  background: rgba(51, 70, 90, 0.75);
}
.flow .flowList__item:nth-child(9) .flowList__item__head {
  background: rgba(51, 70, 90, 0.8);
}
.flow .flowList__item:nth-child(10) .flowList__item__head {
  background: rgba(51, 70, 90, 0.85);
}
.flow .flowList__item:nth-child(11) .flowList__item__head {
  background: rgba(51, 70, 90, 0.9);
}
.flow .flowList__item:nth-child(12) .flowList__item__head {
  background: rgba(51, 70, 90, 0.95);
}
.flow .flowList__item:nth-child(13) .flowList__item__head {
  background: rgb(51, 70, 90);
}
.flow .flowList__item__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px 0 0 10px;
  width: 140px;
}
@media screen and (max-width: 768px) {
  .flow .flowList__item__head {
    border-radius: 2.5641025641vw 2.5641025641vw 0 0;
    width: 100%;
  }
}
.flow .flowList__item__head span {
  color: #fff;
  display: inline-block;
  padding-right: 10px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .flow .flowList__item__head span {
    padding-right: 1.5384615385vw;
    font-size: 3.3333333333vw;
  }
}
.flow .flowList__item__head .pop {
  font-size: 42px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .flow .flowList__item__head .pop {
    font-size: 10.7692307692vw;
  }
}
.flow .flowList__item__content {
  background: #F7F7F7;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 30px;
  border-radius: 0 10px 10px 0;
  width: calc(100% - 140px);
}
@media screen and (max-width: 768px) {
  .flow .flowList__item__content {
    padding: 5.1282051282vw;
    border-radius: 0 0 2.5641025641vw 2.5641025641vw;
    width: 100%;
  }
}
.flow .flowList__item__content .ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
}
@media screen and (max-width: 768px) {
  .flow .flowList__item__content .ttl {
    gap: 3.0769230769vw 2.0512820513vw;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.flow .flowList__item__content .ttl__label {
  font-size: 16px;
  border: 1px solid var(--txt);
  border-radius: 3px;
  padding: 4px 10px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .flow .flowList__item__content .ttl__label {
    font-size: 2.8205128205vw;
    border: 0.2564102564vw solid var(--txt);
    border-radius: 0.7692307692vw;
    padding: 0.7692307692vw 0;
    width: 10.7692307692vw;
    text-align: center;
  }
}
.flow .flowList__item__content .ttl__main {
  font-size: 22px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .flow .flowList__item__content .ttl__main {
    font-size: 4.1025641026vw;
    width: calc(100% - 10.7692307692vw - 2.0512820513vw);
  }
}
.flow .flowList__item__content .ttl__main .tabBp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .flow .flowList__item__content .ttl__main .tabBp {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .flow .flowList__item__content .ttl__main .tabBp {
    display: none;
  }
}
.flow .flowList__item__content .ttl__iconTxt {
  font-size: 12px;
  padding-left: 27px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .flow .flowList__item__content .ttl__iconTxt {
    font-size: 2.5641025641vw;
    padding-left: 5.641025641vw;
  }
}
.flow .flowList__item__content .ttl__iconTxt::before {
  content: "";
  width: 21px;
  height: 21px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .flow .flowList__item__content .ttl__iconTxt::before {
    width: 4.6153846154vw;
    height: 4.6153846154vw;
  }
}
.flow .flowList__item__content .ttl__iconTxt--01::before {
  background: url("../img/top/flow/icon__flow01.svg") center center/contain no-repeat;
}
.flow .flowList__item__content .ttl__iconTxt--02::before {
  background: url("../img/top/flow/icon__flow02.svg") center center/contain no-repeat;
}
.flow .flowList__item__content .txt {
  font-size: 14px;
  margin-top: 14px;
}
@media screen and (max-width: 768px) {
  .flow .flowList__item__content .txt {
    font-size: 3.0769230769vw;
    margin-top: 4.6153846154vw;
  }
}

.modSection--plan {
  padding: 100px 0;
  margin-top: 100px;
  background: url("../img/top/plan/plan__bg.jpg") center center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .modSection--plan {
    padding: 15.3846153846vw 0;
    margin-top: 60px;
    background: url("../img/top/plan/sp/plan__bg.jpg") center center/cover no-repeat;
  }
}
.modSection--plan .modSection__ttl {
  color: #fff;
}
.modSection--plan .modSection__ttl__sub {
  color: rgba(255, 255, 255, 0.4);
}

.plan {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px;
  gap: 30px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 1024px) {
  .plan {
    margin-top: 7.6923076923vw;
    gap: 4.1025641026vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.plan__person {
  width: 400px;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .plan__person {
    display: none;
  }
}
.plan__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .plan__container {
    display: block;
  }
}
.plan__item {
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  min-height: 190px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .plan__item {
    border-radius: 2.5641025641vw;
    width: 100%;
    min-height: 39.2307692308vw;
  }
}
.plan__item--op {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  max-width: 850px;
  min-height: 111px;
  padding: 12px 0;
  background: #526172;
  border: 1px solid #fff;
  margin: 40px auto 0;
}
@media screen and (max-width: 1024px) {
  .plan__item--op {
    max-width: 100%;
    min-height: 33.3333333333vw;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.plan__item--op .plan__item__optxt {
  color: #fff;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  padding-right: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 768px) {
  .plan__item--op .plan__item__optxt {
    display: none;
  }
}
.plan__item--op .plan__item__txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  margin: 0 25px 0 45px;
}
@media screen and (max-width: 768px) {
  .plan__item--op .plan__item__txt {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .plan__item--op .plan__item__txt .op {
    font-size: 5.1282051282vw;
    margin: 0 2.5641025641vw;
  }
}
.plan__item--op .plan__item__txt .op__sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .plan__item--op .plan__item__txt .op__sp {
    font-size: 3.3333333333vw;
    display: block;
  }
}
.plan__item--op .plan__item__subTxt {
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.plan__item--op .plan__item__subTxt .label {
  background: rgba(255, 255, 255, 0.2);
  border: none;
}
@media screen and (max-width: 768px) {
  .plan__item--op .plan__item__subTxt .label {
    margin: 0 2.5641025641vw 0 0;
  }
}
.plan__item__txt {
  font-size: 28px;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .plan__item__txt {
    font-size: 4.6153846154vw;
  }
}
.plan__item__txt .img {
  display: block;
  width: 60px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .plan__item__txt .img {
    width: 10.2564102564vw;
    margin-right: 2.0512820513vw;
  }
}
.plan__item__txt .lg {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 63px;
  padding: 0 5px;
  display: inline-block;
  color: var(--orange);
}
@media screen and (max-width: 768px) {
  .plan__item__txt .lg {
    font-size: 12.8205128205vw;
    padding: 0 1.2820512821vw;
    line-height: 1.3;
  }
}
.plan__item__txt .md {
  font-size: 32px;
  font-weight: bold;
  color: var(--orange);
}
@media screen and (max-width: 768px) {
  .plan__item__txt .md {
    font-size: 6.1538461538vw;
  }
}
.plan__item__txt .sm {
  font-size: 20px;
  font-weight: bold;
  color: var(--orange);
}
@media screen and (max-width: 768px) {
  .plan__item__txt .sm {
    font-size: 3.8461538462vw;
  }
}
.plan__item__subTxt {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .plan__item__subTxt {
    font-size: 3.3333333333vw;
  }
}
.plan__item__subTxt .label {
  display: inline-block;
  font-size: 13px;
  border: 1px solid #3A4E62;
  padding: 4px 6px;
  border-radius: 3px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .plan__item__subTxt .label {
    display: block;
    font-size: 2.8205128205vw;
    border: 0.2564102564vw solid #3A4E62;
    padding: 1.0256410256vw 0;
    max-width: 16.4102564103vw;
    border-radius: 0.7692307692vw;
    margin: 0 auto 2.0512820513vw;
  }
}

.comparison {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .comparison {
    margin-top: 7.6923076923vw;
    overflow: scroll;
  }
}
@media screen and (max-width: 768px) {
  .comparison picture {
    width: 210vw;
    max-width: none;
  }
}

.casestudy {
  margin-top: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 42px 30px;
}
@media screen and (max-width: 768px) {
  .casestudy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 7.6923076923vw;
    gap: 4.1025641026vw;
  }
}
.casestudy__item {
  width: calc(50% - 15px);
  background: #F7F7F7;
  border-radius: 10px;
  padding: 18px 25px 50px;
}
@media screen and (max-width: 768px) {
  .casestudy__item {
    width: 100%;
    padding: 4.6153846154vw 4.6153846154vw 7.6923076923vw;
  }
}
.casestudy__item__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .casestudy__item__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 3.5897435897vw;
  }
}
.casestudy__item__head .img {
  width: 80px;
}
@media screen and (max-width: 768px) {
  .casestudy__item__head .img {
    width: 20.5128205128vw;
  }
}
.casestudy__item__head .ttl__txt {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .casestudy__item__head .ttl__txt {
    font-size: 4.1025641026vw;
  }
}
.casestudy__item__head .ttl__name {
  font-size: 14px;
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .casestudy__item__head .ttl__name {
    font-size: 3.5897435897vw;
    margin-top: 1.0256410256vw;
  }
}
.casestudy__item__txt {
  margin-top: 20px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .casestudy__item__txt {
    margin-top: 5.1282051282vw;
    font-size: 3.5897435897vw;
  }
}
.casestudyCta {
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .casestudyCta {
    margin-top: 15.3846153846vw;
  }
}
.casestudyCta__ttl {
  font-weight: bold;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .casestudyCta__ttl {
    font-size: 6.1538461538vw;
  }
}
.casestudyCta__txt {
  margin-top: 18px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .casestudyCta__txt {
    margin-top: 4.1025641026vw;
    font-size: 3.5897435897vw;
  }
}
.casestudyCta__btn {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .casestudyCta__btn {
    margin-top: 7.6923076923vw;
  }
}
.casestudyCta__btn .modBtn {
  margin: 0 auto;
}

.intro {
  padding: 20px 50px 30px 30px;
  border-radius: 10px;
  background: #EAEAEA;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 4.358974359vw 4.6153846154vw 9.2307692308vw;
    border-radius: 2.5641025641vw;
    gap: 11.0256410256vw;
  }
}
.intro__img {
  width: 450px;
  margin-top: -70px;
}
@media screen and (max-width: 768px) {
  .intro__img {
    width: 79.4871794872vw;
    margin-top: -12.5641025641vw;
  }
}
.intro__content {
  width: calc(100% - 450px - 50px);
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .intro__content {
    width: 100%;
  }
}
.intro__content__ttl {
  font-weight: bold;
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .intro__content__ttl {
    font-size: 4.6153846154vw;
  }
}
.intro__content__txt {
  font-size: 16px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .intro__content__txt {
    font-size: 3.5897435897vw;
    margin-top: 4.8717948718vw;
  }
}
.intro__content__name {
  text-align: right;
  font-weight: 600;
  font-size: 14px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .intro__content__name {
    font-size: 3.0769230769vw;
    margin-top: 7.9487179487vw;
  }
}

.faq {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .faq {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.faq__ttl {
  width: calc(100% - 800px);
}
@media screen and (max-width: 1024px) {
  .faq__ttl {
    width: 100%;
  }
}
.faq__ttl .modSection__ttl {
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .faq__ttl .modSection__ttl {
    text-align: center;
  }
}
.faq__list {
  width: 800px;
}
@media screen and (max-width: 1024px) {
  .faq__list {
    width: 100%;
    margin-top: 7.6923076923vw;
  }
}
.faq__list__item {
  background: #526173;
  border-radius: 10px;
  padding: 14px 20px;
}
@media screen and (max-width: 768px) {
  .faq__list__item {
    padding: 3.5897435897vw 4.6153846154vw;
  }
}
.faq__list__item:not(:first-child) {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .faq__list__item:not(:first-child) {
    margin-top: 4.1025641026vw;
  }
}
.faq__list__item .que {
  font-size: 18px;
  color: #fff;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .faq__list__item .que {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    font-size: 4.1025641026vw;
    padding-right: 5.1282051282vw;
  }
}
.faq__list__item .que__pop {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .faq__list__item .que__pop {
    font-size: 6.6666666667vw;
  }
}
.faq__list__item .que::before, .faq__list__item .que::after {
  content: "";
  width: 18px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .faq__list__item .que::before, .faq__list__item .que::after {
    width: 4.6153846154vw;
    height: 0.5128205128vw;
  }
}
.faq__list__item .que::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.faq__list__item .que.is-open::before {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}
.faq__list__item .ans {
  font-size: 16px;
  background: #fff;
  border-radius: 6px;
  margin-top: 18px;
  padding: 20px;
  display: none;
}
@media screen and (max-width: 768px) {
  .faq__list__item .ans {
    font-size: 3.5897435897vw;
    border-radius: 1.5384615385vw;
    margin-top: 4.1025641026vw;
    padding: 5.1282051282vw;
  }
}

.contactCta {
  background: url("../img/top/contactCta/contactCta__bg.png") center center/cover no-repeat;
  padding: 80px 20px;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contactCta {
    padding: 15.3846153846vw 5.1282051282vw;
    margin: 0 -5.1282051282vw;
    border-radius: 0;
  }
}
.contactCta .modSection__ttl {
  color: #fff;
  text-align: right;
  margin-right: 12%;
}
.contactCta .modSection__ttl .modSection__ttl__sub {
  color: rgba(255, 255, 255, 0.4);
}
.contactCta__person {
  width: 228px;
  height: auto;
  position: absolute;
  left: 10%;
  bottom: 0;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .contactCta__person {
    display: none;
  }
}
.contactCta__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .contactCta__list {
    margin-top: 7.6923076923vw;
    gap: 5.1282051282vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contactCta__list__item {
  max-width: 423px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contactCta__list__item {
    max-width: 100%;
  }
}

.company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .company {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.company__ttl {
  width: calc(100% - 800px);
}
@media screen and (max-width: 768px) {
  .company__ttl {
    width: calc(100% - 205.1282051282vw);
  }
}
@media screen and (max-width: 1024px) {
  .company__ttl {
    width: 100%;
  }
}
.company__ttl .modSection__ttl {
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .company__ttl .modSection__ttl {
    text-align: center;
  }
}
.company__list {
  width: 800px;
}
@media screen and (max-width: 768px) {
  .company__list {
    width: 205.1282051282vw;
  }
}
@media screen and (max-width: 1024px) {
  .company__list {
    width: 100%;
    margin-top: 7.6923076923vw;
  }
}
.company__list__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid rgba(16, 39, 65, 0.2);
  padding: 26px 0;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .company__list__inner {
    padding: 6.1538461538vw 0;
    font-size: 3.0769230769vw;
  }
}
.company__list__inner:first-child {
  border-top: 1px solid rgba(16, 39, 65, 0.2);
}
.company__list__inner dt {
  width: 220px;
}
@media screen and (max-width: 768px) {
  .company__list__inner dt {
    width: 24.358974359vw;
  }
}
.company__list__inner dd {
  width: calc(100% - 220px);
}
@media screen and (max-width: 768px) {
  .company__list__inner dd {
    width: calc(100% - 24.358974359vw);
  }
}
.company__list__inner dd span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.contact__txt {
  text-align: center;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 50px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .contact__txt {
    margin-top: 7.6923076923vw;
    font-size: 3.0769230769vw;
  }
}
.contact__inner {
  margin: 60px auto 0;
  max-width: 850px;
}
@media screen and (max-width: 768px) {
  .contact__inner {
    max-width: 100%;
    margin: 10.2564102564vw auto 0;
  }
}

.modSection__inner--table {
  overflow: scroll;
}

.cmpTbl {
  margin-top: 58px;
  width: 1160px;
  table-layout: fixed;
  border-spacing: 0;
  border-collapse: separate;
}
@media screen and (max-width: 768px) {
  .cmpTbl {
    margin-top: 7.6923076923vw;
    width: 210vw;
  }
}
.cmpTbl__th {
  padding: 0 14px;
  margin: 0;
  width: 196px;
  height: 79px;
  border-left: 1px solid #fff;
  font-size: 16px;
  font-weight: 400;
  background: #526173;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .cmpTbl__th {
    padding: 0 2.5641025641vw;
    width: 35.3846153846vw;
    height: 14.358974359vw;
    font-size: 3.0769230769vw;
  }
}
.cmpTbl__th.is-featured {
  position: relative;
  background: var(--orange);
}
.cmpTbl__th.is-featured::before {
  content: "";
  width: calc(100% + 12px);
  height: 117%;
  border-right: 8px solid var(--orange);
  border-left: 8px solid var(--orange);
  border-top: 8px solid var(--orange);
  border-radius: 10px 10px 0 0;
  position: absolute;
  top: 50%;
  left: 49.5%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .cmpTbl__th.is-featured::before {
    width: calc(100% + 3.0769230769vw);
    border-right: 2.0512820513vw solid var(--orange);
    border-left: 2.0512820513vw solid var(--orange);
    border-top: 2.0512820513vw solid var(--orange);
    border-radius: 2.5641025641vw 2.5641025641vw 0 0;
  }
}
.cmpTbl__th--rowhead {
  width: 180px;
  font-size: 14px;
  font-weight: bold;
  background: #EAEAEA;
  border-top: 2px solid #fff;
  text-align: left;
  color: var(--txt);
}
@media screen and (max-width: 768px) {
  .cmpTbl__th--rowhead {
    width: 32.8205128205vw;
    font-size: 2.8205128205vw;
    border-top: 0.5128205128vw solid #fff;
  }
}
.cmpTbl__th small {
  font-size: 11px;
  font-weight: 400;
  color: #526173;
}
@media screen and (max-width: 768px) {
  .cmpTbl__th small {
    font-size: 2.0512820513vw;
  }
}
.cmpTbl__th--brand {
  font-weight: bold;
}
.cmpTbl__th--top {
  opacity: 0;
}
.cmpTbl__th--right {
  border-radius: 0 10px 0 0;
}
@media screen and (max-width: 768px) {
  .cmpTbl__th--right {
    border-radius: 0 2.5641025641vw 0 0;
  }
}
.cmpTbl__th--left {
  border-radius: 0 0 0 10px;
}
@media screen and (max-width: 768px) {
  .cmpTbl__th--left {
    border-radius: 0 0 0 2.5641025641vw;
  }
}
.cmpTbl__th--tleft {
  border-radius: 10px 0 0 0;
}
@media screen and (max-width: 768px) {
  .cmpTbl__th--tleft {
    border-radius: 2.5641025641vw 0 0 0;
  }
}
.cmpTbl__td {
  padding: 20px 14px 0;
  margin: 0;
  width: 196px;
  height: 92px;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  vertical-align: top;
  border-right: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
}
@media screen and (max-width: 768px) {
  .cmpTbl__td {
    padding: 3.0769230769vw 2.0512820513vw 0;
    width: 35.3846153846vw;
    height: 16.6666666667vw;
    font-size: 2.0512820513vw;
  }
}
.cmpTbl__td.is-featured {
  position: relative;
}
.cmpTbl__td.is-featured::before {
  content: "";
  width: calc(100% + 12px);
  height: 103%;
  border-right: 8px solid var(--orange);
  border-left: 8px solid var(--orange);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .cmpTbl__td.is-featured::before {
    width: calc(100% + 3.0769230769vw);
    border-right: 2.0512820513vw solid var(--orange);
    border-left: 2.0512820513vw solid var(--orange);
  }
}
.cmpTbl__td.is-featured--last::before {
  border-bottom: 8px solid var(--orange);
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 768px) {
  .cmpTbl__td.is-featured--last::before {
    border-bottom: 2.0512820513vw solid var(--orange);
    border-radius: 0 0 2.5641025641vw 2.5641025641vw;
  }
}
.cmpTbl__td img {
  max-width: 30px;
  margin: 0 auto 3px;
}
@media screen and (max-width: 768px) {
  .cmpTbl__td img {
    max-width: 5.641025641vw;
    margin: 0 auto 0.7692307692vw;
  }
}
.cmpTbl__td--right {
  border-radius: 0 0 10px 0;
}
@media screen and (max-width: 768px) {
  .cmpTbl__td--right {
    border-radius: 0 0 2.5641025641vw 0;
  }
}/*# sourceMappingURL=style.css.map */