
/* 01. COMMON
-------------------------------------------------------------------- */

.p-body {
  background: #B8EAFF;
  height: auto;
  overflow-y: auto;
}

.p-main {
  flex: 1 1 auto;
  min-height: 0;
}

.p-footer {
  flex: 0 0 auto;
  margin-top: 40px;
}


/* 02. conditions
-------------------------------------------------------------------- */

.p-main {
  padding: 0 18vw;
}

@media screen and (max-width: 768px) {
  .p-main {
    padding: 0 24px;
  }
}

.p-conditions {
  background-color: var(--color-white);
  filter: var(--dropshadow);
  padding: 32px 48px 48px;
  margin: 32px auto 0;
  max-width: 1200px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p-conditions {
    margin-top: 16px;
    padding: 32px 16px;
  }
}

.p-conditions__title {
  color: var(--color-primary);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p-conditions__title {
    font-size: 2rem;
  }
}

.p-conditions__contents h2 {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  padding: 0.25em 0.5em;
  margin-top: 2em;
}

.p-conditions__contents h3 {
  font-weight: 600;
  line-height: 1.4;
  margin-top: 1em;
}

.p-conditions__contents p {
  line-height: 1.6;
  margin-top: 1em;
}

.p-conditions__contents h3 + p {
  margin-top: 0.5em;
}

.p-conditions__contents ul {
  margin: 1em 0 0 2em;
}

.p-conditions__contents ul > li {
  list-style: disc;
  line-height: 1.6;
}

.p-conditions__contents ul ul {
  margin-left: 0;
}

.p-conditions__contents ul ul > li {
  list-style: none;
  background: url(../img/icon-arrow-right.svg) no-repeat left top 3px/16px;
  padding-left: 20px;
}

.p-conditions__contents ul > li:not(:first-child) {
  margin-top: 1em;
}

.p-conditions__contents ul > li a {
  color: var(--color-primary);
  text-decoration: underline;
}

@media (any-hover: hover) {
  .p-conditions__contents ul > li a:hover {
    text-decoration: none;
  }
}

.p-conditions .c-buttonArea {
  margin-top: 40px;
}