@charset "UTF-8";

/* ===============================================
  MODELコスメ：固定ページ
  共通のブレイクポイント：768px
=============================================== */

body {
  background-color: #F9F9F9;
}

/* ===============================================
	hero (billboard)
=============================================== */
/* レイアウト */

.hero {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.hero-col-01 {
  flex: 0 0 40%;
}

.hero-col-02 {
  flex: 0 0 48%;
  transform: translateX(-20px);
  /* 少しだけかぶせてOK */
  z-index: 2;
}

.hero-col-03 {
  flex: 0 0 4%;
  z-index: 3;
}

/* background */
.hero-bg-image {
  background-image: url('https://bindec.jp/wp-content/themes/bindec/_images/model/cosme-image/symbol_background.svg');
  background-size: auto 130%;
  background-position: 55vw -230px;
  background-repeat: no-repeat;
}

.hero-content-wrap {
  max-width: calc(1140px + 10vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  padding: 0 5vw;
  overflow: visible;
}

/*shopifyロゴ/パートナーロゴ*/
.hero-shopify {
  display: flex;
  align-items: center;
  gap: 1vw;
  max-width: 400px;
}

.hero-shopifyinner {
  flex-basis: 24%;
}

.hero-shopifyinner img {
  max-width: 115px;
}

.hero-shopify .hero-shopifyinner:nth-of-type(2) {
  padding-bottom: 30px;
}

/* タイトル */
.hero-title {
  font-size: clamp(22px, 2.3vw, 30px);
  /* 上限を任意で設定 */
  font-weight: 700;
  line-height: 1.46;
  letter-spacing: .05em;
}

.hero-title .title-accent {
  color: rgb(var(--color-primary));
  text-decoration: underline .07em;
  text-underline-offset: .2em;
  font-family: 'Inter';
}

.title-category {
  font-size: var(--font-heading-5);
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: .05em;
}

.title-category .red-slash {
  color: rgb(var(--color-primary));
  text-align: center;
  font-size: var(--font-body-small);
  line-height: 1;
  font-weight: 300;
  padding: 0 .8em;
  vertical-align: 0.1em;
}

.hero-title .title-sub {
  color: var(--color-secondary);
  font-size: var(--font-heading-5);
  line-height: 1.6;
  display: inline-block;
  margin-bottom: 2vw;
}

.hero-title .br_sp {
  display: none;
}

.hero-tagline {
  margin-top: 0;
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 600;
}

/*CVボタン*/
.hero-btn {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1vw;
  justify-content: flex-start;
  margin-top: 3vw;
}

.hero-btn p {
  flex: 1 1 100%;
  text-align: left;
  padding: 0 0 0.2em 5%;
  color: #282828;
  font-weight: 500;
  font-size: clamp(12px, 1.1vw, 16px);
}

/* 注釈 */
.hero-note {
  text-align: right;
  font-size: clamp(12px, 0.8vw, 14px);
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin: 5vw 0 0 0;
  color: #666;
  font-weight: 400;
}

.hero-note li {
  display: inline-block;
}

.hero-note li:nth-child(n+2)::before {
  content: "/";
  padding: 0.2em;
}

/* 実績 */
.hero-honors {
  display: flex;
  justify-content: space-between;
  margin-top: 3vw;
  margin-right: 0;
  width: 100%;
  gap: 1vw;
}

.hero-honors-01 {
  flex: 1 1 45.5%;
}

.hero-honors-02 {
  flex: 1 1 50%;
}

/* 装飾 - シンボルマーク */
.hero-symbol {
  position: absolute;
  left: 0;
  bottom: -20vw;
  z-index: -1;
  display: block;
  width: 20vw;
  transform: translateX(-10%);
}

.hero-symbol img {
  min-width: 80px;
  height: auto;
}

/* 受賞 */
.hero-award {
  position: absolute;
}

.hero-award-premier {
  width: 12vw;
  max-width: 220px;
  min-width: 80px;
  margin-bottom: 7vw;
}

.hero-award-stamp {
  width: 10vw;
  max-width: 134px;
  min-width: 60px;
}

/* 各社ロゴ */
.logo-list-fv {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  gap: 2vw;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  width: 100%;
}

.logo-list-fv li {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
}

.logo-list-fv img {
  max-height: 70px;
  max-width: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
}

.logo-list-fv .logo_square {
  width: 84px;
}

/* About */
.model-about {
  display: flex;
  font-size: 14px;
  font-weight: 600;
  gap: 14px;
  letter-spacing: 0.05em;
}

.model-about img {
  width: 23px;
  height: 23px;
}

/* スマホ表示 */
@media screen and (max-width: 1000px) {
  .hero-title .br_sp {
    display: block;
  }
}

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

  .hero-bg-image {
    background-size: 80%;
    background-position: 35vw 470px;
  }

  .hero-content-wrap {
    display: grid;
    max-width: 90%;
    max-width: var(--contents-width);
    justify-content: space-evenly;
  }

  /* レイアウト */
  .hero {
    flex-wrap: wrap;
  }

  .hero>[class^="hero-col-"] {
    flex-basis: 100%;
  }

  .hero-col-01 {
    order: 1;
  }

  .hero-col-02 {
    position: relative;
    margin-bottom: 0;
    flex-basis: 100%;
    order: 3;
    margin-top: 5vw auto 0 auto;
  }

  .hero-col-03 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1em;
    padding: 0 20px;
    order: 2;
  }

  /*shopifyロゴ*/
  .hero-shopify {
    margin-bottom: 2vw;
    max-width: 500px;
  }

  .hero-shopifyinner {
    flex-basis: 30%;
  }

  .hero-shopify .hero-shopifyinner:nth-of-type(2) {
    padding-bottom: 24px;
  }

  .hero-tagline {
    font-size: min(11px, 1em);
    font-weight: 400;
    padding-left: 1em;
  }

  /* タイトル */
  .hero-title {
    margin-bottom: 6vw;
    width: 70%;
  }

  .title-category {
    margin-bottom: 5vw;
  }

  /* 注釈 */
  .hero-note {
    font-size: min(10.5px, 1em);
    line-height: 1.5;
    padding: 0 .7em;
  }

  .hero-note li {
    display: inline;
  }

  /* 実績 */
  .hero-honors {
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    /* width: 65%; */
  }

  /* 装飾 - シンボルマーク */
  .hero-symbol {
    left: 0;
    bottom: 4.5vw;
    width: 19vw;
    transform: none;
  }

  /* 受賞 */
  .hero-award {
    right: 5%;
    top: 0;
  }

  .hero-award-stamp {
    width: 24vw;
    min-width: 100px;
    margin-bottom: 10px;
  }

  /* CVボタン */
  .hero-btn {
    width: 100%;
    justify-content: space-evenly;
  }

  .hero-btn p {
    font-size: .7em;
    padding-left: 9%;
  }

  /* 各社ロゴ */

  .logo-slide {
    padding: 2em 0;
  }

  .logo-slide li {
    width: 120px;
    padding: 0 1em;
  }

  .logo-slide li img {
    height: 3em;
  }
}

.grid-container.columns-2.model-about-col {
  grid-template-columns: 3.5fr 2.7fr;
}

/* ===============================================
資料ダウンロード
=============================================== */

.pickup-document {
  width: 100%;
  max-width: var(--contents-width-m);
  margin: var(--margin-section) auto 0;
  padding: 0 var(--margin);
}

.pickup-document .pickup-wrap {
  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-secondary));
  color: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.pickup-document figure {
  flex: 50% 1 1;
  margin-bottom: 0;
}

.pickup-document .item-info {
  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 .pickup-wrap {
    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;
  }
}


/* ===============================================
Function
=============================================== */
.u-underline--accent {
  border-bottom: 1px solid rgb(var(--color-secondary));
  display: inline-block;
}

.deploy-app {
  margin-top: 0.3em;
  font-size: 14px;
}

/* ===============================================
PARTNERS
=============================================== */

.partners {
  margin-top: calc(var(--margin)*4);
}

.model-partners-icon {
  gap: 2%;
  margin-top: var(--margin);
  background-color: #fff;
  padding: 3vw 4vw;
}

.model-partners-icon ul {
  display: grid;
  column-gap: clamp(1em, 4vw, 4em);
  row-gap: clamp(1.4em, 2.8vw, 2.5em);
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  align-items: center;
  margin-top: 2vw;
}

.model-partners-icon span {
  font-size: var(--font-xs);
  margin-left: .5vw;
}

/* ===============================================
PARTNERS メディアクエリ
=============================================== */
@media screen and (max-width: 768px) {

  .model-partners-icon {
    flex-direction: column;
    gap: 1em;
    padding: 1.5em 2em;
  }


  .model-partners-icon ul {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 2em;
    row-gap: 1.5em;
    margin-top: 1.2em;
    margin-bottom: 1.2em;
  }
}

/* ===============================================
CASE STUDY
=============================================== */

.case-study {
  max-width: 100%;
  overflow: hidden;
}

.case-study .desc {
  margin-top: -3vw;
}

.case-slide-items {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  width: 70%;
  height: auto;
}

.case-slide-items .case-slide-items-image {
  width: 400px;
  margin: 50px auto 0 auto;
  object-fit: contain;
}

.case-desc {
  margin: 30px 50px 50px 50px;
}

.case-desc {
  display: inline-block;
}

.case-desc-underline {
  font-size: var(--font-heading-5);
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgb(var(--color-secondary));
  padding-bottom: 0.2em;
}

.headline-link a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.external-icon {
  margin-left: 0.5em;
  margin-bottom: 0.4em;
  width: 1em;
  height: 1em;
}

/*------ Slick ------*/

/* .case-study .slick-initialized .slick-slide {
  width: 470px;
} */
.case-study .slick-initialized .slick-slide {
  width: auto;
  /* または削除してslick側に任せる */
}

.case-study .slick-slider .slick-track {
  display: flex;
  gap: 2.5vw;
  margin-bottom: 1em;
}

.case-study .slick-track {
  display: flex;
  align-items: stretch;
}


.case-study .slick-dots li {
  width: 16px;
  height: 16px;
}

.case-study .slick-dots li button::before {
  font-size: 10px;
}

.case-study .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #EC6256;
}

.case-study .prev-arrow,
.case-study .next-arrow {
  position: absolute;
  width: 52px;
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #282828;
  border-radius: 100px;
  cursor: pointer;
  z-index: 2;
}

.case-study .prev-arrow {
  left: max(0px, calc((100% - 1200px) / 2));
}

.case-study .next-arrow {
  right: max(0px, calc((100% - 1200px) / 2));
}


.case-study .prev-arrow::before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='12' viewBox='0 0 20 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.5 1L1 6.5M1 6.5L6.5 11.5M1 6.5H19.5' stroke='white'/%3E%3C/svg%3E%0A");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  width: 30%;
  height: 52px;
  margin-left: 18px;
}

.case-study .next-arrow::before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='12' viewBox='0 0 20 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.5 1L1 6.5M1 6.5L6.5 11.5M1 6.5H19.5' stroke='white'/%3E%3C/svg%3E%0A");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  width: 30%;
  height: 52px;
  margin-left: 18px;
  transform: rotate(180deg);
}

/* ===============================================
CASE STUDY メディアクエリ
=============================================== */

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

  .case-study .slick-initialized .slick-slide {
    flex-direction: column;
    gap: 0;
    width: 80%;
    padding: 8vw 8vw 8vw 8vw;
  }

  .case-study .prev-arrow {
    width: 46px;
    height: 46px;
  }

  .case-study .next-arrow {
    width: 46px;
    height: 46px;
  }

  .case-study .prev-arrow::before {
    height: 48px;
    margin-left: 16px;
  }

  .case-study .next-arrow::before {
    height: 48px;
    margin-left: 16px;
  }

  .case-slide-items .case-slide-items-image {
    width: 100%;
    margin: 0;
  }

  .case-desc {
    margin: 2em 0 0 0;
  }

  .case-desc h3 {
    font-size: 5.5vw;
  }

  .case-study .prev-arrow,
  .case-study .next-arrow {
    transform: translateY(-160%);
  }
}

/* ===============================================
Hubspot部分スタイル
=============================================== */
.grid-container.columns-2.hubspot-wrap {
  grid-template-columns: 2.5fr 3.4fr;
}

/* ===============================================
Hubspotスタイル上書き
=============================================== */

[data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content {
  padding: 0 !important;
}

[data-hsfc-id=Renderer] .hsfc-PhoneInput__FlagAndCaret {
  padding: 0 7px !important;
}

[data-hsfc-id=Renderer] .hsfc-Row {
  margin-bottom: 10px !important;
}

[data-hsfc-id=Renderer] .hsfc-FieldLabel {
  font-size: 14px !important;
  margin-bottom: 5px !important;
}

[data-hsfc-id=Renderer] .hsfc-NavigationRow {
  margin-top: 30px !important;
}

/* ===============================================
FAQ
=============================================== */
#faq {
  background-color: #F9F9F9;
  position: relative;
}

/* ===============================================
SERMINAR
=============================================== */
.seminar {
  min-width: 300px;
  margin: 150px auto 0;
}

.seminar-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto;
  justify-content: space-between;
}

.seminar-top .headline {
  flex-basis: 100%;
}

.seminar .article-list .article .article-title {
  font-size: clamp(13px, 1.2vw, 16px);
}

.seminar .article-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--margin-s);
  margin-top: var(--margin);
}

.seminar .article-list .thumbnail {
  margin-bottom: .6em;
}

.seminar .article-list .item-info .date {
  font-size: var(--font-xs);
}

.seminar .article-list .item-info .heading {
  margin-top: 0;
}

.seminar .article-list .article .description {
  display: none;
}

.seminar .article-list .tag-list {
  margin-top: .6em;
}

.seminar .article-list .article .tag-list.nolink {
  display: none;
}


/* ===============================================
SERMINAR メディアクエリ
=============================================== */
@media screen and (max-width: 768px) {

  .seminar {
    width: 100%;
    max-width: 700px;
    margin-top: 80px;
  }

  .seminar-top {
    width: 100%;
    max-width: 700px;
    margin: auto;
  }

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

  .topic-container {
    width: 100%;
    max-width: 700px;
    margin: 30px auto;
  }

  .seminar .article-list {
    grid-template-columns: 1fr;
    gap: 2em;
  }

  .seminar .article-list .item-info .heading {
    font-size: 1.5em;
  }
}




/* ===============================================
KNOWLEDGE
=============================================== */
.knowledge {
  min-width: 300px;
  margin: 80px auto 180px;
}

.knowledge-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto;
  justify-content: space-between;
}

.knowledge-top .headline {
  flex-basis: 100%;
}

.article-list .article .article-title {
  font-size: 14px;
}

.article-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: var(--margin);
}

.article-list .article .description {
  display: none;
}

.article-list .article .tag-list.nolink {
  display: none;
}


/* ===============================================
KNOWLEDGE メディアクエリ
=============================================== */
@media screen and (max-width: 768px) {

  .knowledge-section {
    width: 100%;
    max-width: 700px;
    margin-top: 80px;
  }

  .knowledge-top {
    width: 100%;
    max-width: 700px;
    margin: auto;
    display: block;
  }

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

  .article-list {
    grid-template-columns: repeat(2, 1fr);
  }
}