:root{
    --base-color:#ffffff;
    --primary-color:#ff0000;
  }
  html{
    scroll-behavior: smooth;
  }
  body{
    color: var(--primary-color);
    letter-spacing: .05em;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
  }
  a{
    color: var(--primary-color);
  }
  .primary-bg a{
    color: var(--base-color);
  }
 .no-underbar{
    color: var(--primary-color);
    text-decoration: none;
  }
  ul{
    padding-inline-start: 1em;
  }
  li{
    margin-bottom: 0.5em;
  }
  h1,h2,h3,h4,h5,h6{
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }
  h1,.site-title{
      font-size: 32px;
      font-size: clamp(32px, 5.625vw, 45px);
      min-height: 0vw;
      font-weight: 900;
  }
  h2{
      font-size: 24px;
      font-size: clamp(24px, 4vw, 32px);
      min-height: 0vw;
      font-weight: 900;
  }
  h3,.site-description,.nav-title{
      font-size: 20px;
      font-size: clamp(20px, 3vw, 24px);
      min-height: 0vw;
      font-weight: 900;
  }
  h4,.nav-menu{
      font-size: 16px;
      font-size: clamp(16px, 2.5vw, 20px);
      min-height: 0vw;
  }
  p{
    line-height: 1.8em;
  }
  hr{
    border: 5px solid var(--primary-color);
  }
  .container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3vh 5vw;
  }
  summary {
    display: block;
    list-style: none;
  }
  
  summary::-webkit-details-marker {
    display:none;
  }

  /*--------------------

  header

  --------------------*/

  

header{
  border-bottom: 5px solid var(--primary-color);
}
header .container{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo-area{
  text-align: center;
}
header .recommend{
  width: 100px;
  font-size: 2em;
  line-height: 1.2em;
  letter-spacing: 0.1em;
  font-weight: 900;
  text-align: center;
  padding: 1vh;
  border:5px solid var(--primary-color);
  margin: 0 auto;
  font-style: italic;
}
header .gloval-navigation ul{
  display: flex;
  justify-content: space-around;
  width: 100%;
  list-style-type: none;
}
header .gloval-navigation ul li{
  padding: 3vh 3vw;
}
header .charactor img{
  width: 100px;
}

  /*--------------------

  contact

  --------------------*/
  .contact .items{
    display: flex;
    align-items: center;
  }
  .contact h2{
    border: 0;
    width: 35vw;
    padding-bottom: 0;
    padding-left: 0;
  }
  .contact nav{
    width: 65vw;
  }
  .contact ul{
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 1em;
  }
  .contact ul li{
    width: clamp(33px,3vw,50px);
  }
  .contact ul li a img{
    width: 100%;
  }