:root {
    --main-color: #4CB52C;
    --bg-color: #F9F9F9;
    --black-color: #2A2A2A;
    --sub-txt-color-01: #555555;
    --sub-txt-color-02: #777777;
    --sub-txt-color-03: #999999;
    --sub-txt-color-04: #DDDDDD;
    --border-color: #D9D9D9;
    --red-color: #df3333;
    --mb-color: #A1D3F3;
    --mb-sub-color: #3E557B;
}
* {
  box-sizing: border-box;
  /*
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  */
  -webkit-tap-highlight-color : transparent;
}
*::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
*::-webkit-scrollbar-thumb {
  height: 10%;
  background-color: var(--black-color);
  border-radius: 10px;
}
*::-webkit-scrollbar-track {
  background: rgba(33, 122, 244, .1);
}
html {
  scroll-behavior : smooth;
}
body {
  font-family: "Pretendard", "Open Sans";
  position: relative;
}
/*seo*/
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
}

/*공통*/
.wrap {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
}

.top-btn {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  border: 1px solid var(--black-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 98;
}
.top-btn img {
  width: 20px;
  height: 20px;
}


/*header*/
.ham {
    display: none;
}
#ham_btn {
    display: none;
}
#ham_btn + label {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 42px;
  height: 26px;
  cursor: pointer;
  z-index: 10;
}
#ham_btn + label > span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 5px;
  transition: all 300ms;
}
.header-wrap.on #ham_btn + label > span {
    background-color: var(--black-color);
}
.header-wrap.is-sub #ham_btn + label > span {
    background-color: var(--black-color);
}
.header-wrap.hover-on #ham_btn + label > span {
    background-color: var(--black-color);
}
#ham_btn:checked + label > span:nth-child(1) {
  top: 50%;
  transform: translate(0, -50%);
  transform: rotate(45deg);
}
#ham_btn + label > span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
  width: 50%;
}
#ham_btn:checked + label > span:nth-child(2) {
  opacity: 0;
}
#ham_btn + label > span:nth-child(3) {
  bottom: 0;
  background-color: var(--main-color) !important;
}
#ham_btn:checked + label > span:nth-child(3) {
  top: 50%;
  transform: translate(0, -50%);
  transform: rotate(-45deg);
}
.header-wrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 215px;
    background-color: #fff;
    transition: all .2s ease-in-out;
    overflow: hidden;
}
.header-wrap.is-main {
    background-color: transparent;
}
.header-wrap.on {
    background-color: #fff;
}
.header-wrap:hover {
    background-color: #fff;
}
.header-wrap:hover {
    transition: all .2s ease-in-out;
    height: 500px;
}
.header-wrap .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.header-wrap .container .hd {
    position: relative;
    width: 100%;
    max-width: 1520px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.rt-area {
    display: flex;
    align-items: center;
    gap: 24px;
}
.lang {
    display: flex;
    align-items: center;
}
.lang a {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: #aaa;
}
.lang a:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: var(--border-color);
    margin: 0 12px;
}
.header-wrap.is-main .lang a.on, .header-wrap.is-main .lang a:hover {
    color: #fff;
}
.header-wrap.on .lang a.on, .header-wrap.on .lang a:hover {
    color: var(--black-color);
}
.header-wrap:hover .lang a.on, .header-wrap:hover .lang a:hover {
    color: var(--black-color);
}
.lang a.on, .lang a:hover {
    color: var(--black-color);
}
.logo-area {
    position: absolute;
    top: 50%;
    left:  50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.logo-area .h-logo {
    content: "";
    display: block;
    background-image: url('../images/logo/logo_mc.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 220px;
    height: 50px;
}
.header-wrap.is-main .logo-area .h-logo {
    background-image: url('../images/logo/logo_wc.png');
}
.header-wrap.on .logo-area .h-logo {
    background-image: url('../images/logo/logo_mc.png');
}
.header-wrap:hover .logo-area .h-logo {
    background-image: url('../images/logo/logo_mc.png');
}
.rolling-slider {
    height: 20px;
    overflow: hidden;
}
.rolling-slider .swiper-slide {
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
    text-align: center;
}
.header-wrap.is-main .rolling-slider .swiper-slide {
    color: #fff;
}
.header-wrap.on .rolling-slider .swiper-slide {
    color: var(--black-color);
}
.header-wrap:hover .rolling-slider .swiper-slide {
    color: var(--black-color);
}
.gnb {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    transition: .2s ease-in-out;
}
.header-wrap.is-main .gnb {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.2);
}
.header-wrap.on .gnb {
    border-top: 1px solid var(--border-color);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.2);
    box-shadow: none;
}
.header-wrap.is-sub .gnb {
    border-top: 1px solid var(--border-color);
    box-shadow: inset 0 -1px 0 var(--border-color);
    border-bottom: none;
}
.header-wrap:hover .gnb {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    box-shadow: none;
}
.gnb > li {
    display: flex;
    flex-direction: column;
    position: relative;
}
.gnb > li::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--black-color);
  transition: .2s ease-in-out;
}
.gnb > li:hover::after {
    width: 100%;
    transition: .2s ease-in-out;
}
.gnb > li > a {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
    transition: .2s ease-in-out;
    padding: 24px 0;
    text-align: center;
}
.header-wrap.is-main .gnb > li > a {
    color: #fff;
}
.header-wrap.on .gnb > li > a {
    color: var(--black-color);
}
.header-wrap:hover .gnb > li > a {
    color: var(--black-color);
}
.gnb > li:hover::after {
    width: 100%;
    transition: .2s ease-in-out;
}
.gnb > li > a:hover {
    color: var(--sub-txt-color-02);
}
.gnb > li:hover > a {
    color: var(--sub-txt-color-02);
}
.gnb-sub {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    transition: all .5s ease-in-out;
}
.header-wrap:hover .gnb-sub {
    display: flex;
}
.gnb-sub > li > a {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-01);
    white-space: nowrap;
    transition: all .2s ease-in-out;
    display: block;
    text-align: center;
}
.gnb-sub > li > a:hover {
    color: var(--sub-txt-color-03);
}

/*footer*/
.footer-wrap .hd {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.footer-wrap .hd .box {
    width: 100%;
    max-width: 1520px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    margin: 0 auto;
    padding: 48px 0;
}
.footer-wrap .hd .box > a {
    display: inline-block;
}
.footer-wrap .hd .box > a img {
    width: 220px;
}
.fnb-area {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
}
.fnb-area .fnb-terms {
    display: flex;
    align-items: center;
    gap: 24px;
}
.fnb-area .fnb-terms a {
    font-size: 20px;
    font-weight: 600;
    color: var(--black-color);
}
.fnb-area .fnb-terms a:hover {
    color: var(--sub-txt-color-02);
}
.fnb-area .fnb {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 16px;
}
.fnb-area .fnb li a {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.fnb-area .fnb li a:hover {
    color: var(--black-color);
}
.footer-wrap .bt {
    padding: 48px 0;
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}
.footer-wrap .bt .lt {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-wrap .bt .lt > p {
    font-size: 18px;
    font-weight: 600;
    color: var(--black-color);
}
.footer-wrap .bt .lt .info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}
.footer-wrap .bt .lt .info span {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.footer-wrap .bt .rt {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}
.footer-wrap .bt .rt .copy {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.footer-wrap .bt .rt .copy b {
    font-weight: 600;
    color: var(--black-color);
}
.floating {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 3;
    border-radius: 100%;
    background-color: transparent;
}
.floating a {
	margin-top: 10px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(40, 54, 80, 0.8);
    font-family: 'yg330';
    font-size: 20px;
    font-weight: 400;
    color: #fff;
}
.floating a br {
    display: none;;
}
.floating a img {
    padding-top: 3px;
    width: 18px;
    transition: all .2s ease-in-out;
}
.floating a:hover img {
    transform: translate(3px, -3px);
}



/*메인*/
.main-banner {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}
.banner-slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.banner-slider .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}
.banner-slider .swiper-slide .img-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.banner-slider .swiper-slide .img-box::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
}
.banner-slider .swiper-slide .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-slider .swiper-slide .img-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-slider .swiper-slide .txt {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 2;
}
.banner-slider .swiper-slide .txt .txt-hidden {
  overflow: hidden;
}
.banner-slider .swiper-slide .txt .txt-hidden span {
    display: block;
    font-size: 57px;
    /*font-weight: 700;*/
    color: #A1D3F3;
    line-height: 1.3;
    word-break: break-all;
    animation-fill-mode: forwards;
}
.banner-slider .swiper-slide.swiper-slide-active .txt .txt-hidden span {
    animation: txt-over 1.5s ease-in-out;
}
.banner-slider .swiper-slide .txt > p {
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    text-align: center;
}
@keyframes txt-over {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
.control {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: absolute;
  left: 50%;
  bottom: 120px;
  transform: translateX(-50%);
  z-index: 2;
}
.control .navigation {
  display: flex;
  align-items: center;
  gap: 12px;
}
.control .navigation > span {
  cursor: pointer;
}
.control .navigation > span img {
  width: 6px;
}
.control .navigation > button img {
  width: 13px;
}
.pager {
    position: absolute;
    width: 150px;
    display: flex;
    justify-content: space-between;
    top: 50%;
    left: 50%;
    bottom: unset;
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: transparent;
}
.pager .swiper-pagination-current {
    color: #fff;
}
.pager .swiper-pagination-total {
     color: #ddd;
}
.swiper-progress-bar {
    position: relative;
    width: 100px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    overflow: hidden;
    margin: 0 auto;
}

.swiper-progress-bar .slide_progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #fff;
    transition: width linear;
}
.swiper-button-lock {
    display: block !important;
}
.material-slider {
    position: relative;
    z-index: 3;
    width: 100%;
    overflow: hidden;
    background-color: rgba(40, 54, 83, 0.8);
    margin-top: -90px;
    padding: 48px 0;
}
.material-slider .swiper-slide:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.material-slider a {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 36px;
    cursor: pointer;
}
.material-slider a .hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.material-slider a .hd p {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.material-slider a:hover .hd p {
    color: var(--sub-txt-color-03);
}
.material-slider a .hd img {
    width: 16px;
}
.material-slider a .content {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-04);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.main-01 {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: -120px;
    position: relative;
}
.main-01 .bg {
    width: 100%;
    height: 100%;
}
.main-01 .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-01 .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    max-width: 1520px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.main-01 .content .txt {
    margin-bottom: 60px;
}
.main-01 .content .txt h2:first-child {
    font-size: 32px;
    font-weight: 600;
    color: #A1D3F3;
    line-height: 1.3;
    word-break: break-all;
    text-align: center;
    margin-bottom: 24px;
}
.main-01 .content .txt h2:first-child br {
    display: none;
}
.main-01 .content .txt p:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    word-break: break-all;
    text-align: center;
}
.main-01-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.main-01-grid .item {
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.main-01-grid .item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.main-01-grid .item > p {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    text-align: center;
}
.main-01-grid .item .num {
    font-size: 58px;
    font-weight: 700;
    color: #A1D3F3;
}
.main-02 {
    width: 100%;
    height: 100vh;
    position: relative;
}
.main-02 .bg {
    width: 100%;
    height: 100%;
}
.main-02 .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-02 .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    max-width: 1520px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.main-02 .content > h2 {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-bottom: 48px;
}
.main-02-slider {
    width: 100%;
    overflow: hidden;
}
.main-02-slider .swiper-slide {
    height: 100%;
    background-color: #fff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.main-02-slider .swiper-slide .txt p:first-child {
    font-size: 14px;
    font-weight: 400;
    color: var(--main-color);
    line-height: 1.3;
    word-break: break-all;
    margin-bottom: 8px;
}
.main-02-slider .swiper-slide .txt p:nth-child(2) {
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 16px;
}
.main-02-slider .swiper-slide .txt p:nth-child(3) {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    margin-bottom: 36px;
}
.main-02-slider .swiper-slide .img-box {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid #eee;
}
.main-02-slider .swiper-slide .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-btn {
    position: absolute;
    top: calc(50% + 24px);
    z-index: 3;
    width: 38px;
    height: 38px;
    border-radius: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
}
.nav-btn.prev {
    left: -16px;
}
.nav-btn.next {
    right: -16px;
}
.nav-btn img {
    width: 16px;
}

.main-03 {
    padding: 150px 0;
    display: flex;
    justify-content: space-between;
    gap: 48px;
}
.mark-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 12px;
    margin-top: 48px;
}
.mark-grid .item {
    display: flex;
    justify-content: center;
}
.mark-grid .item img {
    width: 80px;
}
.main-tit h2 {
    font-size: 42px;
    font-weight: 500;
    color: var(--black-color);
    line-height: 1.3;
    margin-bottom: 24px;
}
.main-tit .sub-tit {
    font-size: 16px;
    font-weight: 400;
    color: var(--black-color);
    line-height: 1.3;
    word-break: break-all;
}
.main-03 .fac-video {
    width: 100%;
    max-width: 900px;
    overflow: hidden;
}
.main-03 .fac-video video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.main-03 .fac-video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
}
.main-04 {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}
.main-04 .bg {
    width: 100%;
    height: 100%;
}
.main-04 .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-04 .content {
    width: 100%;
    max-width: 1520px;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.main-04 .content > h2 {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-bottom: 48px;
}
.main-04 .content .box {
    display: flex;
    gap: 80px;
}
.main-04 .content .box .img-box {
    width: 50%;
    height: 100%;
    overflow: hidden;
}
.main-04 .content .box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-04-list {
    width: 50%;
    display: flex;
    flex-direction: column;
}
.main-04-list .item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.main-04-list .item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.main-04-list .item p:first-child {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 12px;
}
.main-04-list .item p:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-04);
}
.main-04-list .item a {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.main-04-list .item a:hover {
    color: var(--sub-txt-color-03);
}
.main-04-list .item a img {
    width: 28px;
}

/*pages*/
.page-tit {
    padding: 300px 0 150px;;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}
.page-tit .tit {
    font-size: 58px;
    font-weight: 700;
    color: var(--black-color);
    line-height: 1.3;
}
.page-tit .location {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
}
.page-tit .location a {
    display: flex;
    align-items: center;
}
.page-tit .location span {
    color: var(--border-color);
}
.page-tit .location img {
    width: 20px;
}


.page-category {
    display: flex;
    gap: 36px;
    border-bottom: 1px solid var(--border-color);
}
.page-category a {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    color: var(--sub-txt-color-03);
    padding-bottom: 16px;
    position: relative;
}
.page-category a:hover {
    color: var(--black-color);
}
.page-category a.on {
    color: var(--black-color);
}
.page-category a.on::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid var(--black-color);
}
.page-area {
    padding: 80px 0 150px;
}
.page-area.pt {
    padding: 80px 0 0;
}
.flex-tit {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}
.flex-tit.col {
    flex-direction: column;
    align-items: center;
}
.flex-tit.col .tit-box {
    position: relative;
    top: unset;
    left: unset;
}
.tit-box {
    position: sticky;
    top: 120px;
    left: 0;
}
.tit-box .sm-tit {
    font-size: 16px;
    font-weight: 700;
    color: var(--sub-txt-color-03);
    margin-bottom: 8px;
    letter-spacing: 3px;
}
.tit-box .sm-tit b {
    font-size: 24px;
    font-weight: 700;
}
.tit-box .tit {
    font-size: 42px;
    font-weight: 500;
    color: var(--black-color);
    word-break: break-all;
}
.tit-box .tit.wc {
    font-size: 32px;
    color: #fff;
}
.tit-box .sub-tit {
    margin-top: 24px;
    font-size: 18px;
    font-weight: 300;
    color: var(--black-color);
    line-height: 1.3;
    word-break: break-all;
}
.tit-box .sub-tit.wc {
    font-size: 16px;
    color: #fff;
}
.tit-box .sub-tit b {
    font-weight: 600;
}
.flex-tit .expl {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.flex-tit.col .expl {
    max-width: 100%;
}
.flex-tit .expl p {
    font-size: 18px;
    font-weight: 300;
    color: var(--black-color);
    line-height: 1.3;
    word-break: break-all;
}
.flex-tit.col .expl p {
    text-align: center;
}
.flex-tit .expl p b {
    color: var(--main-color);
}
.about-01-01 {
    margin: 150px 0;
}
.about-01-01 .banner {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}
.about-01-01 .banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cover::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
}
.about-01-01-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 80px;
}
.about-01-01-grid .item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.about-01-01-grid .item .img-box {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.about-01-01-grid .item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-01-01-grid .item .txt p:first-child {
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
    line-height: 1.3;
    margin-bottom: 12px;
}
.about-01-01-grid .item .txt p:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
    word-break: break-all;
}
.about-01-02 {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
    margin-bottom: 150px;
}
.about-01-02.half-gap {
    margin-bottom: 80px;
}
.about-01-02.gap-none {
    margin-bottom: 0;
}
.rt-list {
    min-width: 900px;
    max-width: 900px;
    display: flex;
    flex-direction: column;
}
.rt-list .item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid var(--black-color);
    padding: 48px 0;
}
.rt-list .item:first-child {
    padding: 0 0 48px;
}
.rt-list .item p {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
    word-break: break-all;
}
.rt-list .item p b {
    font-weight: 600;
    color: var(--black-color);
}
.rt-list .item p.mc-txt {
    color: var(--main-color);
}
.rt-list .item p:first-child {
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
    line-height: 1.3;
    word-break: break-all;
    margin-bottom: 8px;
}
.rt-list .item .sub-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.rt-list .item .sub-list p {
    margin-bottom: 0;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
}
.rt-list .item .sub-list p:first-child {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
    word-break: break-all;
}
.rt-list .item .sub-list p:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.rt-list .item .double-img {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.rt-list .item .double-img .img-box {
    overflow: hidden;
}
.rt-list .item .double-img .img-box img {
    width: auto;
    height: 300px;
    object-fit: contain;
    display: block;
}
.rt-list .item .flex-img {
    display: flex;
    justify-content: space-between;
    gap: 48px;
}
.rt-list .item .flex-img .img-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.rt-list .item .flex-img .img-box .box {
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
}
.rt-list .item .flex-img .img-box img {
    height: 80px;
    object-fit: contain;
}
.about-01-03 .banner {
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 150px;
    position: relative;
}
.about-01-03 .banner .bg {
    width: 100%;
    height: 100%;
    position: relative;
}
.about-01-03 .banner .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-01-03 .banner .txt {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    padding: 24px;
}
.about-01-03 .banner .txt p:first-child {
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 1.2;
}
.about-01-03 .banner .txt p:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    line-height: 1.3;
    word-break: break-all;
}
.cross-grid {
    min-width: 900px;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.cross-grid .item {
    padding: 48px;
}
.cross-grid .item:nth-child(odd) {
    border-right: 1px solid var(--black-color);
}
.cross-grid .item:first-child, .cross-grid .item:nth-child(2) {
    border-bottom: 1px solid var(--black-color);
}
.cross-grid .item p:first-child {
    font-size: 16px;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 6px;
}
.cross-grid .item p:nth-child(2) {
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 16px;
}
.cross-grid .item p:nth-child(3) {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
    word-break: break-all;
}


.about-02-01 {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    margin-bottom: 80px;
}
.about-02-01 .bg {
    width: 100%;
    height: 100%;
    position: relative;
}
.about-02-01 .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-02-01 .txt {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.about-02-01 .txt p:first-child {
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}
.about-02-01 .txt p:first-child.esg-tit {
    font-size: 120px;
    font-weight: 700;
    letter-spacing: 40px;
    color: rgba(255, 255, 255, 0.7);
}
.about-02-01 .txt p:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    line-height: 1.3;
    word-break: break-all;
    margin-top: 24px;
}

.about-02-02 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
}
.about-02-02-list {
    width: 900px;
    min-width: 900px;
}
.about-02-02-list .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 48px 0;
    border-bottom: 1px solid var(--black-color);
}
.about-02-02-list .item:first-child {
    padding: 0 0 48px;
}
.about-02-02-list .item .lt {
    width: 100%;
    max-width: 600px;
}
.about-02-02-list .item .lt.full {
    max-width: 100%;
}
.about-02-02-list .item .lt > p {
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 24px;
    line-height: 1.3;
    word-break: break-all;
}
.about-02-02-list .item .lt .list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.about-02-02-list .item .lt .list span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
}
.about-02-02-list .item .lt .list span:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.about-02-02-list .item .lt .list span b {
    color: var(--main-color);
}
.about-02-02-list .item .rt {
    flex: 1;
    text-align: center;
}
.about-02-02-list .item .rt img {
    height: 100px;
    object-fit: contain;
}
.oem-01-01-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    margin-top: 80px;
}
.oem-01-01-grid .item {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}
.oem-01-01-grid .item .bg {
    width: 100%;
    height: 100%;
    position: relative;
}
.oem-01-01-grid .item .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.oem-01-01-grid .item .txt {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    padding: 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
.oem-01-01-grid .item .txt.reverse {
    align-items: flex-end;
}
.oem-01-01-grid .item .txt p:first-child {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    word-break: break-all;
    line-height: 1.3;
}
.oem-01-01-grid .item .txt.reverse p:first-child {
    text-align: right;
}
.oem-01-01-grid .item .txt p:last-child {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    word-break: break-all;
    line-height: 1.3;
}
.oem-01-01-grid .item .txt.reverse p:last-child {
    text-align: right;
}

.support-banner {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}
.support-banner .bg {
    width: 100%;
    height: 100%;
    position: relative;
    /* background-attachment: fixed; */
    background-image: url('../images/common/contact_us_bg.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.support-banner .bg::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
}
.support-banner .txt {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.support-banner .txt p:first-child {
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    text-align: center;
    word-break: break-all;
    margin-bottom: 24px;
}
.support-banner .txt p:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    text-align: center;
    word-break: break-all;
}
.support-banner .txt a {
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 200px;
    padding-bottom: 8px;
    border-bottom: 1px solid #fff;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}
.support-banner .txt a img {
    width: 14px;
    transition: all .2s ease-in-out;
}
.support-banner .txt a:hover img {
    transform: translate(3px, -3px);
}

.oem-02-01 {
    display: flex;
    flex-direction: column;
    gap: 150px;
    margin-top: 150px;
}
.oem-02-01 .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}
.oem-02-01 .item .img-box {
    width: 100%;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--black-color);
    text-align: center;
}
.oem-02-01 .item .img-box img {
    width: 100%;
    max-width: 1000px;
    height: 100%;
    object-fit: contain;
}
.oem-02-01 .item .txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.oem-02-01 .item .txt .tp {
    display: flex;
    align-items: center;
    justify-content: center;
}
.oem-02-01 .item .txt .tp span {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.oem-02-01 .item .txt .tp span:first-child {
    font-weight: 600;
    color: var(--black-color);
}
.oem-02-01 .item .txt .tp span:first-child::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 16px;
    background-color: var(--border-color);
    margin: 0 24px;
}
.oem-02-01 .item .txt .bt {
    font-size: 16px;
    font-weight: 300;
    color: var(--sub-txt-color-02);
    word-break: break-all;
    line-height: 1.3;
    text-align: center;
}
.oem-02-01 .item .txt .bt b {
    color: var(--main-color);
}
.oem-banner {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}
.oem-banner .bg {
    width: 100%;
    height: 100%;
    position: relative;
}
.oem-banner .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.oem-banner .content {
    position: absolute;
    top: 0;
    left: 0;
    padding: 16px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.oem-banner .content p:first-child {
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    text-align: center;
    word-break: break-all;
}
.oem-banner .content p:last-child {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    text-align: center;
    word-break: break-all;
}

.cdmo-01-01 {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    margin-bottom: 80px;
}
.cdmo-01-01 .bg {
    width: 100%;
    height: 100%;
    position: relative;
}
.cdmo-01-01 .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cdmo-01-01 .txt {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.cdmo-01-01 .txt p:first-child {
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}
.cdmo-01-02 {
    padding-bottom: 150px;
    display: flex;
    flex-direction: column;
    gap: 150px;
}
.cdmo-01-02 .box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
    position: relative;
}
.cdmo-01-02 .box .list {
    width: 900px;
    min-width: 900px;
}
.cdmo-01-02 .box .list .item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 48px 0;
    border-bottom: 1px solid var(--black-color);
}
.cdmo-01-02 .box .list .item:first-child {
    padding: 0 0 48px;
}
.cdmo-01-02 .box .list .img-box {
    overflow: hidden;
    margin-bottom: 8px;
}
.cdmo-01-02 .box .list .img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.cdmo-01-02 .box .list p {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
}
.cdmo-01-02 .box .list p.lg-tit {
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 8px;
}

.service-01-01 {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}
.service-01-01 .item {
    position: relative;
}
.service-01-01 .item .bg {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
}
.service-01-01 .item .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-01-01 .item .txt {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 36px;
}
.service-01-01 .item .txt p:first-child {
    font-size: 16px;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 6px;
}
.service-01-01 .item .txt p:nth-child(2) {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}
.service-01-01 .item .txt p:nth-child(3) {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    word-break: break-all;
}

.service-02-01 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
    position: relative;
    margin-bottom: 150px;
}
.service-02-01.none-gap {
    margin-bottom: 0;
}
.service-02-01 .rt {
    width: 900px;
    min-width: 900px;
    border-bottom: 1px solid var(--black-color);
}
.service-02-01 .rt .item {
    display: flex;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
}
.service-02-01 .rt .item:first-child {
    padding: 0 0 24px;
    display: flex;
    flex-direction: column;
}
.service-02-01 .rt .item:last-child {
    border-bottom: none;
}
.service-02-01 .rt .item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-bottom: 24px;
    display: block;
}
.service-02-01 .rt .item p {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
    word-break: break-all;
}
.service-02-01 .rt .item p.lg-tit {
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 16px;
    word-break: break-all;
    line-height: 1.3;
}
.service-02-01 .rt .item span {
    display: flex;
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
    word-break: break-all;
}
.service-02-01 .rt .item span:first-child {
    white-space: nowrap;
    align-items: center;
}
.service-02-01 .rt .item span:first-child::after {
    content: "";
    display: inline-block;
    margin: 0 16px;
    width: 1px;
    height: 12px;
    background-color: var(--border-color);
}
.service-02-02 {
    margin-bottom: 230px;
    display: flex;
    gap: 48px;
}
.service-02-02 .item {
    flex: 1;
    position: relative;
}
.service-02-02 .item:nth-child(2) {
    transform: translateY(80px);
}
.service-02-02 .item .bg {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
}
.service-02-02 .item .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-02-02 .item .txt {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 36px;
}
.service-02-02 .item .txt p:first-child {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    word-break: break-all;
    margin-bottom: 16px;
}
.service-02-02 .item .txt p:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    word-break: break-all;
}
.service-02-03 {
    margin-bottom: 150px;
}
.service-02-03 .img-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
}
.service-02-03 .img-grid .img-box {
    border: 1px solid var(--border-color);
    padding: 48px 60px;
}
.service-02-03 .img-grid .img-box img {
    height: 90px;
}
.service-02-04 .img-box {
    width: max-content;
    margin: 48px auto 0;
    border: 1px solid var(--border-color);
    overflow: hidden;
}
.service-02-04 .img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.board-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 24px;
}
.board-grid .item {
    display: flex;
    flex-direction: column;
    padding-bottom: 24px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}
.board-grid .item.material {
    cursor: pointer;
}
.board-grid .item::after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background-color: var(--main-color);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all .2s ease-in-out;
}
.board-grid .item:hover::after {
    width: 100%;
}
.board-grid .item.empty {
    grid-column: 1 / -1;
    font-size: 16px;
    font-weight: 400;
    color: var(--black-color);
    padding: 48px 16px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}
.board-grid .item .img-box {
    border: 1px solid var(--border-color);
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin-bottom: 16px;
}
.board-grid .item .img-box.contain {
    padding: 36px;
}
.board-grid .item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.board-grid .item .img-box.contain img {
    object-fit: contain;
}
.board-grid .item .txt p:first-child {
    font-size: 14px;
    font-weight: 400;
    color: var(--main-color);
}
.board-grid .item .txt p:nth-child(2) {
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 8px;
}
.board-grid .item .txt p:nth-child(3) {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 16px;
}

.material-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 102;
  display: none;
}
.material-modal .modal-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 900px;
  height: auto;
  max-height: calc(100vh - 96px);
  padding: 36px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
}
.material-modal .modal-box .hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
}
.material-modal .modal-box .hd span {
    font-size: 24px;
    font-weight: 400;
    color: var(--black-color);
}
.material-modal .modal-box .hd button {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-color);
}
.material-modal .modal-box .hd button img {
    width: 20px;
}
.material-modal .modal-box .box {
    display: flex;
    gap: 48px;
}
.material-modal .modal-box .box .img-box {
    width: 50%;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--border-color);
}
.material-modal .modal-box .box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.material-modal .modal-box .box .rt {
    width: 50%;
    display: flex;
    flex-direction: column;
}
.material-modal .modal-box .box .rt .modal-tit {
    border-bottom: 1px solid var(--black-color);
    padding-bottom: 16px;
    margin-bottom: 16px;
}
.material-modal .modal-box .box .rt .modal-tit p:first-child {
    font-size: 14px;
    font-weight: 400;
    color: var(--main-color);
    margin-bottom: 8px;
}
.material-modal .modal-box .box .rt .modal-tit p:nth-child(2) {
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color);
    line-height: 1.3;
}
.material-modal .modal-box .box .rt .content {
    white-space: pre-line;
    font-size: 14px;
    font-weight: 300;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
}

.esg-01-01 {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    margin-bottom: 80px;
}
.esg-01-01 .bg {
    width: 100%;
    height: 100%;
    position: relative;
}
.esg-01-01 .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.esg-01-01 .txt {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.esg-01-01 .txt p:first-child {
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}
.esg-01-01 .txt p:first-child.esg-tit {
    font-size: 120px;
    font-weight: 700;
    letter-spacing: 40px;
    color: rgba(255, 255, 255, 0.7);
}
.esg-01-01 .txt p:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    line-height: 1.3;
    word-break: break-all;
    margin-top: 24px;
}
.esg-01-02 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
    position: relative;
}
.ccm-01-01 {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    margin-bottom: 80px;
}
.ccm-01-01 .bg {
    width: 100%;
    height: 100%;
    position: relative;
}
.ccm-01-01 .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ccm-01-01 .txt {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.ccm-01-01 .txt p:first-child {
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    word-break: break-all
    padding: 0 16px;
}
.ccm-01-02 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
    position: relative;
}
.ccm-01-03 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
    position: relative;
    margin-top: 150px;
}
.ccm-01-03 .ccm-video {
    width: 900px;
    min-width: 900px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}
.ccm-01-03 .ccm-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tour-01 {
    width: 100%;
    height: 800px;
    position: relative;
    overflow: hidden;
    padding: 48px 80px;
    margin-bottom: 80px;
}
.tour-01 .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.tour-01 .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tour-01 .content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}
.tour-slider {
    width: 100%;
    max-width: 800px;
    overflow: hidden;
    position: relative;
}
.tour-slider .swiper-pagination {
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
}
.tour-slider .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background: var(--main-color) !important;
}
.tour-slider .swiper-slide .img-box {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.tour-slider .swiper-slide .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tour-02 {
    margin-bottom: 150px;
}
.tour-02-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.tour-02-grid .item {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 36px 24px;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
}
.tour-02-grid .item .icon {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.tour-02-grid .item .icon img {
    width: 38px;
}
.tour-02-grid .item p {
    font-size: 20px;
    font-weight: 400;
    color: var(--black-color);
    text-align: center;
    line-height: 1.3;
    word-break: break-all;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 48px;
}
.portfolio-grid .item {
    padding: 60px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}
.portfolio-grid .item img {
    width: 100%;
    max-width: 170px;
}
.news-hd {
    display: flex;
    justify-content: center;
    gap: 24px;
}
.search {
    border: 2px solid var(--border-color);
    padding: 0 16px;
    width: 100%;
    max-width: 350px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.search.mb-48 {
    margin-bottom: 48px;
}
.search input[type="text"] {
    width: 100%;
    height: 60px;
    padding: 0;
    font-size: 16px;
    color: var(--black-color);
    border: none;
}
.search button img {
    width: 20px;
}
.sub-category {
    display: flex;
    align-items: center;
    gap: 24px;
}
.sub-category a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 400;
    color: var(--sub-txt-color-03)
}
.sub-category a:hover {
    color: var(--black-color);
}
.sub-category a.on {
    color: var(--black-color);
}
.sub-category a::before {
    content: "";
    display:  inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--border-color);
}
.sub-category a.on::before {
    background-color: var(--main-color);
}
/*Pagination*/
.pagination {
  position: relative;
  margin-top: 48px;
}
.pagination.mt-0 {
    margin-top: 0;
}
.pagination.mt-60 {
  margin-top: 60px;
}
.pagination.mt-24 {
  margin-top: 24px;
}
.pagination.mt-12 {
  margin-top: 12px;
}
.pagination > a {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.pagination li {
  width: 28px;
  height: 28px;
}
.pagination li a {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--sub-txt-color-02);
}
.pagination li a:not(.arrow):hover {
  color: #fff;
  background-color: var(--main-color);
}
.pagination li.on {
  color: #fff !important;
  border-radius: 100%;
  background-color: var(--main-color);
}
.pagination li.on a {
    color: #fff !important;
    background-color: var(--main-color);
}
.pagination li a img {
  height: 10px;
  object-fit: cover;
}

.view-tit-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}
.view-tit-box .tit {
    font-size: 22px;
    font-weight: 500;
    color: var(--black-color);
    line-height: 1.3;
}
.view-tit-box .info {
    display: flex;
    align-items: center;
}
.view-tit-box .info span {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: var(--sub-txt-color-02);
}
.view-tit-box .info span:first-child {
    font-weight: 600;
    color: var(--main-color);
}
.view-tit-box .info span:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 14px;
    background-color: var(--border-color);
    margin: 0 12px;
}
.file-box {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.file-box a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.file-box a img {
  height: 18px;
}
.file-box a span {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: var(--sub-txt-color-03);
}
.file-box a:hover span {
  text-decoration: underline;
}
.file-box a.empty {
  font-weight: 500;
}
.editor-area {
    padding: 48px 0;
    min-height: 250px;
    line-height: 1.3;
}
.other-area {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.other-area a {
    padding: 24px 0;
    display: flex;
    gap: 48px;
}
.other-area a:first-child {
    border-bottom: 1px solid var(--border-color);
}
.other-area a .other-front {
    display: inline-block;
    color: var(--main-color);
}
.other-area a .other-tit {
    color: var(--black-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.other-area a:hover .other-tit {
    color: var(--sub-txt-color-02);
}

.btn-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.btn-wrap a, .btn-wrap button {
    width: 100%;
    max-width: 180px;
    height: 60px;
    border: 2px solid var(--border-color);
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-wrap a:nth-child(2), .btn-wrap button:nth-child(2) {
    border: none;
    background-color: #666666;
    color: #fff;
}
.btn-wrap a:hover, .btn-wrap button:hover {
    background-color: var(--bg-color);
}
.btn-wrap a:nth-child(2):hover, .btn-wrap button:nth-child(2):hover {
    background-color: #666666;
    opacity: .8;
}
.support-area {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.support-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 48px 0;
    background-color: var(--bg-color);
    margin: 48px 0 80px;
}
.support-process .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 24px;
}
.support-process .item:not(:last-child) {
    border-right: 1px solid var(--border-color);
}
.support-process .item p:first-child {
    font-size: 16px;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 6px;
    text-align: center;
}
.support-process .item p:nth-child(2) {
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.3;
    word-break: break-all;
}
.support-process .item p:nth-child(3) {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    text-align: center;
    line-height: 1.3;
    word-break: break-all;
}
.form-hd {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--black-color);
    margin-bottom: 24px;
}
.form-hd span:first-child {
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
}
.form-hd span:last-child {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
}
.form-hd span:last-child b {
    color: var(--main-color);
}
.form-area {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.form-area.gap {
    margin-top: 48px;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.col-span-2 {
    grid-column: 1 / -1;
}
.form-grid .input-box > p {
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
    margin-bottom: 8px;
}
.form-grid .input-box > p b {
    color: var(--main-color);
}
.form-grid .input-box input[type="text"], .form-grid .input-box input[type="password"], .form-grid .input-box input[type="number"], .form-grid .input-box input[type="email"], .form-grid .input-box input[type="file"], .form-grid .input-box select {
    width: 100%;
    height: 60px;
    padding: 0 16px;
    border: 2px solid var(--border-color);
    font-size: 16px;
    font-weight: 400;
    color: var(--black-color);
}
.form-grid .input-box textarea {
    width: 100%;
    height: 200px;
    border: 2px solid var(--border-color);
    padding: 16px;
    font-size: 16px;
    font-weight: 400;
    color: var(--black-color);
}
.form-grid .input-box .radio-box {
    min-height: 60px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 24px;
}
.form-grid .input-box .radio-box label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    color: var(--black-color);
}
.form-grid .input-box .radio-box label input[type="radio"] {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
}
.form-grid .input-box .date-box {
    position: relative;
}
.form-grid .input-box .date-box img {
    width: 20px;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
}
.form-grid .input-box .date-box input[type="text"] {
    padding: 0 48px 0 16px;
}
.file-upload {
  display: flex;
  align-items: center;
  gap: 8px;
}
.file-upload .file-btn {
    width: 100%;
    max-width: 150px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: #666666;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    user-select: none;
}
.file-upload .file-btn:hover {
    opacity: .8;
}
.form-terms {
    display: flex;
    flex-direction: column;
}
.form-terms .hd {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--black-color);
    margin: 60px 0 24px;
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
}
.form-terms > p {
    font-size: 16px;
    font-weight: 400;
    color: var(--black-color);
    margin-bottom: 12px;
}
.form-terms .content {
    width: 100%;
    height: 200px;
    overflow: hidden;
    overflow-y: auto;
    padding: 16px;
    border: 2px solid var(--border-color);
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
    margin-bottom: 24px;
}
.form-terms label {
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.form-terms label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0 5px 0 0;
    cursor: pointer;
}
.form-terms label span {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.form-terms label span b {
    color: var(--red-color);
}
.form-terms .expl {
    margin-top: 24px;
    background-color: var(--bg-color);
    padding: 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
    text-align: center;
    line-height: 1.3;
}
.main-05 {
    display: flex;
    align-items: stretch;
    gap: 48px;
    padding: 150px 0;
}
.main-05 .lt {
    height: 100%;
    flex: 1;
}
.main-05 .lt > h2 {
    font-size: 42px;
    font-weight: 500;
    color: var(--black-color);
    margin-bottom: 36px;
}
.support-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
}
.support-list li:first-child {
    border-top: 1px solid var(--border-color);
}
.support-list li.empty {
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
}
.support-list li .sp-tit-box {
    display: flex;
    align-items: center;
    gap: 12px;
}
.support-list li .sp-tit-box img {
    width: 18px;
}
.support-list li .sp-tit-box .tit {
    font-size: 16px;
    font-weight: 400;
    color: var(--black-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.support-list li .date {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
    white-space: nowrap;
}
.main-05 .rt {
    display: flex;
    height: 100%;
    flex: 1;
}
.tour-banner {
    width: 100%;
    height: 100%;
    position: relative;
    flex: 1;
}
.tour-banner .bg {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.tour-banner .bg::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
}
.tour-banner .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom;
}
.tour-banner .txt {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.tour-banner .txt p:first-child {
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    text-align: center;
    word-break: break-all;
    margin-bottom: 16px;
}
.tour-banner .txt p:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    text-align: center;
    word-break: break-all;
}
.tour-banner .txt a {
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 200px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--mb-color);
    font-size: 14px;
    font-weight: 600;
    color: var(--mb-color);
}
.tour-banner .txt a img {
    width: 14px;
    transition: all .2s ease-in-out;
}
.tour-banner .txt a:hover img {
    transform: translate(3px, -3px);
}
.terms-area {
    line-height: 1.3;
}
 table {
    width: 100%;
}
 table th,  table tr,  table td {
    text-align: center;
    border: 1px solid var(--border-color);
    padding: 12px 8px;
    font-size: 16px;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
    vertical-align: middle;
}
 table th {
    background-color: #f8fcff;
    font-weight: 500;
    color: var(--black-color);
    white-space: nowrap;
}




/*datepicker*/
.i_datepicker input{cursor: pointer;}
.i_datepicker img{position: absolute; right: 15px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; background: url(../img/ico_datepicker.svg) no-repeat center/cover;}
#ui-datepicker-div{z-index: 9 !important;}
.ui-widget-header { border: 0px solid #dddddd; background: #fff; }
.ui-datepicker-calendar>thead>tr>th { font-size: 14px !important; }
.ui-datepicker .ui-datepicker-header { position: relative; padding: 10px 0; }
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active { border: 0px solid #c5c5c5; background-color: transparent; font-weight: normal; color: #454545; text-align: center; }
.ui-datepicker .ui-datepicker-title { margin: 0 0em; line-height: 16px; text-align: center; font-size: 14px; padding: 0px; font-weight: bold; }
.ui-datepicker { display: none; background-color: #fff; border-radius: 4px; margin-top: 10px; margin-left: 0px; margin-right: 0px; padding: 20px; padding-bottom: 10px; width: 300px; box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.1); }
.ui-widget.ui-widget-content { border: 1px solid #eee; }
#datepicker:focus>.ui-datepicker { display: block; }
.ui-datepicker-prev,
.ui-datepicker-next { cursor: pointer; }
.ui-datepicker-next { float: right; }
.ui-state-disabled { cursor: auto; color: hsla(0, 0%, 80%, 1); }
.ui-datepicker-title { text-align: center; padding: 10px; font-weight: 100; font-size: 20px; }
.ui-datepicker-calendar { width: 100%; }
.ui-datepicker-calendar>thead>tr>th { padding: 5px; font-size: 20px; font-weight: 400; }
.ui-datepicker-calendar>tbody>tr>td>a { color: #000; font-size: 12px !important; font-weight: bold !important; text-decoration: none;}
.ui-datepicker-calendar>tbody>tr>.ui-state-disabled:hover { cursor: auto; background-color: #fff; }
.ui-datepicker-calendar>tbody>tr>td { border-radius: 100%; width: 44px; height: 30px; cursor: pointer; padding: 5px; font-weight: 100; text-align: center; font-size: 12px; }
.ui-datepicker-calendar>tbody>tr>td:hover { background-color: transparent; opacity: 0.6; }
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus { border: 0px solid #cccccc; background-color: transparent; font-weight: normal; color: #2b2b2b; }
/* .ui-widget-header .ui-icon { background-image: url('./btns.png'); }  */
/* .ui-icon-circle-triangle-e { background-position: -20px 0px; background-size: 36px; }
.ui-icon-circle-triangle-w { background-position: -0px -0px; background-size: 36px; }  */
.ui-datepicker-calendar>tbody>tr>td:first-child a { color: red !important; }
.ui-datepicker-calendar>tbody>tr>td:last-child a { color: #0099ff !important; }
.ui-datepicker-calendar>thead>tr>th:first-child { color: red !important; }
.ui-datepicker-calendar>thead>tr>th:last-child { color: #0099ff !important; }
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight { border: 0px; background: #f1f1f1; border-radius: 50%; padding-top: 7px; padding-bottom: 8px; }
.inp { padding: 10px 10px; background-color: #f1f1f1; border-radius: 4px; border: 0px; }
.ui-datepicker .ui-icon {
    background-image: url("https://code.jquery.com/ui/1.13.2/themes/base/images/ui-icons_444444_256x240.png") !important;
}
.ui-datepicker .ui-datepicker-prev {
    left: 1px !important;
}
.ui-datepicker .ui-datepicker-next {
    right: 1px !important;
}
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
    top: 1px !important;
}