@charset "UTF-8";

/* common */

body {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

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

a {
  display: inline-block;
  color: #004792;
  text-decoration: underline;
}

a:hover {
  color: #4d7dbe;
  opacity: 0.8;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

p {
  padding: 0;
  margin: 0;
}

.u-pc {
  display: none;
}

.u-sp {
  display: block;
}

.Responsive {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .u-pc {
    display: block;
  }

  .u-sp {
    display: none;
  }
}

/* END: common */

/* Header */

.Header .Responsive {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 63px;
}

.Header__img {
  width: 100%;
  max-width: 226px;
  margin-left: 10px;
}

.Header-btn {
  max-width: 267px;
}

@media screen and (min-width: 768px) {
  .Header__img {
    margin-left: 0;
  }
}

/* END: Header */

/* Hero */

.Hero {
  padding-bottom: 38px;
}

.Hero .Responsive {
  position: relative;
}

.Hero-desc-content--sp {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 90%;
  padding: 15px 10px 0;
  transform: translate(-50%, 0);
}

.Hero-content {
  position: relative;
  padding: 65px 10px 0;
}

.Hero-content img {
  width: 100%;
}

.Hero-desc-content__img--price {
  position: absolute;
  bottom: 0;
  left: 50%;
  padding: 0 10px;
  transform: translate(-50%, -15%);
}

.Hero-content__lnk,
.Hero-desc-content__lnk {
  position: absolute;
  right: 10px;
  bottom: 0;
  display: inline-block;
  width: 20vw;
  height: 18px;
  background: transparent;
  border-radius: 5px 0 10px;
}

.Hero-content__lnk:hover,
.Hero-desc-content__lnk:hover {
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .Hero {
    padding-bottom: 0;
  }

  .Hero-desc {
    position: absolute;
    top: 50%;
    right: 0;
    width: calc(100% / 2.5);
    height: auto;
    transform: translate(-20%, -47%);
  }

  .Hero-desc-content__lnk {
    right: 3px;
    width: calc(100% / 4);
    height: 25px;
  }
}

@media screen and (min-width: 1300px) {
  .Hero-desc-content__lnk {
    right: 4px;
    height: 35px;
  }
}

/* END: Hero */

/* Praise */

.Praise {
  padding: 35px 20px 27px;
  background: #fbfdf8;
}

.Praise .Responsive {
  max-width: 960px;
}

.Praise__ttl {
  margin-bottom: 0;
  font-size: 23px;
  text-align: center;
}

.Praise__ttl--highlight {
  position: relative;
  display: inline-block;
  color: #7fb112;
}

.Praise__ttl--highlight::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 100%;
  height: 2px;
  content: '';
  border-top: 5px dotted #7fb112;
  transform: translate(-50%, -7px);
}

.Praise__img {
  width: 100%;
  max-width: 672px;
  margin: 20px auto;
  text-align: center;
}

.Praise-list {
  counter-reset: section;
}

.Praise-list__item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 5px;
  font-size: 10px;
}

.Praise-list__item::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: '※' counter(section);
  counter-increment: section;
}

.Praise-list__item--highlight {
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .Praise {
    padding: 50px 18px;
  }

  .Praise__ttl {
    font-size: 38px;
  }

  .Praise__img {
    margin: 40px auto;
  }

  .Praise-list__item {
    font-size: 12px;
  }

  .Praise__ttl--highlight::after {
    transform: translate(-50%, -10px);
  }
}

/* END: Praise */

/* Recommend */

.Recommend {
  margin-top: 35px;
}

.Recommend .Responsive {
  max-width: 1080px;
}

.Recommend-content-desc {
  padding: 0 20px;
}

.Recommend-content-desc__ttl {
  font-size: 20px;
  color: #7fb019;
  text-align: center;
}

.Recommend-content-desc-list {
  margin-top: 30px;
}

.Recommend-content-desc-list__item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.Recommend-content-desc-list__item--highlight {
  color: #7fb019;
}

.Recommend-content-desc-list__item::before {
  position: absolute;
  top: 4px;
  left: 0;
  display: block;
  width: 19px;
  height: 19px;
  content: '';
  background: url(/campaign/ad018/product/img/ico_check.svg) no-repeat;
  background-position: center;
  background-size: contain;
}

@media screen and (min-width: 768px) {
  .Recommend {
    padding-bottom: 79px;
    margin-top: 0;
    background-color: #fbfdf8;
  }

  .Recommend-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
  }

  .Recommend-content-desc,
  .Recommend-content__img {
    width: 50%;
  }

  .Recommend-content__img {
    max-width: 500px;
  }

  .Recommend-content-desc__ttl {
    text-align: left;
  }
}

@media screen and (min-width: 992px) {
  .Recommend-content-desc__ttl {
    font-size: 28px;
  }

  .Recommend-content-desc-list__item {
    font-size: 18px;
  }
}

@media screen and (min-width: 1080px) {
  .Recommend-content-desc {
    padding: 0 30px 0 60px;
  }
}

/* END: Praise */

/* Plan */

.Plan {
  padding: 40px 20px 30px;
  background: #fff;
}

.Plan--bg {
  background: #fff9d7;
}

.Plan-btn {
  position: relative;
  display: block;
  width: 100%;
  max-width: 600px;
  padding: 15px 10px;
  margin: 0 auto;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #f27b22;
  border: 1px solid #f27b22;
  border-radius: 5px;
  box-shadow: 2px 2px 0 0 rgb(51, 51, 51, 0.2);
}

.Plan-btn__ttl {
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-block;
  padding: 0 7px;
  font-size: 15px;
  color: #f27b22;
  text-align: center;
  background: #fff;
  border: 1px solid #f27b22;
  border-radius: 20px;
  transform: translate(-50%, -50%);
}

.Plan-btn__txt {
  position: absolute;
  top: -14px;
  left: 50%;
  display: inline-block;
  padding: 0 7px;
  font-size: 14px;
  text-align: center;
  transform: translate(-50%, -50%);
}

.Plan-btn:hover .Plan-btn__txt::before,
.Plan-btn:hover .Plan-btn__txt::after {
  background: #f27b22;
}

.Plan-btn__txt::before,
.Plan-btn__txt::after {
  position: absolute;
  top: 50%;
  display: block;
  width: 1px;
  height: 80%;
  content: '';
  background: #fff;
}

.Plan-btn__txt::before {
  left: -5px;
  transform: translate(0, -50%) rotate(-25deg);
}

.Plan-btn__txt::after {
  right: -5px;
  transform: translate(0, -50%) rotate(25deg);
}

.Plan-btn::before,
.Plan-btn::after {
  position: absolute;
  top: 50%;
  display: block;
  content: '';
}

.Plan-btn::before {
  left: 0;
  width: 21px;
  height: 28px;
  background: url(/campaign/ad018/product/img/ico_calculator.svg) no-repeat;
  background-position: center;
  background-size: contain;
  transform: translate(20px, -50%);
}

.Plan-btn::after {
  right: 0;
  width: 10px;
  height: 10px;
  background: transparent;
  border: 2px solid #fff;
  border-bottom: 0;
  border-left: 0;
  transform: translate(-20px, -50%) rotate(45deg);
}

.Plan-btn:hover {
  color: #f27b22;
  text-decoration: none;
  background: #fff;
  opacity: 1;
}

.Plan-btn:hover .Plan-btn__ttl {
  color: #fff;
  background: #f27b22;
}

.Plan-btn:hover::before {
  background: url(/campaign/ad018/product/img/ico_calculator_orange.svg)
    no-repeat;
  background-position: center;
  background-size: contain;
}

.Plan-btn:hover::after {
  border-color: #f27b22;
}

@media screen and (min-width: 768px) {
  .Plan {
    padding: 65px 20px 50px;
  }

  .Plan-btn {
    padding: 20px 10px 12px;
    font-size: 38px;
    border-radius: 10px;
  }

  .Plan-btn__ttl {
    padding: 2px 20px;
    font-size: 20px;
  }

  .Plan-btn::before {
    width: 36px;
    height: 48px;
    transform: translate(35px, -50%);
  }

  .Plan-btn::after {
    width: 16px;
    height: 16px;
    border-width: 3px;
    transform: translate(-30px, -50%) rotate(45deg);
  }

  .Plan-btn__txt {
    top: -20px;
    font-size: 18px;
  }

  .Plan-btn__txt::before {
    left: -10px;
  }

  .Plan-btn__txt::after {
    right: -10px;
  }
}

/* END: Plan */

/* Know */

.Know {
  padding: 29px 20px;
  background: #fff9d7;
}

.Know .Responsive {
  max-width: 960px;
  margin: 0 auto;
}

.Know__img {
  max-width: 960px;
  margin: 0 auto 51px;
  text-align: center;
}

.Know__img + .Know__img {
  margin-bottom: 30px;
}

.Know__img img {
  margin: 0 auto;
}

.Know__ttl {
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
}

.Know-amount-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background: #7fb112;
  border-radius: 10px 10px 0 0;
}

.Know-amount-head__txt {
  width: 50%;
  max-width: 283px;
  padding: 12px 5px;
  text-align: center;
}

.Know-amount-head__txt + .Know-amount-head__txt {
  flex-grow: 1;
  max-width: inherit;
  border-left: 1px solid #fff;
}

.Know-amount-content {
  border: 3px solid #7fb112;
  border-top: 0;
  border-radius: 0 0 10px 10px;
}

.Know-amount-content-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}

.Know-amount-content-item:last-child {
  border-top: 3px solid #7fb112;
  border-radius: 0 0 10px 10px;
}

.Know-amount-content-item:last-child img {
  border-radius: 0 0 0 6px;
}

.Know-amount-content-item-structure {
  position: relative;
  width: 50%;
  max-width: 280px;
}

.Know-amount-content-item-desc {
  flex-grow: 1;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}

.Know-amount-content-item-desc__number {
  font-size: 35px;
  color: #c40000;
}

.Know-amount-content-item-desc__number--unit {
  font-size: 18px;
  color: #333;
}

.Know-amount-content-item-structure__txt {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: inline-block;
  width: 95%;
  padding: 1px 10px;
  font-size: 13px;
  font-weight: bold;
  color: #7fb112;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  transform: translate(-50%, -5px);
}

@media screen and (min-width: 768px) {
  .Know__ttl {
    padding-top: 30px;
    margin-bottom: 30px;
    font-size: 28px;
  }

  .Know-amount-head {
    font-size: 20px;
  }

  .Know-amount-content-item:last-child img {
    border-radius: 0 0 0 8px;
  }

  .Know-amount-content-item-structure__txt {
    font-size: 15px;
  }

  .Know-amount-content-item-desc {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 22px;
  }

  .Know-amount-content-item-desc__number {
    margin-left: 16px;
    font-size: 46px;
    line-height: 1;
  }

  .Know-amount-content-item-desc__number--unit {
    font-size: 23px;
  }
}

/* END: Know */

/* Choose */

.Choose {
  padding-top: 21px;
  background: #fff9d7;
}

.Choose .Responsive {
  position: relative;
  padding-bottom: 53vw;
  background: linear-gradient(
    180deg,
    rgba(255, 249, 215, 1) 43%,
    rgba(255, 255, 255, 1) 43%
  );
}

.Choose__img {
  position: relative;
  clip-path: polygon(50% 8%, 100% 0, 100% 100%, 0 100%, 0 0);
}

.Choose__img::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 100%;
  height: 50vw;
  content: '';
  background: linear-gradient(
    180deg,
    rgba(217, 217, 217, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  transform: translate(-50%, 10vw);
}

.Choose-content__img {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px 20px 35px;
}

.Choose-content__img img:first-child {
  width: 100%;
  max-width: 237px;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .Choose__img {
    clip-path: polygon(50% 12%, 100% 0, 100% 100%, 0 100%, 0 0);
  }

  .Choose__img::after {
    display: none;
  }

  .Choose .Responsive {
    padding-bottom: 0;
    background: #fff9d7;
  }

  .Choose-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 30vw;
    transform: translate(10vw, 35%);
  }
}

@media screen and (min-width: 1080px) {
  .Choose-content {
    transform: translate(10vw, 35%);
  }
}

@media screen and (min-width: 1440px) {
  .Choose {
    padding-top: 51px;
  }

  .Choose-content {
    max-width: 422px;
    transform: translate(150px, 35%);
  }
}

/* END: Choose */

/* Feature */

.Feature {
  padding: 35px 0 0;
  counter-reset: section;
  background: #e9efd5;
}

.Feature-ttl {
  font-size: 25px;
  text-align: center;
}

.Feature-ttl-number--highlight {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: -16px;
  font-size: 30px;
  line-height: 38px;
  color: #fff;
  text-align: center;
  background: #7fb112;
  border-radius: 50%;
}

.Feature-ttl-number--highlight:last-child {
  margin-right: -7px;
}

.Feature-ttl__txt {
  font-size: 32px;
}

.Feature__img {
  max-width: 840px;
  padding: 0 10px;
  margin: 31px auto 55px;
  text-align: center;
}

.Feature__bg {
  background: #fff;
}

.Feature-point {
  position: relative;
  max-width: 1080px;
  padding: 51px 30px 66px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px 20px 0 0;
}

.Feature-point--bg {
  padding: 51px 10px;
  margin-top: -15px;
  background: #e9efd5;
}

.Feature-point--customer {
  padding: 51px 10px 0;
}

.Feature-point::before {
  position: absolute;
  top: 0;
  left: 50%;
  font-size: 45px;
  color: #7fb112;
  content: '0' counter(section);
  counter-increment: section;
  transform: translate(-50%, -55%);
}

.Feature-point__ttl {
  margin-bottom: 30px;
  font-size: 25px;
  font-weight: bold;
  color: #7fb112;
  text-align: center;
}

.Feature-point-box {
  position: relative;
  padding: 35px 14px 25px;
  margin-top: 50px;
  border: 3px solid #ffab58;
  border-radius: 10px;
}

.Feature-point-box + .Feature-point-box {
  margin-top: 40px;
}

.Feature-point-box__ttl {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1; /* root: Feature-point-box */
  width: 60%;
  padding: 0 5px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: #f27b22;
  border-radius: 20px;
  transform: translate(-50%, -15px);
}

.Feature-point-box-content {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  font-size: 11px;
}

.Feature-point-box-content-desc {
  width: 70%;
}

.Feature-point-box--saving .Feature-point-box-content-desc {
  text-align: center;
}

.Feature-point-box-content-desc__ttl {
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: bold;
}

.Feature-point-box-content__img {
  width: 30%;
}

.Feature-point-box::before,
.Feature-point-box::after {
  position: absolute;
  display: block;
  width: 15px;
  height: 6px;
  content: '';
  background-color: #fff;
}

.Feature-point-box::before {
  top: 0;
  left: 0;
  transform: translate(25px, -5px);
}

.Feature-point-box::after {
  right: 0;
  bottom: 0;
  transform: translate(-25px, 5px);
}

.Feature-point-box--saving .Feature-point-box-list {
  text-align: left;
}

.Feature-point-box-list__item {
  position: relative;
  padding-left: 10px;
}

.Feature-point-box-list__item::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 3px;
  height: 3px;
  content: '';
  background: #333;
  border-radius: 50%;
}

.Feature-point-box:last-child .Feature-point-box__ttl {
  width: 77%;
}

.Feature-point-box:last-child .Feature-point-box-content {
  flex-direction: column-reverse;
}

.Feature-point-box:last-child .Feature-point-box-content-desc {
  width: 100%;
}

.Feature-point-box:last-child .Feature-point-box-content__img {
  width: 80%;
  margin: 0 auto 20px;
}

.Feature-point-box:last-child .Feature-point-box-content__img img {
  margin: 0 auto;
}

.Feature-point-box:last-child .Feature-point-box-content-desc__ttl {
  margin-bottom: 0;
  font-size: 13px;
}

.Feature-point-box:last-child .Feature-point-box-content-desc__number {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: bold;
}

.Feature-point-box:last-child
  .Feature-point-box-content-desc__number--highlight {
  color: #8fb130;
}

.Feature-point-box:last-child .Feature-point-box-content-desc__number--price {
  font-size: 24px;
}

.Feature-point-box:last-child .Feature-point-box-list__item {
  padding-left: 0;
  text-indent: 10px;
}

.Feature-point-box:last-child .Feature-point-box-list__item::before {
  top: 0;
  left: -10px;
  width: inherit;
  height: inherit;
  content: '※';
  background: transparent;
}

.Feature-point-content {
  background-color: #fff;
  border-radius: 10px;
}

.Feature-point-content-block-desc {
  padding: 0 20px 30px;
}

.Feature-point-content-block-desc__txt {
  margin-top: 30px;
  font-size: 16px;
  text-align: center;
}

.Feature-point-content-block-desc__txt--highlight {
  font-weight: bold;
  color: #7fb112;
}

.Feature-point-content-block-desc__txt--sup {
  position: relative;
  top: -6px;
  font-size: 10px;
  font-weight: 500;
}

.Feature-point-content-block-desc .Feature-point-box {
  padding: 22px 15px;
  margin: 20px 0 15px;
}

.Feature-point-content-block-desc-list__item {
  position: relative;
  padding-left: 14px;
  font-size: 14px;
  font-weight: bold;
}

.Feature-point-content-block-desc-list__item::before {
  position: absolute;
  top: 0;
  left: -3px;
  content: '・';
}

.Feature-point-content-block-desc-note {
  counter-reset: section;
}

.Feature-point-content-block-desc__note,
.Feature-point-content-block-desc-note__item {
  position: relative;
  padding-left: 25px;
  font-size: 11px;
}

.Feature-point-content-block-desc__note--lnk {
  color: #6983b7;
}

.Feature-point-content-block-desc__note--lnk:hover,
.Feature-point-content-block-desc__note--lnk:active,
.Feature-point-content-block-desc__note--lnk:focus {
  color: #6983b7;
}

.Feature-point-content-block-desc-note__item::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: '※' counter(section);
  counter-increment: section;
}

.Feature-point-content-block-desc__note {
  position: relative;
  padding-left: 11px;
  margin-top: 20px;
  font-size: 11px;
}

.Feature-point-content-block-desc__note::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: '※';
}

.Feature-point-content-block-desc__consultation {
  margin-top: 21px;
  font-size: 14px;
}

.Feature-point-content-block__ttl {
  margin-bottom: 20px;
  font-size: 20px;
  text-align: center;
}

.Feature-point-content-block__ttl--highlight {
  color: #7fb112;
}

.Feature-point-content-block__ttl--num {
  font-size: 26px;
}

.Feature-point-content-block--resever .Feature-point-content-block__img {
  padding: 0 20px;
}

.Feature-point-content__img {
  margin-top: 29px;
}

.Feature-point-content__img img {
  margin: 0 auto;
}

.Feature-point-content__sub {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .Feature {
    padding: 80px 0 77px;
  }

  .Feature-ttl,
  .Feature-ttl__txt,
  .Feature-ttl-number--highlight {
    font-size: 43px;
  }

  .Feature-ttl-number--highlight {
    width: 50px;
    height: 50px;
    margin-right: -23px;
    line-height: 45px;
  }

  .Feature-ttl-number--highlight:last-child {
    margin-right: -12px;
  }

  .Feature__img {
    margin: 50px auto 55px;
  }

  .Feature-point {
    padding: 51px 60px;
    border-radius: 20px;
  }

  .Feature-point + .Feature-point {
    margin-top: 76px;
  }

  .Feature-point--bg {
    background: #fff;
  }

  .Feature-point__ttl {
    font-size: 38px;
  }

  .Feature-point-box {
    padding: 48px 30px 36px;
  }

  .Feature-point-box__ttl {
    width: 340px;
    font-size: 28px;
    transform: translate(-50%, -25px);
  }

  .Feature-point-box-content {
    max-width: 727px;
    margin: 0 auto;
    font-size: 14px;
  }

  .Feature-point-box-content-desc {
    width: calc(100% - 163px);
  }

  .Feature-point-box--saving .Feature-point-box-content-desc {
    text-align: left;
  }

  .Feature-point-box-content__img {
    width: 163px;
    padding-left: 10px;
  }

  .Feature-point-box-content-desc__ttl {
    font-size: 24px;
  }

  .Feature-point-box::before,
  .Feature-point-box::after {
    width: 42px;
  }

  .Feature-point-box::before {
    transform: translate(75px, -5px);
  }

  .Feature-point-box::after {
    transform: translate(-75px, 5px);
  }

  .Feature-point-box:last-child .Feature-point-box-content {
    flex-direction: row;
  }

  .Feature-point-box:last-child .Feature-point-box__ttl {
    width: 459px;
  }

  .Feature-point-box:last-child .Feature-point-box-content-desc__ttl {
    font-size: 16px;
  }

  .Feature-point-box:last-child .Feature-point-box-content-desc__number {
    font-size: 20px;
  }

  .Feature-point-box:last-child .Feature-point-box-content-desc__number--price {
    font-size: 32px;
  }

  .Feature-point-box:last-child .Feature-point-box-list__item {
    text-indent: 12px;
  }

  .Feature-point-box:last-child .Feature-point-box-list__item::before {
    left: -13px;
  }

  .Feature-point-box:last-child .Feature-point-box-content-desc {
    width: calc(100% - 322px);
  }

  .Feature-point-box:last-child .Feature-point-box-content__img {
    width: 322px;
    margin: 0;
  }

  .Feature-point::before {
    font-size: 60px;
    transform: translate(-50%, -53%);
  }

  .Feature-point-box + .Feature-point-box {
    margin-top: 55px;
  }

  .Feature-point-content-block {
    display: flex;
  }

  .Feature-point-content-block + .Feature-point-content-block {
    margin-top: 50px;
  }

  .Feature-point-content-block--resever .Feature-point-content-block__img {
    order: 2;
    padding: 0;
    margin: 0 0 0 40px;
  }

  .Feature-point-content-block--resever .Feature-point-content-block-desc {
    order: 1;
  }

  .Feature-point-content-block__img {
    flex-basis: 480px;
    margin-right: 40px;
  }

  .Feature-point-content-block-desc {
    display: flex;
    flex-basis: 450px;
    flex-direction: column;
    justify-content: center;
    padding: 0;
  }

  .Feature-point-content-block-desc .Feature-point-box::before,
  .Feature-point-content-block-desc .Feature-point-box::after {
    width: 20px;
  }

  .Feature-point-content-block-desc .Feature-point-box::before {
    transform: translate(40px, -5px);
  }

  .Feature-point-content-block-desc .Feature-point-box::after {
    transform: translate(-40px, 5px);
  }

  .Feature-point-content-block-desc__txt {
    margin-top: 0;
    font-size: 20px;
    line-height: 1.4;
    text-align: left;
  }

  .Feature-point-content-block-desc-list__item {
    font-size: 18px;
    line-height: 1.4;
  }

  .Feature-point-content-block-desc .Feature-point-box {
    padding: 23px 18px 17px;
    margin: 20px 0 37px;
  }

  .Feature-point-content-block-desc-note__item {
    font-size: 13px;
  }

  .Feature-point-content-block__ttl {
    margin-bottom: 35px;
    font-size: 28px;
    text-align: left;
  }

  .Feature-point-content-block-desc__note {
    padding-left: 15px;
    margin-top: 35px;
    font-size: 13px;
  }

  .Feature-point-content__img {
    margin: 50px 0 20px;
  }

  .Feature-point-content__sub {
    margin-bottom: 40px;
    font-size: 28px;
  }

  .Feature-point-content-block-desc__consultation {
    margin: 0;
    font-size: 18px;
  }
}

/* END: Feature */

/* Procedure */

.Procedure {
  padding: 35px 20px;
  background-color: #fff9d7;
}

.Procedure .Responsive {
  max-width: 960px;
  margin: 0 auto;
}

.Procedure-ttl__sub {
  position: relative;
  margin-bottom: 35px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.Procedure-ttl__sub::after {
  position: absolute;
  bottom: -18px;
  left: 50%;
  width: 20px;
  height: 1px;
  content: '';
  background-color: #f27b22;
  transform: translateX(-50%);
}

.Procedure-ttl__txt {
  font-size: 20px;
  font-weight: 700;
  line-height: 27px;
  color: #f27b22;
  text-align: center;
}

.Procedure-content {
  margin: 30px 0 0;
}

.Procedure-content-step {
  display: flex;
  margin-top: -1px;
}

.Procedure-content-step-illustration {
  position: relative;
  display: flex;
  flex-basis: 112px;
  flex-direction: column;
  padding: 25px 0 40px;
  margin-right: 15px;
  overflow: hidden;
  background-color: #f27b22;
}

.Procedure-content-step-illustration::before,
.Procedure-content-step-illustration::after {
  position: absolute;
  left: 50%;
  z-index: 1; /* root: Procedure-content-step-illustration */
  width: 0;
  height: 0;
  content: '';
  border-style: solid;
  transform: translateX(-50%);
}

.Procedure-content-step-illustration::before {
  bottom: 1px;
  border-color: #fff9d7 transparent transparent;
  border-width: 24px 61px 0;
}

.Procedure-content-step-illustration::after {
  bottom: 3px;
  border-color: #f27b22 transparent transparent;
  border-width: 22px 56px 0;
}

.Procedure-content-step:last-child
  > .Procedure-content-step-illustration::before {
  content: none;
}

.Procedure-content-step:last-child
  > .Procedure-content-step-illustration::after {
  content: none;
}

.Procedure-content-step:first-child > .Procedure-content-step-illustration {
  border-radius: 10px 10px 0 0;
}

.Procedure-content-step:last-child > .Procedure-content-step-illustration {
  padding-bottom: 10px;
  border-radius: 0 0 10px 10px;
}

.Procedure-content-step-illustration__txt {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 30px;
  color: #fff;
  text-align: center;
}

.Procedure-content-step-detail {
  flex: 1;
  padding: 14px 0;
  line-height: 20px;
}

.Procedure-content-step-detail__ttl {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
  color: #f27b22;
}

.Procedure-content-step-detail__txt {
  font-size: 14px;
}

.Procedure-content-step-detail__txt--highlight {
  font-weight: 700;
}

.Procedure-content-step-detail__txt--note {
  display: inline-block;
  margin-top: 8px;
  font-size: 10px;
  line-height: 15px;
}

@media screen and (min-width: 768px) {
  .Procedure {
    padding: 60px 20px;
  }

  .Procedure-ttl__sub {
    margin-bottom: 40px;
    font-size: 24px;
  }

  .Procedure-ttl__sub::after {
    width: 40px;
  }

  .Procedure-ttl__txt {
    font-size: 32px;
    line-height: 40px;
  }

  .Procedure-content {
    display: flex;
  }

  .Procedure-content-step {
    display: flex;
    flex: 1;
    flex-direction: column;
  }

  .Procedure-content-step-illustration {
    flex-basis: 93px;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0 0 30px;
  }

  .Procedure-content-step-illustration::before {
    top: 50%;
    right: 1px;
    left: inherit;
    border-color: transparent transparent transparent #fff9d7;
    border-width: 54.5px 0 54.5px 27px;
    transform: translateY(-50%);
  }

  .Procedure-content-step-illustration::after {
    top: 50%;
    right: 5px;
    left: inherit;
    border-color: transparent transparent transparent #f27b22;
    border-width: 46.5px 0 46.5px 23px;
    transform: translateY(-50%);
  }

  .Procedure-content-step:last-child
    > .Procedure-content-step-illustration::before {
    content: none;
  }

  .Procedure-content-step:last-child
    > .Procedure-content-step-illustration::after {
    content: none;
  }

  .Procedure-content-step:first-child > .Procedure-content-step-illustration {
    border-radius: 10px 0 0 10px;
  }

  .Procedure-content-step:last-child > .Procedure-content-step-illustration {
    padding-bottom: 0;
    border-radius: 0 10px 10px 0;
  }

  .Procedure-content-step-illustration__txt {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 48px;
  }

  .Procedure-content-step-detail {
    padding: 0;
    margin-right: 33px;
  }

  .Procedure-content-step-detail__ttl {
    margin-bottom: 16px;
    font-size: 22px;
  }

  .Procedure-content-step-detail__txt {
    font-size: 15px;
    line-height: 23px;
  }

  .Procedure-content-step-detail__txt--note {
    margin-top: 10px;
    font-size: 13px;
    line-height: 18px;
  }
}

@media screen and (min-width: 992px) {
  .Procedure-content-step-illustration__txt {
    font-size: 22px;
    line-height: 52px;
  }
}

/* END: Procedure */

/* Feedback */

.Feedback {
  padding: 30px 20px 40px;
  border-bottom: 1px solid #e0e0e0;
}

.Feedback .Responsive {
  max-width: 960px;
  margin: 0 auto;
}

.Feedback-ttl__sub {
  position: relative;
  margin-bottom: 35px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.Feedback-ttl__sub::after {
  position: absolute;
  bottom: -18px;
  left: 50%;
  width: 20px;
  height: 1px;
  content: '';
  background-color: #7fb112;
  transform: translateX(-50%);
}

.Feedback-ttl__txt {
  font-size: 20px;
  font-weight: 700;
  line-height: 27px;
  color: #7fb112;
  text-align: center;
}

.Feedback-content {
  margin: 30px 0 11px;
}

.Feedback-content-list {
  border: 3px solid #e0e0e0;
  border-radius: 10px;
}

.Feedback-content-list:first-child {
  border-bottom: none;
  border-radius: 10px 10px 0 0;
}

.Feedback-content-list:last-child {
  border-top: none;
  border-radius: 0 0 10px 10px;
}

.Feedback-content-list-item {
  display: flex;
  padding: 20px 15px 20px 26px;
}

.Feedback-content-list:first-child .Feedback-content-list-item:nth-child(odd),
.Feedback-content-list:last-child .Feedback-content-list-item:nth-child(even) {
  flex-direction: row-reverse;
  background-color: #e9efd5;
}

.Feedback-content-list-item:first-child {
  border-radius: 6px 6px 0 0;
}

.Feedback-content-list-item-msg {
  flex: 1;
}

.Feedback-content-list-item-msg__user {
  margin-bottom: 3px;
  font-weight: 700;
  line-height: 24px;
}

.Feedback-content-list-item-msg__txt {
  line-height: 19px;
}

.Feedback-content-list-item__avatar {
  display: flex;
  flex-basis: 74px;
  align-items: flex-end;
  justify-content: center;
  width: 74px;
  height: 74px;
  margin-right: 20px;
  background: #e9efd5;
  border-radius: 50%;
}

.Feedback-content-list:first-child
  .Feedback-content-list-item:nth-child(odd)
  .Feedback-content-list-item__avatar,
.Feedback-content-list:last-child
  .Feedback-content-list-item:nth-child(even)
  .Feedback-content-list-item__avatar {
  margin: 0 0 0 20px;
  background: #fbfdf8;
}

.Feedback-content-list-item__avatar img {
  width: auto;
  max-height: 62px;
}

.Feedback-note__txt {
  position: relative;
  padding-left: 21px;
  margin-bottom: 5px;
  font-size: 11px;
}

.Feedback-note__txt::before {
  position: absolute;
  left: 5px;
  content: '\00203b';
}

@media screen and (min-width: 768px) {
  .Feedback {
    padding: 60px 20px 80px;
  }

  .Feedback-ttl__sub {
    margin-bottom: 40px;
    font-size: 24px;
  }

  .Feedback-ttl__sub::after {
    width: 40px;
  }

  .Feedback-ttl__txt {
    font-size: 32px;
    line-height: 40px;
  }

  .Feedback-content {
    display: flex;
    margin: 56px 0 22px;
  }

  .Feedback-content-list {
    width: calc(50% - 20px);
    height: 100%;
    border: 3px solid #e0e0e0;
    border-radius: 10px;
  }

  .Feedback-content-list + .Feedback-content-list {
    margin-left: 40px;
  }

  .Feedback-content-list:first-child {
    border-bottom: 3px solid #e0e0e0;
    border-radius: 10px;
  }

  .Feedback-content-list:last-child {
    border-top: 3px solid #e0e0e0;
    border-radius: 10px;
  }

  .Feedback-content-list-item {
    padding: 30px 20px 17px;
  }

  .Feedback-content-list:last-child
    .Feedback-content-list-item:nth-child(even) {
    flex-direction: row-reverse;
    background-color: transparent;
  }

  .Feedback-content-list-item:nth-child(odd) {
    flex-direction: row;
    background-color: #e9efd5;
  }

  .Feedback-content
    .Feedback-content-list
    .Feedback-content-list-item:nth-child(odd)
    .Feedback-content-list-item__avatar {
    background-color: #fbfdf8;
  }

  .Feedback-content
    .Feedback-content-list
    .Feedback-content-list-item:nth-child(even)
    .Feedback-content-list-item__avatar {
    background-color: #e9efd5;
  }

  .Feedback-content-list-item__avatar {
    margin-right: 26px;
  }

  .Feedback-content-list:first-child
    .Feedback-content-list-item:nth-child(odd)
    .Feedback-content-list-item__avatar,
  .Feedback-content-list:last-child
    .Feedback-content-list-item:nth-child(even)
    .Feedback-content-list-item__avatar {
    margin: 0 0 0 26px;
  }

  .Feedback-content-list-item:last-child {
    border-radius: 0 0 6px 6px;
  }

  .Feedback-content-list-item-msg {
    flex: 1;
    font-size: 15px;
  }

  .Feedback-content-list-item-msg__user {
    margin-bottom: 5px;
    line-height: 23px;
  }

  .Feedback-content-list-item-msg__txt {
    line-height: 23px;
  }

  .Feedback-note__txt {
    font-size: 10px;
  }
}

/* END: Feedback */

/* Faq */

.Faq {
  padding: 35px 20px;
}

.Faq .Responsive {
  max-width: 960px;
}

.Faq-head {
  margin-bottom: 30px;
  text-align: center;
}

.Faq-head__ttl {
  margin-bottom: 35px;
  font-size: 13px;
  font-weight: bold;
}

.Faq-head__txt {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  color: #99c02b;
}

.Faq-head__txt::before {
  position: absolute;
  top: -17px;
  left: 50%;
  width: 20px;
  height: 1px;
  content: '';
  background-color: #99c02b;
  transform: translateX(-50%);
}

.Faq-list-item {
  position: relative;
  padding: 0 18px;
  border: 3px solid #e9efd5;
  border-radius: 10px;
}

.Faq-list-item + .Faq-list-item {
  margin-top: 10px;
}

.Faq-list-item__ques {
  position: relative;
  padding: 23px 30px 6px 23px;
  margin-bottom: 19px;
  font-size: 14px;
  font-weight: bold;
}

.Faq-list-item__ques:hover {
  cursor: pointer;
}

.Faq-list-item__ques::before {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
  color: #7fb112;
  content: 'Q.';
  transform: translateY(20px);
}

.Faq-list-item__ques::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 14px;
  height: 14px;
  content: '';
  border: 2px solid #7fb112;
  border-top: 0;
  border-left: 0;
  transition: all 0.5s;
  transform: translateY(-50%) rotate(45deg);
}

.Faq-list-item--show .Faq-list-item__ques::after {
  transform: rotate(-135deg);
}

.Faq-list-item-ans {
  max-height: 0;
  overflow: hidden;
  transition: all 0.8s;
}

.Faq-list-item-ans__txt {
  padding: 10px 0 19px;
  font-size: 13px;
}

.Faq-list-item-ans__txt + .Faq-list-item-ans__txt {
  padding-top: 0;
}

.Faq-list-item-ans__txt:first-child {
  border-top: 1px solid #e9efd5;
}

.Faq-list-item-ans__txt--lnk {
  display: inline;
  color: #1d59be;
}

.Faq-list-item-ans__txt--lnk:hover,
.Faq-list-item-ans__txt--lnk:active,
.Faq-list-item-ans__txt--lnk:focus {
  color: #1d59be;
  opacity: 0.8;
}

.Faq-list-item-ans__txt--strong {
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .Faq {
    padding: 60px 20px;
  }

  .Faq-head {
    margin-bottom: 40px;
  }

  .Faq-head__ttl {
    margin-bottom: 40px;
    font-size: 24px;
  }

  .Faq-head__txt {
    font-size: 32px;
  }

  .Faq-head__txt::before {
    width: 40px;
  }

  .Faq-list-item__ques {
    padding: 25px 30px 6px 23px;
    margin-bottom: 14px;
    font-size: 18px;
  }

  .Faq-list-item__ques::before {
    top: 50%;
    font-size: 18px;
    transform: translateY(-23%);
  }

  .Faq-list-item__ques::after {
    width: 16px;
    height: 16px;
  }

  .Faq-list-item-ans__txt {
    padding: 20px 0 18px;
    font-size: 15px;
  }
}

/* END: Faq */

/* Product */

.Product {
  padding: 35px 20px;
  background-color: #feffe1;
}

.Product .Responsive {
  max-width: 960px;
}

.Product__ttl {
  margin-bottom: 46px;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.Product-list-item {
  position: relative;
  padding: 30px 20px 20px;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
}

.Product-list-item + .Product-list-item {
  margin-top: 36px;
}

.Product-list-item--medical {
  border: 3px solid #f19700;
}

.Product-list-item--medicalwomen {
  border: 3px solid #f05187;
}

.Product-list-item--cancer {
  border: 3px solid #f93829;
}

.Product-list-item--disability {
  border: 3px solid #1d59be;
}

.Product-list-item__ttl {
  position: absolute;
  top: -21px;
  left: 50%;
  min-width: 246px;
  padding: 10.5px 24px;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  border-radius: 111px;
  transform: translateX(-50%);
}

.Product-list-item--medical .Product-list-item__ttl {
  background-color: #f19700;
}

.Product-list-item--medicalwomen .Product-list-item__ttl {
  background-color: #f05187;
}

.Product-list-item--cancer .Product-list-item__ttl {
  background-color: #f93829;
}

.Product-list-item--disability .Product-list-item__ttl {
  background-color: #1d59be;
}

.Product-list-item__img {
  position: relative;
  display: flex;
  justify-content: space-around;
  margin-bottom: 16px;
}

.Product-list-item:nth-child(-n + 2) .Product-list-item__img::before {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 120px;
  content: '';
  border-left: 3px dashed;
  transform: translate(-50%, -50%);
}

.Product-list-item:nth-child(1) .Product-list-item__img::before {
  border-color: #f19700;
}

.Product-list-item:nth-child(2) .Product-list-item__img::before {
  border-color: #f05187;
}

.Product-list-item__btn {
  position: relative;
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 2px 2px 0 rgba(51, 51, 51, 0.2);
}

.Product-list-item__btn:hover,
.Product-list-item__btn:active,
.Product-list-item__btn:focus {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}

.Product-list-item__btn::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 9px;
  height: 9px;
  content: '';
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(-45deg);
}

.Product-list-item--medical .Product-list-item__btn {
  background-color: #f19700;
}

.Product-list-item--medicalwomen .Product-list-item__btn {
  background-color: #f05187;
}

.Product-list-item--cancer .Product-list-item__btn {
  background-color: #f93829;
}

.Product-list-item--disability .Product-list-item__btn {
  background-color: #1d59be;
}

@media screen and (min-width: 768px) {
  .Product {
    padding: 50px 20px;
  }

  .Product__ttl {
    font-size: 34px;
    font-weight: bold;
    line-height: 1.3;
  }

  .Product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .Product-list-item {
    flex-basis: 48%;
    padding-top: 40px;
    margin-bottom: 55px;
  }

  .Product-list-item + .Product-list-item {
    margin-top: 0;
  }

  .Product-list-item__ttl {
    width: 70.5%;
  }

  .Product-list-item__img {
    margin-bottom: 20px;
  }
}

/* END: Product */

/* Footer */

.Footer {
  margin-bottom: 91px;
  background-color: #f3f6f7;
}

.Footer .Responsive {
  max-width: 1080px;
}

.Footer-content {
  padding: 30px 20px 27px;
}

.Footer-content-box {
  padding: 26px 24px 36px 21px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
}

.Footer-content-box:nth-child(2) {
  padding: 30px 21px 20px;
}

.Footer-content-box + .Footer-content-box {
  margin-top: 31px;
}

.Footer-content-box__txt {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

.Footer-content-box__ttl {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.Footer-content-box-list {
  padding-left: 24px;
  margin-top: 28px;
  font-size: 13px;
}

.Footer-content-box-list__item {
  position: relative;
}

.Footer-content-box-list__item + .Footer-content-box-list__item {
  margin-top: 10px;
}

.Footer-content-box-list__item::before {
  position: absolute;
  top: 0;
  left: -15px;
  font-size: 11px;
  content: '●';
}

.Footer-content-box-list__item--lnk {
  color: #1d59be;
}

.Footer-content-box-list__item--lnk:hover,
.Footer-content-box-list__item--lnk:active,
.Footer-content-box-list__item--lnk:focus {
  color: #1d59be;
  opacity: 0.8;
}

.Footer-content-box__phone {
  display: block;
  max-width: 294px;
  margin: 21px auto 23px;
  text-align: center;
}

.Footer-content-box__note {
  font-size: 11px;
}

.Footer-info {
  padding: 0 20px;
}

.Footer-info__num {
  font-size: 13px;
  line-height: 1;
  text-align: center;
}

.Footer-info-nav {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.Footer-info-nav-item {
  padding: 0 17px;
  font-size: 12px;
  line-height: 1;
}

.Footer-info-nav-item + .Footer-info-nav-item {
  border-left: 1px solid #333;
}

.Footer-info-nav-item__lnk {
  color: #333;
  text-decoration: none;
}

.Footer-info-nav-item__lnk:hover,
.Footer-info-nav-item__lnk:active,
.Footer-info-nav-item__lnk:focus {
  color: #333;
  text-decoration: none;
  opacity: 0.8;
}

.Footer__cr {
  padding-bottom: 61px;
  font-size: 11px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .Footer {
    margin-bottom: 142px;
  }

  .Footer-content {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
  }

  .Footer-content-box:nth-child(1) {
    flex-basis: 480px;
    order: 2;
    padding: 40px 20px 42px 21px;
  }

  .Footer-content-box:nth-child(2) {
    flex-basis: 430px;
    order: 1;
    padding: 50px 49px 41px;
  }

  .Footer-content-box + .Footer-content-box {
    margin: 0 50px 0 0;
  }

  .Footer-content-box__ttl,
  .Footer-content-box__txt {
    font-size: 20px;
  }

  .Footer-content-box-list__item,
  .Footer-content-box__note {
    font-size: 14px;
  }

  .Footer-content-box__phone {
    max-width: 325px;
    margin: 30px auto 20px;
    pointer-events: none;
  }

  .Footer-content-box-list {
    padding-left: 14px;
    margin-top: 20px;
  }

  .Footer-content-box-list__item + .Footer-content-box-list__item {
    margin-top: 5px;
  }

  .Footer-info {
    display: flex;
    justify-content: space-between;
    padding: 0 20px 20px;
  }

  .Footer-info__num {
    font-size: 13px;
  }

  .Footer-info-nav {
    margin: 0;
  }

  .Footer-info-nav-item {
    font-size: 14px;
  }

  .Footer-info-nav-item:last-child {
    padding-right: 0;
  }

  .Footer__cr {
    padding-bottom: 40px;
  }

  .Footer-content-box-list__item::before {
    font-size: 14px;
  }
}

/* END: Footer */

/* Float */

.Float {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1; /* root: body */
  background: rgb(77, 77, 77, 1);
  transition: transform 0.3s ease-in-out 0s;
  transform: translateY(110%);
}

.Float__plan {
  width: 100%;
  max-width: 343px;
  margin: 35px auto 13px;
}

.Float .Plan-btn {
  padding: 6px 10px;
  font-size: 18px;
}

.Float--visible {
  transform: translateY(0);
}

@media screen and (min-width: 768px) {
  .Float .Float__plan {
    max-width: 600px;
    margin: 52px auto 23px;
  }

  .Float .Plan-btn {
    padding: 10px;
    font-size: 28px;
  }
}

/* END: Float */
