a:hover {
    color:#d2b356;
}

/* #NEW mark */

.new-mark {
    position: relative;
}
.new-mark:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 50px 0 0;
    border-color: #CE0A0A transparent transparent transparent;
}
.new-mark:after {
    position: absolute;
    content: "NEW";
    transform: rotate(315deg);
    display: block;
    font-size: 12px;
    white-space: pre;
    color: #fff;
    top: 12px;
    left: 4px;
    text-align: center;
    z-index: 100;
    line-height: 1.2;
}

/* #人気 mark */

.hot-mark {
    position: relative;
}
.hot-mark:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 50px 0 0;
    border-color: #2B9417 transparent transparent transparent;
}
.hot-mark:after {
    position: absolute;
    content: "人気";
    transform: rotate(315deg);
    display: block;
    font-size: 12px;
    white-space: pre;
    color: #fff;
    top: 12px;
    left: 4px;
    text-align: center;
    z-index: 100;
    line-height: 1.2;
}

/* #markerUnder */

.markerUnder {
  border-bottom: double 3px #D2B356;
}

.markerUnder2 {
  background: linear-gradient(transparent 70%, #D2B356 0%);
  display: inline;
  padding: 0 0px 0px;
}


/* #region Timeline */

.shk-timeline {
  position: relative;
  overflow: hidden;
}

.shk-timeline .shk-timeline-item {
  position: relative;
  width: 100%;
  margin: 3rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.shk-timeline .shk-timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: calc( 50% - 2px );
  width: 4px;
  height: calc( 100% + 3rem );
  background-color: var(--gray-10-color);
}

.shk-timeline.style-2 .shk-timeline-item::before {
  left: calc( 50% - 1px );
  width: 2px;
}

.shk-timeline .shk-timeline-item:first-child {
  margin-top: 0;
}

.shk-timeline .shk-timeline-item:last-child {
  margin-bottom: 0;
}

.shk-timeline .shk-timeline-item:last-child::before {
  content: none;
}

@media (max-width: 767px) {
  .shk-timeline .shk-timeline-item {
    flex-direction: column;
  }

  .shk-timeline .shk-timeline-item::before {
    top: 15px;
  }

  .shk-timeline.style-2 .shk-timeline-item::before {
    content: none;
  }
}

.shk-timeline .shk-timeline-item .shk-timeline-content {
  position: relative;
  width: calc( 50% - 2px - 3rem);
  margin-right: 3rem;
  margin-left: 0;
}

.shk-timeline.style-2 .shk-timeline-item .shk-timeline-content {
  width: calc( 50% - 1px - 3rem);
}

.shk-timeline .shk-timeline-item:nth-child(even) .shk-timeline-content:first-child {
  order: 2;
  margin-right: 0;
  margin-left: 3rem;
}

@media (max-width: 767px) {
  .shk-timeline .shk-timeline-item .shk-timeline-content,
  .shk-timeline.style-2 .shk-timeline-item .shk-timeline-content {
    width: 100%;
    margin-right: 0;
  }

  .shk-timeline .shk-timeline-item:nth-child(even) .shk-timeline-content:first-child {
    margin-left: 0;
  }
}

.shk-timeline .shk-timeline-item .shk-timeline-content.shk-timeline-date {
  height: 40px;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.shk-timeline .shk-timeline-item:nth-child(odd) .shk-timeline-content.shk-timeline-date {
  margin-left: 3rem;
  margin-right: 0;
}

.shk-timeline .shk-timeline-item:nth-child(even) .shk-timeline-content.shk-timeline-date {
  margin-right: 3rem;
  margin-left: 0;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .shk-timeline .shk-timeline-item .shk-timeline-content.shk-timeline-date,
  .shk-timeline .shk-timeline-item:nth-child(even) .shk-timeline-content.shk-timeline-date {
    position: relative;
    z-index: 2;
    order: -1;
    justify-content: center;
  }

  .shk-timeline .shk-timeline-item:nth-child(odd) .shk-timeline-content.shk-timeline-date {
    z-index: 2;
    order: -1;
    margin-left: 0;
    margin-right: 0;
  }
}

.shk-timeline .shk-timeline-item .shk-timeline-content .card {
  border-radius: 1rem;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.05);
  background: var(--white-color);
}

.shk-timeline.style-2 .shk-timeline-item .shk-timeline-content .card {
  border-radius: 0.25rem;
  border: 2px solid;
  border-color: var(--gray-10-color);
  box-shadow: none;
  background: none;
}

.shk-timeline .shk-timeline-item .shk-timeline-content .icon,
.shk-timeline .shk-timeline-item .shk-timeline-content svg {
  position: absolute;
  z-index: 1;
  right: initial;
  left: calc( -22px - 3rem );
  width: 40px;
  height: 40px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--primary-color);
  font-size: 1rem;
  color: var(--white-color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.shk-timeline.style-2 .shk-timeline-item .shk-timeline-content .icon,
.shk-timeline.style-2 .shk-timeline-item .shk-timeline-content svg {
  border-radius: 0.25rem;
  background-color: var(--white-color);
  color: var(--black-color);
}

.shk-timeline .shk-timeline-item:nth-child(even) .shk-timeline-content .icon,
.shk-timeline .shk-timeline-item:nth-child(even) .shk-timeline-content svg {
  right: calc( -22px - 3rem );
  left: initial;
}

@media (max-width: 767px) {
  .shk-timeline .shk-timeline-item .shk-timeline-content .icon, .shk-timeline .shk-timeline-item .shk-timeline-content svg {
    position: absolute;
    top: 20px;
    right: 10px !important;
    left: initial !important;
  }
}

.shk-timeline .shk-timeline-item .shk-timeline-content .date {
  margin-top: 0;
  margin-bottom: 0;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background-color: var(--gray-10-color);
  font-size: 85%;
  font-weight: 600;
  color: var(--gray-color);
}

.shk-timeline.style-2 .shk-timeline-item .shk-timeline-content .date {
  padding: 0;
  border-radius: 0;
  background: none;
  font-style: italic;
}

.shk-timeline .shk-timeline-item .shk-timeline-content .title {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 110%;
  font-weight: 700;
  color: var(--black-color);
}

}

/* #endregion Timeline */

/* naname */


h4.naname {
  position: relative;
  display: inline-block;
  padding: 0 45px;
  line-height: 50px;
}

h4.naname:before, h4.naname:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 2px;
  background-color: #d2b356;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

h4.naname:before {
  left:0;
}
h4.naname:after {
  right: 0;
}