
html {
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  min-width: 320px;
  min-height: 100%;
  margin: auto;
}
.left_content {
  display: none;
  z-index: -1;
}
.main_container {
  margin: 0 auto;
  /*height: 100vh;*/
  min-height: 100%;
  /*box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.25);*/
}
.right_content {
  display: none;
}

/* ハートコア開発環境限定の対応 */
//.WCMmenucontainer {
//  display: none;
//}
//#WCMpagecontainer{
//  //margin-top: -8.27vw;
//}


/* 処理中ダイアログ */
#processing_dialog_area {
  display: flex;
  width: 100%;
  height: 100%;
  z-index: 100000;
  position: fixed;
  top: 0;
  /* background-color: rgba(0, 0, 0, 0.45); */
  /* background-color: rgba(0, 0, 0, 0.05); */
  /* background-color: rgba(255, 255, 255, 0.0); */
  background-color: #d9bbcfe3;
}
/* 処理中アニメーション */
.wrapper {
  width: 46.5vw;
  height: 14vw;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@keyframes circle {
  0% {
    top: 3.72vw;
    height: 1.16vw;
    border-radius: 11.63vw 11.63vw 5.81vw 5.81vw;
    transform: scaleX(1.8);
  }
  40% {
    /* height:60px; */
    border-radius: 50%;
    transform: scaleX(1);
  }
  100% {
    top: 0%;
  }
}

.circle {
  position: absolute;
  left: 15%;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 6.5vw;
  transform-origin: 50%;
  animation: circle 0.5s alternate infinite ease;
}

.circle:nth-child(2) {
  left: 45%;
  animation-delay: 0.2s;
}
.circle:nth-child(3) {
  left: auto;
  right: 16%;
  animation-delay: 0.3s;
}
.shadow {
  width: 4.65vw;
  height: 0.93vw;
  border-radius: 50%;
  /* background-color: rgba(255, 255,255, 255); */
  background-color: #ffffff;
  position: absolute;
  top: 10vw;
  transform-origin: 50%;
  z-index: -1;
  left: 15%;
  /* filter: blur(1px); */
  animation: shadow 0.5s alternate infinite ease;
}

@keyframes shadow {
  0% {
    transform: scaleX(1.5);
    /* opacity: 1; */
  }
  40% {
    transform: scaleX(1);
    /* opacity: 0.5; */
  }
  100% {
    transform: scaleX(0.2);
    /* opacity: .0.1; */
  }
}
.shadow:nth-child(4) {
  left: 45%;
  animation-delay: 0.2s;
}
.shadow:nth-child(5) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}
.wrapper span{
    position: absolute;
    top: 15vw;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 5.81vw;
    letter-spacing: 1.5vw;
    color: #FFFFFF;
    left: 16%;
}

/**********************
 * モーダルコンテンツ *
 **********************/
.modal-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 10000;
}
.modal-container .modal_contens_wrapper {
  width: 90vw;
  /*height: 62.79vw;*/
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 4.65vw;
  background-color: #fff;
  box-shadow: 0px 0.93vw 0.93vw 0px rgba(0, 0, 0, 0.15);
}
.modal_contens_wrapper .modal_close {
  width: 6.51vw;
  height: 6.51vw;
  padding-top: 2.56vw;
  cursor: pointer;
  margin-left: 80.47vw;
}
.modal_contens_wrapper .modal_contens {
  display: block;
  width: 72vw;
  margin: 0 auto;
}
.modal_contens .error_img {
  display: block;
  width: 27.21vw;
  height: 24.19vw;
  margin: 0 auto;
  object-fit: contain;
}
.modal_contens .error_title {
  padding-top: 4.19vw;
  color: #222;
  text-align: center;
  font-size: 4.65vw;
  font-style: normal;
  font-weight: 700;
    font-family: "Zen Kaku Gothic Antique";
  line-height: 4.65vw;
  letter-spacing: 0.09vw;
}
.modal_contens .error_text {
  padding-top: 3.49vw;
  color: #222;
  text-align: center;
  font-size: 3.72vw;
  font-style: normal;
  font-family: "Zen Kaku Gothic Antique";
  font-weight: 500;
  line-height: 6.67vw;
  letter-spacing: 0.07vw;
  margin-top: 3.72vw;
  margin-bottom: 6.33vw;
}
.modal_contens .transition_button {
  display: block;
  /*width: 67.44vw;*/
  background-color: #fff;
  border: 0.47vw solid #ADADAD;
  font-family: "Zen Kaku Gothic Antique";
  color: #ADADAD;
  font-size: 4.19vw;
  font-style: normal;
  font-weight: 700;
  line-height: 4.65vw;
  letter-spacing: 0.23vw;
  border-radius: 6.3vw;
  padding: 3.95vw 0;
  margin-top: 4.65vw;
  margin-bottom: 7.44vw;
  margin-left: -5.00vw;
  margin-right: -5.00vw;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  body {
    min-width: 100%;
  }
  .pc_bg {
    background-color: #D9BBCF;
    position: fixed;
    z-index: -5;
    width: 100%;
    height: 100vh;
  }
  .main_container {
    width: 430px;
  }

  /* 左側のコンテンツ */
  .left_content {
    display: grid;
    position: fixed;
    top: 40%;
    left: calc(184 / 1440 * 100vw);
  }
  .left_logo {
    width: 167px;
    height: 142px;
  }
  .left_text {
    display: block;
    width: 127px;
    padding: 26px 0 0;
  }
  /* 右側のコンテンツ */
  .right_content {
    display: flex;
    position: fixed;
    top: 40%;
    left: calc(1080 / 1440 * 97vw);
    z-index: 1;
    text-align: left;
  }
  .right_content .nav {
    width: 240px;
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(7, auto);
    gap: 16px;
  }
  .right_content .nav_item {
    position: relative;
    pointer-events: all;
    transition: 0.2s;
  }
  .right_content .nav_item .nav_link {
    display: block;
    width: 100%;
    color: #fff;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1;
    padding: 8px 0 8px 42px;
  }
  .right_content .nav_item:hover:not(.nav_link_is-active) {
    background: rgba(204, 121, 217, 0.2);
    border-radius: 100vh;
  }
  .right_content .nav_item.nav_link_is-active {
    background-color: #fff;
    border-radius: 100vh;
  }
  .right_content .nav_item.nav_link_is-active::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 16px;
    background: #ffc0a1;
    width: 12px;
    height: 12px;
    border-radius: 100vh;
    transform: translateY(-50%);
  }
  .right_content .nav_item.nav_link_is-active .nav_link {
    color: #eb5959;
  }

  /* 処理中アニメーション */
  .wrapper {
    width: 430px;
    height: 14vw;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  /* 処理中パーツ */
  .circle {
    position: absolute;
    left: 30%;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 30px;
    transform-origin: 50%;
    animation: circle 0.5s alternate infinite ease;
  }
  .circle:nth-child(2) {
    left: 46%;
    animation-delay: 0.2s;
  }
  .circle:nth-child(3) {
    left: auto;
    right: 33%;
    animation-delay: 0.3s;
  }
  .shadow {
    width: 40px;
    height: 10px;
    border-radius: 50%;
    background-color: #ffffff;
    position: absolute;
    top: 75px;
    transform-origin: 50%;
    z-index: -1;
    left: 28%;
    animation: shadow 0.5s alternate infinite ease;
  }
  .shadow:nth-child(4) {
    left: 44%;
    animation-delay: 0.2s;
  }
  .shadow:nth-child(5) {
    left: auto;
    right: 30%;
    animation-delay: 0.3s;
  }
  .wrapper span{
    position: absolute;
    top: 120px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 30px;
    letter-spacing: 10px;
    color: #FFFFFF;
    left: 29%;
  }

  /**********************
   * モーダルコンテンツ *
   **********************/
  .modal-container .modal_contens_wrapper {
    width: 387px;
    /*height: 270px;*/
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  }
  .modal_contens_wrapper .modal_close {
    width: 28px;
    height: 28px;
    padding-top: 11px;
    margin-left: 346px;
  }
  .modal_contens_wrapper .modal_contens {
    width: 270px;
  }
  .modal_contens .error_img {
    width: 117px;
    height: 104px;
  }
  .modal_contens .error_title {
    padding-top: 18px;
    font-size: 20px;
    font-family: "Zen Kaku Gothic Antique";
    line-height: 20px;
    letter-spacing: 0.4px;
  }
  .modal_contens .error_text {
    padding-top: 15px;
    font-size: 16px;
    font-family: "Zen Kaku Gothic Antique";
    line-height: 25px;
    letter-spacing: 0.32px;
    margin-top: 16px;
    margin-bottom: 20px;
  }
  .modal_contens .transition_button {
    display: block;
    background-color: #fff;
    border: 2px solid #ADADAD;
    font-family: "Zen Kaku Gothic Antique";
    color: #ADADAD;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.9px;
    border-radius: 50px;
    padding: 17px 0;
    margin-top: 20px;
    margin-bottom: 32px;
    margin-left: -40px;
    margin-right: -40px;
    text-decoration: none;
    text-align: center;
  }
}



/*---------------------------
  ログイン箇所
  ---------------------------*/
.login-contens {
  width: 77.0vw;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .login-contens {
    width: 318px;
    margin: 0 auto;
  }
}

.login-contens .login_title {
  padding-top: 0vw;
  color: #222;
  font-size: 4.19vw;
  font-style: normal;
  font-weight: 700;
  line-height: 4.65vw;
  letter-spacing: 0.36vw;
}
@media (min-width: 768px) {
  .login-contens .login_title {
    padding-top: 0px;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0.36px;
  }
}

/*IDまたは会員番号*/
input:-webkit-autofill {
  box-shadow: 0 0 0px 1000px white inset;
}

.login-contens .login_id_wrapper {
  margin-top: 3.26vw;
}
@media (min-width: 768px) {
  .login-contens .login_id_wrapper {
    margin-top: 14px;
  }
}

.login_id_wrapper .login_id-text {
  display: block;
  margin-bottom: 1.86vw;
  color: #222;
  font-size: 3.49vw;
  font-style: normal;
  font-weight: 500;
  line-height: 4.65vw;
  letter-spacing: 0.07vw;
}
@media (min-width: 768px) {
  .login_id_wrapper .login_id-text {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.3px;
  }
}

.login_id_wrapper .id_input_box {
  display: flex;
  height: 13.33vw;
  border: 0.23vw solid #bdbdbd;
}
@media (min-width: 768px) {
  .login_id_wrapper .id_input_box {
    height: 50px;
    border: 1px solid #bdbdbd;
  }
}

.id_input_box .id_input {
  width: 70.00vw;
  padding-left: 3.72vw;
  outline: none;
  background-color: transparent;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  font-size: 3.95vw;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.08vw;
}
@media (min-width: 768px) {
  .id_input_box .id_input {
    width: 290px;
    padding-left: 16px;
    font-size: 17px;
    letter-spacing: 0.34px;
  }
}

/*パスワード*/
.login-contens .login_password_wrapper {
  margin-top: 3.26vw;
}
@media (min-width: 768px) {
  .login-contens .login_password_wrapper {
    margin-top: 14px;
  }
}

.login_password_wrapper .login_password-text {
  display: block;
  margin-bottom: 1.86vw;
  color: #222;
  font-size: 3.49vw;
  font-style: normal;
  font-weight: 500;
  line-height: 4.65vw;
  letter-spacing: 0.07vw;
}
@media (min-width: 768px) {
  .login_password_wrapper .login_password-text {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.3px;
  }
}

.login_password_wrapper .password_input_box {
  display: flex;
  height: 13.33vw;
  border: 0.23vw solid #bdbdbd;
}
@media (min-width: 768px) {
  .login_password_wrapper .password_input_box {
    height: 50px;
    border: 1px solid #bdbdbd;
  }
}

.password_input_box .password_input {
  width: 80%;
  padding-left: 3.72vw;
  outline: none;
  background-color: transparent;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  font-size: 3.95vw;
  font-style: normal;
  font-weight: 500;
}
@media (min-width: 768px) {
  .password_input_box .password_input {
    width: 270px;
    padding-left: 16px;
    font-size: 17px;
    letter-spacing: 0.34px;
  }
}

.password_input_box .password_input-img {
  position: relative;
  top: 3.5vw;
  left: -1.6vw;
  cursor: pointer;
  width: 6.67vw;
  height: 5.6vw;
  margin-left: 2.67vw;
}
@media (min-width: 768px) {
  .password_input_box .password_input-img {
    top: 15px;
    left: -6px;
    width: 25px;
    height: 21px;
    margin-left: 10px;
  }
}

/*表示非表示アイコン切り替え用*/
.password_input_box .eye-img_change {
  display: none;
}

/*ログインボタン*/
.login-contens .login-button_wrapper {
  width: 77.33vw;
  padding: 6.74vw 0;
}
@media (min-width: 768px) {
  .login-contens .login-button_wrapper {
    width: 318px;
    padding: 29px 0;
  }
}

.login-contens .login_button {
  width: 77.33vw;
  height: 16.00vw;
  cursor: pointer;
  background: #4e4e4e;
  border: none;
  border-radius: 7.67vw;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .login-contens .login_button {
    width: 318px;
    height: 60px;
    border-radius: 33px;
  }
}

.login-contens .login_button:hover {
  opacity: 0.7;
}

.login_button .login_button_text {
  display: block;
  font-family: "Zen Kaku Gothic Antique";
  color: #fff;
  font-size: 4.65vw;
  font-style: normal;
  font-weight: 700;
  line-height: 4.65vw;
  letter-spacing: 0.23vw;
}
@media (min-width: 768px) {
  .login_button .login_button_text {
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.23vw;
  }
}

.login-button_wrapper .login_text {
  display: block;
  padding-top: 3.26vw;
  color: #646464;
  font-size: 3.49vw;
  font-weight: 500;
  line-height: 4.65vw;
  letter-spacing: 0.07vw;
}
@media (min-width: 768px) {
  .login-button_wrapper .login_text {
    padding-top: 14px;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.3px;
  }
}

/*---------------------------
  新規登録箇所
  ---------------------------*/
.login-contens .create-account_area {
  padding-top: 5.81vw;
  border-top: 0.35vw solid #d3d3d3;
}
@media (min-width: 768px) {
  .login-contens .create-account_area {
    padding-top: 25px;
    border-top: 1.5px solid #d3d3d3;
  }
}

.create-account_area .create-account_title {
  color: #222;
  font-size: 4.19vw;
  font-style: normal;
  font-weight: 700;
  line-height: 4.65vw;
  letter-spacing: 0.09vw;
}
@media (min-width: 768px) {
  .create-account_area .create-account_title {
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0.36px;
  }
}

/*ボタン*/
.create-account_area .create-accont_button_box {
  width: 77.33vw;
  padding: 5.81vw 0 7.67vw;
}
@media (min-width: 768px) {
  .create-account_area .create-accont_button_box {
    width: 318px;
    padding: 25px 0 33px;
  }
}

.create-accont_button_box .create-accont_button {
  display: block;
  width: 77.00vw;
  background-color: #fff;
  border: 0.7vw solid #f17373;
  font-family: "Zen Kaku Gothic Antique";
  color: #eb5959;
  font-size: 4.65vw;
  font-style: normal;
  font-weight: 700;
  line-height: 4.65vw;
  letter-spacing: 0.23vw;
  border-radius: 7.67vw;
  padding: 4.65vw 0;
  text-decoration: none;
  text-align: center;
}
@media (min-width: 768px) {
  .create-accont_button_box .create-accont_button {
    width: 318px;
    border: 3px solid #f17373;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.23vw;
    border-radius: 33px;
    padding: 20px 0;
  }
}

/*------------------------------------------------------
  ID忘れた方 or パスワード再設定誘導用用のポップアップ
 ------------------------------------------------------*/
.modal_contens_wrapper .modal_reset_contens {
  display: block;
  width: 76.7vw;
  margin: 0 auto;
}
.modal_reset_contens .content_reset_title_text {
  padding-top: 4.19vw;
  padding-bottom: 4.19vw;
  color: #222;
  text-align: center;
  font-size: 4.65vw;
  font-style: normal;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique";
  line-height: 4.65vw;
  letter-spacing: 0.09vw;
}
.modal_reset_contens .reset_title_text {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-style: normal;
  font-weight: 500;
  font-size: 4.27vw;
  line-height: 6.67vw;
  letter-spacing: 0.09vw;
}
.modal_reset_contens .reset_detail_text {
  color: #646464;
  font-family: "Zen Kaku Gothic New";
  font-style: normal;
  font-weight: 500;
  font-size: 4.0vw;
  line-height: 5.33vw;
  letter-spacing: 0.08vw;
}
.modal_reset_contens .reset_layout_border {
  padding: 4.65vw 0;
  margin: 4.65vw 0;
  border-top: 0.27vw solid #d3d3d3;
  border-bottom: 0.27vw solid #d3d3d3;
}
.modal_reset_contens .reset_transition_button {
  display: block;
  background-color: #fff;
  border: 0.47vw solid #F17373;
  font-family: "Zen Kaku Gothic Antique";
  color: #EB5959;
  font-size: 4.19vw;
  font-style: normal;
  font-weight: 700;
  line-height: 4.65vw;
  letter-spacing: 0.23vw;
  border-radius: 6.3vw;
  padding: 3.95vw 0;
  margin-top: 5.81vw;
  margin-bottom: 8.14vw;
  margin-left: 3.49vw;
  margin-right: 3.49vw;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .modal_contens_wrapper .modal_reset_contens {
    width: 330px;
  }
  .modal_reset_contens .content_reset_title_text {
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 20px;
    font-family: "Zen Kaku Gothic Antique";
    line-height: 20px;
    letter-spacing: 0.4px;
  }
  .modal_reset_contens .reset_title_text {
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0.32px;
  }
  .modal_reset_contens .reset_detail_text {
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.3px;
  }
  .modal_reset_contens .reset_layout_border {
    padding: 20px 0;
    margin: 20px 0;
    border-top: 1px solid #d3d3d3;
    border-bottom: 1px solid #d3d3d3;
  }
  .modal_reset_contens .reset_transition_button {
    border: 2px solid #F17373;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.9px;
    border-radius: 50px;
    padding: 17px 0;
    margin-top: 25px;
    margin-bottom: 35px;
    margin-left: 15px;
    margin-right: 15px;
  }
}

.modal_reset_contens .member_number_inquiry_link {
  color: #d3405a;
  font-size: 4.0vw;
  font-style: normal;
  font-weight: 700;
  line-height: 4.65vw;
  letter-spacing: 0.08vw;
  text-decoration-line: underline;
}
@media (min-width: 768px) {
  .modal_reset_contens .member_number_inquiry_link {
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.3px;
  }
}



