/* CSS Document */

/*-------------------------
    PC/SP切り替え
-------------------------*/
.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: inherit;
  }
  .sp-none {
    display: none;
  }
}

/*-------------------------
    カラー
-------------------------*/
.txt_white {
  color: #ffffff;
}
.txt_black {
  color: #000000;
}
.gradation {
  background-image: linear-gradient(90deg, #38d8b0, #0b97b0);
}

/*-------------------------
    ボタン
-------------------------*/
.btn {
  border-radius: var(--round);
  box-shadow: 1px 1px 6px #00000033;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}
.gradation.btn::after {
  content: "";
  width: 10px;
  height: 15px;
  background-image: url("/assets/img/header-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 13px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.btn-pdf {
  width: 100%;
  height: 100%;
  border: 2px solid #0e7174;
  background-color: #ffffff;
  border-radius: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-pdf::after {
  content: "";
  background-image: url("/assets/img/insurance-agent-article-icon.svg");
  background-repeat: no-repeat;
  width: 30px;
  height: 41px;
  background-size: contain;
  right: 25px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

@media screen and (max-width: 1000px) {
  .gradation.btn::after {
    content: "";
    width: 6px;
    height: 10px;
  }
}
/*-------------------------
アニメーション
----------------------------*/
.scroll-in-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  transition: none;
}
.scroll-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-in.animate {
  opacity: 1;
  transform: translateY(0);
}

/*-------------------------
    テーブル
-------------------------*/
.servise__table {
  display: flex;
  justify-content: space-between;
}
.servise__table dt {
  background-color: #005153;
  color: #ffffff;
  font-weight: 500;
}
.servise__table dd {
  background-color: #ffffff;
}
