@charset "UTF-8";

/* --------------------
 ドメインの仮登録について
 --------------------- */

.section-temporary-registration {
  background-color: #f2f7f7;
  border-bottom: 1px solid #d5d5d5;
  padding-bottom: 4rem;
  padding-top: 4rem;
}

.head-group {
  display: flex;
  flex-direction: column;
}

.head-group .section-title {
  order: 2;
}

.head-group .section-sub-title {
  font-weight: normal;
  margin: 0 0 0.5rem;
  text-align: center;
  order: 1;
}

.head-group .section-sub-title .strong {
  background: linear-gradient(transparent 50%, #ffeb99 50%);
  color: #5bc2dc;
  font-size: 1.6rem;
  font-weight: bold;
}

/* ドメインの仮登録について フロー図 */
.temporary-registration-flowing {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-top: 2rem;
  text-align: center;
}

.temporary-registration-flowing_child {
  display: flex;
  flex-direction: row;
  margin: 2rem 0;
}

.temporary-registration-flowing_box {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  justify-content: space-around;
  align-items: center;
}

.temporary-registration-flowing_box.angle-before::before,
.temporary-registration-flowing_box.angle-after::after {
  /* >マーク */
  content: "\f105";
  font-family: FontAwesome;
  margin: 0 1rem;
  font-size: 3rem;
  color: #ccc;
}

.temporary-registration-flowing_keyword {
  display: flex;
  flex-direction: column;
}

.temporary-registration-flowing_keyword::before {
  color: #fc6f65;
  font-family: FontAwesome;
  font-size: 2rem;
  margin: 0 0 1rem;
}

.icon-search::before {
  /* 虫眼鏡 */
  content: "\f002";
}

.icon-card::before {
  /* クレジットカード */
  content: "\f09d";
}

.icon-document::before {
  /* ドキュメント */
  content: "\f0f6";
}

.icon-mail::before {
  /* メール */
  content: "\f003";
}

.temporary-registration-flowing_belt {
  display: block;
  line-height: 2rem;
  min-width: 4rem;
  padding: 0 1rem 0 2rem;
}

/* 三角形下部 */
.temporary-registration-flowing_belt::after {
  content: "";
  display: block;
  height: 1rem;
  margin-left: auto;
  margin-right: -1.4rem;
  margin-top: -1rem;
  position: relative;
  transform: skew(-30deg);
  -o-transform: skew(-30deg);
  -ms-transform: skew(-30deg);
  -moz-transform: skew(-30deg);
  -webkit-transform: skew(-30deg);
  width: 1rem;
}

/* 三角形上部 */
.temporary-registration-flowing_belt::before {
  content: "";
  display: block;
  height: 1rem;
  margin-bottom: -1rem;
  margin-left: auto;
  margin-right: -1.4rem;
  transform: skew(30deg);
  -o-transform: skew(30deg);
  -ms-transform: skew(30deg);
  -moz-transform: skew(30deg);
  -webkit-transform: skew(30deg);
  width: 1rem;
}

.flowing:nth-child(1) .temporary-registration-flowing_belt,
.flowing:nth-child(1) .temporary-registration-flowing_belt::after,
.flowing:nth-child(1) .temporary-registration-flowing_belt::before {
  /* 仮登録でドメイン申請 色指定 */
  background-color: #dbeff4;
}

.flowing:nth-child(2) .temporary-registration-flowing_belt,
.flowing:nth-child(2) .temporary-registration-flowing_belt::after,
.flowing:nth-child(2) .temporary-registration-flowing_belt::before {
  /* 仮登録期間6ヶ月 色指定 */
  background-color: #c1e5ee;
}

.flowing:nth-child(3) .temporary-registration-flowing_belt {
  /* 本登録 色指定 */
  background-color: #99d8e8;
}

/* スマホ 幅が 0px - 599px */
@media screen and (max-width: 599px) {
  .flowing:nth-child(1) {
    /* 仮登録でドメイン申請 */
    width: 100%;
  }

  .flowing:nth-child(2) {
    /* 仮登録期間6ヶ月 */
    width: 60%;
  }

  .flowing:nth-child(3) {
    /* 本登録 */
    width: 40%;
  }

  .temporary-registration-flowing_child {
    justify-content: space-around;
    flex-grow: 1;
  }

  .flowing:nth-child(2) .temporary-registration-flowing_box.angle-before::before {
    /* 仮登録期間6ヶ月 左の>を非表示 */
    content: none;
  }
}

/* PC 幅が 600px 以上 */
@media screen and (min-width: 600px) {
  .flowing {
    flex-grow: 1;
  }

  .temporary-registration-flowing_box.angle-before::before,
  .temporary-registration-flowing_box.angle-after::after {
    /* >マーク */
    margin: 0 2rem;
  }

  .temporary-registration-flowing_keyword::before {
    font-size: 3rem;
  }

  .flowing:nth-child(2) .temporary-registration-flowing_keyword,
  .flowing:nth-child(3) .temporary-registration-flowing_keyword {
    /* 上下の位置を揃えるためにマージンで微調整 */
    margin: 1rem 0 0;
  }
}