@charset "UTF-8";
:root {
  --bg_color: #f5f4f0;
  --text_color: #373839;

  --color_white: #fff;
  --color_black: #373839;
  --color_black2: #15171a;
  --color_gray: #dbddda;
  --color_gray2: #f2f3f2;
  --color_gray3: #666c71;
  --color_gold: #bfad85;
  --color_gold1: #dfcea9;
  --color_red: #a95a7f;
}

/*--------------------------------------
リセット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; } caption { text-align: left; } td, th { vertical-align: top; padding: 0; } th { text-align: left; font-weight: normal; }

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

body {
  color: var(--text_color);
  background: var(--bg_color);
  line-height: 1.6;
  margin: 0 auto;
  min-width: 320px;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  font-style: normal;
  font-size: 14px;
  position: relative;
  word-break: break-word;
}

body , input[type="submit"] , input[type="reset"] , input[type="button"] {
  font-family: "Helvetica Neue", Helvetica, Arial, Roboto, "Droid Sans", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "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_gold  { color: var(--color_gold); }
.tc_red   { color: var(--color_red); }
.required { 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; }

.fw_b { font-weight: bold; }

.mb_5  { margin-bottom: 5px !important; }
.mb_10 { margin-bottom: 10px !important; }
.mb_16 { margin-bottom: 16px !important; }
.mb_20 { margin-bottom: 20px !important; }
.mb_30 { margin-bottom: 30px !important; }
.mb_40 { margin-bottom: 40px !important; }

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

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

a:link , a:visited { color: var(--color_black); text-decoration: underline; transition: all .5s; }
a:hover { opacity: .5; }

/* 入力フォーム */
.register .box_input .ctl,
.member .ctl.ipt {
  width: 100%;
  height: 40px;
  border: solid 2px var(--color_gray);
  border-radius: 6px;
  padding: 0 10px;
}
.register .box_input .ctl::placeholder,
.member .ctl.ipt::placeholder {
  color: var(--color_gray);
  font-size: 12px;
}

@media (max-width: 768px) {
  .register .box_input .ctl,
  .member .ctl.ipt {
    font-size: 16px;
  }
}

/* 認証コードを再送信 */
.register .box_input .resend {
  width: 100%;
  height: 40px;
  border-radius: 40px;
  padding: 0 10px;
  text-align: center;
  background: var(--color_gray);
}
.register .box_input .resend:hover {
    opacity: .8;
}

/*--------------------------------------
登録画面
--------------------------------------*/
.register {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: calc(100vh - 60px);
  margin: 30px auto;
}
.register .inner {
  width: 100%;
  max-width: 380px;
  margin: 0 20px;
}

/* ロゴ */
.register .logo {
  max-width: 260px;
  margin: 0 auto 20px;
}

/* タイトル */
.register .title {
  background: var(--color_white);
  padding: 15px;
  font-size: clamp(18px,4vw,20px);
  font-weight: bold;
  text-align: center;
  margin-bottom: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

/* 枠 */
.register .box {
  background: var(--color_white);
  padding: clamp(20px,4vw,30px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

/* フロー */
.register .box_flow {
  display: flex;
  width: calc(100% - 20px);
}
.register .box_flow li,
.register .box_flow li span {
  height: 50px;
}
.register .box_flow li {
  width: calc(100% / 3);
  color: var(--color_white);
  background: var(--color_gray2);
  font-size: 10px;
  font-weight: bold;
  margin-right: 5px;
  position: relative;
}
.register .box_flow li::after {
  content: "";
  width: 0;
  height: 0;
  border: solid 25px transparent;
  border-left: solid 20px var(--color_white);
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1;
  transform: translateX(4px);
}
.register .box_flow li span {
  display: flex;
  align-items: center;
  padding-left: 6px;
  position: relative;
  z-index: 3;
}
.register .box_flow li span::after {
  content: "";
  width: 0;
  height: 0;
  border: solid 25px transparent;
  border-left: solid 20px var(--color_gray2);
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 2;
}
.register .box_flow li:nth-of-type(n + 2) span {
  padding-left: 25px;
}
.register .box_flow li.active {
  background: var(--color_black);
}
.register .box_flow li.active span::after {
  border-left: solid 20px var(--color_black);
}

/* 入力フォーム */
.register .box_input dt {
  margin-bottom: 5px;
  line-height: 1.2;
}
.register .box_input dt span {
  font-size: 11px;
}

/* パスワード表示切り替え用 */
.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;
}

/* ボタン */
.register .box_btn .ctl {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 220px;
  height: 50px;
  text-align: center;
  font-weight: bold;
  background: var(--color_white);
  border: solid 2px var(--color_black);
  border-radius: 40px;
  margin: 0 auto 10px;
  transition: all .5s;
}
.register .box_btn .ctl:hover {
  color: var(--color_white);
  background: var(--color_black);
  border: solid 2px var(--color_black);
}
.register .box_btn .ctl_act {
  color: var(--color_white);
  background: var(--color_black);
  border: solid 2px var(--color_black);
}
.register .box_btn .ctl_act:hover {
  color: var(--color_white);
  background: var(--color_gold);
  border: solid 2px var(--color_gold);
}

/* または */
.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: 20px;
}

/* Googleアカウントボタン */
.account_btn {
  width: 100%;
  border: solid 2px var(--color_gray);
  border-radius: 6px;
  font-weight: bold;
  display: grid;
  grid-template-columns: 45px 1fr;
  align-items: center;
  place-items: center;
  cursor: pointer;
  transition: all .5s;
}
.account_btn:hover {
  background: var(--color_gray2);
}
.account_btn .img {
  border-right: solid 2px var(--color_gray);
  padding: 5px;
}
.account_btn .img img {
  width: 30px;
  height: auto;
}

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

@media (min-width: 768px) {
  /* 2カラム */
  .register.col .inner {
    max-width: 790px;
  }
  .register.col .col_box {
    grid-template-columns: repeat(2, 1fr);
  }
  .register.col .col_box.login_col > section .box{
    height: 500px;
  }
}

/*--------------------------------------
会員ページ
--------------------------------------*/
.member .inner {
  width: 100%;
  max-width: 1200px;
  min-height: 100vh;
}

/* ヘッダー */
.member .header {
  color: var(--color_white);
  background: var(--color_black);
  position: relative;
}

/* フッター */
.member .footer {
  color: var(--color_white);
  background: var(--color_black);
  padding: 20px;
}
.member .footer .footer_link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px 0;
  flex-wrap: wrap;
}
.member .footer .footer_link a {
  display: inline-block;
  color: var(--color_white);
  text-decoration: none;
  border-left: solid 1px var(--color_gray3);
  padding: 0 10px;
}
.member .footer .footer_link a:first-child {
  border-left: 0;
}
.member .footer p {
  width: 100%;
  font-size: 10px;
  border-top: solid 1px var(--color_gray3);
  text-align: center;
  padding-top: 10px;
}

/* ユーザー情報 */
.member .header .user {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 5px;
  font-weight: bold;
  padding: 30px 20px 20px;
}
.member .header .user p {
  font-size: 20px;
}
.member .header .user p span {
  display: block;
  font-size: 14px;
}

/* メニュー */
.member .header ul {
  display: flex;
  width: calc(100% - 20px);
  gap: 10px;
  margin: 0 auto;
  padding: 10px 0;
}
.member .header li {
  width: 50%;
}
.member .header li a {
  display: block;
  background: var(--color_white);
  border-radius: 10px;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  text-decoration: none;
  padding: 10px 6px;
  position: relative;
  transition: none;
}
.member .header li a::after {
  display: none;
}
.member .header li a:hover {
  opacity: 1;
}
.member .header li p {
  line-height: 1.2;
}
.member .header li span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  font-size: 16px;
  color: var(--color_white);
  background: var(--color_black);
  margin: 0 auto 8px;
}

/* ログアウト */
.logout_btn_box {
    width: 120px;
    position: static;
    margin: 15px auto;
}
.logout_btn_box .logout_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color_gray);
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    text-align: center;
    width: 100%;
    height: 34px;
    font-size: 12px;
    text-decoration: none;
}
.logout_btn_box .logout_btn:hover {
    opacity: .8;
}

@media (min-width: 768px) {
  .member .inner {
    display: grid;
    grid-template-columns: 240px 1fr;
    position: relative;
  }

  /* フッター */
  .member .footer {
    width: 240px;
    position: absolute;
    bottom: 0;
    
  }
  .member .footer .footer_link {
    display: flex;
    flex-direction: column; /* 縦並び */
    align-items: flex-start; /* 左寄せ */
    gap: 12px;
    margin-bottom: 20px;
  }
  .member .footer .footer_link a {
    border-left: 0;
    padding: 0;
  }
  .member .footer p {
    text-align: left;
  }

  /* ユーザー情報 */
  .member .header .user {
    grid-template-columns: 40px 1fr;
    padding: 30px 20px;
  }
  .member .header .user p {
    font-size: 16px;
  }
  .member .header .user p span {
    font-size: 12px;
  }

  /* メニュー */
  .member .header ul {
    display: block;
    width: 100%;
    position: inherit;
  }
  .member .header li {
    width: 100%;
  }
  .member .header li:first-child {
    border-top: solid 1px var(--color_gray3);
  }
  .member .header li a {
    display: flex;
    gap: 10px;
    color: var(--color_white);
    background: var(--color_black);
    border-radius: 0;
    font-weight: normal;
    text-align: left;
    padding: 20px;
    border-bottom: solid 1px var(--color_gray3);
    transition: all .5s;
  }
  .member .header li a::after {
    display: block;
    position: absolute;
    content:"\f105";
    font-family: "FontAwesome";
    top:50%;
    right:20px;
    transform:translatey(-50%);
    color: var(--color_white);
  }
  .member .header li a:hover {
    background: var(--color_black2);
  }
  .member .header li span {
    display: inherit;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    border-radius: 0;
    font-size: 12px;
    background: none;
    margin: 0;
  }

  /* ログアウト */
  .logout_btn_box {
    width: calc(100% - 0px);
    margin: 0 auto;
  }
}

/* コンテンツ */
.member .contents {
  padding: 80px 20px;
}

/* タイトル */
.member .contents .title {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: bold;
  border-bottom: solid 4px var(--color_gray);
  padding-bottom: 15px;
  position: relative;
}
.member .contents .title::after {
  display: block;
  content: "";
  width: 180px;
  height: 4px;
  background: var(--color_gold);
  position: absolute;
  bottom: -4px;
  left: 0;
}

/* サブタイトル */
.member .contents .subtitle_01 {
  font-size: clamp(16px, 2.5vw, 18px);
  margin: clamp(30px, 7vw, 50px) 0 20px;
}
.member .contents .subtitle_01 span {
  font-weight: bold;
  margin-right: 2px;
}
.member .contents .subtitle_01 span::after {
  content: " ｜";
  color: var(--color_gold);
}

.member .contents .subtitle_02 {
  font-weight: bold;
  background: var(--bg_color);
  border-left: solid 3px var(--color_black);
  padding: 8px 8px 8px 10px;
}

/* リスト */
.member .contents .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.member .contents .list li {
  padding: 5px;
  background: var(--color_white);
}
.member .contents .list li a {
  text-decoration: none;
}
.member .contents .list li .img_box {
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 5px;
}
.member .contents .therapist .list li .img_box {
  aspect-ratio: 3 / 4;
}
.member .contents .shop .list li .img_box {
  aspect-ratio: 160 / 124;
}
.member .contents .list li .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.member .contents .list li .txt_box {
  display: flex;
  flex-wrap: wrap;
}
.member .contents .list li .txt_box * {
  width: 100%;
}
.member .contents .list li .txt_box .name {
  color: var(--color_gold);
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 6px;
}
.member .contents .list li .txt_box,
.member .contents .list li .txt_box .name span {
  font-size: 12px;
}
.member .contents .list li .txt_box .shop {
  flex-grow: 1;
  width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.member .contents .list li .txt_box .area {
  margin-bottom: 2px;
}
.member .contents .list li .txt_box .room {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.member .contents .list li .txt_box .shop span,
.member .contents .list li .txt_box .area span {
    display: inline-block;
    background: #79683F;
    width: 16px;
    padding: 2px 0 0px 3px;
    height: 16px;
    box-sizing: border-box;
    vertical-align: sub;
    margin-right: 4px;
}
.member .contents .list li .txt_box .shop span i {
    position: relative;
    left: -1px;
    color: #fff;
    font-size: 11px;
    vertical-align: top;
}
.member .contents .list li .txt_box .area span i {
    color: #fff;
    font-size: 11px;
    vertical-align: top;
}
/* アイコン */
.ic_info {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 16px;
    font-size: 11px;
    padding: 2px auto;
    border-radius: 2px;
    box-sizing: border-box;
    color: #fff;
}
/* 男性専用 */
.ic_info.mo {
    background: #366AFF;
}
/* 男女OK */
.ic_info.mw {
    background: #EE47A1;
}
/* 店舗 */
.ic_info.sp {
    background: #59A1C7;
}
/* ルーム */
.ic_info.rm {
    background: #FB8919;
}
/* 出張 */
.ic_info.tr {
    background: #97BF44;
}
/* 店・出 */
.ic_info.st {
    background: #FB4140;
}
/* ルーム・出 */
.ic_info.rt {
    background: #FC3E96;
}
/* サービス */
.ic_info.sv {
    background: #CC1932;
}
/* 割引 */
.ic_info.dis {
    background: #FB2200;
}
.ic_info.off {
    background: #CCCCCC;
}
#iconinfo1 dd {
    margin-left: 3px;
}
#iconinfo2 dd {
    margin-left: 10px;
}

/* コンテンツボックス */
.member .contents .contents_box {
  background: var(--color_white);
  padding: 20px;
  margin: clamp(30px, 7vw, 50px) 0 20px;
}
.member .contents .cancel .contents_box .box_btn{
    margin: 20px auto 0;
}

/* テーブル */
.member .contents table {
  width: 100%;
  border-collapse: collapse;
}
.member .contents table th,
.member .contents table td {
  width: 100%;
  display: block;
  font-size: clamp(12px, 2vw, 14px);
}
.member .contents table th {
  font-weight: bold;
  vertical-align: middle;
  padding: 10px clamp(5px, 1vw, 10px) 5px;
}
.member .contents table td {
  border-bottom: solid 1px var(--color_gray);
  padding: 0 clamp(5px, 1vw, 12px) 10px;
}

/* ボタン */
.member .box_btn {
  display: flex;
  gap: 10px;
  max-width: 330px;
  margin: 0 auto;
}
.member .box_btn .ctl {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 220px;
  height: 40px;
  text-align: center;
  font-weight: bold;
  background: var(--color_white);
  border: solid 2px var(--color_black);
  margin: 0 auto;
  position: relative;
  text-decoration: none;
  transition: all .5s;
}
.member .box_btn .ctl:hover {
  color: var(--color_white);
  background: var(--color_black);
  border: solid 2px var(--color_black);
  opacity: 1;
}
.member .box_btn .arrow i {
  position: absolute;
  top: 50%;
  right: 10px;
  transform:translatey(-50%);
}
.member .box_btn .ctl_reset {
  max-width: 100px;
  color: #a2a3a1;
  background: var(--color_white);
  border: solid 2px #a2a3a1;
}
.member .box_btn .ctl_reset:hover {
  color: var(--color_white);
  background: #a2a3a1;
  border: solid 2px #a2a3a1;
}

.active_menu {
  background: var(--color_gold1) !important;
}

/* ポイント履歴 */
.point-history .select-wrapper {
  position: relative;
  display: inline-block;
}
.point-history .select-wrapper select {
  padding: 5px 25px 5px 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.point-history .select-wrapper::after {
  content: "\f107";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  pointer-events: none;
}

.member .contents .point-history table {
  table-layout: fixed;
}
.member .contents .point-history table th,
.member .contents .point-history table td {
  width: 100%;
  display: table-cell;
  text-align: center;
  font-size: clamp(12px, 2vw, 14px);
}
.member .contents .point-history table th:nth-child(1),
.member .contents .point-history table td:nth-child(1) {
  width: 30%;
  vertical-align: middle;
}
.member .contents .point-history table th:nth-child(2),
.member .contents .point-history table td:nth-child(2) {
  width: 50%;
  vertical-align: middle;
}
.member .contents .point-history table th:nth-child(3),
.member .contents .point-history table td:nth-child(3) {
  width: 20%;
  vertical-align: middle;
}

/* ポイントサービスについて */
.point-service {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}
.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.member .contents .table_point_02 {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 14px;
  table-layout: auto;
  min-width: 768px;
}
.member .contents .table_point_02 th,
.member .contents .table_point_02 td {
  padding: 8px;
  border: 1px solid #ddd;
  text-align: center;
  word-break: break-word;
  white-space: normal;
  width: auto;
  display: table-cell;
  vertical-align: middle;
}
.member .contents .table_point_02 th {
  padding: 8px;
  border: 1px solid #ddd;
}
.member .contents .table_point_02 td {
  padding: 8px;
  border: 1px solid #ddd;
}

.notice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.notice-box h3 {
  font-weight: bold;
  margin-bottom: 4px;
}
.notice-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.notice-box li {
  position: relative;
  padding-left: 1.0em;
  line-height: 1.8;
}
.notice-box li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1em;
  color: #333;
}

/* 退会のお手続き */
.delete_title01 {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 20px 0;
  font-size: 16px;
  color: #B93039;
  font-weight: bold;
}
.delete_title02 {
  font-weight: bold;
  background: var(--bg_color);
  border-left: solid 3px var(--color_black);
  padding: 8px 8px 8px 10px;
  margin-bottom: 10px;
}
.delete_txt {
  margin-inline: auto;
  letter-spacing: 0.05em;
}
.delete_txt ul li {
  position: relative;
  padding-left: 1em;
}
.delete_txt ul li:before {
  content: '';
  position: absolute;
  top: 0.6em;
  left: 5px;
  width: 3px;
  height: 3px;
  border-radius: 10px;
  background: var(--text_color);
}
.delete_txt .box_btn {
  flex-direction: column;
}
.delete_txt .box_btn .ctl{
  max-width: 240px;
}
.delete_txt .box_btn .quit_btn {
  background: var(--color_black);
  border-color: var(--color_black);
  color: #fff;
}
.delete_txt .box_btn .quit_btn:disabled {
  background: var(--color_white);
  border: solid 2px var(--color_gray);
  color: var(--color_gray);
}
.agree_box label{
  display: flex;
  gap: 6px;
  cursor: pointer;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 40px;
  padding: 10px;
  border-radius: 4px;
  background: var(--color_white);
}
.complete {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 20px 0;
  font-size: 16px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .table-wrap {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #999 #f0f0f0;
  }
  .table-wrap::-webkit-scrollbar {
    height: 6px;
  }
  .table-wrap::-webkit-scrollbar-track {
    background: #f0f0f0;
  }
  .table-wrap::-webkit-scrollbar-thumb {
    background-color: #999;
    border-radius: 3px;
  }
  .table-wrap table {
    display: table !important;
    width: max-content !important;
    min-width: unset !important;
  }
  .point-history table {
    width: 100% !important;
  }
}
@media (min-width: 768px) {
  /* コンテンツ */
  .member .contents {
    padding: clamp(20px,4vw,40px);
  }

  /* リスト */
  .member .contents .list {
    grid-template-columns: repeat(4, 1fr);
  }

  /* テーブル */
  .member .contents table th,
  .member .contents table td {
    width: 50%;
    display: table-cell;
    border-bottom: solid 1px var(--color_gray);
    padding: 10px clamp(5px, 1vw, 10px);
  }
  .member .contents table th {
    width: 20%;
  }
  .member .contents .point-history table th,
  .member .contents .point-history table td {
    width: 100%;
    display: table-cell;
    border-bottom: solid 1px var(--color_gray);
    padding: 10px clamp(5px, 1vw, 10px);
  }

  .table-wrap {
    overflow-x: visible;
  }
  .member .contents .table_point_02,
  .member .contents .point-history table {
    display: table;
    table-layout: fixed;
    min-width: unset;
  }
  .member .contents .table_point_02 {
    table-layout: fixed;
    min-width: unset;
  }

  .active_menu {
    background: var(--color_black2) !important;
  }

  .notice-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  /* リスト */
  .member .contents .list {
    grid-template-columns: repeat(6, 1fr);
  }
}