@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}
.global-header{
  background: white;
  padding: 10px 0;
}
.global-header__constainer {
  max-width: 1100px;
  width: 100%;
  padding: 0 20px;
  margin: auto;
display: flex;
  justify-content: space-between;
  align-items: center;
}

h1.global-header_logo{
  width: fit-content;
}

.global-header__list {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  margin-bottom: 0;
}
.global-header__list li {
  font-size: 15px;
}
.global-header__list li a {
  color: black;
  padding: 0 10px;
}
@media (max-width: 768px) {
  .global-header__constainer {
    display: block;
  }  
}
.login {
  width: 100%;
  max-width: 568px;
  margin: 104px auto 0;
}

.login__heading {
  text-align: center;
  padding-bottom: 20px;
  font-weight: 500;
}

.login-panel {
  box-sizing: border-box;
  padding: 40px;
  background: #f5f5f5;
  border-radius: 4px;
}

.login-panel__heading {
  font-weight: 500;
  font-size: 16px;
}

.login-panel__note {
  font-size: 14px;
}

.login-panel__note a {
  color: #009fe8;
  text-decoration: none;
}

.login-panel__acceptance_center {
  text-align: center;
}

.login-panel__acceptance {
  font-size: 16px;
}

.login-panel__acceptance_login {
  font-size: 16px;
  text
}
.login-panel__buttons {
  margin-top: 40px;
  display: flex;
  justify-content: space-around;
}

.login-panel__buttons--primary {
  display: flex;
  max-width: 200px;
  width: 100%;
  height: 60px;
  justify-content: center;
  align-items: center;
  background: #009fe8;
  border-radius: 5px;
  color: white;
  text-decoration: none;
}

.login-panel__buttons--secondary {
  display: flex;
  max-width: 200px;
  width: 100%;
  height: 60px;
  justify-content: center;
  align-items: center;
  background: #d9d9d9;
  border-radius: 5px;
  color: black;
  text-decoration: none;
}

.login-panel__form-item dt {
  font-size: 16px;
  font-weight: 500;
}

.login-panel__form-item dd {
  margin-top: 10px;
  margin-left: 0;
}

.login-panel__form-item dd input {
  width: 100%;
  background: #ffffff;
  height: 50px;
  padding: 0 10px;
  box-sizing: border-box;
  border: 0;
  border-radius: 4px;
}

.login-panel__agreement-item dt{

}

.login-panel__agreement-item dd{
  height: 200px;
  overflow-y: scroll;
  width: 100%;
  background: #ffffff;
  padding: 0 10px;
  box-sizing: border-box;
  border: 0;
  border-radius: 4px;
}

.wrap {
  display: flex;
}

.side {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  padding: 40px;
  width: 310px;
  height: 100vh;
  box-sizing: border-box;
  background: #f5f5f5;
}
@media (max-width: 768px) {
  .side {
    top: 0;
    left: 100%;
    width: 100%;
    transition: 0.2s;
  }
  .side.active {
    width: 100%;
    height: 100%;
    left: 0;
  }
}

.side hr {
  margin-top: 20px;
  border-color: #d9d9d9;
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
}

.side__logo span {
  font-size: 16px;
  font-weight: 500;
  color: black;
}

.side-menu {
  list-style-type: none;
}

.side-menu__item {
  margin-top: 20px;
}

.side-menu__link {
  display: block;
  color: black;
  text-decoration: none;
  padding-left: 40px;
  font-size: 16px;
  font-weight: 500;
}

.side-menu__link.type01 {
  background: url(../images/icon01.png) no-repeat 0 50% / auto;
}

.side-menu__link.type02 {
  background: url(../images/icon02.png) no-repeat 0 50% / auto;
}

.side-menu__link.type03 {
  background: url(../images/icon03.png) no-repeat 0 50% / auto;
}

.side-menu__link.type04 {
  background: url(../images/icon04.png) no-repeat 0 50% / auto;
}

.side-menu__link.type05 {
  background: url(../images/icon05.png) no-repeat 0 50% / auto;
}

.side-menu__link.type06 {
  background: url(../images/icon06.png) no-repeat 0 2px / auto;
}

.side-menu__link.type07 {
  background: url(../images/icon07.png) no-repeat 0 2px / auto;
}

.main {
  margin-left: 310px;
  padding: 80px 0;
  width: calc(100% - 310px);
}

.main-top{
  padding: 0;
}

.main-container {
  max-width: 1100px;
  width: 100%;
  padding: 0 20px;
  margin: auto;
  box-sizing: border-box;
}

.main-heading {
  font-size: 32px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .main {
    margin-left: 0;
    padding: 60px 0 40px;
    width: 100%;
  }
.main-top{
    padding: 0;
  }
  .main-heading {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
  }
}

.main-heading.type01 {
  padding-left: 50px;
  background: url(../images/icon01-l.png) no-repeat 0 5px / auto;
}

.main-heading.type04 {
  padding-left: 50px;
  background: url(../images/icon04-l.png) no-repeat 0 5px / auto;
}

.main-heading.type05 {
  padding-left: 50px;
  background: url(../images/icon05-l.png) no-repeat 0 5px / auto;
}

.news {
  padding: 40px 0;
}

.news__heading {
  font-size: 16px;
  padding-left: 30px;
  background: url(../images/icon02.png) no-repeat 0 50% / auto;
}

.news__list {
  list-style-type: none;
  margin-top: 14px;
}

.news__item a {
  display: flex;
  padding: 20px;
  color: black;
  text-decoration: none;
}

.news__item:nth-of-type(odd) a {
  background: #ecf9ff url(../images/right-arrow-blue.png) no-repeat right 20px top 50% / auto;
}

.news__item:nth-of-type(even) a {
  background: white url(../images/right-arrow-blue.png) no-repeat right 20px top 50% / auto;
}

.content-footer-link {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}

.content-footer-link__link {
  font-weight: 500;
  font-size: 16px;
  color: #009fe8;
  text-decoration: none;
  padding-right: 30px;
  background: url(../images/right-arrow-blue-square.png) no-repeat 100% 50% / auto;
}

.dashboard-others {
  display: flex;
  justify-content: space-between;
}

.dashboard-others__item {
  flex-basis: calc(50% - 10px);
}

.dashboard-others__item p {
  font-size: 16px;
  text-align: justify;
  margin-bottom: 20px;
}

.basic-heading {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-left: 4px solid #009fe8;
  background: #ecf9ff;
}

.basic-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  height: 60px;
}

.basic-button.primary {
  background: #009fe8;
  color: white;
}

.basic-button.dark {
  background: #71717a;
  color: white;
}

.basic-button.next::after {
  position: relative;
  top: 3px;
  left: 5px;
  content: url(../images/right-arrow-white.png);
}
.news-footer {
  margin-top: 40px;
}
.news-footer__group {
  display: flex;
  justify-content: space-between;
}

.back__button {
  color: #009fe8;
  text-decoration: none;
  padding-left: 30px;
  background: url(../images/left-arrow-blue-square.png) no-repeat 0 100% / auto;
}

.news-pagenation {
  display: flex;
}

.news-pagenation .prev,
.news-pagenation .previouspostslink {
  position: relative;
  display: flex;
  text-decoration: none;
  background: #009fe8;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-pagenation .prev::before,
.news-pagenation .previouspostslink::before {
  position: absolute;
  top: calc(50% + 3px);
  left: calc(50% -5px);
  content: '';
  display: block;
  width: 10px;
  height: 2px;
  transform: rotate(45deg);
  background: white;
}
.news-pagenation .prev::after,
.news-pagenation .previouspostslink::after {
  position: absolute;
  top: calc(50% - 3px);
  left: calc(50% -5px);
  content: '';
  display: block;
  width: 10px;
  height: 2px;
  transform: rotate(-45deg);
  background: white;
}
.news-pagenation .next,
.news-pagenation .nextpostslink {
  position: relative;
  display: flex;
  text-decoration: none;
  background: #009fe8;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-pagenation .next::before,
.news-pagenation .nextpostslink::before {
  position: absolute;
  top: calc(50% + 3px);
  left: calc(50% -5px);
  content: '';
  display: block;
  width: 10px;
  height: 2px;
  transform: rotate(-45deg);
  background: white;
}
.news-pagenation .next::after,
.news-pagenation .nextpostslink::after {
  position: absolute;
  top: calc(50% - 3px);
  left: calc(50% -5px);
  content: '';
  display: block;
  width: 10px;
  height: 2px;
  transform: rotate(45deg);
  background: white;
}
.news-pagenation .page {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: black;
  width: 30px;
  height: 40px;
}

.news-pagenation span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 40px;
  color: gray;
}
.mt-40 {
  margin-top: 40px;
}

.mt-20 {
  margin-top: 40px;
}

p {
  text-align: justify;
  font-size: 16px;
}

.news-detail__body p {
  text-align: justify;
}

.lead {
  margin-top: 40px;
  margin-bottom: 40px;
}

.steps {
  margin-top: 80px;
  margin-bottom: 40px;
  display: flex;
  list-style-type: none;
}

.steps__item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #d9d9d9;
}

.steps__item:not(:first-of-type) {
  margin-left: 40px;
}

.steps__item::after {
  position: absolute;
  top: -34px;
  left: calc(50% - 12.5px);
  content: '';
  display: block;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  background: #d9d9d9;
}

.steps__item:not(:first-of-type)::before {
  position: absolute;
  top: -22px;
  left: -45px;
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #d9d9d9;
}

.steps__item.current {
  color: #009fe8;
}

.steps__item.current::after {
  background: #009fe8;
}

.steps__item.current::before {
  background: #009fe8;
}

.steps__item.processed {
  color: #009fe8;
}

.steps__item.processed::after {
  background: url(../images/check-white.png) no-repeat 50% 50% / 100% 100%;
}

.steps__item.processed::before {
  background: #009fe8;
}

.basic-table {
  width: 100%;
}

.basic-table tr th {
  padding-top: 10px;
  padding-bottom: 10px;
  text-align-last: left;
  width: 35%;
}

.basic-table tr td {
  padding-top: 10px;
  padding-bottom: 10px;
  text-align-last: left;
  width: 65%;
}

.input-text {
  background: white;
  padding-left: 10px;
  padding-right: 10px;
  border: 1px solid #d4d4d8;
  height: 50px;
  border-radius: 4px;
  box-sizing: border-box;
}

select {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  background: white;
  border: 1px solid #d4d4d8;
  height: 50px;
  border-radius: 4px;
  box-sizing: border-box;
}

.w-10 {
  width: 10%;
  margin-right: 10px;
}

.w-70 {
  width: 70%;
}

.w-90 {
  width: 90%;
  margin-right: 10px;
}

.w-100 {
  width: 100%;
}

.domain-search {
  font-size: 14px;
  color: black;
  text-decoration: none;
  padding-left: 30px;
  margin-top: 10px;
  display: inline-block;
  background: url(../images/search.png) no-repeat 0 50% / auto;
}

.setting-forms__buttons {
  margin-top: 40px;
}

.setting-forms-submited {
  display: flex;
  align-items: center;
  padding: 15px 40px;
  background: #ecf9ff;
  max-width: 400px;
}

.setting-forms-submited::before {
  display: inline-block;
  margin-right: 15px;
  content: url(../images/check-white.png);
}

.product-table {
  width: 100%;
}
.product-table tr th {
  border-top: 1px solid #d9d9d9;
  padding: 15px;
  text-align: left;
}
.product-table tr td {
  border-top: 1px solid #d9d9d9;
  padding: 15px;
  text-align: left;
}
.product-table tr:last-child th {
  border-bottom: 1px solid #d9d9d9;
  padding: 15px;
}
.product-table tr:last-child td {
  border-bottom: 1px solid #d9d9d9;
  padding: 15px;
}

.basic-table {
  width: 100%;
}
.basic-table tr th {
  border-top: 1px solid #d9d9d9;
  padding: 15px;
  text-align: left;
}
.basic-table tr td {
  border-top: 1px solid #d9d9d9;
  padding: 15px;
  text-align: left;
}
.basic-table tr:last-child th {
  border-bottom: 1px solid #d9d9d9;
  padding: 15px;
}
.basic-table tr:last-child td {
  border-bottom: 1px solid #d9d9d9;
  padding: 15px;
}

.sites {
  list-style-type: none;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
}

.sites__item {
  margin: 0 5px 5px 5px;
}

.sites__link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 6px 15px;
  background: white;
  border: 1px solid #009fe8;
  color: #009fe8;
  text-decoration: none;
}

.sites__link.current {
  color: white;
  background: #009fe8;
}

.sites__label {
  display: inline-block;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 6px 15px;
  border: 1px solid #009fe8;
  color: white;
  background: #009fe8;
  text-decoration: none;
  margin: 10px 0 0;
}

.login-information__link {
  display: block;
  margin-top: 20px;
  padding-left: 30px;
  color: black;
  text-decoration: none;
  font-weight: 500;
}
.login-information__link.type05 {
  background: url(../images/icon05.png) no-repeat 0 50% / auto;
}
.login-information__link.type06 {
  background: url(../images/icon06.png) no-repeat 0 50% / auto;
}

@media (max-width: 768px) {
  .basic-table tr th {
    display: block;
    width: 100%;
    padding-bottom: 0;
    word-wrap: break-word;
    word-break: break-all;
    box-sizing: border-box;
  }

  .basic-table tr:not(:first-child) th {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .basic-table tr td {
    display: block;
    width: 100%;
    border-top: 0;
    word-wrap: break-word;
    word-break: break-all;
    box-sizing: border-box;
  }
}

@media (min-width: 769px) {
  .openbtn1 {
    display: none;
  }
}
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn1 {
  position: fixed; /*ボタン内側の基点となるためrelativeを指定*/
  top: 15px;
  right: 15px;
  z-index: 110;
  background: #009fe8;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}

/*ボタン内側*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
}

.openbtn1 span:nth-of-type(1) {
  top: 15px;
}

.openbtn1 span:nth-of-type(2) {
  top: 23px;
}

.openbtn1 span:nth-of-type(3) {
  top: 31px;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}

.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.news__title {
  padding-right: 20px;
}
.news__date {
  white-space: nowrap;
}
.news__title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .news__link {
    flex-direction: column;
  }
  .news__date {
    display: block;
  }
  .news__title {
    display: block;
  }
  .news-footer__group {
    flex-direction: column-reverse;
  }
  .news-pagenation {
    margin-bottom: 20px;
  }
  .login-panel {
    margin-left: 15px;
    margin-right: 15px;
  }
  .login-panel__buttons--primary {
    width: calc(50% - 7.5px);
  }

  .login-panel__buttons--secondary {
    width: calc(50% - 7.5px);
  }

  .product-table tr th {
    padding: 7.5px;
    font-size: 14px;
  }
  .product-table tr td {
    padding: 7.5px;
    font-size: 14px;
  }
  .product-table tr:last-child td {
    padding: 7.5px;
    font-size: 14px;
  }

  .w-10 {
    width: 25%;
    margin-right: 10px;
  }

  .w-70 {
    width: 60%;
  }

  .w-90 {
    width: 80%;
    margin-right: 10px;
  }

  .dashboard-others {
    flex-direction: column;
  }

  .dashboard-others__item:last-of-type {
    margin-top: 40px;
  }
}

.error-text {
  color: red;
  font-size: 14px;
}

button.back__button {
  border: none;
}

.flex {
  display: flex;
  gap: 10px;
  width: 100%;
}

.flex-item {
  width: 100%;
}

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

.other-updates {
  margin-top: 40px;
}
.other-updates__text {
  font-size: 18px;
}

.other-updates__link {
  margin-right: 20px;
}

.other-updates__link.current {
  color: #212529;
  pointer-events: none;
}

button {
  border: none;
}

.terms-container {
  margin-top: 102px;
}

.terms-content {
  margin-top: 60px;
}
.terms-title {
  text-align: center;
}

.wrap-icon-question{
  display: inline;
  position: relative;
}
.icon-question{
  width: 20px;
  margin-left: 5px;
  cursor: pointer;
}
.icon-question-modal{
  display: block;
  position: absolute;
  bottom: 30px;
  left: -10px;
  background-color: rgba(113, 113, 122, 0.8);
  color: white;
  width: 700px;
  padding: 5px 9px 7px;
  border-radius: 5px;
  margin-bottom: 0;
  line-height: 1.3;
  display: none;
}
.icon-question-modal::before{
  content: '';
  display: block;
  width: 10px;
  position: absolute;
  bottom: -7px;
  left: 13px;
  border-top: 8px solid rgba(113, 113, 122, 0.8);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

.text-16{
  font-size: 16px;
}

span.required_text{
  color: red;
}

.margin-top-20{
  margin-top: 20px;
}

.margin-top-40{
  margin-top: 40px;
}