@charset "UTF-8";
/* CSS Document */
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

body {
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
}

/* all */
h1, h2, h3, h4, h5, p, dt, dd, li, th, td, address, strong, em, table, dl, ul, ol, img,
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  padding: 0;
  margin: 0;
  background: transparent;
}

/* font */
h1, h2, h3, h4, h5, p, dt, dd, li, th, td, a, address, strong, em, form, input, textarea, select, submit,
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  color: inherit;
  line-height: inherit;
  font-family: inherit;
  font-size: inherit;
}

/* indivisual */
a {
  border: none;
  color: inherit;
  text-decoration: underline;
  word-wrap: break-word;
}

a:hover {
  text-decoration: none;
}

address, em {
  font-style: normal;
}

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

img {
  display: block;
  border: none;
}

.debug {
  height: auto;
  overflow-y: auto;
}

html {
  scroll-behavior: smooth;
}

body {
  height: 100%;
  overflow-x: hidden;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1;
  text-align: justify;
  background: #FFF;
  position: relative;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

@media only screen and (min-width: 960px) {
  .cm_flex {
    display: flex;
  }
}

.cm_link {
  display: block;
  width: 15rem;
  height: 3.5rem;
  overflow: hidden;
  border: 1px solid #1B5D93;
  background: #FFF;
  border-radius: 1.75rem;
  position: relative;
}
.cm_link:hover .bg::before {
  transform: translateX(0);
}
.cm_link:hover .bg span {
  color: #FFF;
}
.cm_link.link::before {
  background: url(../img/link.svg) center/contain no-repeat;
}
.cm_link::before {
  width: 0.75rem;
  height: 0.75rem;
  content: "";
  background: url(../img/arw.svg) center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 1.875rem;
  transform: translate(50%, -50%);
  z-index: 2;
}
.cm_link::after {
  width: 2.625rem;
  height: 2.625rem;
  content: "";
  background: #1B5D93;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 1.875rem;
  transition: 0.25s;
  transform: translate(50%, -50%);
  z-index: 1;
}
.cm_link .bg::before {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1.75rem;
  content: "";
  background-color: #1B5D93;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateX(-100%);
}
.cm_link .bg span {
  color: #1B5D93;
  font-weight: 900;
  letter-spacing: 0.1em;
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translateY(-50%);
}

.more {
  display: block;
  width: 9rem;
  height: 2.25rem;
  overflow: hidden;
  list-style: 1;
  margin: 1.5rem auto 0;
  border: 1px solid #FFF;
  border-radius: 1.1875rem;
  position: relative;
}
.more:hover::before, .more:hover::after {
  background: #1B5D93;
  transition: 0.25s 0.125s;
}
.more:hover .bg::before {
  transform: translateX(0);
}
.more:hover .bg span {
  color: #1B5D93;
}
.more::before {
  width: 0.75rem;
  height: 0.0625rem;
  content: "";
  background: #FFF;
  position: absolute;
  right: 0.75rem;
  top: 50%;
  z-index: 2;
  transition: 0s;
  transform: translateY(-50%) rotate(90deg);
}
.more::after {
  width: 0.75rem;
  height: 0.0625rem;
  content: "";
  background: #FFF;
  position: absolute;
  right: 0.75rem;
  top: 50%;
  z-index: 2;
  transition: 0s;
  transform: translateY(-50%);
}
.more .bg::before {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1.1875rem;
  content: "";
  background-color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateX(-100%);
}
.more .bg span {
  color: #FFF;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  position: absolute;
  top: calc(50% - 1px);
  left: 1.125rem;
  transform: translateY(-50%);
}

.check {
  pointer-events: none;
}
.check::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid red;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.check::after {
  content: "";
  display: block;
  color: #fff;
  padding: 0.25em;
  background: red;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transform: translateY(-100%);
}

.header {
  height: 8.75rem;
  position: relative;
  z-index: 9;
  /*
  @include pc{
    transition: 1s;
    opacity: 0;
    visibility: hidden;

    &.show{
      opacity: 1;
      visibility: visible;
    }
  }
  */
}
@media only screen and (max-width: 959px) {
  .header {
    height: 5rem;
  }
}
.header .logo {
  height: 4.25rem;
  position: absolute;
  left: 4.4375vw;
  top: 3.25rem;
}
@media only screen and (max-width: 1119px) {
  .header .logo {
    left: 2rem;
    height: 4.25vw;
  }
}
@media only screen and (max-width: 959px) {
  .header .logo {
    height: 2.75rem;
    left: 1.75rem;
    top: 2.375rem;
    transform: translateY(-50%);
  }
}
@media only screen and (max-width: 959px) {
  .header nav {
    position: fixed;
    width: 50vw;
    max-width: 16rem;
    z-index: 9;
    transition: 0.375s;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100vh;
    background: linear-gradient(90deg, rgba(98, 172, 185, 0.9) 0%, rgba(27, 93, 147, 0.9) 100%);
    top: 0;
    right: 0;
    padding: 7.875rem 2rem;
  }
}
.header nav.show {
  opacity: 1;
  visibility: visible;
}
.header nav .nav {
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 960px) {
  .header nav .nav {
    gap: 0 2vw;
    position: absolute;
    top: 5.8125rem;
    transform: translateY(-50%);
    right: 3.4375vw;
  }
}
@media only screen and (max-width: 959px) {
  .header nav .nav {
    gap: 3rem 0;
    flex-direction: column;
    color: #FFF;
    text-align: right;
    align-items: flex-end;
  }
}
@media only screen and (max-width: 959px) {
  .header nav .nav li {
    text-align: center;
  }
}
@media only screen and (min-width: 960px) {
  .header nav .nav li:first-child {
    display: none;
  }
}
.header nav .nav li a {
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  letter-spacing: 0.15em;
  transition: 0.5s;
}
@media only screen and (max-width: 959px) {
  .header nav .nav li a {
    font-size: 1.5rem;
  }
}
.header nav .nav li a:hover {
  opacity: 0.5;
}
.header nav .nav li a .jp {
  display: block;
  color: #FFF;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-align: right;
  margin-top: 0.5rem;
}
@media only screen and (min-width: 960px) {
  .header nav .nav li a .jp {
    display: none;
  }
}
.header .menu {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  position: fixed;
  top: 2.5rem;
  right: 2rem;
  cursor: pointer;
  z-index: 10;
  transform: translateY(-50%);
}
@media only screen and (max-width: 959px) {
  .header .menu {
    display: block;
  }
}
.header .menu div {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #1B5D93;
  transition: 0.25s;
}
.header .menu .bar {
  top: calc(50% - 0.4375rem);
}
.header .menu .bar2 {
  bottom: calc(50% - 0.4375rem);
}
.header .menu.open div {
  background: #FFF;
}
.header .menu.open .bar {
  top: calc(50% - 1px);
  transform: rotate(315deg);
}
.header .menu.open .bar2 {
  bottom: calc(50% - 1px);
  transform: rotate(-315deg);
}

footer {
  padding: 4rem;
}
footer .copy {
  font-size: 0.75rem;
  font-weight: bold;
  text-align: center;
  margin-top: 1.5rem;
}
footer .logo {
  height: 4.25rem;
  margin: 0 auto 0;
}
.slide_loop {
  width: 100%;
  position: relative;
}
.slide_loop.center {
  overflow: visible;
}
.slide_loop.center .mask {
  overflow: visible;
}
.slide_loop.center .mask .image {
  display: flex;
  justify-content: flex-start;
  position: static;
}
.slide_loop.center .mask .image li {
  float: none;
}
.slide_loop.center .prev, .slide_loop.center .next {
  display: none;
}
.slide_loop.center .thum {
  display: none;
}
.slide_loop .prev, .slide_loop .next {
  cursor: pointer;
  position: absolute;
  z-index: 2;
  transition: 0.375s;
  transform: translateY(-50%);
  opacity: 1;
  visibility: visible;
}
.slide_loop .prev:hover, .slide_loop .next:hover {
  opacity: 0.5;
}
@media screen and (max-width: 980px) {
  .slide_loop .prev:hover, .slide_loop .next:hover {
    opacity: 1;
  }
}
.slide_loop .prev.hide, .slide_loop .next.hide {
  opacity: 0;
  visibility: hidden;
}
.slide_loop .mask {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.slide_loop .mask .image {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.slide_loop .mask .image.active {
  transition: 0.5s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}
.slide_loop .thum {
  display: flex;
  justify-content: center;
  margin: 2rem 0 0;
}
.slide_loop .thum li {
  cursor: pointer;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.5rem;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .slide_loop .thum li {
    width: 0.5rem;
    height: 0.5rem;
    margin: 0 0.5rem;
  }
}
.slide_loop .thum li.center span {
  background: #5D9DC5;
}
.slide_loop .thum li.center span::after {
  opacity: 1;
}
.slide_loop .thum li span {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  font-size: 0.5rem;
  background: transparent;
  border: 1px solid #5D9DC5;
  border-radius: 0.5em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
@media screen and (max-width: 1199px) {
  .slide_loop .thum li span {
    width: 0.5rem;
    height: 0.5rem;
    font-size: 0.5rem;
  }
}

#index {
  overflow: hidden;
}
#index h2 {
  font-family: "Oswald", sans-serif;
  font-weight: normal;
  font-style: italic;
  letter-spacing: 0.36em;
}
#index .fs20 {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 2;
  letter-spacing: 0.05em;
}
#index .gradation {
  display: inline-block;
  background: linear-gradient(0deg, rgb(98, 172, 185) 0%, rgb(27, 93, 147) 100%);
  background: -webkit-linear-gradient(0deg, rgb(98, 172, 185) 0%, rgb(27, 93, 147) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#index #vision {
  position: relative;
}
@media only screen and (min-width: 960px) {
  #index #vision {
    width: 100%;
    height: calc(100vh - 11.75rem);
  }
}
@media only screen and (min-width: 960px) {
  #index #vision .image {
    width: 84.25vw;
    height: 100%;
    -webkit-mask-image: url(../img/mask.svg);
    mask-image: url(../img/mask.svg);
    -webkit-mask-size: cover;
    mask-size: cover;
    position: absolute;
    left: 58vw;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
@media only screen and (max-width: 959px) {
  #index #vision .image {
    width: calc(100% - 2rem);
    height: calc(100vw - 2rem);
    margin-left: auto;
    -webkit-mask-image: url(../img/_mask.svg);
    mask-image: url(../img/_mask.svg);
    -webkit-mask-size: cover;
    mask-size: cover;
  }
}
#index #vision .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 960px) {
  #index #vision .box {
    position: absolute;
    left: 10vw;
    bottom: 4.5vw;
  }
}
@media only screen and (max-width: 959px) {
  #index #vision .box {
    margin-top: -7.5rem;
    padding: 0 2rem 0;
    position: relative;
    z-index: 2;
  }
}
#index #vision h2 {
  color: #62ACB9;
  font-weight: 300;
}
#index #vision .catch {
  max-width: 36.875rem;
  margin-top: 1.25rem;
  transform: translateX(-0.625em);
}
@media only screen and (max-width: 959px) {
  #index #vision .catch {
    max-width: 45.3846153846rem;
  }
}
#index #vision .txt {
  width: 100%;
  margin-top: 1.75rem;
}
@media only screen and (min-width: 960px) {
  #index #vision .txt {
    font-size: 1.125rem;
    transform: translateX(-0.375em);
  }
  #index #vision .txt .line {
    display: inline-block;
    letter-spacing: 0.05em;
    background-color: #FFF;
    padding: 0.25em;
    margin-top: 0.5em;
    position: relative;
  }
  #index #vision .txt .line:first-child {
    margin-top: 0;
  }
  #index #vision .txt .line span {
    display: inline-block;
    transform: translateY(-1px);
  }
}
@media only screen and (max-width: 959px) {
  #index #vision .txt {
    line-height: 2;
    margin: calc(2.5rem - 0.5em) 0 -0.5em;
  }
  #index #vision .txt br {
    display: none;
  }
}
#index #mission {
  max-width: 980px;
  margin: 6rem auto 0;
}
@media only screen and (max-width: 959px) {
  #index #mission {
    background: linear-gradient(90deg, rgba(98, 172, 185, 0.1) 0%, rgba(27, 93, 147, 0.1) 100%);
    margin-top: 4rem;
    padding: 4rem 2rem 3rem;
  }
}
#index #mission h2 {
  color: #62ACB9;
  font-size: 1.25rem;
  font-weight: 300;
}
@media only screen and (max-width: 959px) {
  #index #mission h2 {
    font-size: 1rem;
  }
}
#index #mission .read {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.375;
  margin: calc(2rem - 0.1875em) 0 -0.1875em;
}
@media only screen and (max-width: 959px) {
  #index #mission .read {
    font-size: 2.25rem;
  }
}
#index #mission .fs20 {
  margin: calc(2.5rem - 0.5em) 0 -0.5em;
}
@media only screen and (max-width: 959px) {
  #index #mission .fs20 {
    font-size: 1.125rem;
    font-weight: normal;
    margin: calc(2rem - 0.5em) 0 -0.5em;
  }
}
#index #practice {
  position: relative;
}
@media only screen and (min-width: 960px) {
  #index #practice {
    margin: 4rem 5rem 0 0;
  }
  #index #practice .inner {
    padding: 5rem 10rem 5rem 0;
    position: relative;
  }
}
@media only screen and (max-width: 959px) {
  #index #practice {
    display: block;
    height: auto;
    background: linear-gradient(90deg, rgba(98, 172, 185, 0.1) 0%, rgba(27, 93, 147, 0.1) 100%);
    margin: 0;
    padding: 0;
  }
}
#index #practice::after {
  width: 100%;
  height: 100%;
  content: "";
  background: url(../img/bg.svg) right center/auto 100% no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  opacity: 0.5;
  /*
  @media screen and (max-width: 1400px){
      left: 30vw;
  }
  */
}
@media only screen and (max-width: 959px) {
  #index #practice::after {
    display: none;
  }
}
@media only screen and (min-width: 960px) {
  #index #practice .image {
    width: 66.3157894737vw;
    height: 100%;
    position: absolute;
    left: 30vw;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
}
@media only screen and (max-width: 959px) {
  #index #practice .image {
    height: 56.25vw;
    background: url(../img/_01.jpg) center/cover no-repeat;
  }
}
#index #practice .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 960px) {
  #index #practice .box {
    margin-left: 50vw;
  }
}
@media only screen and (max-width: 959px) {
  #index #practice .box {
    padding: 3rem 2rem 4rem;
  }
}
#index #practice h2 {
  color: #1B5D93;
}
#index #practice .read {
  margin-top: 1.25rem;
}
#index #practice .read img {
  max-width: 34.9375rem;
}
#index #practice .txt {
  max-width: 560px;
  letter-spacing: 0.05em;
  line-height: 2;
  margin: calc(2.5rem - 0.5em) 0 -0.5em;
}
@media only screen and (max-width: 959px) {
  #index #practice .txt {
    margin: calc(2rem - 0.5em) 0 -0.5em;
  }
}
#index #practice .cm_link {
  margin-top: 3rem;
}
@media only screen and (max-width: 959px) {
  #index #practice .cm_link {
    margin: 3rem auto 0;
  }
}
#index #situation {
  max-width: 960px;
  width: calc(100% - 4rem);
  margin: 4rem auto 0;
  padding: 2rem;
  position: relative;
}
@media only screen and (max-width: 959px) {
  #index #situation {
    padding: 0;
  }
}
#index #situation::before {
  width: 1.75rem;
  height: 1.75rem;
  content: "";
  background: url(../img/p.svg) center/contain no-repeat;
  position: absolute;
  top: -0.875rem;
  left: -0.875rem;
}
@media only screen and (max-width: 959px) {
  #index #situation::before {
    display: none;
  }
}
#index #situation::after {
  width: 1.75rem;
  height: 1.75rem;
  content: "";
  background: url(../img/p.svg) center/contain no-repeat;
  position: absolute;
  top: -0.875rem;
  right: -0.875rem;
}
@media only screen and (max-width: 959px) {
  #index #situation::after {
    display: none;
  }
}
#index #situation div::before {
  width: 1.75rem;
  height: 1.75rem;
  content: "";
  background: url(../img/p.svg) center/contain no-repeat;
  position: absolute;
  bottom: -0.875rem;
  left: -0.875rem;
}
@media only screen and (max-width: 959px) {
  #index #situation div::before {
    display: none;
  }
}
#index #situation div::after {
  width: 1.75rem;
  height: 1.75rem;
  content: "";
  background: url(../img/p.svg) center/contain no-repeat;
  position: absolute;
  bottom: -0.875rem;
  right: -0.875rem;
}
@media only screen and (max-width: 959px) {
  #index #situation div::after {
    display: none;
  }
}
#index #situation h3 {
  display: inline-block;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: #1B5D93;
  position: relative;
}
#index #situation h3::after {
  width: 4rem;
  height: 1px;
  content: "";
  background: #1B5D93;
  position: absolute;
  top: 50%;
  left: 102%;
  transform: translateY(-50%);
}
#index #situation p {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  color: #1B5D93;
  margin: calc(1.5rem - 0.375em) 0 -0.375em;
}
@media only screen and (max-width: 959px) {
  #index .spBg {
    background: url(../img/_02.jpg) top center/100% no-repeat;
  }
}
#index #value {
  color: #FFF;
  font-weight: 900;
  margin-top: 9.4375rem;
  padding: 9.875rem 2em 3rem;
  background: url(../img/02.jpg) center/cover no-repeat;
  position: relative;
}
@media only screen and (max-width: 959px) {
  #index #value {
    margin-top: 6.125rem;
    padding: 7.375rem 2em 3rem;
    background: none;
  }
  #index #value::before {
    width: 100%;
    height: 175.78125vw;
    content: "";
    background: url(../img/_02.jpg) center/cover no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
  }
}
#index #value::after {
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, #62acb9 0%, #1b5d93 100%);
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
}
#index #value h2 {
  width: 100%;
  font-style: normal;
  font-weight: 300;
  font-size: 5rem;
  letter-spacing: 0.4em;
  color: #1B5D93;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}
@media only screen and (max-width: 959px) {
  #index #value h2 {
    font-size: 3rem;
  }
}
#index #value .inner {
  max-width: 960px;
  margin: 0 auto 0;
  position: relative;
  z-index: 2;
}
#index #value .read {
  font-size: 3rem;
  letter-spacing: 0.1em;
  text-align: center;
}
@media only screen and (max-width: 959px) {
  #index #value .read {
    font-size: 1.75rem;
  }
}
#index #value .read strong {
  display: block;
  font-size: 6rem;
  padding: 1.5rem 0;
}
@media only screen and (max-width: 959px) {
  #index #value .read strong {
    font-size: 4rem;
    padding: 1rem 0;
  }
}
#index #value .read strong span {
  font-size: 5rem;
}
@media only screen and (max-width: 959px) {
  #index #value .read strong span {
    font-size: 3rem;
  }
}
#index #value .fs20 {
  margin: calc(3.25rem - 0.5em) 0 -0.5em;
}
@media only screen and (max-width: 959px) {
  #index #value .fs20 {
    margin: calc(3rem - 0.5em) 0 -0.5em;
  }
}
#index #value h3 {
  width: 19.6875rem;
  height: 6.125rem;
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
  padding-top: 1.3125rem;
  margin: 5rem auto 0;
  background: url(../img/03.svg) center/cover no-repeat;
}
@media only screen and (max-width: 959px) {
  #index #value h3 {
    width: 15rem;
    height: 4.6875rem;
    font-size: 1.375rem;
    padding-top: 0.875rem;
    margin-top: 4rem;
  }
}
#index #value h3 + .read {
  line-height: 1.375;
  margin: calc(1rem - 0.1875em) 0 -0.1875em;
}
#index #value .txt {
  letter-spacing: 0.05em;
  line-height: 1.75;
  margin: calc(2rem - 0.375em) 0 -0.375em;
}
#index #instructor {
  background: linear-gradient(90deg, #62acb9 0%, #1b5d93 100%);
}
@media only screen and (max-width: 959px) {
  #index #instructor {
    background: none;
    position: relative;
  }
  #index #instructor::after {
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(90deg, #62acb9 0%, #1b5d93 100%);
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode: multiply;
  }
}
#index #instructor .image {
  display: flex;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
#index #instructor .image h2 {
  width: 100%;
  font-style: normal;
  font-weight: 300;
  font-size: 6.75rem;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  text-align: center;
  position: absolute;
  bottom: -0.75rem;
  left: 0;
  z-index: 2;
}
@media only screen and (max-width: 959px) {
  #index #instructor .image h2 {
    color: #FFF;
    font-size: 3rem;
    position: static;
    background: none;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: #FFF;
  }
}
#index #instructor .image img {
  width: 50%;
}
@media only screen and (max-width: 959px) {
  #index #instructor .image img {
    display: none;
  }
}
#index #instructor h3 {
  max-width: 1280px;
  font-size: 2rem;
  font-weight: 900;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.5;
  padding: 0.75em 2rem;
  margin: 4.375rem auto 0;
  background: url(../img/06.svg) center/auto 100% no-repeat;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 959px) {
  #index #instructor h3 {
    font-size: 1.5rem;
    color: #FFF;
    background: none;
    padding: 0;
    margin-top: 2.5rem;
  }
}
@media only screen and (max-width: 959px) {
  #index #instructor h3 span {
    background: none;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: #FFF;
  }
}
#index #instructor .cm_flex {
  max-width: 1120px;
  width: calc(100% - 4rem);
  margin: 0 auto;
}
@media only screen and (min-width: 960px) {
  #index #instructor .cm_flex {
    justify-content: space-between;
    gap: 0 7.8125vw;
  }
}
@media only screen and (max-width: 959px) {
  #index #instructor .cm_flex {
    width: 100%;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
  }
}
#index #instructor .cm_flex dl {
  color: #FFF;
  margin-top: 4rem;
  position: relative;
}
@media only screen and (max-width: 959px) {
  #index #instructor .cm_flex dl {
    padding: 0 2rem;
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 959px) {
  #index #instructor .cm_flex dl:first-of-type {
    margin-bottom: 5rem;
  }
}
#index #instructor .cm_flex dl:first-of-type .roll {
  letter-spacing: -0.025em;
}
#index #instructor .cm_flex dl::after {
  width: 1rem;
  height: 17.5rem;
  content: "";
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: -18.5rem;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 959px) {
  #index #instructor .cm_flex dl::after {
    display: none;
  }
}
@media only screen and (min-width: 960px) {
  #index #instructor .cm_flex dl {
    max-width: 31rem;
  }
}
#index #instructor .cm_flex dl:last-child dd {
  line-height: 2.25;
  margin: calc(2rem - 0.625em) 0 -0.625em;
}
@media only screen and (max-width: 959px) {
  #index #instructor .cm_flex dl:last-child dd {
    line-height: 1.5;
    margin: calc(2rem - 0.25em) 0 -0.25em;
  }
}
#index #instructor .cm_flex dl:last-child .fs14 {
  line-height: 1.75;
  margin: calc(2rem - 0.375em) 0 -0.375em;
}
#index #instructor .cm_flex dl dt {
  font-size: 3rem;
  letter-spacing: 0.1em;
  text-align: center;
}
#index #instructor .cm_flex dl dt .en {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  margin-top: 1rem;
}
#index #instructor .cm_flex dl dd {
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.5;
  margin: calc(2rem - 0.25em) 0 -0.25em;
  position: relative;
}
#index #instructor .cm_flex dl dd.fs14 {
  font-weight: normal;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  margin: calc(2rem - 0.375em) 0 -0.375em;
}
@media only screen and (min-width: 960px) {
  #index #instructor .cm_flex dl dd.more_parent {
    padding-bottom: 3.75rem;
    transition: 0.25s;
  }
  #index #instructor .cm_flex dl dd.more_parent.hide {
    padding-bottom: 0;
  }
  #index #instructor .cm_flex dl dd.more_parent.hide .more {
    opacity: 0;
    visibility: hidden;
  }
  #index #instructor .cm_flex dl dd.more_parent .more {
    position: absolute;
    bottom: 0;
    right: 50%;
    transition: 0.25s;
    transform: translateX(50%);
    opacity: 1;
    visibility: visible;
  }
  #index #instructor .cm_flex dl dd.more_parent .more_text {
    display: none;
  }
}
@media only screen and (max-width: 959px) {
  #index #instructor .cm_flex dl dd .more {
    display: none;
  }
}
#index #instructor .cm_flex dl dd .web_link {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 2rem 0 0;
  padding-right: 1.25rem;
}
#index #instructor .cm_flex dl dd .web_link:hover {
  text-decoration: underline;
}
#index #instructor .cm_flex dl dd .web_link:after {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  background: url(../img/link.svg) center/cover no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
#index #instructor .slide_loop {
  margin-top: 8rem;
}
@media only screen and (max-width: 959px) {
  #index #instructor .slide_loop {
    z-index: 1;
  }
}
#index #instructor .slide_loop .mask {
  background: #FFF;
}
#index #instructor .slide_loop .mask .image {
  display: flex;
  margin-left: -4.6875vw;
}
#index #instructor .slide_loop .mask .image li {
  width: 32.125rem;
  flex-shrink: 0;
}
@media only screen and (min-width: 960px) {
  #index #instructor .slide_loop .mask .image li div {
    margin-left: -14.5914396887%;
  }
}
@media only screen and (max-width: 959px) {
  #index #instructor .slide_loop .mask .image li div {
    margin-right: -14.5914396887%;
  }
}
#index #instructor .slide_loop .mask .image li div img {
  display: block;
  width: 100%;
}
#index #instructor .imgList {
  height: 18.75vw;
  margin-top: 8rem;
  background: url(../img/10.jpg) center/116.5vw no-repeat;
}
@media only screen and (max-width: 959px) {
  #index #instructor .imgList {
    height: 54.6875vw;
    background: url(../img/_10.jpg) center/cover no-repeat;
    position: relative;
    z-index: 2;
  }
}
#index #feature {
  max-width: 1120px;
  width: calc(100% - 4rem);
  padding: 5rem;
  margin: 7.5rem auto 0;
  background: #FFF;
  border-radius: 3rem;
  position: relative;
}
@media only screen and (max-width: 959px) {
  #index #feature {
    padding: 3rem 2rem 2rem;
    margin-top: 6.125rem;
    z-index: 2;
  }
}
#index #feature h2 {
  width: 100%;
  font-style: normal;
  font-weight: 300;
  font-weight: 300;
  font-size: 3.5rem;
  letter-spacing: 0.4em;
  text-align: center;
  color: #1B5D93;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
}
@media only screen and (max-width: 959px) {
  #index #feature h2 {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 960px) {
  #index #feature .col2 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0 5rem;
  }
}
#index #feature .col2 .img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 3/2;
  border-radius: 1rem;
}
@media only screen and (max-width: 959px) {
  #index #feature .col2 > div:last-child {
    margin-top: 3.5rem;
  }
}
#index #feature .plus {
  width: 5rem;
  margin: 2rem auto 0;
}
#index #feature dl dt {
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  color: #1B5D93;
  margin: calc(2rem - 0.25em) 0 -0.25em;
}
#index #feature dl dd {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  margin: calc(2rem - 0.375em) 0 -0.375em;
}
#index #feature .col2-2 {
  margin-top: 2rem;
}
@media only screen and (min-width: 960px) {
  #index #feature .col2-2 {
    display: flex;
    align-items: center;
    gap: 0 2.5rem;
  }
}
@media only screen and (max-width: 959px) {
  #index #feature .col2-2 {
    margin-top: 3rem;
  }
  #index #feature .col2-2:last-child {
    margin-top: 2rem;
  }
}
#index #feature .col2-2 .img {
  aspect-ratio: 520/315;
  border-radius: 1rem;
  background: url(../img/09.jpg) center/cover no-repeat;
}
@media only screen and (min-width: 960px) {
  #index #feature .col2-2 .img {
    width: 32.5rem;
  }
}
@media only screen and (max-width: 959px) {
  #index #feature .col2-2 .img {
    aspect-ratio: 384/256;
  }
}
#index #feature .col2-2 p {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
@media only screen and (max-width: 959px) {
  #index #feature .col2-2 p {
    margin-top: 2rem;
  }
}
#index #course {
  max-width: 1120px;
  width: calc(100% - 4rem);
  margin: 8rem auto 0;
}
#index #course h2 {
  font-style: normal;
  font-size: 5rem;
  letter-spacing: 0.4em;
  text-align: center;
  color: #1B5D93;
}
@media only screen and (max-width: 959px) {
  #index #course h2 {
    font-size: 3rem;
  }
}
#index #course .inner {
  margin-top: 3.5rem;
  border-top: 0.5rem solid #1B5D93;
  position: relative;
}
#index #course .inner::after {
  width: 8rem;
  height: 0.5rem;
  content: "";
  background: #62ACB9;
  position: absolute;
  top: -0.5rem;
  left: 0;
}
@media only screen and (max-width: 959px) {
  #index #course .inner::after {
    width: 4rem;
  }
}
#index #course .inner h3 {
  font-weight: 900;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: left;
  color: #1B5D93;
  margin: calc(4rem - 0.25em) 0 -0.25em;
}
@media only screen and (max-width: 959px) {
  #index #course .inner h3 {
    font-size: 1.5rem;
  }
}
#index #course .inner .fs20 {
  line-height: 1.5;
  margin: calc(2.5rem - 0.25em) 0 -0.25em;
}
#index #course .inner h4 {
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-top: 2.8125rem;
}
#index #course .inner .cm_flex {
  gap: c 2.5rem;
  justify-content: space-between;
  align-items: flex-start;
}
#index #course .inner .cm_flex ul {
  margin: calc(1.5rem - 0.5em) 0 -0.5em;
}
@media only screen and (min-width: 960px) {
  #index #course .inner .cm_flex ul {
    width: calc(100% - 30rem);
  }
}
#index #course .inner .cm_flex ul li {
  line-height: 2;
  letter-spacing: 0.05em;
  padding-left: 0.75rem;
  position: relative;
}
#index #course .inner .cm_flex ul li::after {
  content: "■";
  font-size: 0.5rem;
  position: absolute;
  left: 0;
  top: 0.625rem;
}
#index #course .inner .cm_flex .img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 1rem;
  aspect-ratio: 3/2;
}
@media only screen and (min-width: 960px) {
  #index #course .inner .cm_flex .img {
    width: 27.5rem;
  }
}
@media only screen and (max-width: 959px) {
  #index #course .inner .cm_flex .img {
    margin-top: 2rem;
  }
}
#index #course .col3 {
  padding-top: 4rem;
  margin-top: 4rem;
  border-top: 0.5rem solid #1B5D93;
}
@media only screen and (min-width: 960px) {
  #index #course .col3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
#index #course .col3 h3 {
  width: 100%;
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.2em;
  text-align: center;
  color: #1B5D93;
}
#index #course .col3 dl {
  margin-top: 3rem;
}
@media only screen and (min-width: 960px) {
  #index #course .col3 dl {
    width: calc((100% - 6em) / 3);
  }
}
#index #course .col3 dl dt {
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-align: center;
  color: #1B5D93;
  line-height: 1.5;
  margin: -0.25em 0;
}
#index #course .col3 dl dd {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  margin: calc(2rem - 0.375em) 0 -0.375em;
}
#index #schedule {
  padding: 6rem 0 8rem;
  margin-top: 4rem;
  background: rgba(27, 93, 147, 0.1);
  position: relative;
}
#index #schedule::after {
  width: 100%;
  height: 2vw;
  content: "";
  background: url(../img/w.svg) center/cover no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}
#index #schedule h3 {
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.2em;
  text-align: center;
  color: #1B5D93;
}
#index #schedule h3.middle {
  margin-top: 4rem;
}
#index #schedule article {
  max-width: 1120px;
  width: calc(100% - 4rem);
  padding: 3rem;
  margin: 3rem auto 0;
  background: #FFF;
  border-radius: 2rem;
}
@media only screen and (max-width: 959px) {
  #index #schedule article {
    padding: 2rem;
  }
}
#index #schedule article h4 {
  font-weight: 900;
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #1B5D93;
  margin: -0.25em 0;
}
@media only screen and (max-width: 959px) {
  #index #schedule article h4 {
    font-size: 1.5rem;
  }
}
#index #schedule article .cm_flex {
  gap: 0 3rem;
  margin-top: 2rem;
}
#index #schedule article .cm_flex.col2 img {
  width: calc((100% - 3rem) / 2);
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}
@media only screen and (max-width: 959px) {
  #index #schedule article .cm_flex.col2 img {
    width: 100%;
    margin-top: 2rem;
  }
}
#index #schedule article .cm_flex dl {
  display: flex;
  align-items: center;
  gap: 0 1.5rem;
}
#index #schedule article .cm_flex dl dt {
  min-width: 6rem;
  height: 6rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  color: #1B5D93;
  text-align: center;
  background: rgba(27, 93, 147, 0.16);
  border-radius: 50%;
  padding: 2.5rem 0;
}
@media only screen and (max-width: 959px) {
  #index #schedule article .cm_flex dl dt {
    min-width: 3.75rem;
    height: 3.75rem;
    padding: 1.375rem 0;
  }
}
#index #schedule article .cm_flex dl dd {
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  word-break: break-all;
}
#index #schedule article .fs14 {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  margin: calc(2rem - 0.375em) 0 -0.375em;
}
#index #schedule article .cm_link {
  margin-top: 2.1875rem;
}
#index #corporate {
  color: #fff;
  padding: 8rem 0;
  background: linear-gradient(90deg, #62acb9 0%, #1b5d93 100%);
}
#index #corporate h2 {
  font-style: normal;
  font-size: 5rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-align: center;
}
@media only screen and (max-width: 959px) {
  #index #corporate h2 {
    font-size: 2.5rem;
  }
}
#index #corporate table {
  max-width: 960px;
  width: calc(100% - 4rem);
  font-weight: bold;
  letter-spacing: 0.05em;
  margin: 3.75rem auto 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#index #corporate table th {
  width: 30%;
  text-align: right;
  line-height: 1.5;
  padding: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 959px) {
  #index #corporate table th {
    width: 6rem;
    padding: 1.75rem 0rem 1.75rem 0;
  }
}
#index #corporate table td {
  line-height: 1.5;
  padding: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
#index #about {
  padding: 8rem 0;
  background: linear-gradient(90deg, rgba(98, 172, 185, 0.2) 0%, rgba(27, 93, 147, 0.2) 100%);
}
#index #about h2 {
  font-style: normal;
  font-size: 5rem;
  letter-spacing: 0.4em;
  text-align: center;
}
@media only screen and (max-width: 959px) {
  #index #about h2 {
    font-size: 2.5rem;
  }
}
#index #about h3 {
  font-size: 1.25rem;
}
#index #about .inner {
  max-width: 1002px;
  width: calc(100% - 4rem);
  letter-spacing: 0.05em;
  margin: 5rem auto 0;
}
#index #about p {
  margin: calc(2rem - 0.5em) 0 -0.5em;
  line-height: 2;
}
#index #about dl {
  margin: calc(2rem - 0.5em) 0 -0.5em;
  line-height: 2;
}
#index #about dl dt {
  font-weight: bold;
}

@media screen and (min-width: 960px) {
  .pcNone {
    display: none !important;
  }
  html {
    width: 100%;
    height: 100%;
    font-size: 16px;
  }
  body {
    width: 100%;
    height: 100%;
    font-size: 1rem;
  }
  img {
    display: block;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  .spNone {
    display: none !important;
  }
  html {
    width: 100%;
    height: 100%;
    font-size: 13px;
  }
  body {
    width: 100%;
    height: 100%;
    font-size: 1rem;
    overflow-x: hidden;
  }
  img {
    display: block;
    max-width: 100%;
    width: auto;
  }
}/*# sourceMappingURL=layout.css.map */