@charset "UTF-8";
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
.contact-form-container {
  background-color: #fff;
  min-height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-form-container iframe {
  flex-grow: 1;
}

.contact-thanks-container {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2em;
  padding: 5em 1em;
  justify-content: center;
  align-items: center;
}
.contact-thanks-container p {
  line-height: 1.7;
}
.contact-thanks-container .button {
  padding: 5px;
  margin: 2em;
  width: 250px;
  min-height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fcd700;
  border: 1px solid #fcd700;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative; /* ボタンを相対配置に変更 */
  color: #333;
  /* ボタン内テキストとアイコンのスタイリング */
}
.contact-thanks-container .button:hover {
  background-color: #fff;
  color: #0047ab;
}
.contact-thanks-container .button p {
  display: inline-flex;
  align-items: center;
  text-align: center;
  gap: 0.5em;
  font-weight: bold;
  margin-bottom: 0;
}
.contact-thanks-container .button p::after {
  position: absolute;
  right: 20px;
  font-family: "Material Icons";
  content: "\e5e1";
  transition: transform 0.3s ease;
  font-size: 16px;
}
.contact-thanks-container .button:hover p::after {
  transform: translateX(0.3em);
  color: #0047ab;
}/*# sourceMappingURL=contact-form.css.map */
@charset "UTF-8";
/*メニューをページ下部に固定*/
#sp-fixed-menu {
  position: fixed;
  width: 100%;
  max-width: 100vw;
  height: 60px;
  bottom: 0px;
  font-size: 0;
  opacity: 1;
  z-index: 200;
}

/*メニューを横並びにする*/
#sp-fixed-menu ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 各メニュー */
#sp-fixed-menu li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
  height: 60px;
  padding: 0;
  margin: 0;
  font-size: 12px;
  background: #2B63AD;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
}
#sp-fixed-menu li a {
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
}
#sp-fixed-menu li:first-child {
  background-color: #222;
}
#sp-fixed-menu li:last-child {
  border-right: 0;
}/*# sourceMappingURL=sp_menu.css.map */