@charset "UTF-8";
@import url(./reset.css);
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://webfontworld.github.io/pretendard/Pretendard.css');
/******************************************
메인시작
*******************************************/
.at-html {
  background-color: #fffafa;
  min-height: 100vh;
  max-width: 100%;
  position: relative;
}
.at-html * {
  font-family: "Noto Sans JP", "Pretendard", sans-serif;
  font-optical-sizing: auto;
  box-sizing: border-box;
}
.at-html.intro {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.at-html.intro .content {
  margin: 40px auto 50px auto;
  width: 100%;
  flex: 1;
  height: auto;
  width: calc(100% - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #fff;
}
.at-html.intro .content h3 {
  font-size: 76px;
  font-weight: 700;
  color: #f2a7a0;
  text-align: center;
}
.at-html.intro .content p {
  margin-top: 50px;
  text-align: center;
  font-size: 42px;
  color: #000;
  line-height: 62px;
}
.at-html.intro .next {
  width: 100%;
  padding: 0 40px 48px 40px;
}
.at-html.intro .next a {
  background-color: #f2a7a0;
  display: block;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  padding: 27px;
  text-decoration: none;
}

header {
  background-color: #fff;
  padding: 20px 0;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}
header .log-box {
  display: flex;
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
}
header .log-box a {
  font-size: 24px;
  color: #666666;
  font-weight: 500;
}
header .log-box a + a {
  margin-left: 20px;
}
header .logo img {
  height: 44px;
}
header .lang-wrapper2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 40px;
}
header .lang-wrapper2 .lang-btn2 {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  width: 150px;
  height: 40px;
  border: 1px solid #e1e1e1;
  background-color: #fff;
  border-radius: 27px;
}
header .lang-wrapper2 .lang-btn2 span {
  font-size: 20px;
  margin: 0 20px 0 10px;
  font-weight: 500;
}
header .lang-wrapper2 .lang-select2 {
  position: absolute;
  z-index: 2;
  top: 27.5px;
  width: 100%;
  margin-top: 1px;
  border: 1px solid #e1e1e1;
  border-radius: 0 0 27px 27px;
  background-color: #fff;
  padding: 37.5px 0 10px 0;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}
header .lang-wrapper2 .lang-select2.active {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}
header .lang-wrapper2 .lang-select2 li a {
  padding: 10px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: #222;
  font-size: 20px;
}
header .lang-wrapper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
}
header .lang-wrapper .lang-btn {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  width: 130px;
  height: 40px;
  border: 1px solid #e1e1e1;
  background-color: #fff;
  border-radius: 27px;
}
header .lang-wrapper .lang-btn span {
  font-size: 20px;
  margin: 0 25px 0 8px;
  font-weight: 500;
}
header .lang-wrapper .lang-btn .lang-icon {
  width: 16px;
}
header .lang-wrapper .lang-btn .lang-arr {
  width: 10px;
}
header .lang-wrapper .lang-select {
  position: absolute;
  z-index: 2;
  top: 27.5px;
  width: 100%;
  margin-top: 1px;
  border: 1px solid #e1e1e1;
  border-radius: 0 0 27px 27px;
  background-color: #fff;
  padding: 37.5px 0 10px 0;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}
header .lang-wrapper .lang-select.active {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}
header .lang-wrapper .lang-select li a {
  padding: 10px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: #222;
  font-size: 20px;
}

.content {
  background-color: #fef9f9;
}
.content * {
  box-sizing: border-box;
  font-size: 23px;
  line-height: 1.2;
  color: #111;
  letter-spacing: -.05em;
}
@media (max-width: 1700px) {
  .content * {
    font-size: 16px;
  }
}
@media (max-width: 1300px) {
  .content * {
    font-size: 15px;
  }
}
.content .content-inner {
  height: calc(100vh - 105px);
  padding: 25px 25px;
  display: flex;
  gap: 40px;
}
.content .content-inner .info-title {
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #d6d6d6;
}
.content .content-inner .info-title.wifi img {
  margin-bottom: 4px;
}
.content .content-inner .info-title img {
  margin-right: 17px;
  width: 22px;
}
@media (max-width: 1300px) {
  .content .content-inner .info-title img {
    width: 20px;
    margin-right: 8px;
  }
}
.content .content-inner .info-title span {
  margin-left: 15px;
  font-size: 16px;
  color: #b7b7b7;
  font-weight: 400;
}
.content .content-inner .left,
.content .content-inner .mid,
.content .content-inner .right {
  flex: 1;
}
.content .content-inner .left .bed {
  background-color: #fff;
  padding: 25px 30px;
  height: 130px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.01);
}
.content .content-inner .left .bed p:nth-child(2) {
  margin-top: 17px;
}
.content .content-inner .left .bed p .bed-number {
  font-size: 30px;
  font-weight: 600;
}
@media (max-width: 1500px) {
  .content .content-inner .left .bed p .bed-number {
    font-size: 40px;
  }
}
.content .content-inner .left .bed p .equipment-number {
  font-size: 24px;
  color: #999;
}
.content .content-inner .left .info {
  background-color: #fff;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.01);
}
.content .content-inner .left .info .object {
  margin-bottom: 38.5px;
}
.content .content-inner .left .info .object:last-child {
  margin-bottom: 0;
}
.content .content-inner .left .info .object .info-con li {
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
}
.content .content-inner .mid .modal-btn {
  display: flex;
  align-items: center;
  padding: 0 50px 0 60px;
  height: 130px;
  border-radius: 10px;
}
@media (max-width: 1700px) {
  .content .content-inner .mid .modal-btn {
    padding: 0 30px;
  }
}
@media (max-width: 1300px) {
  .content .content-inner .mid .modal-btn {
    padding: 0 20px;
  }
}
.content .content-inner .mid .modal-btn .icon {
  margin-right: 50px;
}
@media (max-width: 1500px) {
  .content .content-inner .mid .modal-btn .icon {
    margin-right: 30px;
  }
}
@media (max-width: 1300px) {
  .content .content-inner .mid .modal-btn .icon {
    margin-right: 15px;
  }
}
.content .content-inner .mid .modal-btn .icon img {
  height: 54px;
}
.content .content-inner .mid .modal-btn .text p {
  color: #fff;
}
.content .content-inner .mid .modal-btn .text p:nth-child(1) {
  font-size: 20px;
  margin-bottom: 17px;
}
.content .content-inner .mid .modal-btn .text p:nth-child(2) {
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 1770px) {
  .content .content-inner .mid .modal-btn .text p:nth-child(2) {
    font-size: 30px;
  }
}
@media (max-width: 1500px) {
  .content .content-inner .mid .modal-btn .text p:nth-child(2) {
    font-size: 24px;
  }
}
.content .content-inner .mid .call {
  background-color: #f2a7a0;
  margin-bottom: 20px;
}
.content .content-inner .mid .qa {
  background-color: #7e7e7e;
  margin-bottom: 20px;
}
.content .content-inner .mid .modal-btn-list {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 25px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.01);
}
.content .content-inner .mid .modal-btn-list .info-title {
  padding-bottom: 20px;
}
.content .content-inner .mid .modal-btn-list .buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
}
.content .content-inner .mid .modal-btn-list .buttons .button {
  width: calc(50% - 10.5px);
  text-align: center;
  padding: 10.3px 0;
  background-color: #fff6f6;
  border-radius: 6px;
  margin-bottom: 20px;
  font-weight: 500;
}
.content .content-inner .mid .modal-btn-list .buttons .button:nth-child(odd) {
  margin-right: 21px;
}
.content .content-inner .mid .modal-btn-list .buttons .button:nth-last-child(1), .content .content-inner .mid .modal-btn-list .buttons .button:nth-last-child(2) {
  margin-bottom: 0;
}
.content .content-inner .mid .modal-btn-list .buttons .button p:nth-child(1) {
  font-size: 18px;
  margin-bottom: 5px;
}
.content .content-inner .mid .modal-btn-list .buttons .button p:nth-child(2) {
  font-size: 15px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5);
}
.content .content-inner .right .notice {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 10px 13px 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.01);
}
.content .content-inner .right .notice .object .info-title {
  margin-right: 30px;
  padding-bottom: 20px;
}
.content .content-inner .right .text-area {
  margin-top: 20px;
  height: 480px;
  overflow-y: auto;
}
.content .content-inner .right .text-area::-webkit-scrollbar-thumb {
  background: #ededed;
}
.content .content-inner .right .text-area::-webkit-scrollbar-track {
  background-color: #fff;
}
.content .content-inner .right .text-area::-webkit-scrollbar-button {
  background-color: #fff;
}
.content .content-inner .right .text-area::-webkit-scrollbar {
  width: 8px;
}
.content .content-inner .right .no-smoke {
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  height: 100px;
  padding: 0 0 0 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.01);
}
.content .content-inner .right .no-smoke .icon {
  color: #df2626;
  display: flex;
  align-items: center;
  font-weight: 600;
  margin-right: 60px;
  font-size: 22px;
  white-space: nowrap;
}
@media (max-width: 1500px) {
  .content .content-inner .right .no-smoke .icon {
    font-size: 25px;
    margin-right: 17px;
  }
}
.content .content-inner .right .no-smoke .icon img {
  margin-right: 12px;
  width: 20px;
}
.content .content-inner .right .no-smoke .text p {
  font-size: 20px;
  line-height: 31px;
}
.content .content-inner .right .no-smoke .text p:nth-child(1) {
  font-weight: 600;
  margin-bottom: 6px;
}
.content .content-inner .right .no-smoke .text p:nth-child(2) {
  font-weight: 300;
  color: #666666;
}
.content .content-inner .right .no-smoke .text a {
  font-size: 21px;
  font-weight: 300;
  color: #666666;
}

.modal-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  width: 100%;
  height: 100%;
  z-index: 100;
}
.modal-wrapper.active {
  display: block;
}
.modal-wrapper.call .explain {
  margin-top: 40px;
  font-size: 24px;
  color: #f27064;
  font-weight: 500;
}
.modal-wrapper.call form {
  margin-top: 20px;
}
.modal-wrapper.call form .input-box {
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
}
.modal-wrapper.call form .input-box input {
  width: calc(66.6666667% - 12.5px);
  height: 65px;
  border-radius: 5px;
  padding-left: 31px;
  font-size: 24px;
  border: 1px solid #f2a7a0;
}
.modal-wrapper.call form .input-box input:disabled {
  background-color: unset;
  border: 1px solid #e1e1e1;
}
.modal-wrapper.call form .input-box input:checked + label {
  border: 1px solid #f2a7a0;
  background-image: url(../img/check-on.png);
}
.modal-wrapper.call form .input-box label {
  border-radius: 5px;
  height: 65px;
  cursor: pointer;
  font-size: 22px;
  padding: 22px 0 22px 75px;
  border: 1px solid #e1e1e1;
  width: calc(33% - 17px);
  margin-right: 25.5px;
  margin-bottom: 25px;
  background-image: url(../img/check-off.png);
  background-repeat: no-repeat;
  background-position: center left 30px;
}
.modal-wrapper.call form .input-box label:nth-last-child(2) {
  margin-bottom: 0;
}
.modal-wrapper.call form .input-box label:nth-child(3n) {
  margin-right: 0;
}
.modal-wrapper.call form .btns {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.modal-wrapper.call form .btns div,
.modal-wrapper.call form .btns button {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 300px;
  height: 65px;
  border: none;
  border-radius: 3px;
}
.modal-wrapper.call form .btns .close-btn {
  margin-right: 20px;
  background-color: #e1e1e1;
}
.modal-wrapper.call form .btns .submit {
  background-color: #f2a7a0;
}
.modal-wrapper.call.fucus {
  background-color: #fff;
  height: calc(100% + 450px);
}
.modal-wrapper.call.fucus .modal-con {
  width: 100%;
}
.modal-wrapper.qa .close-btn {
  position: absolute;
  top: 10px;
  right: -50px;
}
.modal-wrapper.qa .modal-con {
  padding-right: 20px;
}
.modal-wrapper.qa .modal-con .qa-con {
  margin-top: 60px;
}
.modal-wrapper.qa .modal-con .qa-con ul {
  height: calc(100vh - 200px);
  padding-right: 70px;
  overflow-x: auto;
}
.modal-wrapper.qa .modal-con .qa-con ul::-webkit-scrollbar-thumb {
  background: #ededed;
}
.modal-wrapper.qa .modal-con .qa-con ul::-webkit-scrollbar-track {
  background-color: #fff;
}
.modal-wrapper.qa .modal-con .qa-con ul::-webkit-scrollbar-button {
  background-color: #fff;
}
.modal-wrapper.qa .modal-con .qa-con ul li {
  padding: 34px;
  background-color: #fbfbfb;
  margin-bottom: 23px;
}
.modal-wrapper.qa .modal-con .qa-con ul li:last-child {
  margin-bottom: 0;
}
.modal-wrapper.qa .modal-con .qa-con ul li div:nth-child(1) {
  margin-bottom: 16px;
}
.modal-wrapper.qa .modal-con .qa-con ul li div.q span {
  color: #ee7423;
  font-size: 28px;
}
.modal-wrapper.qa .modal-con .qa-con ul li div.q p {
  color: #111;
  font-size: 28px;
}
.modal-wrapper.qa .modal-con .qa-con ul li div.a span,
.modal-wrapper.qa .modal-con .qa-con ul li div.a p {
  color: #666;
}
.modal-wrapper.qa .modal-con .qa-con ul li div span {
  font-weight: 500;
  font-size: 24px;
  margin-right: 9px;
}
.modal-wrapper.qa .modal-con .qa-con ul li div p {
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
}
.modal-wrapper.qa .modal-con .qa-con ul li div p:nth-child(2) {
  display: inline;
}
.modal-wrapper.matter .modal-con {
  padding-right: 20px;
}
.modal-wrapper.matter .modal-con .close-btn {
  position: absolute;
  top: 10px;
  right: -50px;
}
.modal-wrapper.matter .modal-con .matter-con {
  margin-top: 40px;
  height: calc(100vh - 200px);
  padding-right: 70px;
  overflow-x: auto;
}
.modal-wrapper.matter .modal-con .matter-con::-webkit-scrollbar-thumb {
  background: #ededed;
}
.modal-wrapper.matter .modal-con .matter-con::-webkit-scrollbar-track {
  background-color: #fff;
}
.modal-wrapper.matter .modal-con .matter-con::-webkit-scrollbar-button {
  background-color: #fff;
}
.modal-wrapper.matter .modal-con .matter-con .exam {
  height: 2006px;
  background-color: #666;
}
.modal-wrapper .modal-con {
  position: absolute;
  width: calc(100% - 270px);
  height: calc(100vh - 20px);
  background-color: #fff;
  padding: 70px 100px;
  top: 10px;
  left: 50%;
  transform: translate(-50%, 0);
}
.modal-wrapper .modal-con h5 {
  font-size: 40px;
  font-weight: 600;
  color: #111;
  text-align: center;
  padding-right: 70px;
}
.modal-wrapper .modal-con img {
  width: 100%;
}

/******************************************
서브시작
*******************************************/
.m01_wrap {
  max-width: 768px;
  overflow: hidden;
}
.m01_wrap .m01_01_01 h1 {
  padding: 0 35px;
  font-size: 30px;
  color: #000;
  font-weight: 500;
  line-height: 75px;
  background-color: white;
position: absolute; left: 0; top: 0; width: 100%;
}

#m01_container{background-color: #020e27;}

.m01_wrap .m01_01_01 .m01_cont {
  padding: 0 35px;
  padding-top: 80px;
  background: #020e27;
  padding-bottom: 89px;
  height: 100vh;
}
.m01_wrap .m01_01_01 .m01_cont h2 {
  font-size: 30px;
  color: #fff;
  font-weight: 600;
  line-height: 70px;
  border-bottom: 1px solid #676e7d;
}
.m01_wrap .m01_01_01 .m01_cont .desc {
  padding: 35px 0 70px;
}
.m01_wrap .m01_01_01 .m01_cont .desc > ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}
.m01_wrap .m01_01_01 .m01_cont .desc > ul li span.title {
  color: #fff;
  width: 90px;
  display: inline-block;
  font-size: 22px;
}
.m01_wrap .m01_01_01 .m01_cont .desc > ul li span.title_desc {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
}
.m01_wrap .m01_01_01 .m01_cont .desc > ul li:first-child {
  margin-bottom: 60px;
}
.m01_wrap .m01_01_01 .m01_cont .desc > ul li:first-child span.title {
  text-align: justify;
}
.m01_wrap .m01_01_01 .m01_cont .desc > ul li:first-child span.title_desc {
  font-size: 30px;
}
.m01_wrap .m01_01_01 .m01_cont .desc > ul li:last-child {
  margin-bottom: 0;
}
.m01_wrap .m01_01_01 .m01_cont .desc_num > ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}
.m01_wrap .m01_01_01 .m01_cont .desc_num > ul li:last-child {
  margin-bottom: 0;
}
.m01_wrap .m01_01_01 .m01_cont .desc_num > ul li > span {
  font-size: 26px;
}
.m01_wrap .m01_01_01 .m01_cont .desc_num > ul li span.num {
  color: #8e9097;
}
.m01_wrap .m01_01_01 .m01_cont .desc_num > ul li span.num_desc {
  color: #fff;
  font-weight: 500;
}
.m01_wrap .m01_01_01 .m01_cont .desc_num > ul li::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #676e7d;
  bottom: -22px;
  left: 0;
}


.m01_wrap .m01_01_02 h1 {
  padding: 0 35px;
  font-size: 30px;
  color: #000;
  font-weight: 500;
  line-height: 75px; 
  background-color: white;
  position: absolute; left: 0; top: 0; width: 100%;
}
.m01_wrap .m01_01_02 .m01_01_wrap {
  padding: 75px 35px 91px 35px;
  background: #020e27;
  height: 100vh;
}
.m01_wrap .m01_01_02 .m01_01_wrap .m01_cont01 {
  margin-bottom: 0;
}
.m01_wrap .m01_01_02 .m01_01_wrap .m01_cont01:last-child {
  margin-bottom: 0;
}
.m01_wrap .m01_01_02 .m01_01_wrap .m01_cont01 h2 {
  font-size: 30px;
  color: #fff;
  font-weight: 600;
  line-height: 70px;
  border-bottom: 1px solid #676e7d;
}
.m01_wrap .m01_01_02 .m01_01_wrap .desc > p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.m01_wrap .m01_01_02 .m01_01_wrap .desc > p > span {
  color: white;
  font-size: 22px;
}
.m01_wrap .m01_01_02 .m01_01_wrap .desc > p span.title {
  width: 90px;
  display: inline-block;
}
.m01_wrap .m01_01_02 .m01_01_wrap .desc > p span.title span.br {
  width: 45px;
  display: inline-block;
}
.m01_wrap .m01_01_02 .m01_01_wrap .desc > p span.title_desc {
  font-size: 30px;
  font-weight: 600;
}
.m01_wrap .m01_01_02 .m01_01_wrap .desc ul.ul_01 {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.m01_wrap .m01_01_02 .m01_01_wrap .desc ul.ul_01 li {
  display: flex;
  justify-content: space-between;
  width: calc(50% - 20px);
  align-items: start;
  margin-bottom: 20px;
}
.m01_wrap .m01_01_02 .m01_01_wrap .desc ul.ul_01 li > span {
  color: #fff;
}
.m01_wrap .m01_01_02 .m01_01_wrap .desc ul.ul_01 li span.ul_li_span01 {
  font-size: 20px;
}
.m01_wrap .m01_01_02 .m01_01_wrap .desc ul.ul_01 li span.ul_li_span02 {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  margin-top: -5px;
}
.m01_wrap .m01_01_02 .m01_01_wrap .desc ul.ul_02 {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.m01_wrap .m01_01_02 .m01_01_wrap .desc ul.ul_02 li {
  width: calc(50% - 20px);
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 50px;
}
.m01_wrap .m01_01_02 .m01_01_wrap .desc ul.ul_02 li::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  background: #676e7d;
  bottom: -22px;
  left: 0;
}
.m01_wrap .m01_01_02 .m01_01_wrap .desc ul.ul_02 li > span {
  color: #8e9097;
}
.m01_wrap .m01_01_02 .m01_01_wrap .desc ul.ul_02 li span.num {
  font-size: 24px;
  font-weight: 500;
}
.m01_wrap .m01_01_02 .m01_01_wrap .desc ul.ul_02 li span.num_desc {
  font-size: 22px;
  font-weight: 600;
}