@charset "UTF-8";
/* -----------------------------
プラン・フロー『sp』
-------------------------------- */
.button-container {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}

.button {
  border: 2px solid #FFBDBD;
  border-radius: 20px;
  padding: 10px 20px;
  margin: 0 10px;
  color: #000;
  text-decoration: none;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
}

.button:hover {
  background-color: #FFBDBD;
}

.campaign-title {
  margin-top: 40px;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}
.step-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px 20px 20px;
}
.plan-detail .campaign-title{
  margin-bottom: 40px;
}
.step {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin: 20px 0;
  padding: 20px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  position: relative;
}

.step:not(:last-child):after{
  display: inline-block;
  position: absolute;
  bottom: -2.3rem;
  left: 50%;
  content: "";
  width: 1rem;
  height: 1rem;
  border-top: 2px solid #514E4D;
  border-right: 2px solid #514E4D;
  transform: translateX(-50%) rotate(135deg)
}


.step h2 {
  margin-top: 0;
  color: #000;
}

.step img {
  width: 100%;
  border-radius: 10px;
}

.step h3 {
  margin: 15px 0 10px;
  color: #000;
}

.step p {
  color: #000;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: left;
}
/* 料金表CSS */

table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  table-layout: fixed;
  color: #000;
  border: 0;
}
table th {
  display: block;
  border-right: none;
  border-bottom: 5px solid #e95a5a;
  padding-bottom: .6em;
  margin-bottom: .6em;
}
table thead {
  border: none;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
table tr {
  display: block;
  margin-bottom: 2em;
  background-color: #fff;
  padding: .35em;
  border-bottom: 1px solid #bbb;
}
table td {
  border-bottom: 1px solid #bbb;
  display: block;
  font-size: .8em;
  text-align: right;
  position: relative;
  padding: .625em .625em .625em 4em;
  border-right: none;
}
table td::before {
  content: attr(data-label);
  font-weight: bold;
  position: absolute;
  left: 10px;
}
table td:last-child {
  border-bottom: 0;
}
tbody th {
  color: #e95a5a;
  text-align: left;
  font-size: 1.6rem;
}
.txt {
  text-align: left;
  font-size: 1.4rem;
  padding-left: 150px;
}
.price {
  text-align: right;
}




/* -----------------------------
プラン・フロー『pc』
-------------------------------- */
@media (min-width: 1025px) {

  main{
    margin-bottom: 70px;
  }

  .step-container {
    max-width: 1350PX;
    margin: 0 auto;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
.step{
  max-width: 300px;
}
  .step:not(:last-child):after{
    top: 50%;
    left: 307px;
    transform: translateX(50%) rotate(45deg)
  }



  table {
    border: 0;
    max-width: 1200px;
  }
  table th {
    display: table-cell;
    border-right: 1px solid #bbb;
    border-bottom: none;
    padding-bottom: 1em;
    margin-bottom: 0;
  }

  .times{
font-size: 2rem;
font-weight: bold;
  }
  table thead {
    border-bottom: 5px solid #e95a5a;
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    padding: 0;
    position: relative;
    width: auto;
  }
  table tr {
    display: table-row;
    margin-bottom: 0;
  }
  table td {
    border-bottom: none;
    display: table-cell;
    font-size: 1em;
    text-align: left;
    position: static;
    padding: 1em 10px 1em 1em;
    border-right: 1px solid #bbb;
  }
  table td::before {
    content: none;
  }
  table td:last-child {
    border-right: none;
  }
  .txt{
    padding-left: inherit;
  }
  table tr:last-child {
    border-bottom: none;
  }
}