@charset "UTF-8";

:root {
  --color-primary: #B50080;
  --color-dark: #1A1A1A;
  --color-gray: #F3F4F8;
  --color-gray2: #B2B2B2;
  --color-rightgray: #666666;
  --color-rightgray2: #888888;
  --color-rightgray3: #E6E9F1;
  --color-blue: #007AAB;
  --color-rightblue: #0099CE;
  --color-skyblue: #E7F5F9;
  --color-skyblue2: #007AAB;
  --color-red: #D70606;
}

/*
  フォントサイズ
    $font-size: フォントサイズ(必須)
    $line-height: ラインハイト or 空
    $letter-spacing: レタースペーシング or 空
*/

/*

*/

/*
  Hタグ
    $type: 2(H2サイズ)
*/

/*
  共通ボタン 大
  default: skyblue2
*/

/*
  共通ボタン 小
  default: skyblue2
*/

/*
  通常
  SP 左右のマージン20px
  PC 幅900px
*/

/*
  角丸border付きレイアウト
*/

/*
  グレーの文字の補足系
*/

/* 移植ページにリニューアル後のコンポーネントがある場合の共通CSS */

.p-payment__section {
  max-width: 900px;
  margin-top: 40px;
  margin-left: 20px;
  margin-right: 20px;
}

.p-payment__section .p-payment__other {
  margin-top: 24px;
}

.p-payment__section .p-payment__other a {
  font-size: 1.4rem;
  line-height: 1.5;
  padding: 20px 0px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  background-image: none !important;
  color: var(--color-dark);
  position: relative;
}

.p-payment__section .p-payment__other a::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  background-color: var(--color-gray2);
  background-image: linear-gradient(90deg, var(--color-dark), var(--color-dark));
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 0% 2px;
  transition: background-size 0.4s ease;
}

.p-payment__section .p-payment__other a:hover::before {
  background-size: 100% 2px;
  background-position: left bottom;
}

.p-payment__section .p-payment__other a::after {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%231a1a1a" d="M14.8585 11.5318L9.51833 6.19171C9.39482 6.0681 9.22994 6 9.05414 6C8.87833 6 8.71346 6.0681 8.58995 6.19171L8.19668 6.58487C7.94078 6.84107 7.94078 7.25745 8.19668 7.51326L12.6809 11.9975L8.19171 16.4867C8.06819 16.6104 8 16.7751 8 16.9508C8 17.1267 8.06819 17.2915 8.19171 17.4152L8.58497 17.8083C8.70858 17.9319 8.87336 18 9.04916 18C9.22497 18 9.38984 17.9319 9.51335 17.8083L14.8585 12.4634C14.9823 12.3394 15.0503 12.1738 15.0499 11.9978C15.0503 11.8211 14.9823 11.6557 14.8585 11.5318Z" /></svg>') center center/contain no-repeat;
}

.p-payment__section .p-payment__btnWrapper {
  width: 335px;
  max-width: 100%;
  margin: 40px auto 0;
}

.p-payment__section .p-payment__btnWrapper a {
  color: var(--color-blue);
  text-decoration: none;
}

@media screen and (min-width: 769px) {
  .p-payment__section {
    margin-top: 64px;
    margin-left: auto;
    margin-right: auto;
  }

  .p-payment__section .p-payment__other {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px 30px;
    margin-top: 32px;
  }

  .p-payment__section .p-payment__other a {
    padding: 0px 4px 14px 2px;
  }

  .p-payment__section .p-payment__btnWrapper {
    width: 442px;
    margin: 48px auto 0;
  }
}
/*# sourceMappingURL=../../../sourcemaps/_transfer/common/styles/renewal_components.css.map */