@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

/* ===============================
フォント設定
=============================== */
:root {
  --font_noto_sans: 'Noto Sans JP', sans-serif;
  --font_noto_serif: 'Noto Serif JP', sans-serif;
  --font_libre: 'Libre Baskerville', serif;
  --black: #110E01;
  --gray: #E4E4E4
}
.font_libre {
  font-family: 'Libre Baskerville', serif;
  font-weight: 500;
}
/* ===============================
基本
=============================== */
#en_item_spec_wrap h2,
#en_item_spec_wrap h3,
#en_item_spec_wrap h4{
  line-height: 1.8em!important;
  letter-spacing: 0.05em!important;
}
#en_item_spec_wrap h4 {
  line-height: 1.8em!important;
  letter-spacing: 0.1em!important;
}
#en_item_spec_wrap p,
#en_item_spec_wrap p span,
#en_item_spec_wrap li,
#en_item_spec_wrap dl * {
  line-height: 2.2em!important;
  letter-spacing: 0.06em!important;
  font-family: var(--font_noto_sans)!important;
  font-weight: 400;
  font-size: 1.4rem;
}

@media screen and (max-width: 599px) {
  #en_item_spec_wrap h2,
  #en_item_spec_wrap h3,
  #en_item_spec_wrap h4 {
    line-height: 1.5em!important;
    letter-spacing: 0.02em!important;
  }
  #en_item_spec_wrap p,
  #en_item_spec_wrap p span,
  #en_item_spec_wrap li,
  #en_item_spec_wrap dl * {
    letter-spacing: 0em!important;
  }
}
#en_item_spec_wrap h2 small,
#en_item_spec_wrap h3 small,
#en_item_spec_wrap h4 small {
  letter-spacing: 0!important;
}
/* ===============================
見出し
=============================== */
#en_item_spec_wrap h2 {
    display: inline-block;
    font-size: 2.0rem;
    font-family: var(--font_libre);
    border-bottom: solid 1px #dadada;
    padding-bottom: 0.6rem;  
}
/* ===============================
レイアウト
=============================== */
.en_item_spec_box {
    width: fit-content;
    padding: 2rem 2.6rem;
    border: solid 6px #eeeeee;
    word-break: keep-all;
}
@media screen and (max-width: 599px) {
    .en_item_spec_box {
        width: 100%;
        margin: 0 auto;
    }
}
.en_item_spec_box p {
    margin-bottom: 1.6rem;
}
.en_item_spec_box p:last-child {
    margin-bottom: 0;
}
/* ===============================
スペック
=============================== */
.en_item_spec_box dl {
    width: fit-content;
    display: flex;
    flex-direction: column;
}
.en_item_spec_box dt {
    width: fit-content;
    white-space: nowrap;
    background-color: #eeeeee;
    padding: 0rem 1rem;
    margin-bottom: 0.3rem;
}
.en_item_spec_box dd {
    margin-bottom: 1rem;
}
.en_item_spec_box dd:last-child {
    margin-bottom: 0;
}

