@charset "utf-8";
/* CSS Document */

/*--login----------------------------------------------------------*/
#login .container_small {
  padding: var(--m160) 0;
  text-align: center;
  font-size: var(--fz16);
}

#login h2 {
  margin: var(--m20) 0 var(--m80);
  font-size: var(--fz24);
  font-weight: 1000;
  color: var(--blue);
  line-height: 1.2;
}

.error {
  color: var(--red);
  font-weight: 600;
  margin-bottom: var(--m20);
} 

.form_area {
  max-width: 400px;
  width: 80%;
  text-align: left;
  margin: 0 auto;
}
.form_area dt {
  color: var(--blue);
  font-size: var(--fz12);
  margin: var(--m40) 0 var(--m10);
  font-weight: 800;
}

.form_text {
  height: 2.4em;
  width: 100%;
  padding: 0 16px;
  border-radius: 4px;
  border: none;
  box-shadow: 0 0 0 1px var(--blue) inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.form_text:focus {
  outline: 0;
  box-shadow: 0 0 0 2px var(--blue) inset;
  transition: .3s ease-in-out;
}

.form_text.form_pass {
  width: 15rem;
  margin-left: var(--m20);
  text-align: left;
}
.form_text.form_mail {
  width: 25rem;
  margin-left: var(--m20);
  text-align: left;
}

#login .btn_login {
  margin: var(--m80) auto var(--m40);
  width: 50%;
  max-width: 240px;
}
#login .btn_login a {
  font-size: var(--fz20);
}
#login .btn_login a:after {
  width: 1.1rem;
  height: 1.1rem;
}

#login p:last-of-type a {
  color: var(--blue);
  text-decoration: underline;
}

@media (max-width:768px) {
  #login .btn_login a:after {
    width: 1rem;
    height: 1rem;
  }
}

/*--member_mypage----------------------------------------------------------*/
/* 左メニュー */
.drawer__button {
  display: none;
}

.left_area {
  background-color: var(--blue);
  color: var(--white);
  min-width: 240px;
}

@media (max-width:768px) {
  .drawer__button {
    position: fixed;
    top: var(--m20);
    left: var(--m20);
    display: block;
  }

  #nav-content02 {
    position: fixed;
    z-index: 99;
    height: 100vh;
    top: 0;
    left: 0;
    transition: .3s ease-in-out;
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
    padding-top: var(--m80);
  }

  #nav-input:checked ~ #nav-content02 {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    box-shadow: 6px 0 25px rgba(0,0,0,.15);
  }
}

.container_2column {
  display: flex;
}

.left_area h1 {
  margin: var(--m40) var(--m20) 0;
  text-align: center;
}
.left_area h1 span {
  font-size: var(--fz16);
  font-weight: 600;
  display: block;
  margin-top: var(--m20);
}

.mypage_list {
  margin: var(--m80) 0 0 var(--m40);
  font-size: var(--fz20);
}
.mypage_list li {
  border-bottom: 1px solid var(--white);
}
.mypage_list li a {
  display: block;
  padding: var(--m20) 0;
  position: relative;
}
.mypage_list li a::before {
  content: '';
  width: 7px;
  height: 7px;
  border-top: solid 2px var(--white);
  border-right: solid 2px var(--white);
  position: absolute;
  right:  var(--m20);
  top: calc(50% - 5px);
  transform: rotate(45deg);
}

.btn_logout {
  margin: var(--m160) 0  var(--m160) var(--m40);
  font-size: var(--fz20);
  border-bottom: 1px solid var(--white);
}
.btn_logout a {
  display: block;
  padding: var(--m20);
  position: relative;
  text-align: right;
}
.btn_logout a::before {
  content: '';
  width: 7px;
  height: 7px;
  border-top: solid 2px var(--white);
  border-right: solid 2px var(--white);
  position: absolute;
  left: var(--m20);
  top: calc(50% - 2px);
  transform: rotate(-135deg);
}

.right_area {
  width: calc(100% - 24px);
  overflow-x: hidden;
}

.member_page_ttl {
  background-color: var(--black);
  font-size: var(--fz32);
  color: var(--white);
  font-weight: 800;
  line-height: 1;
  padding: var(--m20) var(--m40);
}

.right_area_wrap {
  max-width: var(--contents_size_big);
  margin: var(--m100) var(--m80) var(--m160);
}

.blue_subttl {
  font-size: var(--fz24);
  color: var(--blue);
  font-weight: 800;
  line-height: 1;
  margin-top: var(--m40);
}

.right_area_inner {
  margin: var(--m40) var(--m80) 0;
}
#member_mypage .right_area_inner {
  margin: var(--m40) var(--m40) 0 var(--m80);
}

.mypage_table_list {
  margin: var(--m40) var(--m20) 0;
}

.mypage_table_list th,
.mypage_table_list td {
  padding: var(--m20) 0;
  line-height: 1.4;
  font-weight: 600;
}
.mypage_table_list th {
  color: var(--blue);
  font-size: var(--fz16);
}
#member_mypage .mypage_table_list th {
  width: 11rem;
}

.mypage_table_list td {
  font-size: var(--fz20);
}

.mypage_table_list + p {
  margin-top: var(--m20);
  line-height: 1.2;
}

.right_area_inner a {
  color: var(--blue);
  text-decoration: underline;
  font-weight: 600;
}


@media (max-width:768px) {
  .right_area_wrap {
    margin: var(--m100) var(--m40);
  }
  .right_area {
    width: 100%;
  }
  .right_area_inner {
    margin: var(--m40) var(--m20) 0;
  }
  .mypage_table_list th,
  .mypage_table_list td {
    display: block;
    width: 100%;
  }
  .mypage_table_list th {
    padding-bottom: 0;
  }
  .mypage_table_list td {
    padding-top: var(--m10);
  }
}

/*--member_reserve----------------------------------------------------------*/
.member_dl_list {
  font-size: var(--fz16);
  line-height: 1.4;
}
.member_dl_list dt {
  font-weight: 600;
  margin-top: var(--m30);
}
.member_dl_list dd {
  text-indent: -1em;
  padding-left: 1em;
  font-weight: normal;
}

.venue_area {
  max-width: 740px;
  width: 98%;
  margin: 0 auto;
}

.venue_ttl {
  font-size: var(--fz24);
  padding: var(--m20);
  font-weight: 800;
  border-bottom: 1px solid var(--blue);
  color: var(--blue);
  text-align: center;
  margin-top: var(--m40);
}
.venue_ttl:first-of-type {
  border-top: 1px solid var(--blue);
}

.venue_selectbox {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-right: var(--m10);
}
.venue_selectbox:last-of-type {
  margin-right: 0;
}
.venue_selectbox:after {
  position: absolute;
  right: 10px;
  width: 7px;
  height: 7px;
  content: " ";
  pointer-events: none;
  border-bottom: 2px solid var(--black);
  border-right: 2px solid var(--black);
  transform: rotate(45deg);
}
.venue_selectbox select {
  appearance: none;
  padding: var(--m05) var(--m20) var(--m05) var(--m10);
  border: 2px solid #77a8d2;
  background-color: var(--white);
  color: var(--black);
  font-size: var(--fz16);
  cursor: pointer;
  font-weight: normal;
}

.gray {
  color: #b4b4b4;
}

.venue_area p.venue_txt {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--m20);
}

.checkbox_item {
  display: inline-flex;
  align-items: center;
  column-gap: var(--m05);
  line-height: 1;
  cursor: pointer;
  font-weight: 600;
  margin-left: var(--m20);
}
.checkbox {
  appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #7cb342;
  border-radius: 2px;
  background-color: var(--white);
  cursor: pointer;
}
.checkbox:checked {
  border: none;
  background-color: #7cb342;
}
.checkbox:checked::after {
  content: "";
  position: absolute;
  top: 4.5px;
  left: 2.5px;
  width: 16px;
  height: 7px;
  border-bottom: 3px solid var(--white);
  border-left: 3px solid var(--white);
  transform: rotate(-45deg);
}

.venue_table {
  margin-top: var(--m20);
  width: 100%;
}
.venue_table th,
.venue_table td {
  border: 1px solid var(--blue);
  text-align: center;
  font-size: var(--fz16);
  padding: var(--m10) 0;
  vertical-align: middle;
}
.venue_table th span {
  font-size: var(--fz12);
}
.venue_table tr td:first-of-type {
  min-width: 2.5rem;
}
.venue_table tr td:not(:first-of-type) {
  color: var(--blue);
}
.entative_reservation_bg,
.venue_table tr td:nth-of-type(2),
.venue_table tr td:nth-of-type(3),
.venue_table tr td:nth-of-type(4) {
  background-color: #fafff0;
}
.reserved_bg,
.venue_table tr td:nth-of-type(5),
.venue_table tr td:nth-of-type(6),
.venue_table tr td:nth-of-type(7) {
  background-color: #f5faff;
}
.venue_table tr td.blue_check {
  background-color: var(--blue)!important;
  color: var(--white);
}

.btn_white a {
  display: block;
  text-align: center;
  background-color: var(--white);
  color: var(--blue);
  padding: var(--m10) var(--m20);
  border-radius: 5rem;
  border: 1px solid var(--blue);
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
  max-width: 240px;
  width: 70%;
  margin: 0 auto;
  font-size: var(--fz16);
}
#member_reserve .btn_white {
  margin-top: var(--m20);
  font-weight: 600;
}

.btn_blue a {
  display: block;
  text-align: center;
  background-color: var(--blue);
  color: var(--white);
  padding: var(--m10) var(--m20);
  border-radius: 5rem;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
  max-width: 400px;
  width: 80%;
  margin: 0 auto;
  font-size: var(--fz16);
}
#member_reserve .btn_blue {
  margin-top: var(--m80);
}

@media (max-width:930px) {
  .venue_selectbox {
    margin: var(--m10) var(--m05) 0 0;
  }
  .venue_area p.venue_txt {
    flex-wrap: wrap;
  }
  .venue_area p.venue_txt span {
    display: block;
    width: 100%;
  }
  .venue_area p.venue_txt span {
     margin-top: var(--m20);
  }
}

@media (max-width:768px) {
  .venue_selectbox {
    margin: 0 var(--m05) 0 0;
  }
  .venue_selectbox:after {
    right: 7px;
    width: 5px;
    height: 5px;
  }
  .btn_white a,
  .btn_blue a {
    padding: var(--m20);
  }
}

/*--member_reserve_conf----------------------------------------------------------*/
#member_reserve_conf .error {
  margin-top: var(--m40);
  text-align: center; 
}

.reserve_conf_list {
  width: 100%;
  line-height: 1.5;
}
.reserve_conf_list tr {
  border-bottom: 1px solid var(--blue);
  vertical-align: middle;
}
.reserve_conf_list td {
  font-size: var(--fz16);
  font-weight: 600;
  padding: var(--m20) 0;
  vertical-align: middle;
}
.reserve_conf_list td:first-of-type {
  width: calc( 17rem + var(--m40) )
}

.reserve_conf_list td ul {
  display: flex;
  align-items: center;
  width: 100%;
}
.reserve_conf_list td:first-of-type ul {
  justify-content: space-between;
}
.reserve_conf_list td ul li {
  margin-right: var(--m20);
}
.reserve_conf_list td:last-of-type ul li:last-of-type {
  margin-right: 0;
}

.reserve_conf_list td ul a {
  text-decoration: underline;
  color: var(--blue);
}

.btn_back {
  text-align: center;
}

#member_reserve_conf .btn_back {
  margin-top: var(--m40);
}

.btn_back a {
  display: inline-block;
  padding-left: var(--m10);
  position: relative;
  color: var(--black);
  text-decoration: underline;
}
.btn_back a::before {
  content: '';
  width: 7px;
  height: 7px;
  border-top: solid 1px var(--black);
  border-right: solid 1px var(--black);
  position: absolute;
  left: 0;
  top: calc(50% - 2px);
  transform: rotate(-135deg);
}

.agreement_area {
  border: 1px solid var(--blue);
  padding: var(--m20);
  color: var(--black);
  font-size: var(--fz16);
  width: 100%;
  height: 10rem;
  margin-top: var(--m20);
  overflow-y: scroll;
}
.agreement_area h5 {
  font-size: var(--fz24);
}
.agreement_txt {
  text-align: left;
  line-height: 1.4;
}
.agreement_txt dt {
  margin-top: var(--m20);
}
.agreement_txt dd ol > li {
  text-indent: -2.6em;
  padding-left: 2em;
}
.agreement_txt dd ol ul {
  margin-top: var(--m20);
}
.agreement_txt dd ol ul > li {
  text-indent: -1.1em;
  padding-left: 1.1em;
}

.agreement_btn {
  display: block;
  text-align: center;
  background-color: var(--blue);
  color: var(--white);
  padding: var(--m10) var(--m20);
  border-radius: 5rem;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
  max-width: 400px;
  width: 80%;
  margin: 0 auto;
  font-size: var(--fz16);
  transition: opacity 0.3s linear;
}

.agreement_btn:disabled {
  pointer-events: none;
  opacity: .5;
}


@media (max-width:980px) {
  .reserve_conf_list td:first-of-type {
    width: calc( 15.2rem + var(--m40) );
  }
  .reserve_conf_list td ul img {
    width: 6rem;
  }
}

@media (max-width:768px) {
  .reserve_conf_list td {
    display: block;
    padding: var(--m20) 0;
  }
  .reserve_conf_list td:first-of-type {
    width: 100%;
  }
  .reserve_conf_list td:first-of-type ul {
    justify-content: flex-start;
  }
  .reserve_conf_list td:last-of-type {
    padding-top: 0;
  }
}


/*--member_reservedlist----------------------------------------------------------*/
.right_area_inner p {
  line-height: 1.5;
  font-size: var(--fz16);
}
.reserved_note li{
  margin-top: var(--m20);
}
.reserved_note dl{
  display: flex;
  line-height: 1.5;
}
.reserved_note dt{
  width: 7rem;  
}
.reserved_note dd{
  width: calc(100% - 7rem);
}

.table-wrap .reserved_table_list {
  margin: var(--m40) var(--m20) 0;
  border-collapse: collapse;
}

.reserved_table_list th,
.reserved_table_list td{
  font-size: var(--fz14);
  border-bottom: 1px solid var(--blue);
  padding: 0.8rem 1rem;
  text-align: left;
}
.reserved_table_list .list_day{
  transition: width 0.3s linear;
  width: 18%;
}
.reserved_table_list .list_status{
  transition: width 0.3s linear;
  width: 15%;
}
.reserved_table_list .list_time{
  transition: width 0.3s linear;
  width: 25%;
}
.reserved_table_list .list_application {
  transition: width 0.3s linear;
  width: 17%;
}
.reserved_table_list .list_advertisement{
  transition: width 0.3s linear;
  width: 15%;
}
.reserved_table_list .list_cancel{
  transition: width 0.3s linear;
  width: 15%;
}

.reserved_table_list .list_cancel:empty{
  width: 1%;
  padding: 0.8rem 0;
}

.reserved_table_list tbody{
  color: var(--blue);
  font-weight: 700;
  line-height: 1.5;
}

.reserved_table_list a{
  text-decoration: underline;
}

.status {
  display: inline-block;
  width: 122px;
  height: auto;
  box-sizing: border-box;
  padding-block: 0.25rem;
  border-radius: 5px;
  text-align: center;
  border: 1px solid var(--blue);
  color: var(--blue);
}
.status.confirmed {
  color: #00b464;
  border-color: #00b464;
}
.status.unpaid{
  color: #f07800;
  border-color: #f07800;
}

/* モーダル */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, .5);
  padding: var(--m40) var(--m20);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
}
.modal:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.2em;
}
.modal.is-active {
  opacity: 1;
  visibility: visible;
}
.modal-open,
.btn_list_link {
  text-decoration: underline;
}

/* モーダル内側 */
.modal-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 640px;
  width: 90%;
}
.modal-content {
  background-color: var(--white);
  line-height: 1.6;
  padding: var(--m60) var(--m60);
}
.modal-content h3 {
  color: var(--blue);
  font-size: var(--fz24);
  font-weight: 800;
}
.modal-content p {
  margin-top: var(--m20);
}

.modal_btn_list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal_btn_list li {
  margin: var(--m40) var(--m20) var(--m20);
}
.modal_btn {
  border: 1px solid var(--blue);
  padding: var(--m10) var(--m20);
  width: 120px;
  max-width: 30vw;
  border-radius: 5px;
  color: var(--blue);
  font-weight: 600;
}
.modal_btn:hover {
  color: var(--white);
  background-color: var(--blue);
}

@media ( max-width:768px){
  .table-wrap .reserved_table_list {
    width: 100%;
    white-space: nowrap;
  }
  .reserved_table_list .list_day{
    transition: width 0.3s linear;
    width: 18%;
  }
  .reserved_table_list .list_status{
    transition: width 0.3s linear;
    width: 15%;
  }
  .reserved_table_list .list_time{
    transition: width 0.3s linear;
    width: 27%;
  }
  .reserved_table_list .list_advertisement{
    transition: width 0.3s linear;
    width: 20%;
  }
  .reserved_table_list .list_cancel{
    transition: width 0.3s linear;
    width: 20%;
  }
}



/*--member_reserve_comp----------------------------------------------------------*/
.venue_area {
  text-align: center;
}

.venue_area h4 {
  color: var(--blue);
  font-size: var(--fz32);
  margin-top: var(--m40);
  font-weight: 600;
}
.venue_area p {
  line-height: 1.8;
  margin-top: var(--m20);
}
.venue_area p:first-of-type {
  margin-top: var(--m40);
}

.btn_prev a {
  display: inline-block;
  padding-right: var(--m10);
  position: relative;
  color: var(--black);
  text-decoration: underline;
}
.btn_prev a::before {
  content: '';
  width: 7px;
  height: 7px;
  border-top: solid 1px var(--black);
  border-right: solid 1px var(--black);
  position: absolute;
  right: 0;
  top: calc(50% - 2px);
  transform: rotate(45deg);
}


/*--member_reservedlist----------------------------------------------------------*/
.invoice-container {
  max-width: 1190px;
  width: 98%;
  margin: 0 auto;
  padding: var(--m20) var(--m80);
  border: 1px solid var(--black);
}
.invoice-container .header {
  background-color: var(--black);
  font-size: var(--fz32);
  text-align: center;
  color: var(--white);
  font-weight: 800;
  line-height: 1;
  padding: var(--m20) var(--m40);
}
.u_line{
padding-bottom: 0.5rem;
border-bottom: 2px solid var(--black);
}

.table-wrap .invoice_flex{
  max-width: 1028px;
  width: 100%;
}
.invoice_flex{
display: flex;
justify-content: space-between;
margin-top: var(--m20);
margin-bottom: var(--m60);
}
.section_left{
  width: 45%;
  word-break: break-all;
}
.section_left p{
font-size: var(--fz24);
font-weight: 700;
margin-top: 2rem;
}
.section_right{
  display: flex;
  justify-content: flex-end;
  width: 55%;
  word-break: break-all;
}
.section_right p{
font-size: var(--fz18);
text-align: right;
margin-top: 1rem;
}
.section_left p:first-of-type,
.section_right p:first-of-type{
margin-top: 0;
}
.invoice-container .details,
.invoice-container .footer {
  font-size: var(--fz14);
  line-height: 1.5;
}
.small{
font-size: var(--fz20);
}
.amount {
  font-size: var(--fz40);
  font-weight: bold;
  margin-left: 3rem;
}
.deadline{
margin-top: 1.2rem !important;
}
.table-wrap .invoice_list {
  max-width: 1028px;
  width: 100%;
}
.invoice_list {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--m20);
  margin-bottom: var(--m40);
  font-size: var(--fz24);
}
.invoice_list, 
.invoice_list th, 
.invoice_list td {
  border: 1px solid var(--black);
  padding: 1rem;
  text-align: left;
}

.invoice_list td.t_right {
  text-align: right;
}
.invoice_list td.bank-info{
border-left: 1px solid rgba(0, 0, 0, .0);
border-bottom: 1px solid rgba(0, 0, 0, .0);
vertical-align: bottom;
font-weight: 700;
}

.footer {
  margin-top: 20px;
  font-size: 12px;
}
.logo {
  text-align: center;
  margin-block: var(--m40);
}
.print-button {
  text-align: center;
  margin-top: var(--m60);
}
.print-button button {
width: 400px;
background-color: var(--blue);
color: var(--white);
padding: var(--m10) var(--m40);
border-radius: 5rem;
line-height: 1;
font-weight: 800;
}

@media screen and (min-width:769px) and ( max-width:1450px){

  .invoice_flex{
    flex-direction: column;
  }
  .section_right,
  .section_left{
    width: 100%;
  }
  .section_right{
    margin-top: var(--m40);
    justify-content: flex-start;
  }
  .section_right div{
    margin-left: 1rem;
  }  
  
  .section_left p,
  .section_right p {
    text-align: left;
  }
  .amount {
    margin-left: 1rem;
  }
}


@media (max-width:768px) {
  .invoice-container {
    padding: 1rem 2rem;
  }
  .section_right,
  .section_left{
    width: 100%;
  }
  .section_right{
    margin-top: var(--m40);
  }
  .section_right div{
    margin-left: 1rem;
  }  
  .invoice_flex{
    flex-direction: column;
  }
  .section_left p,
  .section_right p {
    font-size: var(--fz16);
    margin-top: 1.2rem;
    text-align: left;
  }
  .amount {
    font-size: var(--fz24);
    margin-left: 1rem;
  }
  .small {
    font-size: var(--fz14);
  }
  .invoice_list {
    font-size: var(--fz16);
    width: 150%;
  }
  .print-button button {
    width: 100%;
  }
}

@page {
  size: A4; /* A4縦 */
  margin: 1cm; /* 余白 */
}
@media print {
  body {
    width: 210mm; /* A4の横幅 */
    height: 297mm; /* A4の縦幅 */
    margin: 0; /* 余白をなくす */
  }
  header, footer, .left_area,
  .print-button, button, .nav-content02 {
    display: none;
  }
  .right_area_wrap {
    margin: 0 !important;
  }
  .invoice_flex {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .table-wrap .invoice_list {
    width: 100%;
  }
  .section_right,
  .section_left{
    width: 45%;
  }
  .section_right p{
    text-align: right;

  }
  .amount {
    margin-left: 1rem;
  }
  p {
    font-size: 12pt;
    line-height: 1.5;
  }
  .page-break {
    page-break-before: always;
  }
}


/*--member_withdrawal----------------------------------------------------------*/
#member_withdrawal .right_area_inner p {
  margin-top: var(--m40);
}

#member_withdrawal p.btn_blue {
  margin-top: var(--m80);
}

/*--member_追加----------------------------------------------------------*/
.info_wrap .red_bold{
    color: #f00;
    font-weight: bold;
    font-size: var(--fz20) !important;
    line-height: 1.7;
}
.ttl_wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--m40);
}
.btn_mypage{
    border: 1px solid var(--blue);
    padding: 0.8rem;
}
.ttl_wrap .blue_subttl {
    margin-top: 0;
}
.mypage_table_list {
	width: 100%;
}
.mypage_table_list input[type=text] {
	border: 1px solid var(--blue);
	width: 100%;
	padding: 0.25rem 0.5rem;
	font-weight: normal;
	font-size: var(--fz16);
}
.mypage_table_list select {
	border: 1px solid var(--blue);
	box-sizing: border-box;
	padding: 0.25rem 0.5rem;
	font-weight: normal;
	appearance: auto;
	font-size: var(--fz16);
}

.center{
	text-align: center;
	margin-top: var(--m40);
}
.edit_link{
	margin-left: 3rem;
  font-size: var(--fz16);
}
.edit_link::after{
	content: ">";
	color: var(--blue);
	margin-left: 0.5rem;
}
.address_edit p{
	margin-bottom: 1rem;
}
.address_edit p:nth-of-type(1) input{
	width: 10rem;
}
.address_edit p:nth-of-type(2) select{
	width: 20rem;
}
.address_edit p:nth-of-type(3) input{
	width: 20rem;
}
.address_edit p:nth-of-type(4) input{
	width: 30rem;
}
.address_edit p:nth-of-type(5) input{
	width: 30rem;
}

.address_edit p:last-of-type{
	margin-bottom: 0;
}
.address_edit span{
	font-size: var(--fz16);
	margin-right: 0.5rem;
	font-weight: normal;
}


@media (max-width:768px) {
.mypage_table_list {
	width: 95%;
}

.edit_link{
	font-size: var(--fz16);
	margin-left: 0;
}
.address_edit p:nth-of-type(1) input,
.address_edit p:nth-of-type(2) select,
.address_edit p:nth-of-type(3) input,
.address_edit p:nth-of-type(4) input,
.address_edit p:nth-of-type(5) input{
	width: auto;
}


}