@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/*HTML5での新規追加要素のデフォルトをブロック要素へ変更しています
（※Android2.1以前のブラウザではインライン要素となっているようでした）*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています
（※罫線の色を変える場合は#ccccccの部分を変更）*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  height: 100%;
  scroll-behavior: smooth;
}

/*リスト要素のリストスタイルと余白をリセットする
（※margin:0;は省略しても違いが見られなかったためpadding:0;のみ）*/
ul {
  list-style: none;
  padding: 0;
}

li {
  padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input, select {
  vertical-align: middle;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
  /*display: block;*/
  /*-webkit-tap-highlight-color:transparent;*/
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

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

.hide_pc {
  display: none;
}
@media screen and (max-width: 768px) {
  .hide_pc {
    display: block;
  }
}

.hide_sp {
  display: block;
}
@media screen and (max-width: 768px) {
  .hide_sp {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .hide_ssp {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .hide_ssp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .hide_ssp {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .hide_ssp {
    display: none;
  }
}
@media screen and (max-width: 375px) {
  .hide_ssp {
    display: block;
  }
}

body {
  background: #FFF5EF;
  background-image: url(../../assets/img/bg.png);
  background-repeat: repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: contain;
  position: relative;
  color: #000;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  text-align: left;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  position: relative;
  overflow-x: hidden;
  font-size: 1.6rem;
}

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

.wrapper {
  background-image: url(../img/bg01.png), url(../img/bg02.png);
  background-size: 40%, 40%;
  background-repeat: no-repeat, no-repeat;
  background-position: 0 0, 100% 0, 100% 100%;
  position: relative;
}
@media screen and (max-width: 480px) {
  .wrapper {
    background-image: url(../img/bg01.png), url(../img/bg02.png);
    background-size: 45%, 45%;
    background-repeat: no-repeat, no-repeat;
    background-position: 0 0, 100% 0;
  }
}

.wrapper-bg {
  margin: 0 auto;
}

.oubo__btn {
  width: 100%;
  max-width: 300px;
  height: 60px;
  text-decoration: none;
  margin: 50px auto;
  background: #ED6D01;
  border: 2px solid #000;
  border-radius: 80px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  box-shadow: 3px 3px 0 0 #000;
}

.l-top {
  position: relative;
  max-width: 780px;
  text-align: center;
  font-weight: bold;
  margin: 0 auto;
  text-align: left;
}
.l-top__box {
  max-width: 780px;
  margin: 0 auto;
}
.l-top__detail {
  background-image: url(../img/bg03.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 0 100%;
  position: relative;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .l-top__detail {
    padding-bottom: 70px;
  }
}
.l-top__booth-pc {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.6;
  display: block;
  border-radius: 30px;
  margin: 20px auto;
  padding: 20px;
  background-color: #f5e8e2;
}
@media screen and (max-width: 768px) {
  .l-top__booth-pc {
    display: none;
  }
}
.l-top__booth-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-top__booth-sp {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.6;
    display: block;
    border-radius: 30px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f5e8e2;
    width: 90%;
  }
}
.l-top__text {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 2.6;
}
@media screen and (max-width: 375px) {
  .l-top__text {
    font-size: 1.5rem;
  }
}
.l-top__text p {
  padding-bottom: 20px;
}
.l-top::before {
  content: "";
  display: block;
  width: 70%;
  height: 370px;
  background-repeat: no-repeat;
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-size: auto 500px;
  background: url(../../assets/img/hellosmile-logo.png) no-repeat center center;
  background-size: contain;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .l-top::before {
    width: 70%;
    height: 300px;
  }
}
@media screen and (max-width: 480px) {
  .l-top::before {
    width: 90%;
    height: 240px;
  }
}
.l-top__kitty {
  display: block;
  position: absolute;
  top: 280px;
  left: 43px;
  width: 122px;
}
@media screen and (max-width: 768px) {
  .l-top__kitty {
    width: 100px;
    top: 250px;
    left: 7%;
  }
}
@media screen and (max-width: 520px) {
  .l-top__kitty {
    left: 2%;
  }
}
@media screen and (max-width: 480px) {
  .l-top__kitty {
    width: 77px;
    left: 0;
    top: 347px;
  }
}
@media screen and (max-width: 375px) {
  .l-top__kitty {
    width: 78px;
    left: 0;
  }
}
.l-top__coco {
  display: block;
  position: absolute;
  bottom: -130px;
  left: 100px;
  width: 106px;
}
@media screen and (max-width: 768px) {
  .l-top__coco {
    left: 100px;
    width: 106px;
    bottom: -70px;
  }
}
@media screen and (max-width: 520px) {
  .l-top__coco {
    left: 60px;
    width: 100px;
  }
}
@media screen and (max-width: 480px) {
  .l-top__coco {
    width: 84px;
    left: 50px;
    bottom: -40px;
  }
}
@media screen and (max-width: 400px) {
  .l-top__coco {
    left: 30px;
  }
}
@media screen and (max-width: 375px) {
  .l-top__coco {
    width: 80px;
    left: 0px;
  }
}
.l-top__angie {
  display: block;
  position: absolute;
  bottom: -70px;
  right: 60px;
  width: 160px;
}
@media screen and (max-width: 768px) {
  .l-top__angie {
    width: 140px;
    right: 30px;
    bottom: 170px;
  }
}
@media screen and (max-width: 520px) {
  .l-top__angie {
    right: 2px;
  }
}
@media screen and (max-width: 480px) {
  .l-top__angie {
    width: 120px;
    right: 0px;
    bottom: 150px;
  }
}
@media screen and (max-width: 480px) {
  .l-top__angie {
    width: 110px;
    bottom: 210px;
  }
}
@media screen and (max-width: 340px) {
  .l-top__angie {
    width: 98px;
    bottom: 130px;
  }
}
.l-top__title {
  padding-top: 70px;
  text-align: center;
}
.l-top__p-small {
  font-size: 1.3rem;
  line-height: 1.8;
  display: block;
}
@media screen and (max-width: 768px) {
  .l-top__p-small {
    line-height: 2;
  }
}
.l-top__p-mid {
  font-size: 2.1rem;
  line-height: 1.5;
  display: block;
}
@media screen and (max-width: 480px) {
  .l-top__p-mid {
    font-size: 1.9rem;
  }
}
.l-top__about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .l-top__about {
    flex-direction: column;
    justify-content: center;
  }
}
.l-top__about p {
  padding-left: 10px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .l-top__about p {
    padding-left: 0;
    width: 90%;
    margin: 0 auto;
  }
}
.l-top__p-txt {
  line-height: 2.2;
}
.l-top__red {
  line-height: 1.6;
  padding: 3px 0;
}
.l-top__red span {
  color: #ef4c00;
}
.l-top__map {
  width: 46%;
}
@media screen and (max-width: 768px) {
  .l-top__map {
    width: 90%;
    margin-top: 40px;
  }
}
.l-top__oubo-button {
  position: absolute;
  right: 0;
  top: 250px;
  width: 140px;
}
@media screen and (max-width: 768px) {
  .l-top__oubo-button {
    width: 120px;
    right: 30px;
    top: 230px;
  }
}
@media screen and (max-width: 480px) {
  .l-top__oubo-button {
    width: 100px;
    right: 0px;
    top: 200px;
  }
}

.l-sol-bg {
  position: relative;
  background-color: #FFF9E5;
  background-image: url(../img/bg04.png);
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: 100% 0;
}
.l-sol-bg::before {
  content: "";
  display: block;
  width: 100px;
  height: 96px;
  background-repeat: no-repeat;
  position: absolute;
  top: 30px;
  left: 26%;
  transform: translateX(-50%);
  background-size: auto 500px;
  background: url(../../assets/img/ichibu.png) no-repeat center center;
  background-size: contain;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .l-sol-bg::before {
    left: 16%;
    top: 10px;
  }
}

.l-sol {
  position: relative;
  padding-top: 50px;
  max-width: 780px;
  margin: 0 auto;
}
.l-sol__coco {
  display: block;
  position: absolute;
  top: 410px;
  left: 5%;
  width: 106px;
}
@media screen and (max-width: 768px) {
  .l-sol__coco {
    left: 40px;
    width: 106px;
    bottom: -70px;
  }
}
@media screen and (max-width: 520px) {
  .l-sol__coco {
    left: 20px;
    width: 100px;
  }
}
@media screen and (max-width: 480px) {
  .l-sol__coco {
    width: 82px;
    left: 10px;
    top: 590px;
  }
}
@media screen and (max-width: 400px) {
  .l-sol__coco {
    left: 30px;
  }
}
@media screen and (max-width: 375px) {
  .l-sol__coco {
    width: 80px;
    left: 0px;
  }
}
.l-sol__angie {
  display: block;
  position: absolute;
  top: 790px;
  right: -10px;
  width: 160px;
}
@media screen and (max-width: 768px) {
  .l-sol__angie {
    width: 140px;
    right: 30px;
    bottom: 170px;
  }
}
@media screen and (max-width: 520px) {
  .l-sol__angie {
    right: 2px;
    top: 19%;
  }
}
@media screen and (max-width: 480px) {
  .l-sol__angie {
    width: 110px;
    top: 19%;
  }
}
@media screen and (max-width: 400px) {
  .l-sol__angie {
    width: 98px;
    top: 19%;
  }
}
@media screen and (max-width: 340px) {
  .l-sol__angie {
    width: 96px;
    top: 27.5%;
  }
}
.l-sol::before {
  content: "";
  display: block;
  width: 70%;
  height: 370px;
  background-repeat: no-repeat;
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-size: auto 500px;
  background: url(../../assets/img/anshin-talk.png) no-repeat center center;
  background-size: contain;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .l-sol::before {
    width: 73%;
  }
}
@media screen and (max-width: 480px) {
  .l-sol::before {
    width: 90%;
  }
}
.l-sol::after {
  content: "";
  display: block;
  width: 100%;
  height: 280px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: url(../../assets/img/bg06.png) no-repeat center center;
  background-size: cover;
  width: 100vw;
  z-index: 10;
}
.l-sol__text {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 2.4;
  margin-top: 80px;
}
@media screen and (max-width: 480px) {
  .l-sol__text {
    margin-top: 10px;
    font-size: 1.5rem;
  }
}
.l-sol__text p {
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .l-sol__text p {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .l-sol__text p {
    width: 90%;
    margin: 0 auto;
  }
}
.l-sol__text p span {
  padding: 3px;
  background: linear-gradient(transparent 60%, #9AC1F0 60%);
}
.l-sol__text p strong {
  padding: 3px;
  background: linear-gradient(transparent 60%, #FCAB70 60%);
}
.l-sol__text p a {
  padding: 3px;
  color: #ED6D01;
  text-decoration: underline;
}
.l-sol__title {
  padding: 50px 0 30px;
}
@media screen and (max-width: 768px) {
  .l-sol__title {
    width: 100%;
    margin: 0 auto;
    padding: 50px 0 0px;
  }
}
.l-sol__guest {
  padding: 60px 0;
  text-align: center;
}
.l-sol__line {
  border-top: 5px dotted #FCAB70;
  border-bottom: 5px dotted #FCAB70;
  max-width: 780px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-sol__line {
    width: 90%;
    margin: 0 auto;
  }
}
.l-sol__personality {
  display: flex;
  justify-content: center;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .l-sol__personality {
    width: 90%;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
.l-sol__personality p {
  display: flex;
  flex-direction: column;
  padding: 0 18px;
}
@media screen and (max-width: 768px) {
  .l-sol__personality p {
    padding: 20px 0;
    font-size: 1.8rem;
  }
}
.l-sol__personality img {
  padding-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .l-sol__personality img {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 10px;
  }
}
.l-sol__teacher {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .l-sol__teacher {
    width: 90%;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px 0;
  }
}
.l-sol__teacher-img {
  width: 30%;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .l-sol__teacher-img {
    width: 90%;
    padding-right: 0px;
    margin: 0 auto;
  }
}
.l-sol__teacher-img img {
  padding-right: 0;
  width: 90%;
}
.l-sol__teacher-text {
  width: 51%;
  text-align: left;
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .l-sol__teacher-text {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .l-sol h3 {
    margin-bottom: 20px;
  }
}
.l-sol__teacher-name {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .l-sol__teacher-name {
    text-align: center;
    margin-top: 10px;
    font-size: 1.8rem;
  }
}

.l-hellosmile {
  background-color: #ff9335;
  position: relative;
  padding: 90px 0;
  color: #ffffff;
}
.l-hellosmile__text {
  font-size: 1.4rem;
  line-height: 1.6;
  width: 60%;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .l-hellosmile__text {
    width: 80%;
    margin-top: 10px;
  }
}
.l-hellosmile__text p {
  padding-bottom: 20px;
}
.l-hellosmile h3 {
  font-size: 2.8rem;
  line-height: 2.4;
}
.l-hellosmile__title {
  padding: 60px 0 30px;
}
.l-hellosmile__personality {
  display: flex;
  justify-content: center;
  font-weight: bold;
}
.l-hellosmile__personality p {
  display: flex;
  flex-direction: column;
  padding: 0 18px;
}
.l-hellosmile__box {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .l-hellosmile__box {
    display: flex;
    flex-direction: column;
  }
}
.l-hellosmile__logo {
  width: 30%;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .l-hellosmile__logo {
    width: 100%;
    padding: 0;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .l-hellosmile__logo img {
    width: 60%;
  }
}
.l-hellosmile__teacher-name {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: bold;
}
.l-hellosmile__btn {
  width: 100%;
  max-width: 160px;
  height: 36px;
  text-decoration: none;
  background: #ffffff;
  border: 2px solid #000;
  border-radius: 80px;
  color: #000;
  font-size: 1.3rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.l-timetable__wrapper {
  max-width: 780px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-timetable__wrapper {
    width: 94%;
  }
}
.l-timetable__name {
  font-size: 1.8rem;
  line-height: 1.8;
  text-align: left;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .l-timetable__name {
    font-size: 1.7rem;
    padding: 30px 0 6px 0;
  }
}
.l-timetable__text {
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .l-timetable__text {
    line-height: 2.1;
  }
}
.l-timetable__text span {
  font-size: 1.6rem;
  line-height: 2;
  background: linear-gradient(transparent 60%, #ffd5c2 60%);
}
@media screen and (max-width: 768px) {
  .l-timetable__text span {
    line-height: 1.6;
  }
}
.l-timetable__detail {
  font-size: 1.5rem;
  text-align: center;
  margin: 0 auto;
  width: 70%;
  line-height: 1.6;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .l-timetable__detail {
    width: 100%;
    line-height: 2;
  }
}
.l-timetable__title {
  padding-top: 60px;
  text-align: center;
}
.l-timetable__container {
  position: relative;
}
.l-timetable__container::before {
  content: "";
  display: block;
  width: 10px;
  height: 900px;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-size: auto 500px;
  background: url(../../assets/img/line.png) no-repeat center center;
  background-size: contain;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .l-timetable__container::before {
    height: 800px;
  }
}
.l-timetable__box {
  max-width: 780px;
}
.l-timetable__box__01 {
  background: #ffffff;
  padding: 40px;
  border-radius: 50px;
  text-align: center;
  z-index: 3;
  position: relative;
  border: 2px solid #000;
  font-weight: bold;
  margin-top: 60px;
}
.l-timetable__box__01::before {
  content: "";
  display: block;
  width: 145px;
  height: 68px;
  background-repeat: no-repeat;
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  background-size: auto 500px;
  background: url(../../assets/img/timetable01.png) no-repeat center center;
  background-size: contain;
  z-index: 2;
}
.l-timetable__box__02 {
  background: #ffffff;
  padding: 40px;
  border-radius: 50px;
  text-align: center;
  z-index: 3;
  position: relative;
  border: 2px solid #000;
  font-weight: bold;
  margin-top: 60px;
}
.l-timetable__box__02::before {
  content: "";
  display: block;
  width: 145px;
  height: 68px;
  background-repeat: no-repeat;
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  background-size: auto 500px;
  background: url(../../assets/img/timetable02.png) no-repeat center center;
  background-size: contain;
  z-index: 2;
}
.l-timetable__box__03 {
  background: #ffffff;
  padding: 40px 80px;
  border-radius: 50px;
  text-align: center;
  z-index: 3;
  position: relative;
  border: 2px solid #000;
  font-weight: bold;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .l-timetable__box__03 {
    padding: 40px 100px;
  }
}
@media screen and (max-width: 480px) {
  .l-timetable__box__03 {
    padding: 40px 80px;
  }
}
.l-timetable__box__03::before {
  content: "";
  display: block;
  width: 145px;
  height: 68px;
  background-repeat: no-repeat;
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  background-size: auto 500px;
  background: url(../../assets/img/timetable03.png) no-repeat center center;
  background-size: contain;
  z-index: 2;
}
.l-timetable__box__03::after {
  content: "";
  display: block;
  width: 100px;
  height: 190px;
  background-repeat: no-repeat;
  position: absolute;
  top: 7px;
  left: 8%;
  transform: translateX(-50%);
  background-size: auto 500px;
  background: url(../../assets/img/hellokitty.png) no-repeat center center;
  background-size: contain;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .l-timetable__box__03::after {
    width: 86px;
    left: 9%;
    top: 2px;
  }
}
@media screen and (max-width: 570px) {
  .l-timetable__box__03::after {
    width: 88px;
    left: 10%;
    top: 30px;
  }
}
@media screen and (max-width: 480px) {
  .l-timetable__box__03::after {
    top: 24px;
    left: 11%;
    width: 75px;
  }
}
@media screen and (max-width: 420px) {
  .l-timetable__box__03::after {
    width: 73px;
  }
}
@media screen and (max-width: 375px) {
  .l-timetable__box__03::after {
    top: 46px;
    left: 12%;
    width: 70px;
  }
}
.l-timetable__copy {
  font-size: 0.8rem;
  padding-left: 4%;
}
.l-timetable__time {
  font-size: 1.8rem;
  padding: 10px 0;
}
.l-timetable__content {
  font-size: 2rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-timetable__content {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .l-timetable__content {
    font-size: 1.6rem;
  }
}
.l-timetable__content span {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .l-timetable__content span {
    font-size: 1.4rem;
  }
}

.l-top-bg {
  background: url(../img/bg.png) top center repeat, linear-gradient(to top, #FFCE48, #FFF281);
  position: relative;
  padding: 6vh 16px 0px 16px;
}
@media screen and (max-width: 768px) {
  .l-top-bg {
    padding: 25vh 16px 0px 16px;
  }
}
.l-top-bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 280px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: url(../../assets/img/archive-bg.svg) no-repeat center center;
  background-size: cover;
  width: 100vw;
  z-index: 10;
}
@media screen and (min-width: 1400px) {
  .l-top-bg::after {
    height: 360px;
  }
}
@media screen and (min-width: 1500px) {
  .l-top-bg::after {
    height: 450px;
  }
}
@media screen and (max-width: 768px) {
  .l-top-bg::after {
    height: 200px;
  }
}
@media screen and (max-width: 375px) {
  .l-top-bg::after {
    height: 180px;
  }
}

.l-mail-bg {
  background: url(../img/bg.png) top center repeat, linear-gradient(to top, #FFCE48, #FFF281);
  position: relative;
  padding: 4vh 16px 0px 16px;
}
@media screen and (max-width: 768px) {
  .l-mail-bg {
    padding: 24vh 16px 0px 16px;
  }
}

.l-top-bg-archive {
  background: url(../img/bg.png) top center repeat, linear-gradient(to top, #FFCE48, #FFF281);
  position: relative;
  padding: 4vh 16px 40px 16px;
}
@media screen and (max-width: 768px) {
  .l-top-bg-archive {
    padding: 3vh 16px 40px 16px;
    font-size: 1.4rem;
  }
}

.l-top-mail {
  position: relative;
  display: flex;
  display: -ms-flexbox;
  max-width: 780px;
  text-align: center;
  font-weight: bold;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .l-top-mail {
    position: relative;
    display: flex;
    display: -ms-flexbox;
  }
}
.l-top-mail__road::before {
  content: "";
  display: block;
  width: 100%;
  height: 1410px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: url(../../assets/img/future-road.svg) no-repeat center center;
  background-size: cover;
  width: 100vw;
  top: 24%;
  z-index: 1;
}
@media screen and (min-width: 2300px) {
  .l-top-mail__road::before {
    content: "";
    display: block;
    height: 2500px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: url(../../assets/img/future-road.svg) no-repeat center center;
    background-size: cover;
    width: 100vw;
    top: 0%;
    z-index: 1;
  }
}
@media screen and (min-width: 1800px) {
  .l-top-mail__road::before {
    content: "";
    display: block;
    height: 1900px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: url(../../assets/img/future-road.svg) no-repeat center center;
    background-size: cover;
    width: 100vw;
    top: 20%;
    z-index: 1;
  }
}
@media screen and (max-width: 768px) {
  .l-top-mail__road::before {
    content: "";
    display: block;
    width: 100%;
    height: 2160px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: url(../../assets/img/future-road-sp.svg) no-repeat center center;
    background-size: cover;
    width: 100vw;
    top: 10%;
    z-index: 1;
  }
}
@media screen and (max-width: 480px) {
  .l-top-mail__road::before {
    height: 1800px;
  }
}
.l-top-mail::before {
  content: "";
  display: block;
  width: 100%;
  height: 500px;
  background-repeat: no-repeat;
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-size: auto 500px;
  background: url(../../assets/img/top-boad-pc.png) no-repeat center center;
  background-size: contain;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .l-top-mail::before {
    background: none;
    height: 350px;
  }
}
@media screen and (max-width: 480px) {
  .l-top-mail::before {
    background: none;
    height: 350px;
  }
}
@media screen and (max-width: 375px) {
  .l-top-mail::before {
    height: 320px;
  }
}
.l-top-mail__fv {
  display: flex;
  display: -ms-flexbox;
  position: absolute;
  justify-content: center;
  width: 100%;
  top: 0;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .l-top-mail__fv {
    width: 100%;
    z-index: 10;
  }
  .l-top-mail__fv::before {
    content: "";
    display: block;
    width: 100%;
    height: 420px;
    background-repeat: no-repeat;
    position: absolute;
    top: -24vh;
    left: 50%;
    transform: translateX(-50%);
    background-size: auto 500px;
    background: url(../../assets/img/top-boad-sp.png) no-repeat center center;
    background-size: contain;
  }
  .l-top-mail__fv::after {
    content: "";
    display: block;
    width: 30%;
    height: 18px;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 15px;
    left: 14%;
    transform: translateX(-10%);
    background-size: auto 500px;
    background: url(../../assets/img/pen.png) no-repeat center center;
    background-size: contain;
    z-index: 30;
  }
}
@media (max-width: 390px) {
  .l-top-mail__fv {
    width: 100%;
    z-index: 10;
  }
  .l-top-mail__fv::before {
    content: "";
    display: block;
    width: 100%;
    height: 380px;
    background-repeat: no-repeat;
    position: absolute;
    top: -22vh;
    left: 50%;
    transform: translateX(-50%);
    background-size: auto 500px;
    background: url(../../assets/img/top-boad-sp.png) no-repeat center center;
    background-size: cover;
  }
}
@media screen and (max-width: 375px) {
  .l-top-mail__fv {
    width: 100%;
    z-index: 10;
  }
  .l-top-mail__fv::before {
    content: "";
    display: block;
    width: 100%;
    height: 380px;
    background-repeat: no-repeat;
    position: absolute;
    top: -22vh;
    left: 50%;
    transform: translateX(-50%);
    background-size: auto 500px;
    background: url(../../assets/img/top-boad-sp.png) no-repeat center center;
    background-size: cover;
  }
  .l-top-mail__fv::after {
    bottom: 12px;
    left: 14%;
  }
}
.l-top-mail__text {
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .l-top-mail__text {
    padding-top: 70px;
  }
}
@media screen and (max-width: 480px) {
  .l-top-mail__text {
    padding-top: 80px;
  }
}
@media screen and (max-width: 375px) {
  .l-top-mail__text {
    padding-top: 50px;
  }
}
.l-top-mail__text span {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ff6600;
}
.l-top-mail__text p {
  padding-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .l-top-mail__text p {
    font-size: 1.4rem;
    text-align: center;
    padding-bottom: 14px;
  }
  .l-top-mail__text p span {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff6600;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .l-top-mail__text p span {
    font-size: 2rem;
    line-height: 1.4;
  }
}

.l-main {
  margin: auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-main {
    max-width: 768px;
  }
}

.l-header {
  display: flex;
  z-index: 120;
  height: 222px;
  background: url(../img/header-pc-bg.jpg) repeat-x #FFF;
  text-align: center;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 900px) {
  .l-header {
    height: 180px;
    background: url(../img/header-pc-bg.jpg) repeat-x #FFF;
    bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    width: 100%;
    height: auto;
    background: url(../img/header-sp.jpg) repeat-x;
    margin: 0 auto;
  }
  .l-header img {
    vertical-align: top;
  }
}
.l-header__item {
  max-width: 960px;
  margin: auto;
}
.l-header__right {
  width: 20%;
}
.l-header__right img {
  padding: 0 4px;
}
.l-header__left {
  width: 70%;
  text-align: left;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .l-header__left {
    width: 70%;
    padding: 10px;
  }
}
@media screen and (max-width: 768px) {
  .l-header__left img {
    width: 100%;
  }
}
.l-header__left p {
  font-size: 1.2rem;
  padding-top: 8px;
  color: #fff;
  line-height: 1.4;
}
.l-header.is-front {
  background: #fff;
}
.l-header__content {
  margin: 0 auto;
  width: 100%;
}
.l-header__item {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
}
.l-header__share {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  align-items: center;
}
.l-header__share img {
  width: 33px;
  height: 33px;
  margin: 0 3px;
}

.about {
  position: relative;
  padding-bottom: 100px;
  z-index: 1;
}
.about::after {
  background: url(../img/bg03.png);
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  background-position: 0 0;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 850px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .about::after {
    height: 800px;
  }
}
@media screen and (max-width: 480px) {
  .about::after {
    height: 350px;
  }
}
@media screen and (max-width: 375px) {
  .about::after {
    height: 340px;
  }
}
.about__tygu {
  padding-bottom: 20px;
}
.about__inner {
  text-align: center;
  color: #fff;
}
.about__lead {
  font-size: 2.6rem;
  line-height: 1.6;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .about__lead {
    font-size: 2rem;
  }
}
@media screen and (max-width: 375px) {
  .about__lead {
    font-size: 1.8rem;
    line-height: 1.4;
  }
}
.about h1 {
  display: inline-block;
  margin: 20px 0;
}
.about h1 img {
  max-width: 343px;
}
@media screen and (max-width: 1023px) {
  .about h1 img {
    max-width: 300px;
  }
}
@media screen and (max-width: 480px) {
  .about h1 img {
    max-width: 220px;
  }
}
.about__text {
  font-size: 1.6rem;
  padding: 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about__text {
    padding: 80px 10px;
  }
}
@media screen and (max-width: 768px) {
  .about__text {
    padding: 88px 10px 50px 10px;
  }
}
@media screen and (max-width: 375px) {
  .about__text {
    padding: 100px 0px 50px 0px;
  }
}
.about__text p {
  padding-bottom: 20px;
}
.about__text .big {
  font-size: 2rem;
  font-weight: bold;
  padding-bottom: 20px;
}
@media screen and (max-width: 375px) {
  .about__text .big {
    font-size: 1.8rem;
    padding-bottom: 20px;
  }
}
.about__text span {
  font-size: 2rem;
  font-weight: bold;
  background: #9C74F4;
  color: #fff;
  padding: 3px;
}
@media screen and (max-width: 375px) {
  .about__text span {
    font-size: 1.7rem;
    padding: 2px;
  }
}
.about__small-text {
  font-size: 1.6rem;
  margin-top: 20px;
  color: #D00025;
  text-decoration: underline;
}
.about__wanted {
  font-size: 2.2rem;
  line-height: 1.2;
  color: #250076;
  font-weight: bold;
  background-color: #fff;
  padding: 20px;
  display: block;
  font-weight: bold;
  margin: 0 auto;
  text-decoration: none;
  max-width: 420px;
  border-radius: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about__wanted {
    font-size: 1.8rem;
    padding: 20px 8px 26px 8px;
    max-width: 400px;
  }
}
.about__wanted p {
  line-height: 1.5;
  margin-bottom: 20px;
}
.about__wanted p span {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .about__wanted p span {
    font-size: 1.4rem;
  }
}
.about__movie {
  width: 100%;
  padding-top: 60px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.about__movie__academy {
  max-width: 768px;
  margin: 20px auto 0;
}
@media screen and (max-width: 480px) {
  .about__movie__academy {
    margin: 20px auto 0;
  }
}
.about__movie__title {
  color: #ffffff;
  font-size: 2.4rem;
  line-height: 2;
}
.about__movie__subtitle {
  color: #ffffff;
  font-size: 1.6rem;
}
.about__movie__wrap {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  width: 98%;
}
@media screen and (max-width: 768px) {
  .about__movie__wrap {
    width: 100%;
    flex-direction: column;
    padding: 0;
  }
}
.about__movie__box {
  width: 46%;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .about__movie__box {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .about__movie__box img {
    width: 100%;
  }
}
.about__movie__box02 {
  width: 58%;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .about__movie__box02 {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .about__movie__box02 img {
    width: 100%;
  }
}
.about__topicon01 {
  display: block;
  position: absolute;
  right: 140px;
  top: 70px;
}
.about__topicon01 img {
  width: 160px;
  height: auto;
}
@media screen and (max-width: 1023px) {
  .about__topicon01 {
    display: block;
    position: absolute;
    right: 50px;
    top: 70px;
  }
  .about__topicon01 img {
    width: 150px;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .about__topicon01 {
    right: 20px;
    top: 70px;
  }
  .about__topicon01 img {
    width: 130px;
    height: auto;
  }
}
@media screen and (max-width: 599px) {
  .about__topicon01 {
    right: -10px;
    top: 40px;
  }
}
@media screen and (max-width: 480px) {
  .about__topicon01 {
    right: -8px;
    top: 40px;
  }
  .about__topicon01 img {
    width: 100px;
    height: auto;
  }
}
@media screen and (max-width: 375px) {
  .about__topicon01 {
    right: -8px;
    top: 50px;
  }
  .about__topicon01 img {
    width: 80px;
    height: auto;
  }
}
.about__topicon02 {
  display: block;
  position: absolute;
  left: 80px;
  top: 240px;
}
.about__topicon02 img {
  width: 200px;
  height: auto;
}
@media screen and (max-width: 1023px) {
  .about__topicon02 {
    display: block;
    position: absolute;
    left: 30px;
    top: 240px;
  }
  .about__topicon02 img {
    width: 160px;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .about__topicon02 {
    left: 70px;
    top: 330px;
  }
  .about__topicon02 img {
    width: 120px;
    height: auto;
  }
}
@media screen and (max-width: 599px) {
  .about__topicon02 {
    left: 30px;
    top: 330px;
  }
}
@media screen and (max-width: 480px) {
  .about__topicon02 {
    left: -8px;
    top: 250px;
  }
  .about__topicon02 img {
    width: 100px;
    height: auto;
  }
}
@media screen and (max-width: 375px) {
  .about__topicon02 {
    left: -8px;
    top: 250px;
  }
  .about__topicon02 img {
    width: 80px;
    height: auto;
  }
}
.about__img01 {
  display: block;
  position: absolute;
  left: -26px;
  top: -20px;
}
@media screen and (max-width: 480px) {
  .about__img01 {
    width: 46px;
    left: -8px;
  }
}
.about__img02 {
  display: block;
  position: absolute;
  right: -30px;
  bottom: -20px;
}
@media screen and (max-width: 480px) {
  .about__img02 {
    width: 40px;
    right: 0;
  }
}
.about__img03 {
  display: block;
  position: absolute;
  top: 44px;
  left: 130px;
}
@media screen and (max-width: 768px) {
  .about__img03 {
    top: 30px;
    width: 38px;
    left: 50px;
  }
}
@media screen and (max-width: 480px) {
  .about__img03 {
    left: 30px;
    top: 44px;
  }
}
@media screen and (max-width: 375px) {
  .about__img03 {
    width: 30px;
  }
}
.about__img04 {
  display: block;
  position: absolute;
  top: 214px;
  right: 98px;
}
@media screen and (max-width: 768px) {
  .about__img04 {
    width: 50px;
    right: 40px;
  }
}
@media screen and (max-width: 480px) {
  .about__img04 {
    right: 10px;
  }
}
@media screen and (max-width: 375px) {
  .about__img04 {
    top: 264px;
    width: 40px;
  }
}
.about__img05 {
  display: block;
  position: absolute;
  top: 460px;
  left: 100px;
}
@media screen and (max-width: 768px) {
  .about__img05 {
    width: 50px;
    left: 50px;
  }
}
@media screen and (max-width: 480px) {
  .about__img05 {
    left: 0;
    top: 470px;
  }
}
@media screen and (max-width: 375px) {
  .about__img05 {
    width: 36px;
    top: 650px;
  }
}
.about__img06 {
  display: block;
  position: absolute;
  top: 786px;
  right: 90px;
}
@media screen and (max-width: 768px) {
  .about__img06 {
    top: 790px;
    width: 50px;
    right: 30px;
  }
}
@media screen and (max-width: 480px) {
  .about__img06 {
    top: 1168px;
    width: 40px;
    right: 0;
  }
}
@media screen and (max-width: 375px) {
  .about__img06 {
    top: 1130px;
    right: 0;
    width: 40px;
  }
}
.about__button {
  background-color: #3aa5f6;
  color: #fff;
  display: block;
  border-radius: 30px;
  padding: 16px;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  z-index: 3;
  width: 264px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .about__button {
    padding: 16px 0;
    width: 220px;
    font-size: 1.8rem;
  }
}
.about__button a {
  color: #fff;
}
.about__button a:hover {
  filter: brightness(110%);
}

.moviearchive {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.container {
  position: relative;
  text-align: center;
  padding: 90px 0 100px 0;
}
@media screen and (max-width: 480px) {
  .container {
    padding-bottom: 60px;
  }
}
.container:before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  display: block;
  width: 100vw;
  height: 100%;
  background-color: #59B1F4;
  background-image: url(../img/bg04.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0;
  content: "";
  transform: translateX(-50%);
}
@media screen and (max-width: 480px) {
  .container:before {
    background-position: 30%;
  }
}

.lecture {
  text-align: left;
  font-weight: 600;
  margin: 0 auto;
  max-width: 768px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .lecture__lead {
    text-align: left;
  }
}
.lecture__icon01 {
  display: block;
  position: absolute;
  top: -20px;
  left: -26px;
}
@media screen and (max-width: 1023px) {
  .lecture__icon01 {
    left: -16px;
  }
}
@media screen and (max-width: 768px) {
  .lecture__icon01 {
    width: 110px;
    top: -20px;
    left: 0;
  }
}
@media screen and (max-width: 480px) {
  .lecture__icon01 {
    left: -4px;
  }
}
.lecture__icon02 {
  display: block;
  position: absolute;
  bottom: -30px;
  right: -33px;
}
@media screen and (max-width: 1023px) {
  .lecture__icon02 {
    right: -20px;
  }
}
@media screen and (max-width: 768px) {
  .lecture__icon02 {
    width: 110px;
    bottom: -18px;
    right: 0px;
  }
}
.lecture__inner {
  border: 2px solid #fff;
  border-radius: 30px;
  padding: 0 60px 80px 60px;
}
@media screen and (max-width: 768px) {
  .lecture__inner {
    padding: 0 30px 140px 30px;
  }
}
@media screen and (max-width: 480px) {
  .lecture__inner {
    padding: 0 10px 140px 10px;
  }
}
.lecture__inner::before {
  background: url(/lock/2024/academy/assets/img/logo-sol.png) top left no-repeat;
  background-size: 100%;
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 120px;
  height: 170px;
  margin-top: -68px;
  margin-left: 40%;
}
@media screen and (max-width: 768px) {
  .lecture__inner::before {
    background: url(/lock/2024/academy/assets/img/logo-sol.png) top left no-repeat;
    background-size: 100%;
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 100px;
    height: 140px;
    margin-top: -78px;
    margin-left: 40%;
  }
}
@media screen and (max-width: 480px) {
  .lecture__inner::before {
    width: 86px;
    height: 120px;
    margin-left: 35%;
  }
}
.lecture__text {
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .lecture__text {
    font-size: 1.6rem;
  }
}
.lecture .line {
  width: 100%;
  padding-top: 54px;
}
@media screen and (max-width: 1023px) {
  .lecture .line {
    width: 96%;
    padding-top: 69px;
  }
}
@media screen and (max-width: 768px) {
  .lecture .line {
    width: 100%;
    padding: 40px 0;
  }
}
.lecture .line::after {
  background: url(/lock/2024/academy/assets/img/kaworu-img.png) top left no-repeat;
  content: "";
  display: inline-block;
  background-size: 100%;
  width: 90px;
  height: 238px;
  margin-top: -140px;
  left: -90px;
  position: absolute;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .lecture .line::after {
    display: none;
  }
}
.lecture h2 {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.lecture h2 img {
  padding-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .lecture h2 {
    width: 80%;
    margin: 0 auto;
  }
}
.lecture h3 {
  font-size: 2.2rem;
  line-height: 1.6;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .lecture h3 {
    font-size: 2rem;
    padding-bottom: 8px;
  }
}

.detail {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .detail {
    display: flex;
    display: -ms-flexbox;
    flex-direction: column;
    width: 100%;
  }
}
.detail__text {
  width: 50%;
  line-height: 1.6;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .detail__text {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .detail__text02 {
    display: inline-block;
    text-align: left;
    line-height: 1.8;
  }
}
@media screen and (max-width: 480px) {
  .detail__text02 {
    display: block;
    text-align: left;
    line-height: 1.8;
  }
}

.teacher {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .teacher {
    display: flex;
    display: -ms-flexbox;
    flex-direction: column;
    width: 100%;
  }
}
.teacher__cheki {
  width: 35%;
  height: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .teacher__cheki {
    width: 60%;
    position: relative;
  }
}
@media screen and (max-width: 480px) {
  .teacher__cheki {
    width: 80%;
    position: relative;
  }
}
.teacher__icon {
  position: absolute;
  bottom: -50px;
  right: -20px;
  transform: scale(-1, 1);
}
@media screen and (max-width: 480px) {
  .teacher__icon {
    right: -30px;
  }
}
.teacher__icon img {
  width: 90px;
  height: auto;
}
@media screen and (max-width: 480px) {
  .teacher__icon img {
    width: 80px;
  }
}
.teacher .teacher-profile {
  width: 60%;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .teacher .teacher-profile {
    margin-top: 30px;
    width: 100%;
  }
}
.teacher .teacher-profile .teacher-name {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .teacher .teacher-profile .teacher-name {
    font-size: 1.8rem;
    padding-bottom: 4px;
  }
}

.map {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .map {
    margin-top: 30px;
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  .map {
    width: 100%;
  }
}

iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.teacher {
  display: flex;
  display: -ms-flexbox;
}

.present {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 280px;
}
@media screen and (max-width: 768px) {
  .present {
    width: 100%;
    display: flex;
    display: -ms-flexbox;
    min-height: 380px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
  }
}
@media screen and (max-width: 480px) {
  .present {
    min-height: 350px;
  }
}
.present .present__text {
  position: absolute;
  left: 40px;
  top: 0px;
  transform: rotate(-10deg);
}
.present .present__text img {
  width: 280px;
}
@media screen and (max-width: 768px) {
  .present .present__text {
    position: static;
    width: 100%;
    transform: rotate(-6deg);
    margin: 0 auto;
  }
  .present .present__text img {
    width: 300px;
  }
}
@media screen and (max-width: 480px) {
  .present .present__text {
    padding-top: 30px;
    width: 100%;
    transform: rotate(-3deg);
  }
  .present .present__text img {
    width: 280px;
  }
}
.present .present__img01 {
  position: absolute;
  right: 190px;
  transform: rotate(-8deg);
  bottom: -20px;
  right: 170px;
  width: 280px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .present .present__img01 {
    position: static;
    width: 300px;
  }
}
@media screen and (max-width: 480px) {
  .present .present__img01 {
    position: absolute;
    width: 280px;
    top: 200px;
    right: 0px;
  }
}
@media screen and (max-width: 375px) {
  .present .present__img01 {
    position: absolute;
    width: 250px;
    top: 190px;
    right: 0px;
  }
}
.present .present__img02 {
  position: absolute;
  top: 10px;
  transform: rotate(10deg);
  right: 40px;
  width: 140px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .present .present__img02 {
    width: 150px;
    top: 130px;
    right: 0;
  }
}
@media screen and (max-width: 480px) {
  .present .present__img02 {
    width: 130px;
    position: absolute;
    top: 120px;
    right: 0;
  }
}

.schedule {
  margin: 0 auto;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .schedule {
    padding-top: 30px;
  }
}

table {
  border-collapse: collapse;
  margin: auto;
  width: 80%;
}
@media screen and (max-width: 768px) {
  table {
    width: 100%;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  table {
    font-size: 1.4rem;
  }
}

table td {
  border: solid 2px #fff;
  padding: 20px;
  text-align: left;
  vertical-align: middle;
}
@media screen and (max-width: 375px) {
  table td {
    padding: 10px;
  }
}

table th {
  border: solid 2px #fff;
  padding: 20px 10px;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 375px) {
  table th {
    padding: 10px;
  }
}

.fo-wrapper {
  padding: 30px 0 40px 0;
}
@media screen and (max-width: 768px) {
  .fo-wrapper {
    width: 90%;
    margin: 0 auto;
  }
}

.fo-title {
  text-align: center;
  padding: 50px 0;
}

.fo-end {
  text-align: center;
  font-size: 2rem;
  line-height: 2;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .fo-end {
    font-size: 1.6rem;
  }
}

#fo {
  font-size: 1.6rem;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #fo {
    padding: 30px 18px;
    font-size: 1.4rem;
  }
}

.fo__title {
  text-align: center;
  width: 80%;
  margin: 0 auto;
}

.caution {
  line-height: 2;
}

.caution dd::before {
  background: #ff6600;
}

footer {
  margin: 0 auto;
  position: relative;
  background-color: #fff;
}

.c-footer {
  padding: 90px 0 30px 0;
  text-align: center;
  overflow-y: hidden;
}
@media screen and (max-width: 768px) {
  .c-footer__kyousan {
    margin-top: 10px;
  }
}
.c-footer__copyright {
  font-size: 12px;
}
.c-footer__box p {
  text-align: center;
  font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
  .c-footer {
    padding: 40px 0 30px;
  }
}
.c-footer--archive {
  padding: 0 0 40px;
}

@media screen and (max-width: 768px) {
  .c-footer--archive {
    padding: 0 0 4s0px;
  }
}
.c-footer__banner {
  width: 80%;
  margin: 0 auto;
}

.c-footer__banner a {
  display: block;
  transition: all 0.2s ease-in-out;
}

.c-footer__banner a:hover {
  opacity: 0.8;
}

.c-footer__banner img {
  margin: auto;
}

.c-footer__banner img:first-child {
  display: block;
  padding: 30px 0;
}

@media screen and (max-width: 768px) {
  .c-footer__banner--archive {
    margin-top: 120px;
  }
}
.c-footer__sollogo {
  margin-top: 64px;
}

.c-footer__sollogo a {
  display: inline-block;
  transition: all 0.2s ease-in-out;
}

.c-footer__sollogo a:hover {
  transform: scale(1.1);
}

.c-footer__copyright {
  display: block;
  margin-top: 40px;
}

.c-footer__message {
  background: #CA0011;
  border-radius: 40px;
  color: #fff;
  display: block;
  margin-top: 60px;
  margin-bottom: -25px;
  padding: 14px 32px;
  position: relative;
  text-align: left;
}

@media screen and (max-width: 1023px) {
  .c-footer__message {
    margin: 40px auto 153px;
    padding: 28px 16px 130px;
    text-align: center;
    width: 100%;
    max-width: 480px;
  }
}
.c-footer__message .c-text {
  font-family: "DotGothic16", sans-serif;
  font-size: 20px;
  margin: 0;
}

.c-footer__message .c-text br {
  display: none;
}

@media screen and (max-width: 1023px) {
  .c-footer__message .c-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .c-footer__message .c-text {
    font-size: 20px;
  }
  .c-footer__message .c-text br {
    display: block;
  }
}
.c-footer__message .c-text span {
  color: #FFE200;
  margin-right: 16px;
}

.c-footer__message .c-text a {
  background: #fff;
  border-radius: 40px;
  color: #D10000;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: bold;
  margin-left: 16px;
  padding: 8px 18px;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

.c-footer__message .c-text a:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 1023px) {
  .c-footer__message .c-text a {
    margin: 20px 0 0 0;
    font-size: 20px;
    padding: 16px 28px;
  }
}
.c-footer__message .c-text a:hover {
  text-decoration: none;
}

.c-footer__message .c-text .c-footer-teacher {
  aspect-ratio: 233/266;
  background: url(../img/illust-teacher-575.png) top right no-repeat;
  background-size: 100%;
  content: "";
  display: block;
  margin-right: 0;
  position: absolute;
  width: 185px;
  bottom: -24px;
  right: -24px;
}

@media screen and (max-width: 1023px) {
  .c-footer__message .c-text .c-footer-teacher {
    aspect-ratio: 233/240;
    width: 233px;
    bottom: -124px;
    right: 22%;
  }
}
@media screen and (max-width: 480px) {
  .c-footer__message .c-text .c-footer-teacher {
    right: 15%;
  }
}
.l-content {
  max-width: 928px;
  margin: auto;
  padding: 0 48px;
}
@media screen and (max-width: 768px) {
  .l-content {
    padding: 0 16px;
  }
}

.c-text--green {
  color: #CA0011;
  font-weight: bold;
}

.c-footer-list {
  margin: 20px 0 30px 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .c-footer-list {
    flex-direction: column;
    margin: 0 0 30px 0;
  }
}

.c-footer-list02 {
  margin: 20px 10% 30px 10%;
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .c-footer-list02 {
    flex-direction: column;
    margin: 0 10%;
  }
}
.c-footer-list02__item {
  display: inline-block;
  margin: 0 20px;
}
@media screen and (max-width: 768px) {
  .c-footer-list02__item {
    margin: 18px 0;
  }
}

.c-footer-list__item {
  display: inline-block;
  margin: 0 25px;
}
@media screen and (max-width: 768px) {
  .c-footer-list__item {
    margin: 0 20px;
  }
}
@media screen and (max-width: 480px) {
  .c-footer-list__item {
    margin: 14px 0;
  }
}

.top {
  width: 100%;
  display: inline-block;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
  text-align: center;
  margin-top: 30px;
}

.back-top {
  text-align: center;
}
.back-top a {
  margin: 40px 0 0 0;
  padding: 16px 28px;
  background: #9C74F4;
  border-radius: 40px;
  color: #fff;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .back-top a {
    margin: 40px 0 0 0;
    font-size: 1.6rem;
  }
}

.p-entry {
  text-align: center;
  font-weight: bold;
  line-height: 1.8;
  max-width: 780px;
  background-color: #fff;
  padding: 90px 70px 70px 70px;
  border-radius: 30px;
  position: relative;
  z-index: 20;
  margin: 0 auto;
  margin-top: 40px;
  border: 2px solid #000;
  box-shadow: 6px 6px 0 0 #FEE205, 6px 6px 0 2px black;
}
@media screen and (max-width: 768px) {
  .p-entry {
    padding: 80px 60px 20px 60px;
  }
}
@media screen and (max-width: 480px) {
  .p-entry {
    font-size: 1.6rem;
    padding: 70px 20px 20px 20px;
    margin-top: 110px;
  }
}
@media screen and (max-width: 375px) {
  .p-entry {
    margin-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .p-entry__text {
    margin-top: 30px;
  }
}
@media screen and (max-width: 480px) {
  .p-entry__text {
    margin-top: 20px;
  }
}
.p-entry__heading {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
}
@media screen and (max-width: 768px) {
  .p-entry__heading {
    width: 80%;
    top: -30px;
  }
}
@media screen and (max-width: 480px) {
  .p-entry__heading {
    width: 100%;
    top: -20px;
  }
}
.p-entry__keijiban a {
  margin: 30px 0;
  padding: 16px 28px;
  background: #FEE205;
  border-radius: 40px;
  color: #000;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .p-entry__keijiban a {
    font-size: 1.6rem;
  }
}
.p-entry__mail a {
  margin: 30px 0;
  padding: 16px 28px;
  background: #ff6600;
  border-radius: 40px;
  color: #fff;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .p-entry__mail a {
    font-size: 1.6rem;
  }
}
.p-entry span {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ff6600;
}

.p-sengen {
  text-align: center;
  font-weight: bold;
  line-height: 1.8;
  max-width: 780px;
  background-color: #fff;
  padding: 40px 70px;
  border-radius: 30px;
  position: relative;
  z-index: 20;
  margin: 0 auto;
  position: relative;
  top: -90px;
  border: 2px solid #000;
  box-shadow: 6px 6px 0 0 #FEE205, 6px 6px 0 2px black;
}
@media screen and (max-width: 768px) {
  .p-sengen {
    padding: 50px;
  }
}
@media screen and (max-width: 480px) {
  .p-sengen {
    font-size: 1.6rem;
    padding: 20px;
  }
}
.p-sengen__heading {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .p-sengen__heading {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .p-sengen__heading {
    width: 100%;
  }
}
.p-sengen__heading {
  margin: 0 auto;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-sengen__heading {
    margin: 0 auto;
    width: 60%;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .p-sengen__heading {
    width: 80%;
  }
}
.p-sengen__archive a {
  margin: 30px 0;
  width: 300px;
  padding: 16px 28px;
  background: #FEE205;
  border-radius: 40px;
  color: #000;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .p-sengen__archive a {
    font-size: 1.6rem;
    width: 100%;
  }
}
.p-sengen__name {
  font-weight: bold;
  padding-bottom: 20px;
  font-size: 1.8rem;
}
.p-sengen span {
  font-size: 1.4rem;
  font-weight: bold;
  color: #000;
  padding: 4px;
  margin-right: 10px;
  background-color: #FEE205;
}
.p-sengen__text {
  padding: 20px 30px;
  background-color: #E8F5FF;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .p-sengen__text {
    padding: 20px;
  }
}
.p-sengen__english {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ff6600;
  line-height: 1.3;
}
@media screen and (max-width: 480px) {
  .p-sengen__english {
    font-size: 1.6rem;
  }
}
.p-sengen__translate {
  font-size: 1.4rem;
  font-weight: bold;
  color: #717171;
  padding-top: 8px;
}
.p-sengen__advice {
  margin-top: 50px;
  padding: 30px;
  background-color: #FFFAD8;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .p-sengen__advice {
    margin-top: 30px;
    padding: 20px;
  }
}
.p-sengen__teacher {
  font-size: 1.6rem;
  font-weight: bold;
  color: #ff6600;
}
.p-sengen__advice-text {
  padding-top: 20px;
  text-align: center;
  font-size: 1.8rem;
  color: #3f3f3f;
}
.p-sengen__advice-translate {
  padding-top: 8px;
  text-align: center;
  font-size: 1.4rem;
  color: #717171;
}

.p-archive {
  background: #4ABCFE url(../img/alphabet-bg.png) top center repeat;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  text-align: center;
  font-weight: bold;
  line-height: 1.8;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 768px) {
  .p-archive {
    padding: 0 16px;
  }
}
@media screen and (max-width: 480px) {
  .p-archive {
    font-size: 1.6rem;
    padding: 20px;
  }
}
.p-archive__number {
  text-align: left;
  font-size: 2rem;
  color: #ff6600;
}
@media screen and (max-width: 768px) {
  .p-archive__number {
    font-size: 1.6rem;
    line-height: 3;
  }
}
@media screen and (max-width: 480px) {
  .p-archive__number {
    font-size: 1.4rem;
    line-height: 3;
  }
}
.p-archive__archivebox {
  border-top: 2px solid #000000;
  background: #4ABCFE url(../img/alphabet-bg.png) top center repeat;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  text-align: center;
  font-weight: bold;
  line-height: 1.8;
  position: relative;
  z-index: 20;
  padding-top: 90px;
}
@media screen and (max-width: 768px) {
  .p-archive__archivebox {
    padding: 60px 16px 0;
  }
}
@media screen and (max-width: 480px) {
  .p-archive__archivebox {
    font-size: 1.6rem;
    padding: 40px 16px 0;
  }
}
.p-archive__archivepage {
  background: url(../img/bg.png) top center repeat, linear-gradient(to top, #FFCE48, #FFF281);
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  text-align: center;
  font-weight: bold;
  line-height: 1.8;
  position: relative;
  z-index: 20;
  padding-top: 90px;
}
@media screen and (max-width: 768px) {
  .p-archive__archivepage {
    padding: 60px 16px 0;
  }
}
@media screen and (max-width: 480px) {
  .p-archive__archivepage {
    font-size: 1.6rem;
    padding: 40px 16px 0;
  }
}
.p-archive__wrapper {
  margin: 0 auto;
  padding-bottom: 40px;
}
.p-archive a {
  margin-top: 30px;
  padding: 10px 20px;
  background: #FEE205;
  border-radius: 40px;
  color: #000;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .p-archive a {
    font-size: 1.6rem;
    width: 100%;
  }
}
.p-archive__link a {
  margin-top: 30px;
  width: 300px;
  padding: 16px 28px;
  background: #FEE205;
  border-radius: 40px;
  color: #000;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .p-archive__link a {
    font-size: 1.6rem;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .p-archive__link a {
    font-size: 1.4rem;
    width: 100%;
  }
}
.p-archive__future {
  padding-bottom: 10px;
}
.p-archive__heading {
  line-height: 0;
  margin: 0 auto;
  padding: 10px 0;
}
@media screen and (max-width: 480px) {
  .p-archive__heading {
    width: 60%;
  }
}
.p-archive__container {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-archive__container {
    flex-direction: column;
    margin-bottom: 0;
  }
}
.p-archive__block {
  width: 48%;
  background-color: #fff;
  border-radius: 30px;
  padding: 30px;
  position: relative;
  border: 2px solid #000;
  box-shadow: 6px 6px 0 0 #FEE205, 6px 6px 0 2px black;
}
@media screen and (max-width: 768px) {
  .p-archive__block {
    width: 100%;
    margin-bottom: 20px;
  }
}
.p-archive__date {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 14px;
}
.p-archive__archive a {
  margin: 30px 0;
  width: 300px;
  padding: 16px 28px;
  background: #FEE205;
  border-radius: 40px;
  color: #000;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .p-archive__archive a {
    font-size: 1.6rem;
    width: 100%;
  }
}
.p-archive__name {
  font-weight: bold;
  padding-bottom: 8px;
}
.p-archive__subtitle {
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-archive__subtitle {
    font-size: 1.4rem;
  }
}
.p-archive span {
  font-size: 1.6rem;
  font-weight: bold;
  color: #000;
  padding: 4px;
  margin-right: 10px;
  background-color: #FEE205;
}
.p-archive__text {
  padding: 30px;
  background-color: #E8F5FF;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .p-archive__text {
    padding: 20px 10px;
  }
}
.p-archive__english {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ff6600;
  line-height: 1.3;
}
@media screen and (max-width: 480px) {
  .p-archive__english {
    font-size: 1.6rem;
  }
}
.p-archive__translate {
  font-size: 1.4rem;
  font-weight: bold;
  color: #717171;
}
.p-archive__advice {
  margin-top: 50px;
  padding: 30px;
  background-color: #FFFAD8;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .p-archive__advice {
    margin-top: 30px;
  }
}
.p-archive__teacher {
  font-size: 1.6rem;
  font-weight: bold;
  color: #ff6600;
}
.p-archive__advice-text {
  padding-top: 20px;
  text-align: left;
  font-size: 1.4rem;
}

.backnumber {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  padding: 60px 0;
}
@media screen and (max-width: 480px) {
  .backnumber {
    padding: 30px 0;
  }
}
.backnumber__heading {
  padding: 40px 0;
}
.backnumber__list {
  display: flex;
  position: relative;
  text-align: center;
  flex-wrap: wrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  max-width: 780px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .backnumber__list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.backnumber__list::after {
  content: "";
  display: block;
  width: 30%;
}
@media screen and (max-width: 768px) {
  .backnumber__list::after {
    width: 47%;
  }
}
.backnumber__list-item {
  box-sizing: border-box;
}
.backnumber__list-item a {
  font-size: 24px;
  border-radius: 40px;
  color: #ffffff;
  background: #4ABCFE;
  display: inline-block;
  margin: 14px 4px;
  padding: 10px 14px;
  position: relative;
  width: 220px;
  transition: all 0.2s ease-in-out;
  font-weight: bold;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .backnumber__list-item a {
    width: 290px;
    padding: 15px 20px;
  }
}
@media screen and (max-width: 480px) {
  .backnumber__list-item a {
    width: 260px;
    padding: 15px 20px;
  }
}/*# sourceMappingURL=style.css.map */