@charset "UTF-8";
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
  padding: 0;
  margin: 0;
  background: linear-gradient(-45deg, #fff 25%, #f6fbff 25%, #f6fbff 50%, #fff 50%, #fff 75%, #f6fbff 75%, #f6fbff);
  background-size: 40px 40px;
}

body {
  padding: 0;
  margin: 0;
}

.btn,
a.btn,
button.btn {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn-flat {
  overflow: hidden;
  padding: 1rem 1rem;
  color: #fff;
  border-radius: 0;
  background: #000;
}

a.btn-flat span {
  position: relative;
}

a.btn-flat:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 500%;
  content: "";
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
  transform: translateX(-98%) translateY(-25%) rotate(45deg);
  background: #00b7ee;
}

a.btn-flat:hover:before {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
}

.legal-container {
  padding: 1rem 2rem;
}
.legal-container .title {
  display: table;
  text-align: center;
  margin: 2rem auto;
}
.legal-container .title h1 {
  display: table-cell !important;
  position: relative;
  line-height: 1.4;
  padding: 0.1em 1em;
  display: inline-block;
  color: #555555;
}
.legal-container .title h1:before, .legal-container .title h1:after {
  position: absolute;
  top: 0;
  content: "";
  width: 8px;
  height: 100%;
  display: inline-block;
}
.legal-container .title h1:before {
  border-left: solid 5px #ff9898;
  border-top: solid 5px #ff9898;
  border-bottom: solid 5px #ff9898;
  left: 0;
}
.legal-container .title h1:after {
  content: "";
  border-top: solid 5px #ff9898;
  border-right: solid 5px #ff9898;
  border-bottom: solid 5px #ff9898;
  right: 0;
}
.legal-container .contents-frame-description {
  line-height: 1.6em;
  margin-top: 1em;
  margin-bottom: 1em;
}
.legal-container .contents-frame {
  border: solid 1px #336699;
  padding: 2px;
  border-radius: 5px;
}
.legal-container .contents-frame .contents {
  border: dashed 1px rgba(51, 102, 153, 0.3);
  padding: 0.5rem;
  border-radius: 3px;
}
.legal-container .contents-frame .contents .content {
  background-color: rgba(170, 170, 170, 0.1);
  padding: 0.1rem 1rem;
}
.legal-container .contents-frame .contents .content h3 {
  padding: 0.1em 0.5em;
  /*上下 左右の余白*/
  color: #336699;
  /*文字色*/
  background: transparent;
  /*背景透明に*/
  border-left: solid 0.5rem #336699;
  /*左線*/
}
.legal-container .contents-frame .contents .content p {
  line-height: 1.9em;
}
.legal-container .contents-frame .contents .content .content-description {
  line-height: 1.5em;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.legal-container .contents-frame .contents .content > ol {
  list-style-type: decimal;
}
.legal-container .contents-frame .contents .content > ol li {
  line-height: 1.5em;
  margin-bottom: 0.5em;
}
.legal-container .contents-frame .contents .content > ol > li > ul {
  list-style: none;
}
.legal-container .contents-frame .contents .content:nth-child(n+2) {
  margin-top: 0.5rem;
}
.legal-container .footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 1rem;
}
.legal-container .footer a {
  margin: 3rem auto;
  display: inline-block;
  text-decoration: none;
  color: white;
  width: 250px;
}