@charset "UTF-8";
@import url("reset.min.css");

/*フォント設定
-----------------------------------------*/
@font-face {
  font-family: "SourceHanSansJP";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../font/SourceHanSansJP-Regular.otf") format("truetype");
}

@font-face {
  font-family: "SourceHanSansJP";
  font-weight: 350;
  font-style: bold;
  font-display: swap;
  src: url("../font/SourceHanSansJP-Normal.otf") format("truetype");
}

@font-face {
  font-family: "SourceHanSansJP";
  font-weight: 500;
  font-style: bold;
  font-display: swap;
  src: url("../font/SourceHanSansJP-Medium.otf") format("truetype");
}

@font-face {
  font-family: "SourceHanSansJP";
  font-weight: 700;
  font-style: bold;
  font-display: swap;
  src: url("../font/SourceHanSansJP-Heavy.otf") format("truetype");
}

@font-face {
  font-family: "SourceHanSansJP";
  font-weight: 900;
  font-style: bold;
  font-display: swap;
  src: url("../font/SourceHanSansJP-Bold.otf") format("truetype");
}

:root {
  --green: #c3d82d;
  --light-green: #f1f4c3;
  --green-dark: #8fc31e;
  --orage: #fdd469;
  --orage-dark: #f6ab00;
  --navy: #036eb8;
  --gray: #595757;
  --kuro: #231815;
  --font-jp: "SourceHanSansJP", sans-serif;
}

/* 全体
-------------------------------------*/
* {
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
  font-size: 62.5%;
  overscroll-behavior-y: none;
  overflow-x: hidden;
}

body {
  position: relative;
  font-family: var(--font-jp);
  color: var(--gray);
  font-size: clamp(16px, 0.9vw + 14px, 18px);
  font-weight: 400;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

a {
  color: var(--gray);
  text-decoration-line: none;
  word-break: break-all;
}

a:hover {
  opacity: 0.8;
  transition-duration: 0.8s;
}

a img:hover {
  opacity: 0.8;
  transition-duration: 0.8s;
}

button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

a:focus,
button:focus {
  outline: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.pc-none {
  display: none;
}

.sp-none {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media screen and (max-width: 768px) {
  .pc-none {
    display: block;
  }

  .sp-none {
    display: none;
  }

  body,
  html {
    width: auto;
  }
}

/* メインビジュアル
-------------------------------------*/

.mv {
  position: relative;
  overflow: hidden;
  padding: 32px 4vw 64px;
  min-height: 640px;
  background: linear-gradient(160deg, #fbfcf4 10%, #e6eeb2 90%);
}

.mv-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.mv-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 5%;
}

/* ---------- 背景(SVG画像) ---------- */

.mv-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  max-width: 1920px; /* 画像の実寸(1920px)を超えて引き伸ばさない */
  margin: 0 auto;
  overflow: hidden;
}
.mv-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- ヘッダー(ロゴ) ---------- */

.mv-header {
  position: relative;
  z-index: 3;
  margin: 2rem 6rem 0;
}

.mv-logo {
  width: 120px;
  height: auto;
}

/* ---------- 周囲のアイコン(共通見た目) ---------- */

.mv-icons {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mv-icon {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transform: translate(-50%, -50%);
  width: var(--icon-size);
}

.mv-icon__img {
  opacity: 0;
  width: 100%;
  height: 100%;
  max-width: none;
}

/* ---------- 中央ビジュアル ---------- */

.mv-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  opacity: 0;
  margin-top: 0;
}
.mv-visual__placeholder {
  width: 300px;
  height: auto;
}

/* ---------- コピー ---------- */

.mv-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 16px;
  opacity: 0;
}
.mv-title {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: 0.02em;
  font-family: var(--font-jp);
}
.mv-lead {
  margin: 0;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 500;
  line-height: 1.9;
  font-family: var(--font-jp);
}

@media (min-width: 769px) {
  .mv-icons {
    position: absolute;
    inset: 32px 4vw 0;
    max-width: 1300px;
    margin: 0 auto;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }
  /* 認知拡大 */
  .mv-icon[data-icon="ninchi"] {
    left: 16%;
    top: 30%;
    --icon-size: 190px;
  }

  /* AD */
  .mv-icon[data-icon="ad"] {
    left: 24%;
    top: 32%;
    --icon-size: 85px;
  }

  /* 訴求開発 */
  .mv-icon[data-icon="sokyu"] {
    left: 33%;
    top: 36%;
    --icon-size: 120px;
  }

  /* 集客 */
  .mv-icon[data-icon="shukyaku"] {
    left: 14%;
    top: 60%;
    --icon-size: 90px;
  }

  /* ディレクション */
  .mv-icon[data-icon="direction"] {
    left: 5%;
    bottom: 0;
    --icon-size: 160px;
  }

  /* 売場 */
  .mv-icon[data-icon="uriba"] {
    left: 0;
    top: 30%;
    --icon-size: 85px;
  }

  /* 調査 */
  .mv-icon[data-icon="chosa"] {
    left: 30%;
    top: 6%;
    --icon-size: 85px;
  }

  /* 企画 */
  .mv-icon[data-icon="kikaku"] {
    left: 45%;
    top: 6%;
    --icon-size: 120px;
  }

  /* KPI設計 */
  .mv-icon[data-icon="kpi"] {
    left: 59%;
    top: 0;
    --icon-size: 85px;
  }

  /* 物流管理 */
  .mv-icon[data-icon="butsuryu"] {
    left: 85%;
    top: 12%;
    --icon-size: 100px;
  }

  /* WEB施策 */
  .mv-icon[data-icon="web"] {
    left: 67%;
    top: 22%;
    --icon-size: 110px;
  }

  /* クリエイティブ */
  .mv-icon[data-icon="creative"] {
    left: 78%;
    top: 40%;
    --icon-size: 190px;
  }

  /* 商談促進 */
  .mv-icon[data-icon="shodan"] {
    left: 98%;
    top: 42%;
    --icon-size: 130px;
  }

  /* 興味促進 */
  .mv-icon[data-icon="kyomi"] {
    left: 86%;
    top: 74%;
    --icon-size: 110px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .mv-icon[data-icon="chosa"] {
    left: 37%;
    top: 5%;
    --icon-size: clamp(60px, 14vw, 100px);
  }

  .mv-icon[data-icon="kpi"] {
    right: -12%;
    left: auto;
    --icon-size: clamp(60px, 13vw, 95px);
  }

  .mv-icon[data-icon="ninchi"] {
    left: 24%;
    top: 27%;
    --icon-size: clamp(75px, 19vw, 160px);
  }

  .mv-icon[data-icon="web"] {
    left: 53%;
    top: 15%;
    --icon-size: clamp(70px, 14vw, 105px);
  }

  .mv-icon[data-icon="kikaku"] {
    left: 78%;
    top: 17%;
    --icon-size: clamp(70px, 14vw, 105px);
  }

  .mv-icon[data-icon="sokyu"] {
    left: 0;
    top: 40%;
    --icon-size: clamp(60px, 13vw, 95px);
  }

  .mv-icon[data-icon="creative"] {
    left: 80%;
    top: 43%;
    --icon-size: clamp(75px, 19vw, 160px);
  }

  .mv-icon[data-icon="shukyaku"] {
    left: 5%;
    top: 63%;
    --icon-size: clamp(65px, 14vw, 100px);
  }

  .mv-icon[data-icon="butsuryu"] {
    left: 90%;
    top: 60%;
    --icon-size: clamp(80px, 18vw, 130px);
  }

  .mv-icon[data-icon="direction"] {
    left: 13%;
    top: 84%;
    bottom: auto;
    --icon-size: clamp(70px, 14vw, 105px);
  }

  .mv-icon[data-icon="shodan"] {
    left: 22%;
    top: 56%;
    --icon-size: clamp(70px, 14vw, 105px);
  }

  .mv-icon[data-icon="kyomi"] {
    left: 89%;
    top: 85%;
    --icon-size: clamp(60px, 13vw, 95px);
  }

  .mv-icon[data-icon="uriba"] {
    right: -10%;
    left: auto;
    top: 25%;
    --icon-size: clamp(65px, 14vw, 100px);
  }
}

@media (max-width: 768px) {
  .mv {
    height: 120vh;
  }
  .mv-header {
    text-align: center;
    margin-bottom: 0;
  }

  .mv-logo {
    margin: 0 auto;
    width: 24%;
  }

  .mv-content {
    justify-content: center;
  }

  .mv-icons {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
  }

  .mv-icon[data-icon="chosa"] {
    left: 10%;
    top: 5%;
    --icon-size: clamp(55px, 16vw, 75px);
  }

  .mv-icon[data-icon="kpi"] {
    left: auto;
    right: -7%;
    top: 3%;
    --icon-size: clamp(75px, 18vw, 80px);
  }

  .mv-icon[data-icon="ninchi"] {
    left: 27%;
    top: 17%;
    --icon-size: clamp(75px, 25vw, 160px);
  }

  .mv-icon[data-icon="web"] {
    left: 53%;
    top: 12%;
    --icon-size: clamp(60px, 21vw, 120px);
  }

  .mv-icon[data-icon="kikaku"] {
    left: 82%;
    top: 13%;
    --icon-size: clamp(75px, 23vw, 120px);
  }

  .mv-icon[data-icon="sokyu"] {
    left: 13%;
    top: 31%;
    --icon-size: clamp(55px, 19vw, 100px);
  }

  .mv-icon[data-icon="creative"] {
    left: 83%;
    top: 29%;
    --icon-size: clamp(65px, 28vw, 200px);
  }

  .mv-icon[data-icon="shukyaku"] {
    left: 35%;
    top: 80%;
    --icon-size: clamp(55px, 17vw, 75px);
  }

  .mv-icon[data-icon="butsuryu"] {
    left: 91%;
    top: 81%;
    --icon-size: clamp(70px, 19vw, 80px);
  }

  .mv-icon[data-icon="direction"] {
    left: 13%;
    top: 85%;
    --icon-size: clamp(60px, 24vw, 180px);
  }

  .mv-icon[data-icon="shodan"] {
    left: 64%;
    top: 86%;
    --icon-size: clamp(60px, 20vw, 130px);
  }

  .mv-icon[data-icon="kyomi"] {
    left: 85%;
    top: 93%;
    --icon-size: clamp(55px, 18vw, 100px);
  }

  .mv-icon[data-icon="uriba"] {
    left: 40%;
    top: 95%;
    --icon-size: clamp(55px, 17vw, 75px);
  }

  .mv-visual {
    margin: 4px auto;
  }

  .mv-copy {
    margin-top: 0;
  }

  .mv-title {
    font-size: clamp(40px, 12.82vw, 50px);
    line-height: 1.3;
  }

  .mv-lead {
    font-size: clamp(18px, 5.64vw, 22px);
  }
  .mv-visual__placeholder {
    width: 50%;
    height: auto;
  }
}

/* 無料相談ボタン
-------------------------------------*/
.mv-cta-fixed {
  position: fixed;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  opacity: 0;
  border-radius: 999px;
}
.mv-cta-fixed:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(20, 88, 143, 0.4);
}

@media (min-width: 769px) {
  .mv-cta-fixed {
    top: 24px;
    right: 17vw;
    font-size: 18px;
    padding: 6px 26px;
  }
}

@media (max-width: 768px) {
  .mv-cta-fixed {
    left: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    margin: 0 auto;
    font-size: clamp(13px, 4.1vw, 16px);
    padding: 16px;
  }
}

/* こんなお悩みありませんか
-------------------------------------*/
.promotion-problem {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.promotion-problem__inner {
  position: relative;
  background: linear-gradient(115deg, #f5fbff 0%, #e5f5fd 45%, #bde7f8 100%);
  height: 630px;
  margin: 0 auto;
}

.promotion-problem__heading {
  position: absolute;
  top: 70px;
  left: 50%;
  z-index: 2;
  width: 500px;
  margin: 0;
  transform: translateX(-50%);
}

.promotion-problem__heading img {
  display: block;
  width: 100%;
  height: auto;
}

.promotion-problem__balloon {
  position: absolute;
  z-index: 2;
}

.promotion-problem__balloon img {
  display: block;
  width: 100%;
  height: auto;
}

.promotion-problem__balloon--resource {
  top: 320px;
  left: calc(50% - 450px);
  width: 280px;
}

.promotion-problem__balloon--knowledge {
  top: 200px;
  left: 50%;
  width: 300px;
  transform: translateX(-50%);
}

.promotion-problem__balloon--experience {
  top: 320px;
  left: calc(50% + 190px);
  width: 280px;
}

.promotion-problem__people {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 440px;
}

.promotion-problem__people img {
  display: block;
  width: 100%;
  height: auto;
}

.promotion-problem__message {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 245px;
  padding: 45px 30px 74px;
  background: var(--green-dark);
  clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
}

.promotion-problem__message p {
  width: 1000px;
  position: relative;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-size: 36px;
  font-family: var(--font-jp);
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .promotion-problem__balloon--resource {
    top: 300px;
    left: 4%;
    width: min(26vw, 280px);
  }

  .promotion-problem__balloon--knowledge {
    top: 200px;
    left: 50%;
    width: min(26vw, 280px);
    transform: translateX(-50%);
  }

  .promotion-problem__balloon--experience {
    top: 300px;
    left: auto;
    right: 2%;
    width: min(26vw, 280px);
  }
}

@media screen and (max-width: 767px) {
  .promotion-problem__inner {
    width: 100%;
    height: 72vh;
    aspect-ratio: 390 / 733;
  }

  .promotion-problem__heading {
    position: absolute;
    top: 8%;
    left: 50%;
    width: 80vw;
  }

  .promotion-problem__balloon {
    position: absolute;
  }

  .promotion-problem__balloon img {
    display: block;
    width: 100%;
    height: auto;
  }

  .promotion-problem__balloon--resource {
    top: 24%;
    left: 4.1vw;
    width: 43vw;
    max-width: 178px;
  }

  .promotion-problem__balloon--knowledge {
    top: 32%;
    right: 1%;
    left: auto;
    width: 43vw;
    transform: none;
  }

  .promotion-problem__balloon--experience {
    top: 48%;
    left: 20.5vw;
    width: 43vw;
  }

  .promotion-problem__people {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 79.5vw;
    max-width: 310px;
    transform: translateX(-50%);
  }

  .promotion-problem__people img {
    display: block;
    width: 100%;
    height: auto;
  }

  .promotion-problem__message {
    min-height: 75.4vw;
    padding: 9.7vw 5.1vw 20.5vw;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  }

  .promotion-problem__message p {
    margin: 0;
    font-size: clamp(20px, 6.15vw, 24px);
    line-height: 1.6;
    text-align: center;
  }
}

/* 豊富な実績で幅広い分野のプロモーション活動を支援・代行
-------------------------------------*/
.promotion-support {
  overflow: hidden;
  background: #fff;
  color: var(--gray);
}

.promotion-support img {
  display: block;
  max-width: 100%;
}

.section-title {
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  font-family: var(--font-jp);
  line-height: 1.45;
}

.section-title__line {
  display: block;
  width: 100%;
  height: 4px;
  margin-top: 6px;
  background: var(--green-dark);
  transform: scaleX(0);
  transform-origin: left center;
}

.promotion-support__fields {
  width: min(100% - 40px, 1000px);
  margin-inline: auto;
  padding-top: 60px;
}

.field-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 35px;
  margin-top: 45px;
}

.field-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  background-color: var(--light-green);
  text-align: center;
  border-radius: 25px;
}

.field-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid var(--green);
  border-radius: inherit;
  pointer-events: none;
}

.field-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background:
    linear-gradient(
        to right,
        transparent 0,
        transparent 40px,
        #fff 40px,
        #fff calc(100% - 40px),
        transparent calc(100% - 40px),
        transparent 100%
      )
      top / 100% 2px no-repeat,
    linear-gradient(
        to right,
        transparent 0,
        transparent 40px,
        #fff 40px,
        #fff calc(100% - 40px),
        transparent calc(100% - 40px),
        transparent 100%
      )
      bottom / 100% 2px no-repeat;
}

.field-card h3 {
  display: inline;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
}

.field-card h3 span {
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-image: linear-gradient(var(--orage), var(--orage));
  background-repeat: no-repeat;
  background-size: 100% 8px;
  background-position: 0 88%;
}

.field-card p {
  margin: 18px 0 0;
  font-size: 22px;
  line-height: 1.55;
}

.promotion-support__cycle {
  position: relative;
  width: min(100% - 40px, 1060px);
  margin-inline: auto;
  padding-top: 100px;
}

.cycle-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 35px auto 0;
  width: 1000px;
}

.cycle-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--light-green);
  text-align: center;
}

.cycle-circle span {
  font-size: 22px;
  line-height: 1.45;
}

.cycle-arrow {
  position: relative;
  display: block;
  width: 24px;
  height: 42px;
  margin-inline: 10px;
}

.promotion-support__people {
  width: min(100%, 1010px);
  margin: 20px auto 0;
}

.promotion-support__people img {
  width: 100%;
  height: auto;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .cycle-list {
    width: 100%;
  }
  .cycle-circle {
    width: clamp(115px, 15.3vw, 160px);
  }
  .cycle-arrow {
    margin-inline: clamp(4px, 1vw, 10px);
  }
}

@media screen and (max-width: 767px) {
  .promotion-support__fields {
    padding-top: 55px;
  }

  .section-title h2 {
    font-size: clamp(30px, 8.46vw, 33px);
    line-height: 1.5;
  }

  .section-title__line {
    height: 3px;
    margin-top: 8px;
  }

  .field-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-top: 40px;
  }

  .field-card {
    width: 100%;
    min-height: 0;
    padding: 15px 15px;
    border-width: 2px;
    border-radius: 10px;
    border: none;
  }

  .field-card::before {
  }

  .field-card::after {
    background:
      linear-gradient(
          to right,
          transparent 0,
          transparent 26px,
          #fff 26px,
          #fff calc(100% - 26px),
          transparent calc(100% - 26px),
          transparent 100%
        )
        top / 100% 2px no-repeat,
      linear-gradient(
          to right,
          transparent 0,
          transparent 26px,
          #fff 26px,
          #fff calc(100% - 26px),
          transparent calc(100% - 26px),
          transparent 100%
        )
        bottom / 100% 2px no-repeat;
  }

  .field-card h3 {
    font-size: clamp(19px, 6.15vw, 24px);
  }

  .field-card h3::after {
    height: 6px;
  }

  .field-card p {
    font-size: clamp(13px, 4.1vw, 16px);
    line-height: 1.7;
  }

  .promotion-support__cycle {
    width: calc(100% - 24px);
    padding-top: 55px;
  }

  .cycle-list {
    flex-direction: column;
    width: 100%;
    margin-top: 40px;
  }

  .cycle-circle {
    width: 160px;
  }

  .cycle-circle span {
    font-size: clamp(13px, 4.1vw, 16px);
  }

  .cycle-arrow {
    width: 24px;
    height: 42px;
    margin-inline: 10px;
    transform: rotate(90deg);
  }

  .promotion-support__people {
    width: 100%;
    margin-top: 35px;
  }
}

/* サポート内容一例
-------------------------------------*/
.support-content {
  position: relative;
  overflow: hidden;
  padding: 90px 20px 110px;
  background-color: #fff;
  background-image:
    linear-gradient(rgba(241, 244, 195, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 244, 195, 0.8) 1px, transparent 1px);
  background-size: 28px 28px;
}

.support-content__inner {
  width: min(100% - 40px, 1040px);
  margin-inline: auto;
}

.support-group-list {
  display: flex;
  flex-direction: column;
  gap: 90px;
  margin-top: 70px;
}

.support-group {
  position: relative;
  padding: 20px 50px;
  background-color: #fff;
}

.support-group::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid var(--green);
  border-radius: 22px;
  pointer-events: none;
}

.support-group::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background:
    linear-gradient(
        to right,
        transparent 0,
        transparent 40px,
        #fff 40px,
        #fff calc(100% - 40px),
        transparent calc(100% - 40px),
        transparent 100%
      )
      top / 100% 2px no-repeat,
    linear-gradient(
        to right,
        transparent 0,
        transparent 40px,
        #fff 40px,
        #fff calc(100% - 40px),
        transparent calc(100% - 40px),
        transparent 100%
      )
      bottom / 100% 2px no-repeat;
}

.support-group__label {
  margin: 0 auto;
  width: 343px;
  padding: 4px 0;
  background: var(--navy);
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.support-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 8px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.support-tags__item {
  padding: 8px 30px;
  background-color: var(--light-green);
  color: var(--gray);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  border-radius: 999px;
}

.support-tags__item--etc {
  padding: 0;
  background: none;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .support-content {
    padding: 55px 12px 70px;
    background-size: 20px 20px;
  }

  .support-group-list {
    gap: 20px;
    margin-top: 40px;
  }

  .support-group {
    padding: 34px 20px 28px;
  }

  .support-group::before {
    border-radius: 14px;
  }

  .support-group::after {
    background:
      linear-gradient(
          to right,
          transparent 0,
          transparent 26px,
          #fff 26px,
          #fff calc(100% - 26px),
          transparent calc(100% - 26px),
          transparent 100%
        )
        top / 100% 2px no-repeat,
      linear-gradient(
          to right,
          transparent 0,
          transparent 26px,
          #fff 26px,
          #fff calc(100% - 26px),
          transparent calc(100% - 26px),
          transparent 100%
        )
        bottom / 100% 2px no-repeat;
  }

  .support-group__label {
    padding: 10px 24px;
    font-size: clamp(15px, 4.2vw, 17px);
    width: 84%;
  }

  .support-tags {
    gap: 10px;
    margin-top: 22px;
  }

  .support-tags__item {
    width: auto;
    padding: 10px 22px;
    font-size: clamp(13px, 4.1vw, 16px);
    border-radius: 24px;
  }

  .support-tags__item--etc {
    width: auto;
    padding: 0;
  }
}

/* グローブマーケティングが選ばれ続ける理由
-------------------------------------*/
.choice-reason {
  padding: 90px 0 110px;
  background: linear-gradient(160deg, #fbfcf4 10%, #e6eeb2 90%);
}
.choice-reason__inner {
  width: min(100% - 40px, 1000px);
  margin-inline: auto;
}
.reason-list {
  display: flex;
  flex-direction: column;
  gap: 90px;
  margin-top: 70px;
}

.reason-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.reason-item--reverse {
  flex-direction: row-reverse;
}

.reason-item__text {
  flex: 0 1 430px;
  max-width: 430px;
  min-width: 0;
}

.reason-list > .reason-item:nth-child(2) .reason-item__text {
  flex-basis: 580px;
  max-width: 580px;
}

.reason-list > .reason-item:nth-child(3) .reason-item__text {
  flex-basis: 470px;
  max-width: 470px;
}

.reason-list > .reason-item:nth-child(5) .reason-item__text {
  flex-basis: 500px;
  max-width: 500px;
}

.reason-item__image {
  flex: 0 1 380px;
  max-width: 380px;
}

.reason-item--small-image .reason-item__image {
  flex-basis: 300px;
  max-width: 300px;
}

.reason-item__image img {
  display: block;
  width: 100%;
  height: auto;
}

.reason-item__heading {
  margin: 0 0 20px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--gray);
}

.reason-item__heading .line {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.reason-item__heading .line__text {
  position: relative;
  z-index: 1;
}

.reason-item__heading .line__mark {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 18%;
  background: var(--orage-dark);
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 0;
  pointer-events: none;
}

.reason-item__desc {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray);
}

@media (min-width: 768px) and (max-width: 1024px) {
  .reason-item,
  .reason-item--reverse {
    flex-wrap: wrap;
    justify-content: center;
  }
  .reason-item__text {
    flex-shrink: 0;
  }
  .reason-item__image {
    flex-shrink: 0;
  }
}

@media screen and (max-width: 767px) {
  .choice-reason {
    padding: 55px 12px 70px;
  }

  .choice-reason__inner {
  }

  .reason-list {
    gap: 50px;
    margin-top: 40px;
  }

  .reason-item,
  .reason-item--reverse {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .reason-list > .reason-item:nth-child(2) .reason-item__text,
  .reason-list > .reason-item:nth-child(3) .reason-item__text,
  .reason-list > .reason-item:nth-child(5) .reason-item__text {
    flex-basis: 100%;
    max-width: 100%;
  }

  .reason-item__text {
    flex: none;
    width: 100%;
  }

  .reason-item__image {
    flex: none;
    width: min(100%, 300px);
    max-width: 100%;
    margin-inline: auto;
  }

  .reason-item__heading {
    font-size: clamp(17px, 5.38vw, 21px);
    margin-bottom: 14px;
    text-align: center;
  }

  .reason-item__desc {
    font-size: clamp(14px, 4.62vw, 18px);
    line-height: 1.8;
    text-align: center;
  }
}

/* 事例紹介
-------------------------------------*/
.case-study {
  padding: 90px 20px 110px;
  background-color: #fff;
}

.case-study__inner {
  width: min(100% - 40px, 1000px);
  margin-inline: auto;
}

.case {
  margin-bottom: 70px;
}

.case:last-of-type {
  margin-bottom: 0;
}

.case__head {
  margin-top: 70px;
}

.case__company {
  display: inline-block;
  margin: 0 0 8px;
  padding: 4px 8px;
  background: var(--green-dark);
  color: #fff;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
}

.case__title {
  position: relative;
  margin: 0;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--green);
  color: var(--gray);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.45;
}

.case-item__title-line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--green);
  transform-origin: left center;
  transform: scaleX(0);
}

.case__category {
  margin: 14px 0 0;
  color: var(--gray);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
}

/* ========================================
   画像共通
======================================== */

figure {
  margin: 0;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.case01__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 40px;
  margin-top: 40px;
}

.case01__main {
  grid-column: 1 / -1;
}

.case01__item {
  width: 100%;
  max-width: 480px;
}

.case01__item--03,
.case01__item--05 {
  margin-top: 80px;
}

.case02__gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  row-gap: 50px;
  align-items: start;
  margin-top: 40px;
}

/* Web記事 */
.case02__web {
  grid-column: 1;
  width: 120%;
  grid-row: 1;
}

/* Instagramストーリーズ */
.case02__story {
  grid-column: 2;
  width: 70%;
  justify-self: end;
  margin-top: 100px;
  grid-row: 1;
}

/* Instagram投稿 */
.case02__instagram {
  grid-column: 2;
  width: 110%;
  justify-self: end;
  grid-row: 2;
}

/* 一番下のSNS画像 */
.case02__sns {
  grid-column: 1;
  justify-self: start;
  width: 60%;
  grid-row: 2;
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .case-study {
    padding: 55px 20px 70px;
  }

  .case {
    margin-bottom: 45px;
  }

  .case__head {
    margin-top: 40px;
  }

  .case__company {
    margin-bottom: 7px;
    padding: 8px 16px;
    font-size: clamp(19px, 6.15vw, 24px);
  }

  .case__title {
    padding-bottom: 8px;
    font-size: clamp(16px, 5.13vw, 20px);
    line-height: 1.5;
  }

  .case__category {
    margin-top: 10px;
    font-size: clamp(13px, 4.1vw, 16px);
    line-height: 1.7;
  }

  /* --------------------
     CASE01
  -------------------- */

  .case01__gallery {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .case01__main,
  .case01__item {
    width: 100%;
  }

  .case01__item--03,
  .case01__item--05 {
    margin-top: 0;
  }

  /* --------------------
     CASE02
  -------------------- */

  .case02__gallery {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .case02__web {
    width: 100%;
  }

  .case02__story {
    width: 100%;
    margin: 0;
  }

  .case02__instagram {
    width: 100%;
  }

  .case02__sns {
    width: 55%;
    margin: 0 auto;
  }
}

/* お見積り・お問い合わせ
-------------------------------------*/
.contact-form {
  padding: 90px 20px 110px;
  background: linear-gradient(135deg, #fdfdf5 0%, var(--light-green) 100%);
}

.contact-form__inner {
  width: min(100% - 40px, 900px);
  margin-inline: auto;
}

.contact-form__lead {
  margin: 40px 0 0;
  font-size: 18px;
  line-height: 2;
  color: var(--kuro);
  text-align: center;
}

.contact-form__form {
  margin-top: 60px;
}

.form-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.form-row--textarea {
  align-items: center;
}

.form-row__label {
  flex: 0 0 160px;
  font-size: 18px;
  font-weight: 500;
  color: var(--kuro);
  text-align: right;
}

.form-row--textarea .form-row__label {
  padding-top: 14px;
}

.form-row__input,
.form-row__textarea {
  flex: 1 1 auto;
  min-width: 0;
  padding: 12px 16px;
  border: 1px solid #cfcfc0;
  border-radius: 4px;
  background: #fff;
  font-size: 15px;
  font-family: inherit;
  color: var(--kuro);
}

.form-row__input:focus,
.form-row__textarea:focus {
  outline: 2px solid var(--navy);
  outline-offset: 1px;
}

.form-row__textarea {
  resize: vertical;
  line-height: 1.7;
}

/* 個人情報の取り扱い */
.contact-form__privacy {
  margin-top: 56px;
  text-align: center;
}

.contact-form__privacy-title {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--gray);
}

.contact-form__privacy-desc {
  margin: 12px 0 0;
  font-size: 18px;
  line-height: 1.9;
  color: var(--gray);
}

.contact-form__privacy-box {
  margin: 24px auto 0;
  max-width: 800px;
  max-height: 220px;
  overflow-y: auto;
  padding: 20px 24px;
  border: 1px solid #cfcfc0;
  border-radius: 4px;
  background: #fff;
  text-align: left;
}

.contact-form__privacy-box-title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: var(--kuro);
}

.contact-form__privacy-box .pi_text {
  margin-bottom: 1em;
}
.contact-form__privacy-box .pi_text li {
  margin-top: 1em;
  padding-left: 1.6em;
  text-indent: -1.6em;
  font-size: 16px;
}
.contact-form__privacy-box .pi_text li:first-child {
  margin-top: 0;
}

.contact-form__agree {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 16px;
  color: var(--gray);
  cursor: pointer;
}

.contact-form__agree input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green-dark);
  cursor: pointer;
}

/* 送信ボタン */
.contact-form__submit {
  display: block;
  margin: 40px auto 0;
  padding: 14px 74px;
  border: none;
  border-radius: 999px;
  background: var(--green);
  color: var(--kuro);
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.contact-form__submit:hover:not(:disabled) {
  opacity: 0.85;
}

.contact-form__submit:disabled {
  background: #d8d8ce;
  color: #9a9a90;
  cursor: not-allowed;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contact-form {
    padding: 55px 20px 70px;
  }

  .contact-form__lead {
    margin-top: 40px;
    font-size: clamp(13px, 4.1vw, 16px);
    line-height: 1.9;
  }

  .contact-form__form {
    margin-top: 36px;
  }

  .form-row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 20px;
  }

  .form-row__label {
    flex: none;
    text-align: left;
  }

  .form-row--textarea .form-row__label {
    padding-top: 0;
  }

  .contact-form__privacy {
    margin-top: 40px;
  }

  .contact-form__privacy-desc {
    text-align: left;
    font-size: clamp(13px, 4.1vw, 16px);
  }

  .contact-form__privacy-box {
    max-height: 180px;
    padding: 16px 18px;
  }

  .contact-form__agree {
    text-align: left;
  }

  .contact-form__submit {
    width: 100%;
    padding: 14px 0;
  }
}
