
/* plan */

.plan-wrapper {
  text-align: center;
  margin-bottom: 120px;
}

.plan-title {
  margin-bottom: 30px;
}

.plan-titleText {
  margin-bottom: 40px;
}

.plan-lists {
  text-align: left;
  width: 1040px;
  max-width: calc(100% - 32px);
  margin: 0 auto 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.plan-list {
  width: 31.92%;
  box-shadow: 0 3px 40px rgba(2,75,147,0.16);
  border-radius: 0 40px 0 40px;
}

.plan-list-catch {
  padding: 20px 0;
  text-align: center;
  color: #fff;
  border-radius: 0 40px 0 0;
}

.plan-list-1 .plan-list-catch {
  background-color: #39A59D;
}

.plan-list-2 .plan-list-catch {
  background-color: #BBB585;
}

.plan-list-3 .plan-list-catch {
  background-color: #DC8685;
}

.plan-list-price {
  padding: 35px 0;
  text-align: center;
}

.plan-list-1 .plan-list-price {
  background-color: #3FB8AF;
}

.plan-list-2 .plan-list-price {
  background-color: #D0C994;
}

.plan-list-3 .plan-list-price {
  background-color: #F59594;
}

.plan-list-price-name {
  margin-bottom: 19px;
  color: #fff;
  font-size: 20px;
}

.plan-list-price-pricing {
  width: 195px;
  margin: 0 auto;
}

.plan-list-3 .plan-list-price-pricing {
  width: 229px;
}

.plan-list-detail {
  display: flex;
  font-size: 14px;
}

.plan-list-detail p:first-child {
  color: #fff;
  padding-top: 17px;
  padding-left: 15px;
  padding-bottom: 25px;
  width: 32%;
}

.plan-list-1 .plan-list-detail p:first-child {
  background-color: #83C1C6;
}

.plan-list-2 .plan-list-detail p:first-child {
  background-color: #C3BFA2;
}

.plan-list-3 .plan-list-detail p:first-child {
  background-color: #F0B2B1;
}

.plan-list-detail p:last-child {
  padding-top: 15px;
  padding-left: 20px;
  padding-bottom: 25px;
  margin-right: 30px;
  width: 68%;
  line-height: 1.8;
}

.plan-list-detail:first-child p:first-child {
  padding-top: 32px;
}

.plan-list-detail:first-child p:last-child {
  padding-top: 30px;
}

.plan-list-detail:not(:last-child) p:last-child {
  border-bottom: 1px solid #EAEAEA;
}

.plan-list-detail:last-child p:first-child {
  border-radius: 0 0 0 40px;
}

.plan-list-1 .plan-list-detail:last-child p:first-child,
.plan-list-2 .plan-list-detail:last-child p:first-child {
  padding-bottom: 65px;
}

.plan-list-3 .plan-list-detail:last-child p:first-child {
  padding-bottom: 40px;
}

.plan-attention {
  font-size: 14px;
  line-height: 2.1;
}

.plan-spButton {
  display: none;
}

@media screen and (max-width: 900px){
  .plan-list-catch {
    font-size: 13px;
  }

  .plan-list-price-name {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px){
  .plan-wrapper {
    margin-bottom: 50px;
  }

  .plan-titleText {
    text-align: center;
    margin-bottom: 30px;
  }

  .plan-lists {
    flex-direction: column;
    margin: 0 auto 20px;
  }

  .plan-list {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
  }

  .plan-attention {
    max-width: calc(100% - 32px);
    margin: 0 auto;
    text-align: left;
  }

  .plan-spButton {
    display: block;
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #fff;
    border-radius: 50%;
    top: 178px;
    right: 16px;
  }

  .plan-spButton::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 4px;
    left: 6px;
    transform: rotate(45deg);
    transform-origin: center;
    transition: 0.3s transform ease-out;
    border-radius: 1px;
  }

  .plan-list-price.is-opened .plan-spButton::after {
    transform: translateY(5px) rotate(-135deg);
  }

  .plan-list-1 .plan-spButton::after {
    border-bottom: 3px solid #3fb8af;
    border-right: 3px solid #3fb8af;
  }

  .plan-list-2 .plan-spButton::after {
    border-bottom: 3px solid #d0c994;
    border-right: 3px solid #d0c994;
  }

  .plan-list-3 .plan-spButton::after {
    border-bottom: 3px solid #f59594;
    border-right: 3px solid #f59594;
  }

  .plan-list-price {
    border-radius: 0 0 0 40px;
  }

  .plan-list-price.is-opened {
    border-radius: 0;
  }

  .plan-list-details {
    height: 0;
    overflow: hidden;
  }
}
/* Shopifyページの取引実績追加 */
.case-logo {
  width: 1040px;
  max-width: calc(100% - 32px);
  margin: 0 auto 50px;
  text-align: left;
}

.case-logo h3 {
  font-size: 24px;
  color: #3FB8AF;
  margin-bottom: 30px;
}

.case-logo-lists {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.05%;
}

.case-logo-list {
  width: 13.38%;
  margin-bottom: 30px;
}

.case-logo-list2 {
  width: 13.38%;
  margin-bottom: 30px;
}

.case-logo-list img {
  width: 100%;
}

.fw-b {
  font-weight: 700;
}


@media screen and (max-width: 767px){

  .case-logo {
    margin: 0 auto 90px;
  }

  .case-logo h3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 25px;
  }

  .case-logo-lists {
    column-gap: 0.5%;
  }

  .case-logo-list {
    width: 33%;
    margin-bottom: 13px;
  }

  .case-logo-list2 {
    width: 50%;
    margin-bottom: 13px;
  }

}

