@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=M+PLUS+1p&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");

/*reset*/
body,
h1,
h2,
h3,
h4,
h5,
h6,
span,
p,
dl,
dt,
dd,
hr,
button,
header,
aside,
section,
article,
form,
input,
strong,
textarea {
  margin: 0px;
  padding: 0px;
  list-style: none;
  border: 0px;
}

* {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
}

body {
  overflow-y: hidden;
  background-position: 0%, 0%;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: "Noto Sans JP";
  /* -webkit-text-size-adjust: 100%; */
}

input,
textarea {
  border: 1px solid #231815;
  padding: 0 6px;
}

button {
  background-color: transparent;
}

img {
  pointer-events: none;
  max-width: 100%;
}

.close {
  display: none !important;
}

.inactive {
  opacity: 50%;
}

.wrap {
  display: grid;
  grid-template-rows: 10.8% 1fr 13.8%;
  position: relative;
  width: 100%;
  /* safari以外用 */
  height: 100vh;
  /* safari用 */
  height: 100dvh;
}

/* ヘッダー共通部 */
.header {
  grid-row: 1;
  position: relative;
  display: flex;
  padding: var(--spacing-3, 24px) var(--spacing-3h, 20px)
    var(--spacing-2h, 12px) var(--spacing-3h, 20px);
  align-items: center;
  justify-content: center;
  background-color: #d9e021;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.header > p {
  text-align: center;
  color: var(--color-text-default, #231815);
  text-align: center;
  /* text/heading/sm */
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  /* 27.2px */
  letter-spacing: 0.32px;
}

.header > button {
  position: absolute;
  right: 0;
  margin-right: 15.5px;
  width: 29px;
}

.header > button > img {
  width: 100%;
}

/* 本文部 */
.main {
  grid-row: 2;
  position: relative;
  z-index: 1;
}

.main-color {
  background-color: #f0f3a6;
}

/* フッター共通部 */
.footer-menu {
  grid-row: 3;
  position: relative;
  display: flex;
  padding: var(--spacing-2h, 12px) var(--spacing-none, 0) var(--spacing-3, 24px)
    var(--spacing-none, 0);
  justify-content: space-evenly;
  background: var(--color-bg-subtler, #f6fafe);
  box-shadow: 0px -1px 1px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.footer-menu > button {
  width: 76px;
}

/* オーバーレイ */
.overlay {
  position: absolute;
  width: 100%;
  height: 100vh;
  background-color: rgba(23, 16, 14, 0.8);
  pointer-events: auto;
  z-index: 2;
}

/* 共通ポップアップ */

.popup-close-area {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  z-index: 3;
}

.popup-close-area > button {
  font-size: 50px;
  color: #ffffff;
}

.common-popup {
  z-index: 2;
  position: fixed;
  width: 100%;
  /* safari以外用 */
  height: 100vh;
  /* safari用 */
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.common-popup-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  z-index: 2;
  align-items: center;
  justify-content: center;
}

.common-popup-in {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.common-popup-title {
  z-index: 3;
  width: 100%;
  margin: 0 0 24px 0;
}

.common-popup-contents {
  width: 100%;
  background-color: #ffffff;
  z-index: 3;
  position: relative;
  height: 390px;
  overflow: hidden;
}

.common-popup-contents-in {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.container {
  position: relative;
}
.center {
  overflow-y: scroll;
  box-sizing: content-box;
}

.common-area-blank {
  width: 100%;
  height: 20px;
}

.common-popup-contents-in > button {
  width: 100px;
  height: 30px;
  background-color: #d9e021;
  margin: auto;
  border: 1px solid #231815;
  color: #231815;
  margin-bottom: 20px;
}

.common-popup-contents-discription {
  width: 256px;
  margin: 20px auto 24px auto;
}

.common-popup-contents-discription > p {
  font-size: 14px;
}

.common-popup-contents-discription > p:nth-child(1) {
  font-weight: bold;
}

.popup-form-area {
  width: 256px;
  margin: 0 auto 24px auto;
}

.answer_label {
  display: flex;
  text-align: left;
  align-items: center;
  border-bottom: solid 1px #231815;
  font-weight: bold;
  margin: 0 0 16px 0;
}

.answer_label.long {
  flex-flow: column;
  align-items: flex-start;
}

.required-color {
  color: #b3201b;
  padding-left: 8px;
  font-size: 12px;
}

.answer_label.long > p {
  padding-left: 0px;
}

.radio-item {
  font-size: 14px;
  white-space: nowrap;
}

.radio-item > input {
  transform: scale(1.2);
  margin-right: 8px;
}

.age-options {
  display: grid;
  gap: 20px 56px;
  /* 行・列の間隔 */
  margin-left: 16px;
}

textarea {
  margin: auto;
  font-size: 14px;
  font-family: "Noto Sans JP";
  padding: 5px;
  width: 96%;
}

.common-area-blank {
  margin-bottom: 20px;
}
/* 共通ポップアップ */

.link {
  color: #1b6fb3;
  font-weight: bold;
}

a {
  text-decoration: none;
}

a,
a:hover,
a:visited {
  color: inherit;
}

.link > a:nth-child(2) {
  vertical-align: middle;
}

/* 共通ボタン */
.main-area-wrap > button,
.btn_next,
.confirm {
  height: 30px;
  background-color: #d9e021;
  border: 2px solid #231815;
  font-weight: bold;
  font-size: 14px;
  color: #231815;
}

.frame-list-btn,
.btn_copy {
  background-color: #228be0;
  color: #fff;
  border: 1px solid #231815;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  padding: 8px 16px;
}
