@charset "UTF-8";

/* ===============================================
  Shopifyとは
=============================================== */

/* Shopifyページ用追加定義 */
:root {
  --margin-shopify: 20px;
  --margin-shopify-m: calc(var(--margin-shopify) * 2);
  --margin-shopify-l: calc(var(--margin-shopify) * 3);
  --content-width-m: calc(1140px + var(--margin) * 2);
}
@media (max-width: 768px) {
  :root {
    --margin: 20px;
    --margin-xs: 5px;
    --aside: 100%;
    --font-xl: 28px;
    --font-read: 16px;
  }
}

/* 全体 */
.contents-main {
  background-color: #f5f5f5;
}

/* インフォグラフィック用の数字フォント
------------------------------------- */
.Oswald-M {
  font-family: "oswald", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.01em;
  font-size: 3em;
  padding: 0 0.08em;
}
.Oswald-M-Strong {
  font-family: "oswald", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.02em;
  font-size: 3.5em;
  padding: 0 0.08em;
}

@media (max-width: 768px) {
  .Oswald-M-Strong {
    font-size: 3.5em;
    padding: 0 0.05em;
  }

  .Oswald-M {
    font-size: 3.5em;
    padding: 0 0.05em;
  }
}


/* ===============================================
Intro
=============================================== */

.intro-style {
  font-size: 2em;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin-bottom: var(--margin-shopify-m);
}

.intro-style-wrap {
  max-width: 500px;
}

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

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

.intro-body {
}

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

.dummy {
  background: #000;
  color: #fff;
}

@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;
  }
}

/* ===============================================
文節ヘッダー
=============================================== */
.clause-shopify-heading {
  margin: 140px auto 80px auto;
}

.heading-style {
  font-size: var(--font-xl);
  letter-spacing: 0.05em;
  font-weight: bold;
  margin-bottom: var(--margin-shopify-m);
  text-align: center;
}

.paragraph-heading {
  font-size: var(--font-l);
  margin-bottom: 5px;
}

.paragraph-heading-m {
  font-size: var(--font-m);
  margin-bottom: 5px;
  font-weight: bold;
}

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

.top-wide-margin {
  margin-top: 100px;
}

.heading-narrow {
  max-width: 860px;
  margin: auto;
}

@media (max-width: 768px) {
  .heading-style {
    font-size: var(--font-xl);
    letter-spacing: 0.05em;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
  }

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

  .paragraph-heading-m {
    font-size: var(--font-m);
    margin-bottom: 10px;
  }
}

/* ===============================================
インフォグラフィック/achievement・function
=============================================== */

.infographic-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--margin-shopify);
  position: relative;
}

.infographic-item-pink {
  background-color: #ffebea;
  padding: 3em;
  border-radius: 16px;
}

.infographic-item-white {
  background-color: #ffffff;
  padding: 3em;
  border-radius: 16px;
}

/* 分割変える時はこのクラスを流用して別クラス作成 */
.achievement-item-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  position: relative;
  height: 400px;
}

.achievement-img01 {
  width: 62.5%;
  max-width: 350px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding-top: 50px;
  z-index: 1;
}

.achievement-item-2 {
  position: relative;
  height: 190px;
}

.achievement-img02 {
  width: 60%;
  max-width: 220px;
  position: absolute;
  top: 50%;
  bottom: 50%;
  right: 0;
  margin: auto;
  padding-right: 50px;
  z-index: 1;
}

.achievement-item-3 {
  position: relative;
  height: 190px;
}

.achievement-img03 {
  width: 60%;
  max-width: 200px;
  position: absolute;
  top: 50%;
  bottom: 50%;
  right: 0;
  margin: auto;
  padding-right: 50px;
  z-index: 1;
}

.info-figures {
  color: rgb(var(--color-flamingred));
  font-weight: bold;
  font-size: var(--font-read);
  line-height: 1.5;
}

.info-figures-strong {
  color: rgb(var(--color-flamingred));
  font-weight: bold;
  font-size: var(--font-m);
  line-height: 1.5;
}

.figures-subject {
  font-size: var(--font-read);
  line-height: 1.5;
}

.figures-subject-small {
  font-size: var(--font-read);
  margin: auto auto auto 0;
  font-weight: bold;
  line-height: 1.4;
}

.comparison-container p {
  font-size: 0.9em;
  font-weight: bold;
}

.figures-subject-strong {
  font-size: var(--font-m);
  line-height: 1.5;
  text-align: left;
}

.info-data-big-cell {
  position: absolute;
  bottom: 3em;
  z-index: 2;
}

.info-data-small-cell {
  position: absolute;
  bottom: 2em;
  z-index: 2;
}

/* データ下のちいさい注釈 */
.data-note {
  text-align: right;
  font-size: var(--font-xs);
  margin-top: 12px;
}

@media (max-width: 768px) {
  .figures-subject-small {
    font-size: 14px;
    margin: auto auto auto 0;
  }

  .figures-subject-strong {
    font-size: var(--font);
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 5px;
  }

  .info-figures {
    font-size: var(--font-s);
    line-height: 1.5;
  }

  .info-figures-strong {
    font-size: var(--font-s);
    line-height: 1.5;
  }

  .infographic-container {
    grid-template-columns: 1fr;
  }

  .achievement-item-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    position: relative;
    height: 387px;
  }

  .infographic-item-pink {
    padding: 1.5em 2em;
    border-radius: 16px;
  }

  .infographic-item-white {
    background-color: #ffffff;
    padding: 2em 1.5em;
    border-radius: 16px;
  }

  .achievement-img01 {
    width: 80%;
  }

  .achievement-img03 {
    width: 55%;
    padding-right: 20px;
  }

  .achievement-img02 {
    width: 55%;
    top: 40%;
    bottom: 60%;
    padding-right: 20px;
  }
}

/* ===============================================
円グラフ図　スタイル
=============================================== */
.info-chart {
  margin-bottom: 28px;
  margin: auto;
  width: 80%;
}

.pie-chart-img {
  width: 80%;
  margin: auto;
}

.pie-chart-left {
  box-sizing: border-box;
  border-right: 1px solid #dedede;
  text-align: center;
}

.pie-chart-right {
  text-align: center;
}

.pie-chart-container {
  padding: 3em 3em;
  margin: auto;
}

@media (max-width: 768px) {
  .info-chart .figures-subject-strong {
    font-size: var(--font-read);
  }

  .info-chart .figures-subject-strong:n {
    margin-top: var(--margin-shopify-m);
  }

  .info-chart {
    width: 100%;
  }

  .pie-chart-container {
    padding: 3em 2em;
  }

  .pie-chart-img {
    width: 110%;
    margin: 0 auto 10px -20px;
  }

  .pie-chart-left {
    box-sizing: border-box;
    border-right: none;
    border-bottom: 1px solid #dedede;
    text-align: center;
    padding-bottom: var(--margin-shopify-m);
  }

  .pie-chart-right {
    padding-top: var(--margin-shopify);
  }
}

/* ===============================================
リプレースセクション　スタイル
=============================================== */

.replace-big-cell-wrap {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
  position: relative;
  /* height: 400px; */
  display: flex;
}

.replace-sentence {
  width: 65%;
  max-width: 500px;
  text-align: justify;
  margin: 2em;
}

.replace-sentence .figures-subject-strong {
  margin-bottom: var(--margin-shopify);
}

.replace-chart {
  width: 100%;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.replace-img01 {
  width: 60%;
  max-width: 200px;
  position: absolute;
  top: 50%;
  bottom: 50%;
  right: 0;
  margin: auto;
  padding-right: 50px;
  z-index: 1;
}

.replace-img02 {
  width: 60%;
  max-width: 220px;
  position: absolute;
  top: 50%;
  bottom: 50%;
  right: 0;
  margin: auto;
  padding-right: 50px;
  z-index: 1;
}

@media (max-width: 768px) {
  .replace-big-cell-wrap {
    grid-column: 1;
    position: relative;
    /* height: 400px; */
    display: block;
  }

  .replace-sentence {
    width: 100%;
    margin: auto;
  }

  .replace-img02 {
    width: 45%;
    padding-right: 10px;
  }

  .replace-img01 {
    width: 45%;
    padding-right: 20px;
  }
}

/* ===============================================
比較表　スタイル
=============================================== */

.comparison-table-container {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-size: 1em;
  text-align: left;
}

.comparison-table thead tr {
  background-color: #f2f2f2;
}

.comparison-table th {
  padding: 17px 33px;
  background-color: #f2f2f2;
}

.comparison-table td {
  border: 1px solid #dddddd;
  padding: 20px 30px;
}

tr td:nth-of-type(2) {
  font-weight: 500;
  background-color: #fff;
  border-left: solid 2px rgb(var(--color-flamingred));
  border-right: solid 2px rgb(var(--color-flamingred));
  box-sizing: border-box;
}

tr td:nth-of-type(1) {
  font-weight: bold;
  background-color: #ebebeb;
  width: 220px;
  text-align: right;
}

td.last-cell {
  border-bottom: solid 2px rgb(var(--color-flamingred));
}

tr th {
  text-align: center;
  color: #fff;
  font-size: var(--font-read);
}

tr th:nth-of-type(1) {
  background-color: #f5f5f5;
  border-top: none;
  border-left: none;
}

tr th:nth-of-type(2) {
  background-color: rgb(var(--color-flamingred));
  border-radius: 16px 0 0 0;
}

tr th:nth-of-type(3) {
  background-color: #797979;
  border-radius: 0 16px 0 0;
}

.hidden-cell {
  display: none;
  /* 非表示にするスタイル */
}

.data-note-table {
  font-size: var(--font-xs);
  color: #797979;
  font-weight: 300;
}

@media (max-width: 768px) {
  .comparison-table {
    width: 530px;
    overflow: scroll;
  }

  .comparison-table td {
    padding: 14px 16px;
    letter-spacing: normal;
  }

  tr td:nth-of-type(1) {
    width: 130px;
    text-align: left;
  }
}

/* ===============================================
function
=============================================== */

.checkout-big-cell-wrap {
  grid-column: 1 / 3;
  position: relative;
  display: grid;
  gap: var(--margin-shopify);
  text-align: center;
}

.checkout-chart {
  grid-column: 1 / 3;
  width: 100%;
  max-width: 670px;
  margin: auto;
}

.inner-grid {
  width: 66%;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  display: grid;
  gap: 50px;
  text-align: center;
  margin: auto;
}

.inner-left {
  box-sizing: border-box;
  border-right: 1px solid #dedede;
  text-align: center;
}

.checkout-s-cell-wrap h4 {
  text-align: left;
}

.checkout-s-cell-wrap p {
  text-align: left;
}

.checkout-img01 {
  width: 60%;
  max-width: 200px;
  position: absolute;
  top: 50%;
  bottom: 50%;
  right: 0;
  margin: auto;
  padding-right: 50px;
  z-index: 1;
}

.bar-grapht-img-sp {
  display: none;
}

.checkout-img02 {
  width: 70%;
  max-width: 300px;
  position: absolute;
  top: 50%;
  bottom: 50%;
  right: 0;
  margin: auto;
  padding-right: 50px;
  z-index: 1;
}

.trend-item-3 {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  position: relative;
  /* height: 400px; */
  display: flex;
}

.trend-img01 {
  width: 60%;
  max-width: 200px;
  position: absolute;
  top: 50%;
  bottom: 50%;
  right: 40px;
  margin: auto;
  z-index: 1;
}

.trend-img02 {
  width: 70%;
  max-width: 300px;
  position: absolute;
  top: 50%;
  bottom: 50%;
  right: 0;
  margin: auto;
  z-index: 1;
}

.trend-img03 {
  width: 62.5%;
  max-width: 350px;
  position: absolute;
  top: 30%;
  bottom: 50%;
  right: 0;
  margin: auto;
  padding-right: 50px;
  z-index: 1;
}

.function-2col-wrap {
  display: flex;
  gap: var(--margin-shopify-m);
}

/* Shopifyの越境EC向け機能の図を4分割 */
.grid-4-figure {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  gap: var(--margin-shopify);
}

.grid-4-figure-type2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  gap: var(--margin-shopify);
}

.infographic-small-item-pink01 {
  display: flex;
  background-color: #ffebea;
  padding: 1em 3em;
  border-radius: 40px;
  width: 100%;
  align-self: stretch;
}

.icon-small {
  width: 40px;
  margin-right: 2em;
  object-fit: contain;
}

.infographic-small-item-pink02 {
  display: flex;
  background-color: #ffebea;
  padding: 1em 1.8em;
  border-radius: 16px;
  align-self: stretch;
}

/* 図と文章が6：4 */
.function-2col-sentence {
  width: 60%;
  max-width: 620px;
}

.function-2col-figure {
  width: 40%;
  max-width: 460px;
  display: grid;
  gap: var(--margin-shopify);
}

.function-2col-figure-type2 {
  width: 51%;
  max-width: 563px;
}

.function-cost-2col-sentence {
  width: 100%;
  max-width: 400px;
  margin-left: 1em;
  padding-right: 50px;
}

/* 図と文章が　12：13 */
.function-2col-sentence-type2 {
  width: 49%;
  max-width: 520px;
}

.function-2col-sentence-type3 {
  width: 40%;
  max-width: 460px;
  display: block;
}

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

.cost-flex {
  display: flex;
  gap: var(--margin-shopify);
}

.cost-per-wrap {
  margin: auto 2em auto auto;
}

.cost-per-item {
  align-self: stretch;
}

.cost-per-hedding {
}

.cost-icon {
  width: 75px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .trend-img01 {
    width: 45%;
    right: 0;
  }

  .trend-img02 {
    width: 72%;
  }

  .trend-img03 {
    width: 70%;
    max-width: 400px;
    top: 38%;
    bottom: 62%;
    right: 0;
    padding-right: 20px;
  }

  .checkout-img01 {
    width: 50%;
    padding-right: 20px;
  }

  .checkout-img02 {
    width: 65%;
    top: 40%;
    bottom: 60%;
    padding-right: 20px;
  }

  .checkout-big-cell-wrap {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    position: relative;
    display: block;
    gap: var(--margin-shopify);
    width: 100%;
  }

  .checkout-chart {
    grid-column: 1 / 3;
    width: 100%;
    text-align: center;
  }

  .checkout-s-cell-wrap {
    margin-top: 20px;
    text-align: left;
  }

  .bar-grapht-img-sp {
    display: block;
    width: 90%;
    margin: auto;
  }

  .bar-grapht-img {
    display: none;
  }

  .trend-item-3 {
    grid-column: 1;
    grid-row: 3;
    position: relative;
    height: 387px;
    display: flex;
  }

  .grid-4-figure {
    margin-top: 1.5em;
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4-figure-type2 {
    margin-top: 1.5em;
    grid-template-columns: 1fr;
  }

  .cost-flex {
    display: block;
  }

  .function-2col-wrap {
    display: block;
  }

  .function-2col-sentence {
    width: 100%;
    max-width: none;
  }

  .function-2col-figure {
    width: 100%;
    display: grid;
    gap: var(--margin-shopify);
    margin-top: 1.5em;
    max-width: none;
  }

  .function-2col-sentence-type2 {
    width: 100%;
    max-width: none;
  }

  .function-2col-figure-type2 {
    width: 100%;
    max-width: none;
  }

  .function-2col-sentence-type3 {
    width: 100%;
    max-width: none;
  }

  .infographic-small-item-pink01 {
    padding: 0.5em 2em;
  }

  .infographic-small-item-pink02 {
    padding: 0.8em 1.5em;
  }

  .icon-small {
    margin-right: 1em;
  }

  .function-cost-2col-sentence {
    width: 100%;
    max-width: 700px;
    margin-left: 0;
    padding-right: 0;
  }

  .cost-per-wrap {
    margin: auto;
  }

  .cost-grid-3-hedding {
    display: flex;
    gap: var(--margin-shopify);
  }

  .cost-left {
    margin: auto 0;
  }

  .cost-per-item {
    align-self: baseline;
  }

  .inner-grid {
    width: 100%;
    gap: var(--margin-shopify) 10px;
  }

  .checkout-s-cell {
    text-align: center;
    margin: auto;
  }
}

/* ===============================================
コスト比較：3分割
=============================================== */
.cost-icon-small {
  width: 54px;
  margin-bottom: 20px;
}

.grid-3-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--margin-shopify);
  position: relative;
}

.grid-3-item {
  background-color: #ffebea;
  padding: 2em;
  border-radius: 16px;
  align-self: stretch;
}

.comparison-container {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 5px;
}

.comparison-container h4 {
  margin: 20px auto 10px auto;
}

.comparison-list {
  list-style-type: none;
  padding: 0;
}

.comparison-list li {
  display: flex;
  justify-content: space-between;
}

.comparison-list li:last-child {
  border-bottom: none;
}

.cost-difference {
  font-size: 0.9em;
}

.service-name {
  font-size: 0.85em;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.dotted-line {
  flex-grow: 1;
  border-bottom: 1px dashed #282828;
  margin: auto 10px auto 10px;
}

@media (max-width: 768px) {
  .grid-3-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--margin-shopify);
    position: relative;
  }
}

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

.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: 16px;
  margin: 30px auto 50px;
  display: flex;
}

.shopify-plus-logo {
  width: 50%;
  max-width: 220px;
  margin: 80px 10px auto 10px;
}

.plus-back {
  background-color: #ebebeb;
  overflow: hidden;
}

.plus-left {
  width: 40%;
  margin-left: 0;
  background: url(https://bindec.jp/wp-content/themes/bindec/_images/shopify-backimage.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.plus-left img {
  margin-left: 6.5vw;
}

.plus-right {
  max-width: 600px;
  position: relative;
  z-index: 50;
  margin: auto;
  padding: 4% 3% 4% 2%;
}

.plus-right h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.1em;
  line-height: 1.4;
  letter-spacing: 0.07em;
  color: #282828;
}

.plus-right p {
  width: 100%;
  max-width: 600px;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.9em;
  line-height: 1.8;
  letter-spacing: 0.07em;
  color: #282828;
  margin-top: 1.5vw;
  text-align: justify;
}

/* ===============================================
shopifyplus official partnerについて メディアクエリ
=============================================== */
@media screen and (max-width: 768px) {
  section.section .plus-partner-wrap {
    display: block;
    width: 90%;
    height: auto;
    border-radius: 16px;
    margin: 80px auto 0;
  }

  .shopify-plus-logo {
    display: block;
    width: 35%;
    min-width: 140px;
    height: auto;
    margin: 0 auto;
    text-align: center;
  }

  .plus-left {
    width: 100%;
    height: 400px;
    margin-left: 0;
    background: url(https://bindec.jp/wp-content/themes/bindec/_images/shopify-backimage.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 120%;
    margin: auto;
  }

  .plus-left img {
    width: 60%;
    padding-top: 48%;
    margin-left: auto;
  }

  .plus-right {
    display: block;
    width: 80%;
    max-width: 500px;
    margin-top: 5vw;
    margin: auto;
    padding: 0;
  }

  .plus-right h3 {
    height: auto;
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 1em;
    line-height: 2;
    letter-spacing: 0.05em;
    color: #282828;
    margin-top: 8vw;
  }

  .plus-right p {
    width: 100%;
    max-width: 500px;
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 0.9em;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: #282828;
    margin-top: 3vw;
    margin-bottom: 7vw;
    text-align: justify;
  }
}

/* ===============================================
CASE STUDY
=============================================== */
.case-section {
  margin-top: 50px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  max-width: var(--content-width);
}

.case-brandlist {
  --brandlist-gap: max(5%, 30px);
  /* 間隔 */
  --brandlist-columns: 6;
  /* カラム数 */

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px var(--brandlist-gap);
  margin: 35px auto 0;
  padding: 40px;
  border-radius: 16px;
  background-color: #fff;
}

.case-brandlist li {
  flex: 0 1
    calc(
      (100% - var(--brandlist-gap) * (var(--brandlist-columns) - 1)) /
        var(--brandlist-columns)
    );
  min-height: max-content;
  text-align: center;
}

.case-brandlist li img {
  max-width: 140px;
  max-height: 60px;
  object-fit: contain;
}

.media-max-non {
  display: none;
  text-align: right;
}

/* ===============================================
CASE STUDY メディアクエリ
=============================================== */
@media screen and (max-width: 768px) {
  .case-section {
    margin-bottom: 40px;
    width: auto;
    margin-left: 20px;
    margin-right: 20px;
  }

  .case-brandlist {
    --brandlist-columns: 4;
    /* カラム数 */
    /* gap: 20px; */
    padding: 20px;
  }

  .case-brandlist li img {
    max-width: 130px;
    max-height: 40px;
    object-fit: contain;
  }

  .media-max-non {
    display: block;
  }

  .display-switch {
    display: none;
  }
}

/* ===============================================
データ引用元
=============================================== */

#shopify-p-data [class*="accordion-"] {
  margin: auto;
}

#shopify-p-data .accordion-trigger {
  padding: 0 1em 1em 1em;
  font-weight: 300;
  font-size: 1rem;
  border-bottom: 1px solid rgb(var(--color-textblack));
}

#shopify-p-data .accordion-trigger:after {
  content: url('data:image/svg+xml;utf-8,<svg fill="%23282828" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 10"><path d="M9.9,9.6L9.3,9.1c0,0-7.1-5.3-9.3-6.9l1.3-1.8c1.8,1.3,6.8,5.1,8.6,6.5l8.7-6.5L20,2.2L9.9,9.6z"/></svg>');
  width: 1em;
  line-height: 1;
  display: inline-block;
  position: absolute;
  top: 0.5em;
  right: 1rem;
  transition: 0.3s ease;
}

#shopify-p-data .accordion-trigger.active:after {
  transform: rotate(180deg);
}

/* スマホ */
@media (max-width: 768px) {
  #shopify-p-data .accordion-content {
    margin-left: 0;
    font-size: var(--font-s);
  }

  #shopify-p-data .accordion-trigger {
    padding: 0 2em 0.5em 0.5em;
  }

  #shopify-p-data .accordion-trigger:before {
    width: 2rem;
    font-size: 1rem;
    left: -2.5rem;
  }

  #shopify-p-data .accordion-trigger:after {
    top: 0.25em;
  }
}


/* ===============================================
資料ダウンロード
=============================================== */
.pickup-document {
  width: 100%;
  max-width: var(--contents-width-m);
  margin: var(--margin-section) auto 0;
  padding: 0 var(--margin);
}
.pickup-document a {
  display: flex;
  gap: var(--margin);
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--margin) 0 0;
  background-color: rgb(var(--color-bgblack));
  color: #fff;
  border-radius: 16px;
  overflow: hidden;
}
.pickup-document figure {
  flex: 50% 1 1;
  margin-bottom: 0;
}
.pickup-document .item-info {
  flex-basis: 50%;
  padding: var(--margin-s) 0;
}
.pickup-document h2 {
  display: inline-block;
  padding: 0 0 .1em;
  border-bottom: 1px solid;
  font-weight: 400;
}
.pickup-document time {
  display: block;
  font-size: var(--font-xl);
  font-family: 'Inter';
  font-weight: 700;
}

@media (max-width: 768px) {
  .pickup-document a {
    display: flex;
    flex-wrap: wrap;
    padding: var(--margin);
  }
  .pickup-document figure {
    flex: 100% 0 0;
  }
  .pickup-document .item-info {
    flex: 100% 0 0;
    padding-bottom: 0;
  }
}
