@media screen and (min-width: 769px) {
  .mr-header.is-fixed nav {
    padding: 22px 30px;
    margin-bottom: 0px;
  }
}

.mr-header-logo {
  a {
    display: flex;
    flex-direction: column;
    position: relative;
  }
  span {
    font-size: 10px;
    position: absolute;
    left: 60px;
    top: 36px;
    border: 1px solid white;
    color: white;
    border-radius: 16px;
    padding: 0px 8px;
  }
}

.mr-header.is-fixed .mr-header-logo {
  span {
    color: #555;
    border-color: #555;
  }
}

@media screen and (max-width: 768px) {
  .mr-header-logo {
    span {
      border: 0.2666666667vw solid;
      font-size: 2.1vw;
      top: 8vw;
      left: 13vw;
    }
  }
}

@media screen and (max-width: 425px) {
  .mr-header-logo {
    span {
      font-size: 2.5vw;
    }
  }
}

.mr-header nav {
  margin-bottom: 20px;
}

.mr-entry-period {
  margin-bottom: 0;
}

.mr-entry iframe {
  height: 214px;
}

@media screen and (max-width: 768px) {
  .mr-entry-annotation {
    margin-top: 1em;
  }  
}

.mr-plan-notice {
  max-width: 255px;
  margin: 0 auto;
  margin-top: 25px;
}

@media screen and (max-width: 768px) {
  .mr-plan-notice {
    font-size: 2.7vw;
    max-width: 100%;
  }  
}

.mr-plan-notice a {
  background-image: linear-gradient(90deg, #191919, #191919);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  transition: background-size .6s;
  word-break: break-all;
}

.mr-plan-notice a:hover {
  background-position: right bottom;
  background-size: 0 1px;
}

.mr-plan-list {
  display: flex;
  justify-content: center; /* 中央寄せ */
  align-items: center;
}

.mr-official {
  text-align: center;
  padding: 50px 20px;
  background-color: #f8f8f8; /* 軽いグレー背景で目立たせる */
  border-top: 2px solid #ddd; /* 上部に区切り線 */
}

.mr-official-inner {
  max-width: 800px;
  margin: 0 auto;
}

.mr-official-catch {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.mr-official h2 {
  font-size: 24px;
  color: #191919;
  margin-bottom: 15px;
}

.mr-official p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.mr-official-button {
  display: inline-block;
  width: auto; 
  height: 50px;
  padding: 12px 24px;
  font-size: 15px; 
  font-weight: bold;
  color: #2C3E62; 
  background: white; 
  border: 2px solid #4C6FD6; 
  border-radius: 50px; 
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease;
}

.mr-official-button:hover {
  background: #4C6FD6; 
  color: white; 
}


.responsive-text {
display: flex;
width: 50%;
margin: 0; 
padding: 0;
text-align: left; 
}


@media screen and (max-width: 768px) {
.responsive-text {
  width: 90%; 
  margin: 0 auto; 
  text-align: center; 
}
}