/*g-mixin*/
*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

a {
  background-color: rgba(0, 0, 0, 0);
  text-decoration: none;
  color: inherit;
}

b, strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

svg, img {
  vertical-align: bottom;
}

body {
  font-family: "Noto Sans JP", Verdana, Meiryo, "M+ 1p", sans-serif;
  line-height: 1.6;
  font-size: 0.875rem;
}
@media screen and (min-width: 769px) {
  body {
    font-size: 1rem;
  }
}
body.drawer-open {
  overflow: hidden;
}
body a {
  display: inline-block;
}
body .marker {
  display: inline;
  background: linear-gradient(transparent 75%, rgb(255, 247, 156) 75%);
}
body .btnArea {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 769px) {
  body .btnArea {
    flex-direction: row;
  }
}
body .btnArea .ao_btn {
  position: relative;
  width: min(100%, 270px);
  font-weight: bold;
  padding-inline: 10px;
  padding-block: 15px;
  border-radius: 10px;
  color: #fff;
  background: #0A55C7;
  text-align: center;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  body .btnArea .ao_btn {
    width: min(100%, 350px);
    font-size: 1.125rem;
    padding-block: 20px;
  }
}
body .btnArea .ao_btn[href^=https]::before, body .btnArea .ao_btn[href$=".pdf"]::before {
  content: none;
}
body .btnArea .ao_btn[href^=https]::after, body .btnArea .ao_btn[href$=".pdf"]::after {
  content: "";
  display: inline-block;
  margin-left: 0.5rem;
  vertical-align: middle;
}
body .btnArea .ao_btn[href$=".pdf"]::after {
  width: 13px;
  height: 17px;
  background: url(../imgs/lp-ao/icon_pdf.svg) no-repeat center center;
  background-size: contain;
}
body .btnArea .ao_btn[href^=https]:not([href$=".pdf"])::after {
  width: 18px;
  height: 14px;
  background: url(../imgs/lp-ao/icon_link.svg) no-repeat center center;
  background-size: contain;
  vertical-align: baseline;
}
body .btnArea .ao_btn::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
body .btnArea .ao_btn:hover {
  background: #1F87FF;
}
body .btnArea .ao_btn:hover::after {
  right: 15px;
}
body .js-summary {
  list-style: none;
  transition: 0.3s;
}
body .js-content {
  overflow: hidden;
}
body .js-content .content__inner {
  transition: 0.3s;
}
body summary::-webkit-details-marker {
  display: none;
}

.br--pc {
  display: none;
}
@media screen and (min-width: 769px) {
  .br--pc {
    display: inline;
  }
}
.br--sp {
  display: inline;
}
@media screen and (min-width: 769px) {
  .br--sp {
    display: none;
  }
}

header {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
header .header__logo a {
  padding-inline: 20px;
  padding-block: 10px;
}
@media screen and (min-width: 769px) {
  header .header__logo a {
    padding-inline: 40px;
    padding-block: 17px;
  }
}
header .header__logo a img {
  max-height: 40px;
}
@media screen and (min-width: 769px) {
  header .header__logo a img {
    max-height: 66px;
  }
}
header .drawerButton {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: #0A55C7;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background-attachment: fixed;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  header .drawerButton {
    width: 54px;
    height: 54px;
  }
}
@media screen and (min-width: 769px) {
  header .drawerButton[aria-expanded=true] {
    right: 27px;
  }
}
header .drawerButton[aria-expanded=true] .drawerButton__line {
  background: transparent;
}
header .drawerButton[aria-expanded=true] .drawerButton__line::before {
  top: 0;
  transform: rotate(45deg);
}
header .drawerButton[aria-expanded=true] .drawerButton__line::after {
  top: 0;
  transform: rotate(-45deg);
}
header .drawerButton .drawerButton__line {
  position: relative;
  width: 17px;
  height: 1.5px;
  background-color: #fff;
}
header .drawerButton .drawerButton__line::before, header .drawerButton .drawerButton__line::after {
  position: absolute;
  display: block;
  width: 17px;
  height: 1.5px;
  background-color: #fff;
  content: "";
  transition: 0.3s;
}
header .drawerButton .drawerButton__line::before {
  top: -7px;
}
header .drawerButton .drawerButton__line::after {
  top: 7px;
}
header .drawerButton .drawerButton__line span {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
}
header nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #0A55C7;
  transition: right 0.3s ease;
  z-index: 1;
  padding-top: 6rem;
  background-attachment: fixed;
  overscroll-behavior: none;
}
@media screen and (min-width: 769px) {
  header nav {
    width: 80%;
    max-width: 300px;
  }
}
header nav.is-open {
  right: 0;
}
header nav ul li a {
  width: 100%;
  padding: 1rem;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  header nav ul li a:hover {
    background: #1F87FF;
  }
}

.mainVisual {
  position: relative;
  width: 100%;
  height: 155vw;
  background: url(../imgs/lp-ao/mv@2x.webp) no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  padding: 0 0 10vw 10vw;
}
@media screen and (min-width: 769px) {
  .mainVisual {
    height: 900px;
  }
}
@media screen and (min-width: 1080px) {
  .mainVisual {
    align-items: center;
    padding: 0 0 0 15vw;
    background: url(../imgs/lp-ao/mv.webp) no-repeat right 20% top 0;
  }
}
@media screen and (min-width: 1200px) {
  .mainVisual {
    padding-left: 20vw;
  }
}
@media screen and (min-width: 1500px) {
  .mainVisual {
    padding-left: 24vw;
  }
}
.mainVisual::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: 0;
  width: min(100%, 760px);
  height: 100vw;
  background: url(../imgs/lp-ao/mv_copy_bg@2x.svg) no-repeat left bottom;
  background-size: contain;
}
@media screen and (min-width: 1080px) {
  .mainVisual::before {
    background: url(../imgs/lp-ao/mv_copy_bg.svg) no-repeat left center;
    left: 3.5vw;
    bottom: 130px;
    height: 700px;
  }
}
@media screen and (min-width: 1500px) {
  .mainVisual::before {
    left: 6vw;
  }
}
.mainVisual hgroup {
  position: relative;
}
.mainVisual hgroup h1 {
  color: #fff;
  font-weight: bold;
  margin-bottom: 3rem;
  line-height: 1.4;
  font-size: clamp(1.5rem, 7.5vw, 3.5rem);
  letter-spacing: 0.33rem;
}
@media screen and (min-width: 1080px) {
  .mainVisual hgroup h1 {
    margin-bottom: 4.6rem;
    font-size: clamp(2.25rem, 10vw, 4.375rem);
    line-height: 1.2;
  }
}
.mainVisual hgroup h1 span {
  font-size: 1.2em;
}
.mainVisual hgroup p {
  color: #fff;
  font-size: clamp(0.875rem, 4vw, 1.25rem);
}
@media screen and (min-width: 1080px) {
  .mainVisual hgroup p {
    margin: 0 0 0 7px;
  }
}
.mainVisual hgroup p b {
  display: inline-block;
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 1rem;
}

.points {
  margin: 0 auto 26px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .points {
    margin: 0 auto;
    padding-block: 6.8rem 8rem;
    flex-direction: row;
    width: min(100%, 1180px);
  }
}
.points .point__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  padding-block: 2.6rem;
}
@media screen and (min-width: 769px) {
  .points .point__item {
    padding-inline: 60px;
    padding-block: 0;
    gap: 2.4rem;
  }
}
@media screen and (min-width: 769px) {
  .points .point__item:nth-of-type(1) {
    width: 60%;
  }
}
@media screen and (min-width: 769px) {
  .points .point__item:nth-of-type(2) {
    width: 40%;
  }
}
.points .point__item h2 {
  position: relative;
  font-weight: bold;
  font-size: clamp(1.25rem, 7vw, 1.75rem);
  letter-spacing: 0.15rem;
}
@media screen and (min-width: 769px) {
  .points .point__item h2 {
    font-size: 2.25rem;
  }
}
.points .point__item h2:has(.point__deco) {
  padding-block: 3rem 0;
}
@media screen and (min-width: 769px) {
  .points .point__item h2:has(.point__deco) {
    padding-block: 0;
  }
}
.points .point__item h2 .point__deco {
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  color: #1F87FF;
  display: inline-block;
  font-size: clamp(1.125rem, 4.8vw, 1.5rem);
}
@media screen and (min-width: 769px) {
  .points .point__item h2 .point__deco {
    top: -40px;
  }
}
.points .point__item h2 .point__deco::before, .points .point__item h2 .point__deco::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 34px;
  background: #1F87FF;
  border-radius: 2px;
  margin-inline: 1.2rem;
  vertical-align: middle;
}
.points .point__item h2 .point__deco::before {
  transform: rotate(-28deg);
}
.points .point__item h2 .point__deco::after {
  transform: rotate(28deg);
}
@media screen and (min-width: 769px) {
  .points .point__item p {
    font-size: clamp(0.875rem, 2vw, 1.25rem);
  }
}
.points .point__item + .point__item {
  position: relative;
  margin-top: 1.6rem;
  gap: 0.8rem;
}
@media screen and (min-width: 769px) {
  .points .point__item + .point__item {
    margin-top: 0;
    gap: 1.8rem;
  }
}
.points .point__item + .point__item::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 50%;
  display: inline-block;
  width: 80%;
  height: 1px;
  border: dashed 2px #1F87FF;
  transform: translate(-50%);
}
@media screen and (min-width: 769px) {
  .points .point__item + .point__item::before {
    width: 1px;
    height: 100%;
    top: 0;
    left: 0;
    transform: none;
  }
}

.admissionTypes .admissionTypes__heading {
  background: url(../imgs/lp-ao/type_bg.webp) no-repeat center center;
  background-size: cover;
  padding-block: 2.4rem 3rem;
  text-align: center;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 769px) {
  .admissionTypes .admissionTypes__heading {
    padding-block: 3.9rem;
  }
}
.admissionTypes .admissionTypes__heading .admissionTypes__title--sub {
  display: inline-block;
  background: #fff;
  border-radius: 10px;
  color: #1F87FF;
  padding-inline: 40px;
  padding-block: 12px 14px;
  line-height: 1.2;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.2rem;
}
@media screen and (min-width: 769px) {
  .admissionTypes .admissionTypes__heading .admissionTypes__title--sub {
    margin-bottom: 0;
    font-size: 1.25rem;
    padding-inline: 60px;
  }
}
.admissionTypes .admissionTypes__heading .admissionTypes__title--sub span {
  font-size: 1.6em;
}
.admissionTypes .admissionTypes__heading .admissionTypes__title {
  font-size: 1.5rem;
  line-height: 1.4;
}
@media screen and (min-width: 769px) {
  .admissionTypes .admissionTypes__heading .admissionTypes__title {
    font-size: 2.5rem;
    letter-spacing: 0.4rem;
    margin-bottom: 2.9rem;
  }
}
.admissionTypes .admissionTypes__heading .admissionTypes__title span {
  font-size: 1.3em;
}
.admissionTypes .admissionTypes__heading .admissionTypes__title .emphasis {
  font-size: 2em;
}

@-webkit-keyframes drawLine {
  0% {
    stroke-dashoffset: 0;
  }
  30% {
    stroke-dashoffset: -50;
  }
  50% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: -200;
  }
}

@keyframes drawLine {
  0% {
    stroke-dashoffset: 0;
  }
  30% {
    stroke-dashoffset: -50;
  }
  50% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: -200;
  }
}
.admissionType__nav {
  display: none;
}
@media screen and (min-width: 769px) {
  .admissionType__nav {
    display: flex;
    justify-content: center;
    gap: 5rem;
  }
  .admissionType__nav li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: #0A55C7;
    font-size: 1.5rem;
  }
  .admissionType__nav li a::before {
    content: "";
    display: inline-block;
  }
  .admissionType__nav li a svg {
    width: 90px;
    height: 10px;
  }
  .admissionType__nav li a svg path {
    stroke-dasharray: 100;
    stroke-dashoffset: 0;
    transition: none;
    stroke: #1F87FF;
    stroke-width: 2;
    fill: none;
  }
  .admissionType__nav li a:hover svg path {
    -webkit-animation: drawLine 1.2s ease forwards;
            animation: drawLine 1.2s ease forwards;
  }
}
@media screen and (min-width: 1080px) {
  .admissionType__nav {
    gap: 10vw;
  }
}

.accordion__item {
  max-width: 100%;
  position: relative;
  margin-block: 1rem;
  margin-inline: auto;
  background: #F5F5F5;
  padding-inline: 20px;
}
@media screen and (min-width: 1080px) {
  .accordion__item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 130px 35px 70px 80px 40px 170px 100px;
    gap: 12px;
    width: min(100%, 1500px);
    margin-block: 180px 0;
    background: linear-gradient(transparent 10%, #F5F5F5 10%);
    padding-inline: 7.4vw;
    padding-block: 30px 0;
  }
}
.accordion__item:nth-of-type(2) .type__name {
  letter-spacing: 0;
}
@media screen and (min-width: 1080px) {
  .accordion__item:nth-of-type(2) {
    grid-auto-rows: 150px 35px 70px 80px 40px 170px 100px;
  }
  .accordion__item:nth-of-type(2) .type__target {
    width: 380px;
    padding-block: 20px;
  }
}
@media screen and (min-width: 1080px) {
  .accordion__item:nth-of-type(3) .type__target {
    width: 460px;
  }
}
.accordion__item .accordion__header {
  padding-block: 1.2rem;
  cursor: pointer;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .accordion__item .accordion__header {
    cursor: default;
    display: contents;
  }
}
.accordion__item .accordion__header.is-active .type__name::after {
  transform: rotate(0);
}
.accordion__item .accordion__content {
  overflow: hidden;
}
@media screen and (min-width: 1080px) {
  .accordion__item .accordion__content {
    display: contents;
  }
}
.accordion__item .type__target {
  position: relative;
  display: inline-block;
  background: #fff;
  border: solid 1px #1F87FF;
  border-radius: 20px;
  padding-block: 5px;
  padding-inline: 11px;
  margin-bottom: 6px;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .accordion__item .type__target {
    border: solid 2px #1F87FF;
    width: 380px;
    padding-block: 30px;
    box-shadow: 0 6px 0 0 #1F87FF;
    margin-bottom: 1.6rem;
    font-size: clamp(1.125rem, 3vw, 1.5rem);
  }
}
@media screen and (min-width: 1080px) {
  .accordion__item .type__target {
    margin-left: auto;
  }
}
.accordion__item .type__target::before, .accordion__item .type__target::after {
  content: "";
  display: block;
  position: absolute;
  transition: 0.3s;
}
.accordion__item .type__target::before {
  width: 32px;
  height: 17px;
  background: url(../imgs/lp-ao/decorate.svg) no-repeat center center;
  background-size: contain;
  top: -20px;
  right: -20px;
}
.accordion__item .type__target::after {
  width: 55px;
  height: 55px;
  background: url(../imgs/lp-ao/fukidashi.svg) no-repeat center top;
  background-size: contain;
  bottom: -33px;
}
@media screen and (max-width: 768px) {
  .accordion__item .type__target::after {
    display: none;
  }
}
.accordion__item .type__name {
  position: relative;
  font-weight: bold;
  font-size: clamp(22px, 6.5vw, 36px);
  color: #0A55C7;
  letter-spacing: 0.35rem;
}
@media screen and (min-width: 769px) {
  .accordion__item .type__name {
    font-size: clamp(2.25rem, 8vw, 3rem);
  }
}
.accordion__item .type__name::before, .accordion__item .type__name::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 16px;
  height: 2px;
  background: #1F87FF;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (min-width: 1080px) {
  .accordion__item .type__name::before, .accordion__item .type__name::after {
    content: none;
  }
}
.accordion__item .type__name::after {
  transform: translateY(-50%) rotate(90deg);
}
.accordion__item .type__state {
  margin-bottom: 1rem;
}
.accordion__item .type__state li {
  display: inline-block;
  border-radius: 12px;
  padding-inline: 15px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .accordion__item .type__state li {
    font-weight: bold;
    width: min(100%, 100px);
  }
}
.accordion__item .type__state li.sengan {
  color: #fff;
  background: #1F87FF;
}
.accordion__item .type__state li.heigan {
  color: #fff;
  background: #00AF9B;
  margin-left: 1rem;
  position: relative;
}
.accordion__item .type__state li.heigan::before {
  content: "/";
  position: absolute;
  color: #000;
  left: -1rem;
  width: 1rem;
  height: 1rem;
}
.accordion__item .type__state li.term {
  color: #1F87FF;
  background: #fff;
  border: solid 1px #1F87FF;
  white-space: nowrap;
}
.accordion__item .type__par {
  margin-bottom: 2.2rem;
}
@media screen and (min-width: 769px) {
  .accordion__item .type__par {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1080px) {
  .accordion__item .type__par {
    width: min(100%, 490px);
  }
}
.accordion__item .type__selection {
  width: min(100%, 960px);
  font-size: 1.125rem;
  font-weight: bold;
  position: relative;
  padding-inline: 47px 0;
  margin: 0 auto 0.5rem;
}
@media screen and (min-width: 769px) {
  .accordion__item .type__selection {
    font-size: 1.5rem;
  }
}
.accordion__item .type__selection::before, .accordion__item .type__selection::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.accordion__item .type__selection::before {
  left: 20px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #1F87FF;
}
@media screen and (min-width: 769px) {
  .accordion__item .type__selection::before {
    width: 27px;
    height: 27px;
    left: 0;
  }
}
.accordion__item .type__selection::after {
  left: 28px;
  width: 5px;
  height: 9px;
  border-right: solid 2px #fff;
  border-bottom: solid 2px #fff;
  transform: translateY(-55%) rotate(33deg);
}
@media screen and (min-width: 769px) {
  .accordion__item .type__selection::after {
    left: 8px;
    width: 10px;
    height: 18px;
    border-right: solid 3px #fff;
    border-bottom: solid 3px #fff;
  }
}
.accordion__item .selectionProcess {
  padding-inline: 20px;
  margin: 0 auto 1.6rem;
  width: min(100%, 960px);
}
@media screen and (min-width: 769px) {
  .accordion__item .selectionProcess {
    display: flex;
    gap: 38px;
    padding-inline: 0;
  }
}
.accordion__item .selectionProcess li {
  position: relative;
  width: 100%;
  max-height: 128px;
  border: solid 1px #56A5FF;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 0.7rem;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .accordion__item .selectionProcess li {
    border: solid 1px gainsboro;
  }
}
.accordion__item .selectionProcess li .score {
  display: block;
  width: 100%;
  line-height: 1.2;
}
@media screen and (min-width: 769px) {
  .accordion__item .selectionProcess li .score {
    font-size: 1.75rem;
  }
}
.accordion__item .selectionProcess li .score span {
  font-weight: bold;
  font-size: 1.4em;
}
.accordion__item .selectionProcess li + li {
  margin-top: 47px;
}
@media screen and (min-width: 769px) {
  .accordion__item .selectionProcess li + li {
    margin-top: 0;
  }
}
.accordion__item .selectionProcess li + li::before, .accordion__item .selectionProcess li + li::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (min-width: 769px) {
  .accordion__item .selectionProcess li + li::before, .accordion__item .selectionProcess li + li::after {
    left: -20px;
    transform: translate(0, -50%);
  }
}
.accordion__item .selectionProcess li + li::before {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #000;
  top: -40px;
}
@media screen and (min-width: 769px) {
  .accordion__item .selectionProcess li + li::before {
    top: 50%;
    left: -32px;
  }
}
.accordion__item .selectionProcess li + li::after {
  content: "+";
  font-size: 1.375rem;
  color: #fff;
  top: -45px;
}
@media screen and (min-width: 769px) {
  .accordion__item .selectionProcess li + li::after {
    font-size: 1.75rem;
    top: 48.3%;
    left: -26px;
  }
}
.accordion__item .btnArea {
  margin-bottom: 3.3rem;
}
.accordion__item .type__image {
  margin-bottom: 2rem;
}
@media screen and (min-width: 1080px) {
  .accordion__item .type__image {
    margin-bottom: 0;
  }
}
.accordion__item .type__image img {
  width: 100%;
  height: auto;
  border-radius: 60px 0 0 0;
}
@media screen and (min-width: 1080px) {
  .accordion__item .type__image img {
    width: min(100%, 540px);
    transform: translateX(-60px);
  }
}

@media screen and (min-width: 769px) {
  _::-webkit-full-page-media, _:future, :root .accordion__item .selectionProcess li + li::after {
    left: -29px;
  }
}

@media screen and (min-width: 1080px) {
  .accordion__item .type__image {
    grid-row: span 4/span 4;
    order: 1;
  }
  .accordion__item .type__target {
    grid-column-start: 2;
    grid-row-start: 1;
    order: 2;
  }
  .accordion__item .type__state {
    grid-column-start: 2;
    grid-row-start: 2;
    order: 3;
  }
  .accordion__item .type__name {
    grid-column-start: 2;
    grid-row-start: 3;
    order: 4;
  }
  .accordion__item .type__par {
    grid-column-start: 2;
    grid-row-start: 4;
    order: 5;
  }
  .accordion__item .type__selection {
    grid-column: span 2/span 2;
    grid-column-start: 1;
    grid-row-start: 5;
    order: 6;
  }
  .accordion__item .selectionProcess {
    grid-column: span 2/span 2;
    grid-column-start: 1;
    grid-row-start: 6;
    order: 7;
  }
  .accordion__item .btnArea {
    grid-column: span 2/span 2;
    grid-row-start: 7;
    order: 8;
  }
}
.admissionSchedule {
  padding-block: 2rem;
  padding-inline: 20px;
  width: min(100%, 1200px);
  margin: 0 auto 3rem;
}
@media screen and (min-width: 769px) {
  .admissionSchedule {
    padding-block: 5rem;
  }
}
.admissionSchedule h2 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1.4rem;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .admissionSchedule h2 {
    font-size: 3.125rem;
  }
}
.admissionSchedule p {
  text-align: center;
  margin-bottom: 1.2rem;
}
@media screen and (min-width: 769px) {
  .admissionSchedule p {
    font-size: 1.1875rem;
    margin-block: 3rem 4rem;
  }
}
.admissionSchedule figure {
  margin-bottom: 2rem;
}
.admissionSchedule figure img {
  width: 100%;
}

.admissionFlow {
  padding-block: 4rem 2rem;
  padding-inline: 20px;
  background-image: linear-gradient(180deg, rgb(230, 255, 251), rgb(143, 205, 255));
}
@media screen and (min-width: 769px) {
  .admissionFlow {
    padding-block: 5rem;
  }
}
.admissionFlow h2 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1.7rem;
  text-align: center;
  color: #06367e;
}
@media screen and (min-width: 769px) {
  .admissionFlow h2 {
    font-size: 3.125rem;
  }
}
.admissionFlow .js-details {
  position: relative;
  background: #fff;
  border-radius: 10px;
  width: min(100%, 1100px);
  margin: 0 auto 3rem;
}
.admissionFlow .js-details.is-opened .js-summary {
  background: #FFF79C;
}
.admissionFlow .js-details.is-opened .js-summary .icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
@media screen and (min-width: 769px) {
  .admissionFlow .js-details:last-of-type .js-summary {
    padding-block: 2rem;
  }
}
.admissionFlow .js-details + .js-details::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -36px;
  left: 50%;
  width: 50px;
  height: 22px;
  background: #56A5FF;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .admissionFlow .js-details + .js-details::before {
    top: -44px;
  }
}
.admissionFlow .js-details .js-summary {
  position: relative;
  border-radius: 10px 10px 0 0;
  padding-block: 1rem;
  padding-inline: 0.8rem 30px;
  font-weight: bold;
  font-size: 1rem;
}
@media screen and (min-width: 769px) {
  .admissionFlow .js-details .js-summary {
    font-size: 1.5rem;
    padding-inline: 3rem;
  }
}
.admissionFlow .js-details .js-summary .num {
  color: #1F87FF;
  display: inline-block;
  margin: 0 0.3rem 0.2rem 0;
  font-size: 1.25rem;
  vertical-align: middle;
}
@media screen and (min-width: 769px) {
  .admissionFlow .js-details .js-summary .num {
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 1080px) {
  .admissionFlow .js-details .js-summary .num {
    font-size: 2.25rem;
    margin: 0 0.8rem 0.4rem 0;
  }
}
.admissionFlow .js-details .js-summary b {
  color: #0A55C7;
}
.admissionFlow .js-details .js-summary .icon {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #56A5FF;
}
@media screen and (min-width: 769px) {
  .admissionFlow .js-details .js-summary .icon {
    width: 40px;
    height: 40px;
    right: 30px;
  }
}
.admissionFlow .js-details .js-summary .icon::before, .admissionFlow .js-details .js-summary .icon::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .admissionFlow .js-details .js-summary .icon::before, .admissionFlow .js-details .js-summary .icon::after {
    width: 18px;
  }
}
.admissionFlow .js-details .js-summary .icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.admissionFlow .js-details .js-content {
  background: #fff;
  border-radius: 0 0 10px 10px;
}
.admissionFlow .js-details .js-content .content__inner {
  padding-block: 2rem;
  padding-inline: 15px;
  text-align: center;
}
.admissionFlow .js-details .js-content .content__inner h3 .small {
  font-size: 1rem;
  color: #000;
}
.admissionFlow .js-details .js-content .content__inner p {
  margin-bottom: 1rem;
  text-align: center;
}
.admissionFlow .js-details .js-content .content__inner .flow__li {
  padding-left: 0;
  display: inline-block;
  list-style: disc;
}
.admissionFlow .js-details .js-content .content__inner .flow__li li {
  text-align: left;
}
.admissionFlow .js-details .js-content .content__inner .flow__contentTitle {
  color: #0A55C7;
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}
@media screen and (min-width: 769px) {
  .admissionFlow .js-details .js-content .content__inner .flow__contentTitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
.admissionFlow .js-details .js-content .content__inner .btnArea {
  padding-block: 10px;
}
@media screen and (min-width: 769px) {
  .admissionFlow .js-details .js-content .content__inner .btnArea .ao_btn {
    width: min(100%, 400px);
  }
}
.admissionFlow .js-details .js-content .content__inner .application-period {
  display: inline-block;
  width: min(100%, 430px);
}
.admissionFlow .js-details .js-content .content__inner .application-period li {
  display: flex;
  width: 100%;
  margin-bottom: 3px;
}
.admissionFlow .js-details .js-content .content__inner .application-period li span {
  font-weight: bold;
  display: inline-block;
  width: auto;
  padding-block: 10px;
  padding-inline: 15px;
  font-size: 1rem;
}
@media screen and (min-width: 769px) {
  .admissionFlow .js-details .js-content .content__inner .application-period li span {
    font-size: 1.25rem;
  }
}
.admissionFlow .js-details .js-content .content__inner .application-period li .applications {
  color: #fff;
  width: 32%;
  background: #1F87FF;
}
.admissionFlow .js-details .js-content .content__inner .application-period li .term {
  width: 68%;
  background: #E6F2FF;
}
.admissionFlow .js-details .js-content .content__inner .application-period li:last-of-type .applications {
  background: #00AF9B;
}
.admissionFlow .js-details .js-content .content__inner .application-period li:last-of-type .term {
  background: #f5f5f5;
}
.admissionFlow .js-details:last-of-type .js-summary {
  text-align: center;
}
.admissionFlow .js-details + .js-details {
  margin-top: 48px;
}
@media screen and (min-width: 769px) {
  .admissionFlow .js-details + .js-details {
    margin-top: 66px;
  }
}

.opencampus {
  margin-bottom: 6.5rem;
}
@media screen and (min-width: 769px) {
  .opencampus {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    height: 674px;
    margin-bottom: 0;
  }
}
.opencampus .opencampus__img {
  margin-bottom: 1.6rem;
}
@media screen and (min-width: 769px) {
  .opencampus .opencampus__img {
    width: min(105%, 1038px);
    height: 100%;
    margin-bottom: 0;
  }
}
.opencampus .opencampus__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1700px) {
  .opencampus .opencampus__img img {
    width: auto;
  }
}
.opencampus .opencampus__txt {
  padding-inline: 30px;
}
@media screen and (min-width: 769px) {
  .opencampus .opencampus__txt {
    padding-inline: 0;
    transform: translateX(10vw);
  }
}
@media screen and (min-width: 1080px) {
  .opencampus .opencampus__txt {
    padding-inline: 0;
    transform: translateX(14vw);
  }
}
@media screen and (min-width: 1700px) {
  .opencampus .opencampus__txt {
    transform: translateX(21vw);
  }
}
.opencampus .opencampus__txt h2 {
  margin-bottom: 1.4rem;
}
.opencampus .opencampus__txt h2 .book {
  border-radius: 40px;
  background: #56A5FF;
  color: #fff;
  display: inline-block;
  padding-inline: 30px;
  padding-block: 4px;
  margin-bottom: 0.5rem;
}
.opencampus .opencampus__txt h2 .min {
  display: block;
  font-family: YuMincho, "Yu Mincho", serif, "Noto Serif JP";
  line-height: 1.3;
  font-size: clamp(1.5rem, 5vw, 2.25rem);
}
@media screen and (min-width: 769px) {
  .opencampus .opencampus__txt h2 .min {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
  }
}
@media screen and (min-width: 1080px) {
  .opencampus .opencampus__txt h2 .min {
    font-size: clamp(2.25rem, 6vw, 5rem);
  }
}
@media screen and (min-width: 1500px) {
  .opencampus .opencampus__txt h2 .min {
    font-size: clamp(2.25rem, 8vw, 5rem);
  }
}
.opencampus .opencampus__txt p {
  margin-bottom: 1.8rem;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .opencampus .opencampus__txt p {
    font-size: 1.125rem;
    width: min(100%, 620px);
    line-height: 2;
    margin-bottom: 3rem;
  }
}
.opencampus .opencampus__txt .btnArea {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 769px) {
  .opencampus .opencampus__txt .btnArea {
    justify-content: flex-start;
  }
}
.opencampus .opencampus__txt .btnArea .ao_btn {
  width: min(100%, 300px);
}
@media screen and (min-width: 769px) {
  .opencampus .opencampus__txt .btnArea .ao_btn {
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    width: min(100%, 600px);
    padding-block: 2.5rem;
  }
}
@media screen and (min-width: 769px) {
  .opencampus .opencampus__txt .btnArea .ao_btn::before {
    width: 20px;
    height: 20px;
  }
}

footer {
  background: #0A55C7;
  text-align: center;
  padding-block: 5px;
}
footer small {
  color: #fff;
}

.pageTop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 85, 199, 0.4980392157);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  transform: translateY(70px);
}
@media screen and (min-width: 769px) {
  .pageTop {
    width: 60px;
    height: 60px;
    right: 20px;
    bottom: 20px;
  }
}
.pageTop::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(-45deg);
  transition: 0.3s;
}
.pageTop:hover::after {
  transform: translateY(-10px) rotate(-45deg);
}
.pageTop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/*# sourceMappingURL=lp-ao.css.map */