:root {
  --main01-color: #4468e2;
  --bg01-color : #f2fdff;
}

.cms-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    color: #1a202c;
}

.cms-logo-icon {
    width: 15rem;
    height: 3rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #1e40af 0%, #0d9488 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.6rem;
}

.cms-logo-text {
    color: #1a202c;
    font-size: 1.6rem;
}


@media (max-width: 767px) {
  .cms-logo-icon {
    width: 13rem;
    height: 2.4rem;
    font-size: 1.4rem;
  }
  .cms-logo-text {
    font-size: 1.2rem;
  }
}

.cms-logo-text .highlight {
    color: #2563eb;
}

.heading01 {
  border-bottom: 3px solid #f2f2f2;
}

.heading01 span {
    display: inline-block;
    position: relative;
    padding: 0 .1em .3em;
    color: #333333;
}

.heading01 span::before {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #2589d0;
    content: '';
}

.text-popup {
  display: inline;
  background: linear-gradient(transparent 70%, #FFE84FFF 70%);
  background-repeat: no-repeat; 
  background-size: 100% 100%; 
  padding: 0 0.2em;
  line-height: 1.5; 
}

.text-red {
  color:#FF3300 !important;
}
.text-attention {
  color:#FF3300 !important;
  font-weight: bold !important;
}

.footer-title {
}
.footer-link {
  gap: 25px !important;
}
@media (max-width: 767px) {
  .footer-title {
    text-align: center;
  }
  .footer-link {
    gap: 20px !important;
    justify-content: center;
  }
}

.asterisk{
  padding:0;
  margin:0;
  padding-left: 1em;
  text-indent: -1em;
}
.asterisk::before {
  content: "※";
  margin-left: -1em;
}


.heading-01 {
  padding: .4em .7em;
  border-left: 8px solid #0d6efd;
  color: #333333;
}


/* Bootstrapボタン拡張：背景スライドアニメーション */
.btn-slide-bg {
  position: relative !important;
  overflow: hidden !important;
  z-index: 1;
  background-color: #0d6efd !important;
  border-color: #0d6efd !important;
  color: #ffffff !important;
  
  transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.15s ease-in-out !important;
}

.btn-slide-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: -1;
  
  transform: scaleX(0);
  transform-origin: left;
  
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-slide-bg:hover {
  color: #0d6efd !important;
  border-color: #0d6efd !important;
  opacity: 1 !important;
}

.btn-slide-bg.slide-color-warning {
  color:#333 !important;
  background-color: #ffc107 !important;
  border-color: #ffc107 !important;
}
.btn-slide-bg.slide-color-warning:hover {
  color: #ffc107 !important;
  border-color: #ffc107 !important;
}

.btn-slide-bg:hover::before {
  transform: scaleX(1);
}

.btn-slide-bg .btn-arrow {
  position: relative;
  z-index: 2;
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-slide-bg:hover .btn-arrow {
  transform: translateX(0.25rem);
}

.btn-slide-bg .btn-text {
  position: relative;
  z-index: 2;
}


.feature-lists {
  width: 88%;
  margin:0 auto;
  justify-content: space-between;
}
.feature-lists .feature-box {
  width: 31%;
  border: solid 1px #d6d6d6;
  border-radius: 10px;
  box-shadow: 4px 4px 8px #00000021;
  margin-bottom: 40px;
  padding: 30px;
  text-align: center;
}
.feature-lists .feature-box dd {
    text-align: left;
}

@media (max-width: 767px) {
  .feature-lists {
    flex-direction: column;
  }
  .feature-lists .feature-box {
    width: 100%;
    padding:18px;
  }
}

.bg-body-blue {
  background-color: var(--main01-color);
}
.bg-body-yellow {
  background-color:#fcdc02;
}
