@charset "UTF-8";
*{margin: 0;padding: 0;}

body{
  font-family:　Lato, sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 16pt;
  margin: 0;
  padding: 0;
  background-color: #fff;
	overflow-x: hidden;

}





/* メニューのスタイル */
.menu {
  position: fixed;
  top: 0;
  right: -100%; /* 初期状態では画面の外に隠れている */
  width: 300px;
  height: 100%;
  background-color: #ffffff;
  color: #333;
  transition: right 0.3s ease; /* スライドインのアニメーション */
  padding: 20px;
  box-sizing: border-box;
  z-index: 90;
}

/* メニューが開いているとき */
.menu.open {
  right: 0;

}

/* ボタンのスタイル */
.hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  cursor: pointer;
  z-index: 20;
  
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #ffffff;
  margin: 5px 0;
  transition: 0.4s;
}

/* バツ印に変化するスタイル */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background-color: #001D60;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  background-color: #001D60;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background-color: #001D60;
}

/* メニューリストのスタイル */
.menu ul {
  list-style-type: none;
  padding: 0;
  margin-top: 80px;
}

.menu li {
  padding: 20px 0;
  border-bottom: 3px solid #FFE000;
}

.menu li a {
  color: #001D60;
  text-decoration: none;
  display: block;
}

.menu li :hover {
  color: #FE21A6; /* ホバー時の色 */
  transition: 0.3s; /* 滑らかに変化 */
}


.back{
position: relative;
background-color: #ffffff;
background-size: cover;
background-attachment: fixed;
width: 100dvw;
height: 5dvh;
overflow-x: hidden;
}  

.header1 img{
width: 100dvw;
}

.header1{
width: 100vw;
height: auto;
text-align: center;
margin: 0 auto;
position: absolute;
top: 0;
display: flex;
padding: 0px;
}

.header2{
display: none;
}

.container {

  width: 100dvw;
 padding-top: 550px;
background-color: #ffffff;
}

.item p{
color: gray;
text-align: right;
font-family: "M PLUS 2", sans-serif;
font-style: normal;
font-size: 15pt;
font-weight: 300;
padding: 10px;
padding-right: 20px;

}

.item img{
width: 100dvw;
}


.item {
padding: 0px;
text-align: center;
width: 100dvw;
height: auto;
margin-right: auto;
margin-left: auto;
margin-bottom: 0;
}


footer{
text-align: center;
background-color: gray;
width: 100dvw;

}

footer p{

text-align: center;
font-family: "M PLUS 2", sans-serif;
font-style: normal;
font-size: 9pt;
font-weight: 300;
color: #ffffff;
padding: 10px;
}


/*スマホ用*/

@media screen and (max-width:480px){ 


.back{
position: relative;
background-color: #ffffff;
background-size: cover;
background-attachment: fixed;
width: 100dvw;
height: 1vh;} 


.header2 img{
width: 100dvw;
}

  

.header2{
width: 100vw;
text-align: center;
margin: 0 auto;
position: absolute;
top: 0;
display: flex;
padding: 0px;
}

.header1{
display: none;
}


.container {
margin-top: 210px;
background-color: #ffffff;
margin-left: 0px;
margin-right: 0px;
padding: 0px;
width: 100dvw;
}

.item p{

text-align: right;
font-family: "M PLUS 2", sans-serif;
font-style: normal;
font-size: 5pt;
font-weight: 300;
padding: 5px;
color: gray;
}

.item{

left: 0;
width: 100dvw;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0px;
padding-bottom: 0px;
}

.item img{
padding-bottom: 0px;
width: 100dvw;
}


footer{

padding-bottom: 10px;
text-align: center;
background-color: #000000;
}



 }