/* @font-face {
	font-family: 'Hiragino Sans CNS';
	src: url("../fonts/Hiragino Sans CNS.ttf") format("truetype");
} */


:root {
    --color-primary: #000000;
    --color-gray: #585858;
    --color-border: #707070;
    --primary-blue: #194C6D;
    --color-blue: #08449A;
    --secondary-blue: #202088;
    --light-blue: #7FCDF3;
    --color-white: #ffffff;
    --color-pink: #C96A9D;
    --font-primary: 'Noto Sans JP', sans-serif;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
nav,
a,
section,
article,
aside,
div,
header,
footer,
form,
input,
figure,
ul {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 20px;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px
}

h6 {
    font-size: 16px;
}


p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 15px;
}

figure {
    margin-bottom: 20px;
}

iframe,
video {
    display: block;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    color: var(--color-primary);
    font-size: 16px;
}

a {
    color: var(--secondary-blue);
    text-decoration: none;
    display: inline-block;
    transition: 0.4s;
}

a:hover {
    color: #000;
    text-decoration: none;
    transition: 0.4s;
}

a:focus {
    outline: unset;
}

button {
    color: #1B1E1E;
    border: unset;
    padding: 12px 35px;
    cursor: pointer;
    background: var(--color-blue);
    transition: all 0.4s;
    border-radius: 8px;
    text-transform: uppercase;
    position: relative;
}

button:hover {
    color: var(--color-white);
}

.read-more {
    color: var(--color-blue);
    font-size: 16px;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;

    text-decoration: underline;
}

.read-more:hover {
    color: #000;
}

button:focus {
    outline: none;
}

.group-btn {
    display: flex;
}

.group-btn li {
    margin-right: 15px;
}

.group-btn li:last-child {
    margin-right: 0;
}

.page-btn {
    background: var(--light-blue);
    color: var(--color-primary);
    padding: 10px 40px;
    overflow: hidden;
    font-size: 16px;
    font-weight: 500;
    transition: 0.4s;
    display: inline-block;
    position: relative;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
}

.page-btn:hover,
.article-brief .btn-wrap .page-btn:hover {
    background: var(--color-blue);
    color: var(--color-white);
    border-color: var(--color-blue);
}

.page-btn.nobg {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.text-blue {
    color: var(--color-blue);
}

.text-pblue {
    color: var(--primary-blue);
}

.text-ltblue {
    color: var(--light-blue);
}

.text-pink {
    color: var(--color-pink);
}

.bg-ltblue {
    background: #7FCDF3;
}

.bg-sfblue {
    background: #80B9FF;
}

.bg-soft-blue {
    background: #EFF9FF;
}

.bg-blue {
    background: #00449A;
}

.bg-dkblue {
    background: #202088;
}

.bg-pink {
    background: #C96A9D;
}

.bg-gray {
    background: #585858;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-group a {
    margin-right: 25px;
}

label .imp,
.text-red {
    color: red;
}

label {
    display: block;
    margin-bottom: 10px;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--color-gray);
    border-radius: 0;
    padding: 8px 10px;
}

.form-group {
    margin-bottom: 15px;
}

textarea {
    min-height: 150px;
}

input[type=checkbox],
input[type=radio] {
    width: auto;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--color-primary) !important;
}

.my-select select:required:invalid {
    color: #929292;
}

.select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    position: relative;
}

.form-group.select {
    position: relative;
}

::placeholder {
    color: #585858;
}

table {
    width: 100%;
}

section {
    padding: 100px 0;
    position: relative;
}

section.nopadding {
    padding: 0;
}

.small-pb {
    padding-bottom: 70px;
}

.small-pt {
    padding-top: 70px;
}

.small-p {
    padding: 70px 0;
}

.large-pb {
    padding-bottom: 120px;
}

.large-pt {
    padding-top: 120px;
}

.large-p {
    padding: 120px 0;
}

.section-intro {
    text-align: center;
    margin: 0 auto 50px;
}

.section-title {
    position: relative;
    margin: 0 auto 20px;
    max-width: 750px;
}

.st-border {
    padding-bottom: 20px;
}

.st-border:after {
    content: "";
    border: 1px solid var(--color-primary);
    max-width: 60%;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
}

.st-border.text-pblue:after {
    border-color: var(--primary-blue);
}

.section-title.lg-title h2 {
    font-size: 35px;
}

.section-title h2 {
    position: relative;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-intro p {
    max-width: 600px;
    margin: 0 auto;
}

.lesspadding {
    padding: 0 10px;
}

.lessmargin {
    margin: 0 -10px;
}

.container {
    max-width: 1280px;
}


/* nav css */
.menu-content h1 small {
    font-weight: 200;
    font-size: 24.8px;
    margin-right: 10px;
}

.menu-content h1 {
    font-size: 42px;
    font-weight: 400;
    color: var(--color-white);
    display: flex;
    align-items: center;
}

.aomori-secondary-menu,
.menu-content a {
    color: var(--color-white);
}

.menu-content ul {
    display: flex;
    justify-content: flex-end;
}

.am-text {
    position: relative;
}

.am-text:after {
    content: '';
    border-bottom: 1px solid;
    position: absolute;
    left: 0;
    right: 15px;
    bottom: 0;
}

.social-links li {
    font-size: 25px;
    margin-left: 10px;
}

.am-text {
    font-size: 18px;
    margin-left: 10px;
}

header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
}

header.inner-header {
    position: static;
    background: #194C6D;
}

header.fixed .row,
header.inner-header.fixed .row{
    align-items: center;
}
header.fixed .menu-content .am-text, header.inner-header .menu-content .am-text{
    padding: 0 !important ;  
}

header.fixed .menu-content .am-text:after,
header.inner-header .menu-content .am-text:after{
    bottom: 5px;
}

header.fixed,
header.inner-header.fixed {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    background: #194C6D;
    animation: sticky 0.4s;
    box-shadow: 0 0 5px;
  }

  
  @keyframes sticky {
    0% {
      top: -200px;
    }
  
    100% {
      top: 0;
    }
  }


header.fixed .menu-content h1,
header.inner-header .menu-content h1 {
    font-size: 34px;
}

header.fixed .menu-content h1 small,
header.inner-header .menu-content h1 small {
    font-size: 20px;
}

header.fixed .aomori-secondary-menu,
header.inner-header .aomori-secondary-menu {
    padding: 15px 0 !important;
}

header.fixed .menu-content,
header.inner-header .menu-content {
    display: flex;
}

header.fixed .menu-content .am-text,
header.inner-header .menu-content .am-text{
    margin-left: 0;
}
.mobile-menu{
    display: none;
}
/* nav css close */

.hero-banner img {
    width: 100%;
    object-fit: cover;
}

.hero-text img {
    width: auto;
    margin-bottom: 50px;
}

.hero-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aomori-sticky-sec {
    position: fixed;
    padding: 0 0 35px;
    left: 0;
    right: 0;
    z-index: 999;
    bottom: 0;
    border-bottom: 10px solid #194C6D;
    transition: 0.4s;
}

.aomori-sticky-sec.fixed ul li .menu-title {
    transition: transform 0.4s;
    transform: scale(0);
}

.aomori-sticky-sec.fixed {
    bottom: -30px;
    transition: 0.4s;
}

.aomori-sticky-sec::before {
    content: "";
    background: #82a9b6;
    height: 50%;
    position: absolute;
    width: 100%;
    bottom: 0;
}

.aommori-primary-menu .navbar-nav li .menu-title {
    display: block;
    text-align: center;
    background: #fff;
    border-radius: 25px;
    color: var(--color-primary);
    font-weight: 500;
    font-size: 16px;
    padding: 5px 30px;
    transition: 0.4s;
}

.aommori-primary-menu .navbar-nav li a {
    position: relative;
}

.aommori-primary-menu .navbar-nav li {
    text-align: center;
}

.aommori-primary-menu .navbar-nav li img {
    position: relative;
    top: 5px;
}

.aommori-primary-menu .navbar-nav {
    flex-direction: unset;
    justify-content: space-between;
    align-items: flex-end;
}

.company-img {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.company-img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    transition: 0.4s;
}

.tt-card:hover .company-img img {
    transform: scale(1.1);
    transition: 0.4s;
}

.company-logo img {
    height: 90px;
    object-fit: contain;
    width: 250px;
    margin: 0 auto;
}

.tt-contact {
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.tt-contact li a {
    font-weight: 700;
    font-size: 18px;
    color: #202088;
}

.tt-contact.bg-pink li a,
.tt-contact.bg-blue li a {
    color: var(--color-white);
}

.open-modal {
    position: relative;
    font-size: 23px;
    font-weight: 500;
    border-bottom: 2px solid var(--secondary-blue);
    padding-left: 25px;
}

.open-modal:after {
    content: "\f07d";
    font-weight: 600;
    font-family: "Font Awesome 6 Free";
    transform: rotate(-45deg);
    display: inline-block;
    margin-left: 30px;
}

.text-ltblue.open-modal{
    border-color:#7FCDF3;
}

.text-pink.open-modal{
    border-color:var(--color-pink);
}

.pp-company-img img {
    width: 100%;
    object-fit: none;
}

.pp-tt-contact ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.pp-tt-contact ul li {
    margin: 10px;
}

.pp-tt-contact li a {
    font-size: 20px;
}

.company-operation table tr {
    border-bottom: 1px solid var(--color-primary);
}

.company-operation table tr th,
.company-operation table tr td {
    padding: 10px;
    text-align: left;
    width: 50%;
}

.destination-title h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.destination-title h3 span {
    border-bottom: 1px solid var(--color-primary);
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: block;
    max-width: 50%;
}

.tt-detail table,
.tt-detail table th,
.tt-detail table td {
    border: 1px solid var(--color-primary);
    border-collapse: collapse;
}

.tt-detail table th,
.tt-detail table td {
    padding: 10px;
    font-size: 17px;
}

.tt-detail table th {
    /* background: #7FCDF3; */
    font-weight: 400;
    color:var(--color-white);
}

.tt-detail table th:first-child,
.tt-detail table td:first-child {
    text-align: left;
}

.time-table {
    margin-bottom: 50px;
}

.reserve-btn {
    display: block;
    color: #fff;
    font-size: 24px;
    text-align: center;
}

.reserve-btn:after {
    content: "\f04b";
    font-weight: 600;
    font-family: "Font Awesome 6 Free";
    position: absolute;
    position: absolute;
    right: 10px;
    bottom: 0;
    transform: rotate(45deg);
}

.btn-close {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 1.5em;
    height: 1.5em;
    background-color: rgb(255 255 255 / 67%);
    border-radius: 0;
    filter: invert(1);
}

.weather-detail figure img,
.article-card figure img {
    width: 100%;
    object-fit: cover;
}

.meta-data span {
    padding: 7px 35px;
    font-size: 13px;
    display: inline-block;
}

.meta-date,
.brief-desc p,
.notice-sec .section-intro p a {
    font-size: 15px;
    color: var(--color-black);
}

.notice-sec .entry-content,
.boardingcar-sec .entry-content,
.media-sec .entry-content,
.video-sec .entry-content,
.qa-sec .entry-content,
.all-qa-section .entry-content,
.privacy-sec .entry-content {
    max-width: 1050px;
    margin: 0 auto;
}

.article-thumbnail a,
.article-thumbnail a img {
    display: block;
    height: 325px;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
    transition: 0.4s;
}

.article-thumbnail a:hover img {
    transform: scale(1.1);
    transition: 0.4s;
}

.article-title {
    font-size: 20px;
    font-weight: 400;
}

.article-title a {
    color: var(--color-primary);
}

.article-brief .btn-wrap .page-btn {
    padding: 5px 50px;
    border-radius: 0;
    font-size: 15px;
}

.featured-article,
.article-card .meta-data {
    margin-bottom: 15px;
}

.article-card {
    margin-bottom: 30px;
}

.article-card figure {
    height: 250px;
    overflow: hidden;
}

.article-card .article-title {
    font-size: 18px;
    margin-bottom: 10px;
    width: 100%;
}

.media-sec {
    background: var(--light-blue);
}

.media-content h3 {
    color: var(--color-white);
}

.video-brief {
    background: #194C6D;
    color: var(--color-white);
    text-align: center;
    padding: 50px 25px;
    border-radius: 15px;
    height: 100%;
}

.video-brief h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 40px;
    padding: 35px 0;
    border-bottom: 2px solid;
}

.video-brief a {
    color: var(--color-white);
    margin-top: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid;
}

.youtube-link {
    padding: 10px 40px;
    border-radius: 25px;
}

.youtube-link:hover {
    color: var(--color-white);
    background: #FF0000;
    border-color: #FF0000;
}

footer {
    background: #194C6D;
    color: var(--color-white);
}

.footer-content a {
    color: var(--color-white);
}

.footer-content h3 {
    font-size: 18px;
    margin: 5px;
}

.footer-content h2 {
    font-size: 25px;
    font-weight: 500;
}

.footer-content .social-links {
    display: flex;
    justify-content: flex-end;
    margin: 0;
}

.footer-sec {
    padding-bottom: 250px;
}

#btn-scrollup {
    display: none;
}

a.scrollup, a.scrollup:visited {
    bottom: 150px;
    color: #ffffff !important;
    float: right;
    line-height: 1.2;
    position: fixed;
    right: 25px;
    text-align: center;
    z-index: 999;
    border-radius: 4px;
    background: var(--primary-blue);
    width: 50px;
    height: 50px;
    line-height: 50px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid var(--color-white);
}

.copy-right{
    display: none;
}

/* Boarding page */

.banner-img {
    height: 170px;
    overflow: hidden;
    position: relative;
}

.banner-img:before {
    content: "";
    background: rgb(25 76 109 / 50%);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	object-position:center;
}

.banner-title {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.banner-title h2 {
    font-size: 26px;
    font-weight: 500;
    margin: 0;
}

.parking-brief .process li {
    margin-bottom: 10px;
    line-height: 30px;
}

.parking-thumbnail,
.parking-thumbnail img,
.bs-thumbnail img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.parking-brief h2 {
    padding: 0 50px 25px 0;
    border-bottom: 1px solid;
}

.boarding-brief .page-btn {
    font-size: 20px;
    cursor: unset;
}

.boarding-brief-list {
    column-count: 2;
    font-size: 14px;
}

.boarding-brief-list li,
.service-detail ul li,
.map-quick-access ul li {
    position: relative;
    padding-left: 10px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.boarding-brief-list li:before,
.service-detail ul li:before,
.map-quick-access ul li:before {
    content: "\f111";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    position: relative;
    font-size: 5px;
    left: -10px;
}

.download-click {
    display: block;
    text-align: center;
    position: relative;
}

.click-text {
    text-align: center;
    color: var(--color-white);
    position: absolute;
    font-size: 13px;
    padding: 5px 0;
    font-weight: 700;
    right: 15%;
}

.click-text:before,
.click-text:after {
    content: "";
    border-top: 2px solid var(--color-white);
    position: absolute;
    top: 0;
    width: 100%;
    transform: rotate(-5deg);
}

.click-text:after {
    top: unset;
    bottom: 0;
    left: 0;
    transform: rotate(0deg);
}

.boarding-card {
    box-shadow: 6px 7px 0px #c5c5c5;
    margin-bottom: 25px;
}

.boarding-logo img {
    height: 90px;
    object-fit: contain;
}

.bording-short-info p,
.popup-images p {
    font-size: 14px;
}

.boarding-tab-nav ul li .page-btn {
    background: #ffffff;
    margin: 0 20px;
    text-align: center;
    border-radius: 10px !important;
}

.boarding-tab-nav ul li .page-btn:hover,
.boarding-tab-nav ul li .page-btn.active {
    /* background: #D8FFFF; */
    border: 1px solid var(--color-primary);
}

.boarding-tab-nav ul li .page-btn {
    border: 1px solid var(--color-primary);
    font-size: 20px;
    min-width: 300px;
    color: var(--color-primary);
    padding: 15px;
}

.boarding-steps-info h2,
.boarding-steps-info ul {
    padding-left: 35px;
    position: relative;
}

.boarding-steps-info h2:after {
    content: '';
    border-bottom: 2px solid;
    bottom: 0;
    position: absolute;
    width: 100%;
    left: 0;
}

.boarding-steps-info h2 {
    padding-bottom: 20px;
}

.boarding-steps .row {
    margin-bottom: 35px;
}


/* Terminal information */

.terminal-points .service-guide,
.terminal-points .floor-map {
    padding-top: 100px;
}

.terminal-services .service-img,
.terminal-services .service-img img,
.floor-map-img img{
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.terminal-services .service-info {
    padding: 80px 0 35px;
    position: relative;
}

.service-title h3 {
    margin: 0;
}

.service-title {
    padding: 10px 50px;
    /* text-align: center; */
    position: absolute;
    top: 20px;
    width: 100%;
    left: -50px;
}

.terminal-services .service-info p,
.service-detail ul li {
    font-size: 15px;
}

.terminal-services .service-info p:not(:last-child) {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-primary);
}

.terminal-services .row {
    margin-bottom: 75px;
}

.terminal-services .row:nth-child(even) {
    flex-direction: row-reverse;
}

.terminal-services .row:nth-child(even) .service-title {
    left: unset;
    right: -50px;
}

.terminal-points:not(:last-child) {
    margin-bottom: 50px;
    padding-bottom: 50px;
}

.aside-nav h3 {
    text-align: center;
    height: 170px;
    background: rgb(255 255 255 / 50%);
    padding: 50px 75px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aside-nav {
    border: 1px solid var(--color-border);
    box-shadow: 5px 5px 0 rgb(221 221 221 / 50%);
}

.aside-nav ul li a {
    padding: 10px;
    color: var(--color-primary);
    border-radius: 10px;
}

.aside-nav ul li {
    padding: 10px 0;
    position: relative;
    border-bottom: 2px dashed var(--color-primary);
}

.aside-nav ul li:last-child {
    border: 0;
}

.aside-nav ul li a.active,
.aside-nav ul li a:hover {
    background: #00A1DD;
    color: var(--color-white);
}

.fixed-row {
    position: fixed;
    left: 0;
    right: 0;
    top: 71px;
    /* max-width: 1280px;
    margin: 0 auto; */
    z-index: 555;
}

.aside-nav ul {
    padding: 20px 35px;
    background: var(--color-white);
    padding-bottom: 20px;
    position: relative;
}

.aside-nav ul:before,
.aside-nav ul:after {
    content: "";
    border-top: 1px solid var(--color-primary);
    position: absolute;
    top: 20px;
    left: 35px;
    right: 35px;
}

.aside-nav ul:after {
    /* border-bottom: 1px solid var(--color-primary); */
    top: unset;
    bottom: 20px;
    border-top: unset;
}

/* access page */

.terminal-map .section-title.st-border:after {
    max-width: 90%;
}

.map-quick-access ul li a {
    color: var(--light-blue);
    text-decoration: underline;
}

.recomonded-spot .page-btn {
    padding: 30px 35px;
    color: var(--color-white);
}

.terminal-map:not(:last-child) {
    padding-bottom: 100px;
}

.terminal-map{
    position:relative;
    z-index: 666;
}

/* Faq page */

.faq-card {
    border: 1px solid #707070;
    text-align: center;
}

.faq-card a,
.faq-card span {
    display: block;
    transtion: 0.4s;
}

.faq-card img {
    height: 90px;
    object-fit: contain;
    width: 100%;
}

.faq-card a span {
    display: block;
    padding: 10px 35px;
    color: var(--color-white);
    font-size: 20px;
    transition: 0.4s;
}

.faq-card a:hover span {
    background: var(--color-blue);
    transition: 0.4s;
}

.question-lists {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 100px 85px;
    margin-bottom: 75px;
}

.question-lists ul li a {
    font-size: 20px;
    color: var(--color-primary);
    text-decoration: underline;
    margin-bottom: 15px;
    position: relative;
    margin-left: 15px;
}
.question-lists ul li i{
    font-size: 20px;
}
.question-lists ul li{
    display: flex;
    align-items: baseline;
}

/* .question-lists ul li a:before {
    content: "\f04b";
    font-weight: 600;
    font-family: "Font Awesome 6 Free";
    position: absolute;
    left: 0;
    color: var(--light-blue);
} */

.qa-detail {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    margin-bottom: 50px;
}

.qa-header {
    font-size: 30px;
    background: var(--light-blue);
    padding: 10px 50px;
    color: #ffffff;
    /* font-family: 'Hiragino Sans CNS'; */
}

.qa-body {
    padding: 25px 50px 100px;
}

.qa-body h3 {
    border-bottom: 3px solid var(--light-blue);
    padding-bottom: 5px;
}

.qa-body .answer {
    padding: 15px 25px;
}


/* about page */

.about-part {
    padding: 100px 0;
    position: relative;
}

.about-part:nth-child(even) {
    background: #EFF9FF;

}

.about-part:nth-child(even):before,
.about-part:nth-child(even):after {
    content: "";
    background: #EFF9FF;
    position: absolute;
    left: -100%;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.about-part:nth-child(even):after {
    left: unset;
    right: -100%;
}

.about-sec {
    overflow: hidden;
}

.ab-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    padding: 15px 20px;
    border-bottom: 2px solid var(--primary-blue);
    position: relative;
    z-index: 666;
    margin-bottom: 15px;
}

.abp-desc {
    position: relative;
    z-index: 666;
}

.abp-company-title {
    font-size: 16px;
    padding-bottom: 20px;
    border-bottom: 2px dashed var(--primary-blue);
}

.abp-desc table td {
    vertical-align: top;
}

.abp-desc table td ul li {
    padding: 5px 0;
    font-size: 14px;
    min-height: 34px;
}

.abp-desc table td:first-child ul li {
    display: flex;
    justify-content: flex-end;
    font-size: 15px;
}

.day-month {
    padding: 0 10px;
}

table.tablepress td ul li:not(:last-child){
    border-bottom: 2px solid var(--color-border);
}

.abp-desc table td:first-child {
    padding-right: 15px;
    width: 25%;
}

.abp-desc table tr {
    border-top: 3px solid var(--primary-blue);
}

.download-list li {
    display: inline-block;
    margin: 5px;
}

.download-list li a {
    background: var(--primary-blue);
    color: var(--color-white);
    border-radius: 10px;
    padding: 10px 60px 10px 25px;
    position: relative;
    font-size: 15px;
}

.download-list li a:after {
    content: url(../images/download.png);
    filter: brightness(0) invert(1);
    margin-left: 25px;
    right: 10px;
    transform: scale(0.6);
    display: inline-block;
    position: absolute;
    bottom: 0;
}

.doc-year{
    margin-top: 50px;
}
.doc-year h3{
    padding-bottom: 20px;
    border-bottom:2px solid var(--primary-blue);
    color:var(--primary-blue);
    font-size: 18px;
}

.abp-desc table tr br{
    display: none;
}



/* contact page */


.inquiry-type input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    position: relative;
    border: 1px solid var(--color-primary);
    color: #000;
    height: 20px;
    max-width: 20px;
    width: 100%;
    border-radius: 0px;
    cursor: pointer;
    margin: 0 12px 0 5px;
    outline: none;
    padding: 0;
    background: transparent !important;
}

.inquiry-type input:checked::before {
    content: "\f00c";
    position: absolute;
    font-family: "Font Awesome 6 Free";
    font-weight: 800;
    font-size: 16px;
    left: 3px;
    top: -3px;
}

.inquiry-type input:checked {
    border: 1px solid var(--color-primary);
}

.form-content form {
    max-width: 750px;
    margin: 0 auto;
}


form .btn-wrap {
    position: relative;
}

form .btn-wrap .page-btn {
    margin: 0 10px;
    border-radius: 25px;
    width: auto;
}
form .btn-wrap  .wpcf7-spinner{
    position: absolute;
    top:-25px;
}

.privacy-content ul li:not(:last-child) {
    margin-bottom: 25px;
}

.privacy-content ul li h3 {
    margin-bottom: 5px;
    font-size: 18px;
  }

.custom-checkbox .wpcf7-radio,
.custom-checkbox .wpcf7-list-item label{
	display:flex;
	align-items:center;
}

.custom-checkbox .wpcf7-list-item{
	display:block;
	width:100%;
	margin-left:0;
}

.custom-checkbox .wpcf7-list-item label{
	margin-bottom:0;
}

.custom-checkbox .wpcf7-list-item label input{
	cursor:pointer;
}

.notice-nav-header span{
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notice-nav-header h2{
    padding:20px 0;
    margin:20px 0;
    border:2px solid var(--primary-blue);
    border-left: 0;
    border-right: 0;
    font-size: 26px;
}

.notice-nav ul li a{
    color:#32190E;
    margin-bottom: 5px;
}

.notice-nav{
    margin-bottom: 35px;
}

.article-header .meta-date{
    font-size: 16px;
}

.article-header  .article-title{
    margin-bottom: 7px;
    font-size: 20px;
}

.article-desc figure{
    margin:25px 0 50px;
}

.wharf-ferry-articles .featured-article .article-brief{
    padding-top:30px;
}

.wharf-ferry-articles .featured-article{
    padding-bottom: 15px;
    border-bottom:1px solid var(--color-border);
    margin-bottom: 30px;
}
.notice-nav{
    position:sticky;
    top: 100px;
}

.pagination ul li+li:before {
    content: "•" !important;
    margin: 0 15px;
    font-size: 16px;
}

.pagination ul{
    display: inline-flex;
}
.other-articles a{
    margin:0 20px;
}

.other-articles a:first-child:before{
    content:"\f104";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    margin-right: 5px;
}

.other-articles a:last-child:after{
    content:"\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    margin-left: 5px;
}

.d_img{
    width: auto !important;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.preloader:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  margin: 6px;
  border-radius: 50%;
  border: 6px solid #ccc;
  border-top-color: #3498db;
  animation: preloader-spin 1s linear infinite;
}

@keyframes preloader-spin {
  to {
    transform: rotate(360deg);
  }
}
.inner-menu{
    display: none;
}