/**
 * ファイル名: service-wiz.css
 * 作成日: 2025-01-11
 * 説明: Wiz製品紹介ページ専用スタイルシート
 * 作者: Aby3開発チーム
 */

/* フォント読み込み */
/**
 * ファイル名: service-wiz.css
 * 作成日: 2025-01-11
 * 説明: Wiz製品紹介ページ専用スタイルシート
 * 作者: Aby3開発チーム
 */

/* ========================================
   外部フォント読み込み
   ======================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;600&display=swap");
/* ========================================
   レスポンシブ表示制御クラス - ページ全体
   ======================================== */
/* 画面サイズに応じて要素の表示/非表示を制御するユーティリティクラス */
@media screen and (min-width: 751px) {
  .visible-lg, .visible-md, .visible-sm {
    display: none; }
  .visible-xl {
    display: inherit; } }

@media screen and (min-width: 1024px) and (max-width: 1366px) {
  .visible-xl, .visible-md, .visible-sm {
    display: none; }
  .visible-lg {
    display: inherit; } }

@media screen and (min-width: 751px) and (max-width: 1023px) {
  .visible-xl, .visible-lg, .visible-sm {
    display: none; }
  .visible-md {
    display: inherit; } }

@media screen and (max-width: 750px) {
  .visible-xl, .visible-lg, .visible-md {
    display: none; }
  .visible-sm {
    display: inherit; } }

/* ========================================
   ユーティリティクラス - ページ全体
   ======================================== */
/* リンク無効化とフォント太字のユーティリティクラス */
.no--link {
  pointer-events: none; }

.fontBold {
  font-weight: bold; }

/* ========================================
   レイアウトコンテナ - ページ全体
   ======================================== */
/* コンテンツ幅とマージンの統一的な制御 */
@media screen and (min-width: 751px) {
  [class*=l-content-] {
    width: calc(100% - 20px);
    margin: 0 auto; } }

@media screen and (max-width: 750px) {
  [class*=l-content-]:not(.l-content-ex) {
    padding: 0 2.66667vw; } }

@media screen and (min-width: 751px) {
  .l-content-md {
    max-width: 1000px; } }

@media screen and (min-width: 751px) {
  .l-content-lg {
    max-width: 1200px; } }

/* ========================================
   セクション見出し - 全セクション共通
   ======================================== */
/* 英語・日本語の二段構成見出しと装飾線のスタイル */
.section__heading {
  text-align: center; }
  .section__heading::after {
    content: '';
    display: block;
    width: 1.5em;
    height: 5px;
    background-color: #db1517;
    margin: 0.5em auto 1.5em; }
  .section__heading .heading--en {
    display: block;
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.4em;
    line-height: 1;
    font-size: 3.73333vw; }
  .section__heading .heading--jp {
    display: block;
    font-weight: 700;
    line-height: 1.4;
    font-size: 9.6vw; }

@media screen and (min-width: 751px) {
  .section__heading::after {
    width: 3.3em;
    height: 3px;
    margin-bottom: 3em; }
  .section__heading .heading--en {
    font-size: calc(1rem - 2px); }
  .section__heading .heading--jp {
    font-size: calc(1rem + 20px); } }

/* ========================================
   カード・バナーコンポーネント - ページ全体
   ======================================== */
/* カードの影とバナーコンテンツのレイアウト */
.card__shadow {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; }

.bnr__content {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto; }

/* ========================================
   採用バナー - 採用ページ用（Wizページでは未使用）
   ======================================== */
/* 採用情報バナーの背景画像とレイアウト設定 */
.bnr__recruit {
  width: 100%;
  background: url(/assets/images/common/bnr_recruit_sp.jpg) 50% 50%/contain no-repeat; }
  .bnr__recruit__txt {
    font-weight: 700;
    line-height: 1.4;
    width: 70%;
    padding: 6vw 4vw 4vw; }
  .bnr__recruit__copy {
    font-size: 5.73333vw;
    margin-bottom: 0.5em;
    white-space: nowrap; }
  .bnr__recruit__btn {
    background-color: #fff;
    color: #13466b;
    text-align: center;
    padding: 1em;
    font-size: 3.06667vw;
    position: relative; }
    .bnr__recruit__btn::after {
      content: '';
      position: absolute;
      top: 50%;
      right: 2.66667vw;
      display: inline-block;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 1.06667vw 1.6vw 1.06667vw;
      border-color: transparent transparent #13466b transparent;
      transform: rotate(90deg) translate(-50%, 0); }
    @media screen and (min-width: 751px) {
      .bnr__recruit__btn::after {
        right: 1em;
        border-width: 0 6px 8px 6px; } }
@media screen and (min-width: 751px) {
  .bnr__recruit {
      max-height: 250px;
      background-image: url(/assets/images/common/bnr_recruit_pc.jpg); }
      .bnr__recruit__txt {
        width: 45%;
        padding: 2.8em 0 3.2em 3.9em; }
      .bnr__recruit__copy {
        font-size: calc(1rem + 26px);
        margin-bottom: 0.2em; }
      .bnr__recruit__btn {
        background-color: #fff;
        padding: 0.8em 1em;
        font-size: calc(1rem + 2px); }
      .bnr__recruit:hover {
        opacity: 0.7; } }
  @media screen and (min-width: 1367px) {
    .bnr__recruit__txt {
      padding: 2.3em 0 2.2em 3.9em; } }

/* ========================================
   パンくずリスト - ページ全体
   ======================================== */
/* ナビゲーション階層の表示とスタイリング */
.breadcrumb {
  padding: .7rem 0;
  background: #e6e6e6;
  font-size: 2.93333vw;
  background-color: #e6e6e6; }
  @media screen and (min-width: 751px) {
    .breadcrumb {
      font-size: calc(1rem - 2px); } }
  .breadcrumb__item {
    display: inline;
    margin-right: 1rem; }
    .breadcrumb__item + .breadcrumb__item:before {
      content: '>';
      margin-right: 1rem; }
  .breadcrumb__anc {
    display: inline;
    text-decoration: underline; }
    @media screen and (min-width: 751px) {
      .breadcrumb__anc:hover {
        text-decoration: none; } }

@media screen and (max-width: 750px) {
  .sp__none {
    display: none; } }

@media screen and (min-width: 751px) {
  .pc__none {
    display: none; } }

.indention {
  display: inline-block; }

/* ========================================
   メインコンテンツ - ページ全体
   ======================================== */
/* メインコンテンツの背景画像とレイアウト */
main {
  position: relative; }
  main::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1; }
  @media screen and (min-width: 751px) {
    main::before {
      background: url(/assets/images/top/bg_design.png) 133% 42%/60% no-repeat; } }
  @media screen and (max-width: 750px) {
    main::before {
      background: url(/assets/images/top/bg_design.png) -43% 37%/120% no-repeat; } }

/* ========================================
   ヒーローセクション - ページトップ
   ======================================== */
/* メインタイトルとサブタイトルの表示スタイル */
.hero {
  border-top: solid 1px #e6e6e6;
  border-bottom: solid 1px #e6e6e6;
  color: #db1517;
  text-align: center;
  line-height: 1.4; }
  @media screen and (min-width: 751px) {
    .hero {
      padding: 2.5rem 0; } }
  @media screen and (max-width: 750px) {
    .hero {
      padding: 1.5rem 0; } }
  .hero__heading {
    font-weight: bold;
    font-size: 9.6vw; }
    @media screen and (min-width: 751px) {
      .hero__heading {
        font-size: 36px; } }
  .hero__subtitle {
    font-size: 4.8vw;
    margin-top: 0.5rem;
    color: #666; }
    @media screen and (min-width: 751px) {
      .hero__subtitle {
        font-size: 18px; } }
  .hero__description {
    font-size: 3.2vw;
    margin-top: 0.5rem;
    color: #999; }
    @media screen and (min-width: 751px) {
      .hero__description {
        font-size: 14px; } }

.section__content {
  width: 100%;
  max-width: 960px;
  margin: 0 auto; }

.summary__wrap {
  padding: 3.75rem 0 0; }

.section__lead {
  font-size: 1rem;
  line-height: 2; }

.summary__text {
  margin-top: 1.875rem;
  font-size: 1.375rem;
  font-weight: bold; }

.summary__content__wrap {
  margin-top: 1.875rem;
  display: flex; }
  @media screen and (max-width: 750px) {
    .summary__content__wrap {
      flex-direction: column; } }

@media screen and (min-width: 751px) {
  .summary__content {
    width: 55%; } }

@media screen and (max-width: 750px) {
  .summary__content {
    width: 100%; } }

@media screen and (max-width: 750px) {
  .summary__content + .summary__content {
    margin-top: 1.57rem; } }

@media screen and (min-width: 751px) {
  .summary__content.summary__management {
    width: 45%; } }

.summary__content.summary__management .summary__content__text {
  width: 100%; }

.summary__content__text {
  display: inline-block;
  line-height: 3.6rem;
  text-align: center;
  background-color: #db1517;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold; }
  @media screen and (min-width: 751px) {
    .summary__content__text {
      width: 80%; } }
  @media screen and (max-width: 750px) {
    .summary__content__text {
      width: 100%; } }

@media screen and (min-width: 751px) {
  .summary__content__img {
    margin-top: 2.5rem; } }

@media screen and (max-width: 750px) {
  .summary__content__img {
    margin-top: 1.25rem; } }

@media screen and (min-width: 751px) {
  .compatible_equipment {
    margin-top: 2.5rem; } }

@media screen and (max-width: 750px) {
  .compatible_equipment {
    margin-top: 1.25rem; } }

.compatible_equipment p {
  line-height: 2.0; }
  .compatible_equipment p .bg_gray {
    background: #f2f2f2;
    padding: 0 .5rem; }

@media screen and (min-width: 751px) {
  .feature {
    margin-top: 8.5rem; } }

@media screen and (max-width: 750px) {
  .feature {
    margin-top: 4.3rem; } }

.anchor__link__list {
  display: flex;
  justify-content: space-between; }
  @media screen and (max-width: 750px) {
    .anchor__link__list {
      flex-direction: column; } }

.anchor__link__content {
  width: calc(100% / 3 - 40px);
  text-align: center;
  font-size: 1.125rem;
  font-weight: bold; }
  @media screen and (min-width: 751px) {
    .anchor__link__content {
      width: calc(100% / 3 - 40px); } }
  @media screen and (max-width: 750px) {
    .anchor__link__content {
      width: 100%; } }
  @media screen and (max-width: 750px) {
    .anchor__link__content + .anchor__link__content {
      margin-top: 1.5rem; } }

.anchor__link {
  width: 100%;
  padding: 1.7rem 0 2.5em;
  color: #db1517;
  position: relative; }
  @media screen and (min-width: 751px) {
    .anchor__link {
      background-color: #fff;
      border: 2px solid #db1517; } }
  @media screen and (max-width: 750px) {
    .anchor__link {
      background-color: #f4f4f4; } }
  .anchor__link::after {
    content: "";
    position: absolute;
    bottom: 1rem;
    left: 50%;
    width: 0.715rem;
    height: 0.715rem;
    border-bottom: solid 2px;
    border-right: solid 2px;
    transform: rotate(45deg) translateX(-50%); }
  .anchor__link:hover {
    color: #fff;
    background-color: #db1517; }

.feature__list__content {
  position: relative; }

  @media screen and (min-width: 751px) {
    .feature__list__content {
      padding-top: 1rem;
      margin: 5.5rem 0rem;
    }
  }

  @media screen and (max-width: 750px) {
    .feature__list__content {
      padding-top: 4rem;
      margin-top: 2.25rem
    }
  }

.feature__list__title {
  position: absolute;
  top: 0;
  font-size: 1.875rem;
  color: #db1517;
  font-weight: bold; }
  @media screen and (min-width: 751px) {
    .feature__list__title {
      line-height: 1;
      padding-left: 3.4375rem; } }
  @media screen and (max-width: 750px) {
    .feature__list__title {
      line-height: 1.3;
      padding-left: 2.66667vw; } }

.feature__list__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f4f4f4; }
  @media screen and (min-width: 751px) {
    .feature__list__inner {
      padding: 3.4375rem; } }
  @media screen and (max-width: 750px) {
    .feature__list__inner {
      flex-direction: column;
      padding: 3.4375rem 2.66667vw; } }

.feature__list__img {
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.22) inset;
  position: relative; }
  @media screen and (min-width: 751px) {
    .feature__list__img {
      width: 11.25rem;
      height: 11.25rem; } }
  @media screen and (max-width: 750px) {
    .feature__list__img {
      width: 7.8rem;
      height: 7.8rem; } }
  .feature__list__img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0; }
  @media screen and (min-width: 751px) {
    .feature__list__img.management::after {
      background: url(/assets/images/service/wiz/wiz-img03.png) no-repeat center; } }
  @media screen and (max-width: 750px) {
    .feature__list__img.management::after {
      background: url(/assets/images/service/wiz/wiz-img03-sp.png) no-repeat center/60%; } }
  @media screen and (min-width: 751px) {
    .feature__list__img.centralization::after {
      background: url(/assets/images/service/wiz/wiz-img04.png) no-repeat center; } }
  @media screen and (max-width: 750px) {
    .feature__list__img.centralization::after {
      background: url(/assets/images/service/wiz/wiz-img04-sp.png) no-repeat center/40%; } }
  @media screen and (min-width: 751px) {
    .feature__list__img.automation::after {
      background: url(/assets/images/service/wiz/wiz-img05.png) no-repeat center; } }
  @media screen and (max-width: 750px) {
    .feature__list__img.automation::after {
      background: url(/assets/images/service/wiz/wiz-img05-sp.png) no-repeat center/50%; } }

.feature__list__text {
  font-size: 1rem;
  line-height: 2; }
  @media screen and (min-width: 751px) {
    .feature__list__text {
      width: calc(100% - 1.875rem - 11.25rem); } }
  @media screen and (max-width: 750px) {
    .feature__list__text {
      width: 100%; } }

/* ========================================
   Wizとはセクション - 概要説明
   ======================================== */
/* Wizの基本概念と3つの特徴を説明するセクション */
.overview {
  padding: 5rem 0; }
  @media screen and (max-width: 750px) {
    .overview {
      padding: 3rem 0; } }

.overview__lead {
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: left;
  margin-bottom: 3rem; }

.overview__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem; }
  @media screen and (max-width: 1024px) and (min-width: 751px) {
    .overview__features {
      grid-template-columns: 1fr; } }
  @media screen and (max-width: 750px) {
    .overview__features {
      grid-template-columns: 1fr;
      gap: 1.5rem; } }

.overview__feature {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #db1517;
  display: flex;
  flex-direction: column;
  height: 100%; }

.overview__feature__title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #db1517;
  margin-bottom: 1rem;
  min-height: 3.5rem;
  display: flex;
  align-items: center; }

.overview__feature__text {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  flex: 1; }

/* ========================================
   主要機能セクション - 機能説明
   ======================================== */
/* Wizの6つの主要機能をアイコン付きカードで表示 */
.capabilities {
  background-color: #f8f9fa;
  padding: 5rem 0; }
  @media screen and (max-width: 750px) {
    .capabilities {
      padding: 3rem 0; } }

.capabilities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem; }
  @media screen and (max-width: 750px) {
    .capabilities__grid {
      grid-template-columns: 1fr;
      gap: 1.5rem; } }

.capability__item {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center; }

.capability__icon {
  margin-bottom: 1.5rem; }

.capability__icon__img {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #db1517;
  display: flex;
  align-items: center;
  justify-content: center; }
  .capability__icon__img.vulnerability::after {
    content: "🔒";
    font-size: 24px; }
  .capability__icon__img.configuration::after {
    content: "⚙️";
    font-size: 24px; }
  .capability__icon__img.identity::after {
    content: "👤";
    font-size: 24px; }
  .capability__icon__img.attack-path::after {
    content: "🎯";
    font-size: 24px; }
  .capability__icon__img.compliance::after {
    content: "📋";
    font-size: 24px; }
  .capability__icon__img.integration::after {
    content: "🔗";
    font-size: 24px; }

.capability__title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #db1517;
  margin-bottom: 1rem; }

.capability__description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666; }

/* ========================================
   ビジネス価値セクション - 価値提案
   ======================================== */
/* Wizで実現できる4つのビジネス価値を番号付きで表示 */
.value-proposition {
  padding: 5rem 0; }
  @media screen and (max-width: 750px) {
    .value-proposition {
      padding: 3rem 0; } }

.value__content {
  margin-top: 3rem; }

.value__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem; }
  @media screen and (max-width: 750px) {
    .value__item {
      flex-direction: column;
      text-align: center; } }

.value__number {
  font-size: 3rem;
  font-weight: bold;
  color: #db1517;
  margin-right: 2rem;
  min-width: 80px; }
  @media screen and (max-width: 750px) {
    .value__number {
      margin-right: 0;
      margin-bottom: 1rem; } }

.value__text {
  flex: 1; }

.value__title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem; }

.value__description {
  font-size: 1rem;
  line-height: 1.8;
  color: #666; }

/* ========================================
   対応プラットフォームセクション - 技術仕様
   ======================================== */
/* 対応クラウドプロバイダーとテクノロジーをカテゴリ別に表示 */
.supported-platforms {
  background-color: #f8f9fa;
  padding: 5rem 0; }
  @media screen and (max-width: 750px) {
    .supported-platforms {
      padding: 3rem 0; } }

.platforms__lead {
  text-align: left;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: #666; }

.platforms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem; }
  @media screen and (max-width: 1024px) and (min-width: 751px) {
    .platforms__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem; } }
  @media screen and (max-width: 750px) {
    .platforms__grid {
      grid-template-columns: 1fr;
      gap: 1rem; } }

.platform__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #db1517;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 120px; }
  @media screen and (max-width: 750px) {
    .platform__logo {
      padding: 1.5rem;
      height: 120px; } }

.platform__text {
  font-size: 1.125rem;
  font-weight: 600;
  color: #f7f7f7;
  text-align: center;
  line-height: 1.5; }
  @media screen and (max-width: 750px) {
    .platform__text {
      font-size: 1rem; } }

/* ========================================
   お問い合わせセクション - CTA
   ======================================== */
/* 無料トライアル申し込みボタンの表示エリア */
.caseStudy {
  background-color: #f7f7f7;
  margin-top: 3.75rem;
  position: relative; }
  @media screen and (min-width: 751px) {
    .caseStudy {
      padding: 10.5rem 0 9.25rem; } }
  @media screen and (max-width: 750px) {
    .caseStudy {
      padding: 5.75rem 0 3.75rem; } }
  .caseStudy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-left: 50vw solid transparent;
    border-right: 50vw solid transparent; }
    @media screen and (min-width: 751px) {
      .caseStudy::before {
        border-top: 4.5rem solid #fff; } }
    @media screen and (max-width: 750px) {
      .caseStudy::before {
        border-top: 2.35rem solid #fff; } }

.caseStudy__container {
  position: relative; }
  @media screen and (min-width: 751px) {
    .caseStudy__container {
      margin: 0 6.875rem; } }
  @media screen and (max-width: 750px) {
    .caseStudy__container {
      margin: 0 2.125rem; } }

.caseStudy__content {
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.12); }
  @media screen and (min-width: 751px) {
    .caseStudy__content {
      margin: 0 10px; } }

.caseStudy__text {
  background-color: #fff;
  padding: 1.875rem;
  font-size: 1rem;
  line-height: 2; }

.caseStudy__title {
  font-weight: bold; }

.caseStudy__list__wrap {
  position: relative; }

.caseStudy__list__anchor {
  display: block;
  position: absolute;
  top: 50%;
  z-index: 1; }
  @media screen and (min-width: 751px) {
    .caseStudy__list__anchor {
      width: 24px;
      height: 73px; } }
  @media screen and (max-width: 750px) {
    .caseStudy__list__anchor {
      width: 2rem;
      height: 4rem;
      background: #e6e6e6; } }
  @media screen and (min-width: 751px) {
    .caseStudy__list__anchor.left {
      left: -5%;
      transform: translate(-50%, -50%); } }
  @media screen and (max-width: 750px) {
    .caseStudy__list__anchor.left {
      left: -4.3vw;
      transform: translateY(-50%); } }
  .caseStudy__list__anchor.left .caseStudy__list__arrow::before, .caseStudy__list__anchor.left .caseStudy__list__arrow::after {
    transform-origin: 0 50%;
    left: 0; }
  @media screen and (min-width: 751px) {
    .caseStudy__list__anchor.right {
      right: -5%;
      transform: translate(50%, -50%); } }
  @media screen and (max-width: 750px) {
    .caseStudy__list__anchor.right {
      right: -4.3vw;
      transform: translateY(-50%); } }
  .caseStudy__list__anchor.right .caseStudy__list__arrow::before, .caseStudy__list__anchor.right .caseStudy__list__arrow::after {
    right: 0;
    transform-origin: calc(100% - 2px) 50%; }

.caseStudy__list__arrow {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }
  @media screen and (min-width: 751px) {
    .caseStudy__list__arrow {
      width: 24px;
      height: 73px; } }
  @media screen and (max-width: 750px) {
    .caseStudy__list__arrow {
      width: 0.75rem;
      height: 2.25rem; } }
  .caseStudy__list__arrow::before, .caseStudy__list__arrow::after {
    content: "";
    display: block;
    height: 4px;
    position: absolute;
    top: calc(50% - 2px);
    border-radius: 100px; }
    @media screen and (min-width: 751px) {
      .caseStudy__list__arrow::before, .caseStudy__list__arrow::after {
        width: 40px;
        background: #999; } }
    @media screen and (max-width: 750px) {
      .caseStudy__list__arrow::before, .caseStudy__list__arrow::after {
        width: 1.25rem;
        background: #fff; } }
  .caseStudy__list__arrow::before {
    transform: rotate(-60deg); }
  .caseStudy__list__arrow::after {
    transform: rotate(60deg); }

/* ========================================
   ボタンコンポーネント - ページ全体
   ======================================== */
/* CTAボタンとコンタクトボタンのスタイリング */
@media screen and (min-width: 751px) {
  .btn__contact {
    max-width: 960px;
    margin: 5rem auto 0; } }

@media screen and (max-width: 750px) {
  .btn__contact {
    margin-top: 3rem; } }

.btn-a {
  position: relative;
  display: block;
  background: linear-gradient(to bottom, #db1517, #A50C13);
  color: #fff;
  font-weight: bold;
  transition: all .3s;
  text-align: center; }
  .btn-a::after {
    content: '';
    display: block;
    position: absolute;
    box-sizing: border-box; }
  .btn-a:hover {
    background: linear-gradient(to top, #db1517, #A50C13); }
  @media screen and (min-width: 751px) {
    .btn-a {
      font-size: calc(1rem + 8px);
      padding: 2rem 1rem;
      border: solid .5rem #fff; }
      .btn-a::after {
        top: -.5rem;
        left: -.5rem;
        width: calc(100% + 1rem);
        height: calc(100% + 1rem);
        border: solid 0.2rem #db1517; } }
  @media screen and (max-width: 750px) {
    .btn-a {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: .5rem;
      border: solid .3rem #fff;
      min-height: 24vw; }
      .btn-a::after {
        top: -.3rem;
        left: -.3rem;
        width: calc(100% + .6rem);
        height: calc(100% + .6rem);
        border: solid 0.1rem #db1517; }
      .btn-a .dot {
        display: none; } }

.trial__link {
  width: calc(100% - 20px);
  margin: 4rem auto 0;
  max-width: 960px; }