@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  color: #333333;
  font-family: 'Noto SansJP',sans-serif;
  text-decoration: none;
  list-style: none;
}

.header {
  display: block;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: unset;
  background-color: #FFFFFF;
  filter: drop-shadow(0px 3px 4px rgba(0, 0, 0, 0.25));
  overflow: hidden;
  position: fixed;
  top: 0;
  z-index: 100;
}
@media screen and (max-width: 670px) {
  .header {
    height: 92px;
    filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.2));
  }
}
.header__wrap {
  height: 42px;
  margin: 14px 120px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 940px) {
  .header__wrap {
    margin: 12px 32px;
  }
}
@media screen and (max-width: 670px) {
  .header__wrap {
    flex-direction: column;
    margin: 10px auto;
    gap: 4px;
  }
}
.header__logo img {
  height: 38px;
}
@media screen and (max-width: 940px) {
  .header__logo img {
    height: 30px;
  }
}
@media screen and (max-width: 670px) {
  .header__logo img {
    height: 26px;
  }
}
.header__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 940px) {
  .header__link {
    gap: 24px;
  }
}
@media screen and (max-width: 670px) {
  .header__link {
    gap: 18px;
  }
}
.header__link-registration {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 44px;
  background-color: #F18F10;
  border-radius: 22px;
  border: 2px solid #F18F10;
  color: #FFFFFF !important;
  font-size: 16px;
  font-weight: bold;
  box-sizing: border-box;
  transition: background-color 0.3s, color 0.3s;
}
.header__link-registration:hover {
  background-color: #FFFFFF;
  color: #F18F10 !important;
}
@media screen and (max-width: 940px) {
  .header__link-registration {
    width: 216px;
    height: 42px;
    font-size: 16px;
    font-weight: 500;
  }
}
@media screen and (max-width: 670px) {
  .header__link-registration {
    width: 172px;
    height: 38px;
    font-size: 14px;
  }
}
.header__link-login {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 152px;
  height: 42px;
  border-radius: 22px;
  border: 2px solid #03af7a;
  color: #03af7a !important;
  font-size: 16px;
  font-weight: bold;
  box-sizing: border-box;
  box-sizing: border-box;
  transition: background-color 0.3s, color 0.3s;
}
.header__link-login:hover {
  background-color: #03af7a;
  color: #FFFFFF !important;
}
@media screen and (max-width: 940px) {
  .header__link-login {
    width: 132px;
    height: 40px;
  }
}
@media screen and (max-width: 670px) {
  .header__link-login {
    width: 112px;
    height: 38px;
  }
}

.first-view {
  padding-top: 76px;
  background-color: #ebf9f0;
}
@media screen and (max-width: 940px) {
  .first-view {
    padding-top: 48px;
  }
}
@media screen and (max-width: 670px) {
  .first-view {
    padding-top: 52px;
  }
}
.first-view__wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  gap: 23px;
}
@media screen and (max-width: 940px) {
  .first-view__wrap {
    flex-direction: column;
    align-items: center;
  }
}
.first-view__heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 42px;
}
@media screen and (max-width: 940px) {
  .first-view__heading {
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 670px) {
  .first-view__heading {
    margin-bottom: 0;
  }
}
.first-view__Callout{
  margin-left: 30px;
  width: fit-content;
  color: #FFF;
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.56px;
  padding: 10px 20px;
  border-radius: 60px;
  background: #03AF7A;
  transform: rotate(-4deg);
  margin-bottom: 5px;
}
.first-view__Callout::before {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-right: 25px solid #03AF7A;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    bottom: -15px;
    right: 45px;
    transform: rotate(45deg);
}
@media screen and (max-width: 670px) {
  .first-view__Callout {
    font-size: 15px;
    line-height: 125%;
  }
  .first-view__Callout::before {
    border-right: 15px solid #03AF7A;
    border-top: 15px solid transparent;
    border-bottom: 8px solid transparent;
    bottom: -10px;
    right: 35px;
  }
}
.first-view__title {
  font-size: 70px;
  font-weight: bold;
  line-height: 150%;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 940px) {
  .first-view__title {
    font-size: 56px;
  }
}
@media screen and (max-width: 670px) {
  .first-view__title {
    font-size: 32px;
  }
}
.first-view__title span {
  color: #03af7a;
}
.first-view__list {
  display: flex;
  flex-direction: row;
  gap: 23px;
  margin: 0 auto;
  margin-top: 25px;
}
@media screen and (max-width: 940px) {
  .first-view__list {
    gap: 18px;
  }
}
@media screen and (max-width: 670px) {
  .first-view__list {
    margin-top: 24px;
    gap: 13px;
  }
}
.first-view__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  text-align: center;
  background-color: #f2fff7;
  border: 3px solid #03af7a;
  border-radius: 50%;
}
@media screen and (max-width: 940px) {
  .first-view__item {
    width: 114px;
    height: 114px;
  }
}
@media screen and (max-width: 670px) {
  .first-view__item {
    width: 100px;
    height: 100px;
  }
}
.first-view__item-text {
  font-size: 15px;
  color: #03af7a;
  font-weight: bold;
}
@media screen and (max-width: 940px) {
  .first-view__item-text {
    font-size: 14px;
    line-height: 140%;
  }
}
.first-view__item-text span {
  color: #03af7a;
  font-size: 24px;
  line-height: 120%;
}
@media screen and (max-width: 670px) {
  .first-view__item-text span {
    font-size: 14px;
  }
}
.first-view__link-registration {
  width: 380px;
  height: 76px;
  margin: 0 auto;
  margin-top: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F18F10;
  border-radius: 9px;
  border: 3px solid #F18F10;
  color: #FFFFFF !important;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.1em;
  box-sizing: border-box;
  transition: background-color 0.3s, color 0.3s;
}
.first-view__link-registration:hover {
  background-color: #FFFFFF;
  color: #F18F10 !important;
}
@media screen and (max-width: 940px) {
  .first-view__link-registration {
    margin-top: 38px;
    width: 332px;
    height: 68px;
  }
}
.first-view__visual {
  display: flex;
  align-items: end;
}
.first-view__visual picture {
  padding: 0;
}
.first-view__visual img {
  width: 39.5833333333vw;
  max-width: 570px;
  transform: translateY(5px);
}
@media screen and (max-width: 940px) {
  .first-view__visual img {
    min-width: 480px;
    margin-top: -25px;
  }
}
@media screen and (max-width: 670px) {
  .first-view__visual img {
    margin-top: 0;
    min-width: unset;
    width: 290px;
  }
}
@media screen and (max-width: 670px) {
  .first-view__visual {
    margin-top: 14px;
  }
}

.desc {
  background-color: #03AF7A;
  display: flex;
  justify-content: center;
  padding: 48px 0 80px;
}
@media screen and (max-width: 670px) {
  .desc {
    padding: 32px 0 60px;
  }
}
.desc__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.desc__title {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.desc__text span {
  color: #03af7a;
  font-weight: 600;
}
.desc__picture {
  width: 940px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 26px 0;
  background-color: #FFFFFF;
  border-radius: 14px;
}
@media screen and (max-width: 940px) {
  .desc__picture {
    width: 96%;
    min-width: 670px;
  }
}
@media screen and (max-width: 670px) {
  .desc__picture {
    width: 100%;
    min-width: unset;
    border-radius: 0px;
  }
}
.desc__picture img {
  width: 884px;
  margin: 0 28px;
}
@media screen and (max-width: 940px) {
  .desc__picture img {
    width: calc(100% - 28px);
    margin: 0 14px;
  }
}
@media screen and (max-width: 670px) {
  .desc__picture img {
    display: block;
      max-width: 360px;
      margin: 0 auto;
  }
}
.desc__link{
  margin-top: 46px;
}
@media screen and (max-width: 670px) {
  .desc__link{
  margin-top: 30px;
}
}

.guide {
  background-color: #EBF9F0;
  display: flex;
  justify-content: center;
  padding: 48px 0 80px;
}
@media screen and (max-width: 670px) {
  .guide {
    padding: 32px 0 60px;
  }
}
.guide__text {
  margin-top: 20px;
  font-size: 18px;
  text-align: center;
  font-weight: 500;
}
.guide__list {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
@media screen and (max-width: 940px) {
  .guide__list {
    max-width: 96%;
  }
}
@media screen and (max-width: 670px) {
  .guide__list {
    flex-direction: column;
    align-items: center;
  }
}
.guide__item {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.guide__item:not(:last-child)::after {
  display: block;
  content: "";
  width: 23px;
  height: 29px;
  margin: 0 32px;
  background-color: #1DBF8D;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
@media screen and (max-width: 940px) {
  .guide__item:not(:last-child)::after {
    width: 21px;
    height: 25px;
    margin: 0 1.4925373134vw;
  }
}
@media screen and (max-width: 670px) {
  .guide__item:not(:last-child)::after {
    transform: translateY(-2px) rotateZ(90deg);
    margin: 16px 0;
  }
}
@media screen and (max-width: 670px) {
  .guide__item {
    flex-direction: column;
  }
}
.guide__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
@media screen and (max-width: 940px) {
  .guide__contents {
    gap: 12px;
  }
}
.guide__contents > picture > img {
  width: 255px;
}
@media screen and (max-width: 940px) {
  .guide__contents > picture > img {
    width: 27.7611940299vw;
  }
}
@media screen and (max-width: 670px) {
  .guide__contents > picture > img {
    width: 256px;
  }
}
.guide__text__spflex{
  display: flex;
  align-items: center;
  gap: 6px;
}
.guide__text__sp{
  font-size: 16px;
  font-weight: 400;
}
.guide__text__step {
  display: inline-block;
  padding: 0px 6px;
  color: #1F6A5B;
  font-size: 16px;
  font-weight: 600;
}
.guide__text__bottom {
  color: #1f6a5b;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 670px) {
  .guide__text__step {
    color: #000000;
    font-weight: 400;
  }
}

.usecase{
  background-color: #03af7a;
  display: flex;
  justify-content: center;
  padding: 80px 0 80px;
  background-image: url('/img/contents/lp/lp_paid_invoice_card/usecase-bg.svg');
  background-repeat: repeat;
  background-size:300px auto;
}
@media screen and (max-width: 670px) {
  .usecase {
    padding: 32px 0 60px;
    background-size:225px auto;
  }
}
.usecase__wrap{
  display: flex;
    flex-direction: column;
    align-items: center;
}
.usecase__list{
  display: flex;
  flex-direction: row;
  max-width: 940px;
  gap: 28px 0;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
}
@media screen and (max-width: 940px) {
  .usecase__list {
    display: block;
  }
}
.usecase__item{
  background-color: #FFFFFF;
  width: 416px;
  height: auto;
  padding: 30px 20px;
  border-radius: 5px;
}
@media screen and (max-width: 940px) {
  .usecase__item{
    margin-bottom: 30px;
  }
  .usecase__item:last-child{
    margin-bottom: 0;
  }
}
@media screen and (max-width: 670px) {
  .usecase__item {
    max-width: 302px;
    padding: 20px 14px;
    margin-bottom: 20px;
  }
}
.usecase__innertop{
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 670px) {
  .usecase__innertop {
    display: block;
    justify-content: center;
  }
}
.usecase__img{
  width: 113px;
  height: 113px;
  margin-right: 10px;
}
@media screen and (max-width: 670px) {
  .usecase__img {
    display: block;
    margin: 0 auto;
  }
}
.usecase__innertop-sp{
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 670px) {
  .usecase__innertop-sp {
    justify-content: center;
    margin-top: 15px;
  }
}
.usecase__innertop-flex{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 113px;
}
.usecase__innertop-box{
  width: 115px;
  height: auto;
  border-radius: 3px;
  border: 1px solid #03AF7A;
  height: 52px;
  background: #F2FFF7;
}
@media screen and (max-width: 670px) {
  .usecase__innertop-box{
    width: 127px;
}
}
.usecase__innertop-title{
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  background: #03AF7A;
  border-radius: 1.5px 1.5px 0 0;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.usecase__innertop-txt{
  color: #1F6A5B;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.usecase__innertop-box-large{
  width: 154px;
  height: 113px;
  border-radius: 3px;
border: 1px solid #03AF7A;
background: #F2FFF7;
}
@media screen and (max-width: 670px) {
  .usecase__innertop-box-large{
    width: 170px;
}
}
.usecase__innertop-title-large{
  height: 50px;
  background: #03AF7A;
  border-radius: 1.5px 1.5px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.usecase__innertop-title-large p{
  color: #ffffff;
  font-size: 11px;
  text-align: center;
}
.usecase__innertop-title-large strong{
  font-size: 14px;
  font-style: normal;
  color: #ffffff;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  line-height: 134%;
}
.usecase__innertop-txt-large{
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.usecase__innertop-txt-large p{
  color: #1F6A5B;
  font-size: 16px;
  text-align: center;
}
.usecase__innertop-txt-large strong{
  font-size: 36px;
  font-style: normal;
  color: #1F6A5B;
  text-align: center;
  font-style: normal;
  font-weight: 700;
}
.usecase__item-innerbottom{
  margin-top: 23px;
  min-height: 160px;
  display: block;
  justify-content: center;
}
@media screen and (max-width: 670px) {
  .usecase__item-innerbottom {
    height: auto;
    margin-top: 6px;
  }
}
.usecase__reasons-title,
.usecase__reviews-title {
  color: #03AF7A;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}
.usecase__reasons-txt,
.usecase__reviews-txt {
  color: #000;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 148%; 
  letter-spacing: 0.65px;
}
.usecase__divider {
  width: 100%;
  height: 1px;
  border-top: 1px dashed #03AF7A;
  margin: 10px 0;
}
@media screen and (max-width: 670px) {
  .usecase__divider  {
    margin: 10px 0 6px;
  }
}

.FAQ {
  background-color: #ebf9f0;
  display: flex;
  justify-content: center;
  padding: 48px 0 80px;
}
@media screen and (max-width: 670px) {
  .FAQ {
    padding: 32px 0 60px;
  }
}
.FAQ__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 940px) {
  .FAQ__list {
    width: 96%;
  }
}
.FAQ__item {
  padding: 5px 26px;
  background-color: #FFFFFF;
  border-radius: 12px;
  border: 2px solid #03af7a;
  box-sizing: border-box;
}
.FAQ__each-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 170%;
  color: #03af7a;
  cursor: pointer;
}
@media screen and (max-width: 670px) {
  .FAQ__each-title {
    font-size: 16px;
  }
}
.FAQ__each-title::before {
  content: "Q.";
  width: -moz-min-content;
  width: min-content;
}
.FAQ__title-inner {
  color: #03af7a;
}
.FAQ__cross {
  margin-left: auto;
}
.FAQ__cross > span {
  display: block;
  width: 31px;
  height: 1px;
  background-color: #03af7a;
  transition: all 0.8s;
}
.FAQ__cross > span:nth-child(2) {
  width: 29px;
  transform: rotateZ(90deg) translate(-1px, -1px);
}
.FAQ__cross.straight > span:nth-child(1) {
  transform: rotateZ(-180deg);
}
.FAQ__cross.straight > span:nth-child(2) {
  transform: rotateZ(-180deg) translate(-1px, 1px);
}
.FAQ__each-body {
  max-height: 0;
  opacity: 0;
  display: flex;
  flex-direction: row;
  gap: 10px;
  overflow: hidden;
  transition: all 0.6s;
}
.FAQ__each-body::before {
  content: "A.";
  font-size: 20px;
  width: -moz-min-content;
  width: min-content;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #1f6a5b;
}
.FAQ__body-inner {
  padding: 4px 6px 15px 0;
  font-size: 16px;
  color: #1f6a5b;
  font-weight: 500;
  line-height: 170%;
}
.FAQ__body-inner ul > li, .FAQ__body-inner ol > li, .FAQ__body-inner span, .FAQ__body-inner a {
  color: #1f6a5b;
}
.FAQ__body-inner > a {
  text-decoration: underline;
}
.FAQ__each-body.opened {
  max-height: max-content;
  opacity: 1;
}

.pre-footer {
  width: 100%;
  background-color: #03af7a;
  padding: 48px 0 80px;
}
@media screen and (max-width: 670px) {
  .pre-footer {
    padding: 32px 0 60px;
  }
}
.pre-footer__wrap {
  margin: 0 24% 0 21%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 80px;
}
@media screen and (max-width: 940px) {
  .pre-footer__wrap {
    margin: 0 10% 0 8%;
    gap: 48px;
  }
}
@media screen and (max-width: 670px) {
  .pre-footer__wrap {
    flex-direction: column;
  }
}
.pre-footer__registration {
  width: 340px;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F18F10;
  border-radius: 50px;
  border: 2px solid #F18F10;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF !important;
  box-sizing: border-box;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 940px) {
  .pre-footer__registration {
    width: 320px;
    height: 62px;
  }
}
@media screen and (max-width: 670px) {
  .pre-footer__registration {
    width: 260px;
    height: 54px;
    font-size: 18px;
  }
}
.pre-footer__registration:hover {
  background-color: #FFFFFF;
  color: #F18F10 !important;
}
.pre-footer__contact {
  width: 240px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #03af7a;
  border: 3px solid #FFFFFF;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  color: #FFFFFF !important;
  box-sizing: border-box;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 940px) {
  .pre-footer__contact {
    width: 216px;
    height: 48px;
  }
}
@media screen and (max-width: 670px) {
  .pre-footer__contact {
    width: 200px;
    height: 50px;
  }
}
.pre-footer__contact:hover {
  background-color: #FFFFFF;
  color: #03af7a !important;
}

.footer {
  width: 100%;
  background-color: #d9d9d9;
  padding: 32px 0;
}
.footer__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.footer__list {
  display: flex;
  flex-direction: row;
  font-size: 14px;
}
@media screen and (max-width: 670px) {
  .footer__list {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}
.footer__head {
  color: #333333 !important;
  margin-right: 1rem;
}
@media screen and (max-width: 670px) {
  .footer__head {
    margin-right: 0;
  }
}
.footer__text {
  text-decoration: underline;

  > a{
    color: #333333 !important;
  }
}
.footer__text:nth-child(2)::after {
  display: inline-block;
  content: "/";
  margin: 0 0.5rem;
  font-size: 14px;
  color: #333333;
  text-decoration: none;
}

/* parts */
.section__wrap {
  width: 940px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 940px) {
  .section__wrap {
    width: 100%;
    gap: 32px;
  }
}
.section__title--black {
  color: #333333;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 940px) {
  .section__title--black {
    font-size: 32px;
  }
}
@media screen and (max-width: 670px) {
  .section__title--black {
    font-size: 22px;
  }
}

.section__title--white {
  color: #FFFFFF;
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 1.8px;
}
@media screen and (max-width: 940px) {
  .section__title--white {
    font-size: 32px;
  }
}
@media screen and (max-width: 670px) {
  .section__title--white {
    font-size: 22px;
  }
}
.section__text--white {
  color: #ffffff;
  margin-top: 20px;
  margin-bottom: 60px;
  font-size: 18px;
  text-align: center;
  line-height: 160%;
  font-weight: 500;
}
@media screen and (max-width: 940px) {
  .section__text--white  {
    width: 95%;
    word-break: keep-all;
    overflow-wrap: break-word;
    margin: 20px auto;
  }
}
@media screen and (max-width: 670px) {
  .section__text--white  {
    font-size: 16px;
  }
}

.btn__registration--middle {
  width: 340px;
  height: 68px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F18F10;
  border-radius: 9px;
  border: 2px solid #F18F10;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF !important;
  box-sizing: border-box;
  transition: background-color 0.3s, color 0.3s;
}
.btn__registration--middle:hover {
  background-color: #FFFFFF;
  color: #F18F10 !important;
}
@media screen and (max-width: 940px) {
  .btn__registration--middle {
    width: 320px;
    height: 62px;
  }
}
@media screen and (max-width: 670px) {
  .btn__registration--middle {
    width: 260px;
    height: 54px;
    font-size: 18px;
  }
}

/* others */
.pt-only{
  display: inline-block;
}
@media screen and (max-width: 670px) {
  .pt-only {
    display: none;
  }
}
.sp-only {
  display: none;
}
@media screen and (max-width: 670px) {
  .sp-only {
    display: block;
  }
}
@media screen and (max-width: 670px) {
  .mb30-sp{
    margin-bottom: 30px !important;
  }
}
