*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

#root, #__next {
  isolation: isolate;
}

@font-face {
  font-family: "DINPro-Bold";
  src: url("fonts/DINPro-Bold.ttf") format("truetype");
}
html {
  scroll-behavior: smooth;
}

body {
  font-feature-settings: "palt";
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 1.8;
  font-size: 16px;
  word-break: break-word;
}

img {
  height: auto;
}

.flexbox {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
.flexbox-item {
  flex: 100%;
}
@media screen and (min-width: 48em) {
  .flexbox-item {
    flex: 1;
  }
}
.flexbox.four-col {
  justify-content: space-between;
  gap: 1.2em;
}
.flexbox.four-col > * {
  flex: 40%;
}
@media screen and (min-width: 48em) {
  .flexbox.four-col > * {
    flex: 22%;
  }
}

a {
  color: #252322;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: #0d1d34;
}

.bt {
  background-image: linear-gradient(90deg, rgb(255, 115, 38) 0%, rgb(255, 89, 0) 50%, rgb(255, 139, 76) 100%);
  border: 4px solid #fff;
  border-radius: 50px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
  color: #fff;
  display: block;
  font-feature-settings: "palt";
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
  margin: 0.5em 0;
  padding: 1.1em 2.6em;
  position: relative;
  transition: 0.3s;
  width: fit-content;
  z-index: 0;
}
.bt::before {
  border-radius: 50px;
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(90deg, rgb(255, 89, 0) 0%, rgb(255, 139, 76) 50%, rgb(255, 89, 0) 100%);
  opacity: 0;
  transition: opacity 0.5s;
}
.bt:hover {
  color: #fff;
}
.bt:hover::before {
  opacity: 1;
}
@media screen and (min-width: 64.0625em) {
  .bt {
    font-size: 26px;
  }
}
.bt.small {
  border: 3px solid #fff;
  font-size: 14px;
  padding: 1.2em 2em;
}

.bt-box-txt {
  align-items: center;
  display: flex;
  font-weight: 700;
  font-size: 20px;
  justify-content: center;
  line-height: 1.4;
}
@media screen and (min-width: 64.0625em) {
  .bt-box-txt {
    font-size: 22px;
  }
}
.bt-box-txt::before, .bt-box-txt::after {
  width: 2px;
  height: 48px;
  background-color: #ff7434;
  content: "";
}
.bt-box-txt::before {
  transform: rotate(-45deg);
  margin-right: 30px;
}
.bt-box-txt::after {
  transform: rotate(45deg);
  margin-left: 30px;
}
.bt-box .bt {
  margin: 0.5em auto 1.5em;
}
@media screen and (min-width: 48em) {
  .bt-box .bt {
    margin: 0.5em auto 7.8em;
  }
}
.bt-box.fixed {
  background: rgba(255, 255, 255, 0.5);
  bottom: 0;
  position: fixed;
  width: 100%;
  z-index: 999;
}
.bt-box.fixed .bt {
  margin: 0.6em auto;
}
@media screen and (min-width: 64.0625em) {
  .bt-box.fixed .bt {
    font-size: 20px;
  }
}

/* header */
.header {
  align-items: center;
  background: #0d1d34;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  font-feature-settings: "palt";
  height: 60px;
  justify-content: space-between;
  letter-spacing: 0;
  line-height: 1.8;
  padding: 1em;
  position: relative;
  top: 0;
  transition: 0.2s;
  width: 100%;
  z-index: 10;
}
@media screen and (min-width: 64.0625em) {
  .header {
    height: 100px;
  }
}
.header .logo {
  width: 150px;
}
@media screen and (min-width: 64.0625em) {
  .header .logo {
    width: 254px;
  }
}

.menu-bt {
  cursor: pointer;
  display: block;
  overflow: hidden;
  padding: 8px 0 0;
  position: absolute;
  right: 8px;
  text-align: center;
  top: 15px;
  width: 46px;
  z-index: 500;
}
@media screen and (min-width: 64.0625em) {
  .menu-bt {
    display: none;
  }
}
.menu-bt .menu1,
.menu-bt .menu2 {
  background-color: #fff;
  height: 2px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 20px;
  transition: all 0.2s ease-out;
}
.menu-bt .menu1 {
  top: 0;
}
.menu-bt .menu1.menuclick1 {
  top: 7px;
  transform: rotate(45deg);
}
.menu-bt .menu2 {
  top: 8px;
}
.menu-bt .menu2.menuclick2 {
  top: 7px;
  transform: rotate(-45deg);
}
.menu-bt .menu-txt {
  color: #fff;
  margin-left: 0.2em;
}
.menu-bt .menu-txt:before {
  content: "MENU";
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
}
.menu-bt .menu-txt.active:before {
  content: "CLOSE";
  letter-spacing: 0.1em;
}

.main-navigation {
  background: #244370;
  left: -1025px;
  top: 0;
  opacity: 0;
  padding: 80px 1.5em 0;
  position: fixed;
  transition: 0.2s;
  height: 100vh;
  width: 100%;
  z-index: 20;
}
@media screen and (min-width: 64.0625em) {
  .main-navigation {
    background: transparent;
    height: auto;
    opacity: 1;
    padding: 0;
    position: static;
    width: auto;
  }
}
.main-navigation.active {
  opacity: 1;
  left: 0;
}

.main-navigation__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
@media screen and (min-width: 64.0625em) {
  .main-navigation__list {
    align-items: center;
    display: flex;
    gap: 1.2em;
    justify-content: flex-end;
  }
}

.main-navigation__item {
  border-bottom: 1px solid #ddd;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 1em;
  padding-bottom: 1em;
  position: relative;
}
@media screen and (min-width: 64.0625em) {
  .main-navigation__item {
    border: none;
    padding: 0;
    margin: 0;
  }
}
.main-navigation__item:last-child {
  border: none;
}
@media only screen and (max-width: 64em) {
  .main-navigation__item:last-child {
    padding-top: 1em;
  }
}
.main-navigation__item a {
  color: #fff;
}
.main-navigation__item .bt {
  margin: 15px auto 0;
}
@media screen and (min-width: 64.0625em) {
  .main-navigation__item .bt {
    margin: 0 0 0 0.8em;
  }
}

.font-en {
  font-family: "DINPro-Bold";
}

.heading02 {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}
@media screen and (min-width: 64.0625em) {
  .heading02 {
    font-size: 40px;
  }
}
.heading02 .size-l {
  font-size: 1.25em;
  line-height: 1;
}

.heading03 {
  font-size: 18px;
  text-align: center;
}
@media screen and (min-width: 64.0625em) {
  .heading03 {
    font-size: 24px;
  }
}

.heading04 {
  color: #0d1d34;
  text-align: center;
}
@media screen and (min-width: 64.0625em) {
  .heading04 {
    font-size: 18px;
  }
}

p {
  margin-bottom: 1.8em;
}

.lead {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}
@media screen and (min-width: 64.0625em) {
  .lead {
    font-size: 32px;
  }
}

section {
  padding: 30px 0 0;
}
@media screen and (min-width: 64.0625em) {
  section {
    padding: 10.5em 0 0;
  }
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px 20px;
}
@media screen and (min-width: 48em) {
  .container {
    padding: 0 30px;
  }
}
.container ul:not(.footer .container ul) {
  list-style: disc;
  margin: 0 0 20px 20px;
}

.mainvisual {
  background: url("images/mv.webp") right top -15vw no-repeat;
  background-size: auto 75vw;
  overflow: hidden;
  padding: 0;
  position: relative;
}
@media screen and (min-width: 48em) {
  .mainvisual {
    background: url("images/mv.webp") right 30% top -10em no-repeat;
    background-size: cover;
    overflow: visible;
  }
}
@media screen and (min-width: 64.0625em) {
  .mainvisual {
    background: url("images/mv.webp") center no-repeat;
    background-size: cover;
  }
}
.mainvisual .container {
  max-width: 1370px;
  padding: 0;
}
.mainvisual .heading02 {
  color: #fff;
  display: block;
  font-size: 26px;
  margin: 0 0 0.6em;
  text-align: left;
}
@media screen and (min-width: 64.0625em) {
  .mainvisual .heading02 {
    font-size: 46px;
    line-height: 2;
    margin: 0 0 0.4em;
  }
}
.mainvisual .heading02 .size-l {
  font-size: 30px;
}
@media screen and (min-width: 64.0625em) {
  .mainvisual .heading02 .size-l {
    font-size: 60px;
  }
}
.mainvisual__cont {
  align-items: center;
  background: rgba(36, 67, 112, 0.95);
  display: flex;
  flex-direction: column;
  margin-top: 60vw;
  padding: 2em 1.5em;
}
@media screen and (min-width: 48em) {
  .mainvisual__cont {
    margin: 0;
    padding: 2em 3vw;
    width: fit-content;
  }
}
@media screen and (min-width: 64.0625em) {
  .mainvisual__cont {
    padding: 3.2em 5vw 7.2em;
  }
}
.mainvisual .annotation {
  color: #fff;
  font-size: 12px;
  margin: 2em 0 0;
  width: 100%;
}
.mainvisual .value {
  gap: 0 1em;
  justify-content: center;
}
@media screen and (min-width: 48em) {
  .mainvisual .value {
    gap: 1em;
  }
}
@media screen and (min-width: 64.0625em) {
  .mainvisual .value {
    margin: 0;
  }
}
.mainvisual .value__item {
  background: url("images/icon-crown.png") center top 0.5em no-repeat;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  display: grid;
  font-weight: 700;
  height: 150px;
  line-height: 1.2;
  place-items: center;
  position: relative;
  text-align: center;
  width: 150px;
}
@media screen and (min-width: 64.0625em) {
  .mainvisual .value__item {
    font-size: 22px;
    height: 200px;
    width: 200px;
  }
}
.mainvisual .value__item .annotation {
  margin: 0;
  position: absolute;
  right: 1.5em;
  top: 52%;
  width: auto;
}
@media screen and (min-width: 64.0625em) {
  .mainvisual .value__item .annotation {
    right: 2.5em;
  }
}
.mainvisual .value-txt {
  margin: 0.8em 0 0;
  text-shadow: 0px 3px 0px rgba(0, 0, 0, 0.2);
}
.mainvisual .value .size-l {
  display: inline-block;
  font-size: 30px;
  line-height: 1;
}
@media screen and (min-width: 64.0625em) {
  .mainvisual .value .size-l {
    font-size: 75px;
  }
}
.mainvisual .value .value01 .size-l,
.mainvisual .value .value02 .size-l {
  margin-top: 0.1em;
}
.mainvisual .value .value03 .size-l {
  position: relative;
}
.mainvisual .value .value03 .size-l:before {
  background: url("images/icon-star.png");
  background-size: contain;
  content: "";
  left: -25px;
  height: 24px;
  position: absolute;
  top: 0;
  width: 25px;
}
@media screen and (min-width: 64.0625em) {
  .mainvisual .value .value03 .size-l:before {
    left: -35px;
    height: 43px;
    width: 45px;
  }
}
.mainvisual .value .size-m {
  font-size: 18px;
}
@media screen and (min-width: 64.0625em) {
  .mainvisual .value .size-m {
    font-size: 50px;
  }
}
.mainvisual .bt {
  margin: 2em auto 0;
}
@media screen and (min-width: 64.0625em) {
  .mainvisual .bt {
    margin: 1em auto 0;
  }
}
.mainvisual .pr {
  align-items: center;
  background: #f1ede7;
  box-shadow: 0px 0px 30px 0px rgba(36, 67, 112, 0.3);
  display: flex;
  flex-direction: column;
  gap: 1em;
  overflow: hidden;
  max-width: 1280px;
  padding: 1.5em;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 48em) {
  .mainvisual .pr {
    flex-direction: row;
    padding: 2.2em;
  }
}
@media screen and (min-width: 64.0625em) {
  .mainvisual .pr {
    left: 0;
    margin: -4em auto;
    position: absolute;
    right: 0;
  }
}
.mainvisual .pr-logo {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  display: flex;
  height: 160px;
  justify-content: center;
  padding: 1em;
  width: 160px;
}
@media screen and (min-width: 64.0625em) {
  .mainvisual .pr-logo {
    border-radius: 0 50% 50% 0;
    left: -2.2vw;
    height: 22vw;
    margin-right: 0;
    padding: 3em;
    position: absolute;
    width: 22vw;
  }
}
.mainvisual .pr-cont {
  color: #244370;
}
@media screen and (min-width: 64.0625em) {
  .mainvisual .pr-cont {
    font-size: 24px;
    margin-left: 21vw;
  }
}
.mainvisual .pr-cont .size-l {
  font-size: 20px;
}
@media screen and (min-width: 64.0625em) {
  .mainvisual .pr-cont .size-l {
    font-size: 28px;
  }
}
.mainvisual .pr-cont-txt {
  margin-bottom: 0.7em;
  line-height: 1.4;
}
.mainvisual .pr .price-off {
  align-items: center;
  display: flex;
  gap: 0.8em;
}
.mainvisual .pr .price-off .bg-navy {
  background: #244370;
  color: #fff;
  padding: 0 0.3em;
}
.mainvisual .pr .price-off-txt {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  margin-top: 0.5em;
  text-align: center;
}
@media screen and (min-width: 64.0625em) {
  .mainvisual .pr .price-off-txt {
    font-size: 40px;
  }
}
.mainvisual .pr .price-off .font-en {
  font-size: 74px;
  line-height: 1;
}
@media screen and (min-width: 64.0625em) {
  .mainvisual .pr .price-off .font-en {
    font-size: 150px;
  }
}
.mainvisual .pr .price-off .font-en .size-s {
  font-size: 0.6em;
}
.mainvisual .pr .price-off .font-en .size-m {
  font-size: 0.8em;
}

@media screen and (min-width: 64.0625em) {
  .cont01 {
    padding-top: 26.5em;
  }
}
.cont01 .lead {
  margin-bottom: 0.6em;
}
.cont01-txt {
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 64.0625em) {
  .cont01-txt {
    font-size: 22px;
  }
}
.cont01-txt .color-navy {
  font-size: 1.2em;
}
.cont01 .annotation {
  font-weight: 700;
  font-size: 12px;
  margin: 0.6em 0 0;
  text-align: center;
}
.cont01 .value {
  gap: 1em;
  margin: 0 0 1em;
}
@media screen and (min-width: 48em) {
  .cont01 .value {
    gap: 1em;
    margin: 3.8em 0 2em;
  }
}
@media screen and (min-width: 64.0625em) {
  .cont01 .value {
    gap: 1.8em;
    margin: 6.2em 0 11em;
  }
}
.cont01 .value__item {
  flex: 100%;
}
@media screen and (min-width: 48em) {
  .cont01 .value__item {
    flex: 1;
  }
}
.cont01 .value__cont {
  background: url("images/bg-laurel.svg") center no-repeat;
  background-size: contain;
  color: #fff;
  display: grid;
  font-weight: 700;
  height: 220px;
  place-items: center;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 64.0625em) {
  .cont01 .value__cont {
    font-size: 26px;
    height: 340px;
  }
}
.cont01 .value-txt {
  margin: 0;
}
.cont01 .value .size-l {
  font-size: 18px;
  line-height: 1.4;
}
@media screen and (min-width: 64.0625em) {
  .cont01 .value .size-l {
    font-size: 46px;
  }
}
.cont01 .recruit-logo .lead {
  margin-bottom: 1.6em;
}
.cont01 .recruit-logo .flexbox {
  list-style: none;
  margin: 0 auto 3.8em !important;
  padding: 0;
}
.cont01 .recruit-logo li {
  display: grid;
  padding: 1em;
  place-items: center;
}

@media screen and (min-width: 64.0625em) {
  .cont02-txt {
    font-size: 18px;
    margin-bottom: 5.2em;
  }
}
.cont02 .heading02 {
  margin-bottom: 0.7em;
}
.cont02 .heading02 .size-s {
  font-size: 0.8em;
}
.cont02 .heading03 {
  color: #fff;
  padding: 0.4em;
}
@media screen and (min-width: 64.0625em) {
  .cont02 .heading03 {
    font-size: 20px;
    padding: 0.8em;
  }
}
.cont02 .heading04 {
  line-height: 1.1;
  margin-bottom: 0.2em;
  padding-left: 0.8em;
}
.cont02 .qualification {
  font-weight: 700;
  font-size: 18px;
}
.cont02 .subsidy {
  border-radius: 15px;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  margin: 1.5em 0 0;
  padding: 0.2em 0.5em;
}
.cont02 .course {
  gap: 1em;
  margin-bottom: 3em;
}
@media screen and (min-width: 64.0625em) {
  .cont02 .course {
    gap: 3em;
    margin-bottom: 6em;
  }
}
.cont02 .course-cont {
  padding: 1.2em 1.5em;
}
@media screen and (min-width: 64.0625em) {
  .cont02 .course-cont {
    padding: 1.3em 2.8em;
  }
}
.cont02 .course .flexbox {
  gap: 1em;
}
@media screen and (min-width: 64.0625em) {
  .cont02 .course .flexbox {
    gap: 2em;
  }
}
.cont02 .course .flexbox-item {
  background: #fff;
}
@media screen and (min-width: 48em) {
  .cont02 .course .flexbox-item {
    flex: 47%;
  }
}
.cont02 .course .flexbox-item.item01 {
  border: 2px solid #244370;
}
.cont02 .course .flexbox-item.item01 .heading03,
.cont02 .course .flexbox-item.item01 .subsidy {
  background: #244370;
}
.cont02 .course .flexbox-item.item01 .heading04 {
  border-left: 4px solid #244370;
}
.cont02 .course .flexbox-item.item01 .qualification {
  color: #244370;
}
.cont02 .course .flexbox-item.item01 .course-cont:nth-child(odd) {
  background: #e9ecf0;
}
.cont02 .course .flexbox-item.item02 {
  border: 2px solid #235e70;
}
.cont02 .course .flexbox-item.item02 .heading03,
.cont02 .course .flexbox-item.item02 .subsidy {
  background: #235e70;
}
.cont02 .course .flexbox-item.item02 .heading04 {
  border-left: 4px solid #235e70;
}
.cont02 .course .flexbox-item.item02 .qualification {
  color: #235e70;
}
.cont02 .course .flexbox-item.item02 .course-cont:nth-child(odd) {
  background: #e9eff0;
}
.cont02 .course .flexbox-item.item03 {
  border: 2px solid #3b4795;
}
.cont02 .course .flexbox-item.item03 .heading03,
.cont02 .course .flexbox-item.item03 .subsidy {
  background: #3b4795;
}
.cont02 .course .flexbox-item.item03 .heading04 {
  border-left: 4px solid #3b4795;
}
.cont02 .course .flexbox-item.item03 .qualification {
  color: #3b4795;
}
.cont02 .course .flexbox-item.item03 .course-cont:nth-child(odd) {
  background: #ebecf4;
}
.cont02 .course .flexbox-item.item04 {
  border: 2px solid #268078;
}
.cont02 .course .flexbox-item.item04 .heading03,
.cont02 .course .flexbox-item.item04 .subsidy {
  background: #268078;
}
.cont02 .course .flexbox-item.item04 .heading04 {
  border-left: 4px solid #268078;
}
.cont02 .course .flexbox-item.item04 .qualification {
  color: #268078;
}
.cont02 .course .flexbox-item.item04 .course-cont:nth-child(odd) {
  background: #e9f2f1;
}
.cont02 .course-txt {
  margin-bottom: 0;
}
.cont02 .course-price {
  font-weight: 700;
  line-height: 1.7;
  margin: 0;
}
@media screen and (min-width: 64.0625em) {
  .cont02 .course-price {
    font-size: 18px;
  }
}
.cont02 .course-price .size-s {
  font-size: 0.7em;
}
.cont02 .course-price .size-l {
  font-size: 1.3em;
  margin: 0 0.2em 0 0.8em;
}
.cont02 .support .heading02 {
  margin-top: 0.8em;
}
@media screen and (min-width: 64.0625em) {
  .cont02 .support .cont02-txt {
    margin-bottom: 2.5em;
  }
}
.cont02 .support .cont02-txt .color-navy {
  font-size: 1.15em;
}
.cont02 .support .flexbox {
  gap: 1em;
  margin-bottom: 2em;
}
@media screen and (min-width: 64.0625em) {
  .cont02 .support .flexbox {
    gap: 3em;
    margin-bottom: 5.8em;
  }
}
.cont02 .support-img {
  margin: 0 auto 1.3em;
}
.cont02 .support-txt {
  margin: 0;
  font-weight: 700;
}
@media screen and (min-width: 64.0625em) {
  .cont02 .support-txt {
    font-size: 20px;
  }
}
.cont02 .support .flexbox-item {
  background: #fff;
  flex: 47%;
  padding: 1.8em 1.5em 1.5em;
  text-align: center;
}
@media screen and (min-width: 64.0625em) {
  .cont02 .support .flexbox-item {
    flex: 1;
  }
}
@media screen and (min-width: 64.0625em) {
  .cont02 .support .bt-box {
    margin-top: 5em;
  }
}

.cont03 {
  background: #244370;
  color: #fff;
  overflow: hidden;
}
.cont03 .heading02 {
  margin: 0 auto 1em;
}
@media screen and (min-width: 64.0625em) {
  .cont03 .heading02 {
    margin: 0.5em auto 2.1em;
  }
}
.cont03 .heading03 {
  color: #93bceb;
  margin-bottom: 2.1em;
}
.cont03 .reason {
  background: #0d1d34;
  margin-bottom: 1.5em;
  padding: 1.5em;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 64.0625em) {
  .cont03 .reason {
    font-size: 18px;
    margin-bottom: 2.8em;
    padding: 2.6em;
  }
  .cont03 .reason.reason03 {
    margin-bottom: 4.5em;
  }
}
.cont03 .reason::before {
  color: #244370;
  font-family: "DINPro-Bold";
  font-size: 100px;
  left: -0.1em;
  line-height: 1;
  position: absolute;
  top: -0.2em;
  z-index: -1;
}
@media screen and (min-width: 64.0625em) {
  .cont03 .reason::before {
    font-size: 160px;
  }
}
.cont03 .reason.reason01::before {
  content: "01";
}
.cont03 .reason.reason02::before {
  content: "02";
}
.cont03 .reason.reason03::before {
  content: "03";
}
@media screen and (min-width: 48em) {
  .cont03 .reason:nth-child(even)::after {
    background: #0d1d34;
    bottom: 0;
    content: "";
    left: 100%;
    position: absolute;
    right: -100%;
    top: 0;
  }
  .cont03 .reason:nth-child(odd)::after {
    background: #0d1d34;
    bottom: 0;
    content: "";
    left: -100%;
    position: absolute;
    right: 100%;
    top: 0;
  }
}
.cont03 .reason .flexbox {
  gap: 1.5em;
}
@media screen and (min-width: 64.0625em) {
  .cont03 .reason .flexbox {
    align-items: center;
    gap: 3em;
  }
}
.cont03 .reason .flexbox-item {
  margin: 0;
  z-index: 0;
}
.cont03 .reason .flexbox-item-txt {
  color: #93bceb;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 1.9em;
}
.cont03 .reason .flexbox-item-txt:last-child {
  margin: 0;
}
.cont03 .reason .flexbox-item .size-l {
  color: #fff;
  font-size: 1.1em;
}
.cont03 .reason-photo {
  margin: 0 auto;
  max-width: 350px;
}
.cont03 .reason .flexbox img {
  margin: 0 0 0 auto;
}

@media screen and (min-width: 64.0625em) {
  .cont04 {
    padding-bottom: 9em;
  }
}
.cont04 .lead {
  line-height: 1.2;
}
@media screen and (min-width: 64.0625em) {
  .cont04 .lead {
    font-size: 40px;
    margin: 0.6em auto 2.9em;
  }
}
.cont04 .lead .size-l {
  font-size: 1.5em;
}
.cont04 .lead sup, .cont04 .lead .size-s {
  font-size: 12px;
  vertical-align: text-top;
}
.cont04 .lead .size-s {
  display: block;
  padding-top: 1.2em;
}
.cont04 .flexbox {
  align-items: center;
  list-style: none !important;
  margin: 0 0 2.5em !important;
  padding: 0;
}
@media screen and (min-width: 64.0625em) {
  .cont04 .flexbox {
    margin: 0 0 3.5em !important;
  }
}
.cont04 .flexbox li {
  padding: 0.4em;
}
.cont04 .flexbox img {
  margin: 0 auto;
}
.cont04-txt {
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 48em) {
  .cont04-txt {
    line-height: 3.2;
  }
}
@media screen and (min-width: 64.0625em) {
  .cont04-txt {
    font-size: 18px;
  }
}
.cont04-txt .color-navy {
  font-size: 1.1em;
}

.cont05 .heading02 {
  margin-bottom: 1em;
}
.cont05 .flexbox-item {
  border: 2px solid #0d1d34;
}
.cont05 .participants {
  gap: 1em;
  margin: 2em 0;
}
@media screen and (min-width: 64.0625em) {
  .cont05 .participants {
    gap: 3em;
    margin: 5.7em 0 5.2em;
  }
}
.cont05 .participants-txt {
  font-weight: 700;
  text-align: center;
}
.cont05 .age {
  background: #fff;
  padding: 0.8em;
  position: relative;
  z-index: 1;
}
.cont05 .age::before {
  background: #fff;
  bottom: -10px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  height: 10px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 12px;
}
.cont05 .qualification {
  background: #244370;
  color: #fff;
  padding: 1em;
  position: relative;
}
@media screen and (min-width: 64.0625em) {
  .cont05 .qualification {
    font-size: 20px;
  }
}
.cont05 .qualification::before {
  background: #244370;
  bottom: -10px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  height: 10px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 12px;
}
.cont05 .occupation {
  align-items: center;
  background: #0d1d34;
  color: #fff;
  display: flex;
  gap: 0.5em;
  justify-content: center;
  padding: 1em;
}
@media screen and (min-width: 64.0625em) {
  .cont05 .occupation {
    font-size: 20px;
  }
}

.cont06 .heading02 {
  margin-bottom: 0.9em;
}
.cont06 .heading03 {
  color: #244370;
  font-size: 16px;
  margin: 0.5em auto 0;
}
@media screen and (min-width: 48em) {
  .cont06 .heading03 {
    margin: 1.4em auto 0;
    min-height: 55px;
  }
}
@media screen and (min-width: 64.0625em) {
  .cont06 .heading03 {
    min-height: 75px;
  }
}
.cont06 .step {
  gap: 1.2em;
  margin-bottom: 1.5em;
  text-align: center;
}
@media screen and (min-width: 48em) {
  .cont06 .step {
    text-align: left;
  }
}
@media screen and (min-width: 64.0625em) {
  .cont06 .step {
    margin-bottom: 2.9em;
  }
}
.cont06 .step-img {
  margin: 0 auto;
  position: relative;
  width: 180px;
}
@media screen and (min-width: 48em) {
  .cont06 .step-img {
    width: fit-content;
  }
}
.cont06 .step-img::before {
  background-color: #0d1d34;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  height: 10px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: -30px;
  width: 12px;
}
@media screen and (min-width: 48em) {
  .cont06 .step-img::before {
    bottom: 0;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    height: 12px;
    left: auto;
    right: -16px;
    top: 0;
    width: 10px;
  }
}
@media only screen and (max-width: 47.9375em) {
  .cont06 .step > div {
    flex: 100%;
  }
}
@media only screen and (max-width: 47.9375em) {
  .cont06 .step > div:first-child .step-img::before {
    display: none;
  }
}
@media screen and (min-width: 48em) {
  .cont06 .step > div:last-child .step-img::before {
    display: none;
  }
}

.cont07 .heading02 {
  margin-bottom: 1.6em;
}
.cont07 .faq {
  margin-bottom: 3em;
}
@media screen and (min-width: 64.0625em) {
  .cont07 .faq {
    margin-bottom: 5.4em;
  }
}
.cont07 .faq-q {
  color: #244370;
  font-weight: 700;
  font-size: 18px;
  margin: 1.1em 0 0.4em;
}
@media screen and (min-width: 64.0625em) {
  .cont07 .faq-q {
    font-size: 24px;
  }
}
.cont07 .faq-q::before {
  content: "Q.";
  font-family: "DINPro-Bold";
  font-size: 24px;
  margin-right: 0.3em;
}
@media screen and (min-width: 64.0625em) {
  .cont07 .faq-q::before {
    font-size: 34px;
    margin-right: 0.6em;
  }
}
.cont07 .faq-a {
  border-bottom: 2px solid #ccc;
  padding: 0 0 1em;
}
@media screen and (min-width: 64.0625em) {
  .cont07 .faq-a {
    padding: 0 0 2.8em 3.5em;
  }
}

/* footer */
.footer {
  background: #0d1d34;
  color: #fff;
  font-weight: bold;
}
.footer .heading03 {
  border-left: 4px solid #244370;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 0.9em;
  padding-left: 1em;
  text-align: left;
}
.footer .address {
  font-size: 12px;
  padding-left: 1.8em;
}
@media screen and (min-width: 48em) {
  .footer .address {
    margin-bottom: 3.8em;
  }
}
.footer .tel {
  font-size: 1.13em;
  margin: 0;
  padding-left: 1.2em;
}
.footer .flexbox {
  gap: 2em;
  padding: 2em 1em;
  max-width: 1340px;
}
@media screen and (min-width: 48em) {
  .footer .flexbox {
    padding: 6.5em 30px 5.8em;
  }
}
.footer-logo {
  width: 160px;
}
@media screen and (min-width: 48em) {
  .footer-logo {
    flex: 25%;
  }
}
.footer-navigation__list {
  list-style: none;
  padding: 0 0 0 1.3em;
}
.footer-navigation__list a {
  color: #fff;
  display: inline-block;
  font-size: 14px;
  border-bottom: 1px solid #fff;
  margin-bottom: 0.7em;
  padding-bottom: 0.1em;
}

.copyright {
  background: #244370;
  color: #fff;
  font-size: 14px;
  margin: 0;
  padding: 1.4em 1.4em 7.5em;
  text-align: center;
}
@media screen and (min-width: 64.0625em) {
  .copyright {
    padding: 2.8em 1.5em 10.8em;
  }
}

/* common */
.txt-r {
  text-align: right !important;
}

.txt-c {
  text-align: center !important;
}

.txt-l {
  text-align: left !important;
}

.color-navy {
  color: #244370;
  font-weight: 700;
}

.bg-gray {
  background: #eef1f6;
  overflow: hidden;
}

.bg-white {
  background: #fff;
  color: #252322;
  margin: 0 0.3em;
}

.sp,
.tab {
  display: none;
}

@media only screen and (max-width: 64em) and (min-width: 48em) {
  .tab {
    display: block;
  }
}
@media only screen and (max-width: 47.9375em) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
