/*
xs  <576px default
sm  ≥576px @media (min-width: 576px) {} ... ほぼ使わない
md  ≥768px @media (min-width: 768px) {}
lg  ≥992px @media (min-width: 992px) {} ... ほぼ使わない
xl  ≥1200px @media (min-width: 1200px) {}
xxl ≥1400px @media (min-width: 1400px) {} ... ほぼ使わない
*/


* {
  font-family: sans-serif;
}
.lisket-nav-container,
main,
footer {
  transform: rotate(0.03deg);
}
a {
  word-break: break-all;
}
img {
  max-width: 100%;
}
a img {
  transition: ease-in 0.1s;
}
a img:hover {
  -webkit-filter: contrast(140%);
  filter: contrast(140%);
}

.table th {
  background-color: #eee;
}
.table th,
.table td {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .table th,
  .table td {
    display: table-cell;
    width: auto;
  }
}

.lisket-section-title {
  margin-top: 3rem;
  margin-bottom: 3rem;
  text-align: center;
}
.lisket-section-title-main {
  color: #2e97c4;
  font-weight: bold;
}
.lisket-section-title-sub {
  display: flex;
  justify-content: center;
  margin-bottom: 0.2em;
}
.lisket-section-title-sub::before {
  content: url("/img/common/section-subtitle-before.svg");
}
.lisket-section-title-sub::after {
  content: url("/img/common/section-subtitle-after.svg");
}
.lisket-section-white {
  position: relative;
}
.lisket-section-white::before {
  content: "";
  display: block;
  position: absolute;
  top: -2rem;
  width: 100%;
  height: 2rem;
  background-repeat: repeat-x;
  background-size: auto 2rem;
  z-index: 1;
}
.lisket-section-white::before {
  background-image: url("/img/common/section-white-ornament.svg");
}

.lisket-section-cta,
.lisket-section-pageheader {
  background-color: rgb(243, 244, 246);
  background-repeat: no-repeat;
}
.lisket-section-pagetitle {
  display: inline-block;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 0.1rem;
  font-weight: bold;
}

.lisket-korisubox {
  position: relative;
  margin-top: 2em;
  margin-bottom: 2em;
  max-width: 450px;
}
.lisket-korisubox::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/img/common/korisubox-background.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
.lisket-korisubox-korisu {
  display: flex;
  justify-content: center;
  align-items: center;
}
.lisket-korisubox-korisu span {
  padding: 0.8em;
  color: #fff;
  background-color: #43b2e2;
  border-color: #2e97c4;
  border-radius: 1em;
}
.lisket-korisubox-korisu img {
  margin-left: 1em;
}
.lisket-korisubox-title {
  margin: 0.4em auto;
  font-size: 1.8em;
  font-weight: bold;
  text-align: center;
}
.lisket-korisubox-text br {
  display: none;
}
@media (min-width: 768px) {
  .lisket-korisubox-korisu span {
    font-size: 1.4em;
    padding: 0.6em 0.8em;
  }
  .lisket-korisubox-title {
    font-size: 2.2em;
  }
  .lisket-korisubox-text {
    text-align: center;
  }
  .lisket-korisubox-text br {
    display: inline;
  }
}

/* メニュー */
.lisket-nav-container {
  padding: 0.5rem 1.5rem;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.lisket-nav-container h1 {
  margin: 0;
  line-height: 1;
  font-size: 1rem;
}
.lisket-nav-subtitle {
  margin-bottom: 0;
  line-height: 1.25;
}
@media (max-width: 1199px) {
  .lisket-nav-container {
    padding: auto;
    background-color: transparent;
    box-shadow: none;
  }
  .lisket-nav-logo-pc,
  .lisket-nav-subtitle {
    display: none;
  }
  .navbar-collapse {
    margin-top: 1em;
    background-color: #fff;
    border-radius: 0.4em;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
  .navbar-collapse .navbar-nav {
    margin: 1em;
  }
  .nav-link {
    position: relative;
    display: flex;
    align-items: center;
  }
  .nav-link::before {
    content: "";
    display: inline-block;
    margin-right: 0.6em;
    width: 0.6em;
    height: 0.6em;
    border: 0;
    border-top: solid 0.2em #2e97c4;
    border-right: solid 0.2em #2e97c4;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

.lisket-fixed-buttons {
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 0;
  margin: auto;
  padding: 0 10px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.lisket-fixed-buttons a {
  padding: 5px 0 15px;
}
footer {
  margin-bottom: 150px;
}
@media (min-width: 992px) {
  .lisket-fixed-buttons {
    display: flex;
    justify-content:flex-end;
    background-color: transparent;
  }
}
@media (min-width: 1600px) {
  .lisket-fixed-buttons {
    display: flex;
    flex-direction: column;
    bottom: 30px;
    right: 30px;
    width: auto;
    background-color: transparent;
  }
  .lisket-fixed-buttons a {
    padding: 0;
  }
}

.lisket-page-logo-mobile {
  position: relative;
  z-index: 1040;
}
/* bootstrap5 to 4 */
@media (min-width: 1400px) {
  .lisket-nav-container.container-md {
    max-width: 1140px;
  }
}
