@charset "UTF-8";
/*
    リセットCSS等の基本設定
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Meiryo UI", "Meiryo", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Noto Sans Japanese", roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #363636;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
a, p, span,
blockquote, code,
ol, ul, li, dl, dt, dd,
div, section, article, main, aside,
nav, header, footer,
img, figure, figcaption,
address, time, audio, video,
iframe, fieldset,
form, label, table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
}

article, aside, footer, header, nav, section, main {
  display: block;
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
  border: 1px solid #363636;
}

th, td {
  padding: 4px 6px;
  text-align: left;
  vertical-align: top;
  border: 1px solid #363636;
}

input, textarea {
  padding: 8px;
  border: 1px solid #363636;
  border-radius: 0;
  background-image: none;
  font-family: inherit;
  font-size: inherit;
  -webkit-appearance: none;
}
input:focus, textarea:focus {
  outline: none;
  border: 1px solid #363636;
  box-shadow: none;
}

textarea {
  resize: none;
}

input[type=submit] {
  cursor: pointer;
  border: none;
}
input[type=submit]:hover, input[type=submit]:focus {
  outline: none;
  border: none;
}
input[type=submit] ::-moz-focus-inner {
  padding: 0;
  border: none;
}
input[type=radio] {
  display: none;
}
input[type=radio] + span {
  display: inline-block;
  position: relative;
  padding: 0 0 0 1.2em;
  margin: 0 0.2em 0;
  cursor: pointer;
}
input[type=radio] + span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #363636;
  border-radius: 50%;
  width: 1em;
  height: 1em;
  display: block;
}
input[type=radio] + span::after {
  opacity: 0;
  transition: opacity 0.3s ease 0s;
}
input[type=radio] + span:focus, input[type=radio] + span:checked {
  outline: none;
  border: 1px solid #fff;
  box-shadow: none;
  background: #363636;
}
input[type=radio]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0.2em;
  transform: translateY(-50%);
  background: #363636;
  border-radius: 50%;
  width: 0.6em;
  height: 0.6em;
  display: block;
  opacity: 1;
}

select {
  width: 100%;
  padding: 8px 24px 8px 8px;
  border-radius: 0;
  background-image: none;
  border: 1px solid #363636;
  font-family: inherit;
  font-size: 1em;
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
}
select::-ms-expand {
  display: none;
}
select:focus {
  outline: none;
  border: 1px solid #363636;
  box-shadow: none;
}

.hidden {
  display: none;
}

.wrapper {
  overflow: hidden;
}

.container--l {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

.container {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
}

.header {
  padding: 24px 40px;
  background-color: #f9fafc;
  border-bottom: 1px solid #ddd;
}

.maincontents {
  background-color: #f9fafc;
  padding: 40px;
}
@media (max-width: 768px) {
  .maincontents {
    padding: 20px;
  }
}

.main__ttl {
  font-size: 40px;
  line-height: 1.5;
  color: #363636;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .main__ttl {
    font-size: 28px;
    margin-bottom: 8px;
  }
}

.main__subttl {
  font-size: 20px;
  line-height: 1.5;
  color: #707070;
  font-weight: bold;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .main__subttl {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.section {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 28px 40px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .section {
    padding: 16px 20px;
    margin-bottom: 20px;
  }
}

.section__hed2 {
  font-size: 24px;
  color: #363636;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .section__hed2 {
    font-size: 20px;
  }
}

.progress {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}
.progress .bar {
  height: 10px;
  background: #eef2ff;
  border-radius: 999px;
  overflow: hidden;
}
.progress .bar > i {
  display: block;
  height: 100%;
  width: 0%;
  background: #2563eb;
  border-radius: inherit;
  transition: width 0.25s ease;
}
.progress small {
  color: #707070;
}
.progress strong {
  font-weight: 500;
  color: #363636;
}

.list {
  display: grid;
  gap: 16px;
}

.item {
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  transition: all 0.3s ease;
}
.item:hover {
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.16);
}
.item input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  inline-size: 20px;
  block-size: 20px;
  border: 2px solid #ddd;
  border-radius: 4px;
  display: grid;
  place-content: center;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}
.item input[type=checkbox]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.35);
}
.item input[type=checkbox]::after {
  content: "";
  width: 10px;
  height: 10px;
  transform: scale(0);
  transition: transform 0.12s ease;
  background: #2563eb;
  border-radius: 2px;
}
.item input[type=checkbox]:checked {
  border-color: #2563eb;
  background: #fff;
}
.item input[type=checkbox]:checked::after {
  transform: scale(1);
}
.item .label {
  cursor: pointer;
  flex: 1;
  font-size: 16px;
  color: #363636;
  font-weight: 500;
}

.cv__caption {
  margin-bottom: 16px;
}

.cv__card {
  display: flex;
  border: 1px solid #ddd;
  color: #363636;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .cv__card {
    flex-direction: column;
  }
}
.cv__card:hover {
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.16);
}

.cv__img {
  width: 40%;
}
@media (max-width: 992px) {
  .cv__img {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .cv__img {
    width: 100%;
    order: 1;
  }
}
.cv__img img {
  display: block;
  width: 100%;
  height: auto;
}

.cv__text {
  width: 60%;
  padding: 20px 32px;
}
@media (max-width: 992px) {
  .cv__text {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .cv__text {
    width: 100%;
    order: 2;
    padding: 12px 20px 20px;
  }
}

.cv__text-tag {
  font-size: 16px;
  color: #707070;
}

.cv__text-ttl {
  font-size: 20px;
  margin-bottom: 8px;
}

.cv__text-description {
  font-size: 14px;
  color: #707070;
}

.footer {
  background-color: #101010;
  padding: 40px;
  color: #fff;
}

.footer__hed {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.footer__list {
  margin-bottom: 24px;
}
.footer__list li {
  list-style: none;
  margin-left: 16px;
  margin-bottom: 24px;
}
.footer__list li a {
  font-size: 16px;
  color: #fff;
  transition: all 0.3s ease;
  letter-spacing: 0.04em;
}
.footer__list li a:hover {
  opacity: 0.7;
}
.footer__list li a img {
  width: 16px;
  height: 16px;
}

.footer__copy {
  text-align: center;
}/*# sourceMappingURL=style.css.map */