/* single 基本共通&縦 */
/* ============================================ */
html,
body {
  position: relative;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
}
body {
  background: linear-gradient(
    180deg,
    rgba(250, 251, 255, 1) 0%,
    rgba(222, 226, 235, 1) 100%
  );
}

body::after {
  content: "";
  width: 100%;
  height: 50px;
  background-color: #a2aab0;
  border-radius: 50px 50px 0 0;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 10;
}

.single__header {
  background-color: #fff;
  height: 200px;
  text-align: center;
  border-radius: 0 0 0 50px;
  position: relative;
}

.single__header::after {
  content: "";
  width: 50px;
  height: 50px;
  background: url(../img/common/img-curve.svg) no-repeat 50% 50% / contain;
  position: absolute;
  right: 0;
  bottom: -50px;
}

.single__wrap {
  max-width: 881px;
  width: 88%;
  margin: 0 auto;
}

.single__header {
  margin-bottom: 50px;
  padding: 30px 0;
  height: 200px;
}

.single__header img {
  width: 72px;
  height: 65px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.single__header h1 {
  text-align: center;
  font-size: 25px;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.single__header span {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #5f5e5e;
}

.single__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.single__nav dt {
  color: #1a1311;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-right: 30px;
}

.single__nav dd ul {
  display: flex;
}

.single__nav dd ul li {
  background-color: #fff;
  height: 37px;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #5f5e5e;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 27px;
  border-radius: 50px;
  box-shadow: 0px 0px 20px 0px rgba(95, 94, 94, 0.15);
  margin-right: 10px;
  cursor: pointer;
}

.single__nav dd ul li:last-child {
  margin-right: 0;
}

.single__nav dd ul li.is-active {
  color: #1a1311;
  box-shadow: none;
}

.single__nav dd ul li:first-child.is-active {
  background-color: #f4efe3;
}

.single__nav dd ul li:nth-child(2).is-active {
  background-color: #f5d9a4;
}

.single__nav dd ul li:nth-child(3).is-active {
  background-color: #d6a767;
}

.single__images {
  padding-bottom: 60px;
}

.single__swiper {
  position: relative;
  overflow: hidden;
}

.single__swiper img {
  border-radius: 50px;
}

.single__swiper figure {
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  opacity: 0;
}

.single__swiper figure::after {
  content: "";
  height: 80px;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(62, 62, 59, 0) 0%,
    rgba(62, 62, 59, 0.2) 100%
  );
  position: absolute;
  left: 0;
  bottom: 0;
}

.single__swiper figcaption {
  position: absolute;
  left: 40px;
  bottom: 19px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  z-index: 10;
}

.single__swiper figcaption em {
  font-size: 20px;
  letter-spacing: 0.1em;
}

.single__pagebtn a {
  background: url("../img/common/arrow-w-left.svg") no-repeat 10% 50% / 10px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.05em;
  bottom: 0px;
  top: auto;
  left: 100px;
  position: fixed;
  z-index: 11;
  padding: 16px 0 16px 40px;
  display: block;
}

.single__pagebtn-next a {
  background: url("../img/common/arrow-w-right.svg?0210") no-repeat 90% 50% /
    10px;
  right: 100px;
  left: auto;
  padding: 16px 40px 16px 0px;
}

.single__centerbtn {
  position: fixed;
  bottom: 14px;
  z-index: 11;
  text-align: center;
  width: 21px;
  left: 0;
  right: 0;
  margin: auto;
}

/* 横 */
/* ============================================ */
@media (orientation: landscape) {
  .single__header {
    margin-bottom: 38px;
    padding: 30px 0;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .single__swiper {
    margin-bottom: 60px;
  }

  .single__header h1 {
    font-size: 18px;
  }

  .single__header img {
    margin-bottom: 0px;
    margin-right: 20px;
  }
}

/* 縦 かつ スマホ */
/* ============================================ */
@media screen and (max-width: 599px) and (orientation: portrait) {
  .single__header {
    margin-bottom: 5.5vh;
    padding: 20px 0;
    height: 144px;
  }

  .single__header img {
    width: 50px;
    height: 45px;
  }

  .single__header h1 {
    font-size: 16px;
  }

  .single__header span {
    font-size: 12px;
  }

  .single__nav {
    display: block;
    margin-bottom: 2vh;
  }

  .single__nav dt {
    font-size: 12px;
    margin-right: 0px;
    text-align: center;
    margin-bottom: 10px;
  }

  .single__nav dd ul {
    justify-content: center;
  }

  .single__nav dd ul a {
    height: 40px;
    padding: 0 20px;
    margin: 0 5px;
  }

  .single__nav dd ul li {
    height: 40px;
    font-size: 14px;
    padding: 0 20px;
    margin-right: 10px;
  }

  .single__swiper {
    position: relative;
    overflow: hidden;
  }

  .single__swiper img {
    border-radius: 20px;
  }

  .single__swiper figure {
    border-radius: 20px;
  }

  .single__swiper figcaption {
    left: 20px;
    bottom: 10px;
    font-size: 12px;
  }

  .single__swiper figcaption em {
    font-size: 16px;
  }

  .single__pagebtn a {
    left: 40px;
  }

  .single__pagebtn-next a {
    right: 40px;
    left: auto;
  }
}

@media screen and (max-width: 375px) and (orientation: portrait) {
  .single__header {
    margin-bottom: 6vh;
  }
  .single__header h1 {
    font-size: 13px;
  }
}

@media screen and (max-width: 375px) and (max-height: 667px) and (orientation: portrait) {
  .single__header {
    margin-bottom: 3vh;
    height: 112px;
    padding: 10px 0;
  }

  .single__header img {
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 375px) and (orientation: portrait) {
  .single__nav dd ul li {
    height: 35px;
    font-size: 12px;
    padding: 0 18px;
    margin-right: 8px;
  }
}

/* 横 かつ スマホ */
/* ============================================ */
@media screen and (max-width: 1023px) and (orientation: landscape) {
  .single__header {
    margin-bottom: 20px;
    padding: 20px 0;
    height: 100px;
  }
  .single__swiper {
    margin-bottom: 80px;
  }
  .single__swiper figcaption {
    font-size: 10px;
    left: 20px;
    bottom: 10px;
  }

  .single__swiper figcaption em {
    font-size: 15px;
  }
  .single__swiper figure {
    border-radius: 20px;
  }
  .single__swiper img {
    border-radius: 20px;
  }
}

/*タブ実装*/

.single__images__panel {
  display: none;
  margin-bottom: 0px;
}

.single__images__panel.is-active {
  display: block;
}

.single__swiper {
  padding-bottom: 32px;
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  opacity: 1;
  background-color: #a2aab0;
  width: 10px;
  height: 10px;
  margin: 0 7px !important;
}

.swiper-pagination-bullet-active {
  background-color: #5f5e5e;
}
