@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&display=swap");
/* reset CSS */
*,
::after,
::before {
  box-sizing: border-box;
}

section,
header,
footer,
nav,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
pre,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

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

input,
textarea {
  font-size: 100%;
  vertical-align: middle;
}

body,
div,
p,
address,
dl,
dt,
dd,
ul,
ol,
li {
  margin: 0;
  padding: 0;
}

img {
  display: inline-block;
  border: none;
  max-width: 100%;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border: none;
  border-spacing: 0;
  word-break: break-all;
}

input {
  line-height: 100%;
}

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

label {
  cursor: pointer;
}

address {
  font-style: normal;
}

article,
aside,
header,
hgroup,
footer,
nav,
section,
dialog,
figure {
  display: block;
}

audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
  display: block;
  max-width: 100%;
}

canvas,
img,
svg,
video {
  height: auto;
}

audio {
  width: 100%;
}

svg {
  overflow: hidden;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

@keyframes fadeInText {
  0% {
    -webkit-transform: translateY(8px) rotate(3deg);
    transform: translateY(8px) rotate(3deg);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(-3px) rotate(-3deg);
    transform: translateY(-3px) rotate(-3deg);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
    opacity: 1;
  }
}
:root {
  --font-ja: "Noto Sans JP", sans-serif;
  --font-en: "Outfit", sans-serif;
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-black: 900;
  --ease: 0.6s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  --transition-hover: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  --regular: 400;
  --medium: 500;
  --semibold: 600;
  --bold: 700;
  --white: #fff;
  --black: #000;
  --blue: #43bac4;
  --blueop: rgba(67, 186, 196, 0.9);
  --bluel: #d4ecf5;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
  --bdrs: 1rem;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-break: normal;
  overflow-wrap: break-word;
  text-underline-offset: 0.125em;
}

html {
  font-size: 0.725vw;
}

@media screen and (min-width: 1520px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.2vw;
  }
}
body {
  position: relative;
  background-color: #def3f8;
  font-family: var(--font-ja);
  font-weight: var(--font-regular);
  font-style: normal;
  font-kerning: none;
  font-size: clamp(1.4rem, 1.25rem + 0.195vw, 1.5rem);
  color: var(--black);
  letter-spacing: 0.05rem;
  line-height: 1.8;
}

section figure,
header figure,
footer figure,
div figure {
  margin: 0;
}

a,
button,
input,
select,
textarea {
  transition: all var(--transition-hover);
}

a {
  color: var(--black);
  text-decoration: none;
  word-wrap: break-word;
}

@media screen and (min-width: 821px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    opacity: 1;
  }
}
::selection {
  color: var(--white);
  background: var(--white);
}

@media screen and (min-width: 821px) {
  .lg-hide {
    display: none !important;
  }
  .lg-visible {
    display: inherit !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 820px) {
  .md-hide {
    display: none !important;
  }
  .md-visible {
    display: inherit !important;
  }
}
@media screen and (max-width: 767px) {
  .sm-hide {
    display: none !important;
  }
  .sm-visible {
    display: inherit !important;
  }
}
.container {
  position: relative;
  margin-inline: auto;
  padding-right: clamp(2rem, -10rem + 15.625vw, 10rem);
  padding-left: clamp(2rem, -10rem + 15.625vw, 10rem);
}
.container-sm {
  position: relative;
  margin-inline: auto;
  padding-right: clamp(2rem, -2.5rem + 5.859vw, 5rem);
  padding-left: clamp(2rem, -2.5rem + 5.859vw, 5rem);
}

.main {
  position: relative;
  display: block;
  width: 100%;
  background-color: var(--white);
  overflow-x: hidden;
}

.logo {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 2;
}
.logo img {
  width: 18rem;
  height: 3.5rem;
}
@media screen and (min-width: 768px) {
  .logo {
    top: 5rem;
    left: 5rem;
  }
  .logo img {
    width: 23.2rem;
    height: 4.5rem;
  }
}

.kv {
  position: relative;
}
.kv img {
  margin-inline: auto;
}
.kv .copy {
  position: absolute;
  left: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .kv .copy {
    top: 6rem;
  }
}
@media screen and (min-width: 768px) {
  .kv .copy {
    top: 14rem;
  }
}
@media screen and (min-width: 821px) {
  .kv .copy {
    top: 16rem;
  }
}
@media screen and (max-width: 767px) {
  .kv .copy .patch {
    position: absolute;
    top: 0;
    right: 0;
    width: 6rem;
  }
}
@media screen and (min-width: 768px) {
  .kv .copy .patch {
    margin-left: 4rem;
  }
}

.about {
  padding-top: clamp(4rem, -2rem + 7.813vw, 8rem);
  padding-bottom: clamp(4rem, -2rem + 7.813vw, 8rem);
  background-color: var(--blue);
}
.about .inner {
  max-width: 132rem;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .about .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.about .text {
  color: var(--white);
}
@media screen and (min-width: 768px) {
  .about .text {
    width: 36%;
  }
}
.about .text h2 {
  font-weight: var(--font-semibold);
  font-size: clamp(2.2rem, 1.9rem + 0.391vw, 2.4rem);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .about .text h2 {
    text-align: center;
  }
}
.about .text p {
  padding-top: clamp(1rem, -0.5rem + 1.953vw, 2rem);
  font-size: clamp(1.5rem, 1.2rem + 0.391vw, 1.7rem);
}
@media screen and (min-width: 768px) {
  .about .text p {
    padding-right: 3%;
  }
}
.about .photo {
  padding: clamp(2rem, -1rem + 3.906vw, 4rem);
  background-color: var(--white);
  border-radius: var(--bdrs);
}
@media screen and (max-width: 767px) {
  .about .photo {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .about .photo {
    width: 60%;
  }
}

@media screen and (min-width: 768px) {
  .rl {
    writing-mode: vertical-rl;
  }
}

@media screen and (max-width: 767px) {
  .copy {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .copy {
    display: flex;
    justify-content: center;
  }
}
.copy h3 {
  padding: 0 1rem;
}
.copy h3:first-child {
  order: 2;
}
.copy h3:last-child {
  order: 1;
}

figure {
  position: relative;
}

figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: clamp(1rem, 0.25rem + 0.977vw, 1.5rem);
  background-color: var(--blueop);
  color: var(--white);
  text-align: center;
}
@media screen and (min-width: 768px) {
  figcaption {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
figcaption span {
  line-height: 1;
}
figcaption p {
  font-size: clamp(1.6rem, 1rem + 0.781vw, 2rem);
  font-weight: var(--semibold);
  line-height: 1;
}
@media screen and (min-width: 768px) {
  figcaption p {
    padding-left: 1rem;
  }
}
figcaption em {
  font-style: normal;
  font-size: clamp(1.1rem, 0.8rem + 0.391vw, 1.3rem);
}

.sec1 {
  margin-top: clamp(5rem, -2.5rem + 9.766vw, 10rem);
}
.sec1 h3 {
  text-align: center;
}
.sec1 .inner {
  margin-top: clamp(2rem, -2.5rem + 5.859vw, 5rem);
}
@media screen and (max-width: 767px) {
  .sec1 .inner {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .sec1 .inner {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    max-width: 157rem;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .sec1 .photo {
    order: 2;
  }
}
@media screen and (min-width: 768px) {
  .sec1 .photo {
    margin-right: clamp(5rem, 0.5rem + 5.859vw, 8rem);
    margin-left: clamp(5rem, 0.5rem + 5.859vw, 8rem);
  }
}
.sec1 .text p {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .sec1 .text p {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .sec1 .text p:nth-child(n+2) {
    padding-top: clamp(2rem, -2.5rem + 5.859vw, 5rem);
  }
}
@media screen and (min-width: 768px) {
  .sec1 .text1 {
    order: 1;
  }
}
@media screen and (min-width: 768px) {
  .sec1 .text2 {
    order: 3;
  }
}
.sec2 {
  max-width: 157rem;
  margin-inline: auto;
  margin-top: clamp(5rem, -10rem + 19.531vw, 15rem);
}
@media screen and (max-width: 767px) {
  .sec2 .inner {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .sec2 .inner {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
  }
}
@media screen and (max-width: 767px) {
  .sec2 .inner .copy {
    order: 1;
    padding-bottom: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .sec2 .inner h3 {
    display: flex;
    align-items: center;
  }
}
.sec2 .inner .text {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .sec2 .inner .text {
    margin-top: 2rem;
    order: 3;
  }
}
.sec2 .inner .text p:nth-child(n+2) {
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .sec2 .inner .photo {
    order: 2;
  }
}
.sec3 {
  position: relative;
  margin-top: clamp(5rem, -10rem + 19.531vw, 15rem);
}
.sec3 h3 {
  font-size: clamp(2rem, -1rem + 3.906vw, 4rem);
  font-weight: var(--semibold);
}
.sec3 ul {
  position: relative;
  z-index: 2;
  margin-top: clamp(5rem, 5rem + 0vw, 5rem);
  border-top: 1px solid var(--blue);
}
@media screen and (min-width: 768px) {
  .sec3 ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}
.sec3 ul li {
  padding: 5rem 8rem;
  background-color: var(--white);
}
@media screen and (max-width: 767px) {
  .sec3 ul li:nth-child(n+2) {
    border-top: 1px solid var(--blue);
  }
}
@media screen and (min-width: 768px) {
  .sec3 ul li:nth-child(n+2) {
    border-left: 1px solid var(--blue);
  }
}
.sec3 ul li .photo {
  position: relative;
}
.sec3 ul li .text h5 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: clamp(1.8rem, 1.2rem + 0.781vw, 2.2rem);
  font-weight: var(--semibold);
  line-height: 1.5;
}
.sec3 ul li .name,
.sec3 ul li .course {
  position: absolute;
  display: flex;
  justify-content: center;
  gap: 5rem;
  justify-content: space-between;
  font-size: clamp(1.6rem, 1.3rem + 0.391vw, 1.8rem);
  font-weight: var(--semibold);
  color: #43bac4;
  writing-mode: vertical-rl;
}
.sec3 ul li .name span,
.sec3 ul li .course span {
  text-combine-upright: all;
}
.sec3 ul li .name {
  top: 0;
  left: -5rem;
}
.sec3 ul li .course {
  bottom: 0;
  right: -5rem;
}

.msg {
  position: absolute;
  top: 8rem;
  right: 0;
}
@media screen and (min-width: 768px) {
  .msg {
    top: 5.5rem;
  }
}
.msg p {
  font-family: var(--font-en);
  font-size: clamp(5rem, -11.5rem + 21.484vw, 16rem);
  font-weight: var(--semibold);
  color: var(--white);
  opacity: 0.3;
  -webkit-text-stroke: 1px var(--blue);
  line-height: 1;
  white-space: nowrap;
}

h3 {
  font-size: clamp(2rem, -0.7rem + 3.516vw, 3.8rem);
  font-weight: var(--semibold);
  overflow: hidden;
  opacity: 0;
}

.act {
  opacity: 1;
}

h3 span {
  -webkit-filter: blur(10px);
  filter: blur(10px);
  line-height: 1;
  opacity: 0;
  -webkit-transform: translateX(40px) skewX(-10deg) scale(1.05);
  transform: translateX(40px) skewX(-10deg) scale(1.05);
  -webkit-transition: all 0.8s ease 0.8s;
  transition: all 0.8s ease 0.8s;
}

.act span {
  -webkit-filter: blur(0);
  filter: blur(0);
  opacity: 1;
  -webkit-transform: translateX(0) skewX(0) scale(1);
  transform: translateX(0) skewX(0) scale(1);
}

.act span:nth-child(1) {
  transition-delay: 0.01s;
}

.act span:nth-child(2) {
  transition-delay: 0.07s;
}

.act span:nth-child(3) {
  transition-delay: 0.14s;
}

.act span:nth-child(4) {
  transition-delay: 0.21s;
}

.act span:nth-child(5) {
  transition-delay: 0.28s;
}

.act span:nth-child(6) {
  transition-delay: 0.35s;
}

.act span:nth-child(7) {
  transition-delay: 0.42s;
}

.act span:nth-child(8) {
  transition-delay: 0.49s;
}

.act span:nth-child(9) {
  transition-delay: 0.56s;
}

.act span:nth-child(10) {
  transition-delay: 0.63s;
}

.act span:nth-child(11) {
  transition-delay: 0.7s;
}

.act span:nth-child(12) {
  transition-delay: 0.77s;
}

.act span:nth-child(13) {
  transition-delay: 0.84s;
}

.act span:nth-child(14) {
  transition-delay: 0.91s;
}

.act span:nth-child(15) {
  transition-delay: 0.98s;
}

.act span:nth-child(16) {
  transition-delay: 1.05s;
}

.act span:nth-child(17) {
  transition-delay: 1.12s;
}

.act span:nth-child(18) {
  transition-delay: 1.19s;
}

.act span:nth-child(19) {
  transition-delay: 1.26s;
}

.act span:nth-child(20) {
  transition-delay: 1.33s;
}

.act span:nth-child(21) {
  transition-delay: 1.4s;
}

.act span:nth-child(22) {
  transition-delay: 1.47s;
}

.act span:nth-child(23) {
  transition-delay: 1.53s;
}

.act span:nth-child(24) {
  transition-delay: 1.6s;
}

.act span:nth-child(25) {
  transition-delay: 1.67s;
}

.act span:nth-child(26) {
  transition-delay: 1.74s;
}

.act span:nth-child(27) {
  transition-delay: 1.81s;
}

.act span:nth-child(28) {
  transition-delay: 1.88s;
}

.act span:nth-child(29) {
  transition-delay: 1.95s;
}

.act span:nth-child(30) {
  transition-delay: 2.02s;
}

.act span:nth-child(31) {
  transition-delay: 2.09s;
}

.act span:nth-child(32) {
  transition-delay: 2.16s;
}

.footer {
  padding-top: clamp(5rem, -2.5rem + 9.766vw, 10rem);
  padding-bottom: clamp(5rem, -2.5rem + 9.766vw, 10rem);
}
.footer-copyright {
  font-weight: var(--font-light);
  font-family: var(--font-ja-fot70);
  font-size: clamp(1rem, 0.7rem + 0.391vw, 1.2rem);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer-copyright {
    letter-spacing: 0;
  }
}/*# sourceMappingURL=style.css.map */