@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap);
:root {
  --zindex-loader: 9999;
}
svg {
  overflow: unset;
}
* {
  font-family: "Noto Sans JP";
}
h1 {
  color: #78ab46;
}
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(158, 158, 158);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

.modal-open {
  overflow: hidden;
}

.hover,
.hover > *,
.hover:not([disabled]) {
  transition: opacity 0.5s ease-in-out;
}
.hover:hover,
.hover:hover > *,
.hover:not([disabled]):hover {
  opacity: 0.7;
}

body {
  color: #222;
}

.nav-item{
  transition: opacity 0.5s ease-in-out;
}

.nav-item:hover {
  opacity: 0.7;
}

.nav-link {
  display: flex;
  align-items: center;
  color: #222 !important;
}
.nav-link__text {
  margin-left: 20px;
}

/* Common class */

.mb-40 {
  margin-bottom: 40px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.page__header {
  border-bottom: 1px solid #e2e2e2;
}

.page__header-text {
  padding-top: 22px;
  padding-bottom: 25px;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.09;
  text-align: center;
  color: #222;
  margin-bottom: 0;
}

.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
}

.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.5) !important;
}
.col-xs-15 {
  width: 20%;
  float: left;
}

@media (min-width: 768px) {
  .col-sm-15 {
    width: 20%;
    float: left;
  }
}
@media (min-width: 992px) {
  .col-md-15 {
    width: 20%;
    float: left;
  }
}
@media (min-width: 1200px) {
  .col-lg-15 {
    width: 20%;
    float: left;
  }
}
.badge {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.label-warning[href],
.badge-warning[href] {
  background-color: #c67605;
}
#lblCartCount {
  display: flex;
  font-size: 10px;
  background: #3c6cc7;
  color: #fff;
  align-items: center;
  justify-content: center;
  padding: 5px;
  height: 19px;
  width: 19px;
  position: absolute;
  top: -4px;
  right: -9px;
}

footer p {
  padding: 15px;
}

.table > tbody > tr > td > span.message-cut {
  float: left;
  white-space: nowrap;
  width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --- NavBar --- */
.header__container {
  position: relative;
  height: 80px;
  background: #ffffff;
  z-index: 1000;
  width: 100%;
}

.header__container-wrapper {
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  border-bottom: 10px solid var(--base-color);
}

.offcanvas__custom {
  top: 80px !important;
  border-top: 1px solid #f4f4f4;
  width: 275px !important;
}

.offcanvas-backdrop {
  top: 80px !important;
}

#nav__menuburger {
  padding: 4px;
  border-radius: 50%;
  background: #f4f4f4;
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  margin-left: 22px;
}

#nav__menuburger:not(.open) .close {
  display: none;
}
#nav__menuburger.open .close {
  display: flex;
}
#nav__menuburger:not(.open) .burger {
  display: flex;
}
#nav__menuburger.open .burger {
  display: none;
}

#nav__menuburger span:nth-child(1) {
  top: 11px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav__menuburger span:nth-child(2) {
  top: 16px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav__menuburger span:nth-child(3) {
  top: 21px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav__menuburger.open span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(-50%, -50%);
  -moz-transform: rotate(45deg) translate(-50%, -50%);
  -o-transform: rotate(45deg) translate(-50%, -50%);
  transform: rotate(45deg) translate(-50%, -50%);
  top: 16px;
  left: 50%;
}

#nav__menuburger.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav__menuburger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(-50%, -50%);
  -moz-transform: rotate(-45deg) translate(-50%, -50%);
  -o-transform: rotate(-45deg) translate(-50%, -50%);
  transform: rotate(-45deg) translate(-50%, -50%);
  top: 16px;
  left: 52%;
}

.navsearch__wrapper {
  position: relative;
}

.navsearch__icon {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}

.navsearch__mobile-wrapper {
  display: none;
}

.navartisticon__search-text {
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  color: #222;
}

.navsearch__input {
  outline: none;
  border-radius: 15px;
  background: #f4f4f4;
  border: none;
  padding: 3px 10px 3px 36px;
  width: 200px;
  transition: width 0.4s ease-in-out;
}

.navsearch__input:focus {
  width: 400px;
}

.offcanvas-body__custom {
  padding: 41px 50px 0 50px !important;
}

.offcanvas-body__custom li.nav-item {
  cursor: pointer;
}

.offvanvas_item span {
  font-size: 16px;
}

.offcanvas__contact {
  margin-top: 40px;
  padding: 10px 22px;
  border: 2px solid #ddd;
  width: fit-content;
  border-radius: 40px;
  cursor: pointer;
  margin-bottom: 20px;
  transition: opacity 0.5s ease-in-out;
}

.offcanvas__contact:hover {
  opacity: 0.7;
}

.navsearch__board {
  position: absolute;
  width: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 28px;
  padding-bottom: 40px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: translateY(-10%);
}

.navsearch__board.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0%);
}

.navsearch__board-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1039;
  width: 100vw;
  height: 100vh;
  background-color: rgb(0, 0, 0, 0.5);
  transition: all 0.7s linear;
}

.navsearch__board:not(.is-visible) .navsearch__board-overlay {
  /* visibility: visible; */
  display: none;
}

.navsearch__board.is-visible .navsearch__board-overlay {
  /* visibility: visible; */
  display: block;
}

.navsearch__board .navsearch__board-header {
  margin-bottom: 34px;
  text-align: center;
}

.navsearch__board .navsearch__board-header span {
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  color: #222;
}

.navsearch__board-content {
  display: flex;
  align-items: end;
  margin: auto;
}

.navsearch__board-content .navsearch__board-content__item {
  display: flex;
}

.navsearch__board-content .navsearch__board-content__box {
  margin-right: 67px;
}

.navsearch__board-content #alphabet-caseboard .navsearch__board-content__text a,
.navsearch__board-content #alphabet-case .navsearch__board-content__text span {
  font-family: Roboto;
  width: 100%;
  padding: 6px 0px;
  border-radius: 50%;
}

.navsearch__board-content
  .navsearch__board-content__box:has(.navsearch__board-content__long-text) {
  margin-right: 0px !important;
}

.navsearch__board-content .navsearch__board-content__box:last-of-type {
  margin-right: 0px;
}

.navsearch__board-content #japan-caseboard,
.navsearch__board-content #japan-case {
  max-width: 195px;
}

.navbar-brand .header__logo {
  width: 100%;
  max-width: 350px;
  aspect-ratio: 35 / 4;
}
.offvanvas_item-icon {
  width: 26px;
  display: flex;
  justify-content: center;
}

.navsearch__board-content
  .navsearch__board-content__item
  .navsearch__board-content__text {
  margin-right: 12px;
  cursor: pointer;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  color: #222;
  text-align: center;
  position: relative;
  z-index: 99;
}
.navsearch__board-content__text:last-child {
  margin-right: 0;
}

.navsearch__board-content
  .navsearch__board-content__item
  .navsearch__board-content__long-text {
  cursor: pointer;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  color: #222;
  text-align: center;
  position: relative;
  z-index: 99;
}

.navsearch__board-content
  #japan-caseboard
  .navsearch__board-content__item
  .navsearch__board-content__text.active-key-search
  > a,
.navsearch__board-content
  #alphabet-caseboard
  .navsearch__board-content__item
  .navsearch__board-content__text.active-key-search
  > a {
  color: #fff;
}

.navsearch__board-content
  .navsearch__board-content__item
  .navsearch__board-content__long-text.active-key-search
  > a {
  color: #fff;
}

.navsearch__board-content
  .navsearch__board-content__item
  .navsearch__board-content__text
  > a {
  text-decoration: none;
  font-size: 18px;
  color: #3e3e3e;
  width: 100%;
  padding: 6px 0px;
}

.navsearch__board-content
  #japan-case
  .navsearch__board-content__item
  .navsearch__board-content__text
  > a,
.navsearch__board-content
  #japan-caseboard
  .navsearch__board-content__item
  .navsearch__board-content__text
  > a {
  font-size: 16px;
}
.navsearch__board-content
  .navsearch__board-content__item
  .navsearch__board-content__long-text
  > a {
  text-decoration: none;
  font-size: 18px;
  color: inherit;

  width: 100%;
  padding: 6px 0px;
  border-radius: 50%;
}

.navsearch__board-content
  .navsearch__board-content__item
  .navsearch__board-content__text.active-key-search,
.navsearch__board-content
  .navsearch__board-content__item
  .navsearch__board-content__long-text.active-key-search-longtext {
  background-color: #3c6cc7;
  color: #fff;
}
.navsearch__board-content
  .navsearch__board-content__item
  .navsearch__board-content__text.active-key-search:hover,
.navsearch__board-content
  .navsearch__board-content__item
  .navsearch__board-content__long-text.active-key-search-longtext:hover {
  background-color: #f4f4f4;
  color: #222;
}

.navsearch__board-content
  .navsearch__board-content__item
  .navsearch__board-content__text:last-child {
  margin-right: 0px;
}

.navsearch__board-bottom {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}
.nav__share {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #222;
  border-top: 1px solid #e2e2e2;
  width: fit-content;
  padding-top: 20px;
  margin-top: 40px;
  width: 100%;
  transition: opacity 0.5s ease-in-out;
}
.nav__share:hover {
  color: #222;
  opacity: 0.7;
}
.nav__share p {
  margin-bottom: 0;
}

.nav__privacy {
  border-top: none;
  margin-top: 0px;
  white-space: nowrap;
}

.navsearch__board-bottom-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  cursor: pointer;
}

.navsearch__board-bottom span {
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  color: #222;
}

.navsearch__board-content__text {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.navsearch__board-content__text:hover {
  background-color: #f4f4f4;
}
/* --- End NavBar --- */

/* --- Content --- */

.content-wrapper {
  margin-top: 80px;
  min-height: calc(100vh - 80px - 250px);
}

/* --- End Content */

/* ---Variation Page--- */

/* --- Footer --- */

/* modal */


.modal-dialog {
  max-width: 550px;
  width: 100%;
}
.modal-header {
  justify-content: center;
  position: relative;
  padding-top: 57px;
  border-bottom: none;
  padding-bottom: 0;
}

.modal-header button {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  padding: 0;
  margin: 0;
  background-color: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-title {
  font-size: 24px;
  line-height: 34px;
  font-weight: bold;
}
.modal-content {
  border-radius: 10px;
  border-color: #707070;
}
.modal-body {
  text-align: center;
  padding-top: 15px;
  font-size: 18px;
  line-height: 25px;
  padding-right: 15px;
  padding-left: 15px;
  min-width: 334px;
}
.modal-footer {
  border-top: none;
  justify-content: center;
  padding-top: 24px;
  padding-bottom: 50px;
}
.btn-dismiss,
.btn-ok {
  width: 192px;
  height: 50px;
  border-radius: 25px;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-weight: 500;
}

.btn-dismiss {
  color: #222;
  border: 2px solid #ddd;
  background-color: #fff;
}
.btn-ok {
  margin-left: 30px;
  background-color: #3c6cc7;
  text-decoration: none;
}
.modal-header button svg {
  display: inline-block;
  width: 18px;
  height: 18px;
}

/* end modal */
#ec__footer {
  background-color: #f4f4f4;
}

.ec__footer-wrapper {
  padding-top: 62px;
}

.ec__footer-wrapper .ec__footer-content {
  margin-bottom: 54px;
}

.ec__footer-copyright {
  color: #969696;
  font-size: 10px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  padding-top: 8.5px;
  padding-bottom: 9px;
}

.ec__footer-wrapper .ec__footer-text {
  margin-bottom: 43px;
  display: flex;
  align-items: center;
}

.ec__footer-wrapper .ec__footer-text a {
  color: #222;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  position: relative;
  margin-right: 50px;
  cursor: default;
  text-decoration: none;
  position: relative;
}

.ec__footer-wrapper .ec__footer-text a:hover {
  text-decoration: underline;
  cursor: pointer;
}

.ec__footer-wrapper .ec__footer-text span.ec__footer-text-active::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 20px;
  background-color: #e2e2e2;
  top: -4px;
  right: -23px;
}

.ec__footer-wrapper .ec__footer-powerdby {
  display: flex;
  align-items: center;
  width: fit-content;
  cursor: pointer;
  text-decoration: none;
}

/* .ec__footer-wrapper .ec__footer-powerdby__text:hover,
.ec__footer-wrapper .ec__footer-powerdby__name:hover {
  opacity: 0.7;
} */

.ec__footer-wrapper .ec__footer-powerdby .ec__footer-powerdby__text {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  color: #3e3e3e;
  line-height: 1.36;
}

.ec__footer-wrapper .ec__footer-powerdby .ec__footer-powerdby__name {
  font-size: 50px;
  font-weight: bold;
  color: #3e3e3e;
  margin-left: 20px;
}

.ec__footer-wrapper .ec__footer-text a:not(:last-child):after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  width: 1px;
  right: -25px;
  background-color: #e2e2e2;
}
.ec__footer-wrapper .ec__footer-logo {
  width: 32px;
  height: 32px;
  margin-right: 20px;
}

.ec__footer-wrapper .ec__footer-logo img {
  width: 32px;
  height: 32px;
  object-fit: cover;
}
.overflow-hidden {
  overflow: hidden;
}

.footer__divide {
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.ec__footer-contact .ec__footer-contact-title {
  font-size: 12px;
  font-weight: bold;
  font-stretch: normal;
  letter-spacing: normal;
  margin-bottom: 10px;
  color: #222;
}

.ec__footer-contact .ec__footer-contact-number {
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 2;
  letter-spacing: normal;
  color: #222;
  white-space: pre-line;
}

.switch-caseboard {
  display: none;
  padding: 10px 66px;
  border-radius: 24px;
  width: fit-content;
  border: solid 2px #ddd;
  font-size: 14px;
  font-weight: 500;
  margin-top: 26px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1;
}
.modal-header button {
  border: none !important;
  cursor: pointer !important;
}
.modal-header button:hover {
  opacity: 0.7;
}

.navsearch__board-content__long-text {
  margin-left: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 48px;
  border-radius: 50%;
}

.navsearch__board-content__long-text:hover {
  background-color: #f4f4f4;
}
.navsearch__board-content__box-mtmobile {
  display: none;
}

.navsearch__board-content__box-pc {
  display: block;
}

.navartist-icon > a {
  text-decoration: none;
}
.navartist-icon:first-child {
  margin-left: 39.6px;
}
.navartist-icon:first-child,
.navartist-icon:nth-child(2) {
  margin-right: 23.5px;
}

.navartist-icon:first-child .navartisticon__search-text {
  line-height: 1.57;
}
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 20px;
  cursor: pointer;
  opacity: 0;
  display: none;
}
.scroll-top:hover {
  opacity: 0.7;
}

.scroll-top_block {
  display: block;
  opacity: 1;
  animation: scroll-top-animation_in  0.5s normal;
}

.dotted-hr {
  border: none;
  border-top: 3px dotted var(--base-color); /* 青色の点線 */
  margin: 10px 0;
  opacity: 50%;
}


@keyframes scroll-top-animation_in {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 0.2;
  }

  80% {
    opacity: 0.8;
  }

  100% {
    opacity: 1;
  }
}

@keyframes scroll-top-animation_out {
  0% {
    opacity: 1;
  }

  20% {
    opacity: 0.8;
  }

  80% {
    opacity: 0.2;
  }

  100% {
    opacity: 0;
  }
}
.collapse {
  cursor: pointer;
}

.collapse-content {
  max-height: 0;
  overflow: hidden;
}
.toggle-icon {
  transition: all 0.2s ease-out;
  display: inline-block !important;
}
.active .toggle-icon {
  transform: rotate(-180deg);
}
#toast {
  position: fixed;
  max-width: 200px;
  z-index: 9999;
  top: 20px;
  right: 20px;
}
.toast-item {
  color: white;
  padding: 10px;
  border-radius: 5px;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
.toast-item:not(:first-child) {
  margin-top: 10px;
}
.success {
  background: var(--bs-success);
}
.warning {
  background-color: var(--bs-warning);
}
.loader {
  width: 50px;
  height: 50px;
  margin: -25px;
  border: 5px solid #f3f3f3;
  border-top-color: #555;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  position: absolute;
  z-index: calc(var(--zindex-loader) + 1);
  animation: spin 2s linear infinite;
}
#japan-caseboard {
  font-size: 16px;
}

.loader-overlay {
  background-color: rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: var(--zindex-loader);
  display: none;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fadein {
  from {
    top: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.break-word {
  word-break: break-word;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}
/* @media (max-width:778px) {
  .nav.navbar-right{
    display: none;
  }
  .search-form__block{
    flex:1;
  }
  #search-form{
    flex:1;
    display: flex;
    justify-content: center;
  }
} */
/* --- End Footer --- */

/* --- Responsive --- */
.navbar-header{
  flex: 1;
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 576px) {
  html,
  body {
    width: 100%;
  }
  .ec__footer-wrapper{
    padding-top: 42px;
    padding-bottom: 0px;
  }
  .navartist-icon:first-child {
    margin-right: 5.5px;
  }
  .row {
    margin-left: -10px !important;
    margin-right: -10px !important;
  }
  .modal-dialog {
    max-width: unset;
    width: unset;
    margin-left: 20px;
    margin-right: 20px;
  }
  .btn-dismiss,
  .btn-ok {
    width: 175px;
    height: 40px;
  }
  .modal-footer {
    padding-top: 15px;
    flex-direction: column-reverse;
    padding-bottom: 40px;
  }
  .btn-dismiss {
    margin-top: 20px;
  }
  .btn-ok {
    margin-left: 0;
  }
  .navsearch__board-content
    .navsearch__board-content__item
    .navsearch__board-content__text {
    margin-right: 16px;
    cursor: pointer;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    color: #222;
    text-align: center;
    position: relative;
    z-index: 99;
  }

  .navsearch__board-content__box-mtmobile {
    display: block;
  }

  .navsearch__board-content__box-pc {
    display: none;
  }

  #alphabet-case .navsearch__board-content__long-text {
    font-size: 16px;
  }
  .switch-case.alphabet {
    margin-top: 81px;
  }
  .navsearch__board-content
    .navsearch__board-content__item
    .textsearch__content:hover:before {
    top: 0;
  }
  .navsearch__board-content #japan-caseboard,
  .navsearch__board-content #japan-case {
    max-width: unset;
  }
  .navartist-icon:first-child {
    margin-left: 5.5px;
  }
  .navartist-icon:nth-child(2) {
    margin-right: 16.4px;
  }
  #nav__menuburger {
    margin-left: 16.9px;
  }
  .navsearch__board-content #japan-caseboard .navsearch__board-content__text {
    line-height: 30px;
  }
  .active-key-search:hover::before {
    background-color: #3c6cc7 !important;
  }
  .active-key-search:hover {
    color: #fff !important;
  }
  .toppage__slider-item--pr5 {
    padding: 0 5px !important;
  }

  .navsearch__board-content
    #alphabet-caseboard
    .navsearch__board-content__text
    a {
    line-height: 2.13;
    font-family: "Roboto";
  }

  /*   
  .ec__footer-wrapper .ec__footer-text a:not(:last-child){
    margin-bottom: 22px;
  } */
  

  .navbar-brand .header__logo {
    width: 100%;
  }

  .content-wrapper {
    margin-top: 138px;
    min-height: calc(100vh - 90px - 595px);
  }

  .ec__footer-wrapper .ec__footer-text a:last-child {
    margin-right: 0;
  }

  .page__header-text {
    padding-top: 17px;
    padding-bottom: 19px;
    font-size: 16px;
    line-height: 1.38;
  }

  .header__container-wrapper {
    padding: 0 15px;
    border-bottom-width: 4px;
  }

  /* .header__logo {
    width: 107px;
  } */

  .navsearch__wrapper {
    display: none;
  }

  .navartisticon__search-wrapper {
    flex-direction: column;
  }

  .navartisticon__search-text {
    font-size: 10px;
  }

  .navsearch__mobile-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 101;
    position: relative;
    padding: 14px 20px;
    width: 100%;
    background: var(--base-color);
  }

  #search-form__mobile {
    width: 100%;
  }

  .navsearch__mobile-fitwidth {
    width: 100%;
    position: relative;
  }

  .navsearch__mobile-icon {
    position: absolute;
    top: 3px;
    left: 15px;
  }

  .navsearch__board {
    padding-top: 22px;
    padding-bottom: 22px;
    border-top: 1px solid #e2e2e2;
  }

  .navsearch__board-content {
    flex-direction: column;
    align-items: start;
  }

  .navsearch__board .navsearch__board-header {
    margin-bottom: 24px;
    margin-top: 9px;
  }

  .navsearch__board-content .navsearch__board-content__box {
    margin-right: 0;
  }

  .navsearch__board-content__box-mtmobile {
    margin-top: 21px;
  }
  .navsearch__board-content__box-mtmobile:last-child {
    margin-top: 15px;
  }
  .navsearch__board-content
    .navsearch__board-content__item
    .navsearch__board-content__text {
    margin-right: 30px;
    margin-bottom: 10px;
  }

  .switch-caseboard {
    display: block;
  }

  .hide-caseboard {
    display: none;
  }

  .navsearch__board-content .navsearch__board-content__item {
    flex-wrap: wrap;
    max-width: 320px;
  }

  .modal-body {
    line-height: 24px;
  }

  .ec__footer-wrapper .ec__footer-powerdby {
    margin: auto;
  }
}



@media screen and (max-width: 752px) {
  .content-wrapper {
    margin-top: 138px;
    min-height: calc(100vh - 90px - 595px);
    transition: margin 0.5s ease-in-out;
  }
}


/* Medium devices (tablets, less than 992px) */
@media (max-width: 992px) {
  .navartisticon__search-wrapper {
    flex-direction: column;
  }

  .navsearch__wrapper {
    margin-right: 0;
  }

  .ec__footer-wrapper .ec__footer-text a {
    margin-right: 20px;
  }

  .ec__footer-wrapper .ec__footer-text a:not(:last-child):after {
    right: -12px;
  }
}


/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767px) {
  /* --- Responsive Footer ---*/

  .ec__footer-wrapper .ec__footer-content {
    flex-direction: row;
  }

  .ec__footer-wrapper .ec__footer-text {
    margin-bottom: 50px;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
  }

  .ec__footer-wrapper .ec__footer-text span {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 30px;
    margin-right: 0;
  }

  .ec__footer-wrapper .ec__footer-text span.ec__footer-text-active::after {
    display: none;
  }

  .ec__footer-wrapper .ec__footer-left {
    margin-bottom: 52.5px;
  }

  .ec__footer-wrapper .ec__footer-powerdby {
    flex-direction: column;
  }

  .ec__footer-wrapper .ec__footer-powerdby .ec__footer-powerdby__name {
    margin-left: 0;
  }
  .hover:hover,
  .hover:hover > * {
    opacity: 1 !important;
  }
  *[style="opacity:0.7"] {
    opacity: 1 !important;
  }

  .ec__footer-wrapper .ec__footer-powerdby .ec__footer-powerdby__text {
    font-size: 14px;
    margin-bottom: 12.5px;
  }
  .ec__footer-text {
    height: 137px;
  }
  .ec__footer-wrapper .ec__footer-text a {
    margin-right: 0;
  }

  .ec__footer-wrapper .ec__footer-text a:not(:last-child):after {
    display: none;
  }
  /* --- End Responsive Footer ---*/
}

/* Responsive Footer SP */
@media (max-width: 576px){
  .ec__footer-wrapper .ec__footer-content {
    flex-direction: column;
    margin-bottom: 49.5px;
  }

  .ec__footer-copyright{
    padding-top: 12.5px;
    padding-bottom: 13px;
  }
}

/* --- End Responsive --- */
.error {
  color: red;
}

.inputErr {
  border: solid 2px red !important;
}

.ec__loading {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: none;
  z-index: 1;
}

.ec__loading.active {
  display: block;
}

@keyframes ec__loading-item {
  0% {
    height: 15px;
    top: 0px;
  }

  50% {
    height: 22px;
    top: -10px;
  }

  100% {
    height: 15px;
    top: 20px;
  }
}

#ec__loading-item {
  position: absolute;
  background-color: #dee2e6;
  height: 15px;
  width: 6px;
  animation-name: ec__loading-item;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

#ec__loading-item.ec__loading-1 {
  left: -10px;
  animation-delay: 0.2s;
}

#ec__loading-item.ec__loading-2 {
  left: 0px;
  animation-delay: 0.4s;
}

#ec__loading-item.ec__loading-3 {
  left: 10px;
  animation-delay: 0.6s;
}
span.ec__pagination-item.dots {
  cursor: default !important;
}

@media (pointer: coarse) {
  .hover:hover,
  .hover:hover > * {
    opacity: 1 !important;
    outline: none;
  }
   input{
    outline: none;
   }
  *:hover[style="opacity:0.7"] {
    opacity: 1 !important;
  }

  .navsearch__board-content
    .navsearch__board-content__item
    .navsearch__board-content__long-text.active-key-search-longtext:hover {
    background-color: #3c6cc7;
    color: #fff;
  }
  .navsearch__board-content
    .navsearch__board-content__item
    .navsearch__board-content__text
    > a {
    color: inherit;
  }
}

/* disable hover css of search artist on mobile */
@media (pointer: coarse) {
  .active-key-search:hover { color: white; }
  .active-key-search:hover > span {
    color: inherit ;
  }
  .navsearch__board-content__text.active-key-search:hover{
    background-color: #3c6cc7 !important;
    color: #fff !important;
  }
  .navsearch__board-content__item .navsearch__board-content__long-text:hover{
    background-color: transparent;
    color:#222;
  }
  .navsearch__board-content__item .navsearch__board-content__text{
    background-color: transparent;
    color: #222;
  }
}


@media screen and (max-device-width: 480px) {
  body {
    -webkit-text-size-adjust: none;
  }
}

@media (max-width: 750px) {
  #search-form {
    display: none;
  }
}

.transition-common{
  transition: all 0.5s linear;
}

/* response input search PC */





@media (max-width: 1140px) {
  .navsearch__input:focus {
    width: 310px;
  }
}

@media (max-width: 1050px){
  .navsearch__input:focus {
    width: 250px;
  }
}

@media (max-width: 986px) {
  .navsearch__input {
    width: 130px;
    margin-left: 8px;
  }

  .navsearch__input:focus {
    width: 200px;
  }
}


.designate-draw__status  {
  padding: 3px 10px;
  font-weight: bold;
  line-height: 1.71;
  color: white;
  background-color: #e63232;
}