* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.common_wrapper {
  max-width: 375px;
  margin: 0 auto;
  padding: 40px 0;
}

@media screen and (max-width: 375px) {
  .common_wrapper {
    padding: 40px calc(18 / 375 * 100vw);
  }
}

@media screen and (min-width: 900px) {
  .common_wrapper {
    max-width: 880px;
  }
}

.common_btn {
  max-width: 300px;
  height: 50px;
  border-radius: 50px;
  background: #1e1e1e;
  font-family: "M PLUS 1p", sans-serif;
  color: #fff;
  text-decoration: none;
  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;
  margin: 31px auto 0;
}

.common_btn.-yellow {
  background: #fffa46;
  color: #1e1e1e;
}

.common_btn:hover {
  opacity: 0.7;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: rgba(255, 255, 255, 0.7);
}

@media screen and (min-width: 900px) {
  .common_btn {
    max-width: 420px;
    height: 70px;
    font-size: 24px;
    margin-top: 48px;
  }
}

.common_title {
  position: relative;
  max-width: 315px;
  margin: 0 auto;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  color: #1e1e1e;
  text-align: center;
  background: #fff;
  border: #1e1e1e 2px solid;
  border-radius: 25px;
  padding: 20px 11px;
}

.common_title span {
  display: inline-block;
}

.common_title::after {
  content: "";
  display: block;
  width: 88.5px;
  height: 25px;
  background: #fff;
  border-bottom: #1e1e1e 2px solid;
  position: absolute;
  bottom: -11px;
  right: 79px;
  margin: auto;
  -webkit-transform: rotate(-11deg);
  transform: rotate(-11deg);
}

@media screen and (max-width: 375px) {
  .common_title {
    font-size: calc(32 / 375 * 100vw);
    line-height: calc(40 / 32);
    padding: calc(20 / 375 * 100vw) calc(11 / 375 * 100vw);
  }
}

@media screen and (min-width: 900px) {
  .common_title {
    max-width: 880px;
    padding: 32px 0;
    border-radius: 40px;
  }
  .common_title::after {
    width: 125px;
    height: 27px;
    bottom: -14.4px;
    right: 332px;
  }
}

.common_subtitle {
  max-width: 336px;
  margin: 0 auto;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 36px;
  color: #1e1e1e;
  text-align: center;
  margin-top: 20px;
}

.common_subtitle span {
  display: block;
}

.common_subtitle span.-br span {
  display: inline;
}

.common_subtitle span.-breakPC {
  display: inline-block;
}

@media screen and (max-width: 375px) {
  .common_subtitle {
    font-size: calc(24 / 375 * 100vw);
    line-height: 1.5;
  }
}

@media screen and (min-width: 900px) {
  .common_subtitle {
    font-size: 26px;
    line-height: 32px;
    max-width: 400px;
    margin-top: 44px;
  }
  .common_subtitle span {
    display: inline;
  }
  .common_subtitle span.-br span {
    display: inline-block;
  }
}

.common_text {
  max-width: 318px;
  margin: 0 auto;
  margin-top: 20px;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #1e1e1e;
}

.common_text img {
  width: 100%;
  object-fit: contain;
  margin-bottom: 24px;
}

.common_text a {
  line-height: 48px;
  text-decoration: underline;
  color: #003fc8;
}

.common_text.under-title {
  margin-top: 37px;
}

.common_text span {
  display: inline-block;
}

@media screen and (min-width: 900px) {
  .common_text {
    max-width: 400px;
    font-size: 24px;
    line-height: 36px;
    margin-top: 44px;
  }
  .common_text.under-title {
    max-width: none;
    margin-top: 44px;
  }
}

.u-center {
  text-align: center;
}

.u-mt65 {
  margin-top: 65px;
}

@media screen and (min-width: 900px) {
  .container {
    min-width: 200px;
  }
  .container_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 40px;
  }
  .container_wrapper.three-rows .container {
    width: 240px;
  }
  .container_wrapper.three-rows .container_image {
    width: 240px;
    height: 240px;
    border-radius: 64px;
  }
  .container_wrapper.three-rows .container_text .common_text {
    text-align: left;
  }
  .container_wrapper.three-rows .container_text .common_subtitle span.-breakPC {
    display: inline-block;
  }
  .container_wrapper.three-rows .container_text span {
    display: inline;
  }
}

.container_image {
  width: 315px;
  height: 315px;
  margin: 40px auto 0;
  border-radius: 84px;
  border: 2px #1e1e1e solid;
  overflow: hidden;
}

.container_image img {
  width: 100%;
}

@media screen and (max-width: 375px) {
  .container_image {
    width: calc(315 / 375 * 100vw);
    height: calc(315 / 375 * 100vw);
    border-radius: calc(84 / 375 * 100vw);
  }
}

@media screen and (min-width: 900px) {
  .container_image {
    width: 400px;
    height: 400px;
  }
}

.container_list {
  text-align: center;
  list-style: none;
  font-size: 18px;
  line-height: 25px;
}

@media screen and (min-width: 900px) {
  .container_list {
    font-size: 28px;
    line-height: 48px;
  }
}

@media screen and (max-width: 375px) {
  .container_list {
    font-size: calc(18 / 375 * 100vw);
    line-height: calc(25 / 18);
  }
}

.-yellow {
  background: #fffa46;
}

.-gray {
  background: #f0f0f0;
}

.mainvisual {
  background: #f0f0f0;
}

.mainvisual_wrapper {
  max-width: none;
  height: 600px;
  margin: 0 auto;
  background: url(img/sappli/fv-pc.jpg) center/contain no-repeat;
  position: relative;
}

.mainvisual_wrapper a {
  position: absolute;
  width: 400px;
  bottom: 50px;
  right: calc(50% - 400px);
}

@media screen and (max-width: 800px) {
  .mainvisual_wrapper {
    max-width: none;
    padding: 60px 0 40px;
    background: url(img/sappli/fv-sp.jpg) center/contain no-repeat;
  }
  .mainvisual_wrapper a {
    position: absolute;
    width: 300px;
    bottom: 30px;
    right: 0;
    left: 0;
    margin: auto;
  }
}

@media screen and (max-width: 375px) {
  .mainvisual_wrapper {
    padding: calc(26 / 375 * 100vw) calc(24 / 375 * 100vw)
      calc(40 / 375 * 100vw);
  }
}

.mainvisual_title {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 42px;
}

.mainvisual_title span {
  display: inline-block;
}

@media screen and (max-width: 375px) {
  .mainvisual_title {
    font-size: calc(36 / 375 * 100vw);
    line-height: calc(42 / 36);
  }
}

@media screen and (min-width: 900px) {
  .mainvisual_title {
    margin-left: 12px;
    font-size: 48px;
    line-height: 64px;
  }
}

.mainvisual_img {
  padding: 35px 0 0;
}

.mainvisual_img img {
  width: 100%;
}

@media screen and (min-width: 900px) {
  .mainvisual_img {
    max-width: 526px;
    margin: 0 auto;
    padding: 25px;
  }
}

.notes_list {
  list-style: none;
  font-size: 14px;
  line-height: 25px;
  padding: 30px;
}

@media screen and (min-width: 900px) {
  .notes_list {
    font-size: 18px;
    line-height: 24px;
    max-width: 880px;
    margin: 0 auto;
    padding: 40px 0;
  }
}

.useCase .container_text {
  position: relative;
}

.useCase .container_wrapper {
  margin-top: 56px;
}

.recommend .container_image {
  background: #f0f0f0;
  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;
}

@media screen and (min-width: 900px) {
  .recommend .container_image {
    margin-top: 43px;
    width: 630px;
    height: 630px;
  }
}

.accordion_btn {
  width: 24px;
  height: 24px;
  background: url(img/sappli/btn_plus.png) center/contain no-repeat;
  position: absolute;
  top: 5px;
  right: 51px;
}

.accordion_btn img {
  width: 100%;
}

.accordion_btn.is-active {
  background: url(img/sappli/btn_minus.png) center/contain no-repeat;
}

@media screen and (max-width: 375px) {
  .accordion_btn {
    top: 1.33333vw;
    right: 7vw;
  }
}

.accordion_text {
  display: none;
}

.text_link {
  color: #3b3b3b;
  text-decoration: underline;
}
