@charset "UTF-8";
/*******************************
// reCAPTCHA badge
********************************/
.is-recaptcha-hidden .grecaptcha-badge {
  visibility: hidden !important;
}

/*******************************
// Reset (style.css 上書き用)
********************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul,
ol,
li,
pre,
fieldset,
legend,
button,
input,
select,
textarea {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}

html,
body {
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  color: #333333;
  font-family: YuGothic, "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, MS PGothic, -apple-system, BlinkMacSystemFont, sans-serif;
}

.post,
.page {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

ul,
ol {
  list-style: none;
}

img,
svg,
video,
canvas,
iframe {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

a:visited,
a:active,
a:focus {
  color: inherit;
}

button {
  background-color: transparent;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  cursor: pointer;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.pc,
.pc-only {
  display: block;
}

@media screen and (max-width: 767px) {
  .pc,
  .pc-only {
    display: none;
  }
}
.sp,
.sp-only {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp,
  .sp-only {
    display: block;
  }
}
a {
  transition: 0.6s;
  opacity: 1;
}

@media (hover: hover) {
  a:hover {
    opacity: 0.6;
  }
}

/*******************************
// 共通インナー（ヘッダー・フッターと同じ幅）
********************************/
.c-inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-inner {
    max-width: 1500px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/*******************************
// 共通セクションラベル（ドット付き）
// 使い方:
//   <p class="c-section-label"><span class="c-section-label__dot" aria-hidden="true"></span>Entry</p>
//   背景が濃い色の場合は .c-section-label--white で白文字に
********************************/
.c-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #F01C3D;
}
@media screen and (min-width: 768px) {
  .c-section-label {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-section-label {
    font-size: 14px;
  }
}
.c-section-label--white {
  color: #ffffff;
}
.c-section-label__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url("../img/home/section-label_img.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/*******************************
// 共通セクション見出し
// 使い方:
//   <h2 class="c-section-heading">見出しテキスト</h2>
********************************/
.c-section-heading {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .c-section-heading {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-section-heading {
    margin-bottom: 15px;
    font-size: 28px;
    letter-spacing: 0.03em;
  }
}

/*******************************
// 共通 CTA ボタン
// 使い方:
//   <a class="c-cta-btn" href="...">
//     <span>テキスト</span>
//     <i class="c-cta-btn__arrow" aria-hidden="true"></i>
//   </a>
********************************/
.c-cta-btn {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: max-content;
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  gap: 30px;
  background-color: #F01C3D;
  border-top: 1px solid #F01C3D;
  border-right: 1px solid #F01C3D;
  border-bottom: 1px solid #F01C3D;
  border-left: 1px solid #F01C3D;
  border-radius: 10px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-cta-btn {
    width: 100%;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    letter-spacing: 0;
    white-space: normal;
    line-height: 1.4;
  }
  .c-cta-btn > span {
    text-align: left;
  }
}
.c-cta-btn, .c-cta-btn:visited, .c-cta-btn:active, .c-cta-btn:focus {
  color: #ffffff;
}
.c-cta-btn:hover {
  background-color: #ffffff;
  color: #F01C3D;
  opacity: 1;
}
.c-cta-btn:hover .c-cta-btn__arrow {
  background-color: #F01C3D;
}
.c-cta-btn:hover .c-cta-btn__arrow::before {
  background-image: url("../img/base/common_cta_arrw_hover.svg");
}
.c-cta-btn__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background-color: #ffffff;
  border-radius: 5px;
  font-style: normal;
  transition: background-color 0.3s ease, background-image 0.3s ease;
}
.c-cta-btn__arrow::before {
  content: "";
  width: 13px;
  height: 6px;
  background-image: url("../img/base/common_cta_arrw.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: background-image 0.3s ease;
}

/*******************************
// header
********************************/
.l-header {
  width: 100%;
  background-color: #ffffff;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.l-header.is-fixed {
  position: fixed;
  animation: lHeaderSlideDown 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.l-header__inner {
  box-sizing: content-box;
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .l-header__inner {
    max-width: 1024px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 30px;
    padding-left: 30px;
    gap: clamp(10px, 1.5vw, 30px);
  }
}
@media screen and (max-width: 1023px) {
  .l-header__inner {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.l-header__brand {
  display: flex;
  align-items: center;
  gap: 15px;
  color: inherit;
  text-decoration: none;
}
.l-header__logo-img {
  width: auto;
  height: auto;
  line-height: 0;
}

@keyframes lHeaderSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
/*******************************
// footer
********************************/
.l-footer {
  width: 100%;
  background-color: #ffffff;
  color: #333333;
}
.l-footer a {
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .l-footer a:hover {
    color: #F01C3D;
    opacity: 1;
  }
}
.l-footer__inner {
  box-sizing: content-box;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media screen and (min-width: 768px) {
  .l-footer__inner {
    max-width: 1024px;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__inner {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__inner {
    padding-top: 40px;
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.l-footer__nav {
  display: flex;
}
@media screen and (min-width: 1024px) {
  .l-footer__nav {
    gap: 0;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__nav {
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__nav-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__nav-main {
    width: 100%;
  }
}
.l-footer__col {
  min-width: 0;
  width: max-content;
  margin-top: 25px;
}
@media screen and (max-width: 1023px) {
  .l-footer__col {
    width: 100%;
    position: relative;
    margin-top: 0;
    border-bottom: 1px solid #d4d4d4;
  }
}
.l-footer__col--brand {
  margin-top: 0;
}
@media screen and (min-width: 1024px) {
  .l-footer__col--brand {
    flex: 0 0 auto;
    width: clamp(200px, 19vw, 270px);
    margin-right: clamp(30px, 1.1vw, 80px);
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__col--brand {
    padding-top: 0;
    padding-bottom: 0;
    border-top: 0;
    border-bottom: 0;
  }
}
.l-footer__nav-list {
  list-style: none;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
@media screen and (min-width: 1024px) {
  .l-footer__nav-list {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(4, auto);
    column-gap: 60px;
    row-gap: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__nav-item {
    min-width: 0;
    width: max-content;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__nav-item {
    position: relative;
    border-bottom: 1px solid #d4d4d4;
  }
}
.l-footer__nav-link {
  display: inline-block;
  color: #333333;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (min-width: 1024px) {
  .l-footer__nav-link {
    font-size: 16px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__nav-link {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 16px;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav-link {
    flex-grow: 1;
  }
}
.l-footer__external {
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .l-footer__external {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__external {
    gap: 15px;
  }
}
.l-footer__external li {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  color: #333333;
}
.l-footer__external a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
  font-size: 14px;
}
.l-footer__external a::after {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  background-image: url("../img/base/footerlinkarrw.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.l-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid #d4d4d4;
}
@media screen and (max-width: 1023px) {
  .l-footer__bottom {
    border-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-top: 0;
  }
}
.l-footer__logo {
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 0;
}
.l-footer__logo a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .l-footer__logo img {
    width: clamp(180px, 18vw, 270px);
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__logo-img--pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__logo-img--sp {
    display: none;
  }
}
.l-footer__company-info {
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .l-footer__company-info {
    font-size: clamp(12px, 1vw, 14px);
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__company-info {
    font-size: 14px;
  }
}
.l-footer__company-name {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .l-footer__company-name {
    font-size: clamp(12px, 1vw, 14px);
  }
}
.l-footer__address {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-style: normal;
  line-height: 1.8;
}
@media screen and (min-width: 1024px) {
  .l-footer__address {
    font-size: clamp(12px, 1vw, 14px);
  }
}
.l-footer__copyright {
  flex-shrink: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 11px;
  color: #333333;
}
.l-footer__copyright small {
  font-size: inherit;
}
.l-footer__to-top {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 800;
}
@media screen and (min-width: 768px) {
  .l-footer__to-top {
    right: 30px;
    bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__to-top {
    right: 15px;
    bottom: 15px;
  }
}
.l-footer__to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.l-footer__to-top::before {
  content: "";
  width: 16px;
  height: 13px;
  background-image: url("../img/base/backarrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.l-footer__to-top:hover {
  opacity: 1;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/*******************************
// Entry CTA (global, placed above footer)
********************************/
.c-entry-cta {
  width: 100%;
  background-color: #FFEEF1;
  padding-top: 30px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .c-entry-cta {
    padding-top: 100px;
    padding-bottom: 120px;
  }
}
.c-entry-cta__inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-entry-cta__inner {
    max-width: 1500px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-entry-cta__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.c-entry-cta__card {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 20px;
  background-color: #F01C3D;
  background-repeat: no-repeat;
  color: #ffffff;
  padding-top: 40px;
  padding-right: 25px;
  padding-bottom: 40px;
  padding-left: 35%;
}
@media screen and (min-width: 768px) {
  .c-entry-cta__card {
    background-image: url("../img/base/c-entry-cta-bg-pc.png");
    background-position: left center;
    background-size: contain;
    padding-top: clamp(40px, 5vw, 50px);
    padding-right: clamp(40px, 5vw, 70px);
    padding-bottom: clamp(40px, 5vw, 50px);
    padding-left: clamp(20%, 26vw, 30%);
    border-radius: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-entry-cta__card {
    background-image: url("../img/base/c-entry-cta-bg_sp.png");
    background-size: contain;
    background-position: left bottom;
    padding-top: 30px;
    padding-right: 20px;
    padding-bottom: 150px;
    padding-left: 20px;
  }
}
.c-entry-cta__content {
  position: relative;
  display: flex;
  flex-direction: column;
}
.c-entry-cta__top {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 20px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media screen and (min-width: 768px) {
  .c-entry-cta__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .c-entry-cta__top {
    gap: 20px;
    padding-bottom: 25px;
  }
}
.c-entry-cta__copy {
  flex-grow: 1;
}
.c-entry-cta__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .c-entry-cta__label {
    margin-bottom: 20px;
  }
}
.c-entry-cta__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #F01C3D;
}
.c-entry-cta__headline {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .c-entry-cta__headline {
    font-size: clamp(18px, 1.9vw, 26px);
  }
}
@media screen and (max-width: 767px) {
  .c-entry-cta__headline {
    font-size: 24px;
  }
}
.c-entry-cta__sub {
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .c-entry-cta__sub {
    margin-top: 20px;
    font-size: 19px;
  }
}
@media screen and (max-width: 767px) {
  .c-entry-cta__sub {
    font-size: 15px;
    margin-top: 10px;
  }
}
.c-entry-cta__buttons {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .c-entry-cta__buttons {
    width: 280px;
  }
}
@media screen and (max-width: 767px) {
  .c-entry-cta__buttons {
    gap: 15px;
  }
}
.c-entry-cta__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  height: 55px;
  padding-top: 0;
  padding-right: 10px;
  padding-bottom: 0;
  padding-left: 25px;
  background-color: #ffffff;
  color: #F01C3D;
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-left: 1px solid transparent;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.02em;
  text-decoration: none;
  opacity: 1;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-entry-cta__btn {
    height: 60px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .c-entry-cta__btn {
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 16px;
    border-radius: 8px;
  }
}
.c-entry-cta__btn, .c-entry-cta__btn:visited, .c-entry-cta__btn:active, .c-entry-cta__btn:focus {
  color: #F01C3D;
}
.c-entry-cta__btn:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
  opacity: 1;
}
.c-entry-cta__arrow {
  flex-shrink: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  background-color: #F01C3D;
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-left: 1px solid transparent;
  border-radius: 5px;
  background-image: url("../img/base/common_cta_arrw_hover.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 6px;
  transition: background-color 0.3s ease, background-image 0.3s ease, border-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-entry-cta__arrow {
    width: 24px;
    height: 24px;
  }
}
.c-entry-cta__btn:hover .c-entry-cta__arrow {
  background-color: #ffffff;
  background-image: url("../img/base/common_cta_arrw.svg");
}
.c-entry-cta__bottom {
  display: flex;
  gap: 15px;
}
@media screen and (min-width: 1200px) {
  .c-entry-cta__bottom {
    align-items: center;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .c-entry-cta__bottom {
    flex-direction: column;
  }
}
.c-entry-cta__note {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .c-entry-cta__note {
    font-size: clamp(12px, 1vw, 14px);
  }
}
@media screen and (min-width: 1200px) {
  .c-entry-cta__note {
    flex-shrink: 0;
  }
}
.c-entry-cta__links {
  list-style: none;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media screen and (min-width: 1200px) {
  .c-entry-cta__links {
    align-items: center;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-entry-cta__links {
    flex-direction: column;
    margin-left: 0;
  }
}
.c-entry-cta__links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .c-entry-cta__links a {
    font-size: clamp(12px, 1vw, 14px);
  }
}
.c-entry-cta__links a, .c-entry-cta__links a:visited, .c-entry-cta__links a:active, .c-entry-cta__links a:focus {
  color: #ffffff;
}
.c-entry-cta__links a:hover {
  opacity: 0.8;
}
.c-entry-cta__link-arrow {
  flex-shrink: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 5px;
  background-image: url("../img/base/common_cta_arrw.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 6px;
}

/*******************************
// c-entry-cta__arrow を含む <a> ホバー時に色反転
// 通常: 青背景 + 白矢印 / ホバー: 白背景 + 青矢印（c-cta-btn__arrow と同色）
********************************/
a:hover .c-entry-cta__arrow {
  background-color: #ffffff;
  background-image: url("../img/base/common_cta_arrw.svg");
  border-top-color: #F01C3D;
  border-right-color: #F01C3D;
  border-bottom-color: #F01C3D;
  border-left-color: #F01C3D;
}
