@charset "utf-8";
/* CSS Document */

/* ==================================================
  LP 共通
================================================== */
html {
  height: 100%;
  font-size: 62.5%;
}

/* ----- レスポンシブビュー（r_ = responsive_ の略） ----- */
body.r_view {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}

/* ----- ヘッダー ----- */
.lp_header {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 50px;
  background: #fff;
  border-bottom: solid 1px #eee;
}

.lp_header.type_dark {
  background: #000;
  border-bottom: none;
}

.lp_logo {
  margin-left: 10px;
}

/* ----- ボディ ----- */
.lp_container {
  flex-grow: 1;
}

/* ----- フッター ----- */
.lp_footer {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 100%;
  margin-top: auto;
  padding: 15px 0;
  background: #4d6594;
  color: #fff;
  text-align: center;
  font-size: 11px;
}

/* 成人認証
--------------------------------------------------------- */
body .remodal-overlay {
  background: rgba(0, 0, 0, 0.7)
}

body .remodal-overlay::before {
  display: block;
  width: 100%;
  height: 100%;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAPElEQVQ4T2P8////TAbiwBZilDGOGogvmEbDEHvoDI1k40tMDmBgYPAhRh3Iy6MG4gyp0TDEnVMGd7IBAMWoTtVcwv62AAAAAElFTkSuQmCC) rgba(255, 255, 255, 0.7);
  content: "";
}

#authentication-check {
  position: absolute;
  top: 50%;
  right: 10px;
  left: 10px;
  transform: translateY(-50%);
  min-width: 280px;
  max-width: 380px;
  width: auto;
  padding: 0;
  margin: auto;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  background: #fff;
}

#authentication-check::after {
  display: block;
  position: relative;
  width: 100%;
  height: 80px;
  border-radius: 0 0 5px 5px;
  background: url(https://www.dlsite.com/images/web/common/bg_adultcheck_touch.png) no-repeat center top, linear-gradient(to bottom, #bfeaff 0%,#ffffff 100%);
  background-size: 280px 320px, auto;
  content: "";
}

#authentication-check .txt-box {
  padding: 20px 15px;
  text-align: center;
}

#authentication-check h4 {
  background: #4d6594;
  color: #fff;
  padding: 15px 20px;
  border-radius: 5px 5px 0 0;
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
}

#authentication-check h5 {
  font-size: 1.8rem;
  color: #4b5f89;
  font-weight: bold;
  margin: 0 0 15px 0;
}

#authentication-check p {
  line-height: 1.5;
  font-size: 1.2rem;
}

.modal-check-btn {
  display: flex;
  margin: 15px auto 0;
}

.modal-check-btn > li:first-child {
  width: 35%;
  margin-right: 10px;
}

.modal-check-btn > li:last-child {
  flex-grow: 1;
}

.modal-check-btn li a {
  display: block;
  color: #fff;
  padding: 10px;
  font-size: 1.5rem;
  text-align: center;
  line-height: 2.6rem;
  border-radius: 4px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.2) inset;
}

.modal-check {
  color: #fff;
  background: #fa3e83;
}

.modal-check-close {
  color: #fff;
  background: #808080;
  cursor: pointer;
  cursor: hand;
}

.modal-check-btn li a:hover {
  opacity: 1;
}

/* ==================================================
  LP 個別
================================================== */
/* LP ここから（このコメントは変えてね）
--------------------------------------------------------- */