@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p,
img,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
label, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, figure,
footer, header, hgroup, menu, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

a {
  color: #000000;
  text-decoration: none;
}

ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック";
  overflow: auto;
}
body.menu-open {
  overflow: hidden;
}

main {
  position: relative;
}

.content-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.heading-width {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  width: 100%;
}

body {
  overflow-x: hidden;
}

.h1 {
  font-size: 48px;
}

.h2 {
  font-size: 33px;
}
@media (max-width: 1099px) {
  .h2 {
    font-size: 21px;
  }
}

.h3 {
  font-size: 24px;
}
@media (max-width: 1099px) {
  .h3 {
    font-size: 20px;
  }
}

.h4 {
  font-size: 21px;
}
@media (max-width: 1099px) {
  .h4 {
    font-size: 18px;
  }
}

.h5-sub {
  font-size: 18px;
}

.h5 {
  font-size: 18px;
}
@media (max-width: 1099px) {
  .h5 {
    font-size: 15px;
  }
}

.h6 {
  font-size: 16px;
}

.h7 {
  font-size: 14px;
}

@media (max-width: 1099px) {
  .hide-sp {
    display: none !important;
  }
}
@media (min-width: 1100px) {
  .hide-pc {
    display: none !important;
  }
}
.lead {
  line-height: 2;
}

/** アニメーション **/
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/** 矢印 **/
.circle-arrow-black {
  width: 25px;
  height: 25px;
  border: 2px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 15px;
}
.circle-arrow-black img {
  transition: transform 0.3s ease;
}
.circle-arrow-black img:hover {
  animation: shake 0.5s infinite;
}

.circle-arrow-white {
  width: 25px;
  height: 25px;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 15px;
}
.circle-arrow-white img {
  transition: transform 0.3s ease;
}
.circle-arrow-white img:hover {
  animation: shake 0.5s infinite;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-3px);
  }
  50% {
    transform: translateX(3px);
  }
  75% {
    transform: translateX(-3px);
  }
  100% {
    transform: translateX(0);
  }
}
/** MOREボタン **/
.more-icon {
  width: 38px;
}

.more-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.more-btn p {
  font-size: 16px;
  padding-bottom: 10px;
}
.more-btn .more-button {
  all: unset;
  cursor: pointer;
}
.more-btn .more-button:hover .more-icon-black {
  animation: shake-up-down 0.5s infinite;
}
.more-btn .more-icon-black {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes shake-up-down {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-3px);
  }
  50% {
    transform: translateY(3px);
  }
  75% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}
.is-hidden {
  display: none;
}

.lity {
  background: rgba(0, 0, 0, 0.5) !important;
}

.lity-close {
  position: absolute !important;
  top: -40px !important;
  right: 2px !important;
}

.lity-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  font-size: 0;
  line-height: 0;
  color: transparent;
  text-indent: -9999px;
  overflow: hidden;
}

.lity-close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35px;
  height: 2px;
  background-color: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

.lity-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35px;
  height: 2px;
  background-color: #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}

header {
  position: relative;
  width: 100%;
}
@media (max-width: 500px) {
  header {
    font-size: 14px;
  }
}
header.top {
  height: 100svh;
}
header #header-navi {
  left: 0;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 6;
  transition: opacity 0.5s;
  transition: background-color 0.5s ease;
}
header #header-navi .header-head {
  display: block;
  width: auto;
  height: auto;
}
header #header-navi .wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 25px 50px;
}
header #header-navi .logo {
  width: 225px;
  height: auto;
}
@media screen and (max-width: 1240px) {
  header #header-navi .logo {
    width: 140px;
  }
}
header #header-navi .navi .menu-wrapper {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
header #header-navi .navi ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  height: 41px;
}
header #header-navi .navi ul.sp-none {
  display: flex;
}
@media screen and (max-width: 1240px) {
  header #header-navi .navi ul.sp-none {
    display: none;
  }
}
header #header-navi .navi ul li {
  font-size: 15px;
  line-height: 26px;
  display: flex;
  align-items: center;
  font-weight: 400;
  color: #ffffff;
}
header #header-navi .navi ul li a {
  color: #ffffff;
}
header #header-navi .navi ul .white {
  color: #ffffff;
}
header #header-navi .navi .header-contact__content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  padding-top: 15px;
}
@media screen and (max-width: 1240px) {
  header #header-navi .navi .header-contact__content {
    padding-top: 0;
  }
}
header #header-navi .navi .header-contact__content .divider {
  display: block;
  border-left: 1px solid #ffffff;
  height: 20px;
  align-self: center;
  margin-top: 6px;
}
header #header-navi .navi .header-contact__tel {
  font-weight: 600;
}
header #header-navi .navi .header-contact__tel__wrapper {
  display: flex;
  align-items: center;
}
header #header-navi .navi .header-contact__tel_tel__txt {
  display: flex;
  align-items: center;
}
header #header-navi .navi .header-contact__tel .tel-num {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 21px;
  font-weight: 400;
  color: #ffffff;
  padding-left: 30px;
}
header #header-navi .navi .header-contact__tel .tel-num::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 23px;
  background-image: url("/education/assets/images/teacher-dispatch/tel-white.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
header #header-navi .navi .header-contact__tel .tel-num a {
  color: #000000;
  display: flex;
  align-items: center;
}
header #header-navi .navi .header-contact__tel .tel-num .small {
  font-size: 10px;
  margin-left: 10px;
  color: #000000;
  display: flex;
  align-items: center;
}
header #header-navi .navi .header-contact__tel a[href^="tel:"] {
  pointer-events: none;
}
@media (max-width: 1099px) {
  header #header-navi .navi .header-contact__tel a[href^="tel:"] {
    pointer-events: auto;
  }
}
header #header-navi .navi .header-contact__mail {
  font-size: 17px;
  color: #ffffff;
  display: flex;
  align-items: center;
}
header #header-navi .navi .header-contact__mail__wrapper {
  display: flex;
  align-items: center;
}
header #header-navi .navi .header-contact__mail .mail {
  position: relative;
  padding-left: 25px;
}
header #header-navi .navi .header-contact__mail .mail::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 23px;
  background-image: url("/education/assets/images/teacher-dispatch/mail-white.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
header #header-navi .navi .header-contact__mail a {
  color: #ffffff;
}
header #header-navi .navi .border-pink {
  width: 150px;
  padding: 8px 0;
  border: 1px solid #ED1E79;
  border-radius: 10rem;
  background-color: #ED1E79;
  display: flex;
  justify-content: center;
  margin-left: 10px;
  margin-right: 20px;
}
header #header-navi .navi .border-pink.pc-none {
  display: none;
}
@media screen and (max-width: 1240px) {
  header #header-navi .navi .border-pink.pc-none {
    display: flex;
  }
}
header #header-navi .navi .border-green {
  width: 150px;
  padding: 8px 0;
  border: 1px solid #01AE7B;
  border-radius: 10rem;
  background-color: #01AE7B;
  display: flex;
  justify-content: center;
}
header #header-navi .navi .border-green.pc-none {
  display: none;
}
@media screen and (max-width: 1240px) {
  header #header-navi .navi .border-green.pc-none {
    display: flex;
  }
}
header #header-navi .navi__list {
  margin-right: 0px;
  margin-left: 30px;
}
header #header-navi .header-privacy {
  display: none;
}
header #header-navi .header-copyright {
  display: none;
}
@media (max-width: 550px) {
  header #header-navi .wrapper {
    padding: 10px 20px;
  }
  header #header-navi .logo {
    font-size: 16px;
    line-height: 20px;
    padding: 0;
  }
}
header #header-navi.hide {
  opacity: 0;
}
header #header-navi.show {
  opacity: 1;
}
header #header-navi .logo:before {
  background-image: url(/education/assets/images/teacher-dispatch/logo.svg);
}
header #header-navi .hamberger-open, header #header-navi .hamberger-close {
  margin: 0 50px 10px 0;
}
header #header-navi .hamberger-open .toggle:before, header #header-navi .hamberger-open .toggle:after, header #header-navi .hamberger-open .toggle i, header #header-navi .hamberger-close .toggle:before, header #header-navi .hamberger-close .toggle:after, header #header-navi .hamberger-close .toggle i {
  background-color: #000000;
}
header #header-navi .hamberger-open p, header #header-navi .hamberger-close p {
  color: #000000;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}
header #header-navi .hamberger-open .toggle-text, header #header-navi .hamberger-close .toggle-text {
  font-weight: 600;
}
header #header-navi .hamberger-close .toggle i {
  display: none;
}
header #header-navi .hamberger-close .toggle:before, header #header-navi .hamberger-close .toggle:after {
  top: 12px;
  transition: transform 0.5s;
}
header #header-navi .hamberger-close .toggle:before {
  transform: rotate(-225deg);
}
header #header-navi .hamberger-close .toggle:after {
  transform: rotate(-135deg);
}
header #header-navi.show .hamberger-open .toggle:before, header #header-navi.show .hamberger-open .toggle:after, header #header-navi.show .hamberger-open .toggle i, header #header-navi.show .hamberger-close .toggle:before, header #header-navi.show .hamberger-close .toggle:after, header #header-navi.show .hamberger-close .toggle i {
  background-color: #000000;
}
header #header-navi.show .hamberger-open p, header #header-navi.show .hamberger-close p {
  color: #000000;
}
header #header-navi.open .header-head {
  z-index: 1;
}
header #header-navi.open .navi {
  opacity: 1;
  transition: opacity 1s;
}
header #header-navi.open.show {
  background-color: #ffffff;
}
header #header-navi.open.show li.navi__list a {
  color: #000000;
}
header #header-navi.scrolled {
  background-color: #FFFFFF;
}
@media screen and (max-width: 1240px) {
  header #header-navi.scrolled {
    background-color: transparent;
  }
}
header #header-navi.scrolled .navi ul .font-color {
  color: #000000;
}
header #header-navi.scrolled .header-contact__content .divider {
  border-left: 1px solid #000000;
}
header #header-navi.scrolled .header-contact_tel__txt .tel-num {
  color: #000000;
}
@media (max-width: 1099px) {
  header #header-navi.scrolled .header-contact_tel__txt .tel-num {
    line-height: 1.2;
  }
}
header #header-navi.scrolled .header-contact_tel__txt .tel-num::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 23px;
  height: 23px;
  background-image: url("/education/assets/images/teacher-dispatch/tel.svg");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  top: 55%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1240px) {
  header #header-navi.scrolled .header-contact_tel__txt .tel-num::before {
    left: -20px;
    top: 7px;
    transform: translateY(0);
  }
}
@media (max-width: 1099px) {
  header #header-navi.scrolled .header-contact_tel__txt .tel-num::before {
    top: 3px;
  }
}
header #header-navi.scrolled .header-contact_tel__txt .small, header #header-navi.scrolled .header-contact_tel__txt a {
  color: #000000;
}
header #header-navi.scrolled .header-contact__mail__wrapper .mail {
  color: #000000;
  position: relative;
}
header #header-navi.scrolled .header-contact__mail__wrapper .mail::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("/education/assets/images/teacher-dispatch/mail-black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  top: 71%;
}
@media screen and (max-width: 1240px) {
  header #header-navi.scrolled .header-contact__mail__wrapper .mail {
    font-size: 16px;
  }
}
header #header-navi.scrolled .header-contact__mail__wrapper a {
  color: #000000;
}
header #header-navi.scroll {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}
@media screen and (max-width: 1240px) {
  header #header-navi.scroll {
    background-color: transparent;
    backdrop-filter: none;
  }
  header #header-navi.scroll .header-head {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
  }
}
header .hamberger-open, header .hamberger-close {
  display: none;
}
@media screen and (max-width: 1240px) {
  header .hamberger-open, header .hamberger-close {
    width: 30px;
    height: 20px;
    display: block;
  }
  header .hamberger-open .toggle, header .hamberger-close .toggle {
    position: relative;
    width: 100%;
    height: 100%;
  }
  header .hamberger-open .toggle:before, header .hamberger-open .toggle:after, header .hamberger-open .toggle i, header .hamberger-close .toggle:before, header .hamberger-close .toggle:after, header .hamberger-close .toggle i {
    content: "";
    height: 2px;
    width: 100%;
    background-color: #000000;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    transition: transform 0.5s, top 0.5s;
  }
  header .hamberger-open .toggle:before, header .hamberger-close .toggle:before {
    top: 0;
  }
  header .hamberger-open .toggle:after, header .hamberger-close .toggle:after {
    top: 100%;
  }
  header .hamberger-open p, header .hamberger-close p {
    text-align: center;
    color: #000000;
    font-size: 16px;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
    padding-top: 10px;
    line-height: 1;
  }
}
@media screen and (max-width: 1240px) {
  header .hamberger-open, header .hamberger-close {
    margin: 0 0 10px 0;
  }
}
header .hamberger-open.open .toggle i {
  display: none;
}
header .hamberger-open.open .toggle:before, header .hamberger-open.open .toggle:after {
  top: 12px;
  transition: transform 0.5s;
}
header .hamberger-open.open .toggle:before {
  transform: rotate(-225deg);
}
header .hamberger-open.open .toggle:after {
  transform: rotate(-135deg);
}
@media screen and (max-width: 1240px) {
  header #header-navi {
    pointer-events: none;
  }
  header #header-navi.open {
    pointer-events: auto;
    height: 100%;
  }
  header #header-navi .menu-wrapper {
    height: calc(100% - 137.5px - 10px);
    justify-content: space-around;
  }
  header #header-navi .wrapper {
    height: 100%;
    position: relative;
    flex-direction: column;
    padding: 0;
    justify-content: flex-start;
  }
  header #header-navi .header-head {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 60px;
    align-items: center;
    background-color: #ffffff;
    pointer-events: auto;
  }
  header #header-navi .header-head > a {
    margin: 0 0 0 50px;
  }
  header #header-navi .divider {
    display: none;
  }
  header #header-navi .navi {
    width: 100%;
    height: calc(100vh - 81px);
    opacity: 0;
    transition: opacity 0.2s;
  }
  header #header-navi .navi ul {
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: space-evenly;
  }
  header #header-navi .navi ul li {
    justify-content: center;
    z-index: 1;
    margin: 0;
  }
  header #header-navi .navi .border-pink {
    margin-right: 0;
    margin-left: 0;
    width: 230px;
  }
  header #header-navi .navi .border-green {
    width: 230px;
  }
  header #header-navi .navi .header-contact__content {
    align-items: center;
    flex-direction: column;
  }
  header #header-navi .navi .header-contact__tel .tel-num {
    color: #000000;
    flex-direction: column;
  }
  header #header-navi .navi .header-contact__tel .tel-num:before {
    background-image: url(/education/assets/images/teacher-dispatch/tel.svg);
  }
  header #header-navi .navi .header-contact__tel .small, header #header-navi .navi .header-contact__tel a {
    color: #000000;
  }
  header #header-navi .navi .header-contact__mail .mail {
    color: #000000;
  }
  header #header-navi .navi .header-contact__mail .mail:before {
    background-image: url(/education/assets/images/teacher-dispatch/mail.svg);
    top: 17px;
  }
  header #header-navi .navi .header-contact__mail a {
    color: #000000;
  }
  header #header-navi .header-contact {
    margin: 0 10%;
    border-top: 1px solid;
    border-bottom: 1px solid #000000;
    padding: 10px 0;
  }
  header #header-navi .header-privacy {
    display: block;
    margin: 20px 0 0;
    background: #F2F2F2;
    height: 70px;
  }
  header #header-navi .header-privacy__inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0 10%;
    align-items: center;
    height: 100%;
  }
  header #header-navi .header-privacy__content {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
  }
  header #header-navi .header-privacy__content .privacy_policy {
    text-align: right;
  }
  header #header-navi .header-privacy__content .circle-arrow-black {
    height: auto;
    aspect-ratio: 1;
    width: 10px;
  }
  header #header-navi .header-privacy__content .circle-arrow-black img {
    height: 12px;
    width: 40px;
  }
  header #header-navi .header-copyright {
    display: block;
    font-size: 10px;
    text-align: center;
    padding: 10px 0;
  }
}
@media (max-width: 1099px) {
  header #header-navi .header-head a {
    margin: 0 0 0 20px;
  }
  header #header-navi .hamberger-open, header #header-navi .hamberger-close {
    margin: 0 20px 0 0;
  }
}

.mv {
  width: auto;
  height: 730px;
  overflow: hidden;
  margin-top: 133px;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 1240px) {
  .mv {
    margin-top: 60px;
  }
}
@media (max-width: 1099px) {
  .mv {
    width: 100%;
    height: auto;
  }
}
.mv h1 {
  font-size: 55px;
  font-weight: 750;
  letter-spacing: 5px;
}
@media (min-width: 1100px) {
  .mv h1 {
    line-height: 1.3;
  }
}
@media (max-width: 1099px) {
  .mv h1 {
    font-size: 33px;
    padding-left: 30px;
    white-space: nowrap;
  }
}
.mv h2 {
  font-size: 24px;
  font-weight: 400;
}
@media (max-width: 1099px) {
  .mv h2 {
    font-size: 22px;
    font-weight: 300;
  }
}
@media (min-width: 1100px) {
  .mv__img-wrapper {
    width: 100%;
    position: relative;
  }
}
@media (max-width: 1099px) {
  .mv__img-wrapper {
    display: block;
    width: 100%;
    height: 60vh;
  }
}
.mv__img-wrapper img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.mv__img-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  pointer-events: none;
}
.mv__img {
  width: 1040px;
  height: 730px;
}
@media (max-width: 1099px) {
  .mv__img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
  }
}
.mv__title {
  position: absolute;
  bottom: 10px;
  left: 28%;
  color: white;
  z-index: 2;
  bottom: 61px;
  left: 17%;
}
@media (max-width: 1099px) {
  .mv__title {
    width: 70%;
    position: absolute;
    left: 50%;
    text-align: center;
    color: #FFFFFF;
    padding-left: 0;
    height: auto;
    bottom: 10%;
    top: auto;
    transform: translateX(-50%);
  }
}
.mv__title__image {
  max-width: 387px;
  height: auto;
  margin-top: 100px;
  margin-bottom: 75px;
  width: 90%;
}
@media (max-width: 1099px) {
  .mv__title__image {
    width: 100%;
    margin-top: 200px;
    margin-bottom: 0;
  }
}

.contact__wrapper {
  padding: 100px 0;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 1099px) {
  .contact__wrapper {
    padding: 60px 20px;
  }
}
.contact__container {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
@media (max-width: 1099px) {
  .contact__container {
    padding: 10px 0;
  }
}
.contact__container__content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 1099px) {
  .contact__container__content {
    flex-direction: column;
  }
}
.contact__tel, .contact__mail {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  white-space: nowrap;
}
@media (max-width: 1099px) {
  .contact__tel, .contact__mail {
    width: 100%;
  }
}
.contact__tel__wrapper, .contact__mail__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 1099px) {
  .contact__tel__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
}
.contact__icon {
  width: 26px;
  height: 26px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  margin: 0;
  padding: 0;
  object-fit: contain;
}
@media (max-width: 1099px) {
  .contact__icon {
    width: 23px;
    height: 23px;
  }
}
.contact__icon-mail {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  margin: 0;
  padding: 0;
  object-fit: contain;
  position: relative;
  top: 2px;
}
.contact__icon-tel {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  margin: 0;
  padding: 0;
  object-fit: contain;
  position: relative;
  top: 1px;
}
.contact__divider {
  width: 1px;
  height: 60px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media (max-width: 1099px) {
  .contact__divider {
    display: none;
  }
}
.contact__tel {
  font-size: 26px;
  font-weight: 400;
  white-space: nowrap;
}
@media (max-width: 1099px) {
  .contact__tel {
    font-size: 21px;
  }
}
.contact__tel a {
  text-decoration: none;
  color: inherit;
}
.contact__small {
  font-size: 12px;
  margin-left: 30px;
}
@media (max-width: 1099px) {
  .contact__small {
    font-size: 10px;
    margin-left: 40px;
  }
}
.contact__mail {
  font-size: 23px;
  font-weight: 400;
  white-space: nowrap;
}
@media (max-width: 1099px) {
  .contact__mail {
    font-size: 16px;
  }
}
.contact__mail a {
  text-decoration: none;
  color: inherit;
}

.footer__bg {
  background-color: #F2F2F2;
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
}
@media (max-width: 1099px) {
  .footer__wrapper {
    width: auto;
    padding: 10px 20px;
    justify-content: flex-start;
  }
}
.footer__wrapper a .logo {
  width: 225px;
  height: auto;
}
@media (max-width: 1099px) {
  .footer__wrapper a .logo {
    width: 200px;
  }
}
@media (max-width: 1099px) {
  .footer__wrapper .privacy-policy {
    width: 100%;
  }
}
.footer__wrapper .privacy-policy__txt {
  font-size: 15px;
  margin-right: 10px;
  display: flex;
  align-items: center;
}
@media (max-width: 1099px) {
  .footer__wrapper .privacy-policy__txt {
    text-align: center;
  }
}
.footer__wrapper .privacy-policy__wrapper {
  display: flex;
}
@media (max-width: 1099px) {
  .footer__wrapper .privacy-policy__wrapper {
    justify-content: center;
    width: 100%;
  }
}
@media (max-width: 1099px) {
  .footer__wrapper .circle-arrow-black {
    height: auto;
    aspect-ratio: 1;
  }
}
.footer__copyright {
  font-size: 15px;
  text-align: center;
  padding: 20px 0;
}
@media (max-width: 1099px) {
  .footer__copyright {
    font-size: 11px;
  }
}

.top-main .quality__wrapper {
  display: flex;
  gap: 80px;
  padding-top: 100px;
  padding-bottom: 100px;
  /* 画像アニメーション */
  /* 各アニメーションでずれ＆表示 */
}
@media (max-width: 1099px) {
  .top-main .quality__wrapper {
    display: block;
    padding-left: 10%;
    padding-right: 10%;
  }
}
@media (min-width: 870px) and (max-width: 1099px) {
  .top-main .quality__wrapper {
    padding-left: 20%;
    padding-right: 20%;
  }
}
.top-main .quality__wrapper .image-stack {
  position: relative;
  width: 100%;
  height: 100%;
}
.top-main .quality__wrapper .image-stack .stack-img {
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(400px);
}
@media (min-width: 1100px) {
  .top-main .quality__wrapper .image-stack.animate {
    transform: translateX(-30px);
  }
}
.top-main .quality__wrapper .image-stack.animate .img1 {
  z-index: 1;
  animation: rise1 0.8s ease-out forwards 0s;
}
.top-main .quality__wrapper .image-stack.animate .img2 {
  z-index: 2;
  animation: rise2 0.8s ease-out forwards 0.3s;
}
.top-main .quality__wrapper .image-stack.animate .img3 {
  z-index: 3;
  animation: rise3 0.8s ease-out forwards 0.6s;
}
.top-main .quality__wrapper .image-stack.animate .img4 {
  z-index: 4;
  animation: rise4 0.8s ease-out forwards 0.9s;
}
@keyframes rise1 {
  to {
    opacity: 1;
    transform: translate(0px, -40px) rotate(-20deg);
    transform: translate(0px, -30px) rotate(-20deg);
  }
}
@keyframes rise2 {
  to {
    opacity: 1;
    transform: translate(180px, -20px) rotate(20deg);
  }
}
@keyframes rise3 {
  to {
    opacity: 1;
    transform: translate(70px, 150px) rotate(5deg);
  }
}
@keyframes rise4 {
  to {
    opacity: 1;
    transform: translate(200px, 220px) rotate(-15deg);
  }
}
@media (max-width: 1099px) {
  .top-main .quality__wrapper {
    /* 画像アニメーション */
    /* 各アニメーションでずれ＆表示 */
  }
  .top-main .quality__wrapper .image-stack {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .top-main .quality__wrapper .image-stack .stack-img {
    position: absolute;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(400px);
  }
  .top-main .quality__wrapper .image-stack.animate .img1 {
    z-index: 1;
    animation: rise1 0.8s ease-out forwards 0s;
  }
  .top-main .quality__wrapper .image-stack.animate .img2 {
    z-index: 2;
    animation: rise2 0.8s ease-out forwards 0.3s;
  }
  .top-main .quality__wrapper .image-stack.animate .img3 {
    z-index: 3;
    animation: rise3 0.8s ease-out forwards 0.6s;
  }
  .top-main .quality__wrapper .image-stack.animate .img4 {
    z-index: 4;
    animation: rise4 0.8s ease-out forwards 0.9s;
  }
  @keyframes rise1 {
    to {
      opacity: 1;
      transform: translate(0px, 10px) rotate(-5deg);
      transform: translate(0px, -30px) rotate(-10deg);
    }
  }
  @keyframes rise2 {
    to {
      opacity: 1;
      transform: translate(180px, -20px) rotate(5deg);
    }
  }
  @keyframes rise3 {
    to {
      opacity: 1;
      transform: translate(70px, 50px) rotate(5deg);
    }
  }
  @keyframes rise4 {
    to {
      opacity: 1;
      transform: translate(150px, 100px) rotate(-15deg);
    }
  }
}
.top-main .quality__img {
  position: relative;
  width: 210px;
  height: auto;
  flex-shrink: 0;
  margin-top: 70px;
}
@media (max-width: 1099px) {
  .top-main .quality__img {
    width: 9rem;
    margin: 20px auto 0;
    margin-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .top-main .quality__img {
    margin-left: 25%;
  }
}
@media (min-width: 490px) and (max-width: 768px) {
  .top-main .quality__img {
    margin-left: 20%;
  }
}
@media (min-width: 400px) and (max-width: 490px) {
  .top-main .quality__img {
    margin-left: 10%;
  }
}
.top-main .quality__txt01 {
  letter-spacing: 3px;
}
@media (max-width: 1099px) {
  .top-main .quality__txt01 {
    text-align: center;
  }
}
.top-main .quality__txt02 {
  line-height: 2;
  margin-top: 40px;
  letter-spacing: 2px;
  text-align: justify;
}
@media (max-width: 1099px) {
  .top-main .quality__txt02 {
    margin-top: 25px;
  }
}
.top-main .quality__title {
  width: 170px;
  height: auto;
}
@media (max-width: 1099px) {
  .top-main .quality__title {
    margin: 0 auto;
  }
}
.top-main .quality__contents {
  flex: 1;
  margin-left: 180px;
}
@media (max-width: 1099px) {
  .top-main .quality__contents {
    margin-left: 0;
    margin-top: 24rem;
  }
}
.top-main .quality__contents__title {
  color: #00A4D6;
  margin-bottom: 40px;
  font-weight: 550;
  padding-bottom: 8px;
  display: inline;
  background-image: radial-gradient(circle, #00A4D6 1px, transparent 2px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 6px 5px;
  font-size: 28px;
  line-height: 57px;
}
@media (max-width: 1099px) {
  .top-main .quality__contents__title {
    font-size: 18px;
    font-weight: 600;
    line-height: 2.5;
  }
}
.top-main .quality__title-wrapper {
  position: relative;
  margin-bottom: 40px;
}
.top-main .quality__title-wrapper .txt {
  position: absolute;
  top: 67px;
}
@media (max-width: 1099px) {
  .top-main .quality__title-wrapper .txt {
    left: 34%;
  }
}
@media (min-width: 500px) and (max-width: 1099px) {
  .top-main .quality__title-wrapper .txt {
    left: 43%;
  }
}
.top-main .quality__contact {
  display: flex;
  margin-top: 50px;
  justify-content: left;
}
@media (min-width: 1100px) {
  .top-main .quality__contact__wrapper {
    display: flex;
  }
  .top-main .quality__contact__wrapper .information {
    margin-left: 50px;
  }
}
@media (max-width: 1099px) {
  .top-main .quality__contact {
    justify-content: flex-end;
    width: 100%;
    margin-top: 40px;
  }
}
.top-main .quality__contact__txt {
  font-size: 16px;
  margin-right: 10px;
  display: flex;
  align-items: center;
}
.top-main .quality__contact__link {
  display: flex;
}
@media (max-width: 1099px) {
  .top-main .quality__contact__link {
    align-items: center;
    justify-content: flex-end;
  }
}
@media (max-width: 1099px) {
  .top-main .quality__contact__information {
    margin-top: 20px;
  }
}
.top-main .features__bg {
  background-color: #3C5F75;
}
.top-main .features__title-wrapper {
  position: relative;
  margin-bottom: 70px;
}
@media (max-width: 1099px) {
  .top-main .features__title-wrapper {
    margin-bottom: 60px;
  }
}
.top-main .features__title-wrapper .txt {
  position: absolute;
  top: 67px;
  left: 11px;
  width: max-content;
  padding-top: 0;
}
.top-main .features__head-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.top-main .features__container {
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.top-main .features__title {
  width: 215px;
  height: auto;
  margin-bottom: 20px;
}
.top-main .features__txt {
  color: #FFFFFF;
  padding-top: 10px;
}
@media (max-width: 1099px) {
  .top-main .features__txt {
    padding-top: 0;
  }
}
.top-main .features__txt__big {
  font-weight: 700;
  font-size: 36px;
}
@media (max-width: 1099px) {
  .top-main .features__txt__big {
    font-size: 24px;
  }
}
.top-main .features__txt__small {
  font-size: 11px;
}
.top-main .features__txt .number {
  min-width: 100px;
}
@media (min-width: 1100px) {
  .top-main .features__txt .number {
    display: flex;
    justify-content: left;
    align-items: baseline;
  }
}
@media (max-width: 1099px) {
  .top-main .features__txt .number {
    margin: auto 0;
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
  }
}
@media (max-width: 1099px) {
  .top-main .features__txt .number .value {
    font-size: 30px;
  }
}
.top-main .features__txt .number .unit {
  margin-left: 5px;
}
@media (max-width: 1099px) {
  .top-main .features .number-sp {
    display: flex;
    align-items: baseline;
    justify-content: center;
    color: #FFFFFF;
  }
}
.top-main .features__txt01 {
  margin-bottom: 40px;
  letter-spacing: 3px;
}
.top-main .features__txt02 {
  margin-bottom: 100px;
  max-width: 555px;
}
@media (min-width: 1100px) {
  .top-main .features__txt02 {
    text-align: center;
  }
}
@media (max-width: 1099px) {
  .top-main .features__txt02 {
    text-align: justify;
    max-width: 455px;
    margin-bottom: 50px;
  }
}
@media (min-width: 1100px) {
  .top-main .features__txt03 {
    display: flex;
    justify-content: left;
  }
}
@media (max-width: 1099px) {
  .top-main .features__txt03 {
    font-size: 29px;
    text-align: center;
  }
}
.top-main .features__contents {
  display: grid;
}
@media (min-width: 1100px) {
  .top-main .features__contents {
    place-items: center;
  }
}
.top-main .features__wrapper02 {
  margin-top: 50px;
}
@media (max-width: 1099px) {
  .top-main .features__wrapper02 {
    margin-top: 0;
  }
}
.top-main .features__item-container {
  display: flex;
  gap: 0 100px;
}
@media (max-width: 1099px) {
  .top-main .features__item-container {
    gap: 0 1rem;
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .top-main .features__item-container {
    gap: 0 2.5rem;
  }
}
.top-main .features__item-container .features-wrapper {
  display: flex;
  gap: 25px;
}
@media (max-width: 1099px) {
  .top-main .features__item-container .features-wrapper {
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    place-items: center;
    gap: 7px;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .top-main .features__item-container .features-wrapper {
    padding: 0 4rem;
    gap: 25px;
  }
}
.top-main .features__item-container .features-wrapper .item-divider {
  height: 80px;
  border-left: 1px solid #ffffff;
  align-self: center;
}
.top-main .features__item-container .features-wrapper .item-divider_02 {
  height: 50px;
  border-left: 1px solid #ffffff;
  align-self: center;
}
@media (max-width: 1099px) {
  .top-main .features__item-container .item-divider-bottom {
    width: 100%;
    border-bottom: 1px solid #ffffff;
    align-self: center;
    margin: 20px 0;
  }
}
.top-main .features__item01 {
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1099px) {
  .top-main .features__item01 {
    width: 7rem;
    margin: 0;
  }
}
.top-main .features__item02 {
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1099px) {
  .top-main .features__item02 {
    width: 6rem;
    margin: 0;
  }
}
.top-main .features__img01 {
  width: 55px;
  height: auto;
}
@media (max-width: 1099px) {
  .top-main .features__img01 {
    width: 50px;
    height: auto;
  }
}
.top-main .features__img02 {
  width: 45px;
  height: auto;
}
@media (max-width: 1099px) {
  .top-main .features__img02 {
    width: 50px;
    height: auto;
  }
}
.top-main .features__img03 {
  width: 55px;
  height: auto;
}
@media (max-width: 1099px) {
  .top-main .features__img03 {
    width: 50px;
    height: auto;
  }
}
.top-main .features__img04 {
  width: 40px;
  height: auto;
}
@media (max-width: 1099px) {
  .top-main .features__img04 {
    width: 33px;
    height: auto;
  }
}
.top-main .features__img05 {
  width: 40px;
  height: auto;
}
@media (max-width: 1099px) {
  .top-main .features__img05 {
    width: 38px;
    height: auto;
  }
}
.top-main .features__h3 {
  font-size: 21px;
  font-weight: 500;
}
@media (min-width: 1100px) {
  .top-main .features__h3 {
    display: flex;
    justify-content: left;
  }
}
@media (max-width: 1099px) {
  .top-main .features__h3 {
    font-size: 17px;
    margin: auto 0;
    text-align: center;
  }
}
.top-main .interview__bg {
  background-color: #F2F2F2;
}
.top-main .interview__title-wrapper {
  position: relative;
  margin-bottom: 40px;
}
.top-main .interview__title-wrapper .txt {
  position: absolute;
  top: 67px;
}
.top-main .interview__head-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1099px) {
  .top-main .interview__head-wrapper {
    padding: 0 20px;
  }
}
.top-main .interview__wrapper {
  padding-top: 100px;
  padding-bottom: 100px;
  /* 画像スライド */
}
@media (max-width: 1099px) {
  .top-main .interview__wrapper {
    padding-bottom: 50px;
  }
}
.top-main .interview__wrapper .interview__img > div {
  transform: translateX(800px);
  opacity: 0;
}
.top-main .interview__wrapper .interview__img.active > div {
  animation: slideIn 1s ease-out forwards;
}
@keyframes slideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.top-main .interview__title {
  width: 235px;
  height: auto;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media (max-width: 1099px) {
  .top-main .interview__hover-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
}
.top-main .interview__txt01 {
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 3px;
}
.top-main .interview__txt02 {
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
}
@media (max-width: 1099px) {
  .top-main .interview__txt02 {
    max-width: 455px;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 50px;
  }
}
.top-main .interview__txt03 {
  font-size: 16px;
  margin: 0 0 12px 0;
}
@media screen and (max-width: 1480px) {
  .top-main .interview__txt03 {
    margin: 0 0 10px 0;
    font-size: 16px;
  }
}
@media (max-width: 1099px) {
  .top-main .interview__txt03 {
    margin: 0 0 10px 0;
    font-size: 15px;
  }
}
@media (min-width: 635px) and (max-width: 1099px) {
  .top-main .interview__txt03 {
    font-size: 20px;
  }
}
.top-main .interview__txt04 {
  font-size: 23px;
  margin-bottom: 20px;
  font-weight: 600;
}
@media screen and (max-width: 1480px) {
  .top-main .interview__txt04 {
    margin-bottom: 10px;
    font-size: 20px;
  }
}
@media (max-width: 1099px) {
  .top-main .interview__txt04 {
    font-size: 17px;
  }
}
@media (min-width: 635px) and (max-width: 1099px) {
  .top-main .interview__txt04 {
    font-size: 27px;
  }
}
.top-main .interview__txt05 {
  font-size: 13px;
}
.top-main .interview__img {
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1099px) {
  .top-main .interview__img {
    display: block;
  }
}
.top-main .interview__img__contents {
  max-width: 640px;
  margin-bottom: 50px;
  height: auto;
}
@media (max-width: 1099px) {
  .top-main .interview__img__contents {
    margin: 0 auto 20px;
  }
}
.top-main .interview__img__contents .background-image {
  position: relative;
  max-width: 640px;
  overflow: hidden;
}
.top-main .interview__img__contents .background-image .interview-item {
  width: 100%;
  display: block;
  transition: filter 0.6s ease-in-out;
}
.top-main .interview__img__contents .background-image .hover-area {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 0 40px;
  padding-left: 80px;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  opacity: 1;
}
.top-main .interview__img__contents .background-image .hover-area .hover-initial {
  opacity: 1;
  transition: opacity 0.6s ease;
  z-index: 2;
}
.top-main .interview__img__contents .background-image .hover-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 3;
  color: #FFFFFF;
  width: 100%;
  height: 100%;
}
.top-main .interview__img__contents .background-image .hover-hover__inner {
  padding: 40px 10% 20px;
  height: 100%;
}
@media screen and (max-width: 1485px) {
  .top-main .interview__img__contents .background-image .hover-hover__inner {
    padding: 20px 10% 20px;
  }
}
@media (max-width: 1099px) {
  .top-main .interview__img__contents .background-image .hover-hover__inner {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 1100px) {
  .top-main .interview__img__contents .background-image:hover .interview-item {
    filter: brightness(0.5);
  }
  .top-main .interview__img__contents .background-image:hover .hover-area {
    opacity: 0;
    transform: translateY(0);
  }
  .top-main .interview__img__contents .background-image:hover .hover-hover {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
  }
}
@media (max-width: 1099px) {
  .top-main .interview__img__contents .background-image > img {
    filter: brightness(0.5);
  }
  .top-main .interview__img__contents .background-image .hover-area {
    opacity: 0;
    transform: translateY(0);
  }
  .top-main .interview__img__contents .background-image .hover-hover {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
  }
}
.top-main .interview__hover-txt {
  max-width: 330px;
  height: 94px;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin-bottom: 20px;
}
@media (max-width: 1099px) {
  .top-main .interview__hover-txt {
    display: none;
  }
}
.top-main .interview__link {
  margin-bottom: 40px;
}
@media (max-width: 1099px) {
  .top-main .interview__link {
    flex-grow: 1;
    display: flex;
    align-items: flex-end;
  }
}
.top-main .interview__link__wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 1099px) {
  .top-main .interview__link__wrapper {
    justify-content: flex-start;
    width: width;
  }
}
.top-main .interview__link__txt {
  font-size: 16px;
  margin-right: 10px;
  display: flex;
  align-items: center;
}
.top-main .and-more__title {
  width: 245px;
  height: auto;
  margin: 0 auto;
  padding-top: 100px;
  margin-bottom: 20px;
}
.top-main .and-more__txt {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 1099px) {
  .top-main .and-more__txt {
    margin-bottom: 50px;
  }
}
@media (max-width: 1099px) {
  .top-main .and-more__wrapper {
    padding: 0 20px 50px;
  }
  .top-main .and-more .ads-2 {
    display: flex;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
  .top-main .and-more .ads-1 {
    width: 100%;
  }
  .top-main .and-more .ads-3 {
    width: 65%;
    height: auto;
    margin: 0 auto;
  }
  .top-main .and-more .ads-sp {
    margin: 10px auto;
  }
  .top-main .and-more .ads-sp li {
    margin: auto 0;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .top-main .and-more .ads-2 {
    display: flex;
    gap: 50px;
    grid-template-columns: repeat(2, 1fr);
  }
  .top-main .and-more .ads {
    padding-left: 25%;
    padding-right: 25%;
  }
}
@media (min-width: 1100px) {
  .top-main .and-more .ad-slider {
    overflow: hidden;
    width: 100%;
    height: auto;
    position: relative;
    padding-bottom: 100px;
  }
  .top-main .and-more .ad-slider ul {
    display: flex;
    width: max-content;
  }
  .top-main .and-more .ad-slider ul li {
    flex: 0 0 auto;
    margin-right: 60px;
  }
  .top-main .and-more .ad-slider ul li img {
    height: 70px;
    display: block;
    width: auto;
  }
  .top-main .and-more .ad-slider ul.first-time {
    transform: translateX(70px);
  }
  .top-main .and-more .ad-slider .ad-track {
    animation: scroll-left linear infinite;
  }
  .top-main .and-more .ad-slider .ad-track.first-time {
    animation: scroll-left70px linear infinite;
  }
  @keyframes scroll-left70px {
    0% {
      transform: translateX(70px);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
}
.top-main .special {
  overflow: hidden;
  /* オーバーレイの黒背景 */
  /* 矢印画像 */
  /* YouTubeサムネイルをモーダルウィンドウで再生する */
}
.top-main .special__title-wrapper {
  position: relative;
  margin-bottom: 40px;
}
.top-main .special__title-wrapper .txt {
  position: absolute;
  top: 67px;
}
@media screen and (max-width: 1099px) {
  .top-main .special__title-wrapper .txt {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
}
@media (min-width: 1100px) {
  .top-main .special__bg {
    display: flex;
    width: 100%;
    height: 560px;
    position: relative;
  }
  .top-main .special__bg .image-area {
    width: 70%;
    overflow: hidden;
    position: relative;
    background-color: #5C7886;
  }
  .top-main .special__bg .image-area img {
    height: 100%;
    width: auto;
    position: absolute;
    right: 0;
    top: 0;
  }
  .top-main .special__bg .overlay-text1 {
    position: absolute;
    top: 48%;
    left: 60%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
    padding: 1rem;
  }
  .top-main .special__bg .content-area {
    width: 30%;
    padding: 2rem;
  }
}
@media (max-width: 1099px) {
  .top-main .special__bg {
    background: url(/education/assets/images/teacher-dispatch/top/special-sp-small_bg.jpg) no-repeat;
    background-size: cover;
    background-color: #5C7886;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .top-main .special__bg {
    background: url(/education/assets/images/teacher-dispatch/top/special-sp-small_bg.jpg) no-repeat right center;
    background-size: contain;
    background-color: #5C7886;
  }
}
.top-main .special__inner {
  padding: 0 0 240px;
  display: flex;
}
@media (max-width: 1099px) {
  .top-main .special__inner {
    position: relative;
    display: block;
    padding: 20rem 20px;
  }
}
.top-main .special__container {
  color: #FFFFFF;
  margin-left: auto;
  padding-left: 50px;
}
@media (max-width: 1099px) {
  .top-main .special__container {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-left: 0;
  }
}
@media (min-width: 1100px) {
  .top-main .special__txt {
    text-align: left;
    width: 500px;
  }
}
.top-main .special__title {
  width: 175px;
  height: auto;
}
@media (max-width: 1099px) {
  .top-main .special__title {
    margin: 0 auto;
  }
}
.top-main .special__txt01 {
  margin-top: 10px;
  margin-bottom: 30px;
  letter-spacing: 5px;
}
@media (max-width: 1099px) {
  .top-main .special__txt01 {
    text-align: center;
  }
}
.top-main .special__txt02 {
  font-size: 21px;
}
@media (max-width: 1099px) {
  .top-main .special__txt02 {
    text-align: center;
    font-size: 17px;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .top-main .special__txt02 {
    font-size: 21px;
  }
}
.top-main .special__txt03 {
  font-size: 35px;
}
@media (max-width: 1099px) {
  .top-main .special__txt03 {
    font-size: 26px;
    text-align: center;
    white-space: nowrap;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .top-main .special__txt03 {
    font-size: 31px;
  }
}
.top-main .special .slider-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-left: 90px;
}
@media (max-width: 1099px) {
  .top-main .special .slider-container {
    margin-left: 0;
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .top-main .special .slider-container {
    top: 72%;
  }
}
.top-main .special .slider-wrapper {
  overflow: hidden;
  position: relative;
  width: 750px;
}
@media (max-width: 1099px) {
  .top-main .special .slider-wrapper {
    max-width: 350px;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .top-main .special .slider-wrapper {
    max-width: 500px;
  }
}
.top-main .special .slider {
  display: flex;
  transition: transform 0.5s ease;
}
.top-main .special .slide-wrapper {
  position: relative;
  width: 300px;
  flex-shrink: 0;
  margin-right: 142px;
}
@media (max-width: 1099px) {
  .top-main .special .slide-wrapper {
    width: 287px;
    margin-right: 0;
    margin-left: 2rem;
  }
}
.top-main .special .youtube_modal {
  position: relative;
  width: 100%;
  height: 158px;
  overflow: hidden;
}
@media (max-width: 1099px) {
  .top-main .special .youtube_modal {
    padding-left: 0%;
  }
}
.top-main .special .overlay-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.top-main .special .slide-wrapper.overlay .overlay-layer {
  opacity: 1;
}
.top-main .special .arrow img {
  width: 12px;
  height: auto;
  display: block;
}
.top-main .special .arrow.left,
.top-main .special .arrow.right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
}
.top-main .special .arrow.left {
  left: -33px;
}
.top-main .special .arrow.right {
  left: 460px;
}
.top-main .special .arrow.hidden {
  display: none;
}
.top-main .special .slide-wrapper.overlay .youtube_modal {
  pointer-events: none;
  cursor: default;
}
.top-main .special #youtube_wrap {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.top-main .special .youtube_modal {
  display: block;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-top: 29.25%;
  padding-left: 45%;
}
@media (max-width: 1099px) {
  .top-main .special .youtube_modal {
    padding-top: 5%;
    padding-left: 5%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .top-main .special .youtube_modal {
    padding-top: 38%;
    padding-left: 63%;
  }
}
.top-main .special .youtube_modal iframe, .top-main .special .youtube_modal a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top-main .service__title-wrapper {
  position: relative;
  margin-bottom: 70px;
}
@media (max-width: 1099px) {
  .top-main .service__title-wrapper {
    margin-bottom: 60px;
  }
}
.top-main .service__title-wrapper .txt {
  position: absolute;
  top: 165px;
  width: max-content;
  left: -15px;
}
.top-main .service__bg {
  background: url(/education/assets/images/teacher-dispatch/top/service_bg.jpg) no-repeat center center;
  background-size: cover;
}
@media (max-width: 1099px) {
  .top-main .service__bg {
    background: url(/education/assets/images/teacher-dispatch/top/service-sp_bg.jpg) no-repeat center center;
    background-size: cover;
  }
}
.top-main .service__bg .rolling-container {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 1099px) {
  .top-main .service__bg .rolling-container {
    display: block;
  }
}
.top-main .service__bg .rolling {
  position: relative;
  opacity: 0;
  transform: translateX(-200px) rotate(0deg);
}
@media (max-width: 1099px) {
  .top-main .service__bg .rolling {
    margin: 0 auto 40px;
    transform: translateX(-100px) rotate(0deg);
  }
}
.top-main .service__bg .circle-wrapper {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 20px;
}
@media (max-width: 1099px) {
  .top-main .service__bg .circle-wrapper {
    margin: 0 auto 40px;
  }
}
.top-main .service__bg .circle-wrapper img {
  transform: scale(1);
  transition: transform 0.5s ease;
}
.top-main .service__bg .circle-wrapper:hover img {
  transform: scale(1.1);
}
.top-main .service__bg .circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.top-main .service__bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.top-main .service__bg .caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
  text-align: center;
  width: 220px;
}
.top-main .service__bg .caption__img {
  width: 51px;
}
.top-main .service__bg .caption__txt01 {
  padding: 10px 0 30px;
  font-weight: 600;
}
.top-main .service__bg .caption__txt02 {
  font-size: 15px;
}
.top-main .service__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.top-main .service__title {
  width: 205px;
  height: auto;
  margin: 0 auto;
  padding-top: 100px;
  margin-bottom: 20px;
}
.top-main .service__txt01 {
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 3px;
}
.top-main .service__txt02 {
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
}
@media (min-width: 1100px) {
  .top-main .service__txt02 {
    text-align: center;
  }
}
@media (max-width: 1099px) {
  .top-main .service__txt02 {
    max-width: 455px;
    text-align: justify;
    margin-bottom: 50px;
  }
}
.top-main .service__request {
  display: flex;
  justify-content: center;
  margin-top: 70px;
  padding-bottom: 100px;
}
@media (max-width: 1099px) {
  .top-main .service__request {
    justify-content: flex-start;
    margin-top: 20px;
  }
}
.top-main .service__request__wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 1099px) {
  .top-main .service__request__wrapper {
    justify-content: center;
    width: 100%;
  }
}
.top-main .service__request__txt {
  font-size: 16px;
  margin-right: 10px;
  display: flex;
  align-items: center;
}
.top-main .teachers__title-wrapper {
  position: relative;
  margin-bottom: 80px;
}
@media (max-width: 1099px) {
  .top-main .teachers__title-wrapper {
    margin-bottom: 60px;
  }
}
.top-main .teachers__title-wrapper .txt {
  position: absolute;
  top: 60px;
  left: 46%;
}
@media (max-width: 1099px) {
  .top-main .teachers__title-wrapper .txt {
    left: 31%;
    width: max-content;
  }
}
@media (min-width: 500px) and (max-width: 1099px) {
  .top-main .teachers__title-wrapper .txt {
    left: 31%;
    width: max-content;
  }
}
@media (max-width: 1099px) {
  .top-main .teachers__head-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.top-main .teachers__title {
  width: 225px;
  height: auto;
  margin: 0 auto;
  margin-bottom: 20px;
}
.top-main .teachers__wrapper {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .top-main .teachers__wrapper {
    padding-left: 15%;
    padding-right: 15%;
  }
}
.top-main .teachers__txt01 {
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 3px;
}
.top-main .teachers__txt02 {
  text-align: center;
  margin-bottom: 100px;
}
@media (max-width: 1099px) {
  .top-main .teachers__txt02 {
    text-align: left;
    max-width: 455px;
    text-align: justify;
    margin-bottom: 50px;
  }
}
.top-main .teachers__container {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 100px;
}
@media (max-width: 1099px) {
  .top-main .teachers__container {
    display: block;
    margin-bottom: 50px;
  }
}
.top-main .teachers__container img {
  max-width: 220px;
  height: auto;
}
@media (max-width: 1099px) {
  .top-main .teachers__container img {
    width: 100%;
  }
}
.top-main .teachers__container div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.top-main .teachers__container div .name, .top-main .teachers__container div .span {
  font-weight: 400;
  text-align: center;
}
.top-main .teachers__container div .name {
  margin: 26px 0 0;
}
.top-main .teachers__list {
  display: flex;
  justify-content: center;
}
@media (max-width: 1099px) {
  .top-main .teachers__list {
    justify-content: flex-start;
  }
}
.top-main .teachers__list__wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 1099px) {
  .top-main .teachers__list__wrapper {
    justify-content: center;
    width: 100%;
  }
}
.top-main .teachers__list__txt {
  font-size: 16px;
  margin-right: 10px;
  display: flex;
  align-items: center;
}
.top-main .details__title-wrapper {
  position: relative;
  margin-bottom: 75px;
}
@media (max-width: 1099px) {
  .top-main .details__title-wrapper {
    margin-bottom: 60px;
  }
}
.top-main .details__title-wrapper .txt {
  position: absolute;
  top: 102px;
}
@media (max-width: 1099px) {
  .top-main .details__title-wrapper .txt {
    left: 36%;
    width: max-content;
  }
}
@media (min-width: 500px) and (max-width: 1099px) {
  .top-main .details__title-wrapper .txt {
    left: 45%;
    width: max-content;
  }
}
.top-main .details__bg {
  background: url(/education/assets/images/teacher-dispatch/top/details_bg.jpg) no-repeat center bottom;
  background-size: contain;
  overflow: hidden;
  background-color: #5C7886;
}
@media (max-width: 1099px) {
  .top-main .details__bg {
    background: url(/education/assets/images/teacher-dispatch/top/details-small_bg.jpg) no-repeat left bottom;
    background-size: cover;
  }
}
@media (min-width: 500px) and (max-width: 1099px) {
  .top-main .details__bg {
    background: url(/education/assets/images/teacher-dispatch/top/details-sp_bg.jpg) no-repeat center center;
    background-size: cover;
  }
}
.top-main .details__title {
  width: 170px;
  height: auto;
  padding-top: 40px;
  margin-bottom: 20px;
}
@media (max-width: 1099px) {
  .top-main .details__title {
    margin: 0 auto 20px;
  }
}
.top-main .details__wrapper {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 1099px) {
  .top-main .details__wrapper {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
.top-main .details__container {
  display: flex;
  padding-top: 50px;
  justify-content: center;
}
@media (max-width: 1099px) {
  .top-main .details__container {
    display: block;
    padding-top: 0;
  }
}
.top-main .details__img {
  width: 330px;
  height: auto;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 1s ease-out, opacity 0.5s ease-out;
}
@media (max-width: 1099px) {
  .top-main .details__img {
    width: 180px;
    margin: 0 auto;
    transform: translateX(50%);
    padding-top: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .top-main .details__img {
    width: 255px;
  }
}
.top-main .details__img.active {
  opacity: 1;
  transform: translateX(0);
}
.top-main .details__txt {
  color: #FFFFFF;
  margin-left: 100px;
}
@media (max-width: 1099px) {
  .top-main .details__txt {
    margin-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
.top-main .details__txt01 {
  margin-bottom: 40px;
  letter-spacing: 3px;
  color: #FFFFFF;
}
@media (max-width: 1099px) {
  .top-main .details__txt01 {
    text-align: center;
  }
}
.top-main .details__txt02 {
  line-height: 2;
}
@media (max-width: 1099px) {
  .top-main .details__txt02 {
    line-height: 2.5;
  }
}
.top-main .details__dawnload {
  display: flex;
  margin-top: 50px;
}
@media (max-width: 1099px) {
  .top-main .details__dawnload {
    margin-top: 20px;
    width: 100%;
  }
}
.top-main .details__dawnload__wrapper {
  display: flex;
}
@media (max-width: 1099px) {
  .top-main .details__dawnload__wrapper {
    width: 100%;
    justify-content: center;
  }
}
.top-main .details__dawnload__txt {
  font-size: 16px;
  margin-right: 10px;
  display: flex;
  align-items: center;
}
.top-main .news__title-wrapper {
  position: relative;
  margin-bottom: 100px;
}
@media (max-width: 1099px) {
  .top-main .news__title-wrapper {
    margin-bottom: 50px;
  }
}
.top-main .news__title-wrapper .txt {
  position: absolute;
  top: 60px;
  left: 46%;
}
@media (max-width: 1099px) {
  .top-main .news__title-wrapper .txt {
    left: 36%;
    width: max-content;
  }
}
@media (min-width: 500px) and (max-width: 1099px) {
  .top-main .news__title-wrapper .txt {
    left: 43%;
    width: max-content;
  }
}
.top-main .news__bg {
  background-color: #F6F5EC;
}
.top-main .news__wrapper {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .top-main .news__wrapper {
    padding-left: 15%;
    padding-right: 15%;
  }
}
.top-main .news__title {
  width: 135px;
  height: auto;
  margin: 0 auto;
  margin-bottom: 20px;
}
.top-main .news__txt01 {
  text-align: center;
  margin-bottom: 100px;
  letter-spacing: 3px;
}
.top-main .news__list {
  padding: 10px 0;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
}
.top-main .news__list .date {
  font-weight: 400;
  line-height: 2;
}

.kv {
  height: 386px;
  margin-top: 133px;
}
.kv__img {
  height: 100%;
  background-image: url(/education/assets/images/teacher-dispatch/teachers/kv.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}
@media (max-width: 1099px) {
  .kv__img {
    height: 100%;
    background-image: url(/education/assets/images/teacher-dispatch/teachers/kv.jpg);
    background-size: cover;
    background-position: center;
  }
}
@media screen and (max-width: 1240px) {
  .kv {
    height: 250px;
    margin-top: 60px;
  }
}

.teachers-list .teachers-detail__bg {
  background-color: #F2F2F2;
}
.teachers-list .teachers-detail__title-wrapper {
  position: relative;
  margin-bottom: 100px;
}
@media (max-width: 1099px) {
  .teachers-list .teachers-detail__title-wrapper {
    margin-bottom: 60px;
  }
}
.teachers-list .teachers-detail__title-wrapper .txt {
  position: absolute;
  top: 60px;
  left: 46%;
}
@media (max-width: 1099px) {
  .teachers-list .teachers-detail__title-wrapper .txt {
    left: 36%;
    width: max-content;
  }
}
@media (min-width: 500px) and (max-width: 1099px) {
  .teachers-list .teachers-detail__title-wrapper .txt {
    left: 34%;
    width: max-content;
  }
}
@media (max-width: 1099px) {
  .teachers-list .teachers-detail__head-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.teachers-list .teachers-detail__title {
  width: 225px;
  height: auto;
  margin: 0 auto;
  margin-bottom: 20px;
}
.teachers-list .teachers-detail__wrapper {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 1099px) {
  .teachers-list .teachers-detail__wrapper {
    padding-bottom: 80px;
  }
}
@media (max-width: 1099px) {
  .teachers-list .teachers-detail__wrapper .more-list .more-btn {
    margin-top: 30px;
  }
}
.teachers-list .teachers-detail__txt01 {
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 3px;
}
.teachers-list .teachers-detail__txt02 {
  text-align: center;
  margin-bottom: 100px;
}
@media (max-width: 1099px) {
  .teachers-list .teachers-detail__txt02 {
    text-align: justify;
    max-width: 455px;
    margin-bottom: 50px;
  }
}
.teachers-list .teachers-detail__container {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 100px;
}
@media (max-width: 1099px) {
  .teachers-list .teachers-detail__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
  }
}
.teachers-list .teachers-detail__container img {
  max-width: 220px;
  height: auto;
}
.teachers-list .teachers-detail__container li {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.teachers-list .teachers-detail__container li .name, .teachers-list .teachers-detail__container li .span {
  font-weight: 400;
  text-align: center;
}
.teachers-list .teachers-detail__container li .name {
  margin: 26px 0 0;
}
.teachers-list .teachers-detail__container li .description {
  margin: 20px;
  overflow-y: auto;
  height: 102px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  text-align: justify;
}
@media (max-width: 1099px) {
  .teachers-list .teachers-detail__container li .description {
    height: 100px;
  }
}
.teachers-list .teachers-detail__container li .description-wrap.scrollable {
  position: relative;
}
.teachers-list .teachers-detail__container li .description-wrap.scrollable:after {
  content: "…";
  position: absolute;
  width: 28px;
  line-height: 0.5;
  text-align: center;
  background: #f2f2f2;
  right: calc(50% - 28px);
  transform: translateX(-50%);
  bottom: 5px;
  font-weight: 600;
}
.teachers-list .teachers-detail__container li .description-wrap.scrollable.scroll-end:after {
  content: "";
}
.teachers-list .teachers-detail__list {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}
.teachers-list .teachers-detail__list__wrapper {
  display: flex;
  align-items: center;
}
.teachers-list .teachers-detail__list__txt {
  font-size: 16px;
  margin-right: 10px;
  display: flex;
  align-items: center;
}
.teachers-list .movie {
  overflow: hidden;
  /* オーバーレイの黒背景 */
  /* 矢印画像 */
  /* YouTubeサムネイルをモーダルウィンドウで再生する */
}
.teachers-list .movie__title-wrapper {
  position: relative;
  margin-bottom: 100px;
}
@media (max-width: 1099px) {
  .teachers-list .movie__title-wrapper {
    margin-bottom: 60px;
  }
}
.teachers-list .movie__title-wrapper .txt {
  position: absolute;
  top: 48px;
  left: 0;
}
@media (max-width: 1099px) {
  .teachers-list .movie__title-wrapper .txt {
    left: 22%;
    width: max-content;
  }
}
@media (min-width: 500px) and (max-width: 1099px) {
  .teachers-list .movie__title-wrapper .txt {
    left: 34%;
    width: max-content;
  }
}
@media (max-width: 1099px) {
  .teachers-list .movie__bg {
    background: url(/education/assets/images/teacher-dispatch/teachers/movie-sp_bg.jpg) no-repeat left bottom;
    background-size: cover;
    background-color: #5C7886;
  }
}
@media (min-width: 500px) and (max-width: 1099px) {
  .teachers-list .movie__bg {
    background: url(/education/assets/images/teacher-dispatch/teachers/movie-sp_bg.jpg) no-repeat left bottom;
    background-size: contain;
    background-color: #5C7886;
  }
}
@media (min-width: 1100px) {
  .teachers-list .movie__bg {
    display: flex;
    width: 100%;
    height: 560px;
    position: relative;
  }
  .teachers-list .movie__bg .image-area {
    width: 70%;
    overflow: hidden;
    position: relative;
    background-color: #5C7886;
  }
  .teachers-list .movie__bg .image-area img {
    height: 100%;
    width: auto;
    position: absolute;
    right: 0;
    top: 0;
  }
  .teachers-list .movie__bg .overlay-text1 {
    position: absolute;
    top: 48%;
    left: 77%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
    padding: 1rem;
  }
  .teachers-list .movie__bg .content-area {
    width: 30%;
    padding: 2rem;
  }
}
@media (min-width: 1100px) and (max-width: 1380px) {
  .teachers-list .movie__bg .overlay-text1 {
    position: absolute;
    top: 48%;
    left: 86%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
    padding: 1rem;
  }
}
.teachers-list .movie__inner {
  padding: 100px 0 150px;
  display: flex;
}
@media (max-width: 1099px) {
  .teachers-list .movie__inner {
    display: block;
    padding-bottom: 100px;
  }
}
.teachers-list .movie__container {
  color: #FFFFFF;
  margin-left: auto;
  padding-left: 50px;
}
@media (max-width: 1099px) {
  .teachers-list .movie__container {
    padding-left: 0;
    margin: 0 auto;
  }
}
@media (max-width: 1099px) {
  .teachers-list .movie__container .swiper-slide {
    max-width: 300px;
    width: 100%;
    margin-right: 20px;
  }
  .teachers-list .movie__container .swiper-container {
    padding-left: 0;
    padding-right: 0;
  }
  .teachers-list .movie__container .swiper-wrapper {
    display: flex;
  }
  .teachers-list .movie__container .swiper-slide {
    max-width: 300px;
    box-sizing: border-box;
  }
}
.teachers-list .movie__title {
  width: 155px;
  height: auto;
}
@media (max-width: 1099px) {
  .teachers-list .movie__title {
    margin: 0 auto;
  }
}
.teachers-list .movie__txt01 {
  margin-top: 20px;
  margin-bottom: 30px;
  text-align: left;
  letter-spacing: 3px;
}
@media (max-width: 1099px) {
  .teachers-list .movie__txt01 {
    text-align: center;
  }
}
.teachers-list .movie__txt02 {
  text-align: left;
}
@media (max-width: 1099px) {
  .teachers-list .movie__txt02 {
    margin-bottom: 50px;
  }
}
.teachers-list .movie .slider-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
}
@media (max-width: 1099px) {
  .teachers-list .movie .slider-container {
    margin-left: 60px;
  }
}
.teachers-list .movie .slider-wrapper {
  overflow: hidden;
  position: relative;
  width: 1320px;
}
.teachers-list .movie .slider {
  display: flex;
  transition: transform 0.5s ease;
}
.teachers-list .movie .slide-wrapper {
  position: relative;
  width: 300px;
  flex-shrink: 0;
  margin-right: 142px;
}
.teachers-list .movie .youtube_modal {
  position: relative;
  width: 100%;
  height: 158px;
  overflow: hidden;
}
.teachers-list .movie .overlay-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.teachers-list .movie .slide-wrapper.overlay .overlay-layer {
  opacity: 1;
}
.teachers-list .movie .arrow img {
  width: 12px;
  height: auto;
  display: block;
}
.teachers-list .movie .arrow.left,
.teachers-list .movie .arrow.right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
}
.teachers-list .movie .arrow.left {
  left: -33px;
}
.teachers-list .movie .arrow.right {
  left: 460px;
}
.teachers-list .movie .arrow.hidden {
  display: none;
}
.teachers-list .movie .slide-wrapper.overlay .youtube_modal {
  pointer-events: none;
  cursor: default;
}
.teachers-list .movie #youtube_wrap {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.teachers-list .movie .youtube_modal {
  display: block;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-top: 29.25%;
  padding-left: 45%;
}
@media (max-width: 1099px) {
  .teachers-list .movie .youtube_modal {
    width: 100%;
    padding-top: 3.25%;
    padding-left: 0;
  }
}
.teachers-list .movie .youtube_modal iframe, .teachers-list .movie .youtube_modal a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 1100px) {
  .teachers-list .movie__txt {
    width: 500px;
  }
}
@media (max-width: 1099px) {
  .teachers-list .movie__txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}/*# sourceMappingURL=style.css.map */