@charset "UTF-8";
/* CSS Document */
#PageName {
/*
    width: 1024px;
    margin: 10px auto;
    font-weight: bold;
*/
    display: none;
}
.contents {
  margin-top: 30px;
}
.Common__inner {
    width: 1024px;
    margin: 0 auto;
}

.Sec_parking {
    margin-bottom: 80px;
}
.Sec_delivery {
    margin-bottom: 100px;
}
.heading__h2 {
    background: #ddebf5;
    margin-bottom: 30px;
}
.heading__inner {
    width: 1024px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.heading__icon {
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border: 1px solid #E4EBF2;
    border-radius: 50%;
    position: relative;
    margin-right: 20px;
}
.Sec_parking .heading__icon::after {
    content: "";
    display: block;
    width: 40px;
    height: 37px;
    background: url(/attending/deliveryparking/images/icon_parking.svg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.Sec_delivery .heading__icon::after {
    content: "";
    display: block;
    width: 30px;
    height: 40px;
    background: url(/attending/deliveryparking/images/icon_delivery.svg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.heading__h2 h2 {
    font-size: 22px;
    line-height: 1;
    font-weight: 600;
    color: #0068AD;
}
.info__text {
    font-size: 16px;
}
.info__caption {
    color: #797979;
    font-size: 13px;
    margin-top: 20px;
}
.depart__list {
    margin: 40px 0 80px;
    display: flex;
	flex-wrap: wrap;
    /*justify-content: space-between;*/
	gap: 16px;
    /*align-items: flex-start;*/
}
.Sec_parking .depart__item {
    width: calc(100% / 4 - 12px);
	display: flex;
    flex-direction: column;
}
.Sec_delivery .depart__item {
    width: calc(100% / 3 - 20px);
}
.depart__btn {
    box-shadow: 0px 0px 0px 1px #c3c3c3 inset;
    border-radius: 10px;
    display: flex;
	flex-grow: 1;
    justify-content: center;
    text-align: center;
    transition: box-shadow 0.3s;
}
.depart__btn:hover {
    background: #F2F9FF;
    box-shadow: 0px 0px 0px 2px var(--corporate-color) inset;
}
.depart__list a {
    position: relative;
	display:flex;
	flex-direction:column;
    width: 100%;
    padding: 25px 0 18px;
}
.depart__list a h3 {
    font-weight: 600;
    font-size: 18px;
    color: var(--corporate-color);
    margin-bottom: 5px;
}
.depart__list a hgroup p{
	color: var(--corporate-color);
	margin-bottom: 10px;
	font-size:12px;
}
.depart__btn hgroup + p{
	flex-grow: 1;
	margin: 0 25px 15px;
    text-align: left;
	font-size:14px;
}
.depart__list a .btn__link {
    font-size: 14px;
    padding-right: 20px;
    position: relative;
    display: inline-block;
}
.depart__list a .btn__link::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
	right: 25%;
    background: var(--corporate-color);
    border-radius: 50%;
    transform: translateY(-50%);
}
.depart__list a .btn__link::after {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    position: absolute;
    top: 50%;
	right: 27.5%;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: translateY(-50%) rotate(45deg);
}
.btn__caption {
    color: #797979;
    font-size: 12px;
    /*margin: 10px 25px 0;*/
	display:block;
    letter-spacing: 0.02em;
	text-align:left;
	margin-left: 1rem;
    text-indent: -1rem;
}
.gray {
    pointer-events: none;
    -webkit-filter:grayscale(100%);
    -moz-filter:grayscale(100%);
    -ms-filter:grayscale(100%);
    filter:grayscale(100%);
    background: #F5F5F5;
    border-radius: 10px;
    color: #959595;
}
.gray h3 {
    color: #959595!important;
}





