@charset "utf-8";
/* CSS top-page */
h2 {
  color: #EE7E0E;
}
.section_inner {
 max-width: 1080px;
 margin: 0 auto;
}
/*----------------------
section_price
-------------------------*/
.section_price {
  margin: 0;
  padding: 150px 5px 60px;
  background-color: #FFF3E8;
}
.section_table {
  width: 100%;
  margin: 0 auto;
  padding: 20px 10px;
  box-sizing: border-box;
  border-radius: 30px;
  background-color: #fff;
}
table {
  width: 80%;
  margin: 0 auto;
  box-sizing: border-box;
  border: 0;
  font-size: 14px;
  line-height: 20px;
}
table th,table td {
  padding: 10px;
  text-align: left;
  box-sizing: border-box;
  border-collapse: collapse;
}
/*----------------------
section_messages
-------------------------*/
.section_messages {
  margin: 0;
  padding-bottom:  60px;
  background-color: #FFF3E8;
}
.section_messages_txt {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 30px;
  border: 4px double #EE7E0E;
  text-align: center;
  position: relative;
}
.section_messages_txt h3 {/*初めてお越しになる方へ*/
  padding: 0 10px;
  letter-spacing: 4px;
  font-weight: bold;
  background-color: #FFF3E8;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.section_messages_txt div p:first-child {
  margin-top: 10px;
}
@media (max-width: 450px) {
table {
  width: 97%;
}
td {
  min-width: 80px;
}
.section_messages_txt div p:first-child {
  margin-top:20px;
}
}