/*
Theme Name: Lightning Child
Theme URI: 
Template: lightning
Description: 
Author: 
Tags: 
Version: 0.6.0
*/
/* 見出し行の横並び＆横書き（住所一覧ページ） */
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses header.woocommerce-Address-title {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses header.woocommerce-Address-title h2,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses header.woocommerce-Address-title a.edit {
  writing-mode: horizontal-tb !important;
  -webkit-writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
  transform: none !important;
}
/* My Account > 住所一覧（/my-account/edit-address/）の最終整形 */

/* 1) 見出し行（h2 + 編集リンク） */
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses header.woocommerce-Address-title{
  display:flex;
  align-items:center;
  gap:.6rem;
  margin-bottom:.5rem;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses header.woocommerce-Address-title h2,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses header.woocommerce-Address-title a.edit{
  writing-mode: horizontal-tb !important;
  -webkit-writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
  transform:none !important;
}

/* 2) 2カラム→1カラム化（このページだけ） */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .u-column1,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .u-column2{
  width:100% !important;
  float:none !important;
  max-width:48rem;     /* 読みやすい幅に制限。不要なら消してOK */
  margin:0 auto 2rem;  /* 下に適度な余白 */
}

/* 3) 住所本文の読みやすさ */
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses address{
  line-height:1.8;
  white-space:normal;
  overflow-wrap:break-word;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses a.edit{
  display:inline-block;
  background:#ff00c8;
  color:#fff;
  padding:10px 16px;
  border-radius:8px;
  font-weight:700;
  text-decoration:none;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses a.edit:hover{
  opacity:.9;
}
/* My Account > 住所一覧 見出し行の縦位置そろえ */
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses header.woocommerce-Address-title{
  display:flex;
  align-items:center;        /* 行内の上下中央揃え */
  gap:.8rem;
}

/* 見出しの余白をリセットして基準を揃える */
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses header.woocommerce-Address-title h2{
  margin:0;                  /* ←重要 */
  line-height:1.2;           /* 文字の上下を詰める（調整可） */
}

/* ボタンの中身も上下中央に */
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses header.woocommerce-Address-title a.edit{
  display:inline-flex;       /* 中身の文字を中央に */
  align-items:center;
  height: 40px;              /* 見出しの高さに合わせて調整可 */
  padding: 0 14px;           /* 水平方向の余白 */
  line-height:1;             /* 文字の上下ブレを抑える */
}
