@charset "UTF-8";
/*================================================================
# リセットCSS
## Chrome/Firefox/Edgeなど、各ブラウザはそれぞれデフォルトで効くCSSを持っています。
## 何もしないと見え方が微妙に変わるので、デフォルトのCSSをリセットして
## ブラウザごとの表示の差異をなくすために書くのが「リセットCSS」です。
================================================================*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
span {
  display: inline-block;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

/*==============================================================================
# 設定
==============================================================================*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 1.7;
  letter-spacing: -0.026em;
}

.inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 36px;
  padding-right: 36px;
}

section h2 {
  font-size: 2.4rem;
}

a {
  display: block;
}
aa:hover {
  opacity: 0.5;
}

span {
  display: block;
}

.none {
  display: none;
}

/* classでnoneと指定するだけで消せる設定 */
*,
*:before,
*:after {
  box-sizing: border-box;
}

.header {
  width: 100%;
  height: 50px;
  background-color: #fff;
}
.header h1 {
  color: #FFF;
  font-size: 1.6rem;
  text-align: left;
  padding: 12px 24px;
}
.header h1 a {
  text-decoration: none;
  color: #FFF;
}

main {
  padding-top: 80px;
  padding-bottom: 50px;
}

/*==============================================================================
# top
==============================================================================*/
.section-conditions {
  text-align: center;
  /* __section-conditions */
}
.section-conditions h1 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  position: relative;
  display: inline-block;
  margin: auto;
}
@media (max-width: 767.9px) {
  .section-conditions h1 {
    font-size: 24px;
  }
}
.section-conditions h1::after {
  position: absolute;
  content: "";
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 6px;
  background-color: #7b56e0;
  border-radius: 6px;
}
.section-conditions hr {
  border: none;
  border-bottom: 1px solid #f2f2f2;
  margin: 0;
}
.section-conditions__lead {
  margin: 0 auto;
  padding: 0 3%;
}
.section-conditions__lead p {
  padding-top: 60px;
  text-align: left;
  max-width: 820px;
  margin: 0 auto;
  padding-bottom: 36px;
}

span {
  display: inline-block;
}

.bold {
  font-weight: 600;
}

.hyperlink {
  color: #007bff;
  text-decoration: underline;
  cursor: pointer;
  display: inline-block;
}
.hyperlink:hover {
  color: #0056b3;
  text-decoration: underline;
}

.container {
  max-width: 950px;
  margin: 0 auto;
  /* container */
}
.container__content {
  width: 100%;
  text-align: justify;
  border-top: 2px dashed #f2f2f2;
  padding-bottom: 32px;
  /* __content */
}
.container__content:first-child {
  padding-top: 42px;
}
.container__content:nth-child(n+2) {
  padding-top: 30px;
}
.container__content__headline {
  margin: 0 auto;
  max-width: 800px;
}
.container__content__headline h2 {
  font-size: 20px;
  font-weight: 700;
  position: relative;
  max-width: 800px;
}
.container__content__headline h2::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -22px;
  transform: translateY(-50%);
  background-color: #8b6ce0;
  width: 6px;
  height: 30px;
}
.container__content__list {
  max-width: 900px;
  list-style: none;
  margin: 12px auto -16px;
  font-size: 16px;
  counter-reset: number;
}
.container__content__list__items {
  padding: 2px 0 12px 48.5px;
  font-weight: normal;
  position: relative;
}
@media (max-width: 767.9px) {
  .container__content__list__items {
    padding: 2px 0 12px 28.5px;
  }
}
.container__content__list__items::before {
  counter-increment: number;
  content: counter(number) "-";
  position: absolute;
  left: 22px;
  font-weight: 700;
  font-size: 16px;
}
@media (max-width: 767.9px) {
  .container__content__list__items::before {
    left: 2px;
  }
}
.container__content__list__items h3 {
  font-weight: 500;
}
.container__content__list__items__list {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 2px solid #f2f2f2;
  border-radius: 6px;
  margin-top: 28px;
  margin-bottom: 26px;
  max-width: 760px;
}
.container__content__list__items__list:not(.dai11) {
  margin-left: -48.5px;
}
@media (max-width: 767.9px) {
  .container__content__list__items__list:not(.dai11) {
    margin-left: -28.5px;
  }
}
.container__content__list__items__list__items__title {
  font-weight: 700;
  font-size: 15px;
  position: relative;
}
.container__content__list__items__list__items__title::before {
  position: absolute;
  content: "・";
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: #8b6ce0;
}
.container__content__list__items__list.dai11 {
  padding: 20px 20px 20px 46px;
  border: 2px solid #f2f2f2;
  font-size: 14px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: -28.5px;
  counter-set: cnt;
}
.container__content__list__items__list.dai11 li::before {
  counter-increment: cnt;
  content: "(" counter(cnt) ")";
  display: inline-block;
  margin-left: -2em;
  width: 2em;
}
.container__content__list:not(:has(.container__content__list__items:nth-of-type(2))) .container__content__list__items {
  padding: 2px 0 28px 28.5px;
}
.container__content__list:not(:has(.container__content__list__items:nth-of-type(2))) .container__content__list__items::before {
  content: none;
}
.container__content__list:not(:has(.container__content__list__items:nth-of-type(2))) .container__content__list__items__list {
  margin-left: -8.5px;
}
@media (max-width: 767.9px) {
  .container__content__list:not(:has(.container__content__list__items:nth-of-type(2))) .container__content__list__items__list {
    margin-left: -28.5px;
  }
}

/*==============================================================================
# 変更履歴ホバー表示
==============================================================================*/
.footer-history {
  text-align: right;
  margin: 0 auto 60px;
  max-width: 1030px;
  padding-right: 40px;
  padding-left: 40px;
}
.footer-history .history-wrapper {
  display: inline-block;
  width: auto;
  position: relative;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  margin-top: 8px;
  color: #8b6ce0;
  font-weight: 400;
}
.footer-history .history-wrapper .history-popover {
  white-space: nowrap;
  position: absolute;
  bottom: 100%;
  right: 0;
  background: #fff;
  border: 2px solid #f2f2f2;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 16px 20px;
  display: none;
  z-index: 100;
  margin-bottom: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #333333;
  line-height: 1.7;
  letter-spacing: -0.026em;
}
@media (max-width: 767.9px) {
  .footer-history .history-wrapper .history-popover {
    right: -20px;
    font-size: 14px;
    padding: 16px 20px;
  }
}
.footer-history .history-wrapper .history-popover::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 20px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
}
@media (max-width: 767.9px) {
  .footer-history .history-wrapper .history-popover::after {
    right: 32px;
  }
}
.footer-history .history-wrapper .history-popover::before {
  content: "";
  position: absolute;
  bottom: -12px;
  right: 18px;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #f2f2f2;
  z-index: -1;
}
@media (max-width: 767.9px) {
  .footer-history .history-wrapper .history-popover::before {
    right: 31px;
  }
}
.footer-history .history-wrapper .history-popover p {
  margin: 0 0 8px 0;
  font-weight: 400;
}
.footer-history .history-wrapper .history-popover p:last-child {
  margin-bottom: 0;
}
.footer-history .history-wrapper:hover {
  color: #7b56e0;
}
.footer-history .history-wrapper:hover .history-popover {
  display: block;
}/*# sourceMappingURL=main.css.map */