@charset "UTF-8";

/* thanks1.php */

.brake {
  display: none;
}

.contents {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}

h1 {
  background-color: var(--corporate-color);
  font-size: 30px;
  line-height: 1.4;
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin: 30px 0;
  padding: 10px 0;
}

.flow__group {
  display: flex;
  justify-content: space-around;
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}

.flow__item {
  display: -webkit-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: calc(84% / 3);
  height: 40px;
  background-color: #ddd;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  font-weight: 600;
}

.flow__item::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent #ddd;
  position: absolute;
  top: 0%;
  right: -20px;
}

.flow__item.current {
  background-color: var(--corporate-color);
}

.flow__item.current::after {
  border-color: transparent transparent transparent var(--corporate-color);
}

.flow__item:last-child::after {
  content: none;
}

.Header__thanks-group {
  box-shadow: 0px -1px 0px 0px #e5e5e5 inset;
  text-align: center;
  padding: 10px 0;
}

.Header__thanks-group img {
  width: 10%;
}

.brake {
  display: none;
}

.thanks .hd_contents {
  font-size: 16px;
  text-align: center;
  padding: 30px;
}

.thanks .hd_contents h2 {
  font-size: 30px;
  font-weight: 700;
}

.thanks .hd_contents a {
  display: block;
}

.mailto_link {
  margin: 10px 0;
}

.mailto_link a {
  color: var(--corporate-color);
  text-decoration: underline;
}

.category_btn {
  text-align: center;
}

.category_btn-inner {
  display: inline-block;
  max-width: 480px;
  width: 100%;
}

.category_link {
  position: relative;
  display: block;
  background-color: var(--corporate-color);
  border: solid 1px var(--corporate-color);
  border-radius: 6px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  padding: 10px 0;
  transition: background-color 0.5s, color 0.5s;
}

.category_link:hover {
  background-color: #fff;
  color: var(--corporate-color);
}

.category_link::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(255, 255, 255, 1);
  border-right: 2px solid rgba(255, 255, 255, 1);
  transform: translateY(-50%) rotate(45deg);
  transition: border 0.5s;
}

.category_link:hover::after {
  border-top: 2px solid var(--corporate-color);
  border-right: 2px solid var(--corporate-color);
}

/* タブレット */
@media screen and (max-width: 750px) {
  h1 {
    font-size: 26px;
  }

  .flow__item {
    font-size: 14px;
  }

  .category_link {
    font-size: 16px;
  }
}

/* スマホ */
@media screen and (max-width: 480px) {
  .brake {
    display: block;
  }

  h1 {
    font-size: 22px;
  }

  .flow__item {
    width: calc(80% / 3);
    font-size: 12px;
  }

  .txt {
    font-size: 14px;
  }
}