@charset "UTF-8";

.layout_page-title {
  background: url(images/guide-visual.png) no-repeat bottom center #8fd2e3;
  background-size: cover;
}

.page-title .small {
  font-size: 1.7rem;
}

/*
 ドメインとは？
 URL や メールアドレス の例
 */
.domain-sample {
  background-color: #f6f6f6;
  display: flex;
  font-weight: bold;
  margin-bottom: 2rem;
}

.domain-sample-box {
  text-align: center;
}

.domain-sample .url,
.domain-sample .mail {
  background: #fff;
  line-height: 2.2;
  padding: 1.5rem;
}

.domain-sample .url > span,
.domain-sample .mail > span {
  display: inline-block;
  text-align: left;
}

/*
  ドメインの選び方
  おすすめドメインの図
 */

.tld {
  display: flex;
  flex-wrap: wrap;
}

.tld-box {
  margin-top: 3rem;
}

.tld-box::before {
  background-color: #f0f0f0;
  border-radius: 50%;
  display: block;
  font-family: FontAwesome;
  font-size: 3rem;
  line-height: 5.7rem;
  text-align: center;
  width: 5.7rem;
}

.tld-box:nth-child(2n)::before {
  color: #00c8c8;
}

.tld-box:nth-child(2n+1)::before {
  color: #5bc2dc;
}

.tld-box.company::before {
  /* building */
  content: "\f1ad";
}

.tld-box.service::before {
  /* pencil */
  content: "\f040";
}

.tld-box.campaign::before {
  /* gift */
  content: "\f06b";
}

.tld-box.personal::before {
  /* coffee */
  content: "\f0f4";
}

.tld-box.event::before {
  /* comments */
  content: "\f086";
}

.tld-box.game::before {
  /* gamepad */
  content: "\f11b";
}

.tld-box .used-sites {
  font-weight: bold;
}

.tld-box .reccomended-domains {
  margin-top: 0.3rem;
}

.tld-box .reccomended-domains dt {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.tld-box .reccomended-domains a {
  border: 1px solid #00a0c9;
  border-radius: 3px;
  color: #00a0c9;
  display: inline-block;
  padding: 0 1rem;
  margin: 0.1rem;
}

.tld-box .reccomended-domains a:hover {
  background-color: #00a0c9;
  color: #fff;
}

.tld-button {
  margin: 4rem auto 0;
}

/*
  "短くシンプル" のBOX内の調整
 */
.box-simple p, .box-simple ul {
  margin-left: 1rem;
}

/* スマホ 幅が 0px - 599px */
@media screen and (max-width: 599px) {
  .page-title .small {
    display: block;
    margin-top: 0.5rem;
  }

  /*
   ドメインとは？
   URL や メールアドレス の例
   */
  .domain-sample {
    flex-direction: column;
    padding: 2rem 1.5rem;
  }

  .domain-sample .url,
  .domain-sample .mail {
    margin-top: 0.5rem;
  }

  .domain-sample .url {
    margin-bottom: 2rem;
  }

  /*
    ドメインの選び方
    おすすめドメインの図
   */

  .tld {
    justify-content: space-around;
  }

  .tld-box {
    flex-basis: 11rem;
    text-align: center;
  }

  .tld-box::before {
    margin: 0 auto 0.5rem;
  }
}

/* PC 幅が 600px 以上 */
@media screen and (min-width: 600px) {
  .page-title .small {
    margin-left: 1rem;
  }

  /*
   ドメインとは？
   URL や メールアドレス の例
   */
  .domain-sample {
    justify-content: space-around;
    padding: 2rem 7rem;
  }

  .domain-sample-box {
    flex-basis: 20rem;
  }

  .domain-sample .url,
  .domain-sample .mail {
    margin-top: 1rem;
  }

  /*
    ドメインの選び方
    おすすめドメインの図
   */

  .tld {
    justify-content: space-between;
  }

  .tld-box {
    flex-basis: 300px;
  }

  .tld-box::before {
    float: left;
    margin-right: 1rem;
  }

  .tld-button {
    width: 30rem;
  }
}