@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  background: #f2f9ff;
  line-height: 1.6;
  font-family: "Noto Sans JP", serif;
  display: flex;
}

main {
  flex: 1;
}

.form {
  width: 600px;
  background: #aaa;
  position: relative;
}
.form .inner {
  position: sticky;
  background: #fff;
  width: 90%;
  height: 90vh;
  top: 5vh;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.price {
  background: #eea;
  padding: 60px;
}
.price .inner {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
}
.price .inner table {
  width: 100%;
  border-collapse: collapse;
}
.price .inner table tr:first-child th {
  text-align: center;
}
.price .inner table tr:first-child th:nth-child(1) {
  border: none;
}
.price .inner table tr:first-child th:nth-child(2) {
  background: #0091B6;
  border-color: #0091B6;
  color: #fff;
}
.price .inner table tr:first-child th:nth-child(3) {
  background: #CD0057;
  border-color: #CD0057;
  color: #fff;
}
.price .inner table tr:first-child th:nth-child(4) {
  background: #E5A02A;
  border-color: #E5A02A;
  color: #fff;
}
.price .inner table tr th,
.price .inner table tr td {
  padding: 1em;
  border: solid 1px #ccc;
  font-size: 15px;
}
.price .inner table tr td {
  text-align: center;
  line-height: 0;
}
.price .inner table tr th {
  text-align: left;
}
.price .inner table tr th small {
  font-weight: 400;
}

.page_work {
  padding: 40px;
}
.page_work .inner {
  max-width: 1000px;
  margin: 0 auto;
}
.page_work .inner .work_list ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.page_work .inner .work_list ul li {
  flex: 1;
}
.page_work .inner .work_list ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1/1;
  border: solid 1px #aaa;
  border-radius: 5px;
  transition: 0.2s;
}
.page_work .inner .work_list ul li a:hover {
  background: #eee;
}
.page_work .inner .work_list ul li a:hover img {
  max-width: 78%;
  max-height: 78%;
}
.page_work .inner .work_list ul li a img {
  max-width: 80%;
  max-height: 80%;
  box-shadow: 5px 5px 10px -5px rgba(0, 0, 0, 0.5);
  transition: 0.2s;
}

.tabs {
  display: flex;
  gap: 10px;
}

.tab {
  padding: 10px 20px;
  border: 1px solid #ccc;
  background: #f0f0f0;
  cursor: pointer;
}

.tab.active {
  background: #ddd;
}

.contents {
  margin-top: 10px;
}

.tab-content {
  display: none;
  padding: 10px;
  border: 1px solid #ccc;
}
.tab-content.active {
  display: block;
}
.tab-content .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.tab-content .item img {
  display: block;
  max-width: 600px;
  box-shadow: 5px 5px 10px -5px rgba(0, 0, 0, 0.5);
}/*# sourceMappingURL=style.css.map */