body {
  line-height: 1.5;
  font-family: var(--font-family), sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  color: var(--text-color);
  background-color: var(--body-color);
}

P {
  color: var(--text-color);
  font-size: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-color-dark);
  font-family: var(--font-family), sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1,
.h1 {
  font-size: 45px;
}

h2,
.h2 {
  font-size: 32px;
}

h3,
.h3 {
  font-size: 26px;
}

h4,
.h4 {
  font-size: 20px;
}

h5,
.h5 {
  font-size: 18px;
}

h6,
.h6 {
  font-size: 14px;
}

/* Button style */
.btn {
  font-size: 14px;
  font-family: var(--font-family), sans-serif;
  text-transform: uppercase;
  padding: 16px 44px;
  border-radius: 0px;
  font-weight: 600;
  border: 0;
  position: relative;
  z-index: 1;
  transition: .2s ease;
}

.btn:focus {
  outline: 0;
  box-shadow: none !important;
}

.btn:active {
  box-shadow: none;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white-color);
}

.btn-primary:active {
  background: var(--primary-color);
}

.btn-primary:hover {
  background: var(--primary-color);
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
  color: var(--white-color);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.inline-button {
  line-height: .8rem !important;
  padding: 5px 8px !important;
  pointer-events: none;
  margin-top: -5px;
}

.overflow-hidden {
  overflow: hidden !important;
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--white-color);
}

::selection {
  background: var(--primary-color);
  color: var(--white-color);
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white-color);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

ul {
  list-style-type: none;
  margin: 0px;
  padding-left: 0;
  font-size: 14px;
}

ol {
  padding-left: 20px;
  font-size: 15px;
}

img {
  vertical-align: middle;
  border: 0;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  color: var(--primary-color);
}

a:hover,
a:focus {
  color: var(--primary-color);
}

a,
button,
select {
  cursor: pointer;
  transition: .2s ease;
}

a:focus,
button:focus,
select:focus {
  outline: 0;
}

.slick-slide {
  outline: 0;
}

.section {
  padding-top: 20px;
  padding-bottom: 40px;
}

@media (max-width: 768px) {
  .section {
    padding-top: 60px;
  }
}

.section-sm {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (max-width: 768px) {
  .section-sm {
    padding-top: 40px;
  }
}

.section-title {
  margin-bottom: 40px;
}

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.border-primary {
  border-color: var(--border-soft) !important;
}

pre {
  padding: 20px;
}

/* overlay */
.overlay {
  position: relative;
}

.overlay::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(68, 110, 114, 0.18), rgba(230, 228, 224, 0.95));
  opacity: 1;
}

.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}

.bg-primary {
  background: var(--primary-color) !important;
}

.bg-white {
  background-color: var(--white-color) !important;
}

.bg-light {
  background-color: var(--light-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-color {
  color: var(--text-color) !important;
}

.text-dark {
  color: var(--text-color-dark) !important;
}

.text-white {
  color: var(--white-color) !important;
}

.top-50 {
  top: 50px;
}

.navbar {
  padding: 0;
}

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

.navbar-brand img {
  max-width: 100px;
  margin-bottom: 0;
}

.navbar .nav-item .nav-link {
  text-transform: uppercase;
  padding: 10px 15px !important;
  font-size: 15px;
}

.navbar .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  padding: 15px 0px;
  border: 0;
  top: 40px;
  left: -35px;
  border-radius: 0;
  display: block;
  visibility: hidden;
  transition: .3s ease;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  background: var(--white-color);
}

@media (max-width: 768px) {
  .navbar .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform-origin: unset;
    transform-origin: unset;
  }
}

.navbar .dropdown-menu.view {
  visibility: visible !important;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transform-origin: top;
  transform-origin: top;
}

@media (max-width: 768px) {
  .navbar .dropdown-menu.view {
    display: block;
  }
}

.navbar .dropdown-menu.show {
  visibility: hidden;
}

@media (max-width: 768px) {
  .navbar .dropdown-menu.show {
    visibility: visible;
    display: block;
  }
}

.navbar .dropdown-item {
  position: relative;
  color: var(--text-color-dark);
  transition: .2s ease;
  font-family: var(--font-family), sans-serif;
}

@media (max-width: 768px) {
  .navbar .dropdown-item {
    text-align: center;
  }
}

.navbar .dropdown-item:hover {
  color: var(--primary-color);
  background: transparent;
}

.lang-list {
  background: var(--primary-color);
  color: var(--white-color);
}

.lang-list.dark {
  color: var(--text-color-dark);
  background: var(--white-color);
}

.banner {
  overflow: hidden;
  background: linear-gradient(135deg, rgba(68, 110, 114, 0.92) 0%, rgba(43, 39, 33, 0.88) 100%);
  color: var(--white-color);
}

.banner p {
  font-size: 20px;
  opacity: .8;
}

/* search */

#project-icon {
  float: left;
  height: 32px;
  width: 32px;
}

#project-description {
  margin: 0;
  padding: 0;
}

.ui-helper-hidden-accessible {
  display: none;
}

.ui-menu {
  background: var(--white-color);
  padding: 5px 20px 20px;
  right: 0 !important;
  max-height: 200px;
  overflow: hidden;
  border-radius: 0 0 2px 2px;
  z-index: 9999;
  box-shadow: 0px 13px 20px 0px rgba(0, 0, 0, .07)
}


@media (max-width: 575px) {
  .ui-menu {
    width: calc(100% - 30px) !important;
  }
}

@media (min-width: 576px) {
  .ui-menu {
    max-width: 510px !important;
  }
}

@media (min-width: 768px) {
  .ui-menu {
    max-width: 690px !important;
  }
}

@media (min-width: 992px) {
  .ui-menu {
    max-width: 610px !important;
  }
}

@media (min-width: 1200px) {
  .ui-menu {
    max-width: 730px !important;
  }
}

.ui-menu-item a {
  color: var(--text-color);
  padding: 8px 0;
  font-size: 15px;
}

.ui-menu-item a:hover {
  color: var(--primary-color);
}

.ui-menu-item:not(:last-child) {
  border-bottom: 1px solid #e8e8e8;
}

.ui-menu-item * {
  display: none;
}

.ui-menu-item .ui-corner-all {
  display: block;
}


/* /navigation */
.form-control {
  height: 30px;
  border-radius: 2px;
  border: 0;
  padding: 0 20px;
}

.form-control:focus {
  border: 0;
  box-shadow: none !important;
}

textarea.form-control {
  height: 150px;
  padding: 20px;
}

.icon {
  font-size: 40px;
}

.shadow {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07) !important;
  transition: .3s ease;
}

.shadow-bottom {
  box-shadow: 0 1px 0 rgba(12, 13, 14, 0.1), 0 1px 6px rgba(59, 64, 69, 0.1);
}

.shadow:hover,
.shadow:focus {
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.1) !important;
}

/* single page */

.content * {
  margin-bottom: 20px;
}

.content img {
  max-width: 100%;
  height: auto;
  margin: 0 auto 15px;
  display: block;
  text-align: center;
}

.content ul {
  padding-left: 0;
  margin-bottom: 20px;
}

.content ul li {
  padding-left: 20px;
  position: relative;
}

.content ul li::before {
  position: absolute;
  content: '';
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: var(--primary-color);
  opacity: .3;
  left: 0;
  top: 8px;
}

.list-styled li {
  padding-left: 20px;
  position: relative;
}

.list-styled li::before {
  position: absolute;
  content: '';
  height: 8px;
  width: 8px;
  border-radius: 2px;
  background: var(--primary-color);
  opacity: .3;
  left: 0;
  top: 17px;
}

a.back-btn + li:before {
  opacity: 0;
}

.post-meta {
  color: var(--text-color);
  font-style: italic;
  font-size: 14px;
}

blockquote {
  font-size: 20px !important;
  color: var(--text-color-dark);
  padding: 20px 40px;
  border-left: 2px solid var(--primary-color);
  margin: 40px 0;
  font-weight: bold;
  background: var(--light-color);
}

blockquote p {
  margin-bottom: 0 !important;
}

.pagination {
  justify-content: space-between;
}

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

.pagination i {
  font-size: 15px;
  line-height: 1.8;
}

#accordion i {
  font-size: 14px;
  line-height: 2;
}

table {
  text-align: left;
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  border: 1px solid #dee2e6;
}

table td,
table th {
  padding: .75rem;
  vertical-align: top;
  border: 1px solid #dee2e6;
  margin-bottom: 0;
}

thead {
  background: #ececec;
  margin-bottom: 0;
}

tbody {
  background: #f8f8f8;
  margin-bottom: 0;
}

.notices {
  margin: 2rem 0;
  position: relative;
}
.notices-without-mark {
  margin: 2rem 1em;
  position: relative;
}

.notices p, .notices-without-mark p {
  padding: 10px;
}

/*
.notices p::before {
  position: absolute;
  top: 2px;
  color: #fff;
  font-family: "themify";
  font-weight: 900;
  content: "\e717";
  left: 10px;
}
*/

.notices.info p::before, .notices.warning p::before, .notices.denger p::before, .notices.note p::before {
  position: absolute;
  top: 2px;
  color: #fff;
  font-family: "themify";
  font-weight: 900;
  content: "\e717";
  left: 10px;
}

.notices-without-mark p::before {
  position: absolute;
  top: 2px;
  color: #fff;
  font-family: "themify";
  content: "\e693";
  left: 10px;
}

.notices.note p {
  border-top: 30px solid #6ab0de;
  background: #e7f2fa;
}

.notices.note p::after {
  content: 'Note';
  position: absolute;
  top: 2px;
  color: #fff;
  left: 2rem;
}

.notices.tip p {
  background: #F0F0F0;
  border-style: solid;
  border-width: 1px;
  border-color: #4F709C;
}

/*
.notices.tip p::after {
  content: 'Tip';
  position: absolute;
  top: 2px;
  color: #fff;
  left: 2rem;
}
*/

.notices.info p {
  border-top: 30px solid #F0B37E;
  background: #FFF2DB;
}

.notices.info p::after {
  content: 'Info';
  position: absolute;
  top: 2px;
  color: #fff;
  left: 2rem;
}

.notices.warning p {
  border-top: 30px solid #E06F6C;
  background: #FAE2E2;
}

.notices.warning p::after {
  content: 'Warning';
  position: absolute;
  top: 2px;
  color: #fff;
  left: 2rem;
}

.notices-without-mark.rel p {
  border-top: 30px solid #6ab0de;
  background: #e7f2fa;
}

.notices-without-mark.rel p::after {
  content: '近い国・地域';
  position: absolute;
  top: 2px;
  color: #fff;
  left: 2rem;
}

.notices-without-mark.rel p a:hover {
  text-decoration: underline !important;
}

.notices-without-mark.rel p a::before {
  font-family: "Font Awesome 5 Free";
  content: "\f2d0";
  margin-right: 0.2em;
}



/* /single page */

/* side list */
.sidebar {
  background-color: var(--white-color);
  position: sticky;
  top: 50px;
  margin-bottom: 30px;
  padding: 20px 10px 10px 10px;
}

.sidelist {
  display: block;
}

li.sidelist>a {
  margin-left: 20px;
  margin-bottom: 10px;
  display: block;
  font-size: 20px;
}

li.sidelist li a {
  margin: 0;
}

.sidelist li.sidelist {
  display: block;
}

.sidelist li.sidelist.active a {
  color: var(--primary-color);
}

.sidelist li.sidelist.active::before {
  opacity: 1;
}

.page-list li a {
  display: none;
}

.page-list li ul a {
  display: block;
}

.sidelist li a {
  color: var(--text-color-dark);
  display: block;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  line-height: 1.4;
}

p:empty,
p a:empty {
  display: none !important;
}

pre {
  display: block;
  padding: 9.5px;
  margin: 10px 0px 10px;
}

code {
  margin-bottom: 0 !important;
  font-size: 100%;
}

.back-btn {
  position: relative;
  list-style: none;
  display: none;
}

.back-btn::before {
  position: absolute;
  font-family: 'themify';
  content: "";
  font-size: 25px;
  height: 30px;
  width: 40px;
  background-color: var(--white-color);
  color: inherit;
  text-align: right;
  z-index: 1;
  left: -5px;
  top: -5px;
}

.ui-autocomplete-input {
  border-bottom: 1px solid rgb(212, 212, 212) !important;
}

.ui-autocomplete-input.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.search-icon {
  position: absolute;
  right: 20px;
  top: 18px;
  font-size: 14px;
}

i {
  transition: .2s ease;
}

a:hover i {
  color: var(--primary-color);
}

/* custom scrollbar */
pre code::-webkit-scrollbar {
  height: 5px;
}

pre code::-webkit-scrollbar-track {
  background: #000000;
}

pre code::-webkit-scrollbar-thumb {
  background: #888;
}

/* content tabs */
.code-tabs {
  border: 1px solid #dee2e6;
  overflow: hidden;
  margin: 20px 0px;
}

.code-tabs .tab-content {
  padding: 20px 15px;
  margin-bottom: 0;
}

.code-tabs .tab-content .tab-pane {
  margin-bottom: 0;
}

.code-tabs .nav-tabs {
  margin-bottom: 0;
}

.code-tabs .nav-tabs .nav-item {
  padding-left: 0;
  border-right: 1px solid #dee2e6;
}

.code-tabs .nav-tabs .nav-item .nav-link {
  text-decoration: none;
  font-weight: 500;
  border: 0;
  margin-bottom: 0;
}

.code-tabs .nav-tabs .nav-item::before {
  display: none;
}

.code-tabs .nav-tabs .nav-item.active {
  background: var(--primary-color);
}

.code-tabs .nav-tabs .nav-item.active .nav-link {
  color: var(--white-color);
}

p.no-display-text {
  display: none;
}

p.hidden-display-text {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

div.msg-to-gpt {
  opacity: 0;
  font-size: 0.01em;
  overflow: hidden;
}

img.no-click {
  pointer-events: none;
}

a:has(> img.no-click) {
  pointer-events: none;
}

.radiobutton {
  display: none;
}
@media (min-width: 800px) {
  label.quizlabel {
    background-color: rgb(0, 0, 0);
    color: #fff;
    padding: 10px 20px;
    width:200px;
    text-align: center;
    border-radius: 2px;
    font-size: 1.1em !important;
  }
  .radiobutton:checked + label {
    background-color: hwb(0 100% 0%);
    color: #000;
    font-weight: bold;
    border: solid;
  }
  
  .transparent-area {
    opacity: 0;
    display: none !important;
  }
  
  .correct-text {
    font-size: 3em;
    font-weight: bold;
  }
}

@media (max-width: 799px) {
  label.quizlabel {
    background-color: rgb(0, 0, 0);
    color: #fff;
    padding: 10px 20px;
    width:100px;
    text-align: center;
    border-radius: 2px;
    font-size: 0.9em !important;
  }
  .radiobutton:checked + label {
    background-color: hwb(0 100% 0%);
    color: #000;
    font-weight: bold;
    border: solid;
  }
  
  .transparent-area {
    opacity: 0;
    display: none !important;
  }
  
  .correct-text {
    font-size: 3em;
    font-weight: bold;
  }
}

div.quizbutton {
  height: 70px;
  max-height: 100px;
  margin-bottom:0;
  padding-bottom: 0;
  z-index:100000;
}

div.div-quizif {
  margin-top: 0;
}

div.correct-text {
  margin-top: 0;
  margin-bottom: 0;
}

li.li-inactive{
  opacity:0.3;
  pointer-events:none;
}

div.container-corp {
  width:90%;
  margin: 0 auto;
}

div.container-corp thead {
  font-size: 0.8em;
}

div.container-corp .col-width-2 { width: 20%; }
div.container-corp .col-width-1 { width: 10%; }
div.container-corp .col-width-7 { width: 60%; }
div.container-corp .col-width-05 { width: 5%; }

div.container-corp tbody.corp-desc {
  font-size: 0.9em;
}

li.dontshowarea {
  display: none !important;
}

.amazon-box {
  border: 2px solid #ddd;
  border-radius: 2px;
  padding: 1rem;
  background-color: #f9f9f9;
  margin: 2rem 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.amazon-box h3 {
  margin-top: 0;
  font-size: 1.2rem;
  color: #333;
}

.amazon-list {
  list-style: none;
  padding-left: 0;
}

.amazon-item {
  margin: 0.5rem 0;
}

.amazon-item a {
  text-decoration: none;
  color: #1a0dab;
  font-weight: bold;
}

.amazon-item .fa-amazon {
  font-size: 1.2em !important;
  margin: 0;
  padding: 0;
}

.amazon-item a:hover {
  text-decoration: underline;
  color: #c45500; /* Amazon オレンジに近い */
}

.amazon-description {
  margin: 0.2rem 0 0rem 0.1rem;
  font-size: 0.9rem;
  color: #555;
}

.amazon-description a {
  color: #0073b1; /* 落ち着いた青。必要に応じて変更 */
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

.amazon-description a:hover {
  color: #c45500; /* Amazonオレンジ系のアクセントカラー */
  text-decoration: none;
}

.amazon-company {
  font-size: 0.85rem;
  margin-top: 0rem;
  padding-top: 0;
  margin-left: 0rem;
  color: #666;
}

.amazon-company a {
  color: #0066cc;
  text-decoration: underline;
}

.amazon-company a:hover {
  color: #c45500;
  text-decoration: none;
}

.amazon-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  align-items: stretch;
  border: 1px solid #e5e7eb;
  border-radius: 2px;
  padding: 14px;
  background: linear-gradient(145deg, #ffffff 0%, #f7f8fa 100%);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  margin: 1.5rem 0;
}

.amazon-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 2px;
  background: #fff;
  border: 1px solid #eceef1;
  min-height: 140px;
}

.amazon-card__image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: contain;
  padding: 8px;
  transition: transform 0.2s ease;
}

.amazon-card__image:hover img {
  transform: scale(1.02);
}

.amazon-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff9900;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 2px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.amazon-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.amazon-card__title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
}

.amazon-card__title a {
  color: #1a1f36;
  text-decoration: none;
}

.amazon-card__title a:hover {
  color: #c45500;
  text-decoration: underline;
}

.amazon-card__tagline {
  margin: 0;
  color: #4b5563;
  font-size: 0.95rem;
}

.amazon-card__meta {
  margin: 0;
  color: #111827;
  font-weight: 600;
  font-size: 0.95rem;
}

.amazon-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  margin-top: auto;
  width: fit-content;
  background: linear-gradient(90deg, #ffb347, #ffcc33);
  color: #111;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  box-shadow: 0 8px 20px rgba(255, 153, 0, 0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.amazon-card__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(255, 153, 0, 0.25);
}

.amazon-card__cta:active {
  transform: translateY(0);
}

@media (max-width: 640px) {
  .amazon-card {
    grid-template-columns: 1fr;
  }

  .amazon-card__image {
    max-width: 240px;
    justify-self: center;
  }
}

.floating-share-group {
  position: fixed;
  right: 24px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1200;
}

.floating-action {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 28px rgba(68, 110, 114, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.85);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
  position: relative;
}

.floating-action i {
  font-size: 1.35rem;
  line-height: 1;
}

.floating-action::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, 6px);
  background: rgba(32, 40, 43, 0.9);
  color: #fff;
  padding: 0.4rem 0.65rem;
  border-radius: 2px;
  font-size: 0.78rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-action::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(32, 40, 43, 0.9);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.floating-action:hover::after,
.floating-action:focus::after,
.floating-action:hover::before,
.floating-action:focus::before {
  opacity: 1;
  transform: translate(-50%, 0);
}

.floating-share-x {
  background: var(--primary-color);
  color: #fff;
}

.floating-share-x:hover,
.floating-share-x:focus {
  background: var(--primary-hover);
  box-shadow: 0 20px 32px rgba(68, 110, 114, 0.26);
  transform: translateY(-3px);
  color: #fff;
}

.floating-copy-url {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-color);
}

.floating-copy-url:hover,
.floating-copy-url:focus {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 20px 32px rgba(68, 110, 114, 0.18);
  transform: translateY(-3px);
}

.floating-copy-url.is-success {
  background: var(--primary-color);
  color: #fff;
}

.floating-copy-url.is-success:hover,
.floating-copy-url.is-success:focus {
  background: var(--primary-hover);
}

@media (max-width: 768px) {
  .floating-share-group {
    right: 18px;
    bottom: 22px;
    gap: 10px;
  }

  .floating-action {
    width: 52px;
    height: 52px;
  }

  .floating-action i {
    font-size: 1.2rem;
  }

  .floating-action::after {
    font-size: 0.72rem;
  }
}
