/* ========================================
   about.css - 会社概要ページ
   ページタイトル・企業理念・代表挨拶・会社概要テーブル・アクセス・CTA
   ======================================== */

/* 会社概要ページ: ヘッダーを MV 上に重ねてピル型で表示 */
@media (min-width: 768px) {
  body.p-about .header {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    margin: 0;
    z-index: 100;
    border-radius: 999px;
    box-shadow: 0 4px 0 0 rgba(0, 69, 153, 0.15);
    background: var(--color-white);
  }
}

@media (min-width: 1360px) {
  body.p-about .header {
    padding-left: 24px;
    padding-right: 16px;
    width: calc(100% - 80px);
  }
}

/* ----- 下層ページタイトル（ABOUT / 会社概要）MV ===== */
/* ヘッダーは common で absolute のため、MVの上に重なって表示される */
.page-title {
  position: relative;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-title__bg {
  position: absolute;
  inset: 0;
  background-color: var(--color-primary);
  /* 画像がない場合は単色。mv_bg.png / kv_img.jpg を配置すると背景画像になります */
  background-image: url("../assets/images/mv_bg.png");
  background-size: cover;
  background-position: center;
}



.page-title__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  /* 英文（薄い文字）と和文（太字）を少し重ねて見せるための基準 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-title__en {
  margin: 0;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.3);
  /* 見た目だけ上下オフセットして重ねる（レイアウトは崩さない） */
  position: relative;
  z-index: 1;
  transform: translateY(15px);
}

.page-title__ja {
  margin: 0;
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.12em;
  color: var(--color-white);
  /* ja を手前にして、en と少し重なるように */
  position: relative;
  z-index: 2;
  transform: translateY(-15px);
}

@media (min-width: 768px) {
  .page-title {
    height: 400px;
  }

  .page-title__en {
    font-size: 100px;
    letter-spacing: 0.05em;
    transform: translateY(30px);
  }

  .page-title__ja {
    font-size: 36px;
    letter-spacing: 0.12em;
    transform: translateY(-35px);
  }
}

/* ----- 企業理念 ----- */
.philosophy {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  background: var(--color-white);
}

/* 上部に薄い水色のうねり風グラデーション */
.philosophy__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* mission_bg.png を全面に敷く背景画像 */
  background-image: url("../assets/images/mission_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.philosophy__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(197, 223, 247, 0.08) 0%, transparent 45%);
}

.philosophy__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
  margin: 0;
}

.philosophy__head {
  margin-bottom: 4px;
}

.philosophy__catch {
  margin: 0 0 40px;
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.25;
  letter-spacing: 0.05em;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: left;
}

.philosophy__text {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--color-text);
  text-align: left;
}

.philosophy__text p {
  margin: 0 0 24px;
}

.philosophy__text p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .philosophy {
    padding: 80px 0;
  }

  .philosophy__catch {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 48px;
  }

  .philosophy__text p {
    margin-bottom: 28px;
  }
}

/* 企業理念 PC */
@media (min-width: 1024px) {
  .philosophy {
    padding: 120px 0;
  }

  .philosophy .l-container {
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .philosophy__inner {
    max-width: none;
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* PC時は改行を表示しない（Figmaデザイン通り） */
  .philosophy__inner br {
    display: none;
  }

  .philosophy__head {
    margin-bottom: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .philosophy__head .section-head__title {
    font-size: 40px;
    letter-spacing: 0.05em;
    color: #191919;
    text-align: center;
  }

  .philosophy__head .section-head__sub {
    font-size: 20px;
    letter-spacing: 0.05em;
    text-align: center;
  }

  .philosophy__catch {
    font-size: 36px;
    line-height: 1.6;
    margin-bottom: 48px;
    text-align: center;
  }

  .philosophy__text {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .philosophy__text p {
    margin-bottom: 20px;
  }
}

/* ----- 代表挨拶 ----- */
.message {
  position: relative;
  padding: 60px 0;
}

.message__accent {
  position: absolute;
  left: 0;
  top: 258px;
  width: 100%;
  height: 454px;
  background: rgba(197, 223, 247, 0.2);
}

.message__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 335px;
  margin: 0 auto;
}

.message__head {
  align-self: center;
}

.message__profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.message__photo-wrap {
  position: relative;
  width: 240px;
  margin: 0 auto;
}

.message__photo-deco {
  position: absolute;
  left: -20px;
  top: 150px;
  width: 97px;
  height: 156px;
  background: var(--gradient-blue);
}

.message__photo {
  position: relative;
  width: 240px;
  height: 288px;
  overflow: hidden;
  background: #e0e0e0;
}

.message__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message__name-label {
  margin: 0;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: 0.1em;
  color: var(--color-text);
}

.message__name {
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0.1em;
  color: var(--color-text);
}

.message__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.message__lead {
  margin: 0;
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.message__text {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

.message__text p {
  margin: 0 0 20px;
}

.message__text p:last-child {
  margin-bottom: 0;
}

.message__block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.message__block-title {
  margin: 0;
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.message__block-text {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

.message__block-text p {
  margin: 0 0 20px;
}

.message__block-text p:last-child {
  margin-bottom: 0;
}

.message__list {
  margin: 16px 0 20px;
  padding: 16px 20px 16px 32px;
  list-style: disc;
  background: rgba(197, 223, 247, 0.25);
  border-radius: 20px;
}

.message__list li {
  margin-bottom: 0.5em;
}

.message__list strong {
  color: var(--color-primary);
  font-weight: 700;
}

/* 経歴紹介 */
.message__career {
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: var(--color-white);
}

.message__career-title {
  margin: 0;
  padding: 10px 32px;
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: var(--color-white);
  background: var(--gradient-blue);
  text-align: center;
  border-radius: 999px;
}

.message__career-list {
  position: relative;
  padding: 20px 24px 24px 0;
  margin: 0;
  list-style: none;
}

.message__career-list::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: rgba(197, 223, 247, 1);
}

.message__career-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr; /* date / desc+note */
  column-gap: 16px;
  row-gap: 16px;
  padding-left: 36px;
  margin-bottom: 20px;
}

.message__career-item:last-child {
  margin-bottom: 0;
}

.message__career-item::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-light-blue);
}

.message__career-date {
  grid-column: 1;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

.message__career-desc {
  grid-column: 2;
  min-width: 0;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

.message__career-note {
  grid-column: 2;
  padding-left: 0;
  font-size: 13px;
  color: var(--color-text-gray);
}

@media (min-width: 768px) {
  .message {
    padding: 80px 0;
  }

  .message__inner {
    max-width: 720px;
  }
}

/* 代表挨拶 PC: 左カラム（見出し+写真）と右カラム（本文） */
@media (min-width: 1024px) {
  .message {
    padding: 0 0 0;
  }

  .message__accent {
    left: 0;
    top: 0;
    width: 254px;
    height: 100%;
  }

  .message .l-container {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding: 100px clamp(40px, 5vw, 120px);
  }

  .message__inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 120px;
    align-items: flex-start;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
  }

  .message__left {
    display: flex;
    flex-direction: column;
    gap: 80px;
    flex-shrink: 0;
  }

  .message__head {
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .message__photo-deco {
    left: -26px;
    top: 152px;
  }

  .message__head .section-head__title {
    font-size: 40px;
    letter-spacing: 0.05em;
    color: #191919;
    text-align: left;
  }

  .message__head .section-head__sub {
    font-size: 20px;
    letter-spacing: 0.05em;
  }

  .message__profile {
    align-items: center;
    gap: 40px;
  }

  .message__name-label {
    font-size: 18px;
    letter-spacing: 0.1em;
  }

  .message__name {
    font-size: 24px;
    letter-spacing: 0.1em;
  }

  .message__body {
    flex: 1 1 0;
    min-width: 0;
    max-width: 640px;
    gap: 60px;
  }

  .message__lead {
    font-size: 28px;
    line-height: 1.6;
    letter-spacing: 0.05em;
    text-align: left;
  }

  .message__lead br {
    display: none;
  }

  .message__text {
    font-size: 16px;
    letter-spacing: 0.05em;
  }

  .message__text br {
    display: none;
  }

  .message__text p {
    margin-bottom: 20px;
  }

  .message__block-title {
    font-size: 28px;
    line-height: 1.6;
    text-align: left;
  }

  .message__block-title br {
    display: none;
  }

  .message__block-text {
    font-size: 16px;
  }

  .message__block-text p {
    margin-bottom: 20px;
  }

  .message__list {
    padding: 24px 16px;
    margin: 20px 0;
  }

  .message__list li {
    font-size: 16px;
    line-height: 2;
  }

  .message__career {
    max-width: none;
    border-radius: 20px;
    overflow: visible;
  }

  .message__career-title {
    border-radius: 999px;
    padding: 8px 40px;
    height: 40px;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    letter-spacing: 0.05em;
  }

  .message__career-list {
    padding: 20px 20px 20px 0;
  }

  .message__career-list::before {
    left: 25px;
  }

  .message__career-item {
    padding-left: 46px;
    margin-bottom: 24px;
    grid-template-columns: 130px 1fr; /* date固定 / desc+note */
    column-gap: 16px;
    row-gap: 16px;
  }

  .message__career-item::before {
    width: 10px;
    height: 10px;
    left: 20px;
    top: 6px;
  }

  .message__career-date {
    grid-column: 1;
    font-size: 14px;
  }

  .message__career-desc,
  .message__career-note {
    font-size: 16px;
  }

  .message__career-note {
    font-size: 14px;
    color: #666;
  }
}

/* ----- 区切り画像（経歴紹介と会社概要の間） ----- */
.about-divider {
  width: 100%;
  overflow: hidden;
  background: var(--color-primary);
}

.about-divider__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 768px) {
  .about-divider {
    height: 300px;
  }

  .about-divider__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (min-width: 1024px) {
  .about-divider {
    height: 400px;
  }
}

/* ----- 会社概要（COMPANY・テーブル） ----- */
.company {
  padding: 60px 0;
  background: linear-gradient(221deg, rgba(197, 223, 247, 0.10) 15.32%, rgba(61, 162, 255, 0.10) 85.75%);
}

.company__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.company__table {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.company__row {
  display: flex;
  min-height: 57px;
}

.company__term {
  flex: 0 0 80px;
  margin: 0;
  padding: 16px 5px;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--color-text);
  /* 横線：項目側は #004599 の 40% 透明度 */ 
  border-bottom: 1px solid rgba(0, 69, 153, 0.4);
}

.company__desc {
  flex: 1 1 auto;
  margin: 0;
  padding: 16px 5px;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: var(--color-text);
  /* 横線：内容側は #004599 の 15% 透明度 */ 
  border-bottom: 1px solid rgba(0, 69, 153, 0.15);
}

@media (min-width: 768px) {
  .company__term {
    flex: 0 0 140px;
    padding: 16px 12px;
  }

  .company__desc {
    padding: 16px 12px;
  }
}

/* 会社概要（COMPANY）PC */
@media (min-width: 1024px) {
  .company {
    padding: 100px 0;
  }

  .company .l-container {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(40px, 5vw, 220px);
    padding-right: clamp(40px, 5vw, 220px);
  }

  .company__inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }

  .company__head {
    flex-shrink: 0;
    width: 200px;
  }

  .company__head .section-head__title {
    font-size: 40px;
    letter-spacing: 0.05em;
    color: #191919;
  }

  .company__head .section-head__sub {
    font-size: 20px;
    letter-spacing: 0.05em;
  }

  .company__table {
    flex: 1 1 0;
    min-width: 0;
    max-width: 700px;
  }

  .company__term {
    flex: 0 0 180px;
    font-size: 16px;
    padding: 16px 20px;
  }

  .company__desc {
    font-size: 16px;
    padding: 16px 20px;
  }
}

/* 携わった主な建物（会社概要の下・Figma Frame 457） */
.company__buildings {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 60px;
}

.company__buildings-title {
  margin: 0;
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
  background: linear-gradient(203.33deg, #3da2ff 14.94%, #004599 85.73%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.company__buildings-line {
  width: 28px;
  height: 2px;
  margin: 0 auto;
  background: linear-gradient(203deg, #3da2ff 14.94%, #004599 85.73%);
  border-radius: 1px;
}

.company__buildings-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 280px;
}

.company__buildings-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ja);
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: var(--color-text);
  padding: 0;
  margin-bottom: 12px;
}

.company__buildings-item:last-child {
  margin-bottom: 0;
}

.company__buildings-item::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(203deg, #3da2ff 14.94%, #004599 85.73%);
}

/* 携わった主な建物 PC: 4カラムグリッド */
@media (min-width: 1024px) {
  .company__buildings {
    margin-top: 80px;
    align-items: stretch;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }

  .company__buildings-title {
    font-size: 28px;
    letter-spacing: 0.05em;
  }

  .company__buildings-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px 20px;
    max-width: none;
    width: 100%;
  }

  .company__buildings-item {
    font-size: 13px;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin-bottom: 0;
    padding: 2px 0;
    min-width: 0;
  }

  .company__buildings-item::before {
    margin-top: 0.35em;
  }
}

/* ----- アクセス（白背景ベース / 疑似要素で右40%に画像を重ねる） ----- */
.access {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.access::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  background-image: url("../assets/images/access.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

.access__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.access__content {
  flex: 1;
  padding: 40px 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 見出し：アクセス（大・太字・黒） / ACCESS（小さめ・青）・左揃え */
.access__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.access__head .section-head__title {
  color: #1a1a1a;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.08em;
  margin: 0;
}
.access__head .section-head__sub {
  color: #3da2ff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: none;
  margin: 0;
}

/* 地図エリア：明るいグレー・角丸 */
.access__map {
  width: 100%;
  overflow: hidden;
  background: #e8e8e8;
}

.access__map-iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}

/* 右側40%：セクション背景（access.png）が透けて見える + 青系オーバーレイ */
.access__visual {
  position: relative;
  flex: none;
  width: 100%;
  min-height: 220px;
  background: transparent;
}
.access__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    225deg,
    rgba(0, 69, 153, 0.25) 0%,
    rgba(61, 162, 255, 0.15) 50%,
    rgba(0, 69, 153, 0.2) 100%
  );
  pointer-events: none;
}

@media (min-width: 768px) {
  .access__body {
    flex-direction: row;
    min-height: 480px;
  }

  .access__content {
    flex: 0 0 60%;
    width: 60%;
    max-width: none;
    padding: 64px 48px 64px 5%;
    gap: 28px;
  }

  .access__head .section-head__title {
    font-size: 36px;
    letter-spacing: 0.1em;
  }
  .access__head .section-head__sub {
    font-size: 18px;
  }

  .access__map-iframe {
    height: 320px;
  }

  .access__visual {
    flex: 0 0 40%;
    width: 40%;
    min-height: 480px;
  }
}

/* アクセス PC: Figma 1-2088 デザイン（右400pxパネル・コンテンツ1000px・余白100/140） */
@media (min-width: 1024px) {
  .access {
    padding: 100px 0 140px;
  }

  /* 右側パネル：（400px固定） */
  .access::after {
    right: 0;
    top: 0;
    width: 400px;
    height: 100%;
    bottom: auto;
    background-size: cover;
    background-position: center;
    z-index: 1;
  }

  .access__body {
    position: relative;
    z-index: 2;
    flex-direction: column;
    min-height: 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(40px, 5vw, 120px);
    padding-right: 40px;
  }

  .access__content {
    flex: none;
    width: 100%;
    max-width: 1000px;
    padding: 0;
    gap: 60px;
    align-items: flex-start;
  }

  .access__head {
    gap: 16px;
  }

  .access__head .section-head__title {
    font-size: 40px;
    letter-spacing: 0.05em;
    color: #191919;
  }

  .access__head .section-head__sub {
    font-size: 20px;
    letter-spacing: 0.05em;
    background: linear-gradient(206.609deg, rgb(61, 162, 255) 14.94%, rgb(0, 69, 153) 85.727%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .access__map {
    width: 100%;
    max-width: 1000px;
    height: 450px;
    background: #d9d9d9;
  }

  .access__map-iframe {
    height: 450px;
  }

  .access__visual {
    display: none;
  }
}

/* ----- CTA（会社概要ページ用・トップと同様） ----- */
.cta {
  background: var(--color-primary);
  padding: 70px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: 100%;
  max-width: 600px;
}

.cta__title {
  margin: 0;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 60px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: transparent;
  background: linear-gradient(189deg, rgba(255,255,255,0.5) 2.7%, rgba(255,255,255,0.8) 80.7%);
  -webkit-background-clip: text;
  background-clip: text;
}

.cta__options {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: stretch;
  width: 100%;
}

.cta__option {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.cta__option-title {
  margin: 0;
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta__option-title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-white);
  flex-shrink: 0;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-width: 300px;
  height: 60px;
  padding: 0 40px 0 24px;
  background: var(--color-white);
  border: 1px solid var(--color-accent);
  border-radius: 999px;
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  text-decoration: none;
}

.cta__btn span {
  background: linear-gradient(232deg, #3da2ff 14.94%, #004599 85.73%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta__btn img {
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2476%) hue-rotate(199deg);
}

.cta__note {
  margin: 0;
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

@media (min-width: 768px) {
  .cta {
    padding: 70px 40px;
  }

  .cta__options {
    flex-direction: row;
    justify-content: center;
    gap: 60px;
    align-items: flex-start;
  }

  .cta__option {
    flex: 0 1 320px;
  }
}
