﻿@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato&family=Noto+Sans+JP:wght@400;700&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-style: 16px;
  color: #333;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

body.bg-gray {
  background: #F4F4F4;
}

a {
  text-decoration: none;
  color: #0062C1;
}

a[target=_blank] {
  padding-right: 20px;
  background: url(../img/icon_external_k.png) right center/14px auto no-repeat;
}
a[target=_blank]:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

.txt-note {
  font-size: 12px;
}

section {
  padding: 80px 0;
}
section.bg-blue {
  background: #DEEDF8;
}

.container {
  width: 95%;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
}

#wrapper {
  display: flex;
  width: 100%;
  margin: 0 auto;
}
#wrapper main {
  flex: 1;
  margin: 0;
  padding: 0;
}

#wrapper-two {
  display: flex;
  width: 95%;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
}
#wrapper-two main {
  flex: 1;
  margin: 0;
  padding: 0;
}
#wrapper-two main section {
  padding: 40px 0;
}

label {
  display: block;
}

input {
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #959595;
  box-sizing: border-box;
}

input:user-invalid {
  border-color: #C1272D;
  box-shadow: none;
}

.error-message {
  font-size: 14px;
  color: #C1272D;
  display: none;
  margin: 8px 0 0;
}

.error {
    font-size: 14px;
    color: #C1272D;
    margin: 8px 0 0;
}

.error-big {
    font-size: 20px;
    color: #C1272D;
    margin: 8px 0 0;
}

input:user-invalid + .error-message {
  display: block;
}

::-moz-placeholder {
  color: #959595;
}

::placeholder {
  color: #959595;
}

.checkboxinput {
  padding: 12px 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 210px;
  margin: 0 auto;
}

.checkboxinput-input {
  margin: 0;
  width: 0;
  opacity: 0;
}

.checkboxinput:hover {
  background: rgba(0, 0, 0, 0.05) !important;
}

.checkboxinput-input:focus + .checkboxinput-dummyinput {
  border: dashed 2px #959595;
}

.checkboxinput-input:checked + .checkboxinput-dummyinput {
  background: #333333;
}

.checkboxinput-input:checked + .checkboxinput-dummyinput::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  height: 4px;
  border-radius: 2px;
  transform: translate(-6px, 5px) rotateZ(-135deg);
  transform-origin: 2px 2px;
  background: #fff;
}

.checkboxinput-input:checked + .checkboxinput-dummyinput::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 76%;
  height: 4px;
  border-radius: 2px;
  transform: translate(-6px, 5px) rotateZ(-45deg);
  transform-origin: 2px 2px;
  background: #fff;
}

.checkboxinput-dummyinput {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 32px;
  height: 32px;
  border: solid 2px transparent;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.checkboxinput-labeltext {
  margin-left: 12px;
  display: block;
  font-size: 18px;
  font-weight: bold;
}

button[type=submit][disabled] {
  background: #E3E3E3;
}

.form-attention {
  display: inline-block;
  background: #F4D5D7;
  border-radius: 8px;
  margin: 0 0 40px;
  padding: 8px 20px 8px 60px;
  position: relative;
  width: inherit;
}
.form-attention:before {
  content: url(../img/icon_attention.png);
  transform: scale(0.5);
  position: absolute;
  top: -18px;
  left: 0;
}

header {
  position: sticky;
  line-height: 1;
  top: 0;
  background: transparent;
  padding: 16px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.5s 0s ease;
}
header.scrolled {
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.5s 0s ease;
}
header p.logo {
  margin: 0;
  margin-right: 20px;
  padding: 0;
  max-width: 508px;
  display: flex;
  align-items: center;
}
header p.logo img {
  max-width: 200px;
}
header p.logo a {
  margin-left: 20px;
  max-width: 168px;
}
header p.logo a img {
  max-width: 168px;
}
header p.logo span {
  border: 1px solid #959595;
  margin-left: 20px;
  padding: 8px;
  font-size: 20px;
  line-height: 1;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
header nav a {
  font-size: 0.8vw;
  padding-bottom: 2px;
}
header nav a.nav-mk {
  color: #333;
}
header nav a.nav-mk:hover {
  border-bottom: 1px solid #333;
}
header nav a.nav-tc {
  color: #379786;
}
header nav a.nav-tc:hover {
  border-bottom: 1px solid #379786;
}
header nav a.nav-register {
  display: inline-block;
  position: relative;
  min-width: 80px;
  padding: 12px 24px 12px 16px;
  background: #F29600;
  color: #fff;
  border-radius: 20px;
  z-index: 1;
}
header nav a.nav-register:after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  right: 20px;
  top: 14px;
  transform: rotate(45deg);
}
header nav a.nav-register:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #fff;
  border-radius: 20px;
  border: solid 2px #F29600;
  box-sizing: border-box;
  transform-origin: 50% 100%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}
header nav a.nav-register:hover {
  color: #F29600;
}
header nav a.nav-register:hover:before {
  transform-origin: 50% 0%;
  transform: scaleX(1);
}
header nav a.nav-register:hover::after {
  border-top: solid 2px #F29600;
  border-right: solid 2px #F29600;
}
header nav a.nav-loginout {
  display: inline-block;
  position: relative;
  min-width: 80px;
  text-align: center;
  padding: 12px 32px 12px 16px;
  background: #0062C1;
  color: #fff;
  border-radius: 20px;
  z-index: 1;
}
header nav a.nav-loginout:after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  right: 20px;
  top: 14px;
  transform: rotate(45deg);
}
header nav a.nav-loginout:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #fff;
  border-radius: 20px;
  border: solid 2px #0062C1;
  box-sizing: border-box;
  transform-origin: 50% 100%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}
header nav a.nav-loginout:hover {
  color: #0062C1;
}
header nav a.nav-loginout:hover:before {
  transform-origin: 50% 0%;
  transform: scaleX(1);
}
header nav a.nav-loginout:hover::after {
  border-top: solid 2px #0062C1;
  border-right: solid 2px #0062C1;
}
header nav a.nav-wht {
  display: inline-block;
  position: relative;
  min-width: 80px;
  text-align: center;
  padding: 12px 32px 12px 16px;
  background: #fff;
  color: #0062C1;
  border-radius: 20px;
  border: 1px solid #0062C1;
  z-index: 1;
}
header nav a.nav-wht:after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 2px #0062C1;
  border-right: solid 2px #0062C1;
  position: absolute;
  right: 20px;
  top: 14px;
  transform: rotate(45deg);
}
header nav a.nav-wht:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #0062C1;
  border-radius: 20px;
  box-sizing: border-box;
  transform-origin: 50% 100%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}
header nav a.nav-wht:hover {
  color: #fff;
}
header nav a.nav-wht:hover:before {
  transform-origin: 50% 0%;
  transform: scaleX(1);
}
header nav a.nav-wht:hover::after {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}
header nav a.nav-acount:hover {
  text-decoration: underline;
}

@media screen and (min-width: 1120px) {
  header nav a {
    font-size: 14px;
  }
}
footer {
  margin: 0;
  padding: 0;
  width: 100%;
  z-index: 999;
}
footer .bottom-menu-area {
  background: #3FA9F5;
  width: 100%;
}
footer .bottom-menu-area a {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
footer .bottom-menu-area a:hover {
  text-decoration: underline;
}
footer .bottom-menu-area .grid {
  display: flex;
  justify-content: space-between;
  width: 95%;
  max-width: 1120px;
  margin: 0;
  margin: 0 auto;
}
footer .bottom-menu-area .grid ul {
  padding: 0;
}
footer .bottom-menu-area .grid ul li {
  line-height: 2.2;
}
footer .bottom-menu-area .grid ul.dropdown li {
  margin-bottom: 0;
  line-height: 1.6;
}
footer .bottom-menu-area .grid ul.dropdown li a {
  font-size: 12px;
  font-weight: normal;
  margin-left: 16px;
}
footer .bottom-menu-area .grid ul.dropdown li:first-child a {
  font-size: 14px;
  font-weight: bold;
  margin-left: 0;
}
footer .bottom-menu-area .grid ul.external li a {
  padding-right: 20px;
  background: url(../img/icon_external.png) right center/14px auto no-repeat !important;
}
footer .copyright {
  width: 100%;
  margin: 0;
  padding: 20px 0;
  text-align: center;
  color: #fff;
  font-size: 12px;
  background: #1C1F86;
}

.breadcrumb {
  background: #1C1F86;
  width: 100%;
  margin: 0 auto;
  padding: 8px 0;
}
.breadcrumb ol {
  width: 95%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  color: #fff;
  list-style-type: none;
}
.breadcrumb ol li {
  font-weight: bold;
  white-space: nowrap;
}
.breadcrumb ol li:not(:last-of-type):after {
  content: "＞";
  margin: 0 20px;
}
.breadcrumb ol li a {
  color: #fff;
  font-weight: normal;
}
.breadcrumb ol li a:hover {
  text-decoration: underline;
}
.breadcrumb ol li:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.pagettl-blue {
  background: #0062C1;
}

.pagettl-green {
  background: #379786;
}

.pagettl {
  margin: 0;
  padding: 0;
  color: #fff;
}
.pagettl .pagettl-container {
  width: 95%;
  height: 240px;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pagettl .pagettl-container h1 {
  font-size: 32px;
}
.pagettl .pagettl-container .pagettl-img {
  margin-left: 40px;
}
.pagettl .pagettl-container .pagettl-img img {
  width: 132px;
}
.pagettl .pagettl-container .pagettl-img img#ill-manual {
  width: 87px;
}

a.btn-basic {
  background: #0062C1;
  border: 2px solid #0062C1;
  box-sizing: border-box;
  border-radius: 40px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 20px auto 0;
  max-width: 540px;
  padding: 12px 0;
  color: #fff;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  font-weight: bold;
  z-index: 1;
}
a.btn-basic:after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  color: #0062C1;
  width: 48px;
  height: 48px;
  text-align: center;
  font-size: 28px;
  background: #fff;
  position: absolute;
  top: 2px;
  right: 2px;
  border-radius: 40px;
  transition: 0.3s ease-in-out;
}
a.btn-basic:hover {
  background: #fff;
  color: #0062C1;
}
a.btn-basic:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #fff;
  border-radius: 40px;
  border: solid 2px #0062C1;
  box-sizing: border-box;
  transform-origin: 50% 100%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}
a.btn-basic:hover:before {
  transform-origin: 50% 0%;
  transform: scaleX(1);
}
a.btn-basic:hover:after {
  color: #fff;
  background: #0062C1;
}

a.btn-register {
  flex-basis: 100%;
  background: #F29600;
  border: 2px solid #F29600;
  box-sizing: border-box;
  border-radius: 40px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 680px;
  padding: 16px 0;
  color: #fff;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  font-weight: bold;
  font-size: 18px;
  z-index: 1;
}
a.btn-register:after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  color: #F29600;
  width: 58px;
  height: 58px;
  text-align: center;
  font-size: 34px;
  background: #fff;
  position: absolute;
  top: 3px;
  right: 3px;
  border-radius: 40px;
  transition: 0.3s ease-in-out;
}
a.btn-register:hover {
  background: #fff;
  color: #F29600;
}
a.btn-register:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #fff;
  border-radius: 40px;
  border: solid 2px #F29600;
  box-sizing: border-box;
  transform-origin: 50% 100%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}
a.btn-register:hover:before {
  transform-origin: 50% 0%;
  transform: scaleX(1);
}
a.btn-register:hover:after {
  color: #fff;
  background: #F29600;
}

.btn-blue {
  background: #0062C1;
  color: #fff;
  border: none;
  padding: 16px;
  margin-bottom: 40px;
  box-sizing: border-box;
  border-radius: 40px;
  width: 100%;
  max-width: 540px;
  position: relative;
  cursor: pointer;
}
.btn-blue::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  position: absolute;
  top: 18px;
  right: 24px;
  transform: rotate(45deg);
}
.btn-blue:hover {
  background: #1C1F86;
  transition: transform ease 0.3s;
}

.btn-blue-s {
  background: #0062C1;
  color: #fff;
  border: none;
  padding: 8px 32px 10px 20px;
  margin-bottom: 40px;
  box-sizing: border-box;
  border-radius: 40px;
  width: 100%;
  max-width: 540px;
  position: relative;
  cursor: pointer;
}
.btn-blue-s::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  position: absolute;
  top: 16px;
  right: 20px;
  transform: rotate(45deg);
}
.btn-blue-s:hover {
  background: #fff;
  color: #0062C1;
  border: 1px solid #0062C1;
  transition: transform ease 0.3s;
}
.btn-blue-s:hover:after {
  border-top: solid 3px #0062C1;
  border-right: solid 3px #0062C1;
  transition: transform ease 0.3s;
}

.btn-orange-s {
  background: #F29600;
  color: #fff;
  line-height: 1;
  border: none;
  padding: 8px 32px 8px 20px;
  margin-bottom: 40px;
  box-sizing: border-box;
  border-radius: 40px;
  width: 100%;
  max-width: 540px;
  position: relative;
  cursor: pointer;
}
.btn-orange-s::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  position: absolute;
  top: 16px;
  right: 20px;
  transform: rotate(45deg);
}
.btn-orange-s:hover {
  background: #fff;
  color: #F29600;
  border: 1px solid #F29600;
  transition: transform ease 0.3s;
}
.btn-orange-s:hover:after {
  border-top: solid 3px #F29600;
  border-right: solid 3px #F29600;
}

.btn-wht {
  background: #fff;
  color: #0062C1;
  border: 1px solid #0062C1;
  padding: 16px;
  margin-bottom: 40px;
  box-sizing: border-box;
  border-radius: 40px;
  width: 100%;
  max-width: 540px;
  position: relative;
  cursor: pointer;
}
.btn-wht::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 3px #0062C1;
  border-right: solid 3px #0062C1;
  position: absolute;
  top: 18px;
  right: 24px;
  transform: rotate(45deg);
}
.btn-wht:hover {
  background: #0062C1;
  transition: transform ease 0.3s;
  color: #fff;
}
.btn-wht:hover:after {
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
}

#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 10%;
  bottom: 20px;
  background: #0062C1;
  border: 1px solid #fff;
  border-radius: 4px;
  opacity: 0.8;
  z-index: 10000;
}

#page_top a {
  position: relative;
  padding-top: 20px;
  display: block;
  width: 50px;
  height: 26px;
  text-decoration: none;
  color: #fff;
  text-align: center;
}
#page_top a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f077";
  font-size: 25px;
  line-height: 1;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 4px;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

h2 {
  font-size: 40px;
  font-weight: bold;
  color: #1C1F86;
  margin: 0 0 20px;
  padding: 0;
}

.subttl {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #1C1F86;
  margin: 0;
  padding: 0;
}

.headline {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #1C1F86;
}

#tech .headline {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #379786;
}

.m-headline {
  font-size: 20px;
  font-weight: bold;
  width: 100%;
  background: #DEEDF8;
  border-radius: 8px;
  padding: 8px 20px;
  box-sizing: border-box;
}

#tech .m-headline {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  width: 100%;
  background: #6DCFBD;
  border-radius: 8px;
  padding: 8px 20px;
  box-sizing: border-box;
}

#tech h3.m-headline {
  color: #379786;
  background: none;
  border: none;
  padding: 0;
  margin: 24px 0 0;
}

#user .m-headline {
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  background: #E3E3E3;
  border-radius: 8px;
  padding: 8px 20px;
  box-sizing: border-box;
}

.s-headline {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
}

.note {
  font-size: 12px;
  margin-bottom: 16px;
}

.txt-basic {
  max-width: 100%;
  margin-bottom: 32px;
}
.txt-basic a:hover {
  text-decoration: underline;
}

mark {
  background-color: #FFF1C0;
}

.note-area {
  border: 1px solid #959595;
  border-radius: 8px;
  box-sizing: border-box;
  padding: 24px 24px 16px;
}

.note-txt {
  color: #C1272D;
}

ul.list-basic {
  list-style-type: disc;
}
ul.list-basic li {
  margin-bottom: 12px;
}

li > ul.list-basic {
  margin-top: 16px;
}

ul.linklist {
  padding: 0;
}
ul.linklist li a {
  display: inline-block;
  border: 1px solid #0062C1;
  color: #0062C1;
  width: 100%;
  padding: 4px 20px;
  border-radius: 20px;
  box-sizing: border-box;
  margin-bottom: 20px;
  position: relative;
}
ul.linklist li a:hover {
  background: #DEEDF8;
  text-decoration: underline;
}
ul.linklist li a::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 3px #0062C1;
  border-right: solid 3px #0062C1;
  position: absolute;
  top: 12px;
  right: 24px;
  transform: rotate(45deg);
}

.page-index {
  padding: 80px 0;
}
.page-index .page-index-ttl {
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 8px;
}
.page-index ul {
  margin: 0;
  padding: 0;
  list-style-type: disc;
}
.page-index ul li {
  margin-left: 24px;
}
.page-index ul li a:hover {
  text-decoration: underline;
}

.table-basic {
  border-collapse: collapse;
}
.table-basic th, .table-basic td {
  border: 1px solid #959595;
  padding: 4px;
  text-align: left;
  width: 33%;
}
.table-basic th {
  background: #DEEDF8;
  text-align: center;
}

#top-mv {
  height: 696px;
  width: 100%;
  display: block;
  margin: -80px 0 0;
  padding: 0;
}
#top-mv:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 696px;
  margin: 0;
  padding: 0;
  position: absolute;
  background-color: #DEEDF8;
  -webkit-clip-path: polygon(0 0, 60% 0, calc(60% - 250px) 100%, 0 100%);
          clip-path: polygon(0 0, 60% 0, calc(60% - 250px) 100%, 0 100%);
  z-index: 50;
}
#top-mv .top-mv-container {
  position: relative;
  z-index: 60;
  width: 95%;
  height: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
#top-mv .top-mv-container .top-mv-key {
  position: absolute;
  top: 190px;
  font-weight: bold;
  font-size: 20px;
  width: 48%;
  max-width: 543px;
}
#top-mv .top-mv-container .top-mv-key p {
  margin: 0;
  padding: 0;
}
#top-mv .top-mv-container .top-mv-key h1 img {
  width: 543px;
}
#top-mv .top-mv-container img.top-mv-ill-camera {
  position: absolute;
  width: 17%;
  top: 14%;
  left: 52%;
}
#top-mv .top-mv-container img.top-mv-ill-mv {
  position: absolute;
  bottom: -24px;
  width: 100%;
}

#top-info {
  background: #0062C1;
  margin: 0;
  padding: 40px 0;
}
#top-info .top-info-container {
  width: 95%;
  max-width: 1088px;
  background: #fff;
  margin: 0 auto;
  padding: 0 0 32px;
  border-radius: 16px;
}
#top-info .top-info-container ul {
  margin: 0;
  padding: 8px 0;
  width: 100%;
}
#top-info .top-info-container ul li {
  margin: 0 2%;
  font-size: 14px;
  border-bottom: 1px solid #959595;
  width: 96%;
}
#top-info .top-info-container ul li:last-child {
  border: none;
}
#top-info .top-info-container ul li a {
  position: relative;
  display: flex;
  align-items: center;
}
#top-info .top-info-container ul li a div {
  color: #333;
  display: flex;
  align-items: center;
}
#top-info .top-info-container ul li a div time {
  width: 118px;
}
#top-info .top-info-container ul li a div p {
  width: 96px;
  padding: 8px;
  margin-right: 32px;
  line-height: 1;
  text-align: center;
}
#top-info .top-info-container ul li a:hover .top-info-ttl {
  text-decoration: underline;
}

#top-what .top-what-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#top-what .top-what-left {
  flex-basis: 48%;
  margin-bottom: 80px;
}
#top-what .top-what-left .top-what-txt {
  margin-bottom: 40px;
}
#top-what .top-what-right {
  flex-basis: 48%;
  text-align: center;
  margin-bottom: 80px;
}
#top-what .top-what-right img {
  width: 76%;
  margin: 0 auto;
}
#top-what .top-what-right .top-what-caption {
  border: 1px solid #959595;
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  font-size: 12px;
}

#top-features .top-feature-wrap {
  margin: 80px auto 40px;
  display: flex;
  justify-content: space-between;
}
#top-features .top-feature-wrap .top-feature-box {
  background: #fff;
  flex-basis: 30%;
  text-align: center;
  border-radius: 20px;
}
#top-features .top-feature-wrap .top-feature-box .top-feature-box-num {
  font-family: "Lato", sans-serif;
  color: #6DCFBD;
  font-size: 40px;
  font-weight: bold;
  background: #fff;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  margin: -40px auto 16px;
}
#top-features .top-feature-wrap .top-feature-box h3 {
  width: 86%;
  margin: 0 auto 22px;
  font-size: 20px;
  text-align: left;
}
#top-features .top-feature-wrap .top-feature-box img {
  height: 116px;
  margin-bottom: 20px;
}
#top-features .top-feature-wrap .top-feature-box p.top-feature-box-txt {
  width: 86%;
  margin: 0 auto 40px;
  text-align: left;
}
#top-features .btn-basic {
  margin-bottom: 80px;
}

#top-price .top-price-container {
  display: flex;
  justify-content: space-between;
}
#top-price .top-price-container .top-price-left {
  flex-basis: 38%;
}
#top-price .top-price-container .top-price-right {
  flex-basis: 56%;
}
#top-price .top-price-container .top-price-right img.top-price-img-base {
  width: 541px;
  margin-bottom: 24px;
}
#top-price .top-price-container .top-price-right img.top-price-img-host {
  width: 648px;
}
#top-price .btn-basic {
  margin-bottom: 80px;
}

#top-announce .top-announce-container {
  margin-bottom: 64px;
}
#top-announce .top-announce-container p.top-announce-txt {
  margin-bottom: 32px;
}
#top-announce .top-announce-container h3 {
  font-size: 24px;
  font-weight: bold;
}

#feature-index .feature-index-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
#feature-index .feature-index-container .feature-index-box {
  display: inline-block;
  flex-basis: 256px;
  box-sizing: border-box;
  text-align: center;
  padding: 20px 20px 60px;
  color: #333;
  background: #DEEDF8;
  border-radius: 20px;
  position: relative;
}
#feature-index .feature-index-container .feature-index-box .feature-index-box-num {
  font-family: "Lato", sans-serif;
  color: #6DCFBD;
  font-size: 40px;
  font-weight: bold;
  background: #DEEDF8;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  margin: -60px auto 0;
  position: relative;
}
#feature-index .feature-index-container .feature-index-box h2 {
  font-size: 20px;
  color: #333;
  text-align: left;
  height: 110px;
}
#feature-index .feature-index-container .feature-index-box .feature-index-box-img {
  display: flex;
  height: 90px;
  align-items: center;
  justify-content: center;
}
#feature-index .feature-index-container .feature-index-box .feature-index-box-img img {
  max-width: 90%;
  max-height: 90px;
}
#feature-index .feature-index-container .feature-index-box .feature-index-box-txt {
  text-align: left;
  font-size: 14px;
}
#feature-index .feature-index-container .feature-index-box i.fa-solid {
  width: 216px;
  background: #0062C1;
  color: #fff;
  font-size: 20px;
  border-radius: 16px;
  padding: 4px 0;
  position: absolute;
  left: 20px;
  bottom: 20px;
}
#feature-index .feature-index-container .feature-index-box a {
  color: #333;
  display: inline-block;
  width: 100%;
  height: 100%;
}
#feature-index .feature-index-container .feature-index-box a:hover {
  color: #0062C1;
}
#feature-index .feature-index-container .feature-index-box a:hover i.fa-solid {
  background: #fff;
  color: #0062C1;
  transition: 0.2s ease-in-out;
}
#feature-index .feature-index-bottom {
  width: 95%;
  max-width: 1120px;
  margin: 0 auto;
  background: #DEEDF8;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  align-items: center;
}
#feature-index .feature-index-bottom .feature-index-bottom-txt {
  width: 500px;
  margin-right: 40px;
  font-size: 20px;
}
#feature-index .feature-index-bottom .btn-basic {
  width: 540px;
  margin: 0;
}

.feature-feature .container {
  position: relative;
}
.feature-feature .container .feature-feature-img {
  display: inline-block;
  position: absolute;
  text-align: center;
  margin-top: -120px;
  top: 0;
  right: 0;
  width: 344px;
  height: 167px;
  border-radius: 0 0 167px 167px;
}
.feature-feature .container .feature-feature-img img {
  display: inline-block;
  max-width: 190px;
}
.feature-feature .container .feature-01-img {
  background: #fff;
}
.feature-feature .container .feature-01-img img {
  padding-top: 32px;
}
.feature-feature .container .feature-02-img {
  background: #DEEDF8;
}
.feature-feature .container .feature-02-img img {
  padding-top: 60px;
}
.feature-feature .container .feature-03-img {
  background: #fff;
}
.feature-feature .container .feature-03-img img {
  padding-top: 40px;
}
.feature-feature .container .feature-04-img {
  background: #DEEDF8;
}
.feature-feature .container .feature-04-img img {
  padding-top: 30px;
}
.feature-feature .container .feature-feature-num {
  font-family: "Lato", sans-serif;
  color: #6DCFBD;
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  margin: 0;
  padding: 0;
}
.feature-feature .container h2 {
  font-size: 40px;
}
.feature-feature .container .feature-01-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}
.feature-feature .container .feature-01-wrap .feature-01-box {
  flex-basis: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #959595;
  box-sizing: border-box;
  padding: 24px;
}
.feature-feature .container .feature-01-wrap .feature-01-box img {
  max-width: 160px;
  margin-right: 20px;
}
.feature-feature .container .feature-01-wrap .feature-01-box div .note {
  font-size: 12px;
}
.feature-feature .container .feature-01-wrap .feature-01-box div ul {
  list-style-type: disc;
  padding-left: 20px;
}
.feature-feature .container .feature-01-wrap .feature-01-box div ul li {
  font-size: 12px;
}
.feature-feature .container .feature-01-wrap .feature-01-box:nth-child(odd) {
  border-right: 1px solid #959595;
}
.feature-feature .container .feature-01-wrap .feature-01-box:nth-child(5), .feature-feature .container .feature-01-wrap .feature-01-box:nth-child(6) {
  border-bottom: none;
}
.feature-feature .container .feature-btn-basic {
  width: 95%;
  max-width: 1120px;
  text-align: left;
}
.feature-feature .container .feature-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
.feature-feature .container .feature-wrap .feature-figure {
  flex-basis: 50%;
}
.feature-feature .container .feature-wrap .feature-figure img {
  max-width: 540px;
  margin-bottom: 20px;
}
.feature-feature .container .feature-wrap .feature-figure .btn-basic {
  max-width: 100%;
  margin: 0;
}
.feature-feature .container .feature-wrap .feature-txt {
  flex-basis: 48%;
}
.feature-feature .container .feature-wrap .feature-txt p {
  position: relative;
  padding-left: 68px;
}
.feature-feature .container .feature-wrap .feature-txt p:before {
  font-family: "Font Awesome 5 Free";
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
  content: "\f00c";
  color: #3FA9F5;
  position: absolute;
  top: 0;
  left: 0;
}

#feature-01 .feature-01-btn-basic .btn-basic {
  margin: 0 0 80px !important;
}

#keyword #keyword-index {
  margin-bottom: 0;
  padding-bottom: 0;
}
#keyword #keyword-index .container {
  margin-bottom: 0;
}
#keyword #keyword-keyword .container {
  margin-bottom: 40px;
}

#price-head .price-head-container {
  margin-bottom: 80px;
}
#price-head .price-head-container .price-head-wrap {
  max-width: 770px;
  margin: 0 auto;
}
#price-head .price-head-container .price-head-wrap img.price-head-img-base {
  max-width: 643px;
  margin-bottom: 30px;
}
#price-head .price-head-container .price-head-wrap img.price-head-img-host {
  max-width: 770px;
}

#price-ex .price-ex-wrap {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #959595;
}
#price-ex .price-ex-wrap:last-child {
  border: none;
}
#price-ex .price-ex-wrap .price-ex-box {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
#price-ex .price-ex-wrap .price-ex-box .price-ex-timeline {
  width: 738px;
}
#price-ex .price-ex-wrap .price-ex-box .price-ex-timeline img {
  width: 100%;
}
#price-ex .price-ex-wrap .price-ex-box .price-ex-timeline img:nth-child(2) {
  margin-top: 58px;
}
#price-ex .price-ex-wrap .price-ex-box .price-ex-bln {
  width: 373px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#price-ex .price-ex-wrap .price-ex-box .price-ex-bln img {
  width: 100%;
}
#price-ex .price-ex-wrap .price-ex-box .price-ex-bln p {
  font-size: 24px;
  font-weight: bold;
  vertical-align: middle;
}
#price-ex .price-ex-wrap .price-ex-box .price-ex-bln p img.arrow_down {
  width: 60px;
  vertical-align: middle;
  margin-left: 20px;
}

.example-example .container {
  position: relative;
}
.example-example .container h2 {
  font-size: 40px;
}
.example-example .container .example-btn-basic {
  width: 95%;
  max-width: 1120px;
  text-align: left;
}
.example-example .container .example-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
.example-example .container .example-wrap .example-figure {
  flex-basis: 50%;
}
.example-example .container .example-wrap .example-figure img {
  max-width: 540px;
  margin-bottom: 20px;
}
.example-example .container .example-wrap .example-figure .btn-basic {
  max-width: 100%;
  margin: 0;
}
.example-example .container .example-wrap .example-txt {
  flex-basis: 46%;
}
.example-example .container .example-wrap .example-txt ul {
  list-style-type: disc;
  padding-left: 20px;
}
.example-example .container .example-wrap .example-txt ul li {
  margin-bottom: 20px;
}

#register {
  text-align: center;
}
#register .register-txt {
  width: -moz-max-content;
  width: max-content;
  text-align: left;
  margin: 0 auto 40px;
}
#register a.btn-register {
  margin-bottom: 80px;
}

#register-flow .container {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  position: relative;
}
#register-flow .container .register-flow-ttl {
  font-size: 24px;
  font-weight: bold;
  color: #1C1F86;
  text-align: center;
}
#register-flow .container .register-flow-section {
  padding: 0;
  margin-bottom: 80px;
}
#register-flow .container .register-flow-section .register-flow-headline {
  background: #DEEDF8;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  padding: 4px 20px;
}
#register-flow .container .register-flow-section .register-txt {
  margin-bottom: 32px;
}
#register-flow .container .register-flow-section .register-flow-set-2 {
  display: flex;
  align-items: end;
  justify-content: center;
  position: relative;
  text-align: left;
  width: 784px;
}
#register-flow .container .register-flow-section .register-flow-set-2 .register-flow-set-2-img-1 {
  width: 366px;
}
#register-flow .container .register-flow-section .register-flow-set-2 dl {
  position: absolute;
  top: 178px;
  left: 592px;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 424px;
}
#register-flow .container .register-flow-section .register-flow-set-2 dl dt {
  width: 120px;
  padding: 0;
  color: #1C1F86;
  font-weight: bold;
}
#register-flow .container .register-flow-section .register-flow-set-2 dl dd {
  width: 304px;
  margin: 0;
  padding: 0;
}
#register-flow .container .register-flow-section .register-flow-set-2 dl dd ul {
  list-style-type: disc;
  margin: 0;
  font-size: 12px;
}
#register-flow .container .register-flow-section .register-flow-set-2 dl dt.register-flow-set-2-1, #register-flow .container .register-flow-section .register-flow-set-2 dl dd.register-flow-set-2-1,
#register-flow .container .register-flow-section .register-flow-set-2 dl dt.register-flow-set-2-2, #register-flow .container .register-flow-section .register-flow-set-2 dl dd.register-flow-set-2-2,
#register-flow .container .register-flow-section .register-flow-set-2 dl dt.register-flow-set-2-3, #register-flow .container .register-flow-section .register-flow-set-2 dl dd.register-flow-set-2-3,
#register-flow .container .register-flow-section .register-flow-set-2 dl dt.register-flow-set-2-4, #register-flow .container .register-flow-section .register-flow-set-2 dl dd.register-flow-set-2-4 {
  margin-bottom: 18px;
}
#register-flow .container .register-flow-section .register-flow-set-2 dl dd.register-flow-set-2-6 {
  width: 424px;
}
#register-flow .container .register-flow-section .register-flow-set-3-img-1 {
  width: 95%;
  max-width: 615px;
  margin: 0 auto;
  display: flex;
}
#register-flow .container .register-flow-section .register-flow-set-3-img-cap {
  text-align: center;
  margin-bottom: 40px;
}
#register-flow .container .register-flow-section .register-flow-set-3 {
  display: flex;
  align-items: end;
  justify-content: center;
  position: relative;
  text-align: left;
  width: 784px;
  margin-bottom: 60px;
}
#register-flow .container .register-flow-section .register-flow-set-3 .register-flow-set-3-img-2 {
  width: 366px;
}
#register-flow .container .register-flow-section .register-flow-set-3 dl {
  position: absolute;
  top: 220px;
  left: 592px;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 424px;
}
#register-flow .container .register-flow-section .register-flow-set-3 dl dt {
  width: 120px;
  padding: 0;
  color: #1C1F86;
  font-weight: bold;
}
#register-flow .container .register-flow-section .register-flow-set-3 dl dd {
  width: 304px;
  margin: 0;
  padding: 0;
  text-indent: -16px;
}
#register-flow .container .register-flow-section .register-flow-set-3 dl dd ul {
  list-style-type: disc;
  margin: 0;
  font-size: 12px;
}
#register-flow .container .register-flow-section .register-flow-set-3 dl dt.register-flow-set-3-1, #register-flow .container .register-flow-section .register-flow-set-3 dl dd.register-flow-set-3-1 {
  margin-bottom: 18px;
}
#register-flow .container .register-flow-section .register-flow-set-3 dl dd.register-flow-set-3-2 {
  width: 424px;
}

p.info-tag {
  width: 96px;
  padding: 8px;
  margin-right: 32px;
  line-height: 1;
  text-align: center;
}

p.tag-info {
  background: #BBDC92;
}

p.tag-maintenance {
  background: #DCA4E5;
}

p.tag-www {
  background: #EBAEB2;
}

p.tag-xxx {
  background: #E9CD69;
}

p.tag-yyy {
  background: #6DCFBD;
}

p.tag-zzz {
  background: #A6C2E2;
}

#info-list {
  margin: 0;
  padding: 40px 0;
}
#info-list .info-list-container .info-list-number {
  margin: 0;
  padding: 0;
}
#info-list .info-list-container ul {
  margin: 0;
  padding: 8px 0;
  width: 100%;
}
#info-list .info-list-container ul li {
  margin: 0;
  font-size: 14px;
  border-bottom: 1px solid #959595;
  width: 100%;
}
#info-list .info-list-container ul li:last-child {
  border: none;
}
#info-list .info-list-container ul li a {
  position: relative;
  display: flex;
  align-items: center;
}
#info-list .info-list-container ul li a div {
  color: #333;
  display: flex;
  align-items: center;
}
#info-list .info-list-container ul li a div time {
  width: 118px;
}
#info-list .info-list-container ul li a:hover .info-list-ttl {
  text-decoration: underline;
}

#info .info-container {
  margin-bottom: 80px;
}
#info .info-container time {
  font-family: "Lato", sans-serif;
  font-weight: bold;
  font-size: 18px;
}
#info .info-container .info-tag {
  margin-bottom: 40px;
}
#info .info-container .info-ttl {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 80px;
}
#info .info-container .info-txt {
  margin-bottom: 60px;
  font-size: 18px;
}
#info .info-container .info-headline {
  font-weight: bold;
  font-size: 24px;
}
#info .info-container .info-note {
  font-size: 12px;
  margin-bottom: 20px;
}

.faq {
  padding: 0 0 40px;
}
.faq .m-headline {
  padding: 4px 20px;
  margin-bottom: 32px;
}
.faq .faq-set {
  border-bottom: 1px solid #959595;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.faq .faq-set .faq-q {
  font-size: 20px;
  color: #1C1F86;
  font-weight: bold;
  text-indent: -20px;
  padding-left: 40px;
  line-height: 1.4;
  margin: 0;
}
.faq .faq-set .faq-q:before {
  content: "Q";
  font-size: 40px;
  font-family: "Lato", sans-serif;
  display: inline-block;
  margin-right: 8px;
}
.faq .faq-set .faq-a {
  font-size: 20px;
  color: #333;
  font-weight: bold;
  text-indent: -18px;
  padding-left: 38px;
  margin: 0;
  line-height: 1.4;
}
.faq .faq-set .faq-a:before {
  content: "A";
  font-size: 40px;
  font-family: "Lato", sans-serif;
  display: inline-block;
  margin-right: 8px;
  color: #F29600;
}
.faq .faq-set .faq-a a:hover {
  text-decoration: underline;
}
.faq .faq-set .faq-a-box {
  margin-left: 40px;
}
.faq .faq-set .faq-a-box .faq-a-box-txt {
  margin-bottom: 20px;
}
.faq .faq-set .faq-a-box .faq-a-box-txt a:hover {
  text-decoration: underline;
}
.faq .faq-set .faq-a-box .btn-basic {
  margin-bottom: 20px;
}
.faq .faq-set .faq-a-box .faq-a-box-table th, .faq .faq-set .faq-a-box .faq-a-box-table td {
  width: 33%;
}
.faq .faq-set .faq-a-box .faq-a-box-att {
  font-size: 12px;
}
.faq .faq-set .faq-a-box .faq-a-box-headline {
  font-weight: bold;
  font-size: 18px;
}

#login {
  background: #F4F4F4;
}
#login #login-login {
  padding-bottom: 40px;
}
#login #login-login .login-container {
  background: #E3E3E3;
  border-radius: 8px;
  max-width: 620px;
  text-align: center;
  box-sizing: border-box;
  padding: 40px;
}
#login #login-login .login-container .login-ttl {
  font-size: 40px;
  font-weight: bold;
  color: #1C1F86;
  line-height: 1;
  margin: 0 auto 40px;
}
#login #login-login .login-container form {
  text-align: left;
}
#login #login-login .login-container form .login-form {
  margin-bottom: 32px;
}
#login #login-login .login-container form .login-form label {
  display: block;
}
#login #login-login .login-container form .login-form .btn-blue {
  margin-bottom: 20px;
}
#login #login-login .login-container form .login-pw {
  margin-bottom: 0;
}
#login #login-login .login-container form .login-resetpw {
  text-align: right;
}
#login #login-login .login-container form .login-resetpw a:hover {
  text-decoration: underline;
}
#login #login-register {
  padding-top: 0;
}
#login #login-register .login-register-container .login-register-ttl {
  display: block;
  text-align: center;
  margin-bottom: 32px;
}

#agreement #agreement-sec {
  padding-bottom: 40px;
}
#agreement #agreement-sec .agreement-container {
  border-radius: 8px;
  width: 95%;
  max-width: 1120px;
  text-align: center;
  box-sizing: border-box;
}
#agreement #agreement-sec .agreement-container h2.agreement-ttl {
  font-size: 40px;
  font-weight: bold;
  color: #1C1F86;
  line-height: 1;
  margin: 0 auto 40px;
}
#agreement #agreement-sec .agreement-container .terms {
  min-height: 36px;
  max-height: 42vh;
  overflow: scroll;
  overflow-x: hidden;
  margin-bottom: 16px;
}
#agreement #agreement-sec .agreement-container .checkboxinput {
  margin-bottom: 16px;
}

#eula #eula-sec {
  padding-bottom: 40px;
}
#eula #eula-sec .eula-container {
  border-radius: 8px;
  width: 95%;
  max-width: 1120px;
  text-align: center;
  box-sizing: border-box;
}
#eula #eula-sec .eula-container h2.eula-ttl {
  font-size: 40px;
  font-weight: bold;
  color: #1C1F86;
  line-height: 1;
  margin: 0 auto 40px;
}
#eula #eula-sec .eula-container .terms {
  min-height: 36px;
  max-height: 42vh;
  overflow: scroll;
  overflow-x: hidden;
  margin-bottom: 16px;
}

.terms {
  border: 1px solid #959595;
  padding: 20px;
  background: #fff;
  text-align: left;
}

#wrapper-two aside#tech-aside {
  width: 240px;
  margin: 40px 0;
  padding: 0;
  margin-right: 32px;
  position: relative;
}
#wrapper-two aside#tech-aside .tech-sideindex {
  position: sticky;
  top: 80px;
  width: 240px;
  margin: 0;
  padding: 10px 0 0;
  background: #F4F4F4;
  border-radius: 8px;
}
#wrapper-two aside#tech-aside .tech-sideindex .sideindex-subttl {
  text-align: center;
  line-height: 1.2;
  padding: 16px 8px 0;
  margin: 0;
  font-weight: bold;
}
#wrapper-two aside#tech-aside .tech-sideindex .sideindex-ttl {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  padding-bottom: 16px;
  border-bottom: 1px solid #fff;
}
#wrapper-two aside#tech-aside .tech-sideindex ul.sideindex-list {
  margin: 0;
  padding: 0 12px 12px;
}
#wrapper-two aside#tech-aside .tech-sideindex ul.sideindex-list li {
  display: inline-block;
  width: 94%;
  box-sizing: border-box;
  margin-bottom: 20px;
  text-indent: -16px;
  margin-left: 32px;
  font-size: 14px;
}
#wrapper-two aside#tech-aside .tech-sideindex ul.sideindex-list li a {
  color: #333;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
}
#wrapper-two aside#tech-aside .tech-sideindex ul.sideindex-list li a:hover {
  text-decoration: underline;
}
#wrapper-two main.tech-main {
  padding-top: 40px;
}
#wrapper-two main.tech-main section.tech-sec {
  padding-top: 0;
}

.tech-sec {
  position: relative;
}
.tech-sec .index-area {
  border: 1px solid #959595;
  border-radius: 8px;
  box-sizing: border-box;
  padding: 24px 24px 0;
}
.tech-sec .index-area h3 {
  margin-top: 0;
}

.txt-comment {
  font-size: 12px;
  color: #6DCFBD;
}

pre {
  white-space: pre-wrap;
}

.code-area {
  background: #272922;
  border-radius: 8px;
  padding: 16px;
  box-sizing: border-box;
  width: 100%;
  max-width: 868px;
  margin: 0 0 40px;
}

p.code-block {
  color: #ccc;
  font-size: 14px;
  width: 816px;
  overflow-wrap: break-word;
}
p.code-block span {
  color: #6DCFBD;
}
p.code-block mark {
  background: transparent;
  color: #F29600;
}

.code-copy {
  position: relative;
}

.code-copy-btn {
  position: absolute;
  right: 4px;
  top: 4px;
  padding: 0.6em;
  background: #0062C1;
  color: #fff;
  border: 0;
  border-radius: 5px;
  border: 1px solid #DEEDF8;
  box-sizing: border-box;
  font-size: 16px;
  font-family: "Lato", sans-serif;
  z-index: 999;
}

.code-copy-btn:hover {
  cursor: pointer;
  background: #DEEDF8;
  color: #0062C1;
}

img.tech-figure {
  width: 100%;
  max-width: 848px;
  margin: 20px 0;
}

#manual {
  position: relative;
}
#manual .caption {
  text-align: center;
  margin-top: 0;
}
#manual i.fa-angle-down {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 50px;
  margin: 0 auto;
  line-height: 1;
  color: #1C1F86;
}
#manual .btn-blue-account {
  display: block;
  margin: 0 auto 60px;
  text-align: center;
  padding: 10px 0;
}
#manual .user-btn-img {
  display: block;
  width: 90%;
  max-width: 480px;
  margin: 0 auto 60px;
}
#manual .mc-center {
  display: block;
  width: 90%;
  margin: 0 auto 60px;
}
#manual .mb-60 {
  margin-bottom: 60px !important;
}
#manual .figure-set {
  display: flex;
  align-items: end;
  justify-content: left;
  position: relative;
  text-align: left;
  margin-bottom: 80px;
}
#manual .figure-set dl {
  position: absolute;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#manual .figure-set dl dt {
  padding: 0;
  color: #1C1F86;
  font-weight: bold;
  margin-right: 16px;
}
#manual .figure-set dl dd {
  margin: 0;
  padding: 0;
}
#manual .figure-set dl dd ul {
  list-style-type: disc;
  margin: 0;
  font-size: 12px;
}
#manual .figure-num {
  margin-bottom: 32px;
}
#manual .figure-num h3 {
  margin-bottom: 0;
}
#manual .figure-num h3 span {
  display: inline-block;
  background: #6DCFBD;
  border-radius: 20px;
  text-align: center;
  width: 36px;
  height: 36px;
  margin-right: 8px;
  box-sizing: border-box;
}
#manual .figure-num .txt-basic {
  margin-left: 44px;
  margin-top: 0;
  margin-bottom: 0;
}
#manual .figure-num ul.list-basic {
  margin-top: 8px;
  margin-bottom: 20px;
  margin-left: 24px;
}
#manual .figure-num ul.list-basic li {
  margin-bottom: 8px;
}

#figure-win1 {
  max-width: 399px;
}

#figure-win3, #figure-win4, #figure-win5, #figure-win6, #figure-win7 {
  max-width: 696px;
}

#figure-win8, #figure-win9 {
  max-width: 542px;
}

#manual .btn-register {
  margin-bottom: 60px;
}
#manual .mc-account-01 {
  max-width: 784px;
}
#manual .mc-account-03 {
  max-width: 615px;
  margin-bottom: 0;
}
#manual .account-1-3 .mc-account-1-3 {
  width: 386px;
}
#manual .account-1-3 dl {
  top: 188px;
  left: 400px;
  width: 434px;
}
#manual .account-1-3 dl dt {
  width: 102px;
}
#manual .account-1-3 dl dd {
  width: 316px;
}
#manual .account-1-3 dl dt.account-1-3-1, #manual .account-1-3 dl dd.account-1-3-1,
#manual .account-1-3 dl dt.account-1-3-2, #manual .account-1-3 dl dd.account-1-3-2,
#manual .account-1-3 dl dt.account-1-3-3, #manual .account-1-3 dl dd.account-1-3-3,
#manual .account-1-3 dl dt.account-1-3-4, #manual .account-1-3 dl dd.account-1-3-4 {
  margin-bottom: 21px;
}
#manual .account-1-3 dl dt.account-1-3-5, #manual .account-1-3 dl dd.account-1-3-5 {
  margin-bottom: 6px;
}
#manual .account-1-3 dl dd.account-1-3-6 {
  width: 434px;
}
#manual .account-1-4 {
  margin-bottom: 40px;
}
#manual .account-1-4 .mc-account-1-4 {
  width: 386px;
}
#manual .account-1-4 dl {
  top: 240px;
  left: 400px;
  width: 434px;
}
#manual .account-1-4 dl dt {
  width: 132px;
}
#manual .account-1-4 dl dd {
  width: 286px;
}
#manual .account-1-4 dl dt.account-1-4-1, #manual .account-1-4 dl dd.account-1-4-1 {
  margin-bottom: 12px;
}
#manual .account-1-4 dl dd.account-1-4-2 {
  width: 434px;
}
#manual .account-2-2 {
  margin-bottom: 40px;
}
#manual .account-2-2 .mc-account-2-2 {
  width: 376px;
}
#manual .account-2-2 dl {
  top: 84px;
  left: 400px;
  width: 434px;
}
#manual .account-2-2 dl dt {
  width: 112px;
}
#manual .account-2-2 dl dd {
  width: 306px;
}
#manual .account-2-2 dl dt.account-2-2-2, #manual .account-2-2 dl dd.account-2-2-2 {
  margin-bottom: 20px;
}
#manual .account-2-2 dl dd.account-2-2-3 {
  width: 434px;
}
#manual .mc-account-3-1 {
  max-width: 784px;
}

.flow-set {
  display: flex;
  flex-wrap: wrap;
}
.flow-set .flow-set-l {
  flex-basis: 120px;
  margin-right: 40px;
  margin-bottom: 12px;
  text-align: center;
}
.flow-set .flow-set-l p {
  background: #6DCFBD;
  border-radius: 30px;
  font-family: "Lato", sans-serif;
  font-size: 28px;
  line-height: 1.2;
  margin: 12px auto;
}
.flow-set .flow-set-r {
  flex: 1;
  margin-bottom: 12px;
}
.flow-set .flow-set-r h3 {
  margin-top: 12px;
}
.flow-set ul.linklist {
  width: 100%;
}
.flow-set ul.linklist li a {
  margin-bottom: 0;
}

#flow-set-1 img {
  width: 72px;
}

#flow-set-2 img {
  width: 57px;
}

#flow-set-3 img {
  width: 120px;
}

#flow-set-4 img {
  width: 102px;
}

#flow-set-5 img {
  width: 120px;
}

#flow-set-6 img {
  width: 102px;
}

#manual .mc-caf-1-2 {
  max-width: 590px;
}
#manual .mc-caf-2-2,
#manual .mc-caf-3-2 {
  max-width: 379px;
}

#manual .host-1-2 {
  margin-bottom: 40px;
}
#manual .host-1-2 .mc-host-1-2 {
  width: 406px;
}
#manual .host-1-2 dl {
  top: 72px;
  left: 422px;
  width: 426px;
}
#manual .host-1-2 dl dt {
  width: 160px;
}
#manual .host-1-2 dl dd {
  width: 250px;
}
#manual .host-1-2 dl dt.host-1-2-1, #manual .host-1-2 dl dd.host-1-2-1 {
  margin-bottom: 26px;
}
#manual .host-1-2 dl dt.host-1-2-2, #manual .host-1-2 dl dd.host-1-2-2 {
  margin-bottom: 40px;
}
#manual .host-2-2 {
  margin-bottom: 40px;
}
#manual .host-2-2 .mc-host-2-2 {
  width: 406px;
}
#manual .host-2-2 dl {
  top: 72px;
  left: 422px;
  width: 426px;
}
#manual .host-2-2 dl dt {
  width: 134px;
}
#manual .host-2-2 dl dd {
  width: 276px;
}
#manual .host-2-2 dl dt.host-2-2-1, #manual .host-2-2 dl dd.host-2-2-1 {
  margin-bottom: 26px;
}
#manual .host-2-2 dl dt.host-2-2-2, #manual .host-2-2 dl dd.host-2-2-2 {
  margin-bottom: 40px;
}
#manual .mc-host-3-2 {
  width: 851px;
}

#manual .mc-manage-1-1,
#manual .mc-manage-2-1,
#manual .mc-manage-3-1,
#manual .mc-manage-4-1 {
  max-width: 222px;
}
#manual .mc-manage-1-2 {
  max-width: 490px;
}
#manual .mc-manage-1-3 {
  max-width: 766px;
}
#manual .manage-2-2 {
  margin-bottom: 40px;
}
#manual .manage-2-2 .mc-manage-2-2 {
  width: 406px;
}
#manual .manage-2-2 dl {
  top: 46px;
  left: 422px;
  width: 426px;
}
#manual .manage-2-2 dl dt {
  width: 100px;
}
#manual .manage-2-2 dl dd {
  width: 306px;
}
#manual .manage-2-2 dl dt.host-2-2-1, #manual .manage-2-2 dl dd.host-2-2-1 {
  margin-bottom: 26px;
}
#manual .manage-2-2 dl dt.host-2-2-2, #manual .manage-2-2 dl dd.host-2-2-2 {
  margin-bottom: 40px;
}
#manual .manage-3-2 {
  margin-bottom: 40px;
}
#manual .manage-3-2 .mc-manage-3-2 {
  width: 406px;
}
#manual .manage-3-2 dl {
  top: 12px;
  left: 422px;
  width: 426px;
}
#manual .manage-3-2 dl dt {
  width: 64px;
}
#manual .manage-3-2 dl dd {
  width: 342px;
}
#manual .mc-manage-4-2 {
  width: 161px;
}
#manual .mc-manage-4-3 {
  width: 680px;
}

#manual .mc-info-1-2 {
  width: 643px;
}
#manual .mc-info-2-1,
#manual .mc-info-3-1-1 {
  width: 455px;
}
#manual .info-2-2 {
  margin-bottom: 40px;
}
#manual .info-2-2 .mc-info-2-2 {
  width: 406px;
}
#manual .info-2-2 dl {
  top: 70px;
  left: 422px;
  width: 426px;
}
#manual .info-2-2 dl dt {
  width: 112px;
}
#manual .info-2-2 dl dd {
  width: 298px;
  line-height: 1.4;
}
#manual .info-2-2 dl dt.info-2-2-1, #manual .info-2-2 dl dd.info-2-2-1 {
  margin-bottom: 44px;
}
#manual .info-2-2 dl dt.info-2-2-2, #manual .info-2-2 dl dd.info-2-2-2 {
  margin-bottom: 44px;
}
#manual .info-2-2 dl dt.info-2-2-3, #manual .info-2-2 dl dd.info-2-2-3 {
  margin-bottom: 20px;
}
#manual .info-2-2 dl dt.info-2-2-4, #manual .info-2-2 dl dd.info-2-2-4 {
  margin-bottom: 50px;
}
#manual .info-2-2 dl dt.info-2-2-5, #manual .info-2-2 dl dd.info-2-2-5 {
  margin-bottom: 10px;
}
#manual .mc-info-3-1-2 {
  width: 390px;
}
#manual .mc-info-03 {
  width: 615px;
  margin-bottom: 0;
}
#manual .info-3-2 {
  margin-bottom: 100px;
}
#manual .info-3-2 .mc-info-3-2 {
  width: 406px;
}
#manual .info-3-2 dl {
  top: 230px;
  left: 420px;
  width: 414px;
}
#manual .info-3-2 dl dt {
  width: 112px;
}
#manual .info-3-2 dl dd {
  width: 286px;
}
#manual .info-3-2 dl dt.info-3-2-1, #manual .info-3-2 dl dd.info-3-2-1 {
  margin-bottom: 40px;
}
#manual .info-3-2 dl dd.info-3-2-2 {
  width: 414px;
}
#manual .info-3-3 {
  margin-bottom: 100px;
}
#manual .info-3-3 .mc-info-3-3 {
  width: 406px;
}
#manual .info-3-3 dl {
  top: 174px;
  left: 420px;
  width: 414px;
}
#manual .info-3-3 dl dt {
  width: 124px;
}
#manual .info-3-3 dl dd {
  width: 274px;
}
#manual .info-3-3 dl dt.info-3-3-1, #manual .info-3-3 dl dd.info-3-3-1 {
  margin-bottom: 12px;
}
#manual .info-3-3 dl dt.info-3-3-2, #manual .info-3-3 dl dd.info-3-3-2 {
  margin-bottom: 16px;
}
#manual .info-3-3 dl dt.info-3-3-3, #manual .info-3-3 dl dd.info-3-3-3 {
  margin-bottom: 38px;
}
#manual .info-3-3 dl dd.info-3-3-4 {
  width: 414px;
}
#manual .info-3-4 {
  margin-bottom: 100px;
}
#manual .info-3-4 .mc-info-3-4 {
  width: 406px;
}
#manual .info-3-4 dl {
  top: 162px;
  left: 420px;
  width: 414px;
}
#manual .info-3-4 dl dt {
  width: 94px;
}
#manual .info-3-4 dl dd {
  width: 304px;
}
#manual .info-3-4 dl dt.info-3-4-1, #manual .info-3-4 dl dd.info-3-4-1 {
  margin-bottom: 14px;
}
#manual .info-3-4 dl dt.info-3-4-2, #manual .info-3-4 dl dd.info-3-4-2 {
  margin-bottom: 30px;
}
#manual .info-3-4 dl dd.info-3-4-3 {
  width: 414px;
}
#manual .info-4-1 {
  margin-bottom: 100px;
}
#manual .info-4-1 .mc-info-4-1 {
  width: 406px;
}
#manual .info-4-1 dl {
  top: 72px;
  left: 420px;
  width: 414px;
}
#manual .info-4-1 dl dt {
  width: 160px;
}
#manual .info-4-1 dl dd {
  width: 238px;
}
#manual .info-4-1 dl dt.info-4-1-1, #manual .info-4-1 dl dd.info-4-1-1 {
  margin-bottom: 54px;
}
#manual .info-4-1 dl dt.info-4-1-2, #manual .info-4-1 dl dd.info-4-1-2 {
  margin-bottom: 40px;
}
#manual .mc-info-5-2 {
  width: 643px;
}

#user {
  background: #333;
}
#user header {
  background: #fff;
}
#user .user-breadcrumb {
  width: 100%;
  margin: 0;
  padding-top: 8px;
}
#user .user-breadcrumb ol {
  width: 95%;
  max-width: 1120px;
  margin: 0;
  padding: 0;
  display: flex;
  color: #333;
  list-style-type: none;
}
#user .user-breadcrumb ol li {
  font-weight: bold;
  white-space: nowrap;
}
#user .user-breadcrumb ol li:not(:last-of-type):after {
  content: "＞";
  margin: 0 20px;
}
#user .user-breadcrumb ol li a {
  color: #333;
  font-weight: normal;
}
#user .user-breadcrumb ol li a:hover {
  text-decoration: underline;
}
#user .user-breadcrumb ol li:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}
#user section {
  margin: 0 0 80px;
  padding: 0;
}

#user #wrapper {
  display: flex;
  align-items: stretch;
  background: #333;
}
#user #wrapper aside#user-aside {
  top: 76px;
  position: sticky;
  height: 100%;
  width: 200px;
  background-color: #333;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: #fff;
}
#user #wrapper aside#user-aside p.user-aside-ttl {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 0 16px;
}
#user #wrapper aside#user-aside ul.user-aside-menu {
  margin: 0 0 20px;
  padding: 0;
  border-top: 1px solid #959595;
}
#user #wrapper aside#user-aside ul.user-aside-menu li {
  font-size: 14px;
  border-bottom: 1px solid #959595;
  line-height: 1.2;
}
#user #wrapper aside#user-aside ul.user-aside-menu li a {
  display: inline-block;
  width: 200px;
  padding: 16px;
  box-sizing: border-box;
  color: #fff;
}
#user #wrapper aside#user-aside ul.user-aside-menu li a:hover {
  background: #3FA9F5;
  transition: all 0.2s 0s ease;
}
#user #wrapper aside#user-aside ul.user-aside-menu li.user-aside-menu-active {
  background: #3FA9F5;
  padding: 16px;
}
#user #wrapper aside#user-aside ul.user-aside-menu li.user-aside-menu-active a {
  padding: 0;
  width: 180px;
}
#user #wrapper aside#user-aside ul.user-aside-external {
  margin: 0;
  padding: 0;
}
#user #wrapper aside#user-aside ul.user-aside-external li a {
  display: block;
  background: #fff;
  margin: 0 8px 20px;
  text-align: center;
  border-radius: 40px;
  line-height: 1.2;
  padding: 8px;
  font-size: 12px;
  position: relative;
}
#user #wrapper aside#user-aside ul.user-aside-external li a:after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 2px #0062C1;
  border-right: solid 2px #0062C1;
  position: absolute;
  right: 20px;
  top: 38%;
  transform: rotate(45deg);
}
#user #wrapper aside#user-aside ul.user-aside-external li a:hover {
  background: #0062C1;
  color: #fff;
  transition: all 0.2s 0s ease;
}
#user #wrapper aside#user-aside ul.user-aside-external li a:hover:after {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}
#user #wrapper main.user-main {
  background: #F4F4F4;
  box-sizing: border-box;
  padding: 0 40px;
  min-height: 86vh;
}
#user #wrapper main.user-main .user-box {
  background: #fff;
  border-radius: 8px;
  box-sizing: border-box;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
  padding: 0 16px 20px;
  margin-bottom: 20px;
}
#user #wrapper main.user-main .s-user-box {
  background: #fff;
  border-radius: 8px;
  box-sizing: border-box;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
  padding: 0 16px 20px;
  margin-bottom: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
#user table.user-table {
  border-collapse: collapse;
}
#user table.user-table tr th, #user table.user-table tr td {
  font-size: 14px;
  line-height: 1.4;
  padding: 12px 20px;
  box-sizing: border-box;
  border: none;
}
#user table.user-table tr:nth-child(even) td {
  background: #F4F4F4;
}
#user table.user-table tr th {
  font-weight: normal;
  background: #fff;
  border-bottom: 1px solid #959595;
}
#user table.user-table tr td {
  vertical-align: top;
}
#user table.user-table tr td p {
  margin: 0;
}
#user table.user-table tr td a {
  position: relative;
  line-height: 1.6;
  display: inline-block;
}
#user table.user-table tr td a:after {
  //content: "";
  width: 6px;
  height: 6px;
  border-top: solid 2px #0062C1;
  border-right: solid 2px #0062C1;
  position: absolute;
  right: -12px;
  top: 6px;
  transform: rotate(45deg);
}
#user table.user-table tr td a:hover {
  text-decoration: underline;
}
#user .user-main #user-hostlist-hostlist .user-box table tr th, #user .user-main #user-hostlist-hostlist .user-box table tr td,
#user .user-main #user-delete-delete .user-box table tr th,
#user .user-main #user-delete-delete .user-box table tr td,
#user .user-main #user-changehostname-changehostname .user-box table tr th,
#user .user-main #user-changehostname-changehostname .user-box table tr td,
#user .user-main #user-renew-renew .user-box table tr th,
#user .user-main #user-renew-renew .user-box table tr td {
  font-size: 12px;
  padding: 8px 10px;
}
#user .user-main #user-hostlist-hostlist .user-box table tr th.hostlist-cell-name,
#user .user-main #user-delete-delete .user-box table tr th.hostlist-cell-name,
#user .user-main #user-changehostname-changehostname .user-box table tr th.hostlist-cell-name,
#user .user-main #user-renew-renew .user-box table tr th.hostlist-cell-name {
  width: 32%;
  min-width: 200px;
}
#user .user-main #user-hostlist-hostlist .user-box table tr th.hostlist-cell-key,
#user .user-main #user-delete-delete .user-box table tr th.hostlist-cell-key,
#user .user-main #user-changehostname-changehostname .user-box table tr th.hostlist-cell-key,
#user .user-main #user-renew-renew .user-box table tr th.hostlist-cell-key {
  width: 50%;
  min-width: 342px;
}
#user .user-main #user-hostlist-hostlist .user-box table tr th.hostlist-cell-query-num,
#user .user-main #user-delete-delete .user-box table tr th.hostlist-cell-query-num,
#user .user-main #user-changehostname-changehostname .user-box table tr th.hostlist-cell-query-num,
#user .user-main #user-renew-renew .user-box table tr th.hostlist-cell-query-num {
  min-width: 56px;
}
#user .user-main #user-hostlist-hostlist .user-box table tr th.hostlist-cell-query-date,
#user .user-main #user-delete-delete .user-box table tr th.hostlist-cell-query-date,
#user .user-main #user-changehostname-changehostname .user-box table tr th.hostlist-cell-query-date,
#user .user-main #user-renew-renew .user-box table tr th.hostlist-cell-query-date {
  min-width: 76px;
}
#user .user-main #user-hostlist-hostlist .user-box table tr th.hostlist-cell-renew-num,
#user .user-main #user-delete-delete .user-box table tr th.hostlist-cell-renew-num,
#user .user-main #user-changehostname-changehostname .user-box table tr th.hostlist-cell-renew-num,
#user .user-main #user-renew-renew .user-box table tr th.hostlist-cell-renew-num {
  min-width: 56px;
}
#user .user-main #user-hostlist-hostlist .user-box table tr th.hostlist-cell-renew-date,
#user .user-main #user-delete-delete .user-box table tr th.hostlist-cell-renew-date,
#user .user-main #user-changehostname-changehostname .user-box table tr th.hostlist-cell-renew-date,
#user .user-main #user-renew-renew .user-box table tr th.hostlist-cell-renew-date {
  min-width: 94px;
}
#user .user-main #user-hostlist-hostlist .user-box table tr th.hostlist-cell-create-date,
#user .user-main #user-delete-delete .user-box table tr th.hostlist-cell-create-date,
#user .user-main #user-changehostname-changehostname .user-box table tr th.hostlist-cell-create-date,
#user .user-main #user-renew-renew .user-box table tr th.hostlist-cell-create-date {
  min-width: 76px;
}
#user .user-main #user-hostlist-hostlist .user-box table tr th.hostlist-cell-control,
#user .user-main #user-delete-delete .user-box table tr th.hostlist-cell-control,
#user .user-main #user-changehostname-changehostname .user-box table tr th.hostlist-cell-control,
#user .user-main #user-renew-renew .user-box table tr th.hostlist-cell-control {
  width: 120px;
  min-width: 120px;
}
#user .user-main #user-hostlist-hostlist .user-box table tr:nth-child(even) td,
#user .user-main #user-delete-delete .user-box table tr:nth-child(even) td,
#user .user-main #user-changehostname-changehostname .user-box table tr:nth-child(even) td,
#user .user-main #user-renew-renew .user-box table tr:nth-child(even) td {
  background: #F4F4F4;
}
#user .user-main #user-hostlist-hostlist .user-box table tr td .hostlist-name,
#user .user-main #user-delete-delete .user-box table tr td .hostlist-name,
#user .user-main #user-changehostname-changehostname .user-box table tr td .hostlist-name,
#user .user-main #user-renew-renew .user-box table tr td .hostlist-name {
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: bold;
}
#user .user-main #user-hostlist-hostlist .user-box table tr td .hostlist-ipaddress-ttl,
#user .user-main #user-delete-delete .user-box table tr td .hostlist-ipaddress-ttl,
#user .user-main #user-changehostname-changehostname .user-box table tr td .hostlist-ipaddress-ttl,
#user .user-main #user-renew-renew .user-box table tr td .hostlist-ipaddress-ttl {
  font-weight: bold;
}
#user .user-main #user-hostlist-hostlist .user-box table tr td dl,
#user .user-main #user-delete-delete .user-box table tr td dl,
#user .user-main #user-changehostname-changehostname .user-box table tr td dl,
#user .user-main #user-renew-renew .user-box table tr td dl {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin: 0;
}
#user .user-main #user-hostlist-hostlist .user-box table tr td dl dt,
#user .user-main #user-delete-delete .user-box table tr td dl dt,
#user .user-main #user-changehostname-changehostname .user-box table tr td dl dt,
#user .user-main #user-renew-renew .user-box table tr td dl dt {
  flex-basis: 110px;
  flex-shrink: 0;
}
#user .user-main #user-hostlist-hostlist .user-box table tr td dl dd,
#user .user-main #user-delete-delete .user-box table tr td dl dd,
#user .user-main #user-changehostname-changehostname .user-box table tr td dl dd,
#user .user-main #user-renew-renew .user-box table tr td dl dd {
  flex: 1;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}
#user #user-history-detail .user-detail-set,
#user #user-info-info .user-detail-set {
  padding: 20px 16px !important;
}
#user #user-history-detail .user-detail-set .user-detail-list,
#user #user-info-info .user-detail-set .user-detail-list {
  margin: 0;
  padding: 0;
}
#user #user-history-detail .user-detail-set .user-detail-list div,
#user #user-info-info .user-detail-set .user-detail-list div {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
  padding: 8px;
}
#user #user-history-detail .user-detail-set .user-detail-list div:nth-child(odd),
#user #user-info-info .user-detail-set .user-detail-list div:nth-child(odd) {
  background: #F4F4F4;
}
#user #user-history-detail .user-detail-set .user-detail-list div dt,
#user #user-info-info .user-detail-set .user-detail-list div dt {
  width: 200px;
}
#user #user-history-detail .user-detail-set .user-detail-list div dd,
#user #user-info-info .user-detail-set .user-detail-list div dd {
  flex-grow: 1;
}
#user #user-history-detail .user-detail-set .user-detail-list div dd a,
#user #user-info-info .user-detail-set .user-detail-list div dd a {
  position: relative;
  line-height: 1.6;
  display: inline-block;
  margin-left: 20px;
}
#user #user-history-detail .user-detail-set .user-detail-list div dd a:after,
#user #user-info-info .user-detail-set .user-detail-list div dd a:after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 2px #0062C1;
  border-right: solid 2px #0062C1;
  position: absolute;
  right: -12px;
  top: 10px;
  transform: rotate(45deg);
}
#user #user-history-detail .user-detail-set .user-detail-list div dd a:hover,
#user #user-info-info .user-detail-set .user-detail-list div dd a:hover {
  text-decoration: underline;
}
#user form {
  width: 640px;
}
#user form .user-form {
  margin-bottom: 40px;
}
#user form .user-form .s-headline {
  margin-bottom: 0;
}
#user form .user-form .txt-basic {
  margin-bottom: 8px;
}
#user form .user-form .form_ex {
  margin: 0 0 8px;
}
#user form .user-form input {
  width: 540px;
}
#user form .user-form input.checkboxinput-input {
  width: -moz-fit-content;
  width: fit-content;
}
#user span.required {
  background: #C1272D;
  border-radius: 4px;
  font-size: 12px;
  color: #fff;
  line-height: 1;
  padding: 2px 4px 4px;
  margin-left: 16px;
}

#user span.recomend {
    background: #F29600;
    border-radius: 4px;
    font-size: 12px;
    color: #fff;
    line-height: 1;
    padding: 2px 4px 4px;
    margin-left: 16px;
}

#user a.btn-user {
  display: inline-block;
  position: relative;
  min-width: 80px;
  text-align: center;
  margin-right: 16px;
  padding: 4px 40px 4px 16px;
  background: #0062C1;
  color: #fff;
  border: 1px solid #0062C1;
  box-sizing: border-box;
  border-radius: 40px;
  z-index: 1;
  font-size: 14px;
}
#user a.btn-user:after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  right: 20px;
  top: 12px;
  transform: rotate(45deg);
}
#user a.btn-user:hover {
  background: #fff;
  color: #0062C1;
}
#user a.btn-user:hover::after {
  border-top: solid 2px #0062C1;
  border-right: solid 2px #0062C1;
}

.user-explain {
  margin-bottom: 12px;
}

#user-top .user-main-set .user-main-set-btn {
  display: flex;
  align-items: stretch;
}
#user-top .user-main-set a.user-top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0062C1;
  color: #fff;
  width: 240px;
  padding: 20px;
  margin-right: 40px;
  border: 1px solid #0062C1;
  box-sizing: border-box;
  border-radius: 8px;
  text-align: center;
  position: relative;
}
#user-top .user-main-set a.user-top-btn:after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  right: 20px;
  top: 44px;
  transform: rotate(45deg);
}
#user-top .user-main-set a.user-top-btn:hover {
  background: #fff;
  color: #0062C1;
  transition: all 0.2s 0s ease;
}
#user-top .user-main-set a.user-top-btn:hover:after {
  border-top: solid 2px #0062C1;
  border-right: solid 2px #0062C1;
}
#user-top #user-top-new form .newhost-hostname input {
  margin-right: 12px;
}

#user-history-history .user-history-num a {
  margin-left: 20px;
}
#user-history-history .user-history-set table tr th.hostlist-cell-name {
  width: 32%;
  min-width: 300px;
}

#user-delete .btn-wht {
  width: 46%;
  margin-right: 6%;
}
#user-delete .btn-blue {
  width: 46%;
}
#user-delete .form-attention {
  margin-bottom: 0;
}

#user-caf form {
  margin-top: 18px;
}

#user-caflist .user-caflist-set table tr td a {
  margin-right: 10px;
}

#user-cafdelete .btn-wht {
  width: 46%;
  margin-right: 6%;
}
#user-cafdelete .btn-blue {
  width: 46%;
}
#user-cafdelete .form-attention {
  margin-bottom: 0;
}
#user-cafdelete .user-caflist-set table tr td a {
  margin-right: 10px;
}

#user-info-info .user-info-sms {
  margin-left: 12px;
  font-size: 12px;
}
#user-info-info .user-info-credit-registered {
  padding: 4px 8px;
  line-height: 1;
  font-weight: bold;
  background: #0062C1;
  color: #fff;
}
#user-info-info .user-info-credit-unregistered {
  padding: 4px 8px;
  line-height: 1;
  font-weight: bold;
  background: #F29600;
  color: #fff;
}

#user-edit .checkboxinput {
  width: 540px;
  margin: 0;
}

#user-payhistory #user-payhistory-payhistory .user-table tr th, #user-payhistory #user-payhistory-payhistory .user-table tr td {
  text-align: center;
}

#user-verify form {
  margin-top: 18px;
}/*# sourceMappingURL=style.css.map */