@charset "utf-8";

.serif {
  font-family: "Noto Serif JP", serif;
}

.sans {
  font-family: "Noto Sans JP", sans-serif;
}

.side {
  margin: 0 8rem;
}

.hero {
  height: 44rem;
  overflow: hidden;
  position: relative;
}
.hero img {
  object-fit: cover;
}
.hero .mask {
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  position: absolute;
  top: 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background-color: #ffffff;
  border-bottom: 1px solid #f1f1f1;
  padding: 1rem 8rem;
  margin-bottom: 6rem;
  z-index: 30;
}
.nav .point h3 {
  font-size: 2.4rem;
}
.nav ul {
  display: flex;
}
.nav ul li {
  padding: 1rem 2rem;
  color: #999999;
  cursor: pointer;
  transition: 0.4s;
}
.nav ul li:hover {
  color: #000000;
}
.nav ul .selected {
  color: #000000;
}

.main .topic-title {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 2rem;
}
.main .btn-holder {
  width: 100%;
  display: flex;
  justify-content: center;
}
.main .btn {
  padding: 0.8rem 1.4rem;
  border: 2px solid #000000;
  background-color: #ffffff;
  transition: 0.4s;
  cursor: pointer;
}
.main .btn:hover {
  background-color: #000000;
  color: #ffffff;
}
.main .top {
  margin: 2rem 8rem;
}
.main .top .top-item {
  display: flex;
  overflow: hidden;
  margin-bottom: 8rem;
}
.main .top .top-item .left {
  margin-right: 4rem;
}
.main .top .top-item .one {
  width: 40%;
  overflow: hidden;
}
.main .top .top-item .one img:not(.good) {
  width: 200%;
  object-fit: cover;
}
.main .top .top-item .one .good {
  height: 30rem;
}
.main .top .top-item .two {
  width: 60%;
}
.main .top .top-item .two h2 {
  font-size: 2.6rem;
  line-height: 3rem;
}
.main .top .top-item .two p {
  margin: 1.6rem 0;
  line-height: 2.4rem;
  color: #333333;
}
.main .top .top-item .btn-holder {
  width: 100%;
  display: flex;
}
.main .top .top-item .btn-holder button {
  margin: 0 auto;
}
.main .horizontal {
  margin: 0 8rem;
  margin-bottom: 6rem;
}
.main .horizontal .holder {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.main .horizontal .holder .horizontal-item {
  width: 48%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}
.main .horizontal .holder .horizontal-item .txt {
  width: 100%;
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
}
.main .horizontal .holder .horizontal-item .txt small {
  font-size: 0.8rem;
  color: #999999;
}
.main .works .holder {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.main .works .holder div {
  width: 22%;
  margin-bottom: 4%;
  cursor: pointer;
}
.main .works .holder div img {
  width: 100%;
  transition: 0.4s;
}
.main .works .holder div img:hover {
  opacity: 0.8;
}
.main .works .holder div p {
  margin-top: 1rem;
  font-size: 1rem;
}
.main .columns {
  margin: 4rem 8rem;
  user-select: none;
}
.main .columns .holder {
  display: flex;
  flex-direction: column;
}
.main .columns .holder .column-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  cursor: pointer;
}
.main .columns .holder .column-item .img-holder {
  overflow: hidden;
  width: 25%;
  margin-right: 5%;
}
.main .columns .holder .column-item .img-holder img {
  width: 250px;
  height: 250px;
  object-fit: cover;
}
.main .columns .holder .column-item .right {
  width: 70%;
}
.main .columns .holder .column-item .right h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.main .columns .holder .column-item .right small {
  color: #999999;
}
.main .columns .holder .column-item .right p {
  margin-top: 1rem;
  line-height: 2rem;
}
.main .reservation {
  margin: 8rem;
}
.main .reservation .holder {
  display: flex;
  align-items: center;
}
.main .reservation .holder .image-holder {
  width: 50%;
}
.main .reservation .holder .image-holder img {
  width: 100%;
}
.main .reservation .holder form {
  width: 40%;
  margin: 0 4rem;
  display: flex;
  flex-direction: column;
}
.main .reservation .holder form .form-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  border-bottom: 1px solid #999999;
}
.main .reservation .holder form .form-item label {
  margin-bottom: 0.6rem;
}
.main .reservation .holder form .form-item input {
  width: 100%;
  padding: 0.4rem 0;
  border: none;
}
.main .question-group {
  margin: 8rem;
}
.main .question-group .big {
  margin-bottom: 2rem;
  font-size: 2rem;
}
.main .question-group .questions {
  margin-bottom: 2rem;
}
.main .question-group .questions .qa .q {
  margin-bottom: 1rem;
}
.main .question-group .questions .qa .q .q-mark {
  font-weight: 700;
  margin-right: 1rem;
}
.main .question-group .questions .qa .answer {
  line-height: 1.6rem;
}
.main .question-group .questions .qa .answer .a-mark {
  font-weight: 700;
  margin-right: 1rem;
}

.footer {
  display: flex;
  justify-content: space-evenly;
  border-top: 1px solid #cccccc;
  padding: 4rem 8rem;
}
.footer h4 {
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer p {
  line-height: 2rem;
}
.footer .left {
  width: 40%;
  display: flex;
}
.footer .right {
  width: 30%;
}

/*# sourceMappingURL=main.css.map */
