
h2 + p{
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px){
  h2 + p{
    margin-bottom: 20px;
  }
}

.nayami .nayami-list{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 0;
  justify-content: space-around;
  margin-bottom: 2rem;
}
.nayami .nayami-list li{
  flex: 0 0 48%;
  display: flex;
  background-color: var(--bg-highlight);
  padding: 2rem;
  border-radius: 20px;
  gap: 10px;
  align-items: center;
  font-weight: 600;
}
.nayami .nayami-list li .num{
  color: var(--color-primary);
  font-family: var(--font-family-en);
  font-weight: 700;
  font-size: 2rem;
}
.nayami p{
  text-align: center;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.button-wrapper .btn01{
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .nayami .nayami-list li{
    flex: 0 0 100%;
    padding: 1rem;
  }
}
.strength-list{
  list-style: none;
  margin:0 auto 2rem;
  padding: 0;
  width: 80%;
}
.strength-list li{
  display: grid;
  grid-template-columns: 35% 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: 
    "img title"
    "img txt";
  align-items: start;
  gap: 1.5rem 5rem;
}
.strength-list li:nth-child(odd){
  grid-template-columns: 1fr 35%;
  grid-template-areas: 
    "title img"
    "txt img";
}
.strength-list li:not(:last-child){
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}
.strength-list li .stregnth-list__img{
  grid-area: img;
}
.strength-list li .stregnth-list__img img{
  border-radius: 20px;
}
.strength-list li .stregnth-list__title{
  grid-area: title;
}
.strength-list li .stregnth-list__txt{
  grid-area: txt;
}
.strength-list li .stregnth-list__title{
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.strength-list li .stregnth-list__title .no{
  font-size: 2rem;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  flex-shrink: 0;
}
.strength-list li .stregnth-list__txt p{
  text-align: left;
}
@media screen and (max-width: 767px){
  .strength-list{
    width: 100%;
  }
  .strength-list li{
    grid-template-columns: 90px 1fr;
    grid-template-areas: 
    "img title"
    "txt txt";
    gap: 0.5rem;
    align-items: center;
  }
  .strength-list li:nth-child(odd){
    grid-template-columns: 90px 1fr;
    grid-template-areas: 
      "img title"
      "txt txt";
  }
  .strength-list li .stregnth-list__title{
    font-size: 1.2rem;
  }
  .strength-list li .stregnth-list__title .no{
    display: none;
  }
  .strength-list li .stregnth-list__img img{
    border-radius: 10px;
  }
  .strength-list li:not(:last-child){
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
}
.case .case-list{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.case .case-list .accordion{
  width: calc(50% - 1rem);
}
.case .case-list .accordionTrigger {
  cursor: pointer;
  position: relative;
  background-color: #fff;
  padding: 0.5rem 3rem 0.5rem 1rem  ;
  margin-bottom: 10px;
  border-radius: 10px;
  background-color: var(--bg-highlight);
}
.case .case-list .accordionTrigger span{
  font-weight: 700;
  font-size: clamp(1rem, 0.865rem + 0.62vw, 1.25rem);
  display: block;
}
.case .case-list .accordionTrigger .icon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  width: 16px;
  height: 16px;
  margin: auto;
}
.case .case-list .accordionTrigger .icon::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 2px;
  height: 16px;
  background-color: var(--color-primary);
  margin: auto;
  transition: all 0.2s;
}
.case .case-list .accordionTrigger .icon::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 16px;
  height: 2px;
  background-color: var(--color-primary);
  margin: auto;
  transition: all 0.2s;
}
.case .case-list .accordionContent {
  display: none;
  padding: 12px 24px;
}
.case .case-list .accordion.open .accordionContent {
  display: block;
}
.case .case-list .accordion.open .accordionTrigger::after {
  top: 0.5em;
  transform: rotate(-180deg);
}
.case .case-list .accordion.open .accordionTrigger .icon::before {
  opacity: 0;
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .case .case-list{
    flex-direction: column;
  }
  .case .case-list .accordion{
    width: 100%;
  }
  .case .case-list .accordionTrigger {
    padding: 0.5rem 2rem 0.5rem 1rem;
  }
  .case .case-list .accordionTrigger .icon {
    right: 10px;
  }
  .case .case-list .accordionContent {
    padding: 0 5px 10px;
  }
}

.flow .flow-list{
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.flow .flow-list .flow-item{
  padding-bottom: 2rem;
  padding-left: 5.5rem;
  position: relative;
}
.flow .flow-list .flow-item:not(:last-child)::before{
  content: '';
  position: absolute;
  left: 35px;
  top: 80px;
  width: 1px;
  height: calc(100% - 90px);
  background-color: var(--color-primary);
}
.flow .flow-list .flow-item .flow-no{
  position: absolute;
  left: 0;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 700;
  font-family: var(--font-family-en);
}
.flow .flow-list .flow-item .flow-no .step{
  font-size: 0.8rem;
  display: block;
  line-height: 1;
}
.flow .flow-list .flow-item .flow-no .no{
  font-size: 2rem;
  line-height: 1;
}
.flow .flow-list .flow-item h3{
  font-weight: 700;
  padding: 1.1rem 0;
}
.flow .flow-list .flow-item .flow-item__content ul{
  padding-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .flow .flow-list .flow-item{
    padding-left: 3.5rem;
    padding-bottom: 0;
  }
  .flow .flow-list .flow-item:not(:last-child){
    padding-bottom: 1rem;
  }
  .flow .flow-list .flow-item .flow-no{
    width: 50px;
    height: 50px;
  }
  .flow .flow-list .flow-item .flow-no .step{
    font-size: 0.6rem;
  }
  .flow .flow-list .flow-item .flow-no .no{
    font-size: 1.5rem;
  }
  .flow .flow-list .flow-item h3{
    height: 50px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
  }
  .flow .flow-list .flow-item:not(:last-child)::before{
    left: 25px;
    top: 60px;
    height: calc(100% - 70px);
  }
}