@import url('https://fonts.googleapis.com/css2?family=Amethysta&family=Noto+Sans+KR:wght@100..900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/pretendard/1.3.9/static/pretendard.css');


@font-face {
  font-family: 'AppleSDGothicNeoT';
  font-weight: 100;
  font-style: normal;
  font-display: swap;
  src: url('https://cdn.jsdelivr.net/gh/fonts-archive/AppleSDGothicNeo/AppleSDGothicNeo-Thin.woff2') format('woff2'),
       url('https://cdn.jsdelivr.net/gh/fonts-archive/AppleSDGothicNeo/AppleSDGothicNeo-Thin.ttf') format('truetype');
}
@font-face {
  font-family: 'AppleSDGothicNeoUL';
  font-weight: 200;
  font-style: normal;
  font-display: swap;
  src: url('https://cdn.jsdelivr.net/gh/fonts-archive/AppleSDGothicNeo/AppleSDGothicNeo-ExtraLight.woff2') format('woff2'),
       url('https://cdn.jsdelivr.net/gh/fonts-archive/AppleSDGothicNeo/AppleSDGothicNeo-ExtraLight.ttf') format('truetype');
}
@font-face {
  font-family: 'AppleSDGothicNeoL';
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url('https://cdn.jsdelivr.net/gh/fonts-archive/AppleSDGothicNeo/AppleSDGothicNeo-Light.woff2') format('woff2'),
       url('https://cdn.jsdelivr.net/gh/fonts-archive/AppleSDGothicNeo/AppleSDGothicNeo-Light.ttf') format('truetype');
}
@font-face {
  font-family: 'AppleSDGothicNeoM';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('https://cdn.jsdelivr.net/gh/fonts-archive/AppleSDGothicNeo/AppleSDGothicNeo-Regular.woff2') format('woff2'),
       url('https://cdn.jsdelivr.net/gh/fonts-archive/AppleSDGothicNeo/AppleSDGothicNeo-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'AppleSDGothicNeoR';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('https://cdn.jsdelivr.net/gh/fonts-archive/AppleSDGothicNeo/AppleSDGothicNeo-Medium.woff2') format('woff2'),
       url('https://cdn.jsdelivr.net/gh/fonts-archive/AppleSDGothicNeo/AppleSDGothicNeo-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'AppleSDGothicNeoSB';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('https://cdn.jsdelivr.net/gh/fonts-archive/AppleSDGothicNeo/AppleSDGothicNeo-SemiBold.woff2') format('woff2'),
       url('https://cdn.jsdelivr.net/gh/fonts-archive/AppleSDGothicNeo/AppleSDGothicNeo-SemiBold.ttf') format('truetype');
}
@font-face {
  font-family: 'AppleSDGothicNeoB';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('https://cdn.jsdelivr.net/gh/fonts-archive/AppleSDGothicNeo/AppleSDGothicNeo-Bold.woff2') format('woff2'),
       url('https://cdn.jsdelivr.net/gh/fonts-archive/AppleSDGothicNeo/AppleSDGothicNeo-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'AppleSDGothicNeoEB';
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url('https://cdn.jsdelivr.net/gh/fonts-archive/AppleSDGothicNeo/AppleSDGothicNeo-ExtraBold.woff2') format('woff2'),
       url('https://cdn.jsdelivr.net/gh/fonts-archive/AppleSDGothicNeo/AppleSDGothicNeo-ExtraBold.ttf') format('truetype');
}
@font-face {
  font-family: 'AppleSDGothicNeoH';
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url('https://cdn.jsdelivr.net/gh/fonts-archive/AppleSDGothicNeo/AppleSDGothicNeo-Black.woff2') format('woff2'),
       url('https://cdn.jsdelivr.net/gh/fonts-archive/AppleSDGothicNeo/AppleSDGothicNeo-Black.ttf') format('truetype');
}



@font-face {
  font-family: "YoonMyungjo";
  src: url("assets/font/YoonMyungjo_150.otf") format("opentype");
  font-weight: 100 900;
  font-style: normal;
}

.amethysta-regular {
  font-family: "Amethysta", serif;
  font-weight: 400;
  font-style: normal;
}

input::placeholder {
  color: #3a3a3a;
  font-family: "AppleSDGothicNeoB";
}

input:focus::placeholder {
  color: #aaaaaa;
}

input.round[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  border: 4px solid white;
  border-radius: 50%;
  outline: 2px solid #ddd;
  cursor: pointer;
}

input.round[type="checkbox"]:checked {
  background-color: #015152;
  border: 4px solid white;
  outline: 2px solid #ddd;
  position: relative;
}

input.check[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 14px;
  height: 14px;
  border: none;
  outline: 2px solid #ddd;
  position: relative;
  cursor: pointer;
}

input.check[type="checkbox"]:checked::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 10px;
  height: 6px;
  border: solid #015152;
  border-width: 0 0 3px 3px;
  background-color: white;
}

.toggle-container {
  display: flex;
  align-items: center;
}

.toggle-checkbox {
  position: absolute;
  opacity: 0;
}

.toggle-label {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 24px;
  background-color: #ccc;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.toggle-switch {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-checkbox:checked + .toggle-label {
  background-color: #015152;
}

.toggle-checkbox:checked + .toggle-label .toggle-switch {
  transform: translateX(32px);
}

.page-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f7f7f7;
    max-width: 1408px;
    border: 1px solid #e5e5e5;
    padding: 25px 40px 25px 120px;
    min-height: 120px;
    letter-spacing: -0.04em;
    color: #777;
    position: relative;
    margin: 2em auto 0;
}
@media (min-width: 768px) {
  .page-info::after{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    content: '!';
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ddd;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media (max-width:768px){

  .page-info{
    padding: 25px 30px 25px 25px;
}

}


.page-info li{
  position: relative;
  padding-left: 14px;
}

.page-info li::before{
  content: '※ ';
  position: absolute;
  left: 0;
  font-size: 11px;
  line-height: 18px;
}

.required-input{
  position: absolute;
  top: 6px;
  color: #b18b5c;
}


 /* air-datepicker custom */
 .air-datepicker {
	font-family: "AppleSDGothicNeoB" !important;
	border-radius: 10px !important;
	--adp-day-name-color: #bbbbbb !important;
	--adp-day-name-color-hover: #0F1F3E !important;
	--adp-accent-color: #0F1F3E !important;
	--adp-cell-background-color-selected: #0F1F3E !important;
	--adp-cell-background-color-selected-hover: #0F1F3E !important;
  --adp-grid-areas: "title" "nav" "body" "timepicker" "buttons" !important;

}

.air-datepicker .sunday-cell{
  color: #b60c0c !important;
}

.air-datepicker  .air-datepicker-cell.-disabled-.sunday-cell{
  color: #f9b9b9 !important;
}

.air-datepicker .air-datepicker--title {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 0;
  grid-column: 1 / -1;  /* grid 레이아웃에서 전체 너비 사용 */
  order: -1;  /* grid 아이템 순서를 맨 앞으로 */
}

/* 언론홍보 */
.news-box{
  max-width:420px;
  height: 280px;
  padding: 25px 4%;
  float: left;
  margin-right: 0.5%;
  margin-left: 0.5%;
  margin-bottom: 35px;
  border: 1px solid #e0e0e0;
  background-color: #fff;
  box-sizing: border-box;
}

.news-box *{
  box-sizing: content-box;
}

.news-box .head{
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  width: 100%;
  font-size: 16px;
  line-height: 18px;
  font-weight: bold;
  padding-bottom: 2px;
  color: #CDA787;

}

.news-box .news-title{
  min-height: 78px;
  display: block;
  width: auto;
  padding: 0px;
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 26px;
  color: #000;
  letter-spacing: -2px;
}

.news-box .news-text{

}