.modal {
  display: none; /* 初期状態は非表示 */
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5); /* 背景を半透明 */
}

.modal-content {
  background-color: #0e3b67;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 800px;
}

.modal-logo{
  width:80%;
  margin:0 auto;
}

.modalcolumn {
  display:flex;
  justify-content: space-between;
  width: 100%;
  margin: 10px auto;
}

.modalitem {
  width:30%;
  font-size: 18px;
  color:#fff;
}

.modal-heading {
  font-size: 20px;
  margin-top:20px;
  margin-bottom: 5px;
  font-weight: bold;
  color:#dacd9b;
}

.close {
  color: #aaa;
  float: right;
  font-size: 24px;
  cursor: pointer;
}

.footerlogo{
  font-size:20px;
  margin-left:20px;
  font-weight: bold;
  color:#dacd9b;
}

.footercolumn {
  display:flex;
  justify-content: space-between;
  width: 80%;
  margin: 0px auto;
}

.footeritem {
  width:30%;
  font-size: 14px;
  text-align: left;
  color:#fff;
}

.footer-heading {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: bold;
  color:#dacd9b;
}


/* ボタンの基本スタイル */
.hamburger {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  z-index: 100;
  background: none;
  border: none;
  cursor: pointer;
}

/* 三本線の線 */
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #dacd9b;
  margin-bottom: 8px;
  transition: transform 0.3s, opacity 0.3s;
}

/* メニューの初期状態（右側に隠しておく） */
.nav-menu {
  line-height: 30px;
  position: fixed;
  top: 0;
  right: -100%; /* 画面の外 */
  width: 50%;
  height: 100vh;
  background: #0e3b67;
  color:#dacd9b;
  transition: right 0.3s;
  z-index: 90;
  padding-top: 80px;
  padding-left:1em;
}

/* アクティブ時の状態（JSでクラスを付与） */
.hamburger.is-active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.nav-menu.is-active {
  right: 0; /* 画面内に戻す */
}

   @media screen and (max-width:700px) {
   
  .modalitem {
  font-size: 14px;
}

  .footeritem {
  font-size: 12px;
}

 .footerlogo{
  font-size:14px;
 }
  
  }