@charset "UTF-8";

html,
body {
  height: 100%
}

body {
  font-family: source-han-sans-japanese, ヒラギノ角ゴ Pro W3, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, Osaka, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  color: #222;
  min-width: 1260px;
  line-height: 1.5
}

.ss-main {
  display: grid;
  grid-template-columns: min(425px, calc((425 / 1920) * 100%)) 1fr;
  height: calc(100% - 80px)
}

.ss-main__sidebar {
  position: relative;
  overflow-x: hidden;
}

@media (max-width: 1900px) {
  .ss-main__sidebar {
    height: 740px;
  }
}

@media (max-width: 1600px) {
  .ss-main__sidebar {
    height: 640px;
  }
}

@media (max-width: 1400px) and (max-height: 800px) {
  .ss-main__sidebar {
    height: 470px;
  }
}

.ss-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #fff 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.ss-main__body {
  display: flex;
  flex-direction: column
}

.ss-content {
  flex: 1;
  background-color: #eeeff1;
  padding: min(90px, calc((90 / 1485) * 100%)) min(68px, calc((68 / 1485) * 100%)) 0;
}

@media (min-width: 1920px) and (min-height: 919px) {
  .ss-content {
    display: flex;
    align-items: center;
  }
}

@media (min-width: 1920px) and (min-height: 2000px) {
  .ss-content {
    align-items: flex-start;
  }
}

@media (max-width: 1400px) and (max-height: 800px) {
  .ss-content {
    flex: 0 1 auto;
  }
}

.ss-header {
  position: relative;
  padding: 8px 24px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.06);
  z-index: 10
}

.ss-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.ss-header__content {
  display: flex;
  align-items: center;
  column-gap: 11px
}

.ss-header__title-main {
  font-size: 24px;
  font-weight: 700;
  color: #4f1880
}

.ss-header__title-sub {
  font-size: 14px;
  font-weight: 700
}

.ss-header__figure {
  display: flex;
  align-items: center;
  column-gap: 8px
}

.ss-header__image {
  width: 86px;
  vertical-align: middle
}

.ss-header__caption {
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px
}

.ss-header__logo-link {
  display: block
}

.ss-header__logo-link:hover {
  opacity: 1
}

.ss-header__logo-image {
  vertical-align: middle
}

.ss-footer {
  background-color: #535353;
  color: #fff
}

.ss-footer__container {
  display: flex;
  justify-content: space-between;
  padding: 14px min(68px, calc((68 / 1920) * 100%)) 10px;
}

.ss-footer__nav {
  display: flex
}

.ss-footer__copyright {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -.12px
}

.ss-footer__nav-item {
  margin-left: 18px
}

.ss-footer__nav-item:first-child {
  margin-left: 0
}

.ss-footer__nav-item .ss-footer__nav-link {
  font-size: 12px;
  color: #fff;
  font-weight: 400
}

.u-color-wine-red {
  color: #7d3236
}

.u-color-coffee-brown {
  color: #805738
}

.u-color-olive-brown {
  color: #898442
}

.u-color-moss-green {
  color: #526f41
}

.u-color-deep-teal {
  color: #225f58
}

.u-color-steel-blue {
  color: #295f85
}

.u-color-royal-purple {
  color: #563550
}

.u-color-raspberry {
  color: #7f334f
}

.ss-sidebar {
  width: 100%;
  background-color: #fff;
  counter-reset: menu-counter;
  overflow-y: scroll;
  height: 100%;
  padding-bottom: 80px;
}

.ss-sidebar__list {
  list-style: none;
  padding: 0
}

.ss-sidebar__item {
  position: relative
}

.ss-sidebar__title {
  display: flex;
  align-items: center;
  padding: 16px 0 8px;
  padding-left: min(24px, calc((24 / 420) * 100%));
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  counter-increment: menu-counter
}

.ss-sidebar__title:before {
  display: inline-block;
  width: 22px;
  height: 22px;
  text-align: center;
  margin-right: 8px;
  content: counter(menu-counter, decimal-leading-zero) " ";
  font-size: 14px;
  font-weight: 400;
  color: #fff
}

.ss-sidebar__title--wine-red:before {
  background-color: #7d3236
}

.ss-sidebar__title--coffee-brown:before {
  background-color: #805738
}

.ss-sidebar__title--olive-brown:before {
  background-color: #898442
}

.ss-sidebar__title--moss-green:before {
  background-color: #526f41
}

.ss-sidebar__title--deep-teal:before {
  background-color: #225f58
}

.ss-sidebar__title--steel-blue:before {
  background-color: #295f85
}

.ss-sidebar__title--royal-purple:before {
  background-color: #563550
}

.ss-sidebar__title--raspberry:before {
  background-color: #7f334f
}

.ss-sidebar__sub-list {
  list-style: none
}

.ss-sidebar__sub-item {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  padding: 7px 0;
  padding-left: min(56px, calc((56 / 420) * 100%));
  padding-right: 32px;
  cursor: pointer;
  transition: background-color .3s
}

.ss-sidebar__sub-item:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-right: 1px solid #222;
  border-top: 1px solid #222;
  top: 50%;
  right: min(24px, calc((20 / 420) * 100%));
  transform: translateY(-50%) rotate(45deg)
}

.ss-sidebar__sub-item:hover {
  background-color: #eeeff1;
  color: #4f1880
}

.ss-description {
  display: none;
  max-width: 1364px;
  margin-inline: auto;
}

@media (min-width: 1920px) {
  .ss-description {
    flex: 1;
  }
}

@media (max-width: 1900px) {
  .ss-description {
    height: 680px;
  }
}

@media (max-width: 1400px) and (max-height: 800px) {
  .ss-description {
    height: 720px;
  }
}

.ss-description--active {
  display: block
}

.ss-description__info {
  flex: 1
}

.ss-description__wrapper {
  display: flex;
  column-gap: 40px;
  margin-bottom: 52px
}

.ss-description__image {
  width: min(662px, calc((662 / 1364) * 100%));
  min-width: 440px
}

@media (min-width: 1920px) {
  .ss-description__image {
    height: 500px;
  }
}

.ss-description__image img {
  width: 100%
}

.ss-description__category {
  display: flex;
  align-items: baseline;
  column-gap: 8px;
  margin-bottom: 12px;
  font-size: clamp(20px, calc((22 / 1364) * 100vw), 24px);
  font-weight: 700
}

@media (max-width: 1600px) {
  .ss-description__category-number {
    font-size: 18px;
  }
}

.ss-description__category.u-color-wine-red .ss-description__category-number {
  background-color: #7d3236
}

.ss-description__category.u-color-coffee-brown .ss-description__category-number {
  background-color: #805738
}

.ss-description__category.u-color-olive-brown .ss-description__category-number {
  background-color: #898442
}

.ss-description__category.u-color-moss-green .ss-description__category-number {
  background-color: #526f41
}

.ss-description__category.u-color-deep-teal .ss-description__category-number {
  background-color: #225f58
}

.ss-description__category.u-color-steel-blue .ss-description__category-number {
  background-color: #295f85
}

.ss-description__category.u-color-royal-purple .ss-description__category-number {
  background-color: #563550
}

.ss-description__category.u-color-raspberry .ss-description__category-number {
  background-color: #7f334f
}

.ss-description__category-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  padding: 4px 6px
}

@media (max-width: 1600px) {
  .ss-description__category-number {
    width: 25px;
    height: 25px;
    font-size: 14px;
  }
}

.ss-description__title {
  margin-bottom: 18px;
  font-size: clamp(34px, calc((36 / 1364) * 100vw), 40px);
  font-weight: 700;
  line-height: 56px
}

@media (max-width: 1600px) {
  .ss-description__title {
    font-size: 24px;
    line-height: 1.5;
  }
}

.ss-description__text {
  margin-bottom: 32px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px
}

@media (max-width: 1600px) {
  .ss-description__text {
    font-size: 16px;
  }
}

.ss-details {
  background-color: #fff;
  padding: min(32px, calc((32 / 662) * 100%));
}

.ss-details__title {
  font-size: 20px;
  font-weight: 700
}

@media (max-width: 1600px) {
  .ss-details__title {
    font-size: 16px;
  }
}

.ss-details__title:after {
  content: "";
  margin: 18px 0;
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #4f1880
}

.ss-details__item {
  display: flex;
  align-items: baseline;
  margin-bottom: 8px;
  column-gap: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px
}

@media (max-width: 1600px) {
  .ss-details__title {
    font-size: 14px;
  }
}

.ss-details__item:last-child {
  margin-bottom: 0
}

.ss-details__item:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 11px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' viewBox='0 0 14 11' fill='none'%3E%3Cpath d='M1 4.26316L4.36 9L13 1' stroke='%234F1880' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain
}

.ss-button {
  display: flex;
  justify-content: center;
  margin-bottom: 50px
}

.ss-button .ss-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px 40px;
  background-color: #4f1880;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 100px;
  transition: background-color .3s ease, box-shadow .3s ease;
  box-shadow: 4px 4px 4px #4b494d33;
  position: relative
}

.ss-button .ss-button__link:hover {
  background-color: #3b0a66;
  opacity: 1
}

.ss-button .ss-button__link:focus {
  outline: 2px solid #7d3eb1
}

.ss-button .ss-button__link:after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
  margin-left: 30px
}