body {
  color:#545454;
text-align: center;
margin: 0;
font-family: "游ゴシック", "Yu Gothic", sans-serif;
font-size:50px;
}

a {
  padding: 0px; /* 必要最低限に調整 */
  text-decoration: none; /* デフォルトの下線をなくす（お好みで） */
  font-size: 50px;
color:#454545;
}

.header {
  justify-content: space-between;
  align-items: center;
  background: #fff;
  height: 200px;
width:100%;
}


/* ここから下がハンバーガーメニューに関するCSS */
.drawer_hidden {
  display: none;
}
.drawer_open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;
  cursor: pointer;
  position:fixed;
  margin:20px;
}
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 12px;
  width: 100px;
  border-radius: 12px;
  background: #545454;
  transition: 0.5s;
  position: absolute;
}
.drawer_open span:before {
  bottom: 24px;
}
.drawer_open span:after {
  top: 24px;
}
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; 
  z-index: 99;
  background: #fff;
  transition: .5s;
}

.nav_content a{
  font-size: 50px;
}
.nav_list {
  list-style: none;
}

.nav_list a{
  text-decoration: none;
  color: #545454;
}

#drawer_input:checked ~ .nav_content {
  left: 0;
}
/*ここまでハンバーガーメニュー*/

.headerimg {
  display: inline-block;
  width: 100%;
  margin: auto;
}

/*ここまでコピペ*/

.guide, .linklist, .iraisuru, .saisin {
  padding: 0px;
}

.guide, .linklist, .iraisuru, .saisin a{
font-size:50px;
}
.guide{
  align-items: center;

}

.guide a{
text-decoration: none;
  background-color: pink;
  border-radius: 20px;
  color: #454545;
  padding:50px;
}

.guide h1{
margin-bottom:0px;
  text-align: center;
font-size:50px;
  padding: 0px;
}

.linklist{
  height: 900px;
}
.linklist h1{
  margin-top: 100px;
  font-size: 50px;
}


.iraisuru a{
text-decoration: none;
  background-color: pink;
  border-radius: 20px;
  padding:50px;
  margin:50px;
  width: 500px;
  height: 600px;
  color: #454545;
}

.iraisuru h1{
font-size:50px;
margin:100px;
}

.saisin a{
text-decoration: none;
  background-color: pink;
  border-radius: 20px;
  padding:50px;
  margin:50px;
  width: 500px;
  height: 600px;
  color: #454545;
}

.saisin h1{
font-size:50px;
margin:100px;
}

/*ここから下コピペ*/
footer{
  position: relative;
  bottom: 0;
  font-family:"游ゴシック" ;
  display: inline-block;
  width: 100%;
  height: 600px;
  background-color: lightgray;
  margin-top:200px;
padding-top:50px;
 padding-bottom: 50px;
}
footer a{
font-family: "游ゴシック", "Yu Gothic", sans-serif;
  text-decoration: none;
  color:#7c7c7c;
  padding: 10px;
  padding-bottom: 5px;
  margin:5px;
  text-align: center;
  font-size: 50px;
}

