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

  ordermaid
  
----------------------------------------------------------------------------------------------------*/
#ordermaid.l-ct-main {
  margin-bottom: 0;
}
#ordermaid .catch {
  text-align: center;
  margin-bottom: 40px;
}

/* flow */
#ordermaid .flow {
  list-style: none;
}
#ordermaid .flow-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
#ordermaid .flow-item:not(:last-child) {
  padding-bottom: 60px;
  margin-bottom: 24px;
  background-image: url(../image/flow-allow.png);
  background-repeat: no-repeat;
  background-position: bottom center;
}
#ordermaid .flow-item-img {
  width: 280px;
  aspect-ratio: 4 / 3;
}
#ordermaid .flow-item-text {
  width: calc(100% - 280px);
}
#ordermaid .flow-item-text h3 {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}
#ordermaid .flow-item-text h3 .number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  background-color: rgba(var(--bcolor-3),1);
  border-radius: 1em;
  margin-right: .5em;
  color: rgba(var(--bcolor-5),1);
  line-height: 1;
}
#ordermaid .flow-item-text p {
  margin-top: 1em;
}
@media (max-width:700px) {
  #ordermaid .flow-item-img {
    width: 140px;
  }
  #ordermaid .flow-item-text {
    width: calc(100% - 140px);
  }
  #ordermaid .flow-item-text h3 {
    font-size: 22px;
  }
}
@media (max-width:600px) {
  #ordermaid .flow-item {
    flex-wrap: wrap;
    justify-content: center;
  }
  #ordermaid .flow-item-img {
    width: 280px;
  }
  #ordermaid .flow-item-text {
    width: 100%;
  }
}

/* cta */
#ordermaid #cta {
  background-color: rgba(var(--bcolor-6),1);
  padding: var(--block-space-l) 0;
  margin-top: 84px;
  text-align: center;
  color: #031f47;
}
#ordermaid #cta strong {
  display: block;
  font-size: 30px;
  text-align: center;
  margin-bottom: 1rem;
}
#ordermaid #cta strong span {
  border-bottom: 3px solid #031f47;
}
#ordermaid #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;
}
#ordermaid #cta .tel img {
  display: inline-block;
}
@media (max-width:600px) {
  #ordermaid #cta strong {
    font-size: 27px;
  }
  #ordermaid #cta .tel {
    font-size: 39px;
    gap: 10px;
  }
  #ordermaid #cta .tel img {
    max-width: 40px;
    width: 100%;
    height: auto;
  }
}