﻿/*----------------------------------------------------------------------------------------------------

  preparation
  
----------------------------------------------------------------------------------------------------*/

.plan-image {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.plan-image a {
  width: calc(50% - 12px);
}

@media screen and (max-width:700px) {
  .plan-image a {
    width: 100%;
    margin-bottom: 20px;
  }
}

/* cta */
#cta {
  background-color: rgba(var(--bcolor-6),1);
  padding: var(--block-space-l) 0;
  margin-top: 84px;
  text-align: center;
  color: #031f47;
}
#cta strong {
  display: block;
  font-size: 30px;
  text-align: center;
  margin-bottom: 1rem;
}
#cta strong span {
  border-bottom: 3px solid #031f47;
}
#cta .tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 60px;
  font-weight: bold;
  text-decoration: none;
  line-height: 1;
  margin-bottom: 18px;
  color: inherit;
}
#cta .tel img {
  display: inline-block;
}
@media (max-width:600px) {
  #cta strong {
    font-size: 27px;
  }
  #cta .tel {
    font-size: 39px;
    gap: 10px;
  }
  #cta .tel img {
    max-width: 40px;
    width: 100%;
    height: auto;
  }
}