/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

@import "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css";
@font-face {
  font-family: "MeiryoWeb";
  src: url("../font/meiryo.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MeiryoWeb";
  src: url("../font/meiryo_bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
  list-style: none;
}
html {
  scroll-behavior: smooth;
  scroll-padding: 0 0 0 0;
}
@media screen and (max-width: 40rem) {
  html {
    scroll-padding: 0 0 0 0;
  }
}
body {
  font-family: "MeiryoWeb", "メイリオ", sans-serif;
  color: #494949;
}
html,
body {
  height: -webkit-fill-available;
}
a {
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
  text-decoration: none;
  font-weight: bold;
}
a img {
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
a img:hover {
  opacity: 0.75;
}
img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
button {
  border: 0;
}
.padding-1 {
  padding: 1rem 0;
}
.padding-2 {
  padding: 2rem 0;
}
@media screen and (max-width: 40rem) {
  .padding-2 {
    padding: 1rem 0;
  }
}
.wrapper {
  max-width: 64rem;
  margin: 0 auto;
  padding: 2rem 2rem;
}
@media screen and (max-width: 40rem) {
  .wrapper {
    padding: 2rem 1rem;
  }
}
.inner {
  max-width: 45rem;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (max-width: 64rem) {
  .inner {
    padding: 0 0;
  }
}
.pc-only {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 40rem) {
  .pc-only {
    display: none;
  }
}
.sp-only {
  display: none;
}
@media screen and (max-width: 40rem) {
  .sp-only {
    display: block;
  }
}
.inline {
  display: inline;
}
@media screen and (max-width: 40rem) {
  .inline {
    display: none;
  }
}
.nowrap {
  white-space: nowrap;
}
.bold {
  font-weight: bold;
}
.center {
  text-align: center;
}
.right {
  text-align: right;
}
.mb-05 {
  margin: 0 0 0.5rem;
}
.mb-1 {
  margin: 0 0 1rem;
}
.mb-2 {
  margin: 0 0 2rem;
}
@media screen and (max-width: 40rem) {
  .mb-2 {
    margin: 0 0 1rem;
  }
}
.mb-4 {
  margin: 0 0 4rem;
}
@media screen and (max-width: 40rem) {
  .mb-4 {
    margin: 0 0 2rem;
  }
}
.common-catch {
  font-weight: bold;
  color: #97c32b;
  margin: 0 0 0.5rem;
}
.common-title {
  font-size: 1.75rem;
  border-left: 0.375rem solid #97c32b;
  padding: 0 0 0 1rem;
  margin: 0 0 1rem;
}
@media screen and (max-width: 40rem) {
  .common-title {
    font-size: 1.375rem;
  }
}
header {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 4.375rem;
}
header ul {
  width: 64rem;
  padding: 1rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 40rem) {
  header ul {
    padding: 0 1rem;
  }
}
.header-logo {
  width: 9.5rem;
}
@media screen and (max-width: 40rem) {
  .header-logo {
    width: 7.5rem;
  }
}
.header-line a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #2ec755;
  color: #fff;
  padding: 0.75rem 1.75rem 0.75rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 1.125rem;
}
@media screen and (max-width: 40rem) {
  .header-line a {
    gap: 0.5rem;
    padding: 0.5rem 1rem 0.5rem 0.75rem;
    font-size: 0.75rem;
  }
}
.header-line a .icon {
  width: 1.75rem;
}
@media screen and (max-width: 40rem) {
  .header-line a .icon {
    width: 1.75rem;
  }
}
.cover {
  background: url(../img/cover-bg.webp) no-repeat center center/cover;
  overflow: hidden;
}
@media screen and (max-width: 40rem) {
  .cover {
    background: none;
  }
}
.cover-header {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgb(151, 195, 43)),
    to(rgb(128, 169, 28))
  );
  background: -o-linear-gradient(
    left,
    rgb(151, 195, 43) 0%,
    rgb(128, 169, 28) 100%
  );
  background: linear-gradient(
    90deg,
    rgb(151, 195, 43) 0%,
    rgb(128, 169, 28) 100%
  );
}
.cover-header .wrapper {
  padding: 1rem 1rem;
}
.cover-header .content {
  padding: 1rem 0;
}
@media screen and (max-width: 40rem) {
  .cover-header .content {
    padding: 0.5rem 0;
  }
}
.cover-header .content .catch {
  background: #fff;
  color: #277d4f;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.cover-header .content .catch-min {
  font-size: 2rem;
  line-height: 1;
  padding: 0.5rem 0.5rem 0;
  margin: 0 0 1rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 40rem) {
  .cover-header .content .catch-min {
    font-size: 1.5rem;
    line-height: 1;
    padding: 0.25rem 0.25rem 0;
    margin: 0 0 0.5rem;
  }
}
.cover-header .content .catch-lar {
  font-size: 3.5rem;
  line-height: 1;
  padding: 0.5rem 0.5rem 0;
  margin: 0 0 1rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 64rem) {
  .cover-header .content .catch-lar {
    font-size: 3.5rem;
    margin: 0 0 1rem;
  }
}
@media screen and (max-width: 40rem) {
  .cover-header .content .catch-lar {
    font-size: 2.25rem;
    line-height: 1;
    padding: 0.5rem 0.25rem 0;
    margin: 0 0 0.5rem;
  }
}
.cover-header .content .lead {
  font-size: 1.25rem;
  color: #fff;
}
@media screen and (max-width: 64rem) {
  .cover-header .content .lead {
    font-size: 1rem;
  }
}
.cover-content {
  padding: 0 0;
}
@media screen and (max-width: 40rem) {
  .cover-content {
    background: url(../img/cover-bg-sp.webp) no-repeat center center/cover;
    height: 14.5rem;
  }
}
.cover-content .wrapper {
  position: relative;
}
.cover-content .badge {
  width: 20rem;
}
@media screen and (max-width: 64rem) {
  .cover-content .badge {
    width: 20.75rem;
  }
}
@media screen and (max-width: 40rem) {
  .cover-content .badge {
    width: 13.5rem;
    margin: auto;
  }
}
@media screen and (max-width: 40rem) {
  .sp-badge {
    width: 13.5rem;
    margin: 1rem auto 0;
  }
}
.cover-main-icon {
  width: 33rem;
  position: absolute;
  right: 0;
  bottom: 0rem;
}
@media screen and (max-width: 64rem) {
  .cover-main-icon {
    width: 28rem;
    -webkit-transform: translate(3rem, 0);
    -ms-transform: translate(3rem, 0);
    transform: translate(3rem, 0);
  }
}
@media screen and (max-width: 40rem) {
  .cover-main-icon {
    width: auto;
    -webkit-transform: translate(0rem, -5.5rem);
    -ms-transform: translate(0rem, -5.5rem);
    transform: translate(0rem, -5.5rem);
    max-width: 22rem;
    right: auto;
    text-align: center;
    position: relative;
    bottom: -2.5rem;
    margin: auto;
  }
}
.cover-price-icon {
  width: 7.75rem;
  position: absolute;
  top: -14rem;
  right: 1rem;
}
@media screen and (max-width: 64rem) {
  .cover-price-icon {
    top: -16rem;
    right: 1rem;
  }
}
@media screen and (max-width: 40rem) {
  .cover-price-icon {
    top: -188px;
    right: -2px;
    width: 84px;
  }
}
.campaign .wrapper {
  padding: 0 1rem;
}
.campaign-banner {
  max-width: 26rem;
  margin: 0 auto 2rem auto;
}
.campaign-line {
  max-width: 23.75rem;
  margin: 0 auto 1rem auto;
}
.campaign-line a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #2ec755;
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 0.25rem;
  font-size: 1.125rem;
}
.campaign-line a .icon {
  width: 2.375rem;
}
.campaign-mail {
  max-width: 23.75rem;
  margin: 0 auto 1rem auto;
}
.campaign-mail a {
  display: block;
  text-align: center;
  padding: 0.75rem 1.75rem;
  border: 2px solid #ff9046;
  border-radius: 0.25rem;
  color: #ff9046;
  background: #fff;
}
.problem {
  background: #f5f5f5;
}
.problem .wrapper {
  padding: 0 1rem;
}
.problem-catch {
  font-size: 1.75rem;
  text-align: center;
}
@media screen and (max-width: 40rem) {
  .problem-catch {
    font-size: 1.35rem;
  }
}
.problem-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.problem-list li {
  border-radius: 1.25rem 1.25rem 0 1.25rem;
  background: #fff;
  -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(50% - 2.5rem);
  padding: 1rem;
}
@media screen and (max-width: 40rem) {
  .problem-list li {
    width: 100%;
  }
}
.problem-list li .image {
  width: 7rem;
}
@media screen and (max-width: 40rem) {
  .problem-list li .image {
    width: 7rem;
  }
}
.problem-list li .text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 0.9rem;
}
.benefit .wrapper {
  padding: 0 1rem;
}
.benefit-continue {
  width: 0.375rem;
  margin: 0 auto 2rem auto;
}
@media screen and (max-width: 40rem) {
  .benefit-continue {
    margin: 0 auto 1rem auto;
  }
}
.benefit-lead {
  text-align: center;
  font-size: 1.125rem;
}
.benefit-catch {
  color: #494949;
  text-align: center;
  font-size: 1.75rem;
}
@media screen and (max-width: 40rem) {
  .benefit-catch {
    font-size: 1.35rem;
  }
}
@media screen and (max-width: 40rem) {
  .benefit-catch .sp-control {
    padding: 3px 0 0 0;
  }
}
.benefit-catch .accent {
  background: #97c32b;
  color: #fff;
  line-height: 1;
  padding: 0.25rem 0 0rem;
}
@media screen and (max-width: 40rem) {
  .case {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 0.5rem;
  }
}
.case .caution {
  font-size: 0.75rem;
  margin: 0 0 0 auto;
}
.case-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 40rem) {
  .case-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.case-list li .image {
  margin: 0 0 0.5rem;
}
@media screen and (max-width: 40rem) {
  .case-list li .image {
    padding: 0 1rem;
    margin: 0 0 0.5rem;
  }
}
@media screen and (max-width: 40rem) {
  .case-list li .text {
    font-size: 0.8rem;
  }
}
.case-trouble {
  background: #f5f5f5;
}
.case-trouble .case-list li {
  position: relative;
}
.case-trouble .case-list li:after {
  content: "";
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  display: block;
  width: 0.9375rem;
  height: 1rem;
  background: url(../img/case-list-arrow.webp) no-repeat center center/cover;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
@media screen and (max-width: 40rem) {
  .case-trouble .case-list li:after {
    bottom: 50%;
    left: auto;
    right: -0.5rem;
    -webkit-transform: translate(0px, -50%) rotate(-90deg);
    -ms-transform: translate(0px, -50%) rotate(-90deg);
    transform: translate(0px, -50%) rotate(-90deg);
  }
}
.case-solution {
  background: #f8ffe5;
  margin: 0 0 1rem;
}
@media screen and (max-width: 40rem) {
  .case-solution {
    margin: 0 0 0;
  }
}
.case-solution-caution {
  display: none;
}
@media screen and (max-width: 40rem) {
  .case-solution-caution {
    display: block;
    font-size: 0.625rem;
    margin: 0 1rem 3rem;
    text-align: right;
  }
}
.plan {
  margin: 0 0 4rem;
}
@media screen and (max-width: 40rem) {
  .plan {
    padding: 0 1rem;
    margin: 0 0 2rem;
  }
}
@media screen and (max-width: 40rem) {
  .plan .wrapper {
    padding: 0 0;
  }
}
.plan-lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 6rem;
}
@media screen and (max-width: 64rem) {
  .plan-lead {
    gap: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 40rem) {
  .plan-lead {
    margin: 0 0 2rem;
  }
}
.plan-lead-title {
  font-size: 1.5rem;
}
.plan-lead-title span {
  position: relative;
}
.plan-lead-title span::before {
  content: "・";
  color: #97c32b;
  position: absolute;
  top: -1.5rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.plan-lead-content.pc-only {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 40rem) {
  .plan-lead-content.pc-only {
    display: none !important;
  }
}
.plan-lead-content.sp-only {
  display: none;
}
@media screen and (max-width: 40rem) {
  .plan-lead-content.sp-only {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.plan-lead-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 40rem) {
  .plan-lead-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.plan-lead-content .content {
  width: 100%;
}
.plan-lead-content .content .content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.plan-lead-content .content .content-wrapper .image {
  width: 6.75rem;
}
@media screen and (max-width: 40rem) {
  .plan-lead-content .content .content-wrapper .image {
    width: 6.5rem;
  }
}
.plan-lead-content .content .content-wrapper .text {
  font-size: 1.125rem;
}
@media screen and (max-width: 40rem) {
  .plan-lead-content .content .content-wrapper .text {
    font-size: 0.95rem;
  }
}
@media screen and (max-width: 40rem) {
  .plan-lead-content .content .article {
    font-size: 0.75rem;
  }
}
.plan-lead-content .content .article .caution {
  display: block;
  font-size: 0.625rem;
  margin: 0.5rem 0 0;
}
@media screen and (max-width: 40rem) {
  .plan-lead-content .content .sp-layout {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.plan-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 40rem) {
  .plan-intro {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.plan-intro-wrapper .catch {
  color: #97c32b;
  margin: 0 0 0.5rem;
}
.plan-intro-wrapper .title {
  font-size: 1.75rem;
  border-left: 0.375rem solid #97c32b;
  padding: 0 0 0 1rem;
  margin: 0 0 1rem;
}
.plan-intro-off-icon {
  width: 4.3125rem;
}
.plan-select {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
}
@media screen and (max-width: 40rem) {
  .plan-select {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 40rem) {
  .plan-select.spaceplan {
    margin: 0 0 4rem;
  }
}
.plan-select-item {
  position: relative;
  width: 100%;
}
.plan-select-item .title {
  color: #fff;
  padding: 0.75rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.25rem;
}
@media screen and (max-width: 40rem) {
  .plan-select-item .title {
    font-size: 1.125rem;
  }
}
.plan-select-item .title::before {
  content: "";
  display: block;
  position: absolute;
  top: -1rem;
  left: 3rem;
}
@media screen and (max-width: 40rem) {
  .plan-select-item .title::before {
    left: 1.5rem;
  }
}
.plan-select-item .title p {
  font-size: 0.9375rem;
}
@media screen and (max-width: 40rem) {
  .plan-select-item .title p {
    font-size: 0.75rem;
  }
}
.plan-select-item .title p span {
  font-size: 1.25rem;
}
@media screen and (max-width: 40rem) {
  .plan-select-item .title p span {
    font-size: 1rem;
  }
}
.plan-select-item .content {
  padding: 1rem 0;
  width: 25rem;
  height: 18.5rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 64rem) {
  .plan-select-item .content {
    width: auto;
    height: auto;
  }
}
@media screen and (max-width: 40rem) {
  .plan-select-item .content {
    padding: 1rem 1rem;
  }
}
@media screen and (max-width: 40rem) {
  .plan-select-item .content ul {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 40rem) {
  .plan-select-item .content .checkit {
    font-size: 0.8rem;
  }
}
.plan-select-boxplan {
  border: 1px solid #97c32b;
}
.plan-select-boxplan .title {
  background: #97c32b;
}
.plan-select-boxplan .title::before {
  width: 96px;
  height: 1.8125rem;
  background: url(../img/plan-select-item-boxplan.webp) no-repeat center
    center/cover;
  left: 72px;
}
@media screen and (max-width: 40rem) {
  .plan-select-boxplan .title::before {
    left: 50%;
    -webkit-transform: translate(-149px, 0px);
    -ms-transform: translate(-149px, 0px);
    transform: translate(-149px, 0px);
  }
}
.plan-select-boxplan .plan-select-button {
  margin: auto 0 1rem;
}
.plan-select-boxplan .plan-select-button a {
  background: #97c32b;
}
.plan-select-spaceplan {
  border: 1px solid #277d4f;
}
.plan-select-spaceplan .title {
  background: #277d4f;
}
.plan-select-spaceplan .title::before {
  width: 135px;
  height: 1.84375rem;
  background: url(../img/plan-select-item-spaceplan.webp) no-repeat center
    center/cover;
  left: 82px;
}
@media screen and (max-width: 40rem) {
  .plan-select-spaceplan .title::before {
    width: 135px;
    left: 50%;
    -webkit-transform: translate(-140px, 0px);
    -ms-transform: translate(-140px, 0px);
    transform: translate(-140px, 0px);
  }
}
.plan-select-spaceplan .plan-select-button {
  margin: auto 0 1rem;
}
.plan-select-spaceplan .plan-select-button a {
  background: #277d4f;
}
.plan-select-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.plan-select-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  padding: 0.5rem 1rem;
  width: 15rem;
  border-radius: 0.25rem;
}
.plan-select-button a::after {
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  background: #fff;
  -webkit-clip-path: polygon(0 0, 50% 50%, 100% 0);
  clip-path: polygon(0 0, 50% 50%, 100% 0);
}
.plan-content .wrapper {
  padding: 1rem 1rem;
}
@media screen and (max-width: 40rem) {
  .plan-content .wrapper {
    padding: 0 1rem;
  }
}
.plan-content .main-title .main-title-inner {
  color: #fff;
  position: relative;
  padding: 0.5rem 1rem 0.25rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.75rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
@media screen and (max-width: 40rem) {
  .plan-content .main-title .main-title-inner {
    font-size: 1.25rem;
    margin: 0 auto 1rem;
  }
}
.plan-content .main-title .main-title-inner::before {
  content: "";
  display: block;
  position: absolute;
  top: -1 5rem;
  left: 0rem;
}
.plan-content .main-title p {
  font-size: 1.125rem;
}
@media screen and (max-width: 40rem) {
  .plan-content .main-title p {
    font-size: 0.75rem;
  }
}
.plan-content .main-title p span {
  font-size: 1.75rem;
}
@media screen and (max-width: 40rem) {
  .plan-content .main-title p span {
    font-size: 1rem;
  }
}
.plan-content .lead {
  font-size: 1rem;
  text-align: center;
  margin: 0 0 0.5rem;
}
@media screen and (max-width: 40rem) {
  .plan-content .lead {
    font-size: 0.725rem;
    margin: 0 0 0.5rem;
  }
}
.plan-content .lead span {
  font-size: 1.125rem;
  color: #97c32b;
}
.plan-content.boxplan {
  padding: 0 0 2rem;
}
@media screen and (max-width: 40rem) {
  .plan-content.boxplan {
    padding: 0 0 0;
  }
}
.plan-content.boxplan .main-title {
  background: #97c32b;
}
.plan-content.boxplan .main-title .main-title-inner::before {
  width: 93px;
  height: 1.75rem;
  background: url(../img/plan-select-item-boxplan.webp) no-repeat center
    center/cover;
  top: -1rem;
  left: 0.95rem;
}
@media screen and (max-width: 40rem) {
  .plan-content.boxplan .main-title .main-title-inner::before {
    top: -1rem;
    left: 0.95rem;
  }
}
.plan-content-boxplan-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin: 0 0 2rem;
}
@media screen and (max-width: 40rem) {
  .plan-content-boxplan-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 0 1rem;
  }
}
.plan-content-boxplan-list li {
  padding: 1rem;
  width: 100%;
  border-radius: 0.5rem;
  border: 3px solid #f5f5f5;
}
@media screen and (max-width: 40rem) {
  .plan-content-boxplan-list li {
    width: auto;
  }
}
.plan-content-boxplan-list li h3 {
  font-size: 1.125rem;
}
.plan-content-boxplan-list li .main-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.plan-content-boxplan-list li .main-layout .image {
  width: 14rem;
  margin: 0 auto;
}
@media screen and (max-width: 64rem) {
  .plan-content-boxplan-list li .main-layout .image {
    width: auto;
  }
}
.plan-content-boxplan-list .image-min-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 64rem) {
  .plan-content-boxplan-list .image-min-layout {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
  }
}
.plan-content-boxplan-list .price {
  text-align: center;
}
.plan-content-boxplan-list .price del {
  color: #ccc;
}
.plan-content-boxplan-list .price del .min {
  font-size: 0.75rem;
}
.plan-content-boxplan-list .price .arrow {
  display: inline-block;
  width: 0.8125rem;
  height: 0.15625rem;
  background: url(../img/plan-content-list-arrow.webp) no-repeat center
    center/cover;
  margin: 0 0.5rem;
  -webkit-transform: translate(0, -4px);
  -ms-transform: translate(0, -4px);
  transform: translate(0, -4px);
}
.plan-content-boxplan-list .price .accent {
  color: #97c32b;
  font-size: 1.625rem;
}
.plan-content-boxplan-list .price .min {
  font-size: 0.75rem;
}
.plan-content-boxplan-list .min-width-3 {
  min-width: 3rem;
}
.plan-content-boxplan-list .min-width-5 {
  min-width: 5rem;
}
@media screen and (max-width: 40rem) {
  .plan-content-boxplan-deliv.pc-control {
    display: none !important;
  }
}
.plan-content-boxplan-deliv.sp-control {
  display: none;
}
@media screen and (max-width: 40rem) {
  .plan-content-boxplan-deliv.sp-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1rem calc(50% - 9.5rem);
    margin: 0 calc(50% - 50vw) 4rem !important;
  }
}
@media screen and (max-width: 40rem) {
  .plan-content-boxplan-deliv.sp-control .image {
    width: 6.5rem !important;
  }
}
.plan-content-boxplan-deliv.sp-control .article {
  font-size: 0.85rem;
}
.plan-content-boxplan-deliv.sp-control
  .article
  .plan-content-boxplan-deliv
  .accent {
  font-size: 0.85rem;
}
.plan-content-boxplan-deliv.fst {
  margin: 0 auto 2rem;
}
@media screen and (max-width: 40rem) {
  .plan-content-boxplan-deliv.fst {
    padding: 1rem calc(50% - 9.5rem);
    margin: 0 calc(50% - 50vw) 2rem;
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(30%, transparent),
      color-stop(30%, #f8ffe5)
    );
    background: -o-linear-gradient(transparent 30%, #f8ffe5 30%);
    background: linear-gradient(transparent 30%, #f8ffe5 30%);
  }
}
.plan-content-boxplan-deliv {
  width: 32rem;
  margin: 0 auto 0;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(30%, transparent),
    color-stop(30%, #f8ffe5)
  );
  background: -o-linear-gradient(transparent 30%, #f8ffe5 30%);
  background: linear-gradient(transparent 30%, #f8ffe5 30%);
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}
@media screen and (max-width: 40rem) {
  .plan-content-boxplan-deliv {
    width: auto;
    gap: 0.5rem;
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(40%, transparent),
      color-stop(40%, #f8ffe5)
    );
    background: -o-linear-gradient(transparent 40%, #f8ffe5 40%);
    background: linear-gradient(transparent 40%, #f8ffe5 40%);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem calc(50% - 9.5rem);
    margin: 0 calc(50% - 50vw) 2rem;
  }
}
.plan-content-boxplan-deliv .article {
  font-size: 1.125rem;
}
@media screen and (max-width: 40rem) {
  .plan-content-boxplan-deliv .article {
    font-size: 0.8rem;
    white-space: nowrap;
  }
}
.plan-content-boxplan-deliv .article .accent {
  color: #fff;
  background: #97c32b;
  font-size: 1.125rem;
  padding: 0 0.25rem;
  margin: 0 0.25rem;
}
@media screen and (max-width: 40rem) {
  .plan-content-boxplan-deliv .article .accent {
    font-size: 0.8rem;
  }
}
.plan-content-boxplan-deliv .image {
  width: 7rem;
  -webkit-transform: translate(0px, 1rem);
  -ms-transform: translate(0px, 1rem);
  transform: translate(0px, 1rem);
}
@media screen and (max-width: 40rem) {
  .plan-content-boxplan-deliv .image {
    width: 5.5rem;
    -webkit-transform: translate(0px, 1rem);
    -ms-transform: translate(0px, 1rem);
    transform: translate(0px, 1rem);
  }
}
.plan-content-boxplan-deliv.sp-control-s {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 4rem;
}
@media screen and (max-width: 40rem) {
  .plan-content-boxplan-deliv.sp-control-s {
    padding: 1rem calc(50% - 9.5rem);
    margin: 0 calc(50% - 50vw) 2rem;
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(30%, transparent),
      color-stop(30%, #f8ffe5)
    );
    background: -o-linear-gradient(transparent 30%, #f8ffe5 30%);
    background: linear-gradient(transparent 30%, #f8ffe5 30%);
  }
  .plan-content-boxplan-deliv.sp-control-s .article {
    font-size: 0.7rem;
  }
}
@media screen and (max-width: 40rem) and (max-width: 40rem) {
  .plan-content-boxplan-deliv.sp-control-s .article {
    font-size: 0.8rem;
  }
}
.plan-content-boxplan-catch {
  font-size: 1.75rem;
}
@media screen and (max-width: 40rem) {
  .plan-content-boxplan-catch {
    font-size: 1.35rem;
  }
}
.plan-content-boxplan-catch .accent {
  color: #97c32b;
}
.plan-content-common-section.book {
  margin: 0 0 4rem;
}
@media screen and (max-width: 40rem) {
  .plan-content-common-section.book {
    margin: 0 0 1rem;
    padding: 1rem calc(50% - 32rem);
    margin: 0 calc(50% - 50vw) 2rem;
  }
}
.plan-content-common-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 40rem) {
  .plan-content-common-section {
    gap: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1rem calc(50% - 32rem);
    margin: 0 calc(50% - 50vw) 2rem;
  }
}
.plan-content-common-section .before {
  background: #f5f5f5;
  padding: 1rem;
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
}
@media screen and (max-width: 40rem) {
  .plan-content-common-section .before {
    padding: 1rem 1rem 0.25rem;
    height: auto;
  }
}
.plan-content-common-section .before .image {
  position: relative;
  margin: 0 0 1rem;
}
@media screen and (max-width: 40rem) {
  .plan-content-common-section .before .image {
    margin: 0 0 0.5rem;
  }
}
.plan-content-common-section .before .image::after {
  content: "Before";
  font-size: 0.8125rem;
  color: #fff;
  background: #494949;
  padding: 0.25rem 0.5rem;
  position: absolute;
  top: 0;
  left: 0;
}
.plan-content-common-section .before .text {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 64px;
}
@media screen and (max-width: 40rem) {
  .plan-content-common-section .before .text {
    height: auto;
    font-size: 0.85rem;
  }
}
.plan-content-common-section .continue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 40rem) {
  .plan-content-common-section .continue {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    position: relative;
  }
}
@media screen and (max-width: 40rem) {
  .plan-content-common-section .continue .image {
    width: 8rem;
  }
}
@media screen and (max-width: 40rem) and (max-width: 40rem) {
  .plan-content-common-section .continue .image {
    width: 10rem;
  }
}
.plan-content-common-section .continue .text {
  text-align: center;
}
@media screen and (max-width: 40rem) {
  .plan-content-common-section .continue .text {
    white-space: nowrap;
    font-size: 1rem;
  }
}
.plan-content-common-section .continue .text .accent {
  color: #97c32b;
  font-weight: bold;
}
.plan-content-common-section .continue .text.nim {
  font-size: 1.25rem;
}
.plan-content-common-section .continue .arrow {
  width: 1.5rem;
}
@media screen and (max-width: 40rem) {
  .plan-content-common-section .continue .arrow {
    width: 1.25rem;
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    -webkit-transform: translate(-50%, 1rem) rotate(90deg);
    -ms-transform: translate(-50%, 1rem) rotate(90deg);
    transform: translate(-50%, 1rem) rotate(90deg);
  }
}
.plan-content-common-section .after {
  background: #f8ffe5;
  padding: 1rem;
}
@media screen and (max-width: 40rem) {
  .plan-content-common-section .after {
    padding: 1rem 1rem 0.25rem;
  }
}
.plan-content-common-section .after .image {
  position: relative;
  margin: 0 0 1rem;
}
@media screen and (max-width: 40rem) {
  .plan-content-common-section .after .image {
    margin: 0 0 0.25rem;
  }
}
.plan-content-common-section .after .image::after {
  content: "After";
  font-size: 0.8125rem;
  color: #fff;
  background: #97c32b;
  padding: 0.25rem 0.5rem;
  position: absolute;
  top: 0;
  left: 0;
}
.plan-content-common-section .after .content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 64rem) {
  .plan-content-common-section .after .content-wrapper {
    gap: 1rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 40rem) {
  .plan-content-common-section .after .content-wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 0 1rem;
  }
}
.plan-content-common-section .after .content-wrapper .text {
  font-size: 1.125rem;
}
.plan-content-common-section .after .content-wrapper .text .small {
  font-size: 0.8rem;
}
.plan-content-common-section .after .content-wrapper .text .accent {
  font-size: 1.5rem;
  color: #97c32b;
  font-weight: bold;
}
.plan-content-common-section .after .content-wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: 150px;
}
.plan-content-common-section .after .content-wrapper ul li {
  /* width: 3.625rem; */
  width: calc(100% / 3);
}
/* @media screen and (max-width: 40rem) {
  .plan-content-common-section .after .content-wrapper ul li {
    width: 2.5rem;
  }
} */
@media screen and (max-width: 40rem) {
  .plan-content-common-section.spaceplan {
    gap: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .plan-content-common-section .after .content-wrapper .text {
    white-space: nowrap;
    font-size: 0.8rem;
  }

  .plan-content-common-section .after .content-wrapper .text .accent {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 40rem) {
  .plan-content-cost.sp-control {
    margin: 0 auto 4rem;
  }
}
.plan-content-cost {
  max-width: 45rem;
  padding: 2.5rem 0;
  margin: 0 auto 4rem;
  position: relative;
  border-top: 1px solid #ff9046;
  border-bottom: 1px solid #ff9046;
  background: #f9f9f9;
}
@media screen and (max-width: 40rem) {
  .plan-content-cost {
    margin: 0 auto 4rem;
  }
}
.plan-content-cost .image {
  position: absolute;
  top: -1rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 14.5rem;
}
.plan-content-cost .button a {
  display: block;
  width: 22rem;
  margin: auto;
  text-align: center;
  border-radius: 0.25rem;
  padding: 1rem;
  background: #ff9046;
  color: #fff;
}
@media screen and (max-width: 40rem) {
  .plan-content-cost .button a {
    width: 80%;
  }
}
.plan-content.spaceplan {
  padding: 0 0 2rem;
}
@media screen and (max-width: 40rem) {
  .plan-content.spaceplan {
    padding: 0 0 0;
  }
}
.plan-content.spaceplan .main-title {
  background: #277d4f;
}
.plan-content.spaceplan .main-title .main-title-inner::before {
  width: 126px;
  height: 1.75rem;
  background: url(../img/plan-select-item-spaceplan.webp) no-repeat center
    center/cover;
  top: -1rem;
  left: 1rem;
}
@media screen and (max-width: 40rem) {
  .plan-content.spaceplan .main-title .main-title-inner::before {
    top: -1.25rem;
    left: 15px;
  }
}
.plan-content-spaceplan-continue {
  width: 0.375rem;
  margin: 0 auto 0.5rem auto;
}
@media screen and (max-width: 40rem) {
  .plan-content-spaceplan-continue {
    margin: 0 auto 0.5rem auto;
  }
}
.plan-content-spaceplan-list-title {
  font-size: 1.25rem;
}
.plan-content-spaceplan-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto 1rem;
}
@media screen and (max-width: 40rem) {
  .plan-content-spaceplan-list {
    margin: 0 auto 2rem;
  }
}
.plan-content-spaceplan-list li {
  width: calc(50% - 3rem);
  border-radius: 0.5rem;
  border: 3px solid #ebebeb;
  position: relative;
  padding: 1rem;
}
@media screen and (max-width: 40rem) {
  .plan-content-spaceplan-list li {
    width: 100%;
  }
}
.plan-content-spaceplan-list li .min-title {
  position: absolute;
  top: 1rem;
  left: 1rem;
}
.plan-content-spaceplan-list li .image {
  width: auto;
  height: 11rem;
  text-align: center;
}
@media screen and (max-width: 40rem) {
  .plan-content-spaceplan-list li .image {
    height: 10rem;
  }
}
.plan-content-spaceplan-list li .image img {
  width: auto;
  height: 100%;
}
.plan-content-spaceplan-list li .price {
  text-align: center;
}
.plan-content-spaceplan-list li .price del {
  color: #919191;
}
.plan-content-spaceplan-list li .price del .min {
  font-size: 0.75rem;
}
.plan-content-spaceplan-list li .price .arrow {
  display: inline-block;
  width: 0.8125rem;
  height: 0.15625rem;
  background: url(../img/plan-content-list-arrow.webp) no-repeat center
    center/cover;
  margin: 0 0.5rem;
  -webkit-transform: translate(0, -4px);
  -ms-transform: translate(0, -4px);
  transform: translate(0, -4px);
}
.plan-content-spaceplan-list li .price .accent {
  color: #277d4f;
  font-size: 1.625rem;
}
.plan-content-spaceplan-list li .price .min {
  font-size: 0.75rem;
}
.plan-content-spaceplan-list-caution {
  text-align: right;
  width: 45rem;
  font-size: 0.75rem;
  margin: 0 auto 4rem;
}
@media screen and (max-width: 40rem) {
  .plan-content-spaceplan-list-caution {
    display: none;
  }
}
.plan-content-spaceplan-catch {
  font-size: 1.75rem;
}
@media screen and (max-width: 40rem) {
  .plan-content-spaceplan-catch {
    font-size: 1.35rem;
  }
}
.plan-content-spaceplan-catch .accent {
  color: #277d4f;
}
.plan-content-common-layout.spaceplan .continue .accent {
  color: #277d4f;
  font-weight: bold;
}
.plan-content-common-layout.spaceplan .continue .arrow {
  width: 1.5rem;
}
@media screen and (max-width: 40rem) {
  .plan-content-common-layout.spaceplan .continue .arrow {
    width: 1rem;
    position: absolute;
    bottom: -1rem;
    left: 50%;
    -webkit-transform: translate(-50%, 1rem) rotate(90deg);
    -ms-transform: translate(-50%, 1rem) rotate(90deg);
    transform: translate(-50%, 1rem) rotate(90deg);
  }
}
.plan-content-common-layout.spaceplan .after .image::after {
  background: #277d4f;
}
.plan-content-common-layout.spaceplan .after .content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.plan-content-common-layout.spaceplan .after .content-wrapper .text .accent {
  color: #277d4f;
}
.plan-content-common-layout.spaceplan .after .content-wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}
.plan-content-common-layout.spaceplan .after .content-wrapper ul li {
  width: auto;
  height: 4.25rem;
}
.plan-content-common-layout.spaceplan .after .content-wrapper ul li img {
  width: auto;
  height: 100%;
}
.plan-content .lead.spaceplan span {
  color: #277d4f;
}
.plan-content-spaceplan-article.pc-control {
  display: block;
  font-size: 1.25rem;
}
@media screen and (max-width: 40rem) {
  .plan-content-spaceplan-article.pc-control {
    display: none;
  }
}
.plan-content-spaceplan-article {
  margin: 0 auto 4rem;
}
@media screen and (max-width: 40rem) {
  .plan-content-spaceplan-article {
    margin: 0 auto 1rem;
  }
}
.plan-content-spaceplan-article .lead {
  text-align: center;
}
.plan-content-spaceplan-article .lead .accent {
  color: #277d4f;
  font-size: 1.5rem;
}
@media screen and (max-width: 40rem) {
  .plan-content-spaceplan-article .lead .accent {
    font-size: 1rem;
  }
}
@media screen and (max-width: 40rem) {
  .flow .wrapper {
    padding: 0 1rem;
  }
}
.flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  margin: 0 0 2rem;
}
@media screen and (max-width: 40rem) {
  .flow-list {
    /* gap: 1rem; */
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 0 0rem;
  }
}
.flow-list li {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 40rem) {
  .flow-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    margin-bottom: 10px;
  }
}
.flow-list li::after {
  content: "";
  background: url(../img/flow-list-arrow.webp) no-repeat center center/cover;
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  right: -1.5rem;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media screen and (max-width: 40rem) {
  .flow-list li::after {
    top: auto;
    right: auto;
    /* bottom: -0.3rem; */
    bottom: 0;
    left: 3rem;
    -webkit-transform: translate(0, 0) rotate(90deg);
    -ms-transform: translate(0, 0) rotate(90deg);
    transform: translate(0, 0) rotate(90deg);
  }
}
.flow-list li:last-child::after {
  display: none;
}
.flow-list li .image {
  margin: 0 0 1rem;
}
@media screen and (max-width: 40rem) {
  .flow-list li .image {
    margin: 0;
    width: 7rem;
    margin-bottom: 1.8rem;
  }
}
@media screen and (max-width: 40rem) {
  .flow-list li .sp-layout {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.flow-list li .no {
  margin: 0 0 1rem;
  font-weight: bold;
  font-size: 1.25rem;
}
@media screen and (max-width: 40rem) {
  .flow-list li .no {
    font-size: 0.9rem;
    margin: 0 0 0.25rem;
  }
}
.flow-list li .no span {
  margin: 0 0.5rem 0 0;
  color: #97c32b;
}
@media screen and (max-width: 40rem) {
  .flow-list li .article {
    font-size: 0.8rem;
    margin: 0 0 1rem;
  }
}
.flow-list li .article span {
  font-size: 0.75rem;
}
@media screen and (max-width: 40rem) {
  .flow-list li .article span {
    font-size: 0.65rem;
  }
}
.flow-catch-pc-display {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 40rem) {
  .flow-catch-pc-display {
    display: none !important;
  }
}
.flow-catch-sp-display {
  display: none !important;
}
@media screen and (max-width: 40rem) {
  .flow-catch-sp-display {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.flow-catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  margin: 0 0 4rem;
}
@media screen and (max-width: 40rem) {
  .flow-catch {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
    margin: 0 0 1rem;
  }
}
.flow-catch ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 40rem) {
  .flow-catch ul {
    margin: 0 0 1rem;
  }
}
.flow-catch ul li {
  width: 100%;
}
.flow-catch ul li img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.flow-catch .flow-catch-layout {
  width: 100%;
}
.flow-catch .flow-catch-layout .lead {
  font-size: 1.125rem;
  margin: 0 0 1rem;
}
@media screen and (max-width: 40rem) {
  .flow-catch .flow-catch-layout .lead {
    text-align: center;
  }
}
.flow-catch .flow-catch-layout .lead .accent {
  color: #277d4f;
  font-size: 1.375rem;
  font-weight: bold;
}
.compare {
  background: #f8ffe5;
  margin: 0 0 4rem;
}
@media screen and (max-width: 40rem) {
  .compare {
    margin: 0 0 2rem;
  }
}
.compare .wrapper {
  padding: 2rem 0;
}
.compare .article-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 1rem;
}
.compare .article-container .logo {
  width: 12rem;
}
@media screen and (max-width: 40rem) {
  .compare .article-container .logo {
    width: 10rem;
  }
}
.compare .article-container .title {
  font-size: 1.25rem;
}
@media screen and (max-width: 40rem) {
  .compare .article-container .title {
    font-size: 1rem;
  }
}
.compare .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 64rem) {
  .compare .content {
    padding: 0 2rem;
  }
}
.compare .compare-table {
  max-width: 30rem;
}
@media screen and (max-width: 64rem) {
  .compare .compare-table {
    max-width: 22rem;
    margin: 0 0 0.5rem;
  }
}
.compare .accent {
  color: #97c32b;
  font-weight: bold;
}
.secure {
  margin: 0 0 4rem;
}
@media screen and (max-width: 40rem) {
  .secure .wrapper {
    padding: 0 1rem;
  }
}
.secure-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 40rem) {
  .secure-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.secure-list li {
  width: 100%;
}
.secure-list li .image {
  margin: 0 0 0.5rem;
}
@media screen and (max-width: 40rem) {
  .secure-list li .image {
    width: 8rem;
  }
}
.secure-list li .title {
  text-align: center;
  font-weight: bold;
  margin: 0 0 1rem;
  font-size: 1.25rem;
}
@media screen and (max-width: 40rem) {
  .secure-list li .title {
    text-align: left;
  }
}
@media screen and (max-width: 40rem) {
  .secure-list .sp-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.voice {
  margin: 0 0 4rem;
}
@media screen and (max-width: 40rem) {
  .voice {
    margin: 0 0 4rem;
  }
}
@media screen and (max-width: 40rem) {
  .voice .wrapper {
    padding: 0 1rem;
  }
}
.voice-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 40rem) {
  .voice-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.voice-list li {
  width: calc(50% - 1.15rem);
}
@media screen and (max-width: 40rem) {
  .voice-list li {
    width: 100%;
  }
}
.voice-list li .user-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.voice-list li .user-wrapper .user-image {
  border-radius: 100%;
  width: 7rem;
  z-index: 1;
}
@media screen and (max-width: 40rem) {
  .voice-list li .user-wrapper .user-image {
    width: 5rem;
  }
}
.voice-list li .user-wrapper .lgrn {
  background: #97c32b;
}
.voice-list li .user-wrapper .dgrn {
  background: #277d4f;
}
.voice-list li .user-wrapper .user-comment-wrapper {
  border-radius: 0.5rem 0.5rem 0rem 0.5rem;
  width: 100%;
  padding: 0.5rem 1rem;
  margin: 0 0 1rem -0.5rem;
}
.voice-list li .user-wrapper .user-comment-wrapper .title {
  color: #fff;
  font-weight: bold;
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}
@media screen and (max-width: 40rem) {
  .voice-list li .user-wrapper .user-comment-wrapper .title {
    font-size: 0.95rem;
  }
}
.voice-list li .user-wrapper .user-comment-wrapper .data {
  color: #fff;
  font-size: 0.75rem;
}
.voice-list li .voice-content {
  border: 1px solid #d9d9d9;
  padding: 1rem;
}
.voice-list li .voice-content .title {
  font-weight: bold;
  border-left: 0.375rem solid #97c32b;
  padding: 0 0 0 0.5rem;
  margin: 0 0 0.5rem;
}
.voice-list li .voice-content .article {
  margin: 0 0 1rem;
}
.voice-list li .voice-content .article .accent {
  color: #97c32b;
  font-weight: bold;
}
.voice-list li .voice-content .tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
.voice-list li .voice-content .tag li {
  font-size: 0.75rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 40rem) {
  .read-more-content {
    height: 12rem;
    overflow: hidden;
    position: relative;
  }
  .read-more-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4rem;
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(transparent),
      to(#ffffff)
    );
    background: -o-linear-gradient(transparent, #ffffff);
    background: linear-gradient(transparent, #ffffff);
    pointer-events: none;
  }
}
.read-more-box.is-open .read-more-content::after {
  display: none;
}
.read-more-action {
  text-align: center;
  margin: 1rem 0 0 0;
  padding: 0;
}
.read-more-action button {
  background: #fff;
  border: 1px solid #494949;
  color: #494949;
  border-radius: 0.25rem;
}
.read-more-btn {
  cursor: pointer;
  margin: 0;
  padding: 0.5rem 1rem;
}
.faq {
  margin: 0 0 4rem;
}
@media screen and (max-width: 40rem) {
  .faq {
    margin: 0 0 2rem;
  }
}
@media screen and (max-width: 40rem) {
  .faq .wrapper {
    padding: 0 1rem;
  }
}
.faq-list {
  max-width: 55rem;
  border: 2px solid #ebebeb;
  margin: 0 auto 1rem;
}
.faq-list dt {
  position: relative;
  padding: 1rem 2rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 40rem) {
  .faq-list dt {
    padding: 1rem 1rem;
    font-size: 0.875rem;
  }
}
.faq-list dt:hover {
  cursor: pointer;
  opacity: 0.75;
}
.faq-list dt::before {
  font-family: "Font Awesome 6 Brands", "Font Awesome 6 Free";
  content: "Q";
  color: #ebebeb;
}
.faq-list dt p::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1px;
  background: #97c32b;
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
}
@media screen and (max-width: 40rem) {
  .faq-list dt p::before {
    right: 1rem;
  }
}
.faq-list dt p::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1px;
  background: #97c32b;
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translate(0px, -50%) rotate(90deg);
  -ms-transform: translate(0px, -50%) rotate(90deg);
  transform: translate(0px, -50%) rotate(90deg);
  -webkit-transition: all 1s cubic-bezier(1, 0, 0, 1);
  -o-transition: all 1s cubic-bezier(1, 0, 0, 1);
  transition: all 1s cubic-bezier(1, 0, 0, 1);
  opacity: 1;
}
@media screen and (max-width: 40rem) {
  .faq-list dt p::after {
    right: 1rem;
  }
}
.faq-list dd {
  display: none;
  padding: 0rem 2rem;
  position: relative;
}
@media screen and (max-width: 40rem) {
  .faq-list dd {
    padding: 0rem 1rem;
  }
}
.faq-list dd::before {
  font-family: "Font Awesome 6 Brands", "Font Awesome 6 Free";
  content: "A";
  color: #97c32b;
  position: absolute;
  top: 0.25rem;
  left: 2rem;
}
@media screen and (max-width: 40rem) {
  .faq-list dd::before {
    left: 1rem;
  }
}
.faq-list dd p {
  font-size: 0.8rem;
  margin: 0 0 1rem 2rem;
}
.faq-list dd a {
  color: #494949;
  text-decoration: underline;
  font-weight: bold;
  margin: 0 0.25rem;
}
.faq-list .faq-image {
  max-width: 40rem;
}
.js-faq-accordion-active p::after {
  width: 0rem !important;
  opacity: 0 !important;
}
.bottom-campaign {
  background: #f8ffe5;
}
.bottom-campaign-lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 23.75rem;
  margin: 0 auto 1rem auto;
}
.bottom-campaign-lead .lead {
  font-size: 1.125rem;
}
.bottom-campaign-lead .lead .accent {
  color: #97c32b;
  font-weight: bold;
}
.bottom-campaign-lead .image {
  width: 6rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.contact {
  padding: 4rem 0;
}
@media screen and (max-width: 40rem) {
  .contact {
    padding: 0rem 0;
  }
}
.contact-main-title {
  font-size: 1.5rem;
}
@media screen and (max-width: 40rem) {
  .contact-main-title {
    font-size: 1.25rem;
  }
}
.contact-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 4rem;
}
@media screen and (max-width: 40rem) {
  .contact-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 0 2rem;
  }
}
.contact-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 20rem;
  border-radius: 9rem;
}
@media screen and (max-width: 40rem) {
  .contact-list li a {
    width: 75%;
    margin: auto;
  }
}
.contact-list li a .icon {
  width: 2rem;
}
.contact-list li a .text {
  font-size: 1.25rem;
}
@media screen and (max-width: 40rem) {
  .contact-list li a .text {
    font-size: 1rem;
  }
}
.contact-list li a .caution {
  font-size: 0.75rem;
  text-align: center;
}
@media screen and (max-width: 40rem) {
  .contact-list li a .caution {
    font-size: 0.5rem;
  }
}
.contact-list .mail a {
  border: 2px solid #277d4f;
  background: #e7f6ee;
  color: #277d4f;
  padding: 1rem 1rem;
}
.contact-list .phone a {
  border: 2px solid #97c32b;
  color: #97c32b;
  background: #fbfff2;
  padding: 0.5rem 1rem;
}
.contact-b2b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 40rem) {
  .contact-b2b .title {
    font-size: 0.8125rem;
  }
}
.contact-b2b .arrow {
  width: 1.5rem;
  height: 2rem;
}
.contact-b2b .link a {
  display: block;
  width: 15rem;
}
@media screen and (max-width: 40rem) {
  .contact-b2b .link a {
    width: 9rem;
  }
}
.bottom-caution {
  margin: 0 0 4rem;
}
@media screen and (max-width: 40rem) {
  .bottom-caution .wrapper {
    padding: 0 1rem;
  }
}
.bottom-caution .title {
  border-radius: 0.25rem;
  padding: 0.25rem 0.5rem;
  display: inline-block;
  background: #929292;
  color: #fff;
  font-size: 0.75rem;
  margin: 0 0 1rem;
}
.bottom-caution .article {
  font-size: 0.75rem;
  color: #494949;
}
footer {
  background: #f5f5f5;
  padding: 2rem 0;
  text-align: center;
}
@media screen and (max-width: 40rem) {
  footer {
    padding: 1rem 1rem 9rem;
  }
}
@media screen and (max-width: 40rem) {
  footer .copyright {
    font-size: 0.75rem;
  }
}
footer address {
  font-style: normal;
}
@media screen and (max-width: 40rem) {
  footer address {
    font-size: 0.75rem;
  }
}
.cta-area {
  display: none;
  -webkit-transform: translate(0%, 100%);
  -ms-transform: translate(0%, 100%);
  transform: translate(0%, 100%);
  -webkit-transition: all 0.5s cubic-bezier(1, 0, 0, 1);
  -o-transition: all 0.5s cubic-bezier(1, 0, 0, 1);
  transition: all 0.5s cubic-bezier(1, 0, 0, 1);
}
@media screen and (max-width: 40rem) {
  .cta-area {
    display: block;
    background: #fff;
    padding: 0.5rem 1rem;
    position: fixed;
    bottom: 0;
    left: 0;
    width: calc(100% - 2rem);
    z-index: 9;
  }
  .cta-area .title {
    color: #e23632;
    text-align: center;
    font-weight: bold;
    margin: 0 0 0.5rem;
  }
  .cta-area .lead {
    text-align: center;
    font-size: 0.75rem;
  }
  .cta-area .cta-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 0 0.5rem;
  }
  .cta-area .cta-button .line {
    width: 100%;
  }
  .cta-area .cta-button .line a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #2ec755;
    color: #fff;
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }
  .cta-area .cta-button .line a .icon {
    width: 1.75rem;
  }
  .cta-area .cta-button .mail {
    width: 100%;
  }
  .cta-area .cta-button .mail a {
    display: block;
    text-align: center;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    border: 2px solid #ff9046;
    color: #ff9046;
    background: #fff;
    font-size: 0.8rem;
    white-space: nowrap;
  }
}
.cta-area-active {
  -webkit-transform: translate(0%, 0%);
  -ms-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
}
