@charset "utf-8";

.title {
  height: 310px;
  background-image: url(../img/menu-hedere.JPG);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffff;
  text-shadow: 1px 1px 10px #242424;
}
.title h1 {
  font-family: 'Montserrat',sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
}
.title p {
  font-size: 14px;
  margin-top: 15px;
}
.menu {
  display: flex;
  justify-content: space-between;
  width: 930px;
  max-width: 90%;
  margin-top: 75px;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-start;
}
.menu img {
  width: 360px;
}
.menu-text {
  min-width: 500px;
  margin-right: 40px;
}
.reverse {
  flex-direction: row-reverse;
}
.reverse .menu-text {
  margin-left: 40px;
  margin-right: 0;
}
.menu-text h2 {
  font-size: 1.38rem;
  font-weight: bold;
  line-height: 30px;
}
.menu-text h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: #242424;
  margin-top: 20px;
}
.menu-text P {
  font-size: 15px;
  line-height: 28px;
  margin-top: 25px;
}

.price {
  font-weight: bold;
  text-align: right;
}

.footer {
  margin-top: 100px;
}

.link-button-area {
  text-align: center;
  margin-top: 20px;
}
.link-button {
  background-color: #7fffd4;
  display: inline-block;
  min-width: 180px;
  line-height: 48px;
  border-radius: 24px;
  font-family: 'Montserrat',sans-serif;
  font-size: 14px;
}
.link-button:hover {
  background-color: #2e8b57;
}

.self-check {
  width: 930px;
  max-width: 100%;
  text-align: center;
  margin-top: 55px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  padding: 20px;
  line-height: 28px;
  font-weight: bold;
}

.button-45 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 250px;
    margin: 0 auto;
    padding: .9em 2em;
    border-top: 1px solid #ff69b4;
    border-right: none;
    border-bottom: 1px solid #ff69b4;
    border-left: none;
    background-color: #fff;
    color: #ff69b4;
    font-size: 1em;
}

.button-45::before,
.button-45::after {
    position: absolute;
    width: 1px;
    height: 140%;
    background-color: #ff69b4;
    content: '';
}

.button-45::before {
    left: calc(3.1em / 5 - 1px);
}

.button-45::after {
    right: calc(3.1em / 5 - 1px);
}

.button-45:hover {
  background-color: #ff69b4;
  color: #fff;
}

/* メディア */
@media (max-width: 800px){
  .menu {
    display: block;
    width: 500px;
    margin-top: 45px;
  }
  .menu-text {
    margin-right: 0;
  }
  .menu .menu-text {
    margin-left: 0;
  }
  .menu img {
    width: 100%;
    height: auto;
    margin-top: 25px;
  }
}