@charset "utf-8";
/* CSS Document */
.header-top-g-nav-li:nth-child(2) .drop-down-menu::before {
  content: "";
  transition: all .2s;
  position: absolute;
  left: 30%;
  margin-left: -10px;
  border: 40px solid transparent;
  border-top-width: 40px;
  border-top-style: solid;
  border-top: 12px solid transparent;
  top: 43px;
  z-index: 1000;
  border-top-color: var(--sky-blue);
}
.thumbnail {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  border-spacing: 0;
  border-collapse: separate;
  margin: 1.5em auto;
  padding: 0 0 1.5em 0;
  width: 80%;
  text-align: center;
  background: var(--white);
}
@media screen and (max-width: 1024px) {
  .thumbnail {
    margin: 1em auto;
    padding: 0 0.5em 1em 0.5em;
    width: 95%;
  }
}
.txt-responsive {
  text-align: center;
}
@media screen and (max-width: 798px) {
  .txt-responsive {
    text-align: left;
  }
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
}
.comparison-table thead th {
  padding: 10px 15px;
}
.comparison-table thead th:last-child {}
.comparison-table tbody th {
  padding: 10px 15px;
  vertical-align: middle;
}
.comparison-table tbody tr:last-child th {}
.comparison-table tbody td {
  background: var(--white);
  padding: 10px 15px;
  vertical-align: top;
}
.price-big-weight {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.4;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  padding-right: 0.1em;
}
@media screen and (max-width:1024px) {
  .price-big-weight {
    font-size: 1.6rem;
  }
}
.txt-pink {
  color: var(--txt-pink);
}
@media screen and (max-width:768px) {
  .comparison-table thead {
    display: none;
  }
  .comparison-table tbody th {
    font-size: 1.4rem;
    padding: 10px 15px;
    display: block;
  }
  .comparison-table tbody td {
    display: block;
  }
  .comparison-table tbody td::before {
    content: attr(label);
    float: left;
    clear: both;
    font-weight: bold;
    padding-top: 0.7em;
    width: 43%;
  }
  .comparison-table tbody td p {
    padding-left: 30%;
  }
}
.other-sections-btn {
  text-align: center;
  background: var(--white);
  padding: 10px;
  width: 30%;
  margin: 0 auto;
  border-radius: 30px;
  box-shadow: 4px 4px 4px gray;
}
.other-sections-btn a {
  text-decoration: none;
  color: var(--gray-333);
}
.other-sections-btn:hover {
  transform: translateY(3px);
  border-bottom-width: 2px;
  opacity: 0.8;
}
@media screen and (max-width:768px) {
  .other-sections-btn {
    width: 90%;
  }
}
/* 下矢印 */
.dli-caret-circle-fill-left {
  display: inline-block;
  vertical-align: middle;
  color: var(--sky-blue);
  line-height: 1;
  position: relative;
  width: 1.8em;
  height: 1.8em;
  border: 0.1em solid currentColor;
  background: currentColor;
  border-radius: 50%;
  box-sizing: content-box;
  margin-right: 0.5em;
}
.dli-caret-circle-fill-left::before {
  content: '';
  color: var(--white);
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.5em 0.8em;
  border-right-color: currentColor;
  border-left: 0;
  transform: translateX(-15%);
  transform: rotate(-90deg);
  position: absolute;
  top: 3px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
/*--------------------------------------
スライダー
--------------------------------------*/
/* スラッシュ */
.slash-otoku-kippu {
  font-size: 1.3rem;
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 0 45px;
  margin-bottom: 1em;
  line-height: 1.6;
  margin: 2em 0 0;
  font-weight: 500;
  width: 100%;
}
.slash-otoku-kippu::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 21%;
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: var(--gray-333);
  -webkit-transform: rotate(-120deg);
  transform: rotate(-120deg);
}
.slash-otoku-kippu::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 21%;
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: var(--gray-333);
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
@media screen and (max-width:768px) {
  .slash-otoku-kippu::before {
    left: 10%;
  }
  .slash-otoku-kippu::after {
    right: 10%;
  }
}
@media screen and (max-width:500px) {
  .slash-otoku-kippu {
    font-size: 1rem;
  }
  .slash-otoku-kippu::before {
    left: 8%;
  }
  .slash-otoku-kippu::after {
    right: 8%;
  }
}
.radius-none {
  border-radius: 0 !important;
}
.slider {
  width: 94%;
  margin: 0 auto;
}
.slider img {
  width: 100%;
  height: auto;
}
.slider .slick-slide {
  margin: 0 10px;
  clip-path: inset(0 round 30px 30px 30px 30px);
}
.slick-prev, .slick-next {
  position: absolute;
  top: 42%;
  cursor: pointer;
  outline: none;
  border-top: 2px solid var(--gray-666);
  border-right: 2px solid var(--gray-666);
  height: 15px;
  width: 15px;
}
.slick-prev {
  left: -1.5%;
  transform: rotate(-135deg);
}
.slick-next {
  right: -1.5%;
  transform: rotate(45deg);
}
.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}
.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background: var(--gray-ccc);
}
.slick-dots .slick-active button {
  background: var(--sky-blue);
}
/* 角丸テーブル */
.rounded-corners {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  border-spacing: 0;
  border-collapse: separate;
  margin: 0.5em auto;
  width: 80%;
  text-align: center;
}
.rounded-corners tr:first-child th, .rounded-corners tr:first-child td {
  border-top: none;
}
.rounded-corners tr:last-child th, .rounded-corners tr:last-child td {
  border-bottom: none;
}
.rounded-corners th {
  padding: 20px;
  background-color: var(--gray-eee);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.rounded-corners td {
  padding: 20px;
  background-color: var(--white);
  line-height: 1.4;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  vertical-align: middle;
}
.value-price {
  color: var(--txt-pink);
  font-family: 'M PLUS Rounded 1c', sans-serif;
  text-align: right;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width:768px) {
  .rounded-corners {
    width: 96%;
  }
  .rounded-corners th {
    padding: 10px;
    font-size: 13px;
  }
  .rounded-corners td {
    padding: 10px;
    font-size: 13px;
  }
}
.annotation {
  margin: 0 auto 2em;
  padding: 0.5em 2em;
  width: 80%;
}
@media screen and (max-width:1024px) {
  .annotation {
    width: 95%;
  }
}
#sumaeki-tokuwari {
  margin-top: -10px;
  padding-top: 10px;
}
.normal-txt {
  color: var(--gray-333);
  font-size: 14px;
  font-weight: 100;
}
@media screen and (max-width:768px) {
  .normal-txt {
    font-size: 12px;
  }
}