#inquiry-category {
    list-style: none;
    padding: 40px 10%;
}

#inquiry-context {
    padding-top: 40px;
}

#access-context {
    display: flex;
    width: 100%;
    height: 20%;
}

#access-context1 {
    width: 35%;
}

#access-context2 {
    padding-left: 2%;
    width: 53%;
}

#access-table{
    width: 100%;
    height: 85%;
    border-collapse: collapse;
}
  
#access-table tr{
    border-bottom: solid 2px white;
  }
  
#access-table tr:last-child{
    border-bottom: none;
}
  
#access-table th{
    position: relative;
    /* text-align: left; */
    width: 20%;
    height: 50%;
    background-color: #10559b;
    color: white;
    text-align: center;
    padding: 10px 0;
}
  
#access-table th:after{
    display: block;
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    top:calc(50% - 10px);
    right:-10px;
    border-left: 10px solid #10559b;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}
  
#access-table td{
    text-align: left;
    /* hspace: "30"; */
    width: 70%;
    /* text-align: center; */
    background-color: #eee;
    padding: 30px 5%;
}

#inquiryform-btn {
    display: block;
	text-align: center;
	text-decoration: none;
	width: 85%;
	margin: auto;
	padding: 1rem 4rem;
	font-weight: bold;
	border: 2px solid #27acd9;
	color: #27acd9;
	transition: 0.5s;
}

#inquiryform-btn:hover {
	color: #fff;
	background: #27acd9;
}

#inquiryform-popup-wrapper {
    z-index: 1;
    position: fixed;
    top: 150px;
    left: 0;
    width: 100%;
    display: none;
}

#inquiryform-popup-inside {
    border-radius: 10px;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, .2);
    width: 33%;
    background: #ffff;
    margin: 6% auto;
    position: relative;
    padding: 1% 1% 0%;
}
#inquiryform-popup-header {
    display: flex;
    justify-content: flex-end;
}

#inquiryform-popup-content {
    padding: 1% 3% 7%;
}

iframe {
    width: 140%;
    aspect-ratio: 16/9;
}

.fadeUpAccessTrigger {
    opacity: 0;
}

.fadeUpAccess {
    animation-name: fadeUpAccess;
    animation-duration: 1.5s;
    animation-fill-mode:forwards;
    opacity: 0;
}

.fadeUpAccess2 {
    animation-delay: 0.5s;
}

.fadeUpAccess3 {
    animation-delay: 0.9s;
}

.fadeUpAccess4 {
    animation-delay: 1.3s;
}

@keyframes fadeUpAccess {
    from {
        opacity: 0;
        transform: translateY(100px);
    }to {
        opacity: 1;
        transform: translateY(0);
    }
}