@charset "UTF-8";
:root {
  --main-color: #edafcf;
  --sub-color: #f09cc2;
  --text_color: #4f5d77;
  --text_color_pink1: #f886bb;
  --text_color_pink2: #f24696;
  --text_color_gray: #909090;
  --bg_color: #fff;
  --bg_color_blue: #f9fafc;
  --bg_color_pink: #fff6f8;

  --color_white: #fff;
  --color_black: #373839;
  --color_black2: #15171a;
  --color_gray: #d0d0d0;
  --color_gray2: #eee;
  --color_gray3: #898e97;
  --color_gold: #bfad85;
  --color_red: #ff0a4b;
  
  --border_gray: 1px solid var(--color_gray);

}

/*--------------------------------------
リセットCSS
--------------------------------------*/
*, ::before, ::after { -webkit-box-sizing: border-box; box-sizing: border-box; border-style: solid; border-width: 0; } html { line-height: 1.15; -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: transparent; } body { margin: 0; } main { display: block; } p, table, blockquote, address, pre, iframe, form, figure, dl { margin: 0; } h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; margin: 0; } ul, ol { margin: 0; padding: 0; list-style: none; } dt { font-weight: 700; } dd { margin-left: 0; } hr { -webkit-box-sizing: content-box; box-sizing: content-box; height: 0; overflow: visible; border-top-width: 1px; margin: 0; clear: both; color: inherit; } pre { font-family: monospace, monospace; font-size: inherit; } address { font-style: inherit; } a { background-color: transparent; text-decoration: none; color: inherit; } abbr[title] { -webkit-text-decoration: underline dotted; text-decoration: underline dotted; } code, kbd, samp { font-family: monospace, monospace; font-size: inherit; } small { font-size: 80%; } sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sub { bottom: -0.25em; } sup { top: -0.5em; } svg, img, embed, object, iframe { vertical-align: bottom; } button, input, optgroup, select, textarea { -webkit-appearance: none; -moz-appearance: none; appearance: none; vertical-align: middle; color: inherit; font: inherit; background: transparent; padding: 0; margin: 0; border-radius: 0; text-align: inherit; text-transform: inherit; } [type=checkbox] { -webkit-appearance: checkbox; -moz-appearance: checkbox; appearance: checkbox; } [type=radio] { -webkit-appearance: radio; -moz-appearance: radio; appearance: radio; } button, [type=button], [type=reset], [type=submit] { cursor: pointer; } button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled { cursor: default; } :-moz-focusring { outline: auto; } select:disabled { opacity: inherit; } option { padding: 0; } fieldset { margin: 0; padding: 0; min-width: 0; } legend { padding: 0; } progress { vertical-align: baseline; } textarea { overflow: auto; } [type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button { height: auto; } [type=search] { outline-offset: -2px; } [type=search]::-webkit-search-decoration { -webkit-appearance: none; } ::-webkit-file-upload-button { -webkit-appearance: button; font: inherit; } label[for] { cursor: pointer; } details { display: block; } summary { display: list-item; } [contenteditable]:focus { outline: auto; } table { border-color: inherit; border-collapse: collapse; } caption { text-align: left; } td, th { vertical-align: top; padding: 0; } th { text-align: left; font-weight: normal; }

/*--------------------------------------
サイト共通定義
--------------------------------------*/
html { scroll-padding-top: 70px; }

body {
  width: 100%;
  min-width: 320px;
  /* min-height: 800px; */
  min-height: 100vh;
  background: #fff;
  color: var(--text_color);
  font-size: 14px;
  font-family: "Jost", "Helvetica Neue", Helvetica, Arial, Roboto, "Droid Sans", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

body , input[type="submit"] , input[type="reset"] , input[type="button"] {
  font-family: "Jost", "Helvetica Neue", Helvetica, Arial, Roboto, "Droid Sans", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.sp { display: block; }
.pc { display: none; }

@media (min-width: 768px) {
  .sp { display: none; }
  .pc { display: block; }
}

.tc_wihte { color: var(--color_white); }
.tc_black { color: var(--color_black); }
.tc_pink { color: var(--text_color_pink1); }
.tc_gold  { color: var(--color_gold); }
.tc_red   { color: var(--color_red); }
.atten { color: var(--color_red); font-weight: normal; }

.fs_12 { font-size: 12px; }
.fs_14 { font-size: 14px; }
.fs_16 { font-size: 16px; }
.fs_18 { font-size: 18px; }
.fs_20 { font-size: 20px; }

.bold { font-weight: bold;}

.mb_5  { margin-bottom: 5px !important; }
.mb_8  { margin-bottom: 8px !important; }
.mb_10 { margin-bottom: 10px !important; }
.mb_16 { margin-bottom: 16px !important; }
.mb_20 { margin-bottom: 20px !important; }
.mb_24 { margin-bottom: 24px !important; }
.mb_30 { margin-bottom: 30px !important; }
.mb_32 { margin-bottom: 32px !important; }
.mb_40 { margin-bottom: 40px !important; }

.left   { text-align: left; }
.center { text-align: center; }

img { max-width: 100%; height: auto; }

a:link , a:visited { transition: all .5s; }
@media (any-hover: hover) {
  a:hover { opacity: .75; }
}

/* 入力フォーム */
.register .box_input .ctl,
.ctl {
  width: 100%;
  height: 40px;
  border: solid 1px var(--color_gray);
  border-radius: 8px;
  padding: 0 10px;
}

select, label {
  cursor: pointer;
}
label {
  display: flex;
  gap: 6px;
  align-items: center;
  cursor: pointer;
}
input[type="radio"],
input[type="checkbox"]{
  accent-color: var(--text_color_pink2);
}
textarea {
  width: 100%;
  min-height: 10em;
  max-height: 30em;
  resize: vertical;
  field-sizing: content;
  padding: 10px;
  box-sizing: border-box;
  border: solid 1px var(--color_gray);
  border-radius: 8px;
  letter-spacing: 0.05em;
}
::placeholder {
  color: var(--color_gray);
  font-size: 14px;
}
@media (max-width: 767px) {
  input[type="text"], input[type="email"], textarea,
  .ctl {
    font-size: 16px;
  }
}

.select_wrap {
  background: url(/images/member/icon_arrow_gray.svg) right 12px center no-repeat, #fff;
  background-size: 13px 8px;
}

/* 生年月日 */
.box_input dd.list_wrap {
  display: flex;
  flex-wrap: wrap;
}
.box_input dd.list_wrap.birth {
  flex-wrap: nowrap;
  gap: 8px;
}
.box_input dd.list_wrap.birth .birth_wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.box_input .ctl.date {
  width: 64px;
}
/* エステの経験 */
.box_input dd.list_wrap.exp {
  gap: 16px;
}
/* 希望勤務地 */
.box_input dd.list_wrap.place {
  flex-direction: column;
  gap: 10px;
}
.box_input dd.place label {
  width: fit-content;
  font-size: 16px;
  font-weight: bold;
}
.box_input dd.place label span > span{
  font-size: 12px;
  font-weight: normal;
}
.box_input dd.place .area_dai {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  padding-right: 40px;
  border-bottom: var(--border_gray);
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}
.box_input dd.place .area_dai:before, 
.box_input dd.place .area_dai:after {
  content: '';
  position: absolute;
  right: 16px;
  bottom: 45%;
  display: block;
  width: 16px;
  height: 2px;
	border-radius: 10px;
	background: var(--sub-color);
  transition: all 0.3s ease-out;
}
.box_input dd.place .area_dai:before {
	transform: rotate(-90deg);
}
.box_input dd.place .area_dai.close:before {
	transform: rotate(-360deg);
}
.box_input dd.place .area_dai .icon_select {
  display: inline-block;
  padding: 2px 6px;
  box-sizing: border-box;
  border: 1px solid;
  border-radius: 4px;
  background: var(--color_white);
  color: var(--text_color_pink1);
  font-size: 11px;
  font-weight: normal;
  white-space: nowrap;
}
.box_input dd.place .area_box {
  display: none;
  padding: 8px;
}
.box_input dd.place label {
  font-size: 14px;
  font-weight: normal;
}
.box_input dd.place .area_chu {
  width: 100%;
  margin-bottom: 8px;
  padding: 8px;
  border-radius: 4px;
  background: #f3f5f9;
  font-weight: bold;
}
.box_input dd.place .area_box > .area_chu:first-of-type {
  background: #e9f7fe;
}
.box_input dd.place .area_sho_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 8px 16px;
  font-size: 14px;
}
@media (max-width: 767px) {
  .box_input .box_input dd.place label input {
    margin-top: 0.25em;
  }
  .box_input dd.place .area_sho_wrap {
    grid-template-columns: 1fr;
  }
}

/* 希望出勤日 */
.box_input dd.list_wrap.workday {
  gap: 8px clamp(16px, 3vw, 24px);
}
.box_input dd.list_wrap.workday .error_message {
  width: 100%;
}
@media (max-width: 767px) {
  .box_input dd.place label {
    align-items: flex-start;
  }
  .box_input dd.place label input{
    margin-top: 0.4em;
  }
  .box_input dd.place label span > span{
    display: block;
  }
}


/*--------------------------------------
会員登録画面
--------------------------------------*/
body.regist {
  background: var(--bg_color_blue);
  letter-spacing: 0.05em;
}
/* ヘッダー */
.regist header {
  display: grid;
  align-items: center;
  height: 70px;
  background: var(--main-color);
}
.regist header .logo {
  width: 260px;
  margin: 0 auto;
}

/* ボディー */
.register {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  /* min-height: calc(100vh - 120px); */
  /* margin: 64px auto; */
  padding: 64px 0;
}
.register .inner {
  width: 100%;
  max-width: 480px;
  margin: 0 20px;
}
.regist_wrap {
  padding: 0 clamp(16px, 4vw, 24px) 24px;
  background: #fff;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.05);
}

/* タイトル */
.register .title {
  padding: 24px 0 16px;
  border-bottom: var(--border_gray);
  color: var(--text_color);
  font-size: clamp(18px, 4vw, 24px);
  font-weight: bold;
  text-align: center;
}
.register .subtitle {
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--main-color);
  font-size: clamp(16px, 3vw, 20px);
  font-weight: bold;
  line-height: 1;
}

/* 枠 */
.register .box {
  background: var(--color_white);
  padding: 24px clamp(16px, 2.5vw, 24px);
}

/* フロー */
.register .box_flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, 400px);
  margin-inline: auto;
}
.register .box_flow::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  translate: -50% 0;
  z-index: 0;
  width: 70%;
  height: 1px;
  background: var(--color_gray);
}
.register .box_flow li {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  font-size: clamp(10px, 1.2vw, 12px);
  font-weight: bold;
}
.register .box_flow li span {
  display: grid;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: var(--color_gray2);
  border-radius: 999px;
  color: var(--text_color_gray);
  font-size: 16px;
}
.register .box_flow li.active span {
  background: var(--text_color_pink1);
  color: var(--color_white);
}
/* ログイン画面用 */
.register .flow_wrap {
  position: relative;
  border: var(--border_gray);
  padding: 24px 5px;
}
.register .flow_wrap p {
  position: absolute;
  z-index: 1;
  top: -0.75rem;
  left: 50%;
  translate: -50% 0;
  padding: 0 1rem;
  background: var(--color_white);
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
}
.register .flow_wrap .box_flow li {
  font-size: clamp(9px, 1.2vw, 11px);
}
.register .flow_wrap .box_flow li span {
  background: var(--color_white);
  border: 2px solid;
  color: var(--text_color_pink1);
  font-size: 16px;
}

/* テキストリンク */
.register a.link_txt {
  text-decoration: underline;
}

/* 入力フォーム */
.box_input dt {
  margin-bottom: 8px;
  font-size: 16px;
}
.box_input dt span {
  font-size: 12px;
  font-weight: normal;
}
.box_input dt:not(.forget_mail) {
  display: flex;
  align-items: center;
}
.box_input dd :is(.support_txt, .error),
.box_input dd + :is(.support_txt, .error_txt) {
  margin-top: 4px;
  font-size: 12px;
}
/* パスワード表示切り替え用 */
.box_input .password_wrap {
  position: relative;
}
.box_input .password_wrap .ctl{
  padding-right: 40px;
}
.box_input .password_wrap .showPassword {
  position: absolute;
  top: 50%;
  right: 10px;
  translate: 0 -50%;
  width: 24px;
  /* background: var(--color_white); */
  text-align: center;
  font-size: 18px;
  color: #ccc;
  cursor: pointer;
}
/* 必須・任意アイコン */
.box_input dt .required {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--text_color_pink1);
  color: var(--color_white);
  font-size: 11px;
}
.box_input dt .required.any {
  background: var(--color_gray3);
  color: var(--color_white);
}


/* ボタン */
.register .box_btn .ctl {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 400px;
  height: 50px;
  margin: 0 auto;
  text-align: center;
  color: var(--text_color_pink1);
  font-size: clamp(14px, 2vw, 16px);
  font-weight: bold;
  background: var(--color_white);
  border: solid 1px;
  border-radius: 40px;
  transition: all .5s;
}
.register .box_btn .ctl_act {
  color: var(--color_white);
  background: var(--sub-color);
  border-color: var(--sub-color);
}
.register .box_btn .ctl_back {
  color: var(--color_gray3);
}
@media (any-hover: hover) {
  .register .box_btn .ctl:hover {
    color: var(--color_white);
    background: var(--sub-color);
    border-color: var(--sub-color);
  }
  .register .box_btn .ctl_act:hover {
    color: var(--text_color_pink1);
    background: var(--color_white);
    border: solid 1px;
  }
  .register .box_btn .ctl_back:hover {
    background: var(--color_gray3);
    border-color: var(--color_gray3);
  }
  .register .box_btn .ctl_back:disabled:hover {
    background: var(--color_white);
    color: var(--color_gray3);
  }
}

/* または */
.register .box_btn .else {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}
.register .box_btn .else::before,
.register .box_btn .else::after {
  content: "";
  height: 1px;
  background: var(--color_gray);
  flex-grow: 1;
}
.register .box_btn .else::before {
  margin-right: 15px;
}
.register .box_btn .else::after {
  margin-left: 15px;
}

/* 新規登録ボタンエリア */
.register .box_btn .regist_btn {
  margin-top: 40px;
}

/* Googleアカウントボタン */
.account_btn {
  display: grid;
  grid-template-columns: 45px 1fr;
  align-items: center;
  place-items: center;
  width: 100%;
  border: solid 1px var(--color_gray);
  border-radius: 6px;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: bold;
  cursor: pointer;
  transition: all .5s;
}
@media (any-hover: hover) {
  .account_btn:hover {
    background: var(--color_gray2);
  }
}
.account_btn .img {
  border-right: solid 1px var(--color_gray);
  padding: 5px;
}
.account_btn .img img {
  width: 40px;
  height: auto;
}
@media (max-width: 374px) {
  .account_btn {
    font-size: 12px;
    white-space: nowrap;
  }
}

/* 2カラム */
.register.col .col_box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.register .box .comp {
  font-size: clamp(16px, 4vw, 20px);
  font-weight: bold;
}

@media (min-width: 768px) {
  /* プロフィール登録 */
  .register.prof .inner {
    max-width: 640px;
  }

  /* 2カラム */
  .register.col .inner {
    max-width: 920px;
  }
  .register.col .col_box {
    grid-template-columns: repeat(2, 1fr);
  }
}
