ul {
  list-style: none;
  list-style-type: none;
}

a {
  color: inherit;
 
}

img {
  max-width: 100%;
  height: auto;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: inline-block;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  color: #333;
  line-height: 1.6;
}

body.is-fixed {
  overflow: hidden;
}

.button {
  padding: 1em 2em;
  border-radius: 3px;
  background-color: #f77;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: normal;
  color: #333;
  line-height: 1;
  transition: all 0.3s ease 0s;
  text-align: center;
}

.button:hover {
  opacity: 0.7;
}


.button-drawer {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: rgba(0, 0, 0, 0);
  background-size: 30px 30px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../account.img/icons8/icons8-ハンバーガーボタン-32.png) ;
}

.button-drawer.is-checked{
  background-image: url(../account.img/icons8/icons8-cancel-32\ \(4\).png);
}


.button-form {
  height: 100%;
  padding: 0.75em 1em;
  border-radius: 3px;
  background-color: #f77;
  font-size: 18px;
  letter-spacing: normal;
  color: #333;
  line-height: 1;
  transition: all 0.3s ease 0s;
  text-align: center;
}

.button-form:hover {
  opacity: 0.7;
}

.header {
  height: 80px;
  background-color: #b55233;
  color:wheat;
  border-bottom: 1px solid wheat;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
}

.header__logo {
  font-size: 25px;
  font-weight: 700;
  padding-left: 37px;
  position: relative;
}

.header__logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background-image: url(../account.img/logo.png);
  background-color: rgba(0, 0, 0, 0);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.header__button {
  margin-left: auto;
}

.main {
  margin: 20px 80px;
}

.drawer {
  top: 80px;
  width: 100%;
  padding: 0 80px;
  height: calc(100% - 80px);
  background-color: #b55233;
  overflow-y: auto;
  z-index: 10;
  display: none;
}

.drawer__menu {
  text-align: center;
  color: wheat;
  border-bottom: 1px solid wheat;
  padding: 25px 0;
  display: block;
  max-width: 300px;
  margin: 0 auto;
}

.drawer__menu:hover {
  opacity: 0.7;
}

#headBlock{
  margin-bottom: 10px;
}

.headline02{
  border-bottom: 1px solid;
  margin-bottom: 15px;
}

.text{
  margin-bottom: 50px;
}

.sectionLv01{
  margin-top: 30px;
}

/* table */
table {
  border-collapse: collapse;
  width: 100%;
  margin: 0 auto;
}

th, td {
  border: 1px solid black;
  padding: 8px 10px; /* セルの内側の余白 */
  text-align: left;
}


.pdf{
  width: 20px;
  height: 20px;
  margin: 3px;
}


.footer-text{
  clear: both;
  padding: 5px 0;
  font-style: normal;
  text-align: center;
  border-top: 1px solid #333;
  background: wheat;
  font-size: 8px;
}

.top{
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background-color: rgba(0,0,0,0);
  border: none;
  display: none;
 }

 /* 834px以下の画面幅の場合のスタイル */
@media screen and (max-width: 834px) {
  #headBlock{
    text-align: center;
  }

  .sectionLv01{
    text-align: center;
  }

  th,td{
    text-align: center;
  }


  .header__logo {
    font-size: 20px;
  }



}

 