html {
  -webkit-text-size-adjust: 100%;
          text-size-adjust: 100%;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: inherit;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

img {
  display: block;
  max-width: 100%;
}

ul, ol {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
a:visited {
  color: inherit;
}

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

main {
  overflow-x: hidden;
}

article > * + * {
  margin-top: 0.3em;
}

input, button, textarea, selectfont:inheritimg:not([alt]) {
  filter: blur(10px);
}

address {
  font-style: normal;
}

hr {
  height: 0;
  border: 0;
  box-sizing: content-box;
  overflow: visible;
}

b,
strong {
  font-weight: bolder;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

:root {
  --height_header: 100px;
  --space_xs: 16px;
  --space_sm: 25px;
  --space_md: 60px;
  --space_lg: 80px;
  --font_xs: 12px;
  --font_sm: 14px;
  --font_base: 16px;
  --font_md: 20px;
  --font_lg: 24px;
  --font_xl: 31px;
}
@media screen and (max-width: 1023px) {
  :root {
    --font_xs: 10px;
    --font_sm: 12px;
    --font_base: 14px;
    --font_md: 16px;
    --font_lg: 18px;
    --font_xl: 20px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --height_header: 65px;
  }
}
@media screen and (max-width: 425px) {
  :root {
    --height_header: 81px;
    --space_xs: 10px;
    --space_sm: 18px;
    --space_md: 40px;
    --space_lg: 60px;
    --font_base: 13px;
    --font_md: 15px;
    --font_lg: 16px;
    --font_xl: 18px;
  }
}

body {
  background-color: #fff;
  color: #333;
  width: 100%;
  font-size: var(--font_base);
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif;
  font-weight: 600 !important;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

h3, h4, h5, h6 {
  font-size: var(--font_base);
}

hr {
  border-top: solid 1px #333;
}

span:not([class]) {
  display: inline-block;
}

small {
  font-size: 90%;
}

b, strong, .bold {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif;
  font-weight: 600 !important;
  letter-spacing: 0.1em;
}

a {
  transition: all 0.3s ease;
}

p a {
  text-decoration: underline;
}
p a:hover {
  text-decoration: none;
}

::selection {
  background: #ace5ef;
}

.wrap {
  width: 85%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

.wrap_sm {
  width: 85%;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.center {
  text-align: center;
}
.center img:not([class]) {
  margin-left: auto;
  margin-right: auto;
}

.left {
  text-align: left;
}

.link:hover {
  opacity: 0.7;
}

.container {
  max-width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 1023px) {
  .container {
    display: block;
  }
}

.group_top {
  margin-top: var(--space_md);
}

.header_space {
  margin-top: var(--space_lg);
}

.btn {
  background-color: #fff;
  border: solid 2px #00adce;
  border-radius: 5px;
  padding: 0.7em 1.6em;
  font-size: var(--font_base);
  margin-top: calc(var(--space_md) * 1.5);
  max-width: 100%;
}
@media screen and (max-width: 1023px) {
  .btn {
    font-size: 15px;
  }
}
.btn__txt {
  color: #00adce;
  line-height: 1;
}
.btn__txt::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(../img/arrow.svg) no-repeat;
  background-size: contain;
  margin-left: 0.5em;
}
.btn:hover {
  background-color: #00adce;
}
.btn:hover > .btn__txt {
  color: #fff;
}
.btn:hover > .btn__txt::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(../img/arrow_wt.svg) no-repeat;
  background-size: contain;
  margin-left: 0.5em;
}

@media screen and (max-width: 425px) {
  .sp_wide {
    width: 100%;
  }
}
.circle {
  position: relative;
}
.circle:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.circle > img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}
.circle > img {
  border-radius: 50%;
}

@media screen and (max-width: 425px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 426px) {
  .sp {
    display: none;
  }
}
.dot {
  border-top: dotted 2px #717071;
  margin: 1em 0;
}

.header-height {
  margin-top: calc(-1 * var(--height_header));
  padding-top: var(--height_header);
}

.blue {
  color: #00adce;
}

.white {
  color: #fff;
}

.gray {
  color: #717071;
}

.normal {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-weight: 500 !important;
  letter-spacing: 0.1em;
}

.txt-xs {
  font-size: var(--font_xs);
  letter-spacing: 0.05em;
}

.txt-sm {
  font-size: var(--font_sm);
  letter-spacing: 0.05em;
}

.txt-base {
  font-size: var(--font_base);
}

.txt-md {
  font-size: var(--font_md);
  letter-spacing: 0.1em;
}

.txt-lg {
  font-size: var(--font_lg);
  letter-spacing: 0.1em;
}

.txt-xl {
  font-size: var(--font_xl);
  letter-spacing: 0.1em;
}

.description {
  font-size: var(--font_base);
  margin-top: 0.5em;
  display: flex;
}
.description .line {
  background-color: #00adce;
  height: 2px;
  width: 1.8em;
  margin-top: 0.8em;
  margin-right: 0.8em;
}
.description__title {
  font-size: var(--font_lg);
  line-height: 1.8;
}

.underline {
  line-height: 1.2;
  display: inline-block;
  border-bottom: solid 2px #00adce;
}

.han {
  font-family: YakuHanJP_Narrow, -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, "Yu Gothic Medium", "Yu Gothic", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif !important;
}

#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #f5f5f5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.completed {
  opacity: 0;
  visibility: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space_sm) calc( var(--space_sm) * 2 );
  z-index: 1;
  background-color: #fff;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 14px 18px;
  }
  .header .logo {
    width: 150px;
  }
}
@media screen and (max-width: 425px) {
  .header {
    display: block;
  }
  .header .logo {
    width: 120px;
  }
}

nav {
  height: -webkit-fit-content;
  height: fit-content;
}

.navigation {
  display: flex;
  margin: 0 -0.5em;
}
@media screen and (max-width: 425px) {
  .navigation {
    margin: 0;
    justify-content: space-between;
    font-size: 3.35vw;
  }
}
.navigation li {
  line-height: 1.2;
  margin: 0 0.5em;
  border-bottom: solid 2px transparent;
}
.navigation li:hover {
  border-bottom: solid 2px #00adce;
}
@media screen and (max-width: 425px) {
  .navigation li {
    margin: 0.5em 0 0 0;
  }
}
.navigation .current {
  border-bottom: solid 2px #00adce;
}

.contact {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .contact {
    width: 100px;
  }
}
@media screen and (max-width: 425px) {
  .contact {
    width: 80px;
  }
}

footer {
  background-color: #00adce;
  position: relative;
  padding: 70px 40px 70px 40px;
}
footer .navigation {
  margin-top: 1.5em;
}
@media screen and (max-width: 425px) {
  footer {
    text-align: center;
    padding-top: 90px;
  }
  footer .navigation {
    display: inline-block;
  }
}

.pagetop {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.section {
  padding: var(--space_lg) 0;
}

.section_gray {
  background-color: #f5f5f5;
  padding: var(--space_lg) 0;
}

.section_blue {
  background-color: #e5f7fa;
  padding: var(--space_lg) 0;
}

.modalContainer {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (max-width: 425px) {
  .modalContainer {
    display: block;
    text-align: center;
  }
}

.modal {
  flex-shrink: 0;
  margin-top: 25px;
  width: 48.5%;
}
@media screen and (max-width: 425px) {
  .modal {
    margin-top: 30px;
    width: calc(100% - 7px);
  }
}
.modal .card {
  background-color: #fff;
  display: flex;
  position: relative;
  align-items: center;
  height: 170px;
  border-radius: 7px;
  box-shadow: 7px 7px #a6e2ee;
  transition: 0.3s;
}
.modal .card__left {
  flex-basis: 40%;
  flex-shrink: 0;
}
.modal .card__left img {
  max-width: 80%;
  margin: 0 auto;
}
.modal .card__right {
  text-align: left;
  padding: 0 12px;
}
.modal .card__right img {
  margin-top: 10px;
}
@media screen and (max-width: 1023px) {
  .modal .card__right {
    font-size: 12px;
  }
}
.modal .card__filter {
  transition: 0.3s;
}
.modal .card:hover .card__filter {
  border-radius: 7px;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(166, 226, 238, 0.2);
}
.modal .popup {
  margin: 0;
  display: none;
  color: var(--darkgray);
  background-color: var(--white);
}
.modal .popup:target {
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}
.modal .popup:target .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(166, 226, 238, 0.6);
  text-decoration: none;
  color: inherit;
}
.modal .popup__inner {
  height: 100%;
  width: 100%;
  position: relative;
  overflow-y: scroll;
}
.modal .popup__close {
  position: absolute;
  top: var(--space_sm);
  right: var(--space_sm);
}
.modal .popup__card {
  width: 80%;
  max-width: 640px;
  border-radius: 7px;
  box-shadow: 7px 7px #a6e2ee;
  background-color: #fff;
  margin: 100px auto;
  padding: var(--space_md);
  text-align: center;
}
.modal .popup__container {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .modal .popup__container {
    display: block;
  }
}
.modal .popup__img {
  width: 180px;
  flex-shrink: 0;
  margin-right: 2em;
}
@media screen and (max-width: 767px) {
  .modal .popup__img {
    margin: 0 auto 2em auto;
  }
}

.profile {
  margin-right: var(--space_md);
  margin-left: var(--space_md);
}
.profile__img {
  width: 280px;
  margin: 0 auto var(--space_sm) auto;
}
@media screen and (max-width: 425px) {
  .profile__img {
    width: 90%;
  }
}
.profile__link {
  margin-top: 1.5em;
}

@media screen and (max-width: 1023px) {
  .profile + .profile {
    margin-top: var(--space_md);
  }
}
.date {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-weight: 500 !important;
  letter-spacing: 0.1em;
  color: #717071;
  font-size: var(--font_sm);
}

.cat {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-weight: 500 !important;
  letter-spacing: 0.1em;
  background-color: #00adce;
  color: #fff;
  font-size: var(--font_xs);
  border-radius: 20px;
  padding: 0.2em 0.5em;
}

.date + .cat {
  margin-left: 1em;
}

.news-title {
  padding: 0.5em 0;
}

.news-list {
  text-align: left;
  border-bottom: solid 2px #dcdcdc;
}
.news-list__inner {
  padding: 1.5em 0;
  display: flex;
}
.news-list__txt {
  flex-grow: 1;
}
.news-list__img {
  margin-left: var(--space_sm);
  width: clamp(150px, 50%, 170px);
}
.news-list__img img {
  border-radius: 4px;
  width: 100%;
  height: auto;
}

.news-list__inner:hover > .news-list__txt .news-title {
  color: #00adce;
}
.news-list__inner:hover > .news-list__img {
  opacity: 0.8;
}

.hero {
  position: relative;
  margin: var(--height_header) auto 0 auto;
  width: min(100%, 1800px);
  height: calc(100vh - var(--height_header));
  max-height: 940px;
}
@media screen and (max-width: 1023px) {
  .hero {
    display: flex;
    flex-direction: column;
    max-height: 700px;
    border-radius: 0;
  }
}
@media screen and (max-width: 1023px) and (max-width: 425px) {
  .hero {
    max-height: calc(667px - var(--height_header));
  }
}
.hero__img {
  width: clamp(900px, 85%, 1440px);
  height: 100%;
  margin-left: auto;
  background: no-repeat url("../img/top/hero.jpg") center top;
  background-size: cover;
  border-radius: 7px;
}
@media screen and (max-width: 1023px) {
  .hero__img {
    width: 100%;
    min-height: 400px;
    border-radius: 0;
  }
}
@media screen and (max-width: 1023px) and (max-width: 425px) {
  .hero__img {
    min-height: 250px;
  }
}
.hero__txt {
  display: inline-block;
  position: absolute;
  background-color: #00adce;
  border-radius: 0 4px 4px 0;
  letter-spacing: 0.15em;
  line-height: 1.8;
  padding: 2em;
  font-size: 2vw;
}
@media screen and (min-width: 1024px) {
  .hero__txt {
    font-size: calc(20px + .5vw);
    top: 50%;
    left: 0;
    border-left: solid 2px #00adce;
    padding-left: 3em;
  }
  .hero__txt::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 9999em;
    background-color: #00adce;
    pointer-events: none;
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 1023px) {
  .hero__txt {
    position: relative;
    font-size: 3vw;
    border-radius: 0;
  }
}
@media screen and (max-width: 425px) {
  .hero__txt {
    line-height: 1.65;
    font-size: 4.5vw;
    padding: 1.5em;
    margin-top: 0;
    padding: 2em 7.5%;
    width: 100%;
  }
}

.lead__wrap {
  width: min(95%, 600px);
  margin: 0 auto;
}
.lead__wrap p + p {
  margin-top: 0.4em;
}

.avatar {
  width: max(75%, 500px);
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1023px) {
  .avatar {
    display: block;
    width: 100%;
  }
}
.avatar__txt {
  flex-shrink: 0;
}
.avatar__img {
  width: 140px;
}
@media screen and (max-width: 1023px) {
  .avatar__img {
    width: 100px;
    margin: 30px auto 0 auto;
  }
}

.dx_container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.dx_container img {
  width: 23.5%;
  margin: 0;
}

.flow_content {
  margin: 0 1rem;
}
.flow_content * + * {
  margin-top: 10px;
}
.flow_content__wrapper {
  max-width: calc(100% + 2rem);
  margin: 0 -1rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 425px) {
  .flow_content__wrapper {
    display: block;
  }
}

@media screen and (max-width: 425px) {
  .flow_content + .flow_content {
    margin-top: var(--space_md);
  }

  .flow_content img {
    width: 150px;
  }
}
.company__data {
  text-align: left;
  border-collapse: collapse;
  margin: var(--space_md) auto;
}
@media screen and (max-width: 425px) {
  .company__data {
    font-size: 3.5vw;
  }
}
.company__data th, .company__data td {
  vertical-align: top;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.company__data th {
  border-right: solid 2px #00adce;
  width: 7em;
}
@media screen and (max-width: 425px) {
  .company__data th {
    font-size: 90%;
  }
}
.company__data td {
  padding-left: 2rem;
}
@media screen and (max-width: 425px) {
  .company__data td {
    padding-left: 1em;
  }
}

.price-card {
  position: relative;
  border: solid 2px #00adce;
  background-color: #fff;
  border-radius: 7px;
  padding: 1.5em;
  margin-top: var(--space_md);
  font-size: var(--font_sm);
}
.price-card__container {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .price-card__container {
    display: block;
  }
}
.price-card__inner {
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5em;
}
.price-card__title {
  font-size: 13px;
  letter-spacing: 0.05em;
}
.price-card .course {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-color: #00adce;
  border-radius: 30px;
  color: #fff;
  padding: 0.2em;
  width: 80%;
  font-size: var(--font_md);
}
.price-card .price {
  font-size: 50px;
}

@media screen and (min-width: 426px) {
  .price-card + .price-card {
    margin-left: 1.5em;
  }
}
.icon_circle {
  display: inline-block;
  height: 1em;
  width: 1em;
  margin-left: 1em;
  background-color: #00adce;
  border-radius: 50%;
  flex-shrink: 0;
}

.icon_cross {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 1em;
  flex-shrink: 0;
  position: relative;
}
.icon_cross::before, .icon_cross::after {
  content: "";
  display: block;
  width: 120%;
  height: 2px;
  background: #717071;
  transform: rotate(45deg);
  transform-origin: 0% 50%;
  position: absolute;
  top: calc(7% - 1px);
  left: 7%;
}
.icon_cross::after {
  transform: rotate(-45deg);
  transform-origin: 100% 50%;
  left: auto;
  right: 7%;
}

.flow {
  display: grid;
  grid-template-rows: 50px 1fr;
  grid-template-columns: 50px 1fr 100px;
  row-gap: 6px;
  column-gap: 20px;
  width: min(500px, 85%);
  margin: 6px auto 0 auto;
}
@media screen and (max-width: 425px) {
  .flow {
    grid-template-rows: 40px 1fr;
    grid-template-columns: 40px 1fr;
    column-gap: 14px;
  }
}
.flow .number {
  grid-row: 1;
  grid-column: 1;
  align-self: center;
}
.flow .number .num_circle {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 44px;
  border: solid 2px #00adce;
  border-radius: 50%;
  background-color: #fff;
  font-size: var(--font_md);
  align-self: center;
}
@media screen and (max-width: 425px) {
  .flow .number .num_circle {
    width: 40px;
    height: 40px;
    line-height: 34px;
  }
}
.flow .number .num_square {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: #00adce;
  color: #fff;
  font-size: var(--font_md);
  align-self: center;
}
@media screen and (max-width: 425px) {
  .flow .number .num_square {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}
.flow .title {
  grid-row: 1;
  grid-column: 2/4;
  text-align: left;
  align-self: center;
}
.flow .line {
  grid-row: 2;
  grid-column: 1;
}
.flow .line span {
  height: 100%;
  width: 2px;
  background-color: #00adce;
}
.flow .description {
  grid-row: 2;
  grid-column: 2;
  margin-bottom: 3em;
}
@media screen and (max-width: 425px) {
  .flow .description {
    grid-column: 2/4;
  }
}
.flow .description .list {
  text-align: left;
  font-size: var(--font_sm);
}
.flow .description .list li {
  list-style-type: disc;
  list-style-position: inside;
}
.flow .illust {
  grid-row: 2;
  grid-column: 3;
}
@media screen and (max-width: 425px) {
  .flow .illust {
    display: none;
  }
}

.about_dx {
  padding-top: var(--space_lg);
  padding-bottom: var(--space_lg);
  background-color: #f5f5f5;
}
@media screen and (min-width: 426px) {
  .about_dx {
    text-align: center;
  }
}
/*# sourceMappingURL=style.css.map */