@charset "utf-8";
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
PC版
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/* mv */
#mv {
  background: url("../img/mv_bg.png") no-repeat;
  background-size: cover;
  background-position: right;
}

#mv .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 45px 0 30px;
}

#mv .catch {
  width: 100%;
}

#mv .catch img {
  max-width: 100%;
}

/* sec01 */
#sec01 {
}

#sec01 h2 {
  position: relative;
  color: var(--clr-main);
  font-size: 40px;
  text-align: left;
  margin-bottom: var(--sp-4);
  padding-left: calc(17px + 11px);
}
#sec01 h2::before {
  content: "";
  position: absolute;
  top: calc(50% - 20px);
  border-radius: 20px;
  left: 0;
  display: block;
  width: 11px;
  height: 40px;
  background: var(--clr-main);
}

.sec01__content-01 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-bottom: var(--sp-5);
}
.sec01__content-01 .txt {
  width: 723px;
}
.sec01__content-01 .txt p,
.sec01__content-02 .txt p {
  font-size: var(--px-18);
  line-height: 1.8;
}
.sec01__content-01 .txt p strong,
.sec01__content-02 .txt p strong {
  font-weight: var(--regular);
}
.sec01__content-01 .txt .list {
  margin: var(--sp-2) 0 var(--px-20);
}
.sec01__content-01 .txt .list dt {
  position: relative;
  margin-bottom: var(--sp-1);
  padding-left: 39px;
  font-size: var(--px-18);
  color: var(--clr-main);
  font-weight: var(--bold);
}
.sec01__content-01 .txt .list dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 10px);
  background: url("../img/icon_yubi.png") no-repeat;
  background-size: contain;
  width: 25.6px;
  height: 21.4px;
}

.sec01__content-01 .txt .list dd {
  font-size: var(--px-18);
  font-weight: var(--bold);
}
.sec01__content-01 .txt .list dd::before {
  content: "・";
}

.sec01__content-01 .img {
  width: 348px;
}

.sec01__content-02 .txt {
  margin-bottom: var(--sp-5);
}
.sec01__content-02 .img {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}
.sec01__content-02 .img-inner {
  display: flex;
  animation: scrollImages 60s linear infinite;
  gap: var(--sp-2);
}
.sec01__content-02 .img .img-item {
  width: var(--col-5);
  height: 120px;
  flex: 0 0 auto;
  /* インタラクション無しのためトランジションとホバー効果を削除 */
}
.sec01__content-02 .img .img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* スクロールアニメーション */
@keyframes scrollImages {
  0% {
    transform: translateX(0);
  }
  100% {
    /* 画像が全部スクロールし終わった後、最初に戻る距離を設定 */
    transform: translateX(calc(-100% - var(--sp-2)));
  }
}

/* sec02 */
#sec02 {
}

#sec02 .cmn-h2 {
  margin-bottom: var(--sp-3);
}

.sec02__header {
  margin-bottom: var(--sp-4);
}
.sec02__header .cmn-h3 {
  margin-bottom: var(--sp-1);
}
.sec02__header .ttl-caption {
}
.sec02__header .ttl-caption span {
  display: block;
  font-size: var(--px-20);
  line-height: 1;
}
.sec02__header .ttl-caption small {
  display: block;
  font-weight: var(--bold);
}

.sec02__box {
  padding: 15px 22px;
  background-color: #f2f2f2;
  margin-bottom: 16px;
}
.sec02__box-img-head {
  display: block;
  width: 509px;
  margin-bottom: 10px;
}

.sec02__list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-flow: row nowrap;
  gap: 20px;
  counter-reset: count;
  margin-bottom: 10px;
}

.sec02__item {
  width: 240px;
  /* height: 244px; */
  border-radius: 0;
  background-color: #ffffff;
  filter: drop-shadow(0 4px 7px rgba(0, 0, 0, 0.25));
}

.sec02__item:not(:last-child) {
  position: relative;
}

.sec02__item:not(:last-child)::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 10px;
  height: 47px;
  border-radius: 0;
  margin-block: auto;
  background: no-repeat center/contain url("../img/sec02_deco1.png");
  transform: translateX(calc(100% + 10px));
}

.sec02__item-header {
  background-color: #103e76;
  padding: 12px 0;
}

.sec02__item-header h5 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

.sec02__item-header h5::before {
  counter-increment: count;
  content: counter(count, decimal-leading-zero) ".";
  font-size: 20px;
}

.sec02__item-box {
  padding: 20px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-flow: column nowrap;
  gap: 12px;
}

.sec02__button {
  color: #103e76;
  font-weight: 700;
}

/* sec03 */
#sec03 {
}
#sec03 .cmn-h2 {
  margin-bottom: var(--sp-5);
}

.sec03__link {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--sp-10);
}

.sec03__link-item {
  width: calc((100% / 5) - 13px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 23px 0.4px 17px;
  border-radius: 14px;
  background-color: #28427b;
}
.sec03__link-item .num {
  width: 54px;
  margin-bottom: var(--sp-1);
}
.sec03__link-item p {
  text-align: center;
  color: var(--clr-white);
  margin-bottom: var(--sp-2);
}
.sec03__link-item .arrow {
  width: 27px;
}

/* sec03__content */
.sec03__content {
}

.sec03__content-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 45px;
  border-radius: 20px;
  box-shadow: 0 4px 9px 4px rgba(91, 91, 91, 0.25);
  background-color: var(--clr-white);
  margin-bottom: var(--sp-10);
}
.sec03__content-item:last-of-type {
  margin-bottom: 0;
}
.sec03__content-item .ttl {
  position: relative;
  font-size: var(--h3-fz);
  font-weight: var(--bold);
  line-height: 1.2;
  text-align: left;
  color: var(--clr-sub01);
  margin-bottom: var(--sp-3);
}
.sec03__content-item .ttl::after {
  content: "";
  display: block;
  background-color: var(--clr-sub01);
  margin-top: var(--sp-3);
  width: 53px;
  height: 3px;
}
.sec03__content-item .ttl::before {
  content: "";
  position: absolute;
  top: calc(-10px - 57.25px);
  left: 0;
  display: block;
  width: 105px;
  height: 60px;
  background: url("../img/sec03_num01.png") no-repeat;
  background-size: contain;
}
.sec03__content-item:nth-of-type(2) .ttl::before {
  background: url("../img/sec03_num02.png") no-repeat;
  background-size: contain;
}
.sec03__content-item:nth-of-type(3) .ttl::before {
  background: url("../img/sec03_num03.png") no-repeat;
  background-size: contain;
}
.sec03__content-item:nth-of-type(4) .ttl::before {
  background: url("../img/sec03_num04.png") no-repeat;
  background-size: contain;
}
.sec03__content-item:nth-of-type(5) .ttl::before {
  background: url("../img/sec03_num05.png") no-repeat;
  background-size: contain;
}
.sec03__content-item .txt {
  font-size: var(--px-18);
  font-weight: var(--medium);
  letter-spacing: 1px;
  margin-bottom: var(--sp-1);
}
.sec03__content-item .list {
  padding: 11px 13px;
  border-radius: 10px;
  background-color: #e7e9ee;
}
.sec03__content-item .list li {
  font-size: var(--px-18);
}
.sec03__content-item .list li::before {
  content: "・";
  margin-right: var(--sp-1);
}
.sec03__content-item .txt-box {
  width: 736px;
}
.sec03__content-item .img {
  width: 253px;
}

/* sec04 */
#sec04 .more_btn_2011 {
  margin-top: var(--sp-5);
}
#sec04 .cmn-h2 {
  margin-bottom: var(--sp-5);
}
#sec04 h2.title {
  font-size: 36px;
  text-decoration: none;
}

.sec04_title {
}

.sec04_title .sub-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-size: var(--h4-fz);
  line-height: 1.5;
  font-weight: var(--bold);
  text-align: center;
  margin-bottom: var(--sp-5);
}

.sec04_title .sub-title strong {
  display: block;
  color: var(--clr-main);
  font-weight: var(--black);
  font-size: var(--h2-fz);
}

/* .sec04_cont */
.sec04_cont {
  margin: 0 auto;
  background-color: #f8f8f8;
  padding: 18.3px 16px;
}

.sec04_cont-header {
  position: relative;
  display: flex;
  gap: var(--sp-2);
}

.sec04_cont-header::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  left: 0;
  bottom: 0;
  background-color: #2f4365;
  border-radius: 4px;
}

.sec04_cont-tab .img {
  width: 85px;
  margin: 0 auto;
}

.sec04_cont-tab .img img {
  max-width: 100%;
}

.sec04_cont-tab .ttl {
  font-size: var(--h6-fz);
  color: var(--clr-main);
  margin-bottom: var(--sp-1);
}

.sec04_cont-header .sec04_cont-tab {
  flex: 1;
  text-align: center;
  padding: 11px;
  padding-top: 19px;
  cursor: pointer;
  font-weight: bold;
  border: 3px solid #eaeaea;
  /* 左右下のボーダー */
  border-top: none;
  /* 上のボーダーを削除 */
  border-radius: 10px 10px 0 0;
  /* 上の角だけ丸くする */
  opacity: 0.6;
  position: relative;
  /* 擬似要素のために必要 */
  background-color: #fff;
  /* 背景色を追加 */
}

.sec04_cont-header .sec04_cont-tab::before {
  content: "";
  position: absolute;
  top: 0;
  left: -3px;
  right: 0;
  width: calc(100% + 6px);
  height: 11px;
  background-color: var(--clr-main);
  border-radius: 10px 10px 0 0;
  z-index: 2;
}

.sec04_cont-header .sec04_cont-tab.active {
  position: relative;
  opacity: 1;
  background-color: #eaeaea;
  z-index: 2;
}

.sec04_cont-header .sec04_cont-tab.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: -3px;
  right: 0;
  width: calc(100% + 6px);
  height: 5px;
  background-color: #eaeaea;
  /* border-radius: 10px 10px 0 0; */
  z-index: 2;
}

.sec04_cont-content {
  display: none;
  background-color: #eaeaea;
  padding: 18.3px 16px;
}

.sec04_cont-content.active {
  display: block;
}

.sec04_cont-consult-box,
.sec04_cont-ddf-box {
  padding: var(--sp-2);
  background: var(--clr-white);
}

.sec04_cont-consult-title {
  width: fit-content;
  background-color: var(--clr-main);
  color: var(--clr-white);
  font-size: var(--h6-fz);
  font-weight: var(--bold);
  padding: var(--sp-05) var(--sp-1);

  margin-bottom: 14px;
}

.sec04_cont-ddf-title {
  width: fit-content;
  background-color: #1facd4;
  color: var(--clr-white);
  font-size: var(--h6-fz);
  padding: var(--sp-05) var(--sp-1);
  font-weight: bold;
  margin-bottom: 14px;
}

.sec04_cont-inner {
  display: flex;
  gap: var(--sp-2);
}

.sec04_cont-inner > div {
  flex: 1;
  width: 510px;
  min-height: 400px;
}
/* sec05 */
#sec05 .cmn-h2 {
  margin-bottom: var(--sp-4);
}
.sec05__content-item {
  margin-bottom: calc(var(--sp-5) + var(--sp-2));
}
.sec05__content-item:last-of-type {
  margin-bottom: 0;
}

.sec05__content-item h3 {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
  margin-bottom: 25px;
  background-color: #e7e9ee;
  font-weight: bold;
  font-size: 26px;
  line-height: 1;
  margin-bottom: var(--sp-3);
}

.sec05__content-item h3 .en {
  position: relative;
  display: inline-block;
  background: #003f7e;
  color: #fff;
  padding: 12px 20px 12px 25px;
}

/* 三角形の作成 */
.sec05__content-item h3 .en:after {
  content: "";
  position: absolute;
  top: 0;
  right: -25px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 25px;
  border-color: transparent transparent transparent #003f7e;
}

.sec05__content-item h3 .ja {
  display: block;
  padding-left: 20px;
}

.sec05__content-item .item-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sec05__content-item .item-img-wrap {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.sec05__content-item .item-img-wrap .txt {
  width: 300px;
  padding: 27px 0 45px;
  background: url("../img/sec05_img_bg.png") no-repeat;
  background-size: contain;
  font-size: var(--h5-fz);
  font-weight: var(--bold);
  line-height: 1.3;
  text-align: center;
  color: #1b3e76;
}
.sec05__content-item .item-img-wrap .img {
  width: 120px;
}

.sec05__content-item .item-txt-wrap {
  width: 780px;
  border: solid 0.5px #002366;
  border-radius: 15px 15px;
  overflow: hidden;
}

.sec05__content-item .item-txt-wrap .ttl {
  background-color: #003f7e;
  color: var(--clr-white);
  padding: 10px;
  text-align: center;
}
.sec05__content-item .item-txt-wrap .list {
  padding: var(--sp-5) var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sec05__content-item .item-txt-wrap .list dl {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-1);
}
.sec05__content-item .item-txt-wrap .list dl dd {
  width: 450px;
  font-size: var(--px-18);
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
タグスタイル
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/* 共通タグスタイル */
.tag {
  width: min(100%, 260px);
  border-radius: calc(var(--sp-1) * 8);
  border: 1px solid var(--clr-txt);
  font-size: var(--small-fz);
  padding: var(--sp-1);
  text-align: center;
}
/* タグ1: ファストフォレンジック */
.tag1 {
  background-color: #b9f5ff;
}
/* タグ2: ディープフォレンジック */
.tag2 {
  background-color: #cae0f8;
}
/* タグ3: コンピュータフォレンジック */
.tag3 {
  background-color: #89b8e9;
}
/* タグ4: ネットワークフォレンジック */
.tag4 {
  background-color: #89b8e9;
}
/* タグ5: クラウドフォレンジック */
.tag5 {
  background-color: #89b8e9;
}
/* タグ6: パスワード解析 */
.tag6 {
  background-color: #cef2de;
}
/* タグ7: モバイルフォレンジック */
.tag7 {
  background-color: #ffdbdb;
}
/* タグ8: セキュリティ診断 */
.tag8 {
  background-color: #f3fbff;
}
/* タグ9: データ復元 */
.tag9 {
  background-color: #ffee8c;
}
/* タグ10: ダークウェブ調査（情報漏えい調査） */
.tag10 {
  background-color: #dcc4f8;
}

/* 追加分 */
/* タグ11: カーフォレンジック */
.tag11 {
  background-color: #cde3c9;
}
/* タグ12: 不正通信調査 */
.tag12 {
  background-color: #f2eace;
}
/* タグ13: 脆弱性診断 */
.tag13 {
  background-color: #ff999b;
}

/* sec06 */

.sec06__header {
  margin-bottom: var(--sp-5);
}

.sec06__header .cmn-h2 {
  margin-bottom: var(--sp-3);
}
.sec06__header p {
  font-size: var(--px-20);
  text-align: center;
}
.sec06__content {
  position: relative;
  z-index: 2;
}
.sec06__content-item {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding: 25px 42px 21px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sec06__content-item:last-of-type {
  margin-bottom: 0;
}
.sec06__content-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sec06__content-item .ttl {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.28;
}
.sec06__content-item .txt {
  font-size: var(--h5-fz);
}
.sec06__content-item .img {
  width: 50px;
  height: 50px;
}

.sec06__content-item_wrap {
  position: relative;
  z-index: 1;
  padding: calc(20px + 10px) 38px 20px;
  margin-top: calc(-10px - 14px);
  background-color: var(--clr-white);
  border-radius: 0 0 10px 10px;
  margin-bottom: 14px;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
modal
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/* モーダル関連のスタイルはmodal.cssに移動しました */
.modal-header {
  margin-bottom: var(--sp-3);
}
.modal-header h3 {
  font-size: 38px;
  font-weight: var(--bold);
  text-align: center;
  line-height: 1.44;
  color: #28427b;
}
.modal-header::after {
  content: "";
  display: block;
  background-color: var(--clr-sub01);
  margin: 0 auto;
  margin-top: var(--sp-3);
  width: 53px;
  height: 3px;
}
.modal-header p {
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.4;
  letter-spacing: normal;
  text-align: center;
  color: #28427b;
}

.modal-txt {
  font-size: var(--px-20);
  font-weight: var(--medium);
  line-height: 1.75;
  text-align: justify;
}

.modal-point {
  position: relative;
  padding-left: 121px;
  margin-top: var(--sp-2);
  font-size: var(--px-20);
  font-weight: var(--bold);
  text-align: justify;
  line-height: 1.55;
  color: #28427b;
}
.modal-point::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 46.5px);
  background: url("../img/modal_point.png") no-repeat;
  background-size: contain;
  width: 93px;
  height: 93px;
}
.modal-point small {
  display: block;
  font-size: var(--body-fz);
}

.modal-case {
  position: relative;
  padding: 33px 30px;
  border-radius: 10px;
  background-color: #f1f1f1;
  margin-top: var(--sp-10);
}
.modal-case h4 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: fit-content;
  padding: 10px 50px;
  border-radius: 5px;
  background-color: #28427b;
  font-size: var(--px-18);
  font-weight: var(--bold);
  color: #fff;
}
.modal-case p {
  font-size: var(--px-20);
  font-weight: var(--medium);
  line-height: 1.75;
  text-align: justify;
}

/* モーダル用の追加スタイル */
.modal-close img {
  max-width: 100%;
}

/* sec06のアイテムにホバーエフェクト追加 */
.sec_cta__box-header p {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2%;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
既存パーツ調整
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#faq .sec_cta {
  margin-bottom: var(--sp-10);
}
#faq {
  margin-bottom: 60px;
}
#faq .inner {
  padding: 0;
}
.faq-cta {
  padding-bottom: 60px;
}

.section-ttl-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--h3-fz);
  font-weight: var(--medium);
  margin-bottom: var(--sp-4);
}

.sec-ttle {
  color: var(--clr-main);
}

#faq .qa-list dd::before {
  top: 25px;
}
.qa-list .in-dl {
  padding-right: 5vw;
}

#police-cooperation .reveal #topics_2011 {
  margin-top: 0 !important;
}

#service #service_2011 {
  padding-top: 0 !important;
  margin-top: -60px;
}

/* .sec_cta */
.sec_cta__box-wrap {
  margin-bottom: 50px;
}
.sec_cta__box {
  position: relative;
  height: 254px;
  background: no-repeat right/cover url("../img/sec01_bg.png");
  display: flex;
  line-height: 1.5;
  margin-bottom: 140px;
}
.sec_cta__box::after {
  position: absolute;
  bottom: calc(-29px - 75px);
  left: calc(50% - 103.5px);
  content: "";
  display: block;
  background: url("../img/icon_tr_cta.png") no-repeat;
  background-size: contain;
  width: 207px;
  height: 75px;
}
.sec_cta__box-header {
}
.sec_cta__box-header h4 {
  font-size: 32px;
  color: #e8e428;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.sec_cta__box-header.sec_cta__box-header-01 {
  margin: auto 80px 60px;
}
.sec_cta__box-header.sec_cta__box-header-02 {
  margin: auto 45px 63px;
}
.sec_cta__box-header h4 small {
  font-size: 26px;
  color: #ffffff;
}

.cmn-cta {
  position: relative;
  padding-bottom: var(--sp-5);
  margin-block: var(--sp-10) var(--sp-4);
  text-align: center;
  color: #103e76;
}

.cmn-cta::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  margin-inline: auto;
  width: 1100px;
  height: 17px;
  background: no-repeat center / 1100px url("../img/cmn_cta.png");
}

.cmn-cta p {
  font-weight: var(--bold);
  font-size: calc(var(--sp-1) * 2.75);
  letter-spacing: var(--letter-sp);
}

.cmn-cta em {
  font-size: var(--h4-fz);
  font-style: normal;
}

.cmn-cta span {
  background: linear-gradient(to top, #f9f744 28px, #ffffff 28px);
}

.cmn-cta strong {
  font-size: var(--h3-fz);
}

/* 各CTA調整 */
.sec04_cta {
  margin-bottom: calc(var(--sp-10) + var(--sp-2));
}
.sec05_cta {
  margin-bottom: calc(var(--sp-10) + var(--sp-2));
}
.sec05_cta__content {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  padding-right: 180px;
}
.sec05_cta__content::after {
  position: absolute;
  bottom: calc(50% - 103.5px);
  right: 44px;
  content: "";
  display: block;
  background: url(../img/sec05_cta_illust.png) no-repeat;
  background-size: contain;
  width: 157px;
  height: 186px;
}
.sec05_cta .cmn-cta {
  margin-top: 0;
}

.sec05_cta .cmn-cta p {
  margin-bottom: var(--sp-3);
}
.sec05_cta .cmn-cta p em {
  line-height: 1.28;
}

.sec_06_cta {
  position: relative;
  margin-top: 200px;
}

.sec_06_cta::after {
  position: absolute;
  top: calc(-29px - 75px);
  left: calc(50% - 103.5px);
  content: "";
  display: block;
  background: url("../img/icon_tr_cta.png") no-repeat;
  background-size: contain;
  width: 207px;
  height: 75px;
}

.sec_service_cta {
}

.sec_service_cta .cmn-cta {
  padding-bottom: 0;
  margin-bottom: 100px;
  color: #000;
  font-size: 37px;
}

.sec_service_cta .cmn-cta::before {
  content: none;
}

.sec_service_cta {
  position: relative;
  margin-bottom: 100px;
}

.sec_service_cta::after {
  position: absolute;
  bottom: calc(-50px - 75px);
  left: calc(50% - 103.5px);
  content: "";
  display: block;
  background: url("../img/icon_tr_cta.png") no-repeat;
  background-size: contain;
  width: 207px;
  height: 75px;
}

/* .more_btn_2011 */
.more_btn_2011 {
  /* zoom: 80%; */
}
.more_btn_2011 a {
  width: fit-content;
  display: block;
  margin: 0 auto;
}
