@charset "UTF-8";
html,
body {
  height: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

img {
  color: transparent;
  font-size: 0;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}

a {
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s ease;
  outline: 1px solid transparent;
  backface-visibility: hidden;
}
a img {
  outline: 1px solid transparent;
  backface-visibility: hidden;
}
a:hover {
  cursor: pointer;
}

img,
object {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  resize: none;
  outline: none;
  background: none;
}

select::-ms-expand {
  display: none;
}

button:hover {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td,
caption {
  font-weight: normal;
  vertical-align: top;
  text-align: left;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/*------------- 共通設定 -------------*/
:root {
  --main-color: #eeb033;
  --btn-color: #ea5514;
  --footer-color: #21ad5b;
}

html {
  font-size: 62.5%;
}

body {
  color: #1d1e1e;
  font-size: 1rem;
  text-align: left;
  font-family: "Noto Sans JP", "メイリオ", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", sans-serif;
  background-color: #fff;
  margin: 0 auto;
}

@media (max-width: 768px) {
  body {
    min-width: auto;
  }
}

h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

h2 {
  font-size: 2rem;
  font-weight: bold;
}

h3 {
  font-size: 1.75rem;
  font-weight: bold;
}

h4 {
  font-size: 1.5rem;
  font-weight: bold;
}

h5 {
  font-size: 1.25rem;
  font-weight: bold;
}

h6 {
  font-size: 1rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  h5 {
    font-size: 1rem;
  }
  h6 {
    font-size: 0.875rem;
  }
}

section {
  position: relative;
}

main {
  position: relative;
  display: block;
}

p,
th,
td,
dt,
dd,
li,
input,
button,
textarea {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  p,
  th,
  td,
  dt,
  dd,
  li,
  input,
  button,
  textarea {
    font-size: 16px;
  }
}

img {
  width: 100%;
  height: auto;
}

* {
  box-sizing: border-box;
  word-break: break-word;
}

a {
  text-decoration: none;
  transition: opacity 0.3s ease;
  cursor: pointer;
  font-size: 1.6rem;
}
a:hover {
  opacity: 0.6;
}

ul {
  padding: 0;
  margin: 0;
}
ul li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.is-fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .nosp {
    display: none !important;
  }
  .is-pc {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .nopc {
    display: none !important;
  }
  .is-sp {
    display: none !important;
  }
}

/*------------- ヘッダー -------------*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;

  min-height: 60px;
  max-height: 100px;
  box-sizing: border-box;
  transition: height 0.3s ease;
}

.logo img {
  height: auto;
  max-height: 40px;
  width: auto;
  display: block;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lp-btn {
  display: flex;
  padding: 8px 16px;
  border: 2px solid #036eb7;
  color: #036eb7;
  background: white;
  font-weight: bold;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.lp-btn:hover {
  background: #036eb7;
  color: white;
}

.lp-btn-sp {
  display: none;
}

@media (max-width: 768px) {
  .site-header {
    padding: 8px 16px;
    min-height: 40px;
    max-height: 80px;
  }

  .logo img {
    max-height: 24px;
  }

  .lp-btn {
    display: none;
  }

  .lp-btn-sp {
    display: flex;
    padding: 8px 16px;
    border: 2px solid #036eb7;
    color: #036eb7 !important;
    background: white;
    font-size: 18px !important;
    font-weight: bold;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .lp-btn-sp:hover {
    background: #036eb7;
    color: white;
  }
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  background-color: #fcf3df;
  color: var(--main-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 18px;
  transition: background-color 0.3s, transform 0.2s;
}

.social-icons a:hover {
  background-color: #fcf3df;
  transform: scale(1.1);
}

/* ハンバーガーメニュー */
.hamburger {
  width: 44px;
  height: 44px;
  background-color: var(--main-color);
  border: none;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
}

/* モーダルの共通スタイル */
.nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 500px;
  max-width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.95);
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 768px) {
  .nav-menu {
    width: 75vw;
  }
}

.nav-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 1001;
}

.close-btn:hover {
  transform: rotate(90deg);
}

.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  z-index: 1;
  position: relative;
}

.nav-menu li {
  margin: 20px 0;
}

.nav-menu a {
  font-size: 24px;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #ccc;
}

.scroll-indicator {
  position: absolute;
  left: 2.5vw;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 500;
  font-family: sans-serif;
  color: #000;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.scroll-text {
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.8;
  transform: rotate(90deg);
  transform-origin: center center;
  position: relative;
  left: 1px;
}

.arrow-long {
  width: 2px;
  height: 90px;
  background-color: #000;
  position: relative;
  animation: bounce 1.5s infinite;
  opacity: 0.8;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.arrow-long::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #000;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(6px);
  }
}

/* メインビジュアル */
.main-visual {
  position: relative;
  text-align: center;
  margin: auto;
}

.main-visual img {
  width: 90vw;
}

@media screen and (max-width: 768px) {
  .scroll-indicator {
    display: none;
  }
}

/* ナビゲーションメニュー */
.anchor-menu {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  background: white;
  padding: 16px 32px;
  border-radius: 50px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  width: auto;
  max-width: 100%;
  z-index: 10;
}

.anchor-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-around;
}

.anchor-menu li {
  text-align: center;
  margin: 0 20px;
}

.anchor-menu a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  display: inline-block;
}

.anchor-menu .title {
  font-size: 16px;
  white-space: nowrap;
}

.anchor-menu .subtitle {
  font-size: 12px;
  font-weight: normal;
  color: var(--main-color);
  white-space: nowrap;
}

/* コンテンツエリア */
.content-wrapper {
  margin: 0 auto;
}

.top-info {
  max-width: 1400px;
  padding: 10% 5vw 0;
}

@media screen and (max-width: 768px) {
  .top-info {
    padding: 5% 5vw 0;
  }
}

/* クーポンについて */
.coupon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.coupon-header,
.news-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.coupon-ttl-area,
.news-ttl-area {
  display: flex;
  flex-direction: column;
}

.coupon-subtitle,
.news-subtitle,
.access-subtitle {
  color: var(--main-color);
  font-size: 1.5em;
  font-weight: bold;
  margin: 0;
}

.coupon-title,
.news-title {
  font-size: 2em;
  margin: 0;
}

.mp_ticket,
.mp-news {
  height: auto;
  display: block;
}

.coupon-header .mp_ticket,
.news-header .mp_news {
  max-height: 80px;
  width: auto;
}

.coupon-ticket-container {
  text-align: center;
}

.coupon-ticket-container > p,
.news-container > p {
  text-align: left;
  margin-bottom: 20px;
}

.coupon-ticket {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin-bottom: 20px;
}

.coupon-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.coupon-buttons p {
  color: #cc0000;
}

.coupon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-height: 62px;
  border-radius: 10px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: box-shadow 0.3s ease-in-out;
  padding: 10px 0;
}

.coupon-btn img {
  width: auto;
  max-height: 40px;
  display: block;
}

.ana {
  border: 1px solid #223f92;
}

.jalan {
  border: 1px solid #ff6600;
}

.rakuten {
  border: 1px solid #00b900;
}

.disabled {
  box-shadow: none;
  color: #666;
  background-color: #ccc;
  border: 1px solid #999;
  pointer-events: none !important;
  opacity: 0.6;
}

.txt-rakuten {
  color: #00b900 !important;
}

.jtb {
  border: 1px solid #cc0000;
}

.coupon-btn:hover {
  box-shadow: none;
}

.coupon-img img,
.news-img img {
  box-shadow: 10px 10px 22px rgba(0, 0, 0, 0.15);
}

/* 新着情報 */
.news-container {
  display: flex;
  flex-direction: column;
  align-items: end;
  width: 100%;
}

.news-list-container {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-container .custom-btn {
  justify-content: space-between;
}

.news-item {
  padding: 0;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

.news-item-header {
  margin-bottom: 5px;
}

.news-date-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-date {
  font-weight: 500;
  color: #999999;
}

.badge {
  background-color: #df2516;
  color: white;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 1em;
  font-weight: bold;
}

.news-item-title a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.2s ease;
}

.news-item-title a:hover {
  color: var(--main-color);
}

.btn-news {
  margin-top: 20px;
}

/* 佐賀空港がとっても便利なワケ */
#why {
  background-color: #f4e1be;
}

.why-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw;
}

.why-title {
  display: block;
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
  height: auto;
  padding-bottom: 30px;
}

#learn .title {
  display: block;
  margin: 0 auto;
  max-width: 400px;
  width: 100%;
  height: auto;
}

.layout-row {
  display: flex;
  margin-bottom: 12%;
  gap: 50px;
}

.layout-column {
  flex: 1;
}

.layout-image img {
  width: 100%;
  height: auto;
}

.layout-text {
  display: flex;
  justify-content: center;
}

.why-1-text,
.why-2-text,
.why-3-text {
  display: flex;
  flex-direction: column;
  align-items: end;
  width: 100%;
  justify-content: space-between;
}

.why-1-text p,
.why-2-text p,
.why-3-text p {
  line-height: 3;
}

#why .layout-row:nth-of-type(3) {
  margin-bottom: 0;
}

.ttl-pc {
  max-height: 60px;
  width: auto;
}

.ttl-sp {
  margin: 0 auto 5rem;
  max-height: 120px;
  width: auto;
  display: block;
}

/* ------------------------- */
/* レスポンシブ対応 */
/* ------------------------- */
@media (max-width: 768px) {
  .nav-links,
  .social-icons {
    display: none;
  }

  .site-header {
    flex-wrap: wrap;
  }

  .site-header.active .nav-links,
  .site-header.active .social-icons {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    gap: 10px;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-icons {
    justify-content: flex-start;
  }

  .anchor-menu {
    display: none;
  }

  .layout-row {
    flex-direction: column;
    gap: 0;
  }

  .layout-column {
    margin-bottom: 20px;
  }

  .coupon-text {
    order: 1;
  }
  .coupon-img {
    order: 2;
  }
  .news-text {
    order: 3;
  }
  .news-img {
    order: 4;
  }

  .why-1-text {
    order: 1;
  }
  .why-1-img {
    order: 2;
  }
  .why-2-text {
    order: 3;
  }
  .why-2-img {
    order: 4;
  }
  .why-3-text {
    order: 5;
  }
  .why-3-img {
    order: 6;
  }

  .social-icons {
    display: none;
  }

  #why > img {
    max-width: 100%;
  }

  #learn .title {
    max-width: 300px;
  }

  .coupon-btn {
    padding: 20px 0;
  }
}

/* 佐賀空港を知る */
#learn {
  padding: 0 5vw;
}

.learn-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.learn-header img {
  max-width: 400px;
  width: 100%;
  height: auto;
}

.learn-header p {
  color: #333;
  margin: 0;
}

.square-btn.x {
  background-image: url("../img/X.webp");
}

.square-btn.facebook {
  background-image: url("../img/facebook.webp");
}

.square-btn.instagram {
  background-image: url("../img/instagram.jpg");
}

.square-btn.hp {
  background-image: url("../img/hp_logo.webp");
  background-position: center;
  background-size: 60%;
  background-repeat: no-repeat;
}

.button-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 100%;
  padding: 20px;
  box-sizing: border-box;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 240px;
  width: 100%;
}

.square-btn {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 240px;
  border: 2px solid #e2e2e2;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 0 #e2e2e2;
  transition: box-shadow 0.3s ease;
  display: block;
  text-decoration: none;
  overflow: hidden;
}

.square-btn:hover {
  box-shadow: none;
}

@media (max-width: 768px) {
  .learn-header {
    padding: 0;
  }

  .button-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 0;
  }

  .square-btn {
    width: min(40vw, 200px);
    height: min(40vw, 200px);
  }
}

.corner-label {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-right: 80px solid transparent;
  z-index: 2;
}

.corner-label i {
  position: absolute;
  top: -65px;
  left: 15px;
  color: white;
  font-size: 20px;
  pointer-events: none;
}

.x .corner-label.x-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;

  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #333333 100%);

  background-size: 100% 50%;
  background-position: top left;
  clip-path: polygon(0 0, 80px 0, 0 80px);
}

.instagram .corner-label.instagram-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;

  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 20%,
    #dc2743 40%,
    #cc2366 60%,
    #bc1888 80%
  );

  background-size: 100% 50%;
  background-position: top left;
  clip-path: polygon(0 0, 80px 0, 0 80px);
}

.instagram-ribbon i,
.x-ribbon i {
  position: absolute;
  top: 12px;
  left: 13px;
  color: white;
  font-size: 24px;
}

.facebook .corner-label {
  border-top: 80px solid #1877f2;
}

.label {
  margin-top: 10px;
  color: #333;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
}

.label img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

.app-area {
  margin-bottom: 0;
}

.app-img {
  max-width: 1000px;
  display: block;
  margin: auto;
}

.store-area {
  justify-content: center;
}

.badge-area {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-area p {
  text-align: center;
}

.store-badge {
  height: 100px;
  width: auto;
}

@media screen and (max-width: 768px) {
  .store-area {
    gap: 10px;
  }

  .badge-area {
    margin: auto;
  }

  .store-badge {
    height: 60px;
  }
}

/* アクセス情報 */
#access {
  padding: 0 5vw;
}

.access-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 20px;
}

.access-ttl {
  font-size: 2.5rem;
}

.access-subtitle {
  color: var(--main-color);
  margin: 0;
}

@media screen and (max-width: 768px) {
  .access-ttl {
    font-size: 2rem;
  }
  .access-subtitle {
    font-size: 1.75rem;
  }
}

.card-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  display: flex;
  align-items: center;
  background-color: #fdf7ea;
  border-radius: 10px;
  padding: 30px 20px;
  min-height: 200px;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
  gap: 20px;
}

.card:last-child {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: calc((1000px - 20px) / 2); /* カードサイズを調整 */
}

.card img {
  max-width: 80px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.card-ttl {
  font-size: 2rem;
}

.card-content h3 {
  text-align: center;
  line-height: 1.4;
  margin: 0 0 10px;
  word-wrap: break-word;
}

.taxi-content {
  align-items: center;
}

.custom-btn {
  background-color: var(--btn-color);
  color: #ffffff;
  border: 2px solid #fff;
  padding: 6px 15px;
  width: auto;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  justify-content: space-between;
  gap: 15px;
}

.custom-btn:hover {
  background-color: #ffffff;
  color: var(--btn-color);
  border: 2px solid var(--btn-color);
}

.custom-btn:hover i {
  color: var(--btn-color);
}

.access-btn {
  min-width: 240px;
}

@media screen and (max-width: 1023px) {
  .card {
    flex-direction: column;
    align-items: center;
    max-height: none;
    gap: 0;
  }

  .card img {
    margin-right: 0;
    margin-bottom: 12px;
  }

  .card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .card-container {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .card-ttl {
    font-size: 3.5vw;
  }

  .card-ttl .caption {
    font-size: 2.5vw;
  }

  .custom-btn {
    padding: 5px 15px;
  }
}

/*------------- フッター -------------*/
.footer {
  background-color: var(--footer-color);
  padding: 20px 0;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-content {
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 10px;
}

.social-links a {
  background-color: white;
  color: var(--footer-color);
  font-size: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
}

.social-links a:hover {
  background-color: #e0e0e0;
  transform: scale(1.1);
}

.copyright {
  font-size: 14px;
  color: white;
}

/* TOPへ戻る */
#backToTop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  min-width: 70px;
  min-height: 70px;
  padding: 12px;
  background-color: #fff;
  color: var(--btn-color);
  border: 1.5px solid var(--btn-color);
  border-radius: 15px;
  box-shadow: 6px 6px 0 var(--btn-color);
  cursor: pointer;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, box-shadow 0.3s;
  z-index: 750;
}

#backToTop i {
  font-size: 18px;
  color: var(--btn-color);
}

#backToTop span {
  font-size: 13px;
  color: var(--btn-color);
}

#backToTop:hover {
  box-shadow: none;
}

@media screen and (max-width: 768px) {
  #backToTop {
    bottom: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    min-width: 50px;
    min-height: 50px;
    font-size: 12px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}
