@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;
}

header {
  background: #fff;
}
header .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px 20px 10px;
}
header .inner .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 5px;
}
header .inner .head .txt {
  color: #333;
  font-size: 13px;
}
header .inner .head ul {
  display: flex;
}
header .inner .head ul li a {
  text-decoration: underline;
  font-size: 13px;
  padding: 0.4em;
  color: #888;
}
header .inner nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .inner nav .logo {
  line-height: 0;
}
header .inner nav .logo img {
  width: 250px;
}
header .inner nav ul {
  display: flex;
}
header .inner nav ul li a {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  display: block;
  padding: 0.5em 1em;
  border-radius: 5px;
  transition: 0.3s;
}
header .inner nav ul li a:hover {
  background: #e3f0ff;
}
header a {
  text-decoration: none;
  color: #000;
}

.single {
  max-width: 800px;
  padding: 100px 40px;
  margin: 0 auto;
  background: #fff;
}
.single h1 {
  text-align: center;
}
.single .requirements {
  border: solid 1px #aaa;
  border-radius: 5px;
  overflow: hidden;
}
.single .requirements .item {
  display: flex;
  border-bottom: solid 1px #aaa;
}
.single .requirements .item:last-child {
  border-bottom: none;
}
.single .requirements .item h3 {
  width: 160px;
  font-size: 13px;
  background: #eee;
  padding: 1em 2em;
  font-weight: 500;
}
.single .requirements .item .contents {
  flex: 1;
  padding: 1em 2em;
  font-size: 13px;
}
.single .tag {
  border: solid 1px #aaa;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
}
.single .tag .item {
  display: flex;
  gap: 10px;
  padding: 10px;
}
.single .tag .item h3 {
  font-weight: 400;
  font-size: 15px;
  width: 60px;
}
.single .tag .item ul li {
  display: inline-block;
  margin: 5px;
  font-size: 14px;
  background: #eee;
  padding: 0.2em 0.4em;
}
.single .ratio {
  border: solid 1px #aaa;
  margin: 20px 0;
  padding: 20px;
  border-radius: 10px;
}
.single .ratio .item {
  display: flex;
  gap: 10px;
  padding: 10px;
}
.single .ratio .item h3 {
  font-weight: 400;
  font-size: 15px;
  width: 60px;
}
.single .ratio .item .chart {
  display: flex;
  align-items: center;
  gap: 15px;
}
.single .ratio .item .chart .txt {
  font-size: 14px;
  width: 90px;
  text-align: center;
  background: #eee;
  padding: 0.4em 0;
  border-radius: 5px;
}
.single .ratio .item .chart .graph {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}
.single .ratio .item .chart .graph::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #ccc;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.single .ratio .item .chart span {
  width: 10px;
  height: 10px;
  background: #ccc;
  position: relative;
  border-radius: 100%;
}
.single .ratio .item .chart span.on {
  width: 15px;
  height: 15px;
  background: #444;
}
.single .ratio .item .chart_age {
  display: flex;
  align-items: center;
  gap: 10px;
}
.single .ratio .item .chart_age span {
  background: #eee;
  padding: 0.2em 0.4em;
  border-radius: 10em;
  font-size: 14px;
}
.single .ratio .item .chart_age span.on {
  background: #444;
  color: #fff;
}

.page_archive {
  position: relative;
}
.page_archive::before {
  content: "";
  display: block;
  width: 100%;
  height: 800px;
  position: absolute;
  z-index: -1;
  background: linear-gradient(0deg, rgba(220, 239, 255, 0) 0%, #dcefff 100%);
}
.page_archive main {
  max-width: 1200px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  padding: 60px 20px;
}
.page_archive main .post_list {
  flex: 1;
}
.page_archive main .post_list .card {
  border: solid 1px #eee;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.page_archive main .post_list .card .data {
  background: #70c0ff;
  padding: 10px;
  font-size: 14px;
  display: flex;
}
.page_archive main .post_list .card .data span {
  padding: 0 10px;
  color: #fff;
}
.page_archive main .post_list .card .data ul {
  display: flex;
  margin-right: auto;
}
.page_archive main .post_list .card .data ul li {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.page_archive main .post_list .card .data ul li::after {
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  background: #fff;
  margin: 0 0.6em;
  transform: rotate(20deg);
}
.page_archive main .post_list .card .data ul li:last-child::after {
  display: none;
}
.page_archive main .post_list .card .inner {
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.page_archive main .post_list .card .inner .thumbnail {
  width: 280px;
}
.page_archive main .post_list .card .inner .thumbnail img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.page_archive main .post_list .card .inner .contents {
  flex: 1;
}
.page_archive main .post_list .card .inner .contents ul.tag {
  display: flex;
  gap: 5px;
  padding-bottom: 5px;
}
.page_archive main .post_list .card .inner .contents ul.tag li {
  font-size: 12px;
  border: solid 1px #aaa;
  color: #222;
  padding: 0.1em 0.5em 0.2em;
  border-radius: 5px;
}
.page_archive main .post_list .card .inner .contents h3 {
  margin-bottom: 0.5em;
}
.page_archive main .post_list .card .inner .contents h3 a {
  display: block;
  color: #3479c8;
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
}
.page_archive main .post_list .card .inner .contents h3 a:hover {
  opacity: 0.6;
}
.page_archive main .post_list .card .inner .requirements {
  border: solid 1px #e3e3e3;
  border-radius: 5px;
  overflow: hidden;
}
.page_archive main .post_list .card .inner .requirements .item {
  display: flex;
  border-bottom: solid 1px #e3e3e3;
}
.page_archive main .post_list .card .inner .requirements .item:last-child {
  border-bottom: none;
}
.page_archive main .post_list .card .inner .requirements .item h4 {
  width: 80px;
  font-size: 13px;
  background: #efefef;
  border-right: solid 1px #e3e3e3;
  padding: 0.6em 1em;
  font-weight: 500;
}
.page_archive main .post_list .card .inner .requirements .item .contents {
  flex: 1;
  padding: 0.6em 1em;
  font-size: 13px;
}
.page_archive main .post_list .card .inner .more a {
  background: #0050d9;
  color: #fff;
  padding: 2em;
  text-decoration: none;
  font-size: 15px;
}
.page_archive .searchform {
  width: 300px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
}
.page_archive .searchform h3 {
  font-size: 18px;
  font-weight: 500;
  color: #3479c8;
  padding: 0.8em 0 0.4em;
}
.page_archive .searchform form input[type=text] {
  width: 100%;
  padding: 0.8em;
  border: none;
  font-size: 16px;
  outline: none;
  border: solid 1px #aaa;
  border-radius: 5px;
}
.page_archive .searchform form label {
  display: block;
}
.page_archive .searchform form button {
  font-size: 15px;
  background: #3479c8;
  color: #fff;
  padding: 0.5em 1em;
  font-weight: 500;
  border-radius: 10px;
  border: none;
  display: block;
  width: 120px;
  margin: 40px auto 0;
}

.page_top {
  position: relative;
}
.page_top::before {
  content: "";
  display: block;
  width: 100%;
  height: 800px;
  position: absolute;
  z-index: -1;
  background: linear-gradient(0deg, rgba(220, 239, 255, 0) 0%, #dcefff 100%);
}
.page_top .search {
  padding: 40px 20px;
}
.page_top .search form {
  width: 700px;
  background: #fff;
  border-radius: 10px;
  margin: 0 auto;
  display: flex;
  padding: 10px 10px 10px 20px;
}
.page_top .search form input {
  flex: 1;
  border: none;
  font-size: 16px;
  outline: none;
}
.page_top .search form button {
  font-size: 16px;
  width: -moz-fit-content;
  width: fit-content;
  background: #3479c8;
  color: #fff;
  padding: 0.5em 1em;
  font-weight: 500;
  border-radius: 10px;
  border: none;
}
.page_top .post {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}
.page_top .post h2 {
  font-size: 22px;
  color: #3479c8;
  text-align: center;
  margin-bottom: 0.5em;
}
.page_top .post .post_list .card {
  border: solid 1px #eee;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.page_top .post .post_list .card .data {
  background: #70c0ff;
  padding: 10px;
  font-size: 14px;
  display: flex;
}
.page_top .post .post_list .card .data span {
  padding: 0 10px;
  color: #fff;
}
.page_top .post .post_list .card .data ul {
  display: flex;
  margin-right: auto;
}
.page_top .post .post_list .card .data ul li {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.page_top .post .post_list .card .data ul li::after {
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  background: #fff;
  margin: 0 0.6em;
  transform: rotate(20deg);
}
.page_top .post .post_list .card .data ul li:last-child::after {
  display: none;
}
.page_top .post .post_list .card .inner {
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.page_top .post .post_list .card .inner .thumbnail {
  width: 280px;
}
.page_top .post .post_list .card .inner .thumbnail img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.page_top .post .post_list .card .inner .contents {
  flex: 1;
}
.page_top .post .post_list .card .inner .contents ul.tag {
  display: flex;
  gap: 5px;
  padding-bottom: 5px;
}
.page_top .post .post_list .card .inner .contents ul.tag li {
  font-size: 12px;
  border: solid 1px #aaa;
  color: #222;
  padding: 0.1em 0.5em 0.2em;
  border-radius: 5px;
}
.page_top .post .post_list .card .inner .contents h3 {
  margin-bottom: 0.5em;
}
.page_top .post .post_list .card .inner .contents h3 a {
  display: block;
  color: #3479c8;
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
}
.page_top .post .post_list .card .inner .contents h3 a:hover {
  opacity: 0.6;
}
.page_top .post .post_list .card .inner .requirements {
  border: solid 1px #e3e3e3;
  border-radius: 5px;
  overflow: hidden;
}
.page_top .post .post_list .card .inner .requirements .item {
  display: flex;
  border-bottom: solid 1px #e3e3e3;
}
.page_top .post .post_list .card .inner .requirements .item:last-child {
  border-bottom: none;
}
.page_top .post .post_list .card .inner .requirements .item h4 {
  width: 80px;
  font-size: 13px;
  background: #efefef;
  border-right: solid 1px #e3e3e3;
  padding: 0.6em 1em;
  font-weight: 500;
}
.page_top .post .post_list .card .inner .requirements .item .contents {
  flex: 1;
  padding: 0.6em 1em;
  font-size: 13px;
}
.page_top .post .post_list .card .inner .more a {
  background: #0050d9;
  color: #fff;
  padding: 2em;
  text-decoration: none;
  font-size: 15px;
}

.footer_contact {
  max-width: 1200px;
  display: flex;
  margin: 0 auto;
  gap: 20px;
  padding: 60px 20px 20px;
}
.footer_contact .tel {
  flex: 1.5;
  background: #fff1db;
  border-radius: 10px;
  padding: 20px 40px;
}
.footer_contact .tel h4 {
  color: #3479c8;
  font-size: 20px;
  font-weight: 500;
}
.footer_contact .mail {
  flex: 1;
  background: #3479c8;
  border-radius: 10px;
}

footer {
  background: #03152a;
  padding: 60px 20px 20px;
}
footer .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .inner .company .logo img {
  width: 140px;
}
footer .inner .company .data {
  font-size: 14px;
  color: #fff;
  margin-bottom: 20px;
}
footer .inner .company ul {
  display: flex;
  gap: 5px;
}
footer .inner .company ul li a {
  text-decoration: underline;
  font-size: 13px;
  color: #fff;
}
footer .inner nav ul li a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  padding: 0.5em 1em;
  border-radius: 10px;
  transition: 0.3s;
}
footer .inner nav ul li a:hover {
  background: rgba(255, 255, 255, 0.2);
}
footer .copyright {
  font-size: 12px;
  color: #fff;
  text-align: center;
  padding-top: 40px;
}/*# sourceMappingURL=style.css.map */