
/*---------------------------
  共通
  ---------------------------*/
  body {
    font-family: Arial, sans-serif;
  }
  
  body.no_scroll {
    overflow: hidden;
  }
  
  a {
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    color: #222;
  }
  
  a:hover {
    opacity: 0.7;
    transition: all 0.3s ease-in-out;
  }
  
  button {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  
  button:hover {
    background-color: #c3df9e;
    color: #fff;
  }
  
  p {
    margin-block-start: 0;
    margin-block-end: 0;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    transition: all 0.3s ease-in-out;
  }
  
  .zenkaku-new {
    font-family: "Zen Kaku Gothic New", sans-serif;
  }
  
  .robot {
    font-family: "Roboto", sans-serif;
  }
  
  .robot_condensed {
    font-family: "Roboto Condensed", sans-serif;
  }
  
  .main_container {
    background-color: #f8f6f2;
  }
  
  /*---------------------------
  ページ上部ラベル
    ---------------------------*/
  .top_box {
    width: 100vw;
    position: fixed;
    display: flex;
    height: 10.47vw;
    margin-top: 14.42vw;
    background-color: #c6e1a3;
    opacity: 0.95;
    z-index: 50;
  }
  @media (min-width: 768px) {
    .top_box {
      width: 430px;
      height: 45px;
      margin-top: 62px;
      margin-left: auto;
      margin-right: auto;
    }
  }
  
  .top_text {
    display: block;
    padding-top: 3.02vw;
    margin: 0 auto;
    color: #fff;
    font-size: 4.65vw;
    font-style: normal;
    font-weight: 700;
    line-height: 4.19vw;
    letter-spacing: 0.09vw;
    z-index: 51;
  }
  @media (min-width: 768px) {
    .top_text {
      padding-top: 13px;
      font-size: 20px;
      line-height: 18px;
      letter-spacing: 0.4px;
    }
  }
  
  /*---------------------------
    コンテンツ上部
      ---------------------------*/
  .main_container .account_update_container {
    padding: 31.63vw 0 13.95vw;
  }
  @media (min-width: 768px) {
    .main_container .account_update_container {
      padding: 136px 0 60px;
    }
  }
  
  /*     トップテキスト    */
  .account_update_container .account_update_header {
    padding-bottom: 6.98vw;
    border-bottom: 0.23vw solid #d3d3d3;
  }
  @media (min-width: 768px) {
    .account_update_container .account_update_header {
      padding-bottom: 30px;
      border-bottom: 1px solid #d3d3d3;
    }
  }
  
  .account_update_header .account_update_header-text {
    padding-left: 5.12vw;
    color: #222;
    font-size: 3.72vw;
    font-style: normal;
    font-weight: 500;
    line-height: 5.81vw;
    letter-spacing: 0.07vw;
  }
  @media (min-width: 768px) {
    .account_update_header .account_update_header-text {
      padding-left: 22px;
      font-size: 16px;
      line-height: 25px;
      letter-spacing: 0.32px;
    }
  }
  /*---------------------------
  お届け先一覧
    ---------------------------*/
  .account_update_container .address_list_container {
    width: 90.23vw;
    margin: 0 auto;
    padding-top: 6.98vw;
  }
  @media (min-width: 768px) {
    .account_update_container .address_list_container {
      width: 388px;
      padding-top: 30px;
    }
  }
  
  /*---------------------------
  お届け先カード
    ---------------------------*/
  .account_update_container .address_card-box {
    width: 90.23vw;
    margin-bottom: 5.81vw;
    border-radius: 2.33vw;
    background: #fff;
    box-shadow: 0px 0px 1.16vw 0px rgba(0, 0, 0, 0.15);
  }
  @media (min-width: 768px) {
    .account_update_container .address_card-box {
      width: 388px;
      margin-bottom: 25px;
      border-radius: 10px;
      box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
    }
  }
  
  .address_card-box .address_card {
    position: relative;
    width: 78.6vw;
    padding: 5.81vw 0;
    margin: 0 auto;
  }
  @media (min-width: 768px) {
    .address_card-box .address_card {
      width: 338px;
      padding: 25px 0;
    }
  }
  
  /*  カードトップ  */
  .address_card .address_header {
    display: flex;
    justify-content: space-between;
  }
  
  .address_card .address_number {
    color: #222;
    font-size: 3.49vw;
    font-style: normal;
    font-weight: 700;
    line-height: 3.49vw;
    letter-spacing: 0.07vw;
  }
  @media (min-width: 768px) {
    .address_card .address_number {
      font-size: 15px;
      line-height: 15px;
      letter-spacing: 0.3px;
    }
  }
  
  .address_card .edit_btn {
    width: 16.74vw;
    height: 8.14vw;
    border-radius: 2.33vw;
    border: 0.28vw solid #e89ba9;
    background-color: transparent;
    color: #d3405a;
    font-family: "Zen Kaku Gothic New", sans-serif;
    text-align: center;
    font-size: 3.72vw;
    font-style: normal;
    font-weight: 500;
    line-height: 2.79vw;
  }
  @media (min-width: 768px) {
    .address_card .edit_btn {
      width: 72px;
      height: 35px;
      border-radius: 10px;
      border: 1.2px solid #e89ba9;
      font-size: 16px;
      line-height: 12px;
    }
  }
  .address_text_box .address_text{
    pointer-events: none;
  }
  /*  住所  */
  .address_text_box .address_name_box {
    display: flex;
    flex-wrap: wrap;
    color: #222;
    font-size: 4.19vw;
    font-style: normal;
    font-weight: 500;
    line-height: 7.44vw;
    letter-spacing: 0.08vw;
  }
  @media (min-width: 768px) {
    .address_text_box .address_name_box {
      font-size: 18px;
      line-height: 32px;
      letter-spacing: 0.36px;
    }
  }
  
  .address_name_box .adress_lastname {
    padding-right: 1.16vw;
  }
  @media (min-width: 768px) {
    .address_name_box .adress_lastname {
      padding-right: 5px;
    }
  }
  
  .address_text_box .address_box {
    padding: 3.49vw 0;
    color: #222;
    font-size: 3.72vw;
    font-style: normal;
    font-weight: 500;
    line-height: 5.12vw;
    letter-spacing: 0.07vw;
    pointer-events: none;
  }
  @media (min-width: 768px) {
    .address_text_box .address_box {
      padding: 15px 0;
      font-size: 16px;
      line-height: 22px;
      letter-spacing: 0.32px;
    }
  }
  
  /*  電話番号  */
  .address_text_box .class_phonenumber {
    color: #222;
    font-size: 3.72vw;
    font-style: normal;
    font-weight: 500;
    line-height: 5.12vw;
    letter-spacing: 0.07vw;
    pointer-events: none;
    text-decoration: none;
  }
  @media (min-width: 768px) {
    .address_text_box .class_phonenumber {
      font-size: 16px;
      line-height: 22px;
      letter-spacing: 0.32px;
    }
  }

  /*  削除ボタン  */
  .address_delete_button{
    position: absolute;
    bottom: 5.35vw;
    right: 0.47vw;
    width: 4.42vw;
    padding: 0;
    background-color: #fff;
    border: none;
  }
  
  @media (min-width: 768px) {
      .address_delete_button{
        width: 19px;
        bottom: 23px;
        right: 2px;
      }
  }

  .address_delete_button:hover{
    background-color: #fff;
  }
  .address_delete_button:focus{
    outline: none;
  }

  .address_delete_button > img{
    width: 100%;
  }
  
  /*---------------------------
  新しいお届け先を追加
    ---------------------------*/
  .account_update_container .add_address_btn-box {
    width: 90.23vw;
    margin: 0 auto;
    border-radius: 2.33vw;
    transition: all 0.3s ease-in-out;
  }
  @media (min-width: 768px) {
    .account_update_container .add_address_btn-box {
      width: 388px;
      border-radius: 10px;
    }
  }
  
  .add_address_btn-box:hover {
    background-color: #c3df9e;
  }
  
  .add_address_btn-style {
    position: relative;
    width: 90.23vw;
    height: 17.91vw;
    margin: 0 auto;
    border: none;
    text-align: left;
    border-radius: 2.33vw;
    background: #fff;
    box-shadow: 0px 0px 1.16vw 0px rgba(0, 0, 0, 0.15);
  }
  @media (min-width: 768px) {
    .add_address_btn-style {
      width: 388px;
      height: 77px;
      border-radius: 10px;
      box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
    }
  }
  
  .add_address_btn-text::before {
    position: absolute;
    top: 1.16vw;
    left: 3.72vw;
    padding-right: 2.33vw;
    content: "+";
    transform: translateY(-50%);
    font-size: 5.12vw;
    color: #909090;
    transition: all 0.3s ease-in-out;
  }
  @media (min-width: 768px) {
    .add_address_btn-text::before {
      top: 5px;
      left: 16px;
      padding-right: 10px;
      font-size: 22px;
    }
  }
  
  .add_address_btn-box:hover .add_address_btn-text::before {
    color: #fff;
  }
  
  .add_address_btn-text {
    position: absolute;
    top: 7.44vw;
    padding-left: 12.09vw;
    color: #222;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 3.49vw;
    font-style: normal;
    font-weight: 700;
    line-height: 3.49vw;
    letter-spacing: 0.3px;
    transition: all 0.3s ease-in-out;
  }
  @media (min-width: 768px) {
    .add_address_btn-text {
      top: 32px;
      padding-left: 52px;
      font-size: 15px;
      line-height: 15px;
      letter-spacing: 0.3px;
    }
  }
  
  button:hover .add_address_btn-text {
    color: #fff;
  }


