@charset "UTF-8";

/* ------------------------------
[MEMO]
- 単位指定について
px:  絶対値で指定するときに使用（PC表示の幅や高さ、配置等）
rem: 相対値で指定するときに使用（フォントサイズやpadding等）
remはhtmlのみのフォントサイズに基づいて計算されます。
------------------------------ */

/* 全ページ共通部分 START */

/* ----------------
HEADER
---------------- */

.layout_header {
  background-color: #464649;
  position: relative;
  z-index: 900;
}

.site-name {
  font-size: 1.4rem;
  padding: 0.6rem 1.2rem;
}

.site-name_link {
  color: #fff;
}

.global-navi-item_link {
  color: #fff;
  display: block;
}

/* スマホ 幅が 0px - 599px */
@media screen and (max-width: 599px) {
  /* SPメニュー 開閉ボタン */
  .global-navi_toggle-btn {
    height: 2rem;
    position: absolute;
    right: 0;
    top: 0.7rem;
    width: 3rem;
  }

  .global-navi_toggle-btn::after {
    color: #fff;
    content: "\f107";
    font-family: FontAwesome;
    font-size: 2rem;
    line-height: 2rem;
  }

  .is-open + .global-navi_toggle-btn::after {
    content: "\f106";
  }

  .layout_global-navi {
    max-height: 0;
    overflow-y: hidden;
    position: absolute;
    transition: all 300ms 0s linear;
    width: 100%;
    z-index: 99;
  }

  .layout_global-navi.is-open {
    max-height: 31rem;
  }

  /* SP メニュー */
  .global-navi-item_link {
    background-color: #6d6d6d;
    border-bottom: 1px solid #5a5a5a;
    box-sizing: border-box;
    font-size: 1.2rem;
    padding: 0.6rem 1.2rem;
    position: relative;
  }

  .global-navi-item_link::after {
    content: "\f105";
    font-family: FontAwesome;
    font-size: 1.2rem;
    position: absolute;
    right: 2rem;
    top: 0.4rem;
  }

  /* 子メニューを持つ親メニューのアイコン */
  .has-child > .global-navi-item_link::after {
    content: "\f055";
    font-family: FontAwesome;
    font-size: 1.2rem;
    position: absolute;
    right: 1.8rem;
    top: 0.5rem;
  }

  .has-child.is-open > .global-navi-item_link::after {
    content: "\f056";
  }

  /* SP 子メニュー */
  .global-navi-child {
    transition: all 300ms 0s linear;
    max-height: 0;
    overflow-y: hidden;
  }

  .has-child.is-open > .global-navi-child {
    max-height: 10rem;
  }

  .global-navi-child-item {
    background-color: #848484;
    border-bottom: 1px solid #5a5a5a;
  }

  .global-navi-child-item_link {
    box-sizing: border-box;
    color: #fff;
    display: block;
    font-size: 1.2rem;
    padding: 0.6rem 1.2rem 0.6rem 2rem;
    position: relative;
  }

  .global-navi-child-item_link::after {
    content: "\f105";
    font-family: FontAwesome;
    font-size: 1.2rem;
    position: absolute;
    right: 2rem;
    top: 0.4rem;
  }

  /* SPメニュー 閉じるボタン */
  .global-navi-close-btn {
    background-color: #2d2d2d;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    padding: 0.6rem 0;
  }

  .global-navi-close-btn::before {
    content: "\f00d";
    font-family: FontAwesome;
    margin-right: 0.5rem;
  }
}

/* PC 幅が 600px 以上 */
@media screen and (min-width: 600px) {
  .layout_header {
    height: 55px;
    min-width: 960px;
  }

  @supports (position: sticky) or (position: -webkit-sticky) {
    .layout_header {
      /* 追従 */
      position: -webkit-sticky;
      position: sticky;
      top: 0;
    }
  }

  .layout_header.js-is-sticky {
    /* sticky 未対応のブラウザ向けCSS */
    position: fixed;
    width: 100%;
    top: 0;
  }

  .layout_header.js-is-sticky + .layout_main::before {
    /* sticky 未対応のブラウザ向けCSS */
    background-color: #464649;
    content: "";
    display: block;
    height: 55px;
    position: static;
    width: 100%;
  }

  /* さくらのドメイン */
  .site-name {
    float: left;
    padding: 0;
    line-height: 55px;
  }

  .site-name_link {
    display: block;
  }

  /* メニュー */
  .global-navi {
    width: 680px;
    float: right;
    display: flex;
    justify-content: flex-start;
    font-size: 1rem;
  }

  .global-navi-item {
    flex-grow: 1;
    line-height: 55px;
    height: 55px;
    text-align: center;
  }

  .global-navi-item_link:hover {
    background-color: #616161;
  }

  /* 子メニューを持つ親メニュー */
  .global-navi-item.has-child {
    position: relative;
  }

  .global-navi-item.has-child:hover::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #fff;
    bottom: -5px;
    left: 77px;
    position: absolute;
    transform: rotate(-45deg);
  }

  /* 子メニュー */
  .global-navi-child {
    position: absolute;
    width: 100%;
    top: 55px;
    left: 0;
    background-color: #fff;
    display: block;
    transition: all 300ms 0s linear;
    max-height: 0;
    overflow-y: hidden;
  }

  .global-navi-item:hover .global-navi-child {
    max-height: 30rem;
  }

  .global-navi-child-item {
    text-align: left;
    border-right: 1px solid #d2d2d2;
    border-left: 1px solid #d2d2d2;
  }

  .global-navi-child-item:last-child {
    border-bottom: 1px solid #d2d2d2;
  }

  .global-navi-child-item_link {
    display: block;
    width: 100%;
    height: 100%;
    color: #2c2c2c;
    padding: 1rem;
    box-sizing: border-box;
    text-align: left;
  }

  .global-navi-child-item_link:hover {
    background-color: #f1f1f1;
  }

  .global-navi-close-btn {
    display: none;
  }
}

/* ----------------
FOOTER
---------------- */

.layout_footer {
  position: relative;
}

/*** 欲しいドメインを探そう & 検索窓 ***/
.footer-search_title {
  color: #fff;
  font-size: 2.3rem;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1rem;
  font-weight: normal;
}

.footer-search_form {
  display: flex;
  border-radius: 4px;
  box-shadow: 0 0.1px 1rem 0 rgba(0, 0, 0, 0.2);
}

.footer-search_form .input-domain {
  border: 0;
  border-radius: 4px 0 0 4px;
  font-size: 1.3rem;
  flex-grow: 1;
  flex-basis: 0; /* 幅を固定させるためにあえて入れておく */
  padding: 0 1rem;
  overflow: hidden;
}

.footer-search_form .submit {
  position: relative;
  height: 4rem;
  flex-basis: 5rem;
  cursor: pointer;
  background-color: #5bc2dc;
  border-radius: 0 4px 4px 0;
}

.footer-search_form .submit:hover {
  background-color: #6ac7df;
}

.footer-search_form .submit-text {
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.3rem;
  line-height: 4rem;
  left: 1rem;
  top: 0;
  position: absolute;
  white-space: nowrap;
}

.footer-search_form .submit-input {
  background: 0 0;
  border: none;
  cursor: pointer;
  color: #fff;
  display: block;
  font-size: 1rem;
  height: 100%;
  line-height: 1px;
  margin: 0;
  outline: 0;
  position: relative;
  padding: 0;
  text-indent: -1000px;
  width: 100%;
}

/* スマホ 幅が 0px - 599px */
@media screen and (max-width: 599px) {
  .layout_footer-search {
    background: url(../images/footer-search_back-image_sp.png) bottom left no-repeat;
    background-size: cover;
    padding: 3rem 1rem;
  }
}

/* PC 幅が 600px 以上 */
@media screen and (min-width: 600px) {
  .layout_footer-search {
    background: url(../images/footer-search_back-image_pc.png) bottom center no-repeat;
    background-size: cover;
    box-sizing: border-box;
    height: 245px;
    padding-top: 4rem;
  }

  .footer-search_title br {
    display: none;
  }

  .footer-search_form {
    width: 45rem;
    margin: 0 auto;
  }

  .footer-search_form .submit {
    height: 3.5rem;
    flex-basis: 7rem;
  }

  .footer-search_form .submit-text {
    left: 2rem;
  }
}

/*** さくらのドメイン ***/

.layout_footer-domain {
  background-color: #535356;
  border-bottom: 1px solid #646467;
  padding: 1rem 0;
}

.footer-domain_head {
  font-size: 1.1rem;
}

.footer-domain_head-link {
  color: #ddd;
}

.footer-domain_domain-names .domain-name {
  display: inline-block;
  margin: 0 1rem 0 0;
}

.footer-domain_domain-names .domain-name_link {
  color: #ddd;
  font-size: 1rem;
}

.footer-domain_domain-names .domain-name_link:hover {
  text-decoration: underline;
}

/* スマホ 幅が 0px - 599px */
@media screen and (max-width: 599px) {
  .footer-domain-inner {
    margin: 0 1rem;
  }

  .footer-domain_head {
    margin-bottom: 1rem;
  }
}

/* PC 幅が 600px 以上 */
@media screen and (min-width: 600px) {
  .footer-domain_head {
    float: left;
    margin: 0 2rem 0 0;
  }
}

/*** フッターメニュー ***/

.layout_footer-bottom {
  background-color: #535356;
}

.footer-bottom_menus {
  padding: 1rem 0;
}

.footer-bottom_menus .menu {
  display: inline-block;
}

.footer-bottom_menus .menu:not(:last-child) {
  border-right: 1px solid #ddd;
  margin: 0 1rem 0 0;
  padding: 0 1rem 0 0;
}

.footer-bottom_menus .menu_link {
  color: #ddd;
  font-size: 1rem;
}

.footer-bottom_menus .menu_link:hover {
  text-decoration: underline;
}

/* スマホ 幅が 0px - 599px */
@media screen and (max-width: 599px) {
  .footer-bottom-inner {
    margin: 0 1rem;
  }
}

/* ----------------
layout_btn-gototop
----------------- */
.layout_btn-gototop {
  display: none;
}

/* スマホ 幅が 0px - 599px */
@media screen and (max-width: 599px) {
  .layout_btn-gototop {
    bottom: 3.2rem;
    position: fixed;
    right: 1rem;
    text-align: center;
    z-index: 99;
  }

  .layout_btn-gototop .fa-angle-up {
    background-color: #2c2c2c;
    border-radius: 50%;
    color: #fff;
    font-size: 5rem;
    padding: 0 0.3rem 0.6rem;
    line-height: 3.2rem;
  }
}

/* PC 幅が 600px 以上 */
@media screen and (min-width: 600px) {
  .layout_btn-gototop {
    max-height: 0;
    overflow-y: hidden;
  }
}

/* ----------------
main
---------------- */

.layout_main {
  font-size: 1rem;
}

/* ----------------
SECTION
---------------- */

.section {
  padding: 0 1rem 6rem;
}

.section:first-of-type,
.section-border-bottom > .section {
  padding-top: 4rem;
}

.section-border-bottom > .section:not(:last-child) {
  border-bottom: 1px solid #ccc;
}

.section.section-attention {
  /* 各ドメインページの"ご利用上の注意"セクション */
  background: url(../images/background-image_gray-dot.png) repeat top left #fff;
  padding-top: 4rem;
}

.sub-section + .sub-section {
  margin-top: 3rem;
}

/* PC 幅が 600px 以上 */
@media screen and (min-width: 600px) {
  .section {
    padding-right: 0;
    padding-left: 0;
  }
}

/* ----------------
パンくずリスト
---------------- */

.layout_breadcrumbs {
  background-color: #535356;
  color: #ccc;
}

.breadcrumbs-item {
  display: inline-block;
  padding: 0.5rem 0;
}

.breadcrumbs-item:not(:last-child)::after {
  content: ">";
  margin: 0 0.5rem;
}

.breadcrumbs-item_link {
  color: inherit;
}

.breadcrumbs-item_link:hover {
  text-decoration: underline;
}

/* 全ページ共通部分 END */

/* --------
page-title
--------- */

.layout_page-title {
  padding: 3rem 1rem;
}

/* 各ドメインページ */

.layout_page-title.is-gray {
  background: url(../images/background-image_gray-dot2.png) repeat #fff;
}

.layout_page-title.jp-domain {
  background: url(../images/main-visual_gtld-domain.png) no-repeat top center #7bcee3;
}

.layout_page-title.gtld-domain {
  background: url(../images/main-visual_jp-domain.png) no-repeat top center #37d3d3;
}

.layout_page-title.jp-domain,
.layout_page-title.gtld-domain {
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 0 #adadad;
}

.layout_page-title.jp-domain .domain-name,
.layout_page-title.gtld-domain .domain-name {
  font-size: 2.5rem;
  letter-spacing: 0.1rem;
}

.layout_page-title.jp-domain .domain-name::before,
.layout_page-title.gtld-domain .domain-name::before {
  content: "";
  background: url(../images/svg/icon-glitter.svg) no-repeat 0 0;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  vertical-align: top;
}

.page-title {
  font-size: 2.1rem;
  line-height: 1.2;
  margin: 0 0 1.5rem;
  position: static;
}

.page-sub-title {
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 0;
}

/* PC 幅が 600px 以上 */
@media screen and (min-width: 600px) {
  .page-title {
    font-size: 2.3rem;
  }

  .layout_page-title {
    padding: 3rem 0;
  }

  .page-title-inner {
    width: 960px;
    margin: 0 auto;
  }
}

/* ----------------
ページタイトル内 アンカーリンク
------------------ */

.anchor-link-item {
  background-color: #fff;
  display: inline-block;
  margin: 0.5rem 0.5rem 0 0;
  vertical-align: bottom;
}

.anchor-link_link {
  border: 1px solid #fff;
  color: #00a0c9;
  display: block;
  font-size: 1.07rem;
  padding: 0.3rem 0.5rem;
}

.anchor-link_link:hover {
  border-color: #00a0c9;
}

/* ----------------
各ドメインページ
ページタイトル (メインビジュアル) 検索窓
------------------ */
.page-title-search {
  margin: 0 auto 1.5rem;
  text-shadow: none;
}

.page-title-search_form {
  display: flex;
  border-radius: 4px;
  border: 1px solid #c6c6cd;
}

.page-title-search_input-text {
  border: 0;
  border-radius: 4px 0 0 4px;
  font-size: 1.3rem;
  flex-grow: 1;
  flex-basis: 0; /* 幅を固定させるために入れておく */
  padding: 0 1rem;
  overflow: hidden;
  outline: 0;
}

.page-title-search_assigned-domain {
  background-color: #fff;
  color: #7a7a83;
  font-size: 1.3rem;
  line-height: 4rem;
  padding: 0 1rem 0 0;
}

.page-title-search_submit {
  position: relative;
  top: 0;
  right: 0;
  height: 4rem;
  flex-basis: 7rem;
  cursor: pointer;
  background-color: #f1f1f1;
  border-radius: 0 4px 4px 0;
}

.page-title-search_submit:hover {
  background-color: #e1e1e1;
}

.page-title-search_submit-text {
  color: #333;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.2rem;
  left: 2rem;
  letter-spacing: 0.3rem;
  top: 1.4rem;
  position: absolute;
  white-space: nowrap;
}

.page-title-search_input-submit {
  position: relative;
  height: 100%;
  width: 100%;
  cursor: pointer;
  outline: 0;
  background: 0 0;
  border: none;
  text-indent: -1000px;
}

/* PC 幅が 600px 以上 */
@media screen and (min-width: 600px) {
  .layout_page-title.jp-domain,
  .layout_page-title.gtld-domain {
    background-size: cover;
  }

  /* 検索窓 */
  .page-title-search {
    width: 44rem;
  }
}

/* --------------------
メインビジュアル直下のお知らせ
---------------------- */
.layout_main-news,
.layout_price-news {
  background-color: #f6f6f6;
}

.main-news-inner,
.price-news-inner {
  overflow: hidden;
  padding: 1rem 0;
}

.price-news-inner {
  padding: 0 0 1rem;
}

.main-news_head,
.price-news_head {
  background-color: #f1e30a;
  border-radius: 1rem;
  display: inline-block;
  float: left;
  font-size: 1rem;
  font-weight: normal;
  padding: 0.2rem 1rem;
  width: 4rem;
  margin-bottom: 0;
}

.price-news_head {
  background-color: #e1e1e1;
}

.main-news_info,
.price-news_info {
  display: flex;
  justify-content: flex-start;
  margin: 0.2rem 1rem 0 7rem;
}

.main-news_date {
  flex: 1;
}

.main-news_text {
  flex: 8;
}

.main-news_info-link,
.price-news_info-link {
  color: inherit;
}

.main-news_info:hover .main-news_info-link,
.price-news_info:hover .price-news_info-link {
  text-decoration: underline;
}

/* -------------
ご利用までの流れ フロー図
--------------- */

.flowing-box {
  padding: 1.7rem 0;
  position: relative;
}

.flowing-box:not(:last-child) {
  border-bottom: 1px solid #d5d5d5;
}

.flowing-box:not(:last-child)::after {
  /* 三角形 */
  background-color: #fff;
  border-bottom: 1px solid #d5d5d5;
  border-right: 1px solid #d5d5d5;
  bottom: -0.9rem;
  content: "";
  display: block;
  height: 1.5rem;
  left: 50%;
  margin: 0 0 0 -0.5rem;
  position: absolute;
  transform: skew(23deg) rotate(56deg);
  width: 1rem;
}

.flowing_head {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0 0 0.5rem;
}

.flowing_number {
  display: inline-block;
  background-color: #f1e30a;
  border-radius: 50%;
  width: 1.7rem;
  height: 1.7rem;
  margin: 0 1rem 0 0;
  text-align: center;
}

.flowing_description .text-link {
  display: inline-block;
  margin: 0.5rem 0 0;
}

/* PC 幅が 600px 以上 */
@media screen and (min-width: 600px) {
  .flowing-box {
    display: flex;
    align-items: center;
  }

  .flowing_head {
    align-items: center;
    min-width: 16rem;
    margin: 0 1rem 0 0;
  }

  .flowing_description {
    border-left: 1px solid #d5d5d5;
    padding-left: 2rem;
  }
}