@charset "UTF-8";
.wrapper {
  padding-top: 150px;
  background-color: #fefaf7;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .wrapper {
    padding-top: 120px;
  }
}
.mv-sub__visual {
  background: url("/_common_n/img/products/mv.webp?2") 50% 50% / cover no-repeat;
}
/* -------------------------------- */
.tabs {
  padding: 180px 5% 0;
}
.tabs__inner {
  position: relative;
}
.tabs ul {
  display: grid;
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  grid-template-columns: repeat(3, 287px); /* ← ボタン幅を固定 */
}
@media screen and (max-width: 1200px) {
  .tabs ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.tabs ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70px;
  background-color: #fff;
  color: #333;
  font-weight: bold;
  letter-spacing: .05em;
  border: 1px solid #e47d6e;
  border-radius: 35px;
}
.tabs ul li a i {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translate(0, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background-color: #e47d6e;
  color: #fff;
  font-size: 12px;
  border-radius: 13px;
  transition: .3s;
}
.tabs ul li a:hover {
  background-color: #e47d6e;
  color: #fff;
}
.tabs ul li a:hover i {
  background-color: #fff;
  color: #e47d6e;
  transition: .3s;
}
@media screen and (max-width: 767px) {
  .tabs {
    padding: 50px 24px 0;
  }
  .tabs ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
  .tabs ul li {
    flex: 1;
  }
  .tabs ul li a {
    height: 50px;
  }
  .tabs ul li a i {
    right: 16px;
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
}
.tab__bg1 {
  position: absolute;
  top: 0%;
  left: -150px;
  width: 525px;
  z-index: 1;
  animation: float-about1 12s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  .tab__bg1 {
    top: 0px;
    left: -150px;
    width: 200px;
  }
}
/* -------------------------------- */
.backgrounds {
  padding: 260px 5% 160px;
}
.backgrounds__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.backgrounds h2 {
  text-align: center;
}
.backgrounds h2 .en {
  display: block;
  font-size: 52px;
  letter-spacing: .05em;
}
.backgrounds h2 .ja {
  display: block;
  margin-top: 15px;
  color: #e47d6e;
}
.backgrounds__description {
  margin-top: 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .backgrounds {
    padding: 100px 24px 100px;
  }
  .backgrounds h2 {
    text-align: center;
  }
  .backgrounds h2 .en {
    font-size: 36px;
  }
  .backgrounds h2 .ja {
    margin-top: 10px;
  }
  .backgrounds__description {
    margin-top: 50px;
  }
}
.tab-buttons {
  display: flex;
  gap: 10px;
  margin-top: 60px;
}
.tab-button {}
.tab-button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  background-color: #f9ecec;
  color: #e47d6e;
  font-size: 24px;
  font-weight: bold;
  border-radius: 10px 10px 0 0;
}
.tab-button.active {
  background: #e47d6e;
  color: #fff;
}
/* 枠（白背景＋影）は tab-content に */
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
  border-radius: 0 0 20px 20px;
  padding: 56px 80px 80px; /* 上に見出し分の余白を追加 */
}
/* 見出しブロック */
.tab-content__head {
  margin-bottom: 40px;
}
.tab-content__en {
  color: #e47d6e;
  font-size: 14px;
  letter-spacing: .12em;
  font-weight: 700;
}
.tab-content__name {
  margin-top: 10px;
  font-size: 22px;
  letter-spacing: .05em;
  font-weight: 700;
  color: #333;
}
.tab-content__desc {
  margin-top: 16px;
  line-height: 2;
  color: #333;
}
/* カード一覧は “グリッドだけ” を担当 */
.tab-content .backgrounds__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px 35px;
  padding: 0; /* ここは 0 にする */
  margin: 0;
  list-style: none;
}
/* 既存の li デザインはそのまま使える（必要ならセレクタだけ合わせる） */
.tab-content .backgrounds__list > li {
  position: relative;
  padding: 37px 27px;
  border: 1px solid #dfe2ea;
  border-radius: 10px;
}
/* スマホ */
@media screen and (max-width: 767px) {
  .tab-content.active {
    padding: 30px 16px 16px;
    border-radius: 0 0 20px 20px;
  }
  .tab-content__head {
    margin-bottom: 20px;
  }
  .tab-content__name {
    font-size: 18px;
  }
  .tab-content .backgrounds__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}
.tab-content ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px 35px;
  padding: 20px 0px;
}
.tab-content ul li {
  position: relative;
  padding: 37px 27px;
  border: 1px solid #dfe2ea;
  border-radius: 10px;
}
.tab-content ul li .backgrounds__number {
  position: absolute;
  top: 30px;
  right: 27px;
  color: #f9ecec;
  font-size: 60px;
}
.tab-content ul li .backgrounds__en {
  color: #e47d6e;
  font-size: 14px;
  letter-spacing: .1em;
}
.tab-content ul li .backgrounds__name {
  margin-top: 10px;
  font-size: 18px;
  letter-spacing: .05em;
}
.tab-content ul li .backgrounds__item {
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
}
.tab-content__ttl {
  display: block;
  margin: 0;
}
.tab-content__ttl .en {
  display: block;
  font-size: 14px;
  letter-spacing: .12em;
  color: #e47d6e;
  font-weight: 700;
}
.tab-content__ttl .ja {
  display: block;
  margin-top: 8px;
  font-size: 28px;
  letter-spacing: .05em;
  font-weight: 700;
  color: #333;
}
.tab-content__desc {
  margin-top: 18px;
  line-height: 2;
  color: #333;
}
.tab-content__ttl {
  display: block;
  margin: 0;
}
.tab-content__ttl .en {
  display: block;
  font-size: 14px;
  letter-spacing: .12em;
  color: #e47d6e;
  font-weight: 700;
}
.tab-content__ttl .ja {
  display: block;
  margin-top: 8px;
  font-size: 28px;
  letter-spacing: .05em;
  font-weight: 700;
  color: #333;
}
.tab-content__desc {
  margin-top: 18px;
  line-height: 2;
  color: #333;
}
/* =========================
   TAB1 リニューアル（#tab1 だけ）
========================= */
#tab1 .tab-content__box {
  background: #fff;
  border: 1px solid #e9ecf4;
  border-radius: 20px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
  padding: 40px 80px 20px;
}
/* tab1だけ：既存の .tab-content ul の“枠スタイル”を無効化 */
#tab1 ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
#tab1 ul > li {
  padding: 0;
  border: 0;
  border-radius: 0;
}
/* 画像の見た目（今の backgrounds__item を活かす） */
#tab1 .backgrounds__item {
  margin-top: 0; /* 既存で margin-top がある場合の調整 */
  border-radius: 10px;
  overflow: hidden;
}
/* 下の見出し・説明 */
#tab1 .tab-content__head {
  margin-top: 28px;
}
#tab1 .tab-content__ttl {
  margin: 60px 0 0 0;
}
#tab1 .tab-content__ttl .en {
  display: block;
  color: #e47d6e;
  font-size: 14px;
  letter-spacing: .1em;
}
#tab1 .tab-content__ttl .ja {
  display: block;
  margin-top: 10px;
  font-size: 22px;
  letter-spacing: .05em;
  color: #333;
}
#tab1 .tab-content__desc {
  margin-top: 14px;
  line-height: 2;
  letter-spacing: .05em;
  color: #333;
}
/* SP：画像は1列、枠内の余白も縮める */
@media screen and (max-width: 767px) {
  #tab1 .tab-content__box {
    padding: 16px;
    border-radius: 20px;
  }
  #tab1 ul {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  #tab1 .tab-content__ttl {
    margin: 30px 0 0 0;
  }
  #tab1 .tab-content__ttl .ja {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .tab-buttons {
    display: flex;
    gap: 6px;
    margin-top: 60px;
  }
  .tab-button {
    height: 56px; /* （縦余白を適正化） */
    font-size: 12px;
    letter-spacing: .05em;
    text-align: center;
    padding: 0 6px; /* 左右余白を調整 */
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tab-content ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    padding: 16px 0;
  }
  .tab-content ul li {
    padding: 30px 20px;
  }
  .tab-content ul li .backgrounds__number {
    position: absolute;
    top: 30px;
    right: 27px;
    color: #f9ecec;
    font-size: 60px;
  }
  .tab-content ul li .backgrounds__en {
    color: #e47d6e;
    font-size: 14px;
    letter-spacing: .1em;
  }
  .tab-content ul li .backgrounds__name {
    margin-top: 10px;
    font-size: 18px;
    letter-spacing: .05em;
  }
  .tab-content ul li .backgrounds__item {
    margin-top: 30px;
  }
  .tab-content.active {
    padding: 30px 16px 16px;
    border-radius: 0 0 20px 20px;
  }
  .tab-content__head {
    margin-bottom: 20px;
  }
  .tab-content__name {
    font-size: 18px;
  }
  .tab-content .backgrounds__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
  .tab-content__ttl .ja {
    font-size: 20px;
  }
  .tab-content__desc {
    margin-top: 14px;
  }
}
/* --------------------------------
  SIZE & PRICE
-------------------------------- */
.size-price {
  padding: 160px 5%;
  background: linear-gradient(#f5ebdf 539px, rgba(0, 0, 0, 0) 539px);
}
.size-price__inner {
  max-width: 880px;
  margin: 0 auto;
}
.size-price__title {
  position: relative;
}
.size-price h2 {
  position: relative;
  z-index: 2;
}
.size-price h2 .en {
  display: block;
  font-size: 52px;
  letter-spacing: .05em;
}
.size-price h2 .ja {
  display: block;
  margin-top: 10px;
  color: #e47d6e;
}
.size-price__title-en {
  position: absolute;
  top: -20px;
  left: -40px;
  transform: translate(-100px, -100px);
  width: 668px;
}
.size-price__visual {
  margin-top: 60px;
}
.size-price h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 60px;
  font-size: 28px;
  letter-spacing: .05em;
}
.size-price h3 span {
  width: 12px;
  height: 12px;
  background-color: #e47d6e;
  border-radius: 50%;
}
/* --- point blocks --- */
.size-price__point {
  display: flex;
  margin-top: 60px;
  padding: 65px 58px;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .05);
}
.size-price__point.mt {
  margin-top: 20px;
}
.size-price__point-texts {
  width: 100%;
  padding-right: 80px;
}
.size-price__point-texts h4 {
  color: #e47d6e;
  font-size: 24px;
  letter-spacing: .05em;
}
.size-price__point-texts h4 small {
  display: block;
  font-size: 16px;
}
.size-price__point-texts p {
  margin-top: 20px;
  line-height: 2;
}
.size-price__point-visual {
  width: 253px;
  min-width: 253px;
}
/* --- table wrap (single source of truth) --- */
.size-price-table-wrap {
  margin-top: 28px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .05);
  background: #fff;
}
/* 横スクロール（スマホで潰れない） */
.size-price-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
/* table */
.size-price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 860px; /* 6列想定：潰れ防止 */
  background: #fff;
}
.size-price-table thead th {
  background: #e47d6e;
  color: #fff;
  padding: 18px 14px;
  text-align: center;
  font-weight: 700;
  letter-spacing: .05em;
  border-right: 1px solid rgba(255, 255, 255, .35);
}
.size-price-table thead th:last-child {
  border-right: 0;
}
.size-price-table tbody td {
  padding: 16px 14px;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  line-height: 1.6;
  background: #fff; /* デフォルトは白で固定（rowspanズレ対策） */
}
.size-price-table tbody tr:last-child td {
  border-bottom: 0;
}
.size-price-table tbody td:last-child {
  border-right: 0;
}
.size-price-table small {
  font-size: 12px;
  color: #666;
}
/* ✅ 左端の「種類」列だけ背景色（rowspanでも崩れない） */
.size-price-table td.col-type {
  background: #f9f5f2;
  font-weight: 700;
  letter-spacing: .02em;
}
/* 文字のメリハリ（必要なら微調整OK） */
.size-price-table td.col-size {
  font-weight: 600;
}
.size-price-table td.col-base {
  font-weight: 700;
}
.size-price-table td.col-total {
  font-weight: 800;
}
.size-price-table-memo {
  margin-top: 10px;
  color: #888;
  text-align: right;
}
/* --- SP --- */
@media screen and (max-width: 767px) {
  .size-price {
    padding: 100px 24px;
    background: linear-gradient(#f5ebdf 300px, rgba(0, 0, 0, 0) 300px);
  }
  .size-price h2 .en {
    font-size: 36px;
  }
  .size-price__visual {
    margin-top: 50px;
  }
  .size-price h3 {
    margin-top: 50px;
    font-size: 22px;
  }
  .size-price__point {
    flex-direction: column;
    margin-top: 30px;
    padding: 30px 20px;
  }
  .size-price__point.mt {
    margin-top: 20px;
  }
  .size-price__point-texts {
    padding-right: 0;
  }
  .size-price__point-texts h4 {
    font-size: 18px;
  }
  .size-price__point-texts h4 small {
    font-size: 14px;
  }
  .size-price__point-visual {
    width: 100%;
    min-width: initial;
    margin-top: 20px;
  }
  .size-price-table-wrap {
    margin-top: 30px;
  }
  .size-price-table thead th {
    padding: 14px 10px;
  }
  .size-price-table tbody td {
    padding: 14px 10px;
  }
}
/* -------------------------------- */
/* 額装 */
.framing {
  margin-top: 28px;
  padding: 60px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .05);
}
/* 2列グリッド */
.framing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 24px;
}
/* 各アイテム */
.framing__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
/* 画像 */
.framing__item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}
/* ラベル（画像下・左揃え・プレーン） */
.framing__label {
  margin: -2px 0 0 10px;
  font-size: 16px;
  letter-spacing: .05em;
  color: #333;
}
/* -------------------------------- */
/* スマホ */
@media screen and (max-width: 767px) {
  .framing {
    padding: 30px 20px;
  }
  .framing__grid {
    grid-template-columns: 1fr; /* ← 1列 */
    gap: 24px;
  }
  .framing__label {
    font-size: 15px;
    margin: -2px 0 0 4px;
  }
}
.scroll-hint-icon {
  height: 90px !important;
}
.scroll-hint-text {
  margin-top: 0px !important;
} /*6*/
.flow {
  padding: 160px 5%;
  background-color: #faf2e8;
}
.flow__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.flow h2 {
  text-align: center;
}
.flow h2 .en {
  display: block;
  font-size: 52px;
  letter-spacing: .05em;
}
.flow h2 .ja {
  display: block;
  color: #e47d6e;
}
.flow ul.flow__list {
  display: flex;
  flex-direction: column;
  gap: 77px;
  margin-top: 60px;
}
.flow ul.flow__list > li {
  position: relative;
  padding: 30px 90px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
}
.flow ul.flow__list > li::after {
  position: absolute;
  content: "\f078";
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 77px;
  color: #e47d6e;
  font-size: 30px;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
}
.flow ul.flow__list > li:last-child::after {
  display: none;
}
.flow ul.flow__list > li .flow__list-number {
  position: absolute;
  top: 24px;
  left: 0;
  transform: translate(-50%, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 80px;
  height: 80px;
  background-color: #e47d6e;
  color: #fff;
  line-height: 1.1;
  border-radius: 40px;
}
.flow ul.flow__list > li .flow__list-number .step {
  font-size: 14px;
  letter-spacing: .1em;
}
.flow ul.flow__list > li .flow__list-number .number {
  font-size: 30px;
  font-weight: 600;
}
.flow ul.flow__list > li h3 {
  color: #e47d6e;
  font-size: 24px;
  letter-spacing: .05em;
}
.flow ul.flow__list > li .flow__text {
  margin-top: 20px;
  line-height: 2;
  letter-spacing: .05em;
}
.flow ul.flow__list > li .flow__text small {
  display: block;
  color: #888;
  font-size: 14px;
}
.flow ul.flow__list > li .flow__text ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 25px;
  padding: 15px 22px;
  border: 1px solid #e47d6e;
  border-radius: 10px;
}
.flow ul.flow__list > li .flow__text ul li {
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1.5;
}
.flow ul.flow__list > li .flow__text ul li div {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.flow ul.flow__list > li .flow__text ul li i {
  margin-top: 10px;
  color: #e47d6e;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .flow {
    padding: 100px 24px;
  }
  .flow h2 .en {
    font-size: 36px;
    letter-spacing: .05em;
  }
  .flow h2 .ja {
    margin-top: 10px;
  }
  .flow ul.flow__list {
    gap: 100px;
    margin-top: 80px;
  }
  .flow ul.flow__list > li {
    padding: 60px 20px 20px;
  }
  .flow ul.flow__list > li::after {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    height: 60px;
    font-size: 30px;
  }
  .flow ul.flow__list > li .flow__list-number {
    top: -40px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 80px;
    height: 80px;
  }
  .flow ul.flow__list > li .flow__list-number .step {
    font-size: 14px;
    letter-spacing: .1em;
  }
  .flow ul.flow__list > li .flow__list-number .number {
    font-size: 30px;
    font-weight: 600;
  }
  .flow ul.flow__list > li h3 {
    font-size: 18px;
    letter-spacing: .05em;
  }
  .flow ul.flow__list > li .flow__text {
    margin-top: 10px;
    line-height: 2;
    letter-spacing: .05em;
  }
  .flow ul.flow__list > li .flow__text small {
    font-size: 14px;
  }
  .flow ul.flow__list > li .flow__text ul {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 25px;
    padding: 15px 22px;
  }
  .flow ul.flow__list > li .flow__text ul li {
    display: flex;
    flex-direction: column;
    gap: 10px;
    line-height: 1.5;
  }
  .flow ul.flow__list > li .flow__text ul li div {
    display: flex;
    align-items: flex-start;
    gap: 6px;
  }
  .flow ul.flow__list > li .flow__text ul li i {
    margin-top: 4px;
  }
}
.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px; /* ←ご希望の幅 */
  height: 44px;
  padding: 0 14px;
  margin: 20px 0;
  border: 1px solid #e47d6e;
  border-radius: 999px;
  background: #fff;
  color: #e47d6e;
  font-size: 14px;
  letter-spacing: .05em;
  text-decoration: none;
  box-sizing: border-box;
  transition: .3s;
}
.mini-btn:hover {
  background: #e47d6e;
  color: #fff;
}
/* スマホ調整 */
@media screen and (max-width: 767px) {
  .mini-btn {
    width: 100%;
    max-width: 220px; /* 2つ並べたい/1列にしたいで調整OK */
    height: 42px;
    font-size: 14px;
  }
}
/* -------------------------------- */
.attention {
  padding: 160px 5%;
}
.attention__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.attention h2 {
  text-align: center;
}
.attention h2 .en {
  display: block;
  font-size: 52px;
  letter-spacing: .05em;
}
.attention h2 .ja {
  display: block;
  color: #e47d6e;
}
.attention__description {
  margin-top: 70px;
}
.attention__visual {
  max-width: 1040px;
  margin: 70px auto;
}
.attention h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 55px;
  font-size: 28px;
  letter-spacing: .05em;
}
.attention h3 span {
  width: 12px;
  height: 12px;
  background-color: #e47d6e;
  border-radius: 10px;
}
.attention__text {
  margin-top: 20px;
  line-height: 2;
  letter-spacing: .05em;
}
.attention__text.mt {
  margin-top: 10px;
  padding-left: 15px;
}
.attention h4 {
  display: flex;
  align-items: center;
  margin-top: 20px;
  font-size: 18px;
  letter-spacing: .05em;
}
.attention h4 span {
  padding: 5px 15px;
  background-color: #f5ebdf;
}
@media screen and (max-width: 767px) {
  .attention {
    padding: 100px 24px;
  }
  .attention h2 .en {
    font-size: 40px;
    letter-spacing: .05em;
  }
  .attention__description {
    margin-top: 50px;
  }
  .attention__visual {
    margin: 50px auto;
  }
  .attention h3 {
    gap: 10px;
    margin-top: 50px;
    font-size: 20px;
    letter-spacing: .05em;
  }
  .attention__text {
    margin-top: 20px;
    line-height: 2;
    letter-spacing: .05em;
  }
  .attention__text.mt {
    margin-top: 10px;
    padding-left: 15px;
  }
  .attention h4 {
    margin-top: 20px;
    font-size: 16px;
    letter-spacing: .05em;
  }
  .attention h4 span {
    padding: 5px 15px;
    background-color: #f5ebdf;
  }
}
/* -------------------------------- */
.page-cta {
  padding: 100px 5% 160px;
}
.page-cta__inner {
  display: flex;
  gap: 15px;
}
.page-cta a {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 253px;
  padding: 80px;
  background-color: #e47d6e;
  color: #fff;
  font-size: 18px;
  letter-spacing: .05em;
  border: 3px solid #e47d6e;
  border-radius: 30px;
}
.page-cta a::after {
  position: absolute;
  content: '\f061';
  top: 50%;
  right: 48px;
  transform: translate(0, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #fff;
  color: #e47d6e;
  font-size: 20px;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  border-radius: 40px;
  transition: .3s;
}
.page-cta a:hover {
  background-color: #fff;
  color: #e47d6e;
  transition: .3s;
}
.page-cta a:nth-child(1):hover::after {
  background-color: #e47d6e;
  color: #fff;
  transition: .3s;
}
.page-cta a:nth-child(2):hover {
  background-color: #e47d6e;
  color: #fff;
}
.page-cta a:nth-child(2):hover::after {
  background-color: #fff;
  color: #e47d6e;
  transition: .3s;
}
.page-cta a:nth-child(2):hover h3 .ja {
  color: #fff;
}
.page-cta a:nth-child(2) {
  background-color: #fae4e1;
  color: #e47d6e;
}
.page-cta a:nth-child(2) h3 .ja {
  color: #333;
}
.page-cta a:nth-child(2):hover {
  background-color: #e47d6e;
  color: #fff;
}
.page-cta a h3 .ja {
  display: block;
  font-size: 36px;
  letter-spacing: .05em;
}
.page-cta a h3 .en {
  display: block;
  margin-top: 10px;
  font-size: 20px;
  letter-spacing: .05em;
}
@media screen and (max-width: 767px) {
  .page-cta {
    padding: 60px 5% 100px;
  }
  .page-cta__inner {
    flex-direction: column;
    gap: 15px;
  }
  .page-cta a {
    flex: initial;
    width: 100%;
    height: 200px;
    padding: 24px;
    font-size: 18px;
    letter-spacing: .05em;
  }
  .page-cta a::after {
    top: 50%;
    right: 20px;
    transform: translate(0, -50%);
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .page-cta a h3 .ja {
    font-size: 22px;
    letter-spacing: .05em;
  }
  .page-cta a h3 .en {
    margin-top: 10px;
    font-size: 16px;
    letter-spacing: .05em;
  }
}