.onesky-page__mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 26px 25px;
  box-sizing: border-box;
  border-bottom: 1px solid #d9d9d9;
}
@media screen and (min-width: 768px) {
  .onesky-page__mobile-header {
    display: none;
  }
}
.onesky-page__mobile-header h3 {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: #081f32;
  margin: 0;
}
.onesky-page__mobile-header select {
  background-color: #f5f5f5;
  border: 0;
  height: 30px;
  width: 102px;
  padding: 0 0 0 5px;
  box-sizing: border-box;
}
.onesky-page__container {
  padding: 28px 56px;
  max-width: 1660px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .onesky-page__container {
    padding: 0;
  }
}
.onesky-page__sidebar {
  max-width: 262px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .onesky-page__sidebar {
    display: none;
  }
}
.onesky-page__sidebar-title {
  color: #6e798c;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.onesky-page__nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .onesky-page__nav {
    display: none;
  }
}
.onesky-page__nav li {
  position: relative;
  margin: 0;
  padding: 0;
}
.onesky-page__nav li::before {
  content: "";
  position: absolute;
  background-color: #f2f2f2;
  width: calc(100% + 40px);
  height: 100%;
  left: -20px;
  border-radius: 8px;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}
.onesky-page__nav li:hover::before {
  opacity: 1;
}
.onesky-page__nav li.is-active::before {
  opacity: 1;
}
.onesky-page__nav li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #081f32;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -0.02em;
  white-space: nowrap;
  width: 100%;
  height: 40px;
  position: relative;
}
.onesky-page__nav li a span {
  color: #6d7175;
}
.onesky-page__wrapper {
  display: flex;
}
@media screen and (max-width: 768px) {
  .onesky-page__wrapper {
    flex-flow: wrap;
  }
}
.onesky-page__content {
  flex: 1;
  padding-left: 24px;
}
@media screen and (max-width: 768px) {
  .onesky-page__content {
    padding: 0 24px;
  }
}

.onesky-tab__head {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #d9d9d9;
}
@media screen and (max-width: 768px) {
  .onesky-tab__head {
    display: none;
  }
}
.onesky-tab__content {
  display: flex;
  flex-wrap: wrap;
}
.onesky-tab__head-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  text-decoration: none;
  color: #6e798c;
  transition: all 0.3s;
}
.onesky-tab__head-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #ed66b2;
  transition: all 0.3s;
}
.onesky-tab__head-item.is-active {
  color: #ed66b2;
}
.onesky-tab__head-item.is-active::after {
  height: 5px;
}
.onesky-tab__head-item:hover {
  color: #ed66b2;
}
.onesky-tab__content {
  padding-top: 10px;
}
.onesky-tab__grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.onesky-tab__column {
  width: 33.3333333333%;
  padding: 20px 32px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .onesky-tab__column {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.onesky-tab-item {
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.2509803922);
  border-radius: 20px;
  border: 2px solid #fff0;
  transition: all 0.3s;
  overflow: hidden;
}
.onesky-tab-item:hover {
  border: 2px solid #ed66b2;
}
.onesky-tab-item__head {
  display: flex;
  margin-bottom: 24px;
}
.onesky-tab-item__thum {
  position: relative;
  width: 61px;
  height: 61px;
  background-color: #d9d9d9;
  border-radius: 10px;
}
.onesky-tab-item__thum img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
}
.onesky-tab-item__heading {
  padding-left: 12px;
  flex: 1;
}
.onesky-tab-item__heading h3 {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.02em;
  font-weight: bold;
  margin: 0;
}
.onesky-tab-item__heading p {
  margin: 8px 0 0;
  font-size: 12px;
  color: #6e798c;
}
.onesky-tab-item__tag {
  display: flex;
  align-items: center;
}
.onesky-tab-item__tag-item {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #333333;
  background-color: #f5f5f5;
  padding: 0 12px;
  font-size: 12px;
  line-height: 32px;
  letter-spacing: -0.02em;
  border-radius: 20px;
  white-space: nowrap;
}
.onesky-tab-item__tag-item + .onesky-tab-item__tag-item {
  margin-left: 10px;
}
.onesky-tab-item__description {
  font-size: 12px;
  line-height: 20px;
  color: #081f32;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
  margin-top: 10px;
}
.onesky-tab-item__button {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ed66b2;
  border: 1px solid #ed66b2;
  height: 30px;
  width: 120px;
  text-decoration: none;
  border-radius: 3px;
  box-sizing: border-box;
}

.show-onesky-modal {
  font-size: 2rem;
  font-weight: 600;
  padding: 1.75rem 3.5rem;
  margin: 5rem 2rem;
  border: none;
  background-color: #fff;
  color: #444;
  border-radius: 10rem;
  cursor: pointer;
  transition: all 0.3s;
}

.close-onesky-modal {
  position: absolute;
  top: 1.2rem;
  right: 2rem;
  font-size: 28px;
  color: #5c5f62;
  cursor: pointer;
  border: none;
  background: none;
}
@media screen and (max-width: 768px) {
  .close-onesky-modal {
    top: 6px;
    right: 12px;
  }
}

.onesky-modal-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.onesky-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  background-color: white;
  padding: 52px;
  border-radius: 5px;
  box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.3);
  z-index: 10;
  box-sizing: border-box;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .onesky-modal {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 34px;
  }
}

.onesky-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  z-index: 5;
}

.onesky-modal-item__head {
  display: flex;
}
.onesky-modal-item__thum {
  width: 61px;
  height: 61px;
  background-color: #d9d9d9;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .onesky-modal-item__thum {
    display: none;
  }
}
.onesky-modal-item__heading {
  display: flex;
  align-items: center;
  padding-left: 35px;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .onesky-modal-item__heading {
    padding-left: 12px;
  }
}
.onesky-modal-item__heading h2 {
  font-size: 28px;
  letter-spacing: -0.02em;
  font-weight: bold;
  margin: 0;
}
.onesky-modal-item__tag {
  display: flex;
  align-items: center;
}
.onesky-modal-item__tag-item {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #333333;
  background-color: #f5f5f5;
  padding: 0 12px;
  font-size: 12px;
  line-height: 32px;
  letter-spacing: -0.02em;
  border-radius: 20px;
}
.onesky-modal-item__tag-item + .onesky-modal-item__tag-item {
  margin-left: 10px;
}
.onesky-modal-item__description {
  font-size: 12px;
  line-height: 20px;
  color: #081f32;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
  margin-top: 10px;
}
.onesky-modal-item__button {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ed66b2;
  border: 1px solid #ed66b2;
  height: 30px;
  width: 110px;
  text-decoration: none;
  border-radius: 3px;
  box-sizing: border-box;
  transition: all 0.3s;
}
.onesky-modal-item__button:hover {
  background-color: #ed66b2;
  color: #fff;
}

.onesky-modal-content__inner {
  display: flex;
  padding-top: 37px;
}
@media screen and (max-width: 768px) {
  .onesky-modal-content__inner {
    flex-flow: column;
    padding-top: 22px;
  }
}
.onesky-modal-content__thumb {
  display: flex;
  flex: 1;
  padding-right: 30px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .onesky-modal-content__thumb {
    padding: 0 0 47px;
  }
}
.onesky-modal-content__image {
  position: relative;
  flex: 1;
  background-color: #f7fbff;
  border-radius: 10px;
  border: 1px solid #d8dee8;
}
.onesky-modal-content__image::before {
  content: "";
  display: block;
  padding-top: 100%;
  width: 100%;
}
.onesky-modal-content__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
}
.onesky-modal-content__info {
  flex: 1;
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .onesky-modal-content__info {
    padding-left: 0;
  }
}
.onesky-modal-content__row {
  font-size: 21px;
  line-height: 24px;
  color: #16171a;
  font-weight: normal;
  letter-spacing: -0.02em;
}
.onesky-modal-content__row + .onesky-modal-content__row {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .onesky-modal-content__row + .onesky-modal-content__row {
    margin-top: 46px;
  }
}
.onesky-modal-content__row p {
  margin: 17px 0 0;
}
.onesky-modal-content__row ul {
  list-style: none;
  padding: 0;
  margin: 13px 0 0;
}
.onesky-modal-content__row ul li {
  margin: 13px 0 0;
  padding: 0;
}
.onesky-modal-content__row a {
  color: #ed66b2;
  font-size: 21px;
  text-decoration: none;
}
.onesky-modal-content__title {
  color: #081f32;
  font-size: 21px;
  letter-spacing: -0.02em;
  line-height: 28px;
  font-weight: normal;
  margin: 0;
} /*# sourceMappingURL=style.css.map */
