@charset "UTF-8";
html {
  min-height: 100%;
}

body {
  background: #d8e5fa;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp {
    display: block;
  }
  br.sp {
    display: inline;
  }
}
#mainHeader {
  position: absolute;
  width: 100%;
  margin: 0 auto;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #mainHeader {
    padding-top: 8.625rem;
  }
}
#mainHeader .logo {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  gap: 0.875rem;
  padding-top: 2rem;
}
@media screen and (max-width: 768px) {
  #mainHeader .logo {
    flex-direction: column-reverse;
  }
}
#mainHeader .logo p {
  font-size: 0.875rem;
  line-height: 1;
}
#mainHeader .logo-img {
  width: 11.25rem;
}

/*/////////////////////////////////////////
//  共通
/////////////////////////////////////////*/
.inner {
  max-width: 64.875rem;
  width: 100%;
  padding: 0 2.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 1rem;
  }
}

.section-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  font-size: 1.75rem;
  font-weight: 700;
  color: #062663;
  line-height: 1.4285714286;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .section-ttl {
    font-size: 1.5rem;
    line-height: 1.4583333333;
  }
}
.section-ttl:before, .section-ttl:after {
  content: "";
  display: inline-block;
  width: 3.59375rem;
  height: 4.65625rem;
  background-image: url("../img/ttl-obj.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .section-ttl:before, .section-ttl:after {
    content: none;
  }
}
.section-ttl span em {
  color: #0dc284;
}
.section-ttl > em {
  position: absolute;
  height: 3.5rem;
  background: #0dc284;
  color: #fff;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2.375rem;
  top: -4.25rem;
}
@media screen and (max-width: 768px) {
  .section-ttl > em {
    font-size: 0.875rem;
    padding: 0 1.25rem;
  }
}
.section-ttl > em:after {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 0.8125rem;
  background: #0dc284;
  clip-path: polygon(100% 100%, 0% 0%, 100% 0%);
  position: absolute;
  bottom: -0.8125rem;
  left: 4.625rem;
}

.check {
  display: flex;
  gap: 0.40625rem;
}
.check:before {
  content: "";
  display: inline-block;
  width: 1.28125rem;
  height: 1.241875rem;
  margin-top: 0.375rem;
  background-image: url("../img/icon-check.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.check > span, .check > em {
  display: inline-block;
  width: calc(100% - 1.6875rem);
}

.btn-area {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 2rem;
  max-width: 47.75rem;
  box-sizing: border-box;
  background: #fff;
  border-radius: 50px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .btn-area {
    border-radius: 1rem;
    padding: 1rem;
    flex-direction: column;
    gap: 0.75rem;
  }
}
.btn-area li {
  width: calc((100% - 0.75rem) / 2);
}
@media screen and (max-width: 768px) {
  .btn-area li {
    width: 100%;
  }
}
.btn-area li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3rem;
  font-size: 0.875rem;
  font-weight: 700;
  position: relative;
  border-radius: 50px;
}
@media screen and (max-width: 940px) {
  .btn-area li a {
    padding-left: 1rem;
    padding-right: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .btn-area li a {
    font-size: 0.75rem;
    padding-left: 0;
    padding-right: 0;
  }
}
.btn-area li a .arrow {
  position: absolute;
  right: 1rem;
  color: #fff; /* 円の色 */
  width: 20px;
  height: 20px;
  overflow: initial !important;
}
.btn-area li a .arrow polyline {
  stroke: #062663; /* 矢印の色 */
}
.btn-area.cta-btn-area {
  margin-top: 1.25rem;
}
.btn-area.cta-btn-area a {
  color: #fff;
}
.btn-area.cta-btn-area li:nth-child(1) a {
  background: #062663;
}
.btn-area.cta-btn-area li:nth-child(2) a {
  background: #0dc284;
}
.btn-area.cta-btn-area li:nth-child(2) a .arrow polyline {
  stroke: #0dc284; /* 矢印の色 */
}
.btn-area.common-bar {
  background: linear-gradient(135deg, #0dc284 0%, #4fb8e5 100%);
  margin-top: 1.875rem;
}
.btn-area.common-bar li a {
  color: #395384;
  background: #fff;
  border: 0.125rem solid #395384;
}
@media screen and (max-width: 768px) {
  .btn-area.common-bar li a {
    font-size: 0.875rem;
  }
}
.btn-area.common-bar li a .arrow {
  color: #395384;
}
.btn-area.common-bar li a .arrow polyline {
  stroke: #fff; /* 矢印の色 */
}

.section-group {
  background: linear-gradient(to bottom, #cff6f9 0%, #e2f2fa 100%);
}

.contents-box {
  background: #fff;
  border-radius: 0.5rem;
  padding: 4rem 4.25rem;
}
@media screen and (max-width: 768px) {
  .contents-box {
    padding: 2rem 1.6875rem;
  }
}

.ttl-f {
  height: 4.25rem;
  background: #062663;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 24.125rem;
  padding: 0 4.5625rem;
  margin: 0 auto -2.125rem;
}
@media screen and (max-width: 768px) {
  .ttl-f {
    min-width: 19.4375rem;
    font-size: 1.25rem;
    height: 3.9375rem;
    padding: 0 3.625rem;
    margin-bottom: -1.96875rem;
  }
}
.ttl-f:after {
  content: "";
  width: 0.9375rem;
  height: 1.25rem;
  background: #062663;
  clip-path: polygon(100% 100%, 0% 0%, 100% 0%);
  position: absolute;
  bottom: -1.1875rem;
  left: 7.5rem;
}

/*/////////////////////////////////////////
//  コンテンツ
/////////////////////////////////////////*/
/*/////////////////////////////////////////
//  KV
/////////////////////////////////////////*/
#lp-kv {
  background: #cff6f9;
  position: relative;
}
@media screen and (max-width: 768px) {
  #lp-kv {
    padding-bottom: 0;
    padding-top: 5rem;
    background-image: url("../img/img-mv_sp@2x.png");
    background-size: 100%;
    background-position: center 0;
    background-repeat: no-repeat;
  }
}
#lp-kv:before {
  content: "";
  display: inline-block;
  width: 21.5625rem;
  height: 22.125rem;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/img-mv1@2x.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  #lp-kv:before {
    content: none;
  }
}
#lp-kv:after {
  content: "";
  display: inline-block;
  width: 58.5625rem;
  height: 35rem;
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url("../img/img-mv2@2x.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  #lp-kv:after {
    content: none;
  }
}
#lp-kv .inner {
  height: 35rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #lp-kv .inner {
    height: initial;
    padding: 10.625rem 0.625rem 6.875rem;
  }
}
#lp-kv .kv-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#lp-kv .ttl-sup {
  font-size: 1rem;
  line-height: 1;
  margin-top: 0.5rem;
}
#lp-kv .kv-txt {
  background: #fff;
  width: 100%;
  height: 12.25rem;
  padding: 2rem 4.1875rem;
  border-radius: 0.5rem 4rem;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  #lp-kv .kv-txt {
    border-radius: 0.5rem 3rem;
    padding: 2rem 2rem;
    height: initial;
  }
}
#lp-kv .kv-txt .txt-main {
  display: flex;
  flex-direction: column;
  font-size: 1.5rem;
  color: #062663;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  border-bottom: dashed 1px #395384;
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #lp-kv .kv-txt .txt-main {
    font-size: 1.25rem;
    line-height: 1.45;
  }
}
#lp-kv .kv-txt .txt-main span {
  align-self: flex-end;
}
@media screen and (max-width: 768px) {
  #lp-kv .kv-txt .txt-main span {
    align-self: initial;
  }
}
#lp-kv .kv-txt .txt-sub {
  font-size: 1.25rem;
  color: #395384;
  font-weight: 700;
  margin-top: 1rem;
  line-height: 1.5;
}
#lp-kv .kv-txt .txt-sub span {
  color: #0dc284;
}
@media screen and (max-width: 768px) {
  #lp-kv .ttl-mv1 {
    width: 11.34375rem;
  }
  #lp-kv .ttl-mv2 {
    width: 9.363125rem;
  }
  #lp-kv .ttl-mv3 {
    width: 14.945rem;
  }
}

/*/////////////////////////////////////////
//  cta
/////////////////////////////////////////*/
.md-cta h2 {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}
@media screen and (max-width: 768px) {
  .md-cta h2 {
    flex-direction: column;
    line-height: 1;
  }
}
.md-cta h2 span {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .md-cta h2 span {
    line-height: 1.5;
  }
  .md-cta h2 span:before, .md-cta h2 span:after {
    width: 1.2075rem;
    height: 1.460625rem;
  }
}
.md-cta.type2 h2 {
  display: block;
}
@media screen and (max-width: 768px) {
  .md-cta.type2 h2 {
    font-size: 1.25rem;
    display: flex;
    flex-direction: column;
    line-height: 1.5;
    gap: 0;
  }
}
.md-cta.type2 h2 span {
  display: inline-flex;
}
.md-cta .cta-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

/*/////////////////////////////////////////
//  index
/////////////////////////////////////////*/
#index {
  background: #ffffff;
}
#index .index-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
}
#index .index-top .txt1 {
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.095em;
}
#index .index-top .txt2 {
  font-size: 1.625rem;
  line-height: 1.6153846154;
  color: #0dc284;
  font-weight: 700;
}
#index .index-top .txt3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #395384;
}
#index .award {
  background: #062663;
  padding: 2rem 0;
}
#index .award ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  #index .award ul {
    gap: 0.5rem 0.5rem;
  }
}
#index .award ul li {
  width: calc((100% - 1.5rem) / 4);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffe970;
  position: relative;
  text-align: center;
  padding: 0 2rem;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  #index .award ul li {
    height: 3.99125rem;
    width: calc((100% - 1rem) / 2);
    padding: 0;
    line-height: 1.1;
  }
}
#index .award ul li:before, #index .award ul li:after {
  content: "";
  display: inline-block;
  width: 3.35625rem;
  height: 5.819375rem;
  position: absolute;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  #index .award ul li:before, #index .award ul li:after {
    width: 2.301875rem;
    height: 3.99125rem;
  }
}
#index .award ul li:before {
  background-image: url("../img/reaf-left.svg");
  left: 0;
}
#index .award ul li:after {
  background-image: url("../img/reaf-right.svg");
  right: 0;
}
#index .award ul li.award1 div, #index .award ul li.award2 div {
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #index .award ul li.award1 div, #index .award ul li.award2 div {
    padding-bottom: 0;
  }
}
#index .award ul li.award1 p, #index .award ul li.award2 p {
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #index .award ul li.award1 p, #index .award ul li.award2 p {
    font-size: 0.75rem;
  }
}
#index .award ul li.award1 p span, #index .award ul li.award2 p span {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  #index .award ul li.award1 p span, #index .award ul li.award2 p span {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 768px) {
  #index .award ul li.award1 div {
    padding-bottom: 0.5rem;
  }
}
#index .award ul li.award1 div > span {
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  #index .award ul li.award1 div > span {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 768px) {
  #index .award ul li.award2 div {
    padding-bottom: 0.75rem;
  }
}
#index .award ul li.award2 div > span {
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #index .award ul li.award2 div > span {
    font-size: 0.75rem;
  }
}
#index .award ul li.award3 {
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #index .award ul li.award3 {
    font-size: 0.75rem;
  }
}
#index .award ul li.award4 {
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #index .award ul li.award4 {
    font-size: 0.75rem;
  }
}
#index .award ul li.award4 p span {
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  #index .award ul li.award4 p span {
    font-size: 0.75rem;
  }
}

/*/////////////////////////////////////////
//  Worry
/////////////////////////////////////////*/
#worry {
  padding: 5.9375rem 0;
  background: linear-gradient(to bottom, #cff6f9 0%, #e2f2fa 100%);
}
@media screen and (max-width: 768px) {
  #worry {
    padding: 4rem 0;
  }
}
#worry .worry-top {
  background: #fff;
  border-radius: 0.5rem 0.5rem 0 0;
  position: relative;
  padding: 2.5rem 0.75rem 1rem;
}
#worry .worry-top:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 4.5625rem;
  position: absolute;
  left: 0;
  bottom: -4.5625rem;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
#worry .worry-top .worry-top-ttl {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #000000;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  #worry .worry-top .worry-top-ttl {
    flex-direction: column;
    line-height: 1;
    font-size: 1.5rem;
    align-items: center;
    gap: 0.75rem;
  }
}
#worry .worry-top .worry-top-ttl span {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1.5rem;
  background: #a3b4b6;
  border-radius: 3.125rem;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4285714286;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  #worry .worry-top .worry-top-ttl span {
    font-size: 1.5rem;
    padding: 0.5rem 1.25rem;
  }
}
#worry .worry-top .worry-list {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #worry .worry-top .worry-list {
    gap: 1rem 0.25rem;
  }
}
#worry .worry-top .worry-list li {
  width: calc((100% - 6rem) / 5);
  position: relative;
}
@media screen and (max-width: 768px) {
  #worry .worry-top .worry-list li {
    width: calc((100% - 1rem) / 2);
  }
}
#worry .worry-top .worry-list li span {
  display: block;
  position: relative;
  z-index: 2;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  padding-top: 3.625rem;
}
@media screen and (max-width: 768px) {
  #worry .worry-top .worry-list li span {
    font-size: 0.9375rem;
  }
}
#worry .worry-top .worry-list li:before {
  content: "";
  display: inline-block;
  width: 1.8125rem;
  height: 2rem;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 1rem;
  z-index: 1;
  background-image: url("../img/icon-worry.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
#worry .worry-top .worry-list li:after {
  content: "";
  display: inline-block;
  width: 5.6875rem;
  height: 5.6875rem;
  background: #eceff0;
  border-radius: 50%;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
#worry .worry-middle-ttl {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background: #062663;
  line-height: 1.5;
  width: 100%;
  padding: 0.26em 3em 0.65em;
  text-align: center;
  position: relative;
  border-radius: 2em;
  margin: 4.25rem auto 0.3em;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #worry .worry-middle-ttl {
    border-radius: 1.25rem;
    font-size: 1.5rem;
    padding: 0.9375rem 0;
    width: 100%;
    margin-top: 3rem;
  }
}
#worry .worry-middle-ttl:after {
  position: absolute;
  content: "";
  width: 0.97em;
  height: 1.25em;
  left: 12.5rem;
  bottom: -0.9em;
  background: url(../img/deco_tail.svg) no-repeat center top/contain;
}
@media screen and (max-width: 768px) {
  #worry .worry-middle-ttl:after {
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
#worry .worry-middle-ttl span {
  display: flex;
  justify-content: center;
}
#worry .worry-middle-ttl span:before, #worry .worry-middle-ttl span:after {
  position: relative;
  top: 0.5rem;
}
@media screen and (max-width: 768px) {
  #worry .worry-middle-ttl span {
    line-height: 1.5;
  }
  #worry .worry-middle-ttl span:before, #worry .worry-middle-ttl span:after {
    width: 1.2075rem;
    height: 1.460625rem;
  }
}
#worry .worry-middle-ttl span {
  display: inline-block;
  padding: 0 0.25em;
  color: #ffe970;
}
@media screen and (max-width: 768px) {
  #worry .worry-middle-ttl span {
    margin-top: -0.625rem;
    font-size: 1.5rem;
  }
}
#worry .worry-middle-ttl span:before {
  display: inline-block;
  content: "";
  width: 0.8em;
  height: 1.6em;
  background: url(../img/deco_01_y.svg) no-repeat left top/contain;
}
#worry .worry-middle-ttl span:after {
  display: inline-block;
  content: "";
  width: 0.8em;
  height: 1.6em;
  background: url(../img/deco_02_y.svg) no-repeat right top/contain;
}
#worry .worry-middle-txt {
  font-size: 1.125rem;
  line-height: 2;
  text-align: center;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  #worry .worry-middle-txt {
    padding: 0 1rem;
  }
}
#worry .worry-bottom {
  margin-top: 3rem;
  background: linear-gradient(135deg, #a2e9ef 0%, #a8d9f1 100%);
  padding: 2.5rem 6.25rem;
  border-radius: 0.5rem 0.5rem 0 0;
}
@media screen and (max-width: 768px) {
  #worry .worry-bottom {
    padding: 3rem 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
  }
}
#worry .worry-bottom .worry-bottom-ttl {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 2.1333333333;
  text-align: center;
  color: #062663;
  text-decoration: underline;
  text-decoration-color: #062663;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.75rem;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media screen and (max-width: 768px) {
  #worry .worry-bottom .worry-bottom-ttl {
    font-size: 1.5rem;
    line-height: 2.6666666667;
  }
}

/*/////////////////////////////////////////
//  difference
/////////////////////////////////////////*/
#difference {
  background: #cff6f9;
  padding-top: 5.25rem;
}
@media screen and (max-width: 768px) {
  #difference {
    padding-top: 4rem;
  }
}
#difference .difference-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#difference .difference-list div {
  display: flex;
}
@media screen and (max-width: 768px) {
  #difference .difference-list div {
    flex-direction: column;
  }
}
#difference .difference-list div dt {
  border-radius: 0.5rem 0 0 0.5rem;
  background: #e9e9e9;
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
  padding: 1.75rem 0 2rem 1.75rem;
  width: 16.25rem;
  border: 0.25rem solid #e9e9e9;
}
@media screen and (max-width: 768px) {
  #difference .difference-list div dt {
    width: 100%;
    border-radius: 0.5rem 0.5rem 0 0;
    padding: 0.75rem 0;
    text-align: center;
    justify-content: center;
  }
}
#difference .difference-list div dd {
  background: #fbfbfb;
  display: flex;
  align-items: center;
  padding-left: 1.5rem;
  font-size: 1rem;
  line-height: 2;
  color: #000;
  flex-grow: 1;
  border: 0.25rem solid #fbfbfb;
  border-radius: 0 0.5rem 0.5rem 0;
}
@media screen and (max-width: 768px) {
  #difference .difference-list div dd {
    border-radius: 0 0 0.5rem 0.5rem;
    padding: 1.5rem 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  #difference .difference-list div dd ul {
    gap: 1rem;
    display: flex;
    flex-direction: column;
  }
}
#difference .difference-list div dd li {
  display: flex;
}
@media screen and (max-width: 768px) {
  #difference .difference-list div dd li {
    line-height: 1.125;
  }
}
#difference .difference-list div dd li:before {
  content: "・";
}
#difference .difference-list div.ib dt {
  background: #ffe970;
  border: 0.25rem solid #ffe970;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  #difference .difference-list div.ib dt {
    align-items: center;
  }
}
#difference .difference-list div.ib dd {
  background: #fffbe8;
  border: 0.25rem solid #ffe970;
  font-weight: 700;
  color: #ab850a;
}

/*/////////////////////////////////////////
//  strength
/////////////////////////////////////////*/
#strength {
  margin-top: 8.375rem;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  #strength {
    margin-top: 6.375rem;
  }
}
#strength .inner {
  position: relative;
  padding-bottom: 7.8125rem;
}
#strength .strength-list {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}
@media screen and (max-width: 768px) {
  #strength .strength-list {
    flex-direction: column;
  }
}
#strength .strength-list .list-items {
  background: #fff;
  width: calc((100% - 1.5rem) / 3);
  padding: 1.875rem 1.5rem 2.375rem;
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  #strength .strength-list .list-items {
    width: 100%;
  }
}
#strength .strength-list .list-items h3 {
  font-size: 1.25rem;
  color: #062663;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
#strength .strength-list .list-items h3 span {
  font-size: 1.75rem;
  color: #0dc284;
}
#strength .strength-list .list-items figure {
  width: 11.5rem;
  padding: 0.75rem;
  background: linear-gradient(to bottom, #cff6f9 0%, #e2f2fa 100%);
  border-radius: 50%;
  overflow: hidden;
  margin: 0.5rem auto;
}
#strength .strength-list .list-items ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media screen and (max-width: 768px) {
  #strength .strength-list .list-items ul {
    width: -moz-fit-content;
    width: fit-content;
    margin: 1rem auto 0;
  }
}
#strength .strength-list .list-items ul li {
  font-size: 1rem;
  line-height: 1.5;
  color: #395384;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #strength .strength-list .list-items ul li:before {
    margin-top: 0.125rem;
  }
}
#strength .common-bar {
  position: absolute;
  bottom: -3rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 47.75rem;
}
@media screen and (max-width: 768px) {
  #strength .common-bar {
    bottom: -4.375rem;
    width: calc(100% - 2rem);
    margin: 0 1rem;
  }
}

/*/////////////////////////////////////////
//  works
/////////////////////////////////////////*/
#works {
  position: relative;
  background: linear-gradient(to bottom, #cff6f9 0%, #e2f2fa 100%);
  z-index: 0;
  padding: 10.25rem 0 5rem;
}
@media screen and (max-width: 768px) {
  #works {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }
  #works .contents-box {
    padding: 3.4375rem 1rem 1.25rem;
  }
}
#works .works-block:not(:first-child) {
  margin-top: 1.5rem;
}
#works .works-list {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  gap: 0.5rem 3.5rem;
}
@media screen and (max-width: 768px) {
  #works .works-list {
    grid-auto-flow: row;
    grid-template-rows: auto;
    gap: 0.5rem;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
#works .works-list li {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.125rem;
  font-weight: 700;
  color: #395384;
}
@media screen and (max-width: 768px) {
  #works .works-list li {
    width: -moz-fit-content;
    width: fit-content;
  }
}
#works .works-list li span {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #works .works-list li span {
    flex-direction: column;
    align-items: flex-start;
  }
}
#works .works-list li em {
  font-size: 0.875rem;
  font-weight: 400;
}
#works .tools {
  display: flex;
  flex-direction: column;
  max-width: 29.25rem;
  width: 100%;
  margin: 1.375rem auto 0;
}
#works .tools h3 {
  background: #ffe970;
  border: 0.25rem solid #ffe970;
  border-radius: 0.5rem 0.5rem 0 0;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  padding: 0.3125rem;
  color: #000;
}
#works .tools p {
  background: #fffbe8;
  border: 0.25rem solid #ffe970;
  border-top: none;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #000;
  border-radius: 0 0 0.5rem 0.5rem;
  font-weight: 500;
  text-align: center;
}
#works .per-list {
  display: flex;
  gap: 2rem;
  justify-content: center;
  padding: 4.4375rem 4rem 3rem;
}
@media screen and (max-width: 768px) {
  #works .per-list {
    flex-direction: column;
    gap: 1rem;
  }
}
#works .per-list li {
  width: calc((100% - 6rem) / 4);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #works .per-list li {
    width: 100%;
  }
}
#works .per-list li figure {
  width: 8.25rem;
  height: 8.25rem;
  background: linear-gradient(to bottom, #cff6f9 0%, #e2f2fa 100%);
  overflow: hidden;
  border-radius: 50%;
  padding: 0.75rem;
}
#works .per-list li h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #395384;
  margin-top: 0.5rem;
  text-align: center;
  line-height: 1.5;
}
#works .per-list li p {
  font-size: 0.875rem;
  color: #395384;
  margin-top: 0.125rem;
  line-height: 1.4285714286;
  text-align: center;
}

/*/////////////////////////////////////////
//  flow
/////////////////////////////////////////*/
#flow {
  overflow: hidden;
  padding-top: 5rem;
}
@media screen and (max-width: 768px) {
  #flow {
    padding-top: 4rem;
  }
}
#flow .inner {
  max-width: initial;
}
@media screen and (max-width: 1560px) {
  #flow .inner {
    max-width: 64.875rem;
  }
}
#flow .flow-wrapper {
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1560px) {
  #flow .flow-wrapper {
    max-width: initial;
    position: relative;
    z-index: 1;
    overflow: auto;
    width: initial;
    margin-left: initial;
    margin-right: calc(50% - 50vw);
    padding-bottom: 1.3125rem;
    padding-right: 1rem;
    cursor: grab;
  }
}
#flow .flow-wrapper:active {
  cursor: grabbing;
}
#flow .flow-wrapper::-webkit-scrollbar {
  height: 4px;
  background-color: #fff;
}
#flow .flow-wrapper::-webkit-scrollbar-thumb {
  background: #395384;
  height: 4px;
  border-radius: 3.125rem;
}
#flow .flow-wrapper .list-flow {
  display: flex;
  gap: 0.58125rem;
  width: calc(15.084375rem * 5 + 0.58125rem * 4);
}
@media screen and (max-width: 768px) {
  #flow .flow-wrapper .list-flow {
    width: calc((100vw - 2rem) * 4 + 1rem * 3);
  }
}
#flow .flow-wrapper .list-flow .items {
  width: 15.084375rem;
  height: 12.215rem;
  background: #fff;
  border-radius: 0.5rem;
  padding: 2.75rem 2.125rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
#flow .flow-wrapper .list-flow .items:not(:last-child):before {
  content: "";
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: -0.4375rem;
  z-index: 2;
  transform: rotate(45deg);
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
}
#flow .flow-wrapper .list-flow .items:not(:last-child):after {
  content: "";
  display: inline-block;
  width: 2.0625rem;
  height: 2.0625rem;
  background: #062663;
  position: absolute;
  z-index: 1;
  right: -1.25rem;
  top: 0;
  bottom: 0;
  margin: auto 0;
  border-radius: 50%;
}
#flow .flow-wrapper .list-flow .items .num {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #0dc284;
  font-family: Arial, Helvetica, sans-serif;
}
#flow .flow-wrapper .list-flow .items h3 {
  border-bottom: 0.09375rem dashed #395384;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
  color: #395384;
  width: 100%;
  text-align: center;
  padding-bottom: 1rem;
}
#flow .flow-wrapper .list-flow .items p {
  width: 100%;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  padding-top: 1rem;
  color: #395384;
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}
#flow .flow-wrapper .list-flow .items p em {
  font-size: 0.8125rem;
}
#flow .sg-txt {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #395384;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #flow .sg-txt {
    font-size: 1.125rem;
  }
}
#flow .sg-txt span {
  display: inline-block;
  background: #fff;
  padding: 0 0.5rem;
  border: 0.0625rem solid #395384;
}

/*/////////////////////////////////////////
//  team
/////////////////////////////////////////*/
#team {
  margin-top: 4.125rem;
  position: relative;
  padding-bottom: 9.375rem;
}
@media screen and (max-width: 768px) {
  #team {
    margin-top: 2rem;
    padding-bottom: 8rem;
  }
}
#team .team-list {
  display: flex;
  gap: 0.75rem;
}
@media screen and (max-width: 768px) {
  #team .team-list {
    flex-wrap: wrap;
  }
}
#team .team-list .team-items {
  width: calc((100% - 2.25rem) / 4);
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.0625rem 1rem 1.0625rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #team .team-list .team-items {
    width: 100%;
  }
}
#team .team-list .team-items figure {
  width: 8.25rem;
  height: 8.25rem;
  padding: 0.75rem;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(to bottom, #cff6f9 0%, #e2f2fa 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}
#team .team-list .team-items h3 {
  width: 100%;
  text-align: center;
  margin-top: 0.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #395384;
  border-bottom: 0.0625rem dashed #395384;
  padding-bottom: 0.5rem;
  line-height: 1.3333333333;
}
@media screen and (max-width: 768px) {
  #team .team-list .team-items h3 {
    max-width: 12.5rem;
    width: 100%;
  }
}
#team .team-list .team-items p {
  font-size: 1rem;
  color: #395384;
  line-height: 1.5;
  margin-top: 0.25rem;
}
#team .team-list .team-items:nth-child(1) h3 {
  font-size: 1rem;
  line-height: 1.5;
}
#team .common-bar {
  position: absolute;
  bottom: -3rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 47.75rem;
}
@media screen and (max-width: 768px) {
  #team .common-bar {
    bottom: -4.375rem;
    width: calc(100% - 2rem);
    margin: 0 1rem;
  }
}

/*/////////////////////////////////////////
//  price
/////////////////////////////////////////*/
#price {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background: linear-gradient(to bottom, #cff6f9 0%, #e2f2fa 100%);
}
@media screen and (max-width: 768px) {
  #price {
    padding-bottom: 4rem;
  }
}
#price .contents-box {
  padding: 4.5rem 4.25rem 1.5rem;
}
@media screen and (max-width: 768px) {
  #price .contents-box {
    padding: 4.5rem 1.625rem 1.25rem;
  }
}
#price .contents-box p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #395384;
  margin-top: 0.75rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #price .contents-box p {
    font-size: 0.875rem;
  }
}
#price .price-table {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
#price .price-table .price-wrapper {
  display: flex;
}
@media screen and (max-width: 768px) {
  #price .price-table .price-wrapper {
    flex-direction: column;
  }
}
#price .price-table .price-wrapper > dt {
  width: 16.25rem;
  background: #e7f2ff;
  border-radius: 0.5rem 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  padding-left: 2rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: #395384;
  line-height: 1.7777777778;
}
@media screen and (max-width: 768px) {
  #price .price-table .price-wrapper > dt {
    width: 100%;
    border-radius: 0.5rem 0.5rem 0 0;
    padding: 0.5rem 0;
    text-align: center;
  }
}
#price .price-table .price-wrapper > dt span {
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 500;
  display: inline-block;
  margin-left: -0.375rem;
}
#price .price-table .price-wrapper > dd {
  flex-grow: 1;
  background: #fbfbfb;
  padding: 1.6875rem 1.5rem;
}
@media screen and (max-width: 768px) {
  #price .price-table .price-wrapper > dd {
    padding: 1.5rem 1.5rem;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #price .price-table .price-wrapper > dd .price-detail {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}
#price .price-table .price-wrapper > dd .price-detail div {
  display: flex;
  gap: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #price .price-table .price-wrapper > dd .price-detail div {
    flex-direction: column;
    gap: 0rem;
  }
}
#price .price-table .price-wrapper > dd .price-detail div dt {
  width: 14.8125rem;
  color: #395384;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  #price .price-table .price-wrapper > dd .price-detail div dt {
    width: 100%;
  }
}
#price .price-table .price-wrapper > dd .price-detail div dd {
  flex-grow: 1;
  color: #de4060;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #price .price-table .price-wrapper > dd .price-detail div dd {
    width: 100%;
    flex-grow: initial;
    line-height: 1.3;
    align-items: flex-end;
  }
}
#price .price-table .price-wrapper > dd .price-detail div dd span {
  font-size: 0.875rem;
  line-height: 1.3;
}
#price .price-table .price-wrapper > dd .price-detail div dd:before {
  content: "：";
  color: #395384;
  margin-right: 0.5rem;
}
@media screen and (max-width: 768px) {
  #price .price-table .price-wrapper > dd .price-detail div dd:before {
    content: none;
  }
}

/*/////////////////////////////////////////
//  compaision
/////////////////////////////////////////*/
#compaision {
  background: linear-gradient(to bottom, #cff6f9 0%, #e2f2fa 100%);
  padding-top: 5.25rem;
}
@media screen and (max-width: 768px) {
  #compaision {
    padding-top: 4rem;
  }
}
@media screen and (max-width: 768px) {
  #compaision .ttl-f {
    height: initial;
    padding: 1.125rem 0;
    text-align: center;
  }
}
#compaision .ttl-f span {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #compaision .ttl-f span {
    flex-direction: column;
  }
}
#compaision .ttl-f em {
  font-size: 1rem;
}
#compaision .contents-box {
  padding: 4.5rem 4.25rem 3rem;
}
@media screen and (max-width: 768px) {
  #compaision .contents-box {
    padding: 4.5rem 1rem 3rem;
  }
}
#compaision .d-scroll {
  width: 100%;
  overflow: auto;
}
@media screen and (max-width: 1080px) {
  #compaision .compaision-table {
    width: 51.5rem;
  }
}
#compaision .compaision-table thead th {
  padding: 0 0.09375rem;
}
#compaision .compaision-table thead th div {
  height: 4.5625rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 0.5rem 0.5rem 0 0;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
}
#compaision .compaision-table thead th:not(:first-child) div {
  background: #e9e9e9;
}
#compaision .compaision-table thead th:nth-child(3) {
  padding-right: 0.1875rem;
}
#compaision .compaision-table thead th.ib {
  padding: 0;
}
#compaision .compaision-table thead th.ib div {
  background: #ffe970;
  font-size: 1.125rem;
}
#compaision .compaision-table tbody th {
  width: 12.125rem;
}
#compaision .compaision-table tbody th div {
  display: flex;
  align-items: center;
  padding-left: 2rem;
  font-size: 1rem;
  font-weight: 700;
  color: #062663;
}
#compaision .compaision-table tbody td {
  width: 12.1875rem;
  font-size: 1rem;
  color: #000;
  font-weight: 900;
}
#compaision .compaision-table tbody tr div {
  height: 5rem;
}
#compaision .compaision-table tbody tr td:nth-last-child(1) {
  width: 15rem;
}
#compaision .compaision-table tbody tr td:nth-last-child(1) div {
  color: #ab850a;
  font-weight: 900;
  font-size: 1.25rem;
}
#compaision .compaision-table tbody tr td div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#compaision .compaision-table tbody tr:nth-child(odd) th {
  background: #eff5ff;
}
#compaision .compaision-table tbody tr:nth-child(odd) td {
  background: #f6f6f6;
}
#compaision .compaision-table tbody tr:nth-child(odd) td:nth-last-child(1) div {
  background: #fef8dc;
  border-left: 0.25rem solid #ffe970;
  border-right: 0.25rem solid #ffe970;
}
#compaision .compaision-table tbody tr:nth-child(even) th {
  background: rgba(243, 248, 255, 0.5);
}
#compaision .compaision-table tbody tr:nth-child(even) td {
  background: rgba(246, 246, 246, 0.5);
}
#compaision .compaision-table tbody tr:nth-child(even) td:nth-last-child(1) div {
  background: #fffbe8;
  border-left: 0.25rem solid #ffe970;
  border-right: 0.25rem solid #ffe970;
}
#compaision .compaision-table tbody tr:nth-last-child(1) td:nth-last-child(1) div {
  border-bottom: 0.25rem solid #ffe970;
}

/*/////////////////////////////////////////
//  faq
/////////////////////////////////////////*/
#faq {
  margin-top: 1.5rem;
  padding-bottom: 4.8125rem;
}
#faq .contents-box {
  padding: 5rem 4.25rem 3rem;
}
@media screen and (max-width: 768px) {
  #faq .contents-box {
    padding: 4.625rem 1rem 3rem;
  }
}
#faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
#faq .faq-list div span {
  line-height: 2.3;
}
@media screen and (max-width: 768px) {
  #faq .faq-list div span {
    line-height: 1.5;
  }
}
#faq .faq-list div dt {
  width: 100%;
  background: rgba(231, 242, 255, 0.5);
  font-size: 1rem;
  font-weight: 700;
  color: #395384;
  padding: 1rem 2rem;
  border-radius: 0.5rem 0.5rem 0 0;
  display: flex;
  gap: 0.375rem;
}
@media screen and (max-width: 768px) {
  #faq .faq-list div dt {
    align-items: flex-start;
  }
}
#faq .faq-list div dt:before {
  content: "Q";
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  #faq .faq-list div dt:before {
    line-height: 1.1;
  }
}
#faq .faq-list div dd {
  background: rgba(251, 251, 251, 0.8);
  font-size: 1rem;
  font-weight: 500;
  color: #395384;
  padding: 1rem 2rem;
  border-radius: 0 0 0.5rem 0.5rem;
  display: flex;
  gap: 0.375rem;
}
@media screen and (max-width: 768px) {
  #faq .faq-list div dd {
    align-items: flex-start;
  }
}
#faq .faq-list div dd:before {
  content: "A";
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #faq .faq-list div dd:before {
    line-height: 1.1;
  }
}

.lp-company {
  background: #fbfbfb;
}
.lp-company table tr:nth-child(odd) {
  background: rgba(231, 242, 255, 0.5);
}
.lp-company table tr:nth-child(even) {
  background: #fff;
}
.lp-company table th {
  color: #395384;
}
@media screen and (max-width: 768px) {
  .lp-company table th {
    padding: 0.9375rem 2rem 0.3125rem;
  }
}
.lp-company table td {
  color: #395384;
}
@media screen and (max-width: 768px) {
  .lp-company table td {
    padding: 0rem 2rem 0.9375rem;
  }
}

footer {
  background: #fff;
}/*# sourceMappingURL=update.css.map */