@charset "euc-jp";

/********** リセット **********/
body,form,p,hr,h1,h2,h3,h4,dl,dt,dd,select,option,input,menu {
  margin: 0;
  padding: 0;
  font-size: 12px;
}
body {
  min-width: 980px;
  background: #f6f6f6;
  font-size: 12px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;
  letter-spacing: 0.04em;
  color: #444;
}
ul,ol,dl {
  margin: 0;
  padding: 0;
  list-style: none;
}
br {
  letter-spacing: 0;
  overflow: hidden;
}
a { outline: none; }
a:link {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:active {
  text-decoration: none;
}

img { border: 0; }



/********** 内容 **********/
/***** 共通 *****/
.text.is_primary-color {
  color: #ee8aa4;
}

.text.is_warning-color {
  color: #f05151;
}

.text.is_emphasis {
  font-size: 20px;
}



.primary {
  position: relative;
  height: 100vh;
}

.section {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  width: 600px;
  padding: 20px;
  background-color: #fff;
  border-radius: 7px;
  box-shadow: 0 2px 4px rgba(238, 138, 164, .1);
  text-align: center;
  line-height: 1.5;
}


/*** ロゴ ***/
.section-logo {
  width: fit-content;
  height: 60px;
  margin: 0 auto 20px;
}

.section-logo__image {
  display: block;
  height: 100%;
}


/*** タイトル ***/
.section-title {
  margin-bottom: 10px;
  font-size: 20px;
}

.section-text:not(:last-child) {
  margin-bottom: 20px;
  font-size: 16px;
}


/*** 年齢認証 ***/
.age-verification {
  box-sizing: border-box;
  margin-bottom: 20px;
  padding: 20px;
  background-color: #ffedf1;
  border-radius: 7px;
}

.age-verification-image-wrap {
  width: 56px;
  margin: 0 auto 15px;
}

.age-verification-image {
  display: block;
  width: 100%;
  filter: invert(45%) sepia(70%) saturate(3119%) hue-rotate(333deg) brightness(97%) contrast(94%);
}

.age-verification-text {
  font-size: 15px;
}

.age-verification-text:not(:last-of-type) {
  margin-bottom: 20px;
}

.age-verification-text:last-of-type {
  margin-bottom: 15px;
}


/*** ボタン ***/
.age-verification-btn-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 0;
}

.age-verification-btn-list-item {
  width: 250px;
}

.age-verification-btn-list-item__btn {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 48px;
  padding: 12px 6px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.age-verification-btn-list-item__btn:hover {
  filter: brightness(115%);
}

.age-verification-btn-list-item__btn.is_submit {
  background: linear-gradient(to bottom, #f07d9a, #e67794);
  box-shadow: 0 1px 3px rgba(190, 33, 74, .2);
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

.age-verification-btn-list-item__btn.is_back {
  background: #fff;
  border: 1px solid #bbb;
  font-size: 14px;
  color: #333;
}