/* colors */
/* fonts */
@import url("https://fonts.googleapis.com/css?family=Pinyon+Script&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:wght@600&display=swap");
.loading {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
}

.loading .loading__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 180px;
}

@media screen and (max-width: 1024px) {
  .loading .loading__img img {
    width: 160px;
  }
}

@media screen and (max-width: 896px) {
  .loading .loading__img img {
    width: 120px;
  }
}

header .logo {
  width: 100px;
}

header nav ul {
  margin: 0;
  padding: 0;
}

header nav ul li {
  list-style: none;
  cursor: pointer;
  padding: 6px 20px;
  font-size: 1em;
}

header nav ul li a {
  text-decoration: none;
  color: black;
}

header .open-overlay {
  position: absolute;
  position: fixed;
  right: 1rem;
  top: 0.5rem;
  z-index: 100;
  width: 34px;
  display: block;
  cursor: pointer;
}

header .open-overlay span {
  display: block;
  width: 30px;
  height: 6px;
  cursor: pointer;
  background-color: #454545;
  margin: 6px 10px;
}

header .line {
  padding-top: 1%;
}

header .line::after {
  content: "";
  display: block;
  height: 0.2em;
  width: 50%;
  border-top: 1px solid #b9b7b5;
}

header .sub {
  font-size: 0.75em;
  padding-top: 0;
}

header nav {
  width: 100%;
  height: 100%;
  padding-top: 100px;
  background-color: #fffffff2;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  -webkit-transform: translate(100%);
          transform: translate(100%);
  transition: 0.8s ease-in-out;
  -webkit-transition: 0.8s ease-in-out;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

header nav.open {
  transition: 0.8s ease-in-out;
  -webkit-transition: 0.8s ease-in-out;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  width: 100%;
}

header nav li a {
  color: #fff;
  letter-spacing: 0.5em;
  text-decoration: none;
}

header nav li {
  text-align: left;
  padding: 6%;
  width: 100%;
}

header nav li a:hover {
  color: #C38B74;
}

header ul {
  height: 100%;
  list-style: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 896px) {
  header .logo {
    width: 80px;
  }
}

@media screen and (max-width: 896px) and (orientation: landscape) {
  header nav {
    padding-top: 20px;
    height: 80%;
  }
}

@media screen and (max-width: 414px) {
  header nav {
    padding-top: 50px;
  }
  header nav ul li {
    font-size: 0.9em;
    padding: 4px 20px;
  }
  header nav ul .sub {
    font-size: 0.65em;
  }
}

@media screen and (max-width: 320px) {
  header nav {
    padding-top: 30px;
  }
}

.jumbo-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
}

.jumbo-container .left {
  width: 50%;
}

.jumbo-container .left h2 {
  font-size: 4em;
  position: absolute;
  top: 35%;
  left: 47%;
  -webkit-transform: translate(-35%, -47%);
          transform: translate(-35%, -47%);
  width: 50%;
  letter-spacing: 0.3em;
  line-height: 2em;
  font-family: "Crimson Text", serif;
}

.jumbo-container .right {
  width: 50%;
}

.jumbo-container .right img {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .jumbo-container .left h2 {
    font-size: 3em;
  }
}

@media screen and (max-width: 896px) {
  .jumbo-container .left h2 {
    font-size: 2.5em;
    left: 39%;
    width: 68%;
  }
}

@media screen and (max-width: 667px) {
  .jumbo-container .left h2 {
    font-size: 2em;
    left: 39%;
    width: 68%;
  }
}

@media screen and (max-width: 480px) {
  .jumbo-container .left {
    width: 0;
  }
  .jumbo-container .left h2 {
    font-size: 2.5em;
    left: 39%;
    width: 78%;
  }
  .jumbo-container .right {
    width: 100%;
    height: 100vh;
  }
}

@media screen and (max-width: 375px) {
  .jumbo-container .left {
    width: 0;
  }
  .jumbo-container .left h2 {
    font-size: 2.2em;
    left: 39%;
    width: 78%;
  }
  .jumbo-container .right {
    width: 100%;
    height: 100vh;
  }
}

@media screen and (max-width: 360px) {
  .jumbo-container .left {
    width: 0;
  }
  .jumbo-container .left h2 {
    font-size: 2em;
  }
}

.news {
  margin: 0;
  padding: 5% 0;
  width: 100%;
  background-color: #F9F6F5;
}

.news p {
  width: 50%;
  margin: 4% auto;
  font-size: 1.2em;
}

.news p strong {
  display: inline-block;
  margin-top: 1%;
}

.news p .fadein {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 1500ms;
  transition: all 1500ms;
}

.news p .scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.news_2 {
  margin: 0;
  padding: 5% 0;
  width: 100%;
  background-color: #F9F6F5;
}

.news_2 .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4% 4% 0 4%;
}

.news_2 .container .image,
.news_2 .container .image_horizon {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  text-align: center;
  width: 50%;
}

.news_2 .container .image img,
.news_2 .container .image_horizon img {
  width: 70%;
  -webkit-box-shadow: 13px 10px 9px -2px #cccccc;
  box-shadow: 13px 10px 9px -2px #cccccc;
}

.news_2 .container .text {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  width: 50%;
}

.news_2 .container .text p {
  width: 90%;
  font-size: 1.1em;
  margin: 0 auto;
}

.news_2 .container .text p strong {
  display: inline-block;
  margin-top: 1%;
}

.news_2 .container .image_horizon img {
  width: 80%;
}

@media screen and (max-width: 1024px) {
  .news p {
    width: 60%;
    font-size: 1.1em;
  }
  .news_2 .container .text p {
    width: 90%;
    font-size: 1.1em;
  }
}

@media screen and (max-width: 896px) {
  .news_2 .container {
    padding: 7% 4% 0 4%;
  }
  .news_2 .container .text p {
    width: 90%;
    font-size: 1.1em;
  }
  .news_2 .container .image_horizon img {
    width: 95%;
  }
  .news_2 .container .image img {
    width: 80%;
  }
}

@media screen and (max-width: 736px) {
  .news p {
    width: 70%;
    font-size: 1.0em;
  }
}

@media screen and (max-width: 667px) {
  .news p {
    font-size: 1.0em;
  }
  .news_2 .container {
    display: block;
    padding: 7% 4% 0 4%;
  }
  .news_2 .container .text {
    width: 100%;
  }
  .news_2 .container .text p {
    width: 90%;
    font-size: 1.0em;
    margin: 3% auto;
  }
  .news_2 .container .image_horizon {
    width: 100%;
  }
  .news_2 .container .image_horizon img {
    width: 95%;
  }
  .news_2 .container .image {
    width: 100%;
  }
  .news_2 .container .image img {
    width: 80%;
  }
}

@media screen and (max-width: 568px) {
  .news p {
    width: 80%;
  }
}

@media screen and (max-width: 480px) {
  .news_2 .container .text {
    width: 100%;
  }
  .news_2 .container .text p {
    width: 100%;
    font-size: 1.0em;
    margin: 3% auto;
  }
  .news_2 .container .image_horizon {
    width: 100%;
  }
  .news_2 .container .image_horizon img {
    width: 95%;
  }
  .news_2 .container .image {
    width: 100%;
  }
  .news_2 .container .image img {
    width: 80%;
  }
}

.about {
  margin: 0;
  padding: 5% 0;
  width: 100%;
}

.about p {
  text-align: center;
  font-size: 1.5em;
}

.about .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4%;
  height: 360px;
  width: 90%;
  margin: 0 auto;
  padding: 5%;
}

.about .container_box {
  width: 33.3333%;
}

.about .container .box {
  width: 220px;
  height: 220px;
  position: relative;
  background-color: #F9F6F5;
  margin: 0 auto;
}

.about .container .box h4 {
  position: absolute;
  font-size: 4em;
  font-weight: 100;
  margin: 0;
  top: -2%;
  left: 44%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "Pinyon Script", cursive;
}

.about .container .box p {
  position: absolute;
  top: 40%;
  left: 68%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 1.3em;
  width: 100%;
  text-align: left;
  z-index: 2;
}

.about .container .left {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.about .container .middle {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.about .container .right {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.about_2 {
  margin: 0;
  padding: 5% 0;
  width: 100%;
}

.about_2 ul {
  font-size: 1.2em;
}

.about_2 ul li {
  list-style: none;
  margin: 0;
  padding: 0;
  text-indent: -0.3em;
}

.about_2 ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  background-color: #C38B74;
  position: relative;
  top: -1px;
  left: -2%;
}

.about_2 h5 {
  text-align: center;
  font-size: 1.4em;
}

.about_2 .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4%;
}

.about_2 .container .left {
  width: 30%;
  position: relative;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.about_2 .container .left img {
  width: 100%;

}

.about_2 .container .left h4 {
  font-size: 1.7em;
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 60%;
  color: white;
}

.about_2 .container .right {
  width: 70%;
}

.about_2 .features {
  background-color: #F9F6F5;
  padding: 5% 0;
}

.about_2 .features p,
.about_2 .features ul {
  margin: 0 auto;
  font-size: 1.1em;
  width: 75%;
}

@media screen and (max-width: 1200px) {
  .about .container .box {
    width: 200px;
    height: 200px;
  }
  .about .container .box p {
    font-size: 1.3em;
  }
  .about_2 .container {
    padding: 4% 0.5%;
  }
  .about_2 .container .left h4 {
    font-size: 1.5em;
  }
}

@media screen and (max-width: 1024px) {
  .about .container .box {
    width: 200px;
    height: 200px;
  }
  .about .container .box p {
    font-size: 1.1em;
  }
  .about .container .box h4 {
    font-size: 3.5em;
  }
}

@media screen and (max-width: 1114px) {
  .about_2 .container {
    padding: 4% 0.5%;
  }
  .about_2 .container .left h4 {
    font-size: 1.4em;
  }
  .about_2 .container .right {
    padding-right: 2%;
  }
  .about_2 .container .right h5 {
    font-size: 1.4em;
  }
  .about_2 .features h5 {
    font-size: 1.1em;
  }
  .about_2 .features ul,
  .about_2 .features p {
    font-size: 1.1em;
  }
}

@media screen and (max-width: 896px) {
  .about p {
    font-size: 1em;
  }
  .about .container .box {
    width: 180px;
    height: 180px;
  }
  .about .container .box p {
    font-size: 1.1em;
  }
  .about .container .box h4 {
    font-size: 3em;
  }
  .about_2 .container {
    display: block;
    padding: 4% 0.5%;
  }
  .about_2 .container .left {
    width: 80%;
    margin: 0 auto;
  }
  .about_2 .container .left h4 {
    width: 80%;
    text-align: center;
    font-size: 1.7em;
  }
  .about_2 .container .right {
    padding: 0;
    margin: 0 auto;
    width: 100%;
  }
  .about_2 .container .right ul {
    width: 75%;
    margin: 0 auto;
    font-size: 1.1em;
  }
  .about_2 .container .right h5 {
    font-size: 1.4em;
  }
  .about_2 .features h5 {
    font-size: 1.4em;
    padding: 0 9%;
  }
  .about_2 .features ul,
  .about_2 .features p {
    font-size: 1.1em;
  }
}

@media screen and (max-width: 812px) {
  .about_2 .container .right h5 {
    font-size: 1.1em;
  }
  .about_2 .features h5 {
    font-size: 1.1em;
  }
}

@media screen and (max-width: 667px) {
  .about p {
    font-size: 1.1em;
  }
  .about .container {
    display: block;
    height: inherit;
  }
  .about .container .box {
    margin: 6% 0;
  }
  .about .container .box p {
    font-size: 1.1em;
    width: 100%;
  }
  .about .container .box h4 {
    font-size: 3em;
  }
  .about .container .left {
    margin: 6% 13%;
  }
  .about .container .middle {
    margin: 6% 54%;
  }
  .about .container .right {
    margin: 6% 20%;
  }
  .about_2 .container .left h4 {
    font-size: 1.5em;
  }
  .about_2 .container .right ul {
    width: 82%;
    margin: 0 4%;
  }
  .about_2 .container .right h5 {
    font-size: 1.3em;
  }
  .about_2 .features ul {
    margin: 0 4%;
  }
  .about_2 .features p,
  .about_2 .features ul {
    width: 82%;
  }
  .about_2 .features h5 {
    padding: 0 13%;
    font-size: 1.3em;
  }
}

@media screen and (max-width: 480px) {
  .about p {
    width: 90%;
    margin: 3% auto;
    font-size: 1.0em;
  }
  .about .container .box {
    margin: 6% 0;
  }
  .about .container .box p {
    font-size: 1.1em;
  }
  .about .container .left {
    margin: 6% 13%;
  }
  .about .container .middle {
    margin: 6% 47%;
  }
  .about .container .right {
    margin: 6% 18%;
  }
  .about_2 .container .left h4 {
    width: 79%;
    font-size: 1.5em;
  }
  .about_2 .container .right ul {
    margin: 0;
    width: 90%;
    font-size: 1.0em;
    padding-left: 25px;
  }
  .about_2 .container .right h5 {
    padding: 0 3%;
  }
  .about_2 .features h1 {
    margin-bottom: 4%;
  }
  .about_2 .features h5 {
    font-size: 1.1em;
    padding: 0 17%;
  }
  .about_2 .features ul {
    margin: 0;
    padding-left: 25px;
  }
  .about_2 .features ul,
  .about_2 .features p {
    width: 90%;
    font-size: 1.0em;
  }
}

@media screen and (max-width: 414px) {
  .about .container .middle {
    margin: 14% 35%;
  }
  .about_2 .container .right h5 {
    font-size: 1.1em;
  }
  .about_2 .features h5 {
    font-size: 1.1em;
    padding: 0 17%;
  }
}

@media screen and (max-width: 360px) {
  .about .container .left {
    margin: 14% 4%;
  }
  .about .container .middle {
    margin: 24% 25%;
  }
  .about .container .right {
    margin: 6% 8%;
  }
  .about_2 .container .right h5 {
    font-size: 1.1em;
  }
  .about_2 .container .left h4 {
    font-size: 1.3em;
  }
  .about_2 .features h5 {
    font-size: 1.1em;
    padding: 0 17%;
  }
}

@media screen and (max-width: 320px) {
  .about .container .box p {
    font-size: 1.0em;
  }
  .about .container .box h4 {
    font-size: 2.8em;
  }
}

.course {
  margin: 0;
  padding: 5% 0;
  width: 100%;
  background-color: #F9F6F5;
}

.course .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80vw;
  padding: 5% 0;
  margin: 0 auto;
}

.course .container .img {
  width: 30vw;
  height: auto;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.course .container .img img {
  width: 100%;
  height: auto;
  -webkit-filter: brightness(70%);
          filter: brightness(70%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.course .container .img:hover img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  opacity: 0.9;
}

.course .container .img h3,
.course .container .img h1 {
  position: absolute;
  top: 24%;
  left: 38%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: white;
  font-size: 1.5em;
  width: 100%;
}

.course .container .img strong {
  position: absolute;
  top: 74%;
  left: 69%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: white;
  font-size: 1.3em;
}

.course_2 {
  margin: 0;
  padding: 5% 0;
}

.course_2 p {
  margin: 0 auto;
  font-size: 1em;
  width: 80%;
}

.course_2 .infomation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
  margin: 0 auto;
  padding: 5%;
}

.course_2 .infomation_box {
  width: 33.3333%;
}

.course_2 .infomation span {
  position: absolute;
  font-size: 4em;
  font-weight: 100;
  margin: 0;
  top: -6%;
  left: 21%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.course_2 .infomation .info {
  width: 220px;
  height: 220px;
  position: relative;
  background-color: #F9F6F5;
  margin: 0 auto;
}

.course_2 .infomation .info p {
  position: absolute;
  top: 50%;
  left: 65%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 1.3em;
  width: 100%;
  text-align: left;
  z-index: 2;
}

.course_2 .price {
  padding: 4%;
  width: 60%;
  margin: 0 auto;
  font-size: 1em;
}

.course_2 .price h4 {
  font-size: 1.1em;
}

.course_2 .price h4::after {
  content: "";
  display: inline-block;
  height: 0.5em;
  vertical-align: bottom;
  width: 100%;
  border-top: 1px solid #807d7d;
}

.course_2 .price .price_applay {
  text-align: center;
  margin-top: 2%;
}

.course_2 .price .price_applay strong {
  font-size: 1.1em;
}

.course_2 .price .price_applay a {
  text-decoration: none;
  color: #454545;
  font-size: 1.1em;
  padding: 1%;
  border: 0.2px solid #3a3838;
}

.course_2 .price .price_applay a:hover {
  background-color: #d4a88c;
  color: white;
  border: hidden;
}

.course_2 .img {
  width: 100%;
  text-align: center;
}

.course_2 .img img {
  width: 100%;
  margin: 6% auto;
}

.course_2 .samples {
  background-color: #F9F6F5;
  padding: 5% 0;
  text-align: center;
}

.course_2 .samples p {
  text-align: left;
  font-size: 1em;
}

.course_2 .samples .sample {
  border: 1px solid black;
  padding: 3% 2%;
  width: 46%;
  margin: 2% auto;
  font-size: 1.1em;
}

.course_2 .samples .fas {
  color: #C38B74;
  font-size: 1.4em;
  padding: 1% 0;
}

.course_2 .samples .attention {
  width: 80%;
  text-align: left;
}

@media screen and (max-width: 1100px) {
  .course_2 .price {
    width: 80%;
  }
  .course_2 .price .container .infomation .info {
    width: 200px;
    height: 200px;
  }
}

@media screen and (max-width: 1024px) {
  .course .container .img {
    width: 37vw;
  }
  .course_2 .container .infomation .info {
    width: 180px;
    height: 180px;
  }
  .course_2 .container .infomation .info p {
    width: 120%;
    font-size: 1.3em;
  }
  .course_2 .container .price p {
    font-size: 1.3em;
  }
  .course_2 .container .price .price_applay a {
    font-size: 1.3em;
  }
  .course_2 .container .price strong {
    font-size: 1.3em;
  }
  .course_2 .container .price h4 {
    font-size: 1.3em;
  }
  .course_2 .container .samples {
    font-size: 1.3em;
  }
  .course_2 .container .samples .sample {
    font-size: 1.3em;
  }
  .course_2 .container .samples .attention {
    font-size: 1.2em;
  }
}

@media screen and (max-width: 896px) {
  .course .container .img {
    width: 37vw;
  }
  .course .container .img h3,
  .course .container .img h1 {
    font-size: 1.5em;
  }
  .course_2 .container .infomation {
    padding: 4% 0;
  }
  .course_2 .container .infomation span {
    font-size: 3em;
  }
  .course_2 .container .infomation .info {
    width: 160px;
    height: 160px;
  }
  .course_2 .container .infomation .info p {
    width: 126%;
  }
  .course_2 .container .price {
    font-size: 1.3em;
  }
}

@media screen and (max-width: 736px) {
  .course .container {
    width: 90vw;
  }
  .course .container .img {
    width: 39vw;
  }
  .course_2 .container .infomation {
    padding: 4% 0;
  }
  .course_2 .container .infomation .info {
    width: 160px;
    height: 160px;
  }
  .course_2 .container .infomation .info p {
    font-size: 1.2em;
    width: 109%;
  }
  .course_2 .container .price {
    width: 80%;
  }
  .course_2 .container .price p {
    font-size: 1.2em;
    width: 80%;
  }
  .course_2 .container .price .price_applay a {
    font-size: 1.2em;
  }
  .course_2 .container .price strong {
    font-size: 1.2em;
  }
  .course_2 .container .samples .sample {
    width: 64%;
    font-size: 1.1em;
  }
  .course_2 .container .samples p {
    width: 80%;
    font-size: 1.2em;
  }
  .course_2 .container .samples .attention {
    width: 80%;
  }
}

@media screen and (max-width: 667px) {
  .course .container .img {
    width: 39vw;
  }
  .course .container .img h3,
  .course .container .img h1 {
    font-size: 1.4em;
  }
  .course .container .img strong {
    font-size: 1.2em;
  }
  .course_2 .container .infomation {
    display: block;
    padding: 4% 0;
  }
  .course_2 .container .infomation .info {
    width: 150px;
    height: 150px;
  }
  .course_2 .container .infomation .info p {
    font-size: 1.3em;
    width: 150%;
    top: 59%;
    left: 91%;
  }
  .course_2 .container .infomation .info_1 {
    margin: 4% 43%;
  }
  .course_2 .container .infomation .info_2 {
    margin: 4% 170%;
  }
  .course_2 .container .infomation .info_3 {
    margin: 7% 36%;
  }
  .course_2 .container .price h4 {
    font-size: 1.2em;
  }
}

@media screen and (max-width: 640px) {
  .course .container {
    display: block;
  }
  .course .container .img {
    width: 62vw;
    margin: 4% auto;
  }
}

@media screen and (max-width: 568px) {
  .course_2 .container .price {
    width: 90%;
  }
  .course_2 .container .price p {
    width: 100%;
    font-size: 1.1em;
  }
  .course_2 .container .infomation .info p {
    left: 62%;
  }
  .course_2 .container .infomation .info_2 {
    margin: 4% 153%;
  }
  .course_2 .container .infomation span {
    font-size: 2.8em;
  }
  .course_2 .container .samples p {
    width: 90%;
    font-size: 1.1em;
    margin-top: 4%;
  }
}

@media screen and (max-width: 480px) {
  .course .container {
    width: 100%;
    display: block;
  }
  .course .container .img {
    width: 75vw;
  }
}

@media screen and (max-width: 414px) {
  .course_2 .container h2 {
    font-size: 1.7em;
  }
  .course_2 .container .price {
    font-size: 1.1em;
  }
  .course_2 .container .price h4 {
    font-size: 1.1em;
  }
  .course_2 .container .price p {
    width: 100%;
  }
  .course_2 .container .price .price_applay a {
    padding: 2% 3%;
  }
  .course_2 .container .infomation span {
    font-size: 2.5em;
  }
  .course_2 .container .infomation .info p {
    font-size: 1.1em;
  }
  .course_2 .container .infomation .info_2 {
    margin: 20% 119%;
  }
  .course_2 .container .samples .sample {
    width: 77%;
  }
  .course_2 .container .samples .attention {
    width: 90%;
  }
}

@media screen and (max-width: 375px) {
  .course .container .img h3,
  .course .container .img h1 {
    font-size: 1.2em;
  }
}

@media screen and (max-width: 320px) {
  .course .container .img {
    width: 79vw;
  }
  .course_2 .container .infomation .info_2 {
    margin: 20% 79%;
  }
  .course_2 .container .price .price_applay a {
    font-size: 1.1em;
  }
  .course_2 .container .price strong {
    font-size: 1.1em;
  }
}

.profile {
  margin: 0;
  padding: 5% 0;
  width: 100%;
  background-image: url("../img/line_bg2.png");
  background-position: right bottom;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.profile .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.profile .container .profilePic {
  width: 50%;
  text-align: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.profile .container .profilePic img {
  width: 55%;
  margin: 0 0 0 26%;
  -webkit-box-shadow: 13px 10px 9px -2px #cccccc;
  box-shadow: 13px 10px 9px -2px #cccccc;
}

.profile .container .text {
  width: 50%;
}

.profile .container .text p {
  width: 70%;
  margin-bottom: 0;
  font-size: 1em;
}

@media screen and (max-width: 1200px) {
  .profile .container .profilePic img {
    width: 62%;
  }
}

@media screen and (max-width: 1024px) {
  .profile {
    background-attachment: inherit;
  }
  .profile .container .text p {
    font-size: 1em;
  }
}

@media screen and (max-width: 896px) {
  .profile .container .profilePic {
    width: 40%;
  }
  .profile .container .profilePic img {
    width: 73%;
    margin: 0;
  }
  .profile .container .text p {
    width: 100%;
    font-size: 0.9em;
  }
}

@media screen and (max-width: 667px) {
  .profile {
    background-position: 14% 100%;
  }
  .profile .container {
    display: block;
    padding: 2% 0%;
  }
  .profile .container .profilePic {
    width: 100%;
  }
  .profile .container .profilePic img {
    width: 79%;
  }
  .profile .container .text {
    width: 100%;
  }
  .profile .container .text p {
    width: 90%;
    margin: 0 auto;
    padding: 4% 0;
  }
}

@media screen and (max-width: 480px) {
  .profile .container .text p {
    font-size: 0.9em;
  }
}

.review {
  margin: 0;
  padding: 5% 0;
  width: 100%;
  background-color: #F9F6F5;
}

.review .swiper-wrapper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.review .swiper-wrapper .swiper-slide div {
  width: 50%;
  text-align: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.review .swiper-wrapper .swiper-slide div img {
  width: 62%;
  display: block;
  margin: 0 37%;
  -webkit-box-shadow: 13px 10px 9px -2px #cccccc;
  box-shadow: 13px 10px 9px -2px #cccccc;
}

.review .swiper-wrapper .swiper-slide .txt {
  width: 50%;
}

.review .swiper-wrapper .swiper-slide .txt p {
  width: 70%;
  text-align: left;
  margin: 0 2%;
  font-size: 1.3em;
}

.review .swiper-pagination {
  background: transparent;
  color: #222121;
  font-size: 15px;
  font-family: "Pinyon Script", cursive;
}

.review .swiper-pagination {
  position: inherit;
  margin-top: 6%;
}

.review .swiper-pagination {
  font-size: 20px;
}

.review .swiper-button-next,
.review .swiper-button-prev {
  top: 97%;
  width: 100px;
}

.review .swiper-button-prev {
  background-image: inherit;
  left: 25%;
}

.review .swiper-button-prev:before {
  position: absolute;
  content: "";
  bottom: 16px;
  left: 0;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 20px transparent;
  border-bottom: solid 7px black;
}

.review .swiper-button-prev:after {
  position: absolute;
  content: "";
  bottom: 16px;
  left: 10px;
  width: 89%;
  border-bottom: solid 1px #020202;
}

.review .swiper-button-next {
  background-image: inherit;
  right: 25%;
}

.review .swiper-button-next:before {
  position: absolute;
  content: "";
  bottom: 16px;
  right: 0;
  width: 0;
  height: 0;
  border: none;
  border-right: solid 20px transparent;
  border-bottom: solid 7px black;
}

.review .swiper-button-next:after {
  position: absolute;
  content: "";
  bottom: 16px;
  right: 10px;
  width: 89%;
  border-bottom: solid 1px #020202;
}

.review .reviewBtn {
  margin-top: 3%;
}

.review_2 {
  margin: 0;
  padding: 5% 0;
  width: 100%;
  background-color: #F9F6F5;
}

.review_2 .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4% 4% 0 4%;
}

.review_2 .container .image,
.review_2 .container .image_horizon {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  text-align: center;
  width: 50%;
}

.review_2 .container .image img,
.review_2 .container .image_horizon img {
  width: 60%;
  -webkit-box-shadow: 13px 10px 9px -2px #cccccc;
  box-shadow: 13px 10px 9px -2px #cccccc;
}

.review_2 .container .text {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  width: 50%;
}

.review_2 .container .text p {
  width: 90%;
  font-size: 1.2em;
  margin: 0 auto;
}

.review_2 .container .text p strong {
  display: inline-block;
  margin-top: 1%;
}

@media screen and (max-width: 1200px) {
  .review .swiper-wrapper .swiper-slide div img {
    width: 78%;
    display: block;
    margin: 0px 21%;
  }
}

@media screen and (max-width: 1024px) {
  .review_2 {
    background-attachment: inherit;
  }
  .review_2 .container .text p {
    width: 90%;
  }
}

@media screen and (max-width: 896px) {
  .review .swiper-wrapper .swiper-slide .txt p {
    font-size: 1.1em;
  }
  .review .desktop {
    display: none;
  }
  .review .swiper-button-next,
  .review .swiper-button-prev {
    display: none;
  }
  .review_2 .container {
    padding: 7% 4% 0 4%;
  }
  .review_2 .container .text p {
    width: 90%;
    font-size: 1.1em;
  }
  .review_2 .container .image_horizon img {
    width: 95%;
  }
}

@media screen and (max-width: 768px) {
  .review .swiper-wrapper .swiper-slide .txt p {
    font-size: 1.0em;
    width: 81%;
  }
}

@media screen and (max-width: 667px) {
  .review .swiper-wrapper .swiper-slide {
    display: block;
  }
  .review .swiper-wrapper .swiper-slide div {
    width: 100%;
  }
  .review .swiper-wrapper .swiper-slide div img {
    width: 79%;
    margin: 0 auto;
  }
  .review .swiper-wrapper .swiper-slide .txt {
    width: 100%;
  }
  .review .swiper-wrapper .swiper-slide .txt p {
    font-size: 1.0em;
    margin: 0 auto;
    padding: 4% 0;
  }
  .review .reviewBtn {
    margin-top: 0;
  }
  .review_2 .container {
    display: block;
    padding: 7% 0% 0 0%;
  }
  .review_2 .container .text {
    width: 100%;
  }
  .review_2 .container .text p {
    width: 90%;
    font-size: 1.0em;
    margin: 3% auto;
  }
  .review_2 .container .image_horizon {
    width: 100%;
  }
  .review_2 .container .image_horizon img {
    width: 95%;
  }
}

@media screen and (max-width: 480px) {
  .review .swiper-wrapper .swiper-slide {
    display: block;
  }
  .review .swiper-wrapper .swiper-slide div {
    width: 100%;
  }
  .review .swiper-wrapper .swiper-slide div img {
    width: 79%;
    margin: 0 auto;
  }
  .review .swiper-wrapper .swiper-slide .txt {
    width: 100%;
  }
  .review .swiper-wrapper .swiper-slide .txt p {
    font-size: 1.0em;
    margin: 0 auto;
    padding: 4% 0;
    width: 90%;
  }
  .review .reviewBtn {
    margin-top: 0;
  }
  .review .swiper-pagination {
    font-size: 0.9em;
  }
  .review h3 {
    font-size: 1.0em;
    width: 90%;
  }
  .review_2 .container .text {
    width: 100%;
  }
  .review_2 .container .text p {
    width: 90%;
    margin: 3% auto;
    font-size: 1.0em;
  }
  .review_2 .container .image_horizon {
    width: 100%;
  }
  .review_2 .container .image_horizon img {
    width: 95%;
  }
}

.contact {
  margin: 0;
  padding: 5% 0 14%;
  position: relative;
}

.contact .arrow-right {
  display: block;
  padding: 1.25rem 1.25rem;
  position: absolute;
  top: 44%;
  left: 13%;
  cursor: pointer;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}

.contact .arrow-right:hover {
  -webkit-transform: translateX(2vw);
          transform: translateX(2vw);
}

.contact .arrow-right .arrow {
  position: relative;
  height: 1px;
  width: 20vw;
  background-color: #454545;
}

.contact .arrow-right .arrow::after {
  cursor: pointer;
  position: absolute;
  content: "";
  bottom: 16px;
  right: -4px;
  width: 0;
  height: 0;
  border: none;
  border-right: solid 20px transparent;
  border-bottom: solid 7px #454545;
  top: -6px;
}

.contact .arrow-apply {
  left: 57%;
}

.contact div {
  position: relative;
}

.contact div span {
  position: absolute;
  width: 260px;
  top: 0%;
  left: 47%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 1.3em;
  right: 17%;
  color: black;
  cursor: pointer;
}

.contact .contact {
  position: absolute;
  top: 64%;
  left: 20%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.contact .apply {
  position: absolute;
  top: 77%;
  left: 57%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.contact_2 {
  margin: 0;
  padding: 5% 0;
  background-color: #f9f6f5;
}

.contact_2 .container {
  width: 50%;
  margin: 0 auto;
}

.contact_2 .container .title {
  font-size: 0.85em;
  padding: 0.7em 3em 0.7em 2em;
}

.contact_2 .container input,
.contact_2 .container textarea {
  border: none;
  background-color: #f9f6f5;
  width: 70%;
  height: 2.5em;
  padding-left: 2%;
}

.contact_2 .container input:-webkit-autofill,
.contact_2 .container textarea:-webkit-autofill {
  -webkit-text-fill-color: black !important;
  background-color: #f9f6f5 !important;
}

.contact_2 .container input:-webkit-autofill,
.contact_2 .container input:-webkit-autofill:hover,
.contact_2 .container input:-webkit-autofill:focus,
.contact_2 .container textarea:-webkit-autofill,
.contact_2 .container textarea:-webkit-autofill:hover,
.contact_2 .container textarea:-webkit-autofill:focus,
.contact_2 .container select:-webkit-autofill,
.contact_2 .container select:-webkit-autofill:hover,
.contact_2 .container select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 10000px #f9f6f5 inset !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.contact_2 .container input,
.contact_2 .container textarea:focus {
  outline: none;
}

.contact_2 .container textarea {
  height: 14em;
  width: 100%;
}

.contact_2 .container div {
  padding: 9px;
}

.contact_2 .container div:before {
  content: "";
  display: block;
  height: 0.2em;
  width: 100%;
  border-top: 1px solid black;
  padding: 7px;
}

.contact_2 .container label.error {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 0;
  color: red;
  font-size: 0.75em;
}

.contact_2 section .button {
  padding: 0% 4%;
}

.contact_2 section .button button {
  border: 1px solid black;
  background-color: transparent;
  padding: 1.5% 2.5%;
  font-size: 1em;
}

.contact_2 section .button button:hover {
  background-color: #d4a88c;
  color: white;
}

.contact_2 .buttonBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 28%;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.contact_2 .buttonBox button {
  border: 1px solid black;
  background-color: transparent;
  padding: 18% 17%;
  font-size: 1em;
}

.contact_2 .buttonBox button:hover {
  background-color: #d4a88c;
  color: white;
}

.thanks {
  padding: 5% 0 7%;
}

.thanks .toTop {
  text-align: center;
  margin-top: 3%;
}

.thanks .toTop a {
  text-decoration: none;
  padding: 0.7% 1.7%;
  border: 1px solid black;
  font-size: 1em;
  color: #454545;
}

.thanks .toTop a:hover {
  background-color: #d4a88c;
  color: white;
  border: transparent;
}

@media screen and (max-width: 1024px) {
  .contact div span {
    width: 160px;
    font-size: 1.2em;
  }
  .contact .arrow-right .arrow {
    width: 17vw;
  }
  .contact_2 {
    padding: 14% 0 37%;
  }
  .contact_2 .container {
    width: 70%;
  }
  .contact_2 .container .conform {
    font-size: 1em;
  }
  .contact_2 .container .title {
    font-size: 1em;
  }
  .thanks p {
    font-size: 1em;
  }
}

@media screen and (max-width: 812px) {
  .contact {
    padding: 5% 0 27%;
  }
  .thanks .container {
    width: 80%;
  }
  .thanks .container p {
    font-size: 0.9em;
  }
  .thanks .toTop a {
    padding: 1.7% 1.7%;
    font-size: 0.9em;
  }
}

@media screen and (max-width: 736px) {
  .contact_2 .container {
    width: 80%;
  }
  .contact_2 .container .title {
    font-size: 0.9em;
  }
  .contact_2 .container .button button {
    font-size: 0.9em;
  }
}

@media screen and (max-width: 630px) {
  .contact div span {
    width: 118px;
    font-size: 0.9em;
  }
  .contact .arrow-right .arrow {
    width: 31vw;
  }
}

@media screen and (max-width: 579px) {
  .contact_2 .container {
    width: 83%;
  }
  .contact_2 .container select {
    width: 60%;
  }
  .contact_2 .container .title {
    padding: 0.7em 1em 0.7em 1em;
  }
  .contact_2 .container .conform {
    font-size: 0.9em;
  }
  .contact_2 .button button {
    padding: 2.5% 2.5%;
  }
  .contact_2 .buttonBox {
    width: 40%;
  }
  .thanks .container {
    width: 80%;
  }
  .thanks .container p {
    font-size: 0.9em;
  }
  .thanks .toTop a {
    font-size: 0.9em;
  }
}

@media screen and (max-width: 568px) {
  .contact {
    padding: 8% 0 30%;
  }
  .contact .arrow-right .arrow {
    width: 22vw;
  }
}

@media screen and (max-width: 414px) {
  .contact {
    padding: 8% 0 55%;
  }
  .contact .arrow-right .arrow {
    width: 29vw;
  }
  .contact_2 .container .title {
    font-size: 0.8em;
  }
  .contact_2 .buttonBox button {
    font-size: 0.9em;
  }
}

@media screen and (max-width: 375px) {
  .contact .contact {
    left: 12%;
  }
  .contact .apply {
    left: 53%;
  }
  .contact div span {
    font-size: 0.9em;
  }
  .contact .arrow-right .arrow {
    width: 32vw;
  }
  .thanks .container {
    width: 90%;
  }
}

@media screen and (max-width: 358px) {
  .contact_2 .container {
    width: 90%;
  }
  .contact_2 .container .title {
    padding: 0.7em 0.5em 0.7em 1em;
  }
  .contact_2 .buttonBox {
    width: 45%;
  }
}

.apply_2 {
  margin: 0;
  padding: 5% 0;
  background-color: #f9f6f5;
}

.apply_2 .container {
  width: 50%;
  margin: 0 auto;
}

.apply_2 .container label {
  font-size: 0.85em;
  padding: 0.7em 3em 0.7em 2em;
}

.apply_2 .container input,
.apply_2 .container textarea {
  border: none;
  background-color: #f9f6f5;
  width: 70%;
  height: 2.5em;
  padding-left: 2%;
}

.apply_2 .container input:-webkit-autofill,
.apply_2 .container textarea:-webkit-autofill {
  -webkit-text-fill-color: black !important;
  background-color: #f9f6f5 !important;
}

.apply_2 .container input:-webkit-autofill,
.apply_2 .container input:-webkit-autofill:hover,
.apply_2 .container input:-webkit-autofill:focus,
.apply_2 .container textarea:-webkit-autofill,
.apply_2 .container textarea:-webkit-autofill:hover,
.apply_2 .container textarea:-webkit-autofill:focus,
.apply_2 .container select:-webkit-autofill,
.apply_2 .container select:-webkit-autofill:hover,
.apply_2 .container select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 10000px #f9f6f5 inset !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.apply_2 .container input[name="zip1"] {
  width: 40%;
}

.apply_2 .container input,
.apply_2 .container textarea:focus {
  outline: none;
}

.apply_2 .container textarea {
  height: 14em;
  width: 100%;
}

.apply_2 .container div {
  padding: 9px;
}

.apply_2 .container div:before {
  content: "";
  display: block;
  height: 0.2em;
  width: 100%;
  border-top: 1px solid black;
  padding: 7px;
}

.apply_2 .container select {
  border: none;
  background-color: transparent;
  width: 70%;
  text-align: center;
  margin: 0 auto;
}

.apply_2 .container .check {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: none;
}

.apply_2 .container .check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.apply_2 .container .check .checkmark {
  position: absolute;
  top: 24%;
  left: 10%;
  height: 20px;
  width: 20px;
  background-color: #eee;
}

.apply_2 .container .check .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.apply_2 .container .check .checkmark:after {
  left: 7px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.apply_2 .container .check:hover input ~ .checkmark {
  background-color: #ccc;
}

.apply_2 .container .check input:checked ~ .checkmark {
  background-color: #c38b74;
}

.apply_2 .container .check input:checked ~ .checkmark:after {
  display: block;
}

.apply_2 .container label.error {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 0;
  color: red;
  font-size: 0.65em;
}

.apply_2 .button {
  padding: 0% 4%;
}

.apply_2 .button button {
  border: 1px solid black;
  background-color: transparent;
  padding: 1.5% 2.5%;
  font-size: 1em;
}

.apply_2 .button button:hover {
  background-color: #d4a88c;
  color: white;
}

.apply_2 .buttonBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 28%;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.apply_2 .buttonBox button {
  border: 1px solid black;
  background-color: transparent;
  padding: 18% 17%;
  font-size: 1em;
}

.apply_2 .buttonBox button:hover {
  background-color: #d4a88c;
  color: white;
}

.thanks {
  background-color: transparent;
  padding: 5% 0 7%;
}

.thanks .toTop {
  text-align: center;
  margin-top: 3%;
}

.thanks .toTop a {
  text-decoration: none;
  padding: 0.7% 1.7%;
  border: 1px solid black;
  font-size: 1em;
  color: #454545;
}

.thanks .toTop a:hover {
  background-color: #d4a88c;
  color: white;
  border: transparent;
}

@media screen and (max-width: 1024px) {
  .apply_2 .container {
    width: 70%;
  }
  .apply_2 .container label {
    font-size: 1em;
  }
  .apply_2 .container .conform {
    font-size: 1em;
  }
  .thanks p {
    font-size: 0.8em;
  }
}

@media screen and (max-width: 812px) {
  .thanks .container {
    width: 80%;
  }
  .thanks .container p {
    font-size: 1em;
  }
  .thanks .toTop a {
    padding: 1.7% 1.7%;
    font-size: 1em;
  }
}

@media screen and (max-width: 736px) {
  .apply_2 .container {
    width: 80%;
  }
  .apply_2 .container label {
    font-size: 1em;
  }
  .apply_2 .container .button button {
    font-size: 1em;
  }
  .apply_2 .container .check .checkmark {
    height: 17px;
    width: 17px;
  }
}

@media screen and (max-width: 579px) {
  .apply_2 .container {
    width: 83%;
  }
  .apply_2 .container select {
    width: 60%;
  }
  .apply_2 .container label {
    padding: 0.7em 1em 0.7em 1em;
  }
  .apply_2 .container .conform {
    font-size: 1em;
  }
  .apply_2 .button button {
    padding: 2.5% 2.5%;
  }
  .apply_2 .buttonBox {
    width: 40%;
  }
  .apply_2 .buttonBox button {
    font-size: 1em;
  }
  .thanks .container {
    width: 80%;
  }
  .thanks .container p {
    font-size: 1em;
  }
  .thanks .toTop a {
    font-size: 1em;
  }
}

@media screen and (max-width: 414px) {
  .apply_2 .container label {
    font-size: 1em;
  }
  .apply_2 .container .check .checkmark {
    height: 15px;
    width: 15px;
  }
  .apply_2 .buttonBox button {
    font-size: 0.9em;
  }
}

@media screen and (max-width: 375px) {
  .thanks .container {
    width: 90%;
  }
}

@media screen and (max-width: 358px) {
  .apply_2 .container {
    width: 90%;
  }
  .apply_2 .container label {
    padding: 0.7em 0.5em 0.7em 1em;
  }
  .apply_2 .buttonBox {
    width: 45%;
  }
}

.seminar {
  margin: 0;
  padding: 2% 0;
  width: 100%;
}

.seminar h4 {
  text-align: center;
  font-size: 1.2em;
  margin-top: 1%;
}

.seminar h5 {
  text-align: center;
  font-size: 1.5em;
  margin-bottom: 0;
  margin-top: 0.5%;
}

.seminar h6 {
  margin-top: 0;
  text-align: center;
  font-weight: 100;
  font-size: 1em;
  margin-bottom: 1%;
}

.seminar p {
  font-size: 1.2em;
}

.seminar .container_seminar {
  padding: 4%;
}

.seminar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4%;
}

.seminar .container .left {
  width: 40%;
  position: relative;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.seminar .container .left img {
  width: 100%;
  -webkit-box-shadow: 13px 10px 9px -2px #cccccc;
  box-shadow: 13px 10px 9px -2px #cccccc;
}

.seminar .container .right {
  width: 60%;
  padding: 0 0 0 0%;
}

.seminar .container .right ul {
  font-size: 1.2em;
}

.seminar .container .right ul li {
  list-style: none;
  margin: 0;
  padding: 0;
  text-indent: -0.3em;
}

.seminar .container .right ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  background-color: #C38B74;
  position: relative;
  top: -1px;
  left: -2%;
}

.seminar .container .right img {
  width: 70%;
}

.seminar .container .serviceBox {
  padding: 4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.seminar .container .serviceBox .service {
  width: 70px;
  height: 70px;
  position: relative;
  background-color: #F9F6F5;
}

.seminar .container .serviceBox .service p {
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 1.4em;
  width: 165px;
  text-align: left;
  z-index: 2;
}

.seminar .introductions {
  padding: 5% 0;
  text-align: center;
}

.seminar .introductions p {
  text-align: left;
  width: 45%;
  display: inline-block;
  font-size: 1.2em;
}

.seminar .seminarbg {
  background-color: #F9F6F5;
}

.seminar ul {
  font-size: 1.2em;
}

.seminar ul li {
  list-style: none;
  margin: 0;
  padding: 0;
  text-indent: -0.3em;
}

.seminar ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  background-color: #C38B74;
  position: relative;
  top: -1px;
  left: -2%;
}

.seminar .seminarBG {
  padding: 4%;
}

.seminar .seminarBG img {
  width: 100%;
}

.seminar .seminarCenter {
  width: 50%;
  margin: 0 auto;
  padding-bottom: 5%;
}

.seminar .reset {
  text-align: inherit;
}

.seminar .reset p {
  display: block;
  text-align: center;
  margin: 0 auto;
}

.seminar .reset .seminarLeft {
  text-align: left;
}

.seminar .reset .seminarcalc {
  margin-bottom: 5%;
}

@media screen and (max-width: 1024px) {
  .seminar h4 {
    padding: 0 5%;
  }
  .seminar .seminarCenter {
    width: 72%;
  }
  .seminar .introductions p {
    width: 60%;
  }
}

@media screen and (max-width: 896px) {
  .seminar h5 {
    margin-top: 5%;
  }
  .seminar .introductions p {
    width: 80%;
    font-size: 1em;
  }
  .seminar .container {
    display: block;
  }
  .seminar .container .left {
    width: 60%;
  }
  .seminar .container .right {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .seminar .container .right img {
    width: 59%;
    position: absolute;
    top: 50%;
    left: 31%;
    -webkit-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
  }
  .seminar .container .right ul {
    width: 80%;
    text-align: left;
    display: inline-block;
    font-size: 1em;
  }
  .seminar .seminarCenter {
    width: 81%;
  }
  .seminar .seminarCenter ul {
    font-size: 1em;
  }
}

@media screen and (max-width: 736px) {
  .seminar .container .right ul {
    width: 83%;
  }
  .seminar .container h4 {
    font-size: 1em;
  }
  .seminar .introductions p {
    width: 80%;
  }
}

@media screen and (max-width: 568px) {
  .seminar .container .right p {
    width: 90%;
  }
  .seminar .container .serviceBox .service p {
    width: 135px;
    left: 74%;
    font-size: 1.2em;
  }
}

@media screen and (max-width: 480px) {
  .seminar .container .left {
    width: 70%;
  }
  .seminar .container .right ul {
    width: 90%;
  }
  .seminar .container h4 {
    padding: 0px 8%;
  }
  .seminar .seminarCenter {
    width: 90%;
  }
}

@media screen and (max-width: 414px) {
  .seminar h1 {
    font-size: 1em;
  }
  .seminar .container h4 {
    font-size: 1em;
  }
  .seminar .container h2 {
    font-size: 1.5em;
  }
  .seminar .container .right ul {
    padding: 0%;
    font-size: 1em;
  }
  .seminar .container .serviceBox .service p {
    font-size: 1em;
  }
  .seminar .introductions p {
    font-size: 1em;
    width: 95%;
  }
  .seminar .seminarCenter ul {
    font-size: 1em;
    padding-left: 8px;
  }
}

@media screen and (max-width: 360px) {
  .seminar .container .serviceBox .service {
    width: 60px;
    height: 60px;
  }
  .seminar .container .serviceBox .service p {
    width: 124px;
    left: 65%;
    font-size: 1em;
  }
  .seminar .container .right ul {
    width: 90%;
  }
}

.law {
  background-color: #F9F6F5;
  padding: 5% 0;
  text-align: center;
}

.law .container {
  text-align: left;
  display: block;
  width: 60%;
  margin: 0 auto;
}

.law .container h4 {
  text-align: center;
  font-size: 1.5em;
}

.law .container p {
  font-size: 1em;
}

.law .container strong {
  font-size: 1.1em;
}

@media screen and (max-width: 896px) {
  .law .container {
    width: 80%;
  }
}

@media screen and (max-width: 736px) {
  .law .container {
    width: 70%;
  }
  .law .container h4 {
    font-size: 1.3em;
  }
}

@media screen and (max-width: 414px) {
  .law {
    padding: 5% 0 10%;
  }
  .law .container {
    width: 90%;
  }
  .law .container strong {
    font-size: 1em;
  }
  .law .container p {
    font-size: 0.9em;
  }
}

@media screen and (max-width: 360px) {
  .law .container {
    width: 85%;
  }
  .law .container strong {
    font-size: 1em;
  }
  .law .container p {
    font-size: 0.9em;
  }
}

.siteMap {
  background-color: #F9F6F5;
  padding: 5% 0;
}

.siteMap .container {
  display: block;
  width: 40%;
  margin: 0 auto;
}

.siteMap .container ul {
  margin: 0;
  padding: 0;
}

.siteMap .container li {
  list-style: none;
  padding: 6px 20px;
  font-size: 1.1em;
}

.siteMap .container a {
  text-decoration: none;
  color: black;
}

.siteMap .container .line {
  padding-top: 1%;
  display: block;
}

.siteMap .container .line::after {
  content: "";
  display: block;
  height: 0.2em;
  width: 100%;
  border-top: 1px solid #b9b7b5;
}

.siteMap .container .sub {
  display: inline-block;
  font-size: 0.95em;
  padding-top: 0;
  cursor: pointer;
}

.siteMap .container .sub a:hover {
  border-bottom: 1px solid black;
  color: #C38B74;
}

@media screen and (max-width: 1024px) {
  .siteMap .container {
    width: 60%;
  }
}

@media screen and (max-width: 736px) {
  .siteMap .container {
    width: 70%;
  }
}

@media screen and (max-width: 667px) {
  .siteMap .container {
    width: 80%;
  }
  .siteMap .container li {
    font-size: 0.9em;
  }
}

@media screen and (max-width: 414px) {
  .siteMap {
    padding: 5% 0 29%;
  }
  .siteMap .container {
    width: 90%;
  }
  .siteMap .container .sub {
    font-size: 0.8em;
  }
}

@media screen and (max-width: 360px) {
  .siteMap .container {
    width: 90%;
  }
}

.links {
  padding: 5% 0;
  text-align: center;
}

.links .container {
  display: block;
  width: 80%;
  margin: 0 auto;
  margin-top: 3%;
}

.links .container p {
  font-size: 1em;
  text-align: center;
}

.links .container .contact-mail > a {
  text-align: center;
  position: relative;
  color: black;
  font-size: 1.5em;
  text-decoration: none;
}

.links .container .contact-mail > a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #C38B74;
  visibility: hidden;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.links .container .contact-mail > a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

@media screen and (max-width: 1024px) {
  .links .container .contact-mail > a {
    font-size: 1.2em;
  }
}

@media screen and (max-width: 736px) {
  .links .container {
    width: 80%;
  }
}

@media screen and (max-width: 568px) {
  .links .container {
    width: 80%;
  }
  .links .container .contact-mail > a {
    font-size: 1em;
  }
}

@media screen and (max-width: 480px) {
  .links .container {
    width: 90%;
  }
  .links .container p {
    font-size: 0.9em;
  }
}

@media screen and (max-width: 360px) {
  .links .container {
    width: 90%;
  }
}

@media screen and (max-width: 320px) {
  .links .container .contact-mail > a {
    font-size: 0.8em;
  }
}

.privacy {
  background-color: #F9F6F5;
  padding: 5% 0;
  text-align: center;
}

.privacy .container {
  text-align: left;
  display: block;
  width: 60%;
  margin: 0 auto;
}

.privacy .container p {
  font-size: 1em;
}

@media screen and (max-width: 736px) {
  .privacy .container {
    width: 70%;
  }
}

@media screen and (max-width: 568px) {
  .privacy .container {
    width: 90%;
  }
}

@media screen and (max-width: 414px) {
  .privacy {
    padding: 5% 0 10%;
  }
  .privacy .container {
    margin-top: 5%;
  }
  .privacy .container strong {
    font-size: 1em;
  }
  .privacy .container p {
    font-size: 0.9em;
  }
}

@media screen and (max-width: 360px) {
  .privacy .container {
    width: 85%;
  }
}

footer {
  background-color: #F0F0F0;
  color: #555555;
  padding: 1% 0 0 0;
  position: relative;
}

footer .fade {  
    -webkit-transition: 0.3s ease-in-out;  
       -moz-transition: 0.3s ease-in-out;  
         -o-transition: 0.3s ease-in-out;  
            transition: 0.3s ease-in-out;  
}  
footer .fade:hover {  
    opacity: 0.6;  
    filter: alpha(opacity=60);  
} 

footer .link {
  display: block;
  position: absolute;
  top: 0%;
  left: 5%;
  cursor: pointer;
}

footer .link img {
  width: 100%;
}

footer .link span {
  position: absolute;
  top: 25%;
  left: 47%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 2em;
  right: 17%;
  cursor: pointer;
}

footer div {
  text-align: center;
  position: relative;
}

footer div .logo {
  width: 130px;
}

footer div {
  margin-top: 2%;
}

footer div a {
  color: #555555;
  text-decoration: none;
  font-size: 0.9em;
}

footer a:hover {
  color: #b38110;
}

footer .copyright {
  font-size: 0.75em;
  margin-top: 0.5%;
}

footer .footerNavMobile {
  display: none;
  margin-top: 2%;
}

footer .footerNavMobile a {
  color: black;
  text-decoration: none;
  font-size: 0.8em;
}

footer .sns {
  position: absolute;
  right: 20%;
  bottom: 50%;
}

footer .sns .fab {
  font-size: 2em;
}

@media screen and (max-width: 1024px) {
  footer .link {
    width: 20%;
  }
  footer .sns {
    right: 16%;
  }
}

@media screen and (max-width: 896px) {
  footer .link span {
    font-size: 1.8em;
  }
  footer .link img {
    width: 77%;
  }
  footer div .logo {
    width: 100px;
  }
  footer .footerNav {
    display: none;
  }
  footer .footerNavMobile {
    display: block;
  }
  footer .footerNavMobile a {
    font-size: 0.7em;
  }
}

@media screen and (max-width: 736px) {
  footer .link img {
    width: 92%;
  }
  footer div a {
    font-size: 0.7em;
  }
}

@media screen and (max-width: 490px) {
  footer .link span {
    font-size: 1.4em;
  }
  footer div .logo {
    width: 80px;
  }
  footer .copyright {
    font-size: 0.5em;
  }
}

@media screen and (max-width: 414px) {
  footer .link {
    font-size: 1.3em;
  }
  footer .link span {
    font-size: 1.2em;
  }
  footer .link img {
    width: 120%;
  }
  footer .sns {
    bottom: 50%;
  }
}

@media screen and (max-width: 320px) {
  footer .link {
    top: 9%;
  }
}

body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  font-family: serif;
}

body footer {
  margin-top: auto;
}

body h2 {
  text-align: center;
  font-size: 1.6em;
  margin-bottom: 0;
}

body h3, body h1 {
  font-size: 1.3em;
  margin-top: 0;
  text-align: center;
  font-weight: 100;
}

body p {
  color: #3a3838;
}

body .moreBtn {
  text-align: center;
}

body .moreBtn a {
  text-decoration: none;
  color: #454545;
  font-size: 1.1em;
  padding: 1%;
  border: 0.2px solid #3a3838;
}

body .moreBtn a:hover {
  background-color: #3a3838;
  color: white;
  border: hidden;
}

@media screen and (max-width: 1024px) {
  body .moreBtn a {
    font-size: 1.4em;
  }
}

@media screen and (max-width: 896px) {
  body h2 {
    font-size: 1.6em;
  }
  body h1 {
    font-size: 1.2em;
    width: 80%;
    margin: 0 auto;
  }
  body h3 {
    width: 80%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 736px) {
  body .moreBtn a {
    font-size: 1.2em;
    padding: 2%;
  }
}

@media screen and (max-width: 480px) {
  body .moreBtn a {
    font-size: 1.1em;
    padding: 3%;
  }
}

@media screen and (max-width: 414px) {
  body h1 {
    font-size: 1.1em;
  }
  body h2 {
    font-size: 1.5em;
  }
}

@media screen and (max-width: 320px) {
  body h2 {
    font-size: 1.5em;
  }
}
/*# sourceMappingURL=index.css.map */