@charset "UTF-8";

/* ==== root ========================== */
:root {
  --color-black: #6F6F6F;
  --color-white: #fff;
  --color-primary: #F29600;
  --color-bg: #FFF7E7;

  --zen-maru: "Zen Maru Gothic", serif;


  --header: 15rem;
  scroll-padding: var(--header);
}

@media screen and (max-width:767px) {
  :root {
    --header: 10rem;
    scroll-padding: var(--header);
  }
}

html {
  font-size: clamp(7px, 0.661375661vw, 10px);
  box-sizing: border-box;
  background: transparent;
}

body {
  font-size: 1.6rem;
  font-family: var(--zen-maru);
  color: var(--color-black);
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.6;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

@media screen and (max-width:450px) {
  html {
    /* font-size: 10px; */
    font-size: clamp(7px, 5vw, 18px);
  }
}


/*================================================
 *  mv__info
 ================================================*/


@media screen and (max-width:767px) {
  #mv__umekomi ul#mv__umekomi--List li a {
    font-size: 1.6rem;
    font-family: var(--zen-maru);
  }

  #mv__umekomi ul#mv__umekomi--List {
    width: 100%;
    min-width: unset;
  }

  #mv__umekomi ul#mv__umekomi--List li a .date {
    text-align: center;
    font-size: 0.875em;
    margin-bottom: 0.5em;
  }

  #mv__umekomi ul#mv__umekomi--List li a span.catName {
    font-size: 1em;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background: var(--color-primary);
    color: var(--color-white);
    margin: 0 auto 5px;
    padding: 0 1.3rem;
    border-radius: 0.7rem;
  }

  #mv__umekomi ul#mv__umekomi--List li a p.title {
    width: 70%;
    margin: 0 auto;
    white-space: normal;
    line-height: 1.25;
  }

}