#workSheet {
  background-color: rgb(5, 5, 13);
}
#workSheet .workSheeetBody p {
  color: #fff;
  text-align: center;
}

.intro {
  position: relative;
  z-index: 20;
}

article#concept {
  background-color: #05050d;
  color: #fff;
  width: 100%;
}
article#concept .bgObj1 {
  aspect-ratio: 1562/1050;
  position: sticky;
  z-index: 1;
  top: 15%;
  right: 0;
  opacity: 0.5;
  animation: homeFlow 30s infinite linear;
  margin: 0 0 0 auto;
}
article#concept .bgObj1 img {
  width: 100%;
  height: 100%;
}
article#concept #volume1 {
  position: relative;
}
article#concept #volume2 {
  position: relative;
}
article#concept .entry {
  background-color: #c9cfd5;
  position: relative;
  z-index: 10;
}
article#concept #students {
  background: linear-gradient(0deg, rgb(17, 116, 118) 30%, rgba(17, 116, 255, 0) 100%);
  position: relative;
  z-index: 10;
}

@keyframes homeFlow {
  0% {
    transform: scale(1) rotate(0deg);
    filter: blur(0);
  }
  50% {
    transform: scale(1.1, 0.9) rotate(1deg);
    filter: blur(20px);
  }
  100% {
    transform: scale(1) rotate(0deg);
    filter: blur(0);
  }
}
#faq {
  background-color: #f3f3f3;
}

.fadeUp {
  transform: translateY(5vh);
  opacity: 0;
  transition: all 0.8s ease-out;
}
.fadeUp.isView {
  transform: translateY(0);
  opacity: 1;
}

#modal {
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(0);
          backdrop-filter: blur(0);
  opacity: 0;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 100;
  transform: scale(0);
  transition: -webkit-backdrop-filter 1s linear;
  transition: backdrop-filter 1s linear;
  transition: backdrop-filter 1s linear, -webkit-backdrop-filter 1s linear;
}
#modal.isShow {
  opacity: 1;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  transform: scale(1);
}
#modal #modInner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  #fv {
    background-color: #05050d;
    position: relative;
    background-repeat: no-repeat;
    aspect-ratio: 75/192;
    width: 100vw;
    overflow: hidden;
  }
  #fv:after {
    content: "";
    display: block;
    background: linear-gradient(0deg, rgb(5, 5, 13) 10%, rgba(5, 5, 13, 0) 70%);
    position: absolute;
    top: 109vw;
    left: 0;
    width: 100%;
    height: 10vh;
    height: 10dvh;
    z-index: 4;
  }
  #fv #bgWrap {
    position: absolute;
    height: 60vh;
    aspect-ratio: 1602/913;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  #fv #bgWrap .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
  }
  #fv #bgWrap .bg img {
    width: 100%;
    height: 100%;
  }
  #fv #bgWrap #bg1 {
    left: 50%;
    top: 0;
    z-index: 1;
    opacity: 0;
    width: 200%;
    transition: all 0.6s ease-in;
  }
  #fv #bgWrap #bg2 {
    top: 0;
    right: 0;
    z-index: 2;
    opacity: 0;
    width: 300%;
    transition: right 0.7s ease-in, width 0.7s ease-in, opacity 1.5s ease-out;
  }
  #fv #bgWrap #shibuki {
    top: 0;
    left: 0;
    z-index: 3;
    opacity: 0;
    transform: scale(0);
    transition: transform 1s ease-in-out, opacity 2s ease-out;
    transition-delay: 0.1s;
  }
  #fv #bgWrap #shibuki picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  #fv #bgWrap.loaded #bg1 {
    left: 0;
    opacity: 1;
    width: 100%;
  }
  #fv #bgWrap.loaded #bg2 {
    right: 0;
    opacity: 1;
    width: 100%;
  }
  #fv #bgWrap.loaded #shibuki {
    opacity: 1;
    transform: scale(1);
  }
  #fv #centerLogo {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 5;
    display: flex;
    align-items: center;
    top: 28vw;
  }
  #fv #centerLogo #fvCatch {
    opacity: 0;
    transition: all 1s;
    transition-delay: 1.6s;
  }
  #fv #centerLogo #fvCatch img {
    width: 100%;
    height: auto;
  }
  #fv #centerLogo.loaded #fvCatch {
    opacity: 1;
  }
  #fv #enLogo {
    aspect-ratio: 275/20;
    width: 62vw;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 60vw;
    position: absolute;
    z-index: 5;
  }
  #fv #parts {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px;
    z-index: 10;
    filter: blur(100px);
    opacity: 0;
    transition: all 1s ease-out;
  }
  #fv #parts.loaded {
    opacity: 1;
    filter: blur(0);
  }
  #fv #parts .fvEntry {
    width: 90vw;
    position: absolute;
    bottom: 5vw;
    right: 5vw;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 20px 0;
    z-index: 10;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
  #fv #parts .fvEntry .title {
    width: 65%;
    margin: 0 auto;
    color: #fff;
  }
  #fv #parts .fvEntry .title svg {
    aspect-ratio: 400/26;
    width: 100%;
    fill: #fff;
  }
  #fv #parts .fvEntry .title span {
    display: block;
    text-align: center;
    font-size: 5vw;
  }
  #fv #parts .fvEntry .entryBtns {
    display: block;
    width: 90%;
    margin: 15px auto 0;
    padding-bottom: 0;
  }
  #fv #parts .fvEntry .entryBtns a, #fv #parts .fvEntry .entryBtns button {
    width: 100%;
    font-size: 5vw;
  }
  #fv #parts .fvEntry .entryBtns a + a, #fv #parts .fvEntry .entryBtns button + a {
    margin-top: 5vw;
  }
  #fv #parts .fvDayTime {
    margin: 0 auto;
    position: absolute;
    left: 5vw;
    top: 130vw;
    z-index: 9;
    width: 70vw;
  }
  #fv #parts .fvDayTime img {
    width: 100%;
    height: auto;
  }
  #fv #parts .mark {
    aspect-ratio: 75/86;
    width: 10vw;
    position: absolute;
    top: 5vw;
    left: 5vw;
  }
  #fv #parts .mark img {
    width: 100%;
    height: 100%;
  }
  @keyframes spFvBg {
    0%, 100% {
      -webkit-backdrop-filter: blur(10px);
              backdrop-filter: blur(10px);
    }
    50% {
      -webkit-backdrop-filter: blur(0px);
              backdrop-filter: blur(0px);
    }
  }
  #workSheet {
    padding-top: 80px;
  }
  #workSheet .inner {
    background-color: rgb(9, 92, 103);
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 5vw 5vw 7vw;
  }
  #workSheet .workSheeetBody p {
    font-size: 3.7vw;
    line-height: 1.5;
  }
  #workSheet .workSheeetBody a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 100px;
    font-size: 5vw;
    color: #000;
    aspect-ratio: 59/10;
    width: 81vw;
    gap: 0.5em;
    margin: 20px auto 0;
    text-decoration: none;
    box-shadow: 0 5px 0 #000;
    transition: all 0.4s;
  }
  #workSheet .workSheeetBody a svg {
    aspect-ratio: 1/1;
    width: 1.5em;
    fill: #000;
  }
  #workSheet .workSheeetBody a:hover {
    animation: ptAnime 0.5s forwards;
  }
  .intro {
    width: 90%;
    margin: -80vw auto 0;
  }
  .intro .introP {
    font-size: 4vw;
    line-height: 2.6;
  }
  .conceptText {
    width: 90%;
    margin: 5.8vw auto 0;
  }
  .conceptText svg {
    aspect-ratio: 534/83;
    width: 71vw;
    fill: #26262c;
    display: block;
    margin: 0 0 0 auto;
  }
  article#concept {
    overflow-x: clip;
  }
  article#concept .bgObj1 {
    width: 160vw;
  }
  article#concept .inner {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 5;
  }
  article#concept .inner .conceptHead {
    border: 2px solid #037e87;
    border-width: 2px 0;
    min-height: 29vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
  article#concept .inner .conceptHead h2 {
    font-size: 7.5vw;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  article#concept .inner .conceptHead h2 span.spSize {
    display: block;
    font-size: 4.5vw;
  }
  article#concept .inner .conceptHead .onLine {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    background-color: #2b2b2b;
    border-radius: 4.8vw 0 0 4.8vw;
    width: 28.8vw;
    height: 24vw;
    position: absolute;
    top: -12vw;
    right: 0;
  }
  article#concept .inner .conceptHead .onLine svg {
    aspect-ratio: 25/19;
    width: 5.4vw;
    fill: #f7cf07;
  }
  article#concept .inner .conceptHead .onLine span {
    display: block;
    font-size: 3.2vw;
    text-align: center;
  }
  article#concept .inner .read {
    display: block;
    width: 90%;
    margin: 4vw auto 0;
    position: relative;
    z-index: 11;
  }
  article#concept .inner .read p {
    font-size: 3.7vw;
    line-height: 1.87;
  }
  article#concept #volume1 {
    margin-top: 25vw;
  }
  article#concept #volume1 .speakers {
    width: 90%;
    margin: 6.6vw auto 0;
    position: relative;
    z-index: 10;
  }
  article#concept #volume1 .speakers .speaker {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5vw;
    padding: 5vw;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
  article#concept #volume1 .speakers .speaker + .speaker {
    margin-top: 25px;
  }
  article#concept #volume1 .speakers .speaker .img img {
    width: 100%;
    height: auto;
    border-radius: 4vw;
  }
  article#concept #volume1 .speakers .speaker .txt {
    flex: 1;
  }
  article#concept #volume1 .speakers .speaker .txt .time {
    font-size: 4.5vw;
    margin-top: 2vw;
    color: #2cd9df;
  }
  article#concept #volume1 .speakers .speaker .txt .time .cat {
    display: inline-block;
    padding-left: 1.5em;
    color: #fff;
    font-size: 0.8em;
  }
  article#concept #volume1 .speakers .speaker .txt .title {
    font-size: 5.6vw;
    margin-top: 2vw;
    font-weight: 700;
  }
  article#concept #volume1 .speakers .speaker .txt .title br {
    display: none;
  }
  article#concept #volume1 .speakers .speaker .txt .name {
    font-size: 4.3vw;
    margin-top: 2vw;
    font-weight: 700;
  }
  article#concept #volume1 .speakers .speaker .txt .name span {
    font-weight: 400;
    display: inline-block;
    font-size: 0.8em;
    padding-left: 0.5em;
  }
  article#concept #volume1 .speakers .speaker .txt .job {
    font-size: 3.7vw;
    margin-top: 1.5vw;
  }
  article#concept #volume1 .speakers .speaker .txt .job .logo {
    display: block;
    text-align: right;
    padding-bottom: 1.5vw;
  }
  article#concept #volume1 .speakers .speaker .txt .job .logo img {
    width: 30vw;
    height: auto;
  }
  article#concept #volume1 .speakers .speaker .txt .info {
    margin-top: 2vw;
    font-size: 3.4vw;
    line-height: 1.5;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding-top: 4vw;
  }
  article#concept #volume2 {
    margin-top: 40vw;
  }
  article#concept #volume2 .speakers {
    width: 90%;
    margin: 5.3vw auto 0;
    position: relative;
    z-index: 10;
  }
  article#concept #volume2 .speakers .speaker {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5vw;
    padding: 5vw;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
  article#concept #volume2 .speakers .speaker + .speaker {
    margin-top: 25px;
  }
  article#concept #volume2 .speakers .speaker .img {
    width: 100%;
  }
  article#concept #volume2 .speakers .speaker .img img {
    width: 100%;
    height: auto;
    border-radius: 15px;
  }
  article#concept #volume2 .speakers .speaker .txt {
    flex: 1;
  }
  article#concept #volume2 .speakers .speaker .txt .time {
    font-size: 4.5vw;
    color: #2cd9df;
    margin-top: 2vw;
  }
  article#concept #volume2 .speakers .speaker .txt .title {
    font-size: 5.6vw;
    margin-top: 2vw;
    font-weight: 700;
  }
  article#concept #volume2 .speakers .speaker .txt .title span.kaminari {
    display: inline-block;
    width: 1em;
    height: 1em;
  }
  article#concept #volume2 .speakers .speaker .txt .title span.kaminari img {
    max-height: 100%;
    width: 100%;
    width: auto;
    height: auto;
  }
  article#concept #volume2 .speakers .speaker .txt .position {
    margin-top: 1.3vw;
    font-size: 3vw;
    line-height: 1.5;
  }
  article#concept #volume2 .speakers .speaker .txt .name {
    font-size: 4.3vw;
    margin-top: 3.5vw;
    font-weight: 700;
  }
  article#concept #volume2 .speakers .speaker .txt .name span {
    display: inline-block;
    font-size: 0.8em;
    padding-left: 0.5em;
    font-weight: 400;
  }
  article#concept #volume2 .speakers .speaker .txt .job {
    font-size: 3.7vw;
    margin-top: 1.5vw;
  }
  article#concept #volume2 .speakers .speaker .txt .info {
    margin-top: 4.5vw;
    font-size: 3.4vw;
    line-height: 1.5;
  }
  article#concept #volume2 .speakers .speaker .txt .opt {
    text-align: right;
    gap: 15px;
    margin-top: 15px;
  }
  article#concept #volume2 .speakers .speaker .txt .opt img {
    max-width: 100px;
    max-height: 50px;
    width: auto;
    height: auto;
    margin-left: 10px;
  }
  article#concept #host {
    display: grid;
    grid-template-columns: 53vw 1fr;
    border-top: 2px solid #444;
    border-bottom: 2px solid #444;
    width: 90%;
    margin: 5.3vw auto 0;
    background-color: rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    gap: 4vw 5.3vw;
  }
  article#concept #host .img {
    grid-column: 1/2;
    grid-row: 1/2;
    padding-top: 5.3vw;
  }
  article#concept #host .img img {
    width: 100%;
    height: auto;
    border-radius: 15px;
  }
  article#concept #host .txt {
    grid-column: 2/3;
    grid-row: 1/2;
    padding-top: 5.3vw;
    align-self: center;
  }
  article#concept #host .txt .title {
    font-size: 3.2vw;
    font-weight: 500;
  }
  article#concept #host .txt .name {
    font-size: 4vw;
    font-weight: 500;
    margin-top: 1.5vw;
  }
  article#concept #host .txt .name span {
    font-size: 0.8em;
  }
  article#concept #host .txt .job {
    font-size: 3.7vw;
  }
  article#concept #host .info {
    grid-column: 1/3;
    grid-row: 2/3;
    font-size: 3.2vw;
    padding-bottom: 5.3vw;
  }
  article#concept #volume3 {
    margin: 24vw auto 0;
    width: 90%;
  }
  article#concept #volume3 .volImg {
    margin-top: 7.4vw;
  }
  article#concept #volume3 .volImg img {
    border-radius: 5vw;
    width: 100%;
    height: auto;
  }
  article#concept #volume3 .info {
    margin-top: 5vw;
  }
  article#concept #volume3 .info .topInfo {
    justify-self: center;
    text-align: center;
  }
  article#concept #volume3 .info .topInfo .time {
    font-size: 4.5vw;
    color: #2cd9df;
  }
  article#concept #volume3 .info .topInfo .title {
    font-size: 4.8vw;
    font-weight: 500;
    margin-top: 10px;
  }
  article#concept #volume3 .info .topInfo .title span {
    font-size: 20px;
  }
  article#concept #volume3 .info .detail {
    margin-top: 5.6vw;
  }
  article#concept #volume3 .info .detail p {
    font-size: 3.7vw;
    line-height: 1.6;
  }
  article#concept #volume3 .info .special {
    margin-top: 6.6vw;
  }
  article#concept #volume3 .info .special .gridInner {
    padding: 5vw;
    background-color: rgba(59, 59, 59, 0.7);
    border-radius: 5vw;
  }
  article#concept #volume3 .info .special .gridInner .icon {
    aspect-ratio: 122/94;
    margin: 0 auto;
    width: 23vw;
  }
  article#concept #volume3 .info .special .gridInner .icon img {
    width: 100%;
    height: auto;
  }
  article#concept #volume3 .info .special .gridInner p {
    font-size: 4vw;
    line-height: 1.6;
    margin-top: 5vw;
  }
  article#concept .entry {
    padding: 10vw;
    margin-top: 20vw;
  }
  article#concept .entry .cfLogo .logoWrap {
    background-color: #06060e;
    border-radius: 5vw;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 216/120;
    width: 40vw;
    margin: 0 auto;
  }
  article#concept .entry .cfLogo .logoWrap img {
    aspect-ratio: 75/86;
    width: 10vw;
  }
  article#concept .entry .title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 2.5vw;
  }
  article#concept .entry .title svg {
    aspect-ratio: 260/22;
    width: 52.6vw;
    fill: #1e1e26;
  }
  article#concept .entry .title span {
    display: block;
    font-size: 4.6vw;
    line-height: 1;
    color: #1e1e26;
    margin-top: 2.5vw;
  }
  article#concept .entry .entryBtns {
    grid-column: 2/3;
    grid-row: 2/3;
    padding-top: 3vw;
  }
  article#concept .entry .entryBtns span.memo {
    color: #007d80;
    font-size: 16px;
  }
  article#concept #students {
    padding: 30vw 0 15vw;
  }
  article#concept #students .inner {
    width: 90%;
    margin: 0 auto;
    position: relative;
  }
  article#concept #students .inner .engTitle {
    aspect-ratio: 580/83;
    width: 74.6vw;
    fill: #fff;
    opacity: 0.1;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
  }
  article#concept #students .inner .studentBody {
    padding-top: 50px;
    position: relative;
    z-index: 5;
  }
  article#concept #students .inner .studentBody .jaTitle {
    width: 40vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  article#concept #students .inner .studentBody .jaTitle h2 {
    font-size: 6.6vw;
    font-weight: 400;
    position: relative;
    z-index: 10;
  }
  article#concept #students .inner .studentBody .jaTitle h2:before {
    content: "";
    display: block;
    width: 100%;
    height: 6vw;
    position: absolute;
    z-index: -1;
    bottom: -1.5vw;
    left: 0;
    background-color: #000;
  }
  article#concept #students .inner .studentBody .txt {
    flex: 1;
    position: relative;
    padding-top: 8vw;
  }
  article#concept #students .inner .studentBody .txt:after {
    content: "";
    display: block;
    background-image: url(../images/for_students.webp);
    background-size: 100% auto;
    width: 21vw;
    aspect-ratio: 1/1;
    position: absolute;
    top: -10vw;
    right: 0;
  }
  article#concept #students .inner .studentBody .txt h3 {
    font-size: 5vw;
    font-weight: 500;
  }
  article#concept #students .inner .studentBody .txt p {
    font-size: 3.7vw;
    line-height: 1.76;
    margin-top: 5vw;
  }
  article#concept #students .inner .studentBody .pc {
    position: relative;
  }
  article#concept #students .inner .studentBody .pc img {
    width: 24vw;
    position: absolute;
    right: 0;
    bottom: -25vw;
    z-index: 5;
  }
  article#concept #students .inner .entry {
    border-radius: 5vw;
    background-color: rgba(38, 56, 61, 0.8);
    padding: 0 0 6vw 0;
    margin-top: 19.5vw;
    position: relative;
    z-index: 3;
  }
  article#concept #students .inner .entry .left {
    flex: 1;
    background-color: #0b0f19;
    position: relative;
    border-radius: 5vw 5vw 0 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0 5vw 5vw;
  }
  article#concept #students .inner .entry .left:after {
    content: "";
    display: block;
    background-image: url(../images/sankaku.webp);
    background-size: 100% auto;
    aspect-ratio: 699/86;
    width: 100%;
    position: absolute;
    right: 0;
    bottom: -11vw;
  }
  article#concept #students .inner .entry .left .title {
    font-size: 4.5vw;
    font-weight: 500;
    color: #fff;
    display: block;
    text-align: center;
  }
  article#concept #students .inner .entry .left .title span {
    display: inline-block;
    color: #f7cf07;
  }
  article#concept #students .inner .entry .left ul {
    list-style: none;
    margin-top: 3.5vw;
    padding: 0 10vw;
  }
  article#concept #students .inner .entry .left ul li {
    background-color: #ccc;
    font-size: 3.7vw;
    border-radius: 2vw;
    flex: 1;
    text-align: center;
    padding: 10px 5px;
    color: #000;
    font-weight: 500;
  }
  article#concept #students .inner .entry .left ul li + li {
    margin-top: 3vw;
  }
  article#concept #students .inner .entry .right {
    flex: 1;
    margin-top: 10vw;
  }
  article#concept #students .inner .entry .right .memo {
    color: #fff;
    bottom: 10px;
  }
  @keyframes homeFlow {
    0% {
      transform: scale(1) rotate(0deg);
      filter: blur(0);
    }
    50% {
      transform: scale(1.1, 0.9) rotate(1deg);
      filter: blur(20px);
    }
    100% {
      transform: scale(1) rotate(0deg);
      filter: blur(0);
    }
  }
  #info {
    padding-top: 18vw;
  }
  #info .inner {
    width: 90%;
    margin: 0 auto;
  }
  #info .inner .sectHead {
    position: relative;
  }
  #info .inner .sectHead .engTitle {
    aspect-ratio: 300/98;
    max-width: 185px;
    width: 28vw;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    fill: #e7e7e7;
  }
  #info .inner .sectHead h2 {
    font-size: 5vw;
    color: #585858;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 5;
    line-height: 1;
    padding-top: 1.3em;
  }
  #info .inner .infoBody dl dt {
    grid-column: 1/2;
    font-size: 4vw;
    font-weight: 700;
    padding-top: 1.25em;
  }
  #info .inner .infoBody dl dd {
    grid-column: 2/3;
    font-size: 3.7vw;
    padding-bottom: 1.4em;
    border-bottom: 1px solid #dadada;
    margin-top: 0.7em;
  }
  #info .inner .infoBody dl dd .copName {
    display: inline-block;
    white-space: nowrap;
  }
  #info .inner .infoBody .memo {
    margin-top: 10px;
    font-size: 14px;
  }
  #access {
    margin-top: 16vw;
  }
  #access .inner {
    width: 90%;
    margin: 0 auto;
  }
  #access .inner .sectHead {
    position: relative;
  }
  #access .inner .sectHead .engTitle {
    aspect-ratio: 311/61;
    max-width: 311px;
    width: 46vw;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    fill: #e7e7e7;
  }
  #access .inner .sectHead h2 {
    font-size: 5vw;
    color: #585858;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 5;
    line-height: 1;
    padding-top: 1.3em;
  }
  #access .inner .accessBody {
    font-size: 3.7vw;
  }
  #access .inner .accessBody #gMap {
    width: 100%;
    margin-top: 10vw;
  }
  #access .inner .accessBody #gMap iframe#googleMap {
    aspect-ratio: 4/3;
    width: 100%;
  }
  #access .inner .accessBody .address {
    margin-top: 8vw;
  }
  #access .inner .accessBody .accessInfo > div {
    line-height: 1.6;
    margin-top: 8vw;
  }
  #access .inner .accessBody .accessInfo > div .title {
    font-weight: 700;
  }
  #access .inner .accessBody .accessInfo > div ul {
    margin-top: 2.6vw;
    padding-left: 1em;
  }
  #faq {
    background-color: #f3f3f3;
    margin-top: 20vw;
    padding: 15vw 0 20vw;
  }
  #faq .inner {
    width: 90%;
    margin: 0 auto;
  }
  #faq .inner h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
  }
  #faq .inner .faqBody {
    background-color: #fff;
    border-radius: 12px;
    padding: 10vw 5vw;
    margin-top: 10vw;
  }
  #faq .inner .faqBody dl .item {
    padding-bottom: 10vw;
    border-bottom: 1px solid #ccc;
    line-height: 1.6;
  }
  #faq .inner .faqBody dl .item + .item {
    margin-top: 10vw;
  }
  #faq .inner .faqBody dl .item dt {
    font-size: 4vw;
    font-weight: 700;
  }
  #faq .inner .faqBody dl .item dd {
    font-size: 3.7vw;
    margin-top: 0.8em;
  }
  #modal {
    width: 100vw;
    height: 100dvh;
  }
  #modal .modLigo {
    aspect-ratio: 75/86;
    width: 10vw;
    position: absolute;
    top: 5vw;
    left: 5vw;
  }
  #modal .modLigo svg {
    aspect-ratio: 75/86;
    width: 5vw;
  }
  #modal .modClose {
    width: 10vw;
    height: 10vw;
    border: none;
    outline: none;
    background-color: transparent;
    position: absolute;
    top: 5vw;
    right: 5vw;
    cursor: pointer;
  }
  #modal .modClose svg {
    width: 100%;
    height: 100%;
    fill: #fff;
  }
  #modal #modBody {
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px);
    border-radius: 20px;
    padding: 10vw 5vw;
    max-width: 900px;
    width: 90%;
    position: relative;
  }
  #modal #modBody .modClose {
    width: 7vw;
    height: 7vw;
    border: none;
    outline: none;
    background-color: transparent;
    position: absolute;
    top: -11vw;
    right: 0;
    cursor: pointer;
  }
  #modal #modBody .modClose svg {
    width: 100%;
    height: 100%;
    fill: #fff;
  }
  #modal #modBody .title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #modal #modBody .title svg {
    aspect-ratio: 238/16;
    width: 200px;
    fill: #fff;
  }
  #modal #modBody .title span {
    font-size: 4.2vw;
    font-weight: 500;
    color: #fff;
    margin-top: 10px;
  }
  #modal #modBody .memo {
    color: #fff;
    text-align: center;
    font-size: 3.4vw;
    margin-top: 10vw;
  }
  #modal #modBody .btns {
    margin-top: 10vw;
  }
  #modal #modBody .btns a {
    display: flex;
    background-color: #fff;
    border-radius: 60px;
    color: #000;
    justify-content: center;
    align-items: center;
    flex: 1;
    text-decoration: none;
    padding: 0.6em 0;
    gap: 0.5em;
    position: relative;
  }
  #modal #modBody .btns a + a {
    margin-top: 20px;
  }
  #modal #modBody .btns a svg {
    width: 30px;
    height: 30px;
    fill: #000;
    position: absolute;
    left: 5vw;
    top: calc(50% - 15px);
  }
}
@media print, screen and (min-width: 769px) {
  #fv {
    aspect-ratio: 1602/913;
    width: 100%;
    background-color: #000;
    position: relative;
    overflow: hidden;
  }
  #fv:after {
    content: "";
    display: block;
    background: linear-gradient(0deg, rgb(5, 5, 13) 10%, rgba(5, 5, 13, 0) 70%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10vh;
    height: 10dvh;
    z-index: 4;
  }
  #fv #bgWrap {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
  }
  #fv #bgWrap .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
  }
  #fv #bgWrap .bg img {
    width: 100%;
    height: 100%;
  }
  #fv #bgWrap #bg1 {
    left: 50%;
    top: 0;
    z-index: 1;
    opacity: 0;
    width: 200%;
    transition: all 0.6s ease-in;
  }
  #fv #bgWrap #bg2 {
    top: 0;
    right: 0;
    z-index: 2;
    opacity: 0;
    width: 300%;
    transition: right 0.7s ease-in, width 0.7s ease-in, opacity 1.5s ease-out;
  }
  #fv #bgWrap #shibuki {
    top: 0;
    left: 0;
    z-index: 3;
    opacity: 0;
    transform: scale(0);
    transition: transform 1s ease-in-out, opacity 2s ease-out;
    transition-delay: 0.1s;
  }
  #fv #bgWrap.loaded #bg1 {
    left: 0;
    opacity: 1;
    width: 100%;
  }
  #fv #bgWrap.loaded #bg2 {
    right: 0;
    opacity: 1;
    width: 100%;
  }
  #fv #bgWrap.loaded #shibuki {
    opacity: 1;
    transform: scale(1);
  }
  #fv #centerLogo {
    max-width: 1114px;
    width: 68%;
    height: 75%;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 5;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #fv #centerLogo #fvCatch {
    transition: all 1s;
    opacity: 0;
    transition-delay: 1.6s;
    width: 100%;
  }
  #fv #centerLogo #fvCatch img {
    width: 100%;
    height: auto;
  }
  #fv #centerLogo.loaded #fvCatch {
    opacity: 1;
  }
  #fv #parts {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px;
    z-index: 10;
    filter: blur(100px);
    opacity: 0;
    transition: all 1s ease-out;
  }
  #fv #parts.loaded {
    opacity: 1;
    filter: blur(0);
  }
  #fv #parts .fvEntry {
    width: min(294px, 18.3vw);
    position: absolute;
    bottom: 5vw;
    right: 5vw;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 20px 0;
    z-index: 10;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
  #fv #parts .fvEntry .title {
    width: 81%;
    margin: 0 auto;
    color: #fff;
  }
  #fv #parts .fvEntry .title svg {
    aspect-ratio: 275/20;
    width: 100%;
    fill: #fff;
  }
  #fv #parts .fvEntry .title span {
    display: block;
    text-align: center;
    font-size: min(24px, 1.8vw);
  }
  #fv #parts .fvEntry .entryBtns {
    display: block;
    width: 90%;
    margin: 15px auto 0;
    padding-bottom: 0;
  }
  #fv #parts .fvEntry .entryBtns a, #fv #parts .fvEntry .entryBtns button {
    width: 100%;
    font-size: min(20px, 1.3vw);
  }
  #fv #parts .fvEntry .entryBtns a + a, #fv #parts .fvEntry .entryBtns button + a {
    margin-top: 15px;
  }
  #fv #parts .fvDayTime {
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5vw;
    z-index: 9;
  }
  #fv #parts .fvDayTime img {
    width: min(354px, 21vw);
  }
  #fv #parts .mark {
    aspect-ratio: 75/86;
    width: 75px;
    position: absolute;
    top: 1vw;
    left: 1vw;
  }
  #fv #parts .mark img {
    width: 100%;
    height: 100%;
  }
  #workSheet {
    padding-top: 80px;
  }
  #workSheet .inner {
    background: linear-gradient(90deg, rgb(5, 5, 13) 0%, rgb(9, 92, 103) 15%, rgb(9, 92, 103) 85%, rgb(5, 5, 13) 100%);
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 25px 0;
  }
  #workSheet .workSheeetBody p {
    font-size: 16px;
    line-height: 1.5;
  }
  #workSheet .workSheeetBody a {
    display: flex;
    justify-content: center;
    background-color: #fff;
    border-radius: 100px;
    font-size: 20px;
    color: #000;
    max-width: 354px;
    padding: 0.8em 2em;
    gap: 0.5em;
    margin: 20px auto 0;
    text-decoration: none;
    box-shadow: 0 5px 0 #000;
    transition: all 0.4s;
  }
  #workSheet .workSheeetBody a svg {
    aspect-ratio: 1/1;
    width: 1.5em;
    fill: #000;
  }
  #workSheet .workSheeetBody a:hover {
    animation: ptAnime 0.5s forwards;
  }
  .intro {
    max-width: 1140px;
    width: 95%;
    margin: max(-850px, -60vw) auto 0;
  }
  .intro .introP {
    font-size: 18px;
    line-height: 2.6;
    max-width: 880px;
  }
  .conceptText {
    max-width: 1200px;
    margin: 40px auto 0;
    position: relative;
    z-index: 10;
  }
  .conceptText svg {
    aspect-ratio: 534/83;
    width: 538px;
    fill: #fff;
    opacity: 0.1;
    display: block;
    margin: 0 0 0 auto;
  }
  article#concept .bgObj1 {
    max-width: 1562px;
    width: 100%;
  }
  article#concept .inner {
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
    position: relative;
    z-index: 5;
  }
  article#concept .inner .conceptHead {
    border: 2px solid #037e87;
    border-radius: 100px;
    min-height: 105px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
  article#concept .inner .conceptHead h2 {
    font-size: min(38px, 3vw);
    font-weight: 500;
  }
  article#concept .inner .conceptHead h2 span.pcSize {
    font-size: min(32px, 2.4vw);
  }
  article#concept .inner .conceptHead .onLine {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background-color: #2b2b2b;
    border-radius: 50px;
    min-height: 50px;
    padding: 5px 20px;
    position: absolute;
    top: 50px;
    right: 25px;
    transform: translateY(-50%);
  }
  article#concept .inner .conceptHead .onLine svg {
    aspect-ratio: 25/19;
    width: min(25px, 2vw);
    fill: #f7cf07;
  }
  article#concept .inner .conceptHead .onLine span {
    font-size: min(16px, 1.4vw);
  }
  article#concept .inner .read {
    display: block;
    max-width: 850px;
    width: 100%;
    margin: 30px auto 0;
    position: relative;
    z-index: 11;
  }
  article#concept .inner .read p {
    font-size: 16px;
    line-height: 1.87;
  }
  article#concept #volume1 {
    margin-top: 85px;
    overflow: hidden;
  }
  article#concept #volume1 .speakers {
    max-width: 1200px;
    width: 95%;
    margin: 50px auto 0;
    position: relative;
    z-index: 10;
  }
  article#concept #volume1 .speakers .speaker {
    display: flex;
    gap: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px 60px;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
  article#concept #volume1 .speakers .speaker + .speaker {
    margin-top: 25px;
  }
  article#concept #volume1 .speakers .speaker .img {
    width: 36%;
  }
  article#concept #volume1 .speakers .speaker .img img {
    width: 100%;
    height: auto;
    border-radius: 15px;
  }
  article#concept #volume1 .speakers .speaker .txt {
    flex: 1;
  }
  article#concept #volume1 .speakers .speaker .txt .time {
    font-size: 22px;
    color: #2cd9df;
  }
  article#concept #volume1 .speakers .speaker .txt .time .cat {
    display: inline-block;
    padding-left: 1.5em;
    color: #fff;
    font-size: 0.8em;
  }
  article#concept #volume1 .speakers .speaker .txt .title {
    font-size: 35px;
    margin-top: 10px;
    font-weight: 700;
  }
  article#concept #volume1 .speakers .speaker .txt .name {
    font-size: 22px;
    margin-top: 10px;
    font-weight: 700;
  }
  article#concept #volume1 .speakers .speaker .txt .name span {
    font-weight: 400;
    display: inline-block;
    font-size: 0.8em;
    padding-left: 0.5em;
  }
  article#concept #volume1 .speakers .speaker .txt .job {
    font-size: 16px;
    margin-top: 2px;
    position: relative;
  }
  article#concept #volume1 .speakers .speaker .txt .job .logo {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  article#concept #volume1 .speakers .speaker .txt .info {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding-top: 20px;
    margin-top: 25px;
    font-size: 16px;
    line-height: 1.5;
  }
  article#concept #volume1 .speakers .speaker .txt .info strong {
    font-size: 1.1em;
    font-weight: 700;
  }
  article#concept #volume1 .speakers .speaker .txt .info strong + span {
    font-size: 0.9em;
  }
  article#concept #volume2 {
    margin-top: 160px;
  }
  article#concept #volume2 .speakers {
    max-width: 1200px;
    width: 95%;
    margin: 50px auto 0;
    position: relative;
    z-index: 10;
  }
  article#concept #volume2 .speakers .speaker {
    display: flex;
    gap: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px 60px;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
  article#concept #volume2 .speakers .speaker + .speaker {
    margin-top: 25px;
  }
  article#concept #volume2 .speakers .speaker .img {
    width: 28%;
  }
  article#concept #volume2 .speakers .speaker .img img {
    width: 100%;
    height: auto;
    border-radius: 15px;
  }
  article#concept #volume2 .speakers .speaker .txt {
    flex: 1;
  }
  article#concept #volume2 .speakers .speaker .txt .time {
    font-size: 22px;
    color: #2cd9df;
  }
  article#concept #volume2 .speakers .speaker .txt .title {
    font-size: 28px;
    margin-top: 10px;
    font-weight: 700;
  }
  article#concept #volume2 .speakers .speaker .txt .title span.kaminari {
    display: inline-block;
    width: 1em;
    height: 1em;
  }
  article#concept #volume2 .speakers .speaker .txt .title span.kaminari img {
    max-height: 100%;
    width: 100%;
    width: auto;
    height: auto;
  }
  article#concept #volume2 .speakers .speaker .txt .position {
    margin-top: 0;
    font-size: 15px;
    line-height: 1.5;
  }
  article#concept #volume2 .speakers .speaker .txt .name {
    font-size: 22px;
    margin-top: 10px;
    font-weight: 700;
  }
  article#concept #volume2 .speakers .speaker .txt .name span {
    display: inline-block;
    font-size: 0.8em;
    padding-left: 0.5em;
    font-weight: 400;
  }
  article#concept #volume2 .speakers .speaker .txt .job {
    font-size: 15px;
    margin-top: 2px;
  }
  article#concept #volume2 .speakers .speaker .txt .info {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
  }
  article#concept #volume2 .speakers .speaker .txt .opt {
    gap: 15px;
    margin-top: 15px;
    text-align: right;
  }
  article#concept #volume2 .speakers .speaker .txt .opt img {
    max-width: 200px;
    max-height: 70px;
    width: auto;
    height: auto;
    margin-left: 20px;
  }
  article#concept #host {
    display: grid;
    grid-template-columns: 20% 1fr;
    gap: 15px 35px;
    border-top: 2px solid #444;
    border-bottom: 2px solid #444;
    max-width: 1050px;
    width: 100%;
    margin: 50px auto 0;
    padding: 30px 15px;
    background-color: rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
  article#concept #host .img {
    grid-column: 1/2;
    grid-row: 1/3;
  }
  article#concept #host .img img {
    border-radius: 15px;
    width: 100%;
    height: auto;
  }
  article#concept #host .txt {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  article#concept #host .txt .title {
    font-size: 17px;
    font-weight: 500;
  }
  article#concept #host .txt .name {
    font-size: 20px;
    font-weight: 500;
    margin-top: 15px;
  }
  article#concept #host .txt .name span {
    font-size: 0.8em;
  }
  article#concept #host .info {
    grid-column: 2/3;
    grid-row: 2/3;
    font-size: 15px;
  }
  article#concept #volume3 {
    margin-top: 150px;
  }
  article#concept #volume3 .volImg {
    margin-top: 35px;
  }
  article#concept #volume3 .volImg img {
    border-radius: 15px;
    width: 100%;
    height: auto;
  }
  article#concept #volume3 .info {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  article#concept #volume3 .info .topInfo {
    grid-column: 1/3;
    grid-row: 1/2;
    justify-self: center;
    text-align: center;
    padding-bottom: 40px;
  }
  article#concept #volume3 .info .topInfo .time {
    font-size: 26px;
    color: #2cd9df;
  }
  article#concept #volume3 .info .topInfo .title {
    font-size: 25px;
    font-weight: 500;
    margin-top: 20px;
  }
  article#concept #volume3 .info .topInfo .title span {
    font-size: 20px;
  }
  article#concept #volume3 .info .detail {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  article#concept #volume3 .info .detail p {
    font-size: 16px;
    line-height: 1.6;
  }
  article#concept #volume3 .info .special {
    grid-column: 2/3;
    grid-row: 2/3;
    padding-left: 45px;
  }
  article#concept #volume3 .info .special .gridInner {
    padding: 25px 35px;
    display: flex;
    gap: 30px;
    background-color: rgba(59, 59, 59, 0.7);
    border-radius: 10px;
    font-size: 17px;
  }
  article#concept .entry {
    border-radius: 20px;
    display: grid;
    padding: 35px 70px;
    max-width: 1200px;
    width: 95%;
    margin: 140px auto 0;
  }
  article#concept .entry .cfLogo {
    grid-column: 1/2;
    grid-row: 1/3;
  }
  article#concept .entry .cfLogo .logoWrap {
    background-color: #06060e;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 216/120;
    width: min(260px, 20vw);
  }
  article#concept .entry .cfLogo .logoWrap img {
    aspect-ratio: 75/86;
    width: min(75px, 4vw);
  }
  article#concept .entry .title {
    grid-column: 2/3;
    grid-row: 1/2;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  article#concept .entry .title svg {
    aspect-ratio: 260/22;
    width: min(315px, 25vw);
    fill: #1e1e26;
  }
  article#concept .entry .title span {
    font-size: min(24px, 2vw);
    line-height: 1;
    color: #1e1e26;
    padding-left: 0.5em;
  }
  article#concept .entry .entryBtns {
    grid-column: 2/3;
    grid-row: 2/3;
    padding-top: 24px;
  }
  article#concept .entry .entryBtns span.memo {
    color: #007d80;
    font-size: 16px;
  }
  article#concept #students {
    padding: 200px 0 160px;
  }
  article#concept #students .inner {
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
    position: relative;
  }
  article#concept #students .inner .engTitle {
    aspect-ratio: 580/83;
    width: 580px;
    fill: #fff;
    opacity: 0.1;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
  }
  article#concept #students .inner .studentBody {
    display: flex;
    padding-top: 50px;
    position: relative;
  }
  article#concept #students .inner .studentBody .jaTitle {
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  article#concept #students .inner .studentBody .jaTitle h2 {
    font-size: 45px;
    font-weight: 400;
    position: relative;
    z-index: 10;
  }
  article#concept #students .inner .studentBody .jaTitle h2:before {
    content: "";
    display: block;
    width: 100%;
    height: 40px;
    position: absolute;
    z-index: -1;
    bottom: -5px;
    left: 0;
    background-color: #000;
  }
  article#concept #students .inner .studentBody .txt {
    flex: 1;
    position: relative;
  }
  article#concept #students .inner .studentBody .txt:after {
    content: "";
    display: block;
    background-image: url(../images/for_students.webp);
    background-size: 100% auto;
    width: 112px;
    aspect-ratio: 1/1;
    position: absolute;
    top: -40px;
    right: -40px;
  }
  article#concept #students .inner .studentBody .txt h3 {
    font-size: 30px;
    font-weight: 500;
  }
  article#concept #students .inner .studentBody .txt p {
    font-size: 17px;
    line-height: 1.76;
    margin-top: 20px;
  }
  article#concept #students .inner .studentBody .pc {
    width: 320px;
  }
  article#concept #students .inner .entry {
    display: flex;
    border-radius: 20px;
    background-color: rgba(38, 56, 61, 0.8);
    padding: 0;
    margin-top: 40px;
  }
  article#concept #students .inner .entry .left {
    flex: 1;
    background-color: #0b0f19;
    position: relative;
    border-radius: 20px 0 0 20px;
    height: 150px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0 15px 0 30px;
  }
  article#concept #students .inner .entry .left:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 38px solid #0b0f19;
    border-top: 75px solid transparent;
    border-bottom: 75px solid transparent;
    position: absolute;
    right: -37px;
    top: 0;
  }
  article#concept #students .inner .entry .left .title {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
  }
  article#concept #students .inner .entry .left .title span {
    color: #f7cf07;
  }
  article#concept #students .inner .entry .left ul {
    list-style: none;
    display: flex;
    gap: 13px;
    margin-top: 20px;
  }
  article#concept #students .inner .entry .left ul li {
    background-color: #ccc;
    font-size: min(19px, 1.7vw);
    border-radius: 5px;
    flex: 1;
    text-align: center;
    padding: 10px 5px;
    color: #000;
    font-weight: 500;
  }
  article#concept #students .inner .entry .right {
    flex: 1;
  }
  article#concept #students .inner .entry .right .entryBtns {
    justify-content: center;
    align-items: center;
    padding: 0;
    height: 100%;
  }
  article#concept #students .inner .entry .right .memo {
    color: #fff;
    bottom: 10px;
  }
  @keyframes homeFlow {
    0% {
      transform: scale(1) rotate(0deg);
      filter: blur(0);
    }
    50% {
      transform: scale(1.1, 0.9) rotate(1deg);
      filter: blur(20px);
    }
    100% {
      transform: scale(1) rotate(0deg);
      filter: blur(0);
    }
  }
  #info {
    margin-top: 80px;
  }
  #info .inner {
    max-width: 845px;
    width: 95%;
    margin: 0 auto;
  }
  #info .inner .sectHead {
    position: relative;
  }
  #info .inner .sectHead .engTitle {
    aspect-ratio: 300/98;
    width: 185px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    fill: #e7e7e7;
  }
  #info .inner .sectHead h2 {
    font-size: 28px;
    color: #585858;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 5;
    line-height: 1;
    padding-top: 50px;
  }
  #info .inner .infoBody {
    margin-top: 30px;
  }
  #info .inner .infoBody dl {
    display: grid;
    grid-template-columns: 155px 1fr;
  }
  #info .inner .infoBody dl dt {
    grid-column: 1/2;
    font-size: 20px;
    font-weight: 700;
    padding: 20px 5px 0;
    border-bottom: 1px solid #dadada;
  }
  #info .inner .infoBody dl dd {
    grid-column: 2/3;
    font-size: 17px;
    padding: 20px 0;
    border-bottom: 1px solid #dadada;
  }
  #info .inner .infoBody dl dd .copName {
    display: inline-block;
    white-space: nowrap;
  }
  #info .inner .infoBody .memo {
    margin-top: 10px;
    font-size: 14px;
  }
  #access {
    margin-top: 100px;
  }
  #access .inner {
    max-width: 970px;
    width: 95%;
    margin: 0 auto;
  }
  #access .inner .sectHead {
    position: relative;
  }
  #access .inner .sectHead .engTitle {
    aspect-ratio: 311/61;
    width: 311px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    fill: #e7e7e7;
  }
  #access .inner .sectHead h2 {
    font-size: 28px;
    color: #585858;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 5;
    line-height: 1;
    padding-top: 50px;
  }
  #access .inner .accessBody #gMap {
    width: 100%;
    margin-top: 30px;
  }
  #access .inner .accessBody #gMap iframe#googleMap {
    width: 100%;
    height: 335px;
  }
  #access .inner .accessBody .address {
    margin-top: 45px;
    font-size: 16px;
  }
  #access .inner .accessBody .accessInfo {
    display: flex;
    margin-top: 20px;
  }
  #access .inner .accessBody .accessInfo > div {
    flex: 1;
    font-size: 16px;
    line-height: 1.6;
  }
  #access .inner .accessBody .accessInfo > div .title {
    font-weight: 700;
  }
  #access .inner .accessBody .accessInfo > div ul {
    margin-top: 10px;
    padding-left: 1em;
  }
  #access .inner .accessBody .accessInfo > div.subway {
    padding-left: 50px;
  }
  #faq {
    background-color: #f3f3f3;
    margin-top: 90px;
    padding: 85px 0 110px;
  }
  #faq .inner {
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
  }
  #faq .inner h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
  }
  #faq .inner .faqBody {
    background-color: #fff;
    border-radius: 12px;
    padding: 60px 80px;
    margin-top: 40px;
  }
  #faq .inner .faqBody dl .item {
    padding-bottom: 40px;
    border-bottom: 1px solid #ccc;
    line-height: 1.6;
  }
  #faq .inner .faqBody dl .item + .item {
    margin-top: 40px;
  }
  #faq .inner .faqBody dl .item dt {
    font-size: 21px;
    font-weight: 700;
  }
  #faq .inner .faqBody dl .item dd {
    font-size: 16px;
    margin-top: 15px;
  }
  #modal .modLigo {
    position: absolute;
    width: 75px;
    height: 86px;
    position: absolute;
    top: 4.5vw;
    left: 5vw;
  }
  #modal .modLigo svg {
    width: 75px;
    height: 86px;
  }
  #modal #modBody {
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px);
    border-radius: 20px;
    padding: 60px 100px;
    max-width: 900px;
    width: 90%;
    position: relative;
  }
  #modal #modBody .modClose {
    width: 50px;
    height: 50px;
    border: none;
    outline: none;
    background-color: transparent;
    position: absolute;
    top: -60px;
    right: -60px;
    cursor: pointer;
  }
  #modal #modBody .modClose svg {
    width: 50px;
    height: 50px;
    fill: #fff;
  }
  #modal #modBody .title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #modal #modBody .title svg {
    width: 238px;
    height: 16px;
    fill: #fff;
  }
  #modal #modBody .title span {
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    margin-top: 10px;
  }
  #modal #modBody .memo {
    color: #fff;
    text-align: center;
    font-size: 16px;
    margin-top: 40px;
  }
  #modal #modBody .btns {
    display: flex;
    gap: 20px;
    margin-top: 40px;
  }
  #modal #modBody .btns a {
    display: flex;
    background-color: #fff;
    border-radius: 60px;
    color: #000;
    justify-content: center;
    align-items: center;
    flex: 1;
    text-decoration: none;
    padding: 1em 0;
    gap: 0.5em;
  }
  #modal #modBody .btns a svg {
    width: 30px;
    height: 30px;
    fill: #000;
  }
  #modal #modBody .btns a:hover {
    animation: ptAnime 0.5s forwards;
  }
  @keyframes ptAnime {
    0%, 100% {
      filter: blur(0);
    }
    60% {
      filter: blur(5px);
    }
  }
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  article#concept #volume3 .info {
    display: block;
  }
  article#concept #volume3 .info .special {
    padding: 0;
    margin-top: 5vw;
  }
  article#concept #students .inner .studentBody {
    flex-wrap: wrap;
  }
  article#concept #students .inner .studentBody .jaTitle {
    width: 100%;
  }
  article#concept #students .inner .studentBody .txt {
    margin-top: 5vw;
  }
  article#concept #students .inner .studentBody .txt:after {
    width: 90px;
  }
  article#concept #students .inner .studentBody .pc {
    margin-top: 15vw;
  }
  @keyframes homeFlow {
    0% {
      transform: scale(1) rotate(0deg);
      filter: blur(0);
    }
    50% {
      transform: scale(1.1, 0.9) rotate(1deg);
      filter: blur(20px);
    }
    100% {
      transform: scale(1) rotate(0deg);
      filter: blur(0);
    }
  }
  #faq {
    background-color: #f3f3f3;
  }
}
@media print {
  @keyframes homeFlow {
    0% {
      transform: scale(1) rotate(0deg);
      filter: blur(0);
    }
    50% {
      transform: scale(1.1, 0.9) rotate(1deg);
      filter: blur(20px);
    }
    100% {
      transform: scale(1) rotate(0deg);
      filter: blur(0);
    }
  }
  #faq {
    background-color: #f3f3f3;
  }
}
/*# sourceMappingURL=map/home.css.map */
