@charset "UTF-8";
/* 共通デザイン */
/* HTML Body */
html,
body {
  height: 100%;
  margin: 0;
}

body {
  background-color: #F5F7FA;
  display: flex;
  flex-direction: column;
}

/* Header */
header {
  margin: 0;
  padding: 0;
  background-color: #004E7C;
  display: flex;
  position: relative;
}
header img {
  margin: 36px;
  width: 256px;
  height: 128px;
}
header nav {
  margin: 0;
  padding: 0;
  position: absolute;
  right: 177px;
  top: 50%;
  transform: translate(-50%, -50%);
}
header nav ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-auto-flow: column;
  gap: 83px;
}
header nav ul li {
  list-style-type: none;
  padding-left: 0;
}
header nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 20px;
}

/* Main */
main {
  max-width: 1080px;
  margin: 0 auto;
  flex: 1;
}
main h1 {
  margin: 0;
  padding: 0;
  margin-top: 128px;
  font-size: 64px;
  font-weight: bold;
}
main section {
  margin: 0;
  margin-top: 200px;
}
main section h1 {
  margin: 0;
  margin-left: 50px;
  padding: 0;
  font-size: 48px;
  font-weight: bold;
}

/* Footer */
footer {
  margin: 0;
  margin-top: 200px;
  padding: 0;
  background-color: #004E7C;
  display: flex;
}
footer nav {
  margin: 0;
  padding: 0;
  padding-left: 78px;
  padding-top: 76px;
  padding-bottom: 100px;
}
footer nav ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-auto-flow: column;
  gap: 83px;
}
footer nav ul li {
  list-style-type: none;
  padding-left: 0;
}
footer nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 20px;
}

/* Button */
button {
  margin: 0;
  padding: 0;
  width: 400px;
  height: 100px;
  border-radius: 56px;
  border: none;
  color: #fff;
  background-color: #004E7C;
  font-size: 32px;
  font-weight: bold;
}

button:hover {
  background-color: #FF3131;
}

/* 個別実装 */
.hero {
  margin: 0;
  padding: 0;
}
.hero img {
  width: 100%;
  height: auto;
  display: block;
}

main.top .about .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px;
}
main.top .about .content img {
  width: 480px;
  height: auto;
  margin-top: 39px;
  margin-left: 50px;
}
main.top .about .content p {
  margin-top: 71px;
  width: 455px;
}
main.top .service .content {
  display: flex;
  margin: 0 145px;
}
main.top .service .content h2 {
  margin-top: 32px;
  font-size: 32px;
}
main.top .service .content button {
  margin-left: 98px;
}

main.services .plan {
  margin-top: 63px;
}
main.services .plan .tab {
  margin-top: 39px;
  margin-left: 95px;
  width: 800px;
  height: 980px;
}
main.services .plan .tab .tab-head {
  display: flex;
}
main.services .plan .tab .tab-head button {
  width: 250px;
  height: 100px;
  font-size: 24px;
  border-radius: 20px;
}
main.services .plan .tab .tab-head button.selected {
  border-radius: 0;
  background-color: #FF3131;
}
main.services .plan .tab .tab-body {
  color: #F5F7FA;
  border: 2px solid #004E7C;
  height: 100%;
}
main.services .plan .tab .tab-body table {
  margin: 100px;
  width: calc(100% - 200px);
  table-layout: fixed;
}
main.services .plan .tab .tab-body table colgroup .col01 {
  width: 180px;
}
main.services .plan .tab .tab-body table thead tr {
  border-bottom: 2px solid #004E7C;
}
main.services .plan .tab .tab-body table thead tr th {
  color: #000;
  font-size: 24px;
}
main.services .plan .tab .tab-body table tbody tr {
  height: 64px;
  border-bottom: 1px solid #AAAAAA;
}
main.services .plan .tab .tab-body table tbody tr td {
  color: #000;
}
main.services .plan .tab .tab-body table tbody tr:last-child {
  border-bottom: 2px solid #333;
}
main.services .contact .content {
  text-align: center;
}

main.contact section {
  margin: 63px;
  width: 800px;
  height: auto;
  border: 1px solid #000;
}
main.contact section h1 {
  margin-top: 71px;
  margin-bottom: 106px;
  text-align: center;
}
main.contact section form {
  margin: auto;
  width: 600px;
  border-top: 2px solid #004E7C;
}
main.contact section form .item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: repeat(64px, 2);
}
main.contact section form .item label {
  margin-top: 20px;
  padding: 0;
  font-size: 36px;
  white-space: nowrap;
}
main.contact section form .item .require-tag {
  margin-top: 32px;
  margin-left: 20px;
  width: 40px;
  height: 20px;
  border-radius: 5px;
  color: #fff;
  text-align: center;
  font-size: 12px;
  background-color: #FF3131;
}
main.contact section form .item input, main.contact section form .item select, main.contact section form .item textarea {
  grid-column: span 2;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: 44px;
  width: 512px;
  height: 48px;
}
main.contact section form .item textarea {
  height: 144px;
}
main.contact section form hr {
  border: 1px solid #AAAAAA;
}
main.contact section form .item-button {
  margin: 0;
  padding: 0;
  margin-bottom: 86px;
  padding-top: 39px;
  padding-bottom: 16px;
  text-align: center;
  border-bottom: 2px solid #004E7C;
}
main.contact section form .item-button button {
  width: 300px;
  height: 60px;
  background-color: #999999;
  margin-left: auto;
  margin-right: auto;
}

main.privacy section {
  margin-top: 72px;
}
main.privacy section .content {
  margin-left: 140px;
  margin-top: 32px;
  width: 800px;
}
main.privacy section .content h2 {
  font-size: 24px;
  font-weight: bold;
}
main.privacy section .content p, main.privacy section .content li {
  font-size: 20px;
}

main.notFound_404 {
  margin-left: 180px;
}
main.notFound_404 p {
  margin-left: 107px;
  margin-top: 60px;
  font-size: 20px;
}/*# sourceMappingURL=style.css.map */