@charset "UTF-8";

/* ===============================================
  アプリ詳細：投稿ページ
  共通のブレイクポイント：768px
=============================================== */
:root {
  --margin-xl: calc(var(--margin) * 2);
}

.margin-l {
  margin-top: var(--margin-xl) !important;
}

h2 {
  text-align: center;
  margin-bottom: var(--margin-m);
}


.h2-left {
  text-align: left;
}

/* CTA */

.cta-btn {
  align-items: center;
}

.section-cta {
  margin-bottom: var(--margin-xl);
}

.intro {
  display: grid;
  /* 1つ目のセル幅は60%か550pxの小さい方を適用 → 画面が大きい時も550px以上にならない  */
  grid-template-columns: min(60%, 550px) 1fr;
  gap: var(--margin-l);
  align-items: flex-start;
  text-align: justify;
  margin-bottom: var(--margin-xl);
}

.intro-body {}

.intro-figure {
  /* はみ出し部分をネガティブマージンで指定 */
  /* 画面が小さい時、左右の空きは40px(--margin)しかないので、40pxを最小値にする */
  margin-right: min(-20%, calc(-1 * var(--margin)));
}

.single.application {
  background-color: #F5F5F5;
}

.app-background {
  content: '';
  background-image: url(https://bindec.jp/wp-content/uploads/2024/09/app-detail-background-logo.svg);
  background-repeat: no-repeat;
  background-position: right;
  z-index: 2;
  background-size: contain;
  height: 150px;
}

.label {
  color: rgb(var(--color-flamingred));
}

.new-line {
  display: none;
}

@media (max-width: 768px) {
  .intro {
    display: flex;
    width: 100%;
    flex-direction: column-reverse;
  }

  .intro-style {
    font-size: var(--font-l);
    margin-bottom: 10px;
  }

  .intro-figure {
    margin: auto;
  }

  .new-line {
    display: inline;
  }

  .app-background {
    height: auto;
    margin-bottom: 30px;
  }
}

/* アプリ詳細headding */
.app-pankuzu-list {
  margin-bottom: var(--margin-s);
}

.heading-appname-wrap {
  display: flex;
  gap: 1.5em;
}

.appname-midashi-group {
  font-weight: bold;
  margin-bottom: var(--margin-m);
}

.heading-app-icon {
  border-radius: 10px;
  width: 70px;
}

.heading-app-icon-wrap {
  flex-grow: 0;
  flex-shrink: 0;
}

.appname-midashi-en {
  font-size: var(--font-m);
  margin-left: 0.7em;
  color: #797979;
}

@media (max-width: 768px) {
  .appname-midashi-group {
    margin-bottom: var(--margin-xs);
  }

  .appname-midashi-en {
    margin-left: 0;
    font-size: 0.6em;
  }

  .heading.size-xl {
    font-size: 27px;
    line-height: 1.2;
  }

}

/* アプリ詳細 効果 */
.effect-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, calc(55px + var(--margin-s)) minmax(auto, 230px));
  gap: var(--margin-s);
  /* ↓数が少ない時用に中央配置 */
  justify-content: center;
  /* ↓親の高さに合わせる */
  align-items: stretch;
  background-color: #fff;
  padding: 1.5em 1em;
  border-radius: 10px;
  margin-bottom: var(--margin-xl);
}

.effect-list-item {
  display: grid;
  grid-column: span 2;
  /* 2カラムにまたがって配置 */
  grid-template-columns: subgrid;
  /* 親のグリッド指定（セル幅）を引き継ぐ */
  align-items: center;
}

.effect-list-item:not(:last-child) {
  border-right: #eee solid 1px;
}

.effect-img {}

.effect-heading {
  padding-right: var(--margin-s);
}

.effect-heading p {
  font-size: var(--font-s);
}

/* アプリ詳細　特徴 */
.size-down {
  max-width: 1140px;
}

.can-container {
  width: 80%;
  margin: 150px auto 0 auto;
}

.can-box {
  display: flex;
  align-items: center;
  margin: 40px auto 80px auto;
  background: #FFEBEA;
  border-radius: 35px;
  padding-left: 0;
}

.can-box-back {
  width: 80%;
  max-width: 685px;
}

.can-box-back figure {
  width: 120%;
  max-width: 685px;
  height: auto;
  margin-top: 3vw;
  margin-right: 0;
}

.can-list-ul {
  width: 100%;
  margin: 40px auto;
  padding-right: 0;
}

.can-list {
  display: flex;
  align-items: center;
  gap: 1em;
  padding: 1em 1.5em;
  background-color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.68;
  letter-spacing: 0;
  text-align: left;
  width: 100%;
  border-radius: 1000px;
  margin-top: 10px;
  margin-left: -1vw;
}

.can-list-icon {
  flex: 5% 0 0;
  margin-top: -4px;
}

.can-list-icon img {
  vertical-align: middle;
}

.can-list p {
  flex-grow: 1;
  flex-shrink: 1;
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .can-container {
    width: 90%;
    max-width: 700px;
    margin: 80px auto;
  }

  .can-box {
    display: block;
    margin: 40px auto;
    width: 90%;
    border-radius: 20px;
    padding: 1.5vw 1vw;
  }

  .can-box-back {
    display: none;
  }

  /* .can-box-back img {
    width: 100%;
    margin-top: 3vw;
    margin-right: 0;
  } */

  .can-list-ul {
    display: block;
    width: 95%;
    max-width: 750px;
    margin: var(--margin) auto 10px auto;
  }

  .can-list {
    font-size: 14px;
    width: 100%;
    padding: 0.5em 1em;
    margin: 10px auto;
  }

  .can-list-icon {
    width: 20px;
    margin-top: -2px;
  }
}

/* アプリ詳細　機能 */

.paragraph-heading {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 166%;
  /* 39.84px */
  letter-spacing: 0.72px;
}

.sub-titlefanction-p {
  text-align: center;
  margin-bottom: var(--margin-xl);
}

.effect-function-wrap {
  width: auto;
  gap: 2.5em;
  margin: auto auto 6em auto;
}

.effect-function-item {
  align-self: center;
  text-align: justify;
}

.gcol.split-2>.col:nth-child(odd) {
  width: 55%;
}

.gcol.split-2>.col:nth-child(even) {
  width: calc(44% - var(--margin));
  margin-right: 1%;
}



.effect-function-img {
  width: calc(100%-(2.5em+2px));
  height: auto;
  border: solid 1px #fff;
}

.fanction-header {
  margin: 0.5em auto 0.8em auto;
}

.effect-function-style {
  margin-bottom: 5em;
}

/* アプリ詳細CTA */
.app-page-cta-wrap {
  display: flex;
  gap: 3em;
  justify-content: center;
  background-color: #FFEBE9;
  border-radius: 10px;
  padding: 1em 5em 1em 5em;
  max-width: var(--contents-width-m);
}

.app-page-cta-item {
  align-self: center;
  font-weight: bold;
}

.appall-link {
  width: auto;
  float: right;
  margin: 0.7em auto 1em auto;
  font-weight: 700;
}

/* おすすめの使い方 */
.recommend-use {
  margin-top: var(--margin-xl);
  margin-bottom: var(--margin-xl);
}

.heading-s {
  margin-top: 20px;
}


.paragraph-margin {
  margin-bottom: var(--margin-s);
}

.intro-link-wrap{
    text-align: right;
}

.intro-link {
  color: rgb(var(--color-flamingred));
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: bold;
}


/* 料金プラン */

.pricing-container {
  max-width: 700px;
  margin: var(--margin) auto var(--margin-xl) auto;
  background-color: white;
  border-radius: 10px 10px 30px 30px;
  padding: 40px;
  border-top: 24px solid rgb(var(--color-flamingred));
}

.price-BiNDec-icon {
  margin-bottom: 20px;
}

.price-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgb(var(--color-flamingred));
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.price-header h3 {
  font-size: 22px;
  color: #191919;
}

.shopify-button {
  background-color: #191919;
  color: white;
  font-weight: 400;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.pricing {
  margin-bottom: 20px;
  border-bottom: 1px solid rgb(var(--color-flamingred));
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.free-trial {
  font-size: 14px;
  color: rgb(var(--color-flamingred));
  font-weight: 700;
}

.price {
  font-size: 36px;
  color: #191919;
  font-weight: 700;
  margin: 10px 0;
}

.perks{
  display: flex;
  gap: var(--margin-s);
}

.order-limit {
  font-size: 14px;
  font-weight: 700;
  color: rgb(var(--color-flamingred));
  border: 1px solid rgb(var(--color-flamingred));
  padding: 8px 22px;
  margin: 10px 0 3px 0;
  text-align: center;
}

.price-section {
  margin-bottom: 20px;
}

.price-section h4 {
  font-size: 14.5px;
}

.price-list-header {
  display: flex;
  gap: 8px;
  align-items: center;
}

.price-list-header img {
  vertical-align: middle;
  margin-top: -4px;
  width: 14px;
}

.price-section p,
.section ul {
  font-size: 14px;
  color: #282828;
}

.price-section ul {
  list-style: none;
}

.price-section ul li {
  padding: 10px;
  border-bottom: 1px solid #ebebeb;
}

@media (max-width: 768px) {
  .sub-titlefanction-p {
    margin-top: var(--margin-s);
  }
}

/* アプリ専用CTA */
.app-cta {
  text-align: center;
  background-color: #D9D9D9;
  border-radius: 10px;
  padding: 1.5vw;
  margin-bottom: var(--margin-xl);
}

.app-cta-heading {
  width: 70%;
  border-bottom: solid #191919 1px;
  z-index: 1;
  text-align: center;
  margin: auto;
  font-size: var(--font-l);
  font-weight: 400;
  padding-bottom: 10px;
}

.app-cta-paragraph {
  margin: 10px auto 30px auto;
}


@media (max-width: 768px) {
  .app-cta {
    width: 90%;
    padding: 20px;
  }

  .app-cta-heading {
    width: 100%;
  }
}

/* こんなアプリもおすすめ */

.other-dress .gcol .col {
  flex: 0 0 calc((100% - var(--margin) * 3) / 4);
  width: auto;
}

.effect-other-wrap {
  display: flex;
  gap: 0.5em;
  justify-content: center;
  align-items: flex-start;
}

.effect-other-item {
  font-size: var(--font-s);
}

.effect-other-item p {
  text-align: justify;
  line-height: 1.5em;
}

.effect-other-img {
  min-width: 70px;
  max-width: 70px;
  border-radius: 10px;
}

.effect-other-item:not(:first-of-type) {
  margin-left: 1em;
}

.app-other-list-section {
  background-color: #fff;
  padding: 2.5em 1.5em 3.5em 1.5em;
  border-radius: 10px;
}

.app-other-title {
  font-size: var(--font-l);
}

.gcol.app-flex-center {
  justify-content: center;
  align-items:flex-start;
}

/* 関連記事 */

@media (max-width: 970px) {

  /* こちらのアプリもおすすめ */
  .gcol.app-flex-center {
    flex-direction: column;
  }

  .effect-other-wrap {
    justify-content: normal;
  }

  .effect-other-img {
    margin: 1em 2em 1em 2em;
  }
}

@media (max-width: 785px) {

  /* 分割を１カラムに */
  .single.application.effect-dress.gcol {
    width: 100%;
  }
}

@media (max-width: 768px) {

  /* 効果 */
  .effect-img {
    margin: 1em 1em 1em 0;
  }

  /* 装飾 */
  .app-background {
    background-size: 70%;
  }

  .effect-list-item:not(:last-child) {
    border-bottom: #eee solid 2px;
    border-right: none;
  }

  .effect-function-item .col:first-child {
    width: 100%;
  }

  .effect-function-item .col:lust-child {
    width: 100%;
  }

  /* CTA */
  .app-page-cta {
    display: flex;
  }

  .app-page-cta-wrap {
    display: flex;
    gap: 1.5em;
    justify-content: center;
    flex-wrap: wrap;
    /* ご相談くださいで改行 */
  }

  .effect-dress .gcol {
    flex-direction: column;
  }

  .app-page-cta-item:first-child {
    flex-basis: 100%;
    text-align: center;
  }
}

/* ===============================================
パートナー
=============================================== */

.partner-heading {
  color: rgb(var(--color-flamingred));
  margin-bottom: 5px;
}


/* ===============================================
shopifyplus official partnerについて
=============================================== */

section.section .plus-partner-wrap {
  width: 90%;
  max-width: calc(var(--contents-width-m) - (var(--margin) * 2));
  border-radius: 10px;
  margin: 30px auto 50px 0;
  display: flex;
}

.shopify-plus-logo {
  width: 45%;
  flex-grow: 0;
  flex-shrink: 0;
}

.plus-back {
  background-image: url(https://bindec.jp/wp-content/themes/bindec/_images/shopify-backimage.webp);
  background-position: -144px -193px;
  background-repeat: no-repeat;
  background-color: #ebebeb;
  overflow: hidden;
  background-size: 380px;
}

.plus-left img {
  margin: 25px 30px 20px 25px;
  width: 130px;
}

.plus-right {
  max-width: 240px;
  z-index: 2;
  margin: 20px 0 20px 30px;
  padding: 3% 0 3% 3%;
  font-size: 0.85em;
}

.plus-right p {
  width: 100%;
  max-width: 500px;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-xs);
  line-height: 1.5;
  letter-spacing: 0.07em;
  color: #282828;
  margin: auto;
  text-align: justify;
}

@media (max-width: 768px) {
  section.section .plus-partner-wrap {
    width: 100%;
  }

  .intro-cta {
    justify-content: center;
  }

  .plus-right {
    margin: 20px 0px 20px 50px;
  }

}

/* よくある質問 */
/* このページの背景色に合わせる */
#faq {
  background-color: #f5f5f5;
  margin-bottom: var(--margin-xl);
}