@keyframes bar-anime {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 50px;
  }
  100% {
    height: 40px;
    top: 50px;
  }
}
@keyframes bar-anime-sp {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 40px;
  }
  100% {
    height: 40px;
    top: 40px;
  }
}
@keyframes change {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------ */
html, body {
  width: 100%;
  height: auto;
}

html {
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #333333;
  font-family: "aktiv-grotesk", serif;
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: center;
  background-color: #FFF;
  min-height: 100vh;
  /* Fallback */
  min-height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  position: fixed;
  left: 0px;
  top: 0px;
}
body.loaded {
  position: static;
  overflow: auto;
  overflow-y: scroll;
}
body.looking {
  overflow: hidden;
}
body.looking .sec {
  pointer-events: none;
}

a {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

a:hover, a:active, a.active {
  color: #CCCCCC;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

i {
  font-style: normal;
}

form, section, p, div, ul, li, dl, dt, dd, a, span, input, textarea {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
}

br.brsp {
  display: none;
}

/* ---------------------------------------------------------page--------------------------------------------------------- */
#loader {
  width: 100%;
  height: 100vh;
  background-color: #FFF;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0px;
  bottom: 0px;
  z-index: 9999;
  transition: opacity 1s ease-in-out 0.5s;
}
#loader .logo {
  width: 240px;
  height: 88px;
  background-image: url(../images/logo_2e.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}
#loader .bar {
  width: 100%;
  height: 10px;
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 5;
}
#loader .bar span {
  width: 0%;
  height: 100%;
  background-color: #000;
  display: block;
}
#loader.active h3 {
  opacity: 1;
}
#loader.complete {
  opacity: 0;
}

header {
  position: fixed;
  top: 20px;
  right: calc(20px - 0.2rem);
  z-index: 999;
}
header .inner ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
header .inner ul li:not(:last-child) {
  margin-bottom: 10px;
}
header .inner ul li.line span {
  width: 1.6rem;
  height: 1px;
  background-color: #000;
  display: block;
  position: relative;
  transform: translateX(2px);
}
header .inner ul li a {
  color: #000;
  font-family: "aktiv-grotesk", serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  white-space: nowrap;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  transition: all 0.25s ease-in 0s;
}
header .inner ul li a:hover {
  color: #666666;
}

.photo .cb {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.photo .cb::before {
  content: "";
  width: 28px;
  height: 28px;
  background-image: url(../images/icon_cross.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  margin-bottom: 10px;
}
.photo .cb span {
  color: #FFF;
  font-family: "aktiv-grotesk", serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  white-space: nowrap;
  display: inline-block;
}

main {
  width: 100%;
  padding: 0px;
  margin: 0px;
  position: relative;
  box-sizing: border-box;
}
main #visual {
  width: calc(100% - 50px);
  height: 100vh;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
}
main #visual:not(:last-child) {
  margin-bottom: 100px;
}
main #visual.on .title {
  opacity: 1;
}
main #visual.on .photo > div:nth-child(1), main #visual.on .photo > div:nth-child(2), main #visual.on .photo > div:nth-child(3), main #visual.on .photo > div:nth-child(4) {
  clip-path: inset(0 0 0 0);
}
main #visual .title {
  width: 240px;
  position: absolute;
  bottom: 100px;
  left: 30px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease-out 1.5s;
}
main #visual .title.on {
  position: fixed;
  top: 30px;
  bottom: auto;
}
main #visual .title h2 {
  background-image: url(../images/title.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  width: 150px;
  height: 70px;
  margin-bottom: 30px;
}
main #visual .title h3 {
  background-image: url(../images/title2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  width: 237px;
  height: 58px;
  margin-bottom: 50px;
}
main #visual .title dl {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
main #visual .title dl dt {
  background-color: #000;
  padding: 2px 2px 0 2px;
  margin-bottom: 10px;
}
main #visual .title dl dt span {
  color: #FFF;
  font-family: "aktiv-grotesk", serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
}
main #visual .title dl dd:nth-child(2) {
  color: #000;
  font-family: "aktiv-grotesk", serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.3rem;
  letter-spacing: 0em;
}
main #visual .title dl dd:nth-child(3) {
  color: #000;
  font-family: "aktiv-grotesk", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 2.6rem;
  letter-spacing: 0em;
}
main #visual .photo {
  width: calc(100% - 300px);
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}
main #visual .photo > div {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 50%;
}
main #visual .photo > div:nth-child(1) {
  background-image: url(../images/visual1.jpg);
  width: 43.28%;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
}
main #visual .photo > div:nth-child(2) {
  background-image: url(../images/visual2.jpg);
  width: 56.72%;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.25s;
}
main #visual .photo > div:nth-child(3) {
  background-image: url(../images/visual3.jpg);
  width: 56.72%;
  clip-path: inset(0 0 0 100%);
  transition: clip-path 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s;
}
main #visual .photo > div:nth-child(4) {
  background-image: url(../images/visual4.jpg);
  width: 43.28%;
  clip-path: inset(0 0 0 100%);
  transition: clip-path 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.75s;
}
main #visual .photo > div img {
  display: none;
}
main #lead {
  width: 750px;
  padding: 0 0 0 150px;
  margin: 0 auto;
  transition: opacity 0.5s ease-in;
}
main #lead:not(:last-child) {
  margin-bottom: 100px;
}
main #lead.on > p {
  opacity: 1;
}
main #lead.on .profile {
  opacity: 1;
}
main #lead.on .pp {
  opacity: 1;
}
main #lead > p {
  color: #000;
  font-family: "source-han-sans-japanese", sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0em;
  text-align: left;
  opacity: 0;
  transition: opacity 0.5s ease-in 0s;
}
main #lead > p:not(:last-child) {
  margin-bottom: 90px;
}
main #lead .profile {
  text-align: left;
  width: 100%;
  padding: 40px;
  border: solid 1px #CCCCCC;
  opacity: 0;
  transition: opacity 0.5s ease-in 0.75s;
}
main #lead .profile:not(:last-child) {
  margin-bottom: 100px;
}
main #lead .profile .inprof {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
main #lead .profile .inprof > div {
  width: 250px;
}
main #lead .profile .inprof > div:nth-child(2) dl {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
main #lead .profile .inprof > div:nth-child(2) dl:not(:last-child) {
  margin-bottom: 30px;
}
main #lead .profile .inprof > div:nth-child(2) dl dt {
  background-color: #000;
  padding: 2px 2px 0 2px;
  margin-bottom: 10px;
}
main #lead .profile .inprof > div:nth-child(2) dl dt span {
  color: #FFF;
  font-family: "aktiv-grotesk", serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
}
main #lead .profile .inprof > div:nth-child(2) dl dd:nth-child(2) {
  color: #000;
  font-family: "aktiv-grotesk", serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.7rem;
  letter-spacing: 0em;
}
main #lead .profile .inprof > div:nth-child(2) dl dd:nth-child(3) {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
main #lead .profile .inprof > div:nth-child(2) dl dd:nth-child(3) span:nth-child(1) {
  color: #000;
  font-family: "source-han-sans-japanese", sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 2.5rem;
  letter-spacing: 0em;
}
main #lead .profile .inprof > div:nth-child(2) dl dd:nth-child(3) span:nth-child(2) {
  color: #000;
  font-family: "aktiv-grotesk", serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.3rem;
  letter-spacing: 0em;
}
main #lead .profile .inprof > div:nth-child(2) p {
  color: #000;
  font-family: "source-han-sans-japanese", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0em;
}
main #lead .pp {
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in 1.5s;
}
main #contents {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
main #contents .sec {
  text-align: left;
  width: 800px;
  box-sizing: border-box;
  position: relative;
  transform: translateX(75px);
}
main #contents .sec:not(:last-child) {
  margin-bottom: 100px;
}
main #contents .sec .shead {
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in 0.1s;
}
main #contents .sec .shead:not(:last-child) {
  margin-bottom: 70px;
}
main #contents .sec .shead.combo {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
main #contents .sec .shead.combo .photo {
  width: calc(100% - 200px);
  position: relative;
}
main #contents .sec .shead.combo .photo:not(:last-child) {
  margin-bottom: 70px;
}
main #contents .sec .shead.combo .photo h3 {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 1;
}
main #contents .sec .shead.on {
  opacity: 1;
}
main #contents .sec .shead h3 {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
main #contents .sec .shead h3:not(:last-child) {
  margin-bottom: 30px;
}
main #contents .sec .shead h3 span:nth-child(1) {
  color: #000;
  font-family: "aktiv-grotesk", serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
}
main #contents .sec .shead h3 span:nth-child(2) {
  color: #000;
  font-family: "source-han-sans-japanese", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  margin-left: 10px;
}
main #contents .sec .shead p {
  color: #000;
  font-family: "source-han-sans-japanese", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0em;
}
main #contents .sec .shead p:not(:last-child) {
  margin-bottom: 10px;
}
main #contents .sec .shead p.notice {
  color: #000;
  font-family: "source-han-sans-japanese", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0em;
}
main #contents .sec .text {
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in 0.1s;
}
main #contents .sec .text.on {
  opacity: 1;
}
main #contents .sec .text.narrow {
  width: 600px;
  margin-right: auto;
  margin-left: auto;
}
main #contents .sec .text:not(:last-child) {
  margin-bottom: 70px;
}
main #contents .sec .text h4 {
  color: #000;
  font-family: "aktiv-grotesk", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
}
main #contents .sec .text h4:not(:last-child) {
  margin-bottom: 20px;
}
main #contents .sec .text p {
  color: #000;
  font-family: "source-han-sans-japanese", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0em;
}
main #contents .sec .psingle {
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in 0.1s;
}
main #contents .sec .psingle.on {
  opacity: 1;
}
main #contents .sec .psingle.narrow {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
main #contents .sec .psingle.narrow > div {
  width: 600px;
}
main #contents .sec .psingle:not(:last-child) {
  margin-bottom: 70px;
}
main #contents .sec .psingle > div {
  width: 100%;
}
main #contents .sec .psingle > div:not(:last-child) {
  margin-bottom: 20px;
}
main #contents .sec .pset {
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in 0.1s;
}
main #contents .sec .pset.on {
  opacity: 1;
}
main #contents .sec .pset:not(:last-child) {
  margin-bottom: 70px;
}
main #contents .sec .pset.vertical {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
main #contents .sec .pset.vertical.on .inner > div:nth-child(2) {
  opacity: 1;
}
main #contents .sec .pset.vertical .inner {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
main #contents .sec .pset.vertical .inner > div:not(:last-child) {
  margin-bottom: 70px;
}
main #contents .sec .pset.vertical .inner > div:nth-child(2) {
  opacity: 0;
  transition: opacity 0.5s ease-in 0.75s;
}
main #contents .sec .pset.separate.on .inner > div:nth-child(2) {
  opacity: 1;
}
main #contents .sec .pset.separate .inner {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
main #contents .sec .pset.separate .inner > div:not(:last-child) {
  margin-bottom: 70px;
}
main #contents .sec .pset.separate .inner > div:nth-child(1) {
  margin-right: auto;
}
main #contents .sec .pset.separate .inner > div:nth-child(1).move {
  margin-left: 100px;
}
main #contents .sec .pset.separate .inner > div:nth-child(2) {
  margin: 0 100px 0 auto;
  opacity: 0;
  transition: opacity 0.5s ease-in 0.75s;
}
main #contents .sec .pset .inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}
main #contents .sec .pset .inner:not(:last-child) {
  margin-bottom: 20px;
}
main #contents .sec .pset .inner > div {
  width: 50%;
  position: relative;
}
main #contents .sec .slider {
  width: 100%;
  padding: 0px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-in 0.1s;
}
main #contents .sec .slider.on {
  opacity: 1;
}
main #contents .sec .slider .swiper {
  width: 100%;
}
main #contents .sec .slider .swiper .swiper-wrapper .swiper-slide {
  transition: all 0.25s ease-in 0s;
  opacity: 0.3;
}
main #contents .sec .slider .swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
  opacity: 1;
}
main #contents .sec .slider .swiper .swiper-wrapper .swiper-slide > div {
  width: 100%;
  margin-bottom: 20px;
}
main #contents .sec .slider .swiper .swiper-wrapper .swiper-slide p {
  color: #333333;
  font-family: "source-han-sans-japanese", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0em;
  text-align: left;
  width: 100%;
}
main #contents .sec .slider .arrow {
  width: 13px;
  height: 23px;
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 289px;
  z-index: 5;
}
main #contents .sec .slider .arrow.prev {
  left: calc(50% - 310px);
}
main #contents .sec .slider .arrow.next {
  right: calc(50% - 310px);
  transform: rotate(180deg);
}
main #contents .sec .p-credit {
  width: 100%;
}
main #contents .sec .p-credit.narrow {
  width: 50%;
}
main #contents .sec .p-credit ul {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
main #contents .sec .p-credit ul li:not(:last-child) {
  margin-bottom: 5px;
}
main #contents .sec .p-credit ul li a {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  border-bottom: solid 1px #333333;
  transition: all 0.25s ease-in 0s;
}
main #contents .sec .p-credit ul li a:hover {
  opacity: 0.7;
}
main #contents .sec .p-credit ul li a span {
  color: #333333;
  font-family: "aktiv-grotesk", serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
}
main #contents .sec .p-credit ul li a strong {
  color: #000;
  font-family: "aktiv-grotesk", serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0em;
  margin-left: 15px;
}
main #contents .sec .p-credit ul li span {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
main #contents .sec .p-credit ul li span span {
  color: #333333;
  font-family: "aktiv-grotesk", serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
}
main #contents .sec .p-credit ul li span strong {
  display: none;
}
main #contents .sec .credits {
  width: 100%;
}
main #contents .sec .credits:not(:last-child) {
  margin-bottom: 20px;
}
main #contents .sec .credits > div {
  width: 100%;
}
main #contents .sec .credits > div:not(:last-child) {
  padding-bottom: 10px;
  margin-bottom: 10px;
  background-image: url(../images/dotline.png);
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 3px 1px;
}
main #contents .sec .credits .item-d-none dl dd.items__buy {
  display: none;
}
main #contents .sec .credits .item-d-none dl dd.linelink {
  width: auto;
  display: inline-block;
}
main #contents .sec .credits .item-d-none dl dd.linelink a {
  color: #000;
  font-family: "source-han-sans-japanese", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  text-decoration: underline;
}
main #contents .sec .credits .item-d-none dl dd.linelink a:hover {
  opacity: 0.7;
}
main #contents .sec .credits dl {
  width: 100%;
  text-align: left;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
main #contents .sec .credits dl dt {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
main #contents .sec .credits dl dt strong {
  color: #000;
  font-family: "aktiv-grotesk", serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
main #contents .sec .credits dl dt strong:nth-child(1) {
  margin-bottom: 5px;
}
main #contents .sec .credits dl dt strong:nth-child(2) {
  font-weight: 400;
  display: inline-block;
}
main #contents .sec .credits dl dt strong span {
  font-weight: 400;
  display: inline-block;
  padding: 0 0 0 10px;
}
main #contents .sec .credits dl dt span.inf {
  color: #000;
  font-family: "source-han-sans-japanese", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  margin: 0 0 0 5px;
  display: inline-block;
}
main #contents .sec .credits dl dd {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
main #contents .sec .credits dl dd span {
  color: #000;
  font-family: "aktiv-grotesk", serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  display: inline-block;
}
main #contents .sec .credits dl dd.items__buy {
  width: 45px;
  margin: 0px;
}
main #contents .sec .credits dl dd.items__buy a {
  width: 100%;
  height: 20px;
  border: solid 1px #000;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.15s ease-in;
}
main #contents .sec .credits dl dd.items__buy a:hover {
  background-color: #000;
}
main #contents .sec .credits dl dd.items__buy a:hover span {
  color: #FFF;
}
main #contents .sec .credits dl dd.items__buy a span {
  color: #000;
  font-family: "source-han-sans-japanese", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  position: relative;
  transition: all 0.15s ease-in;
}
main #contents .sec .credits dl dd.linelink {
  display: none;
}
main #contents .sec#sec8 {
  background-color: #F5F5F5;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
main #contents .sec#sec8 .insec {
  width: 560px;
  padding: 90px 0;
}
main #contents .sec#sec8 .insec .shead h4 {
  color: #000;
  font-family: "aktiv-grotesk", serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 40px;
}
main #contents .sec#sec8 .insec .look {
  width: 100%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-in 0.1s;
}
main #contents .sec#sec8 .insec .look.on {
  opacity: 1;
}
main #contents .sec#sec8 .insec .look:not(:last-child) {
  margin-bottom: 80px;
}
main #contents .sec#sec8 .insec .look .photoset {
  margin-bottom: 4px;
}
main #contents .sec#sec8 .insec .look .thumbset {
  margin-bottom: 30px;
}
main #contents .sec#sec8 .insec .look .thumbset .swiper-wrapper .swiper-slide {
  position: relative;
}
main #contents .sec#sec8 .insec .look .thumbset .swiper-wrapper .swiper-slide::before {
  content: "";
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: solid 1px #000;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 5;
  opacity: 0;
  transition: all 0.25s ease-in 0s;
}
main #contents .sec#sec8 .insec .look .thumbset .swiper-wrapper .swiper-slide.swiper-slide-thumb-active::before {
  opacity: 1;
}
main #contents .sec#sec8 .insec .youtube {
  width: 100%;
  line-height: 0;
}

footer {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
footer .pgtop a {
  color: #333333;
  font-family: "aktiv-grotesk", serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0em;
  text-decoration: underline;
  display: inline-block;
  transition: all 0.25s ease-in 0s;
}
footer .pgtop a:hover {
  color: #666666;
}
footer .inner {
  width: 800px;
  background-color: #F5F5F5;
  padding: 50px 120px;
  border-top: solid 2px #000;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  transform: translateX(75px);
}
footer .inner ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 60px;
}
footer .inner ul li:not(:last-child) {
  margin: 0 0 10px 0;
}
footer .inner ul li a {
  color: #000;
  font-family: "aktiv-grotesk", serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  transition: all 0.25s ease-in 0s;
}
footer .inner ul li span {
  color: #000;
  font-family: "aktiv-grotesk", serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
}
footer .inner ul li:hover a {
  color: #666666;
}
footer .inner p {
  color: #333333;
  font-family: "aktiv-grotesk", serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
}
footer .pgtop {
  position: absolute;
  right: 120px;
  bottom: 50px;
}
footer .pgtop a {
  color: #000;
  font-family: "aktiv-grotesk", serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
}

/* ----------------------------------------------- Media Queries Smartphone ----------------------------------------------- */
@media screen and (max-width: 768px) {
  br.brsp {
    display: block;
  }

  html {
    font-size: 2.6666666667vw;
    height: -webkit-fill-available;
  }

  body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
  }

  #loader {
    width: 100%;
    height: 100vh;
  }
  #loader .logo {
    width: 120px;
    height: 44px;
  }
  #loader .bar {
    height: 5px;
  }

  header {
    position: absolute;
    top: 10px;
    right: calc(10px - 0.2rem);
  }
  header .inner ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  header .inner ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  header .inner ul li.line span {
    width: 1.4rem;
    height: 1px;
    background-color: #FFF;
    transform: translateX(2px);
  }
  header .inner ul li a {
    color: #FFF;
    font-family: "aktiv-grotesk", serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
  }
  header .inner ul li a:hover {
    color: #FFF;
  }

  .photo .cb {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 10;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .photo .cb::before {
    content: "";
    width: 28px;
    height: 28px;
    background-image: url(../images/icon_cross.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-align: left;
    text-indent: 999%;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    margin-bottom: 10px;
  }
  .photo .cb span {
    color: #FFF;
    font-family: "aktiv-grotesk", serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    white-space: nowrap;
    display: inline-block;
  }

  main {
    width: 100%;
    padding: 0px;
    margin: 0px;
    position: relative;
    box-sizing: border-box;
  }
  main #visual {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
  }
  main #visual:not(:last-child) {
    margin-bottom: 40px;
  }
  main #visual.on .title {
    opacity: 1;
  }
  main #visual.on .photo > div:nth-child(1), main #visual.on .photo > div:nth-child(2), main #visual.on .photo > div:nth-child(3), main #visual.on .photo > div:nth-child(4) {
    clip-path: inset(0 0 0 0);
  }
  main #visual .title {
    width: calc(100% - 40px);
    position: relative;
    bottom: auto;
    left: auto;
    order: 2;
  }
  main #visual .title.on {
    position: relative;
    top: auto;
    bottom: auto;
  }
  main #visual .title h2 {
    width: 180px;
    height: 84px;
    margin-bottom: 20px;
    position: relative;
    transform: translateX(4px);
  }
  main #visual .title h3 {
    width: 259px;
    height: 62px;
    margin-bottom: 0px;
  }
  main #visual .title dl {
    display: none;
  }
  main #visual .photo {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    order: 1;
  }
  main #visual .photo > div {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: auto;
  }
  main #visual .photo > div img {
    display: block;
  }
  main #lead {
    width: calc(100% - 40px);
    padding: 0;
    margin: 0 auto;
  }
  main #lead:not(:last-child) {
    margin-bottom: 90px;
  }
  main #lead > p {
    color: #000;
    font-family: "source-han-sans-japanese", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 3.4rem;
    letter-spacing: 0em;
    text-align: left;
  }
  main #lead > p:not(:last-child) {
    margin-bottom: 60px;
  }
  main #lead > p br {
    display: none;
  }
  main #lead > p br.brsp {
    display: block;
  }
  main #lead .profile {
    text-align: left;
    width: 100%;
    padding: 38px;
    border: solid 1px #CCCCCC;
  }
  main #lead .profile:not(:last-child) {
    margin-bottom: 80px;
  }
  main #lead .profile .inprof {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main #lead .profile .inprof > div {
    width: 100%;
  }
  main #lead .profile .inprof > div:nth-child(1) {
    margin-bottom: 20px;
  }
  main #lead .pp {
    width: 100%;
  }
  main #contents .sec {
    width: calc(100% - 40px);
    transform: translateX(0px);
  }
  main #contents .sec:not(:last-child) {
    margin-bottom: 90px;
  }
  main #contents .sec .shead {
    width: 100%;
  }
  main #contents .sec .shead:not(:last-child) {
    margin-bottom: 40px;
  }
  main #contents .sec .shead.combo {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main #contents .sec .shead.combo .photo {
    width: 100%;
    position: relative;
  }
  main #contents .sec .shead.combo .photo:not(:last-child) {
    margin-bottom: 40px;
  }
  main #contents .sec .shead.combo .photo h3 {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
  }
  main #contents .sec .shead h3 {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main #contents .sec .shead h3:not(:last-child) {
    margin-bottom: 20px;
  }
  main #contents .sec .shead h3 span:nth-child(1) {
    color: #000;
    font-family: "aktiv-grotesk", serif;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    flex-shrink: 0;
  }
  main #contents .sec .shead h3 span:nth-child(2) {
    color: #000;
    font-family: "source-han-sans-japanese", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.8rem;
    letter-spacing: 0em;
    margin-left: 10px;
    position: relative;
  }
  main #contents .sec .shead h3 span:nth-child(2).adjust {
    margin-top: -0.7rem;
  }
  main #contents .sec .shead p {
    color: #000;
    font-family: "source-han-sans-japanese", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0em;
  }
  main #contents .sec .shead p br {
    display: none;
  }
  main #contents .sec .text {
    width: 100%;
  }
  main #contents .sec .text.narrow {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  main #contents .sec .text:not(:last-child) {
    margin-bottom: 40px;
  }
  main #contents .sec .text h4 {
    color: #000;
    font-family: "aktiv-grotesk", serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
  }
  main #contents .sec .text h4:not(:last-child) {
    margin-bottom: 10px;
  }
  main #contents .sec .text p {
    color: #000;
    font-family: "source-han-sans-japanese", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0em;
  }
  main #contents .sec .psingle {
    width: 100%;
  }
  main #contents .sec .psingle.narrow {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main #contents .sec .psingle.narrow > div {
    width: 100%;
  }
  main #contents .sec .psingle:not(:last-child) {
    margin-bottom: 40px;
  }
  main #contents .sec .psingle > div {
    width: 100%;
  }
  main #contents .sec .psingle > div:not(:last-child) {
    margin-bottom: 20px;
  }
  main #contents .sec .pset {
    width: 100%;
  }
  main #contents .sec .pset:not(:last-child) {
    margin-bottom: 40px;
  }
  main #contents .sec .pset.vertical {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main #contents .sec .pset.vertical .inner {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main #contents .sec .pset.vertical .inner > div {
    width: calc(100% - 50px);
  }
  main #contents .sec .pset.vertical .inner > div:not(:last-child) {
    margin-bottom: 40px;
  }
  main #contents .sec .pset.separate .inner {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main #contents .sec .pset.separate .inner > div {
    width: calc(100% - 40px);
  }
  main #contents .sec .pset.separate .inner > div:not(:last-child) {
    margin-bottom: 40px;
  }
  main #contents .sec .pset.separate .inner > div:nth-child(1) {
    margin-right: auto;
  }
  main #contents .sec .pset.separate .inner > div:nth-child(1).move {
    margin-left: 0;
  }
  main #contents .sec .pset.separate .inner > div:nth-child(2) {
    margin: 0 0 0 auto;
  }
  main #contents .sec .pset.spv .inner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main #contents .sec .pset.spv .inner > div {
    width: 100%;
  }
  main #contents .sec .pset .inner {
    width: 100%;
  }
  main #contents .sec .pset .inner:not(:last-child) {
    margin-bottom: 20px;
  }
  main #contents .sec .slider {
    width: 100%;
    padding: 0px;
    position: relative;
    overflow: hidden;
  }
  main #contents .sec .slider .swiper {
    width: 100%;
  }
  main #contents .sec .slider .swiper .swiper-wrapper .swiper-slide {
    transition: all 0.25s ease-in 0s;
    opacity: 0.3;
  }
  main #contents .sec .slider .swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
    opacity: 1;
  }
  main #contents .sec .slider .swiper .swiper-wrapper .swiper-slide > div {
    width: 100%;
    margin-bottom: 20px;
  }
  main #contents .sec .slider .swiper .swiper-wrapper .swiper-slide p {
    color: #333333;
    font-family: "source-han-sans-japanese", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0em;
    text-align: left;
    width: 100%;
  }
  main #contents .sec .slider .swiper .swiper-wrapper .swiper-slide p br {
    display: none;
  }
  main #contents .sec .slider .swiper .swiper-wrapper .swiper-slide p br.brsp {
    display: block;
  }
  main #contents .sec .slider .arrow {
    width: 10px;
    height: 18px;
    background-image: url(../images/arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: calc((100vw - 40px) * 1.5 / 2 - 9px);
    z-index: 5;
  }
  main #contents .sec .slider .arrow.prev {
    left: 15px;
  }
  main #contents .sec .slider .arrow.next {
    right: 15px;
  }
  main #contents .sec .p-credit {
    width: 100%;
  }
  main #contents .sec .p-credit.narrow {
    width: calc(100% - 50px);
  }
  main #contents .sec .p-credit ul {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main #contents .sec .p-credit ul li:not(:last-child) {
    margin-bottom: 5px;
  }
  main #contents .sec .p-credit ul li a {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    border-bottom: solid 1px #333333;
    transition: all 0.25s ease-in 0s;
  }
  main #contents .sec .p-credit ul li a:hover {
    opacity: 0.7;
  }
  main #contents .sec .p-credit ul li a span {
    color: #333333;
    font-family: "aktiv-grotesk", serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  main #contents .sec .p-credit ul li a strong {
    color: #000;
    font-family: "aktiv-grotesk", serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0em;
    margin-left: 15px;
  }
  main #contents .sec .p-credit ul li span {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main #contents .sec .p-credit ul li span span {
    color: #333333;
    font-family: "aktiv-grotesk", serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  main #contents .sec .credits {
    width: 100%;
  }
  main #contents .sec .credits:not(:last-child) {
    margin-bottom: 20px;
  }
  main #contents .sec .credits > div {
    width: 100%;
  }
  main #contents .sec .credits > div:not(:last-child) {
    padding-bottom: 10px;
    margin-bottom: 10px;
    background-image: url(../images/dotline.png);
    background-repeat: repeat-x;
    background-position: left bottom;
    background-size: 3px 1px;
  }
  main #contents .sec .credits .item-d-none dl dd.items__buy {
    display: none;
  }
  main #contents .sec .credits .item-d-none dl dd.linelink {
    width: auto;
    display: inline-block;
  }
  main #contents .sec .credits .item-d-none dl dd.linelink a {
    color: #000;
    font-family: "source-han-sans-japanese", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    text-decoration: underline;
  }
  main #contents .sec .credits .item-d-none dl dd.linelink a:hover {
    opacity: 0.7;
  }
  main #contents .sec .credits dl {
    width: 100%;
    text-align: left;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  main #contents .sec .credits dl dt {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main #contents .sec .credits dl dt strong {
    color: #000;
    font-family: "aktiv-grotesk", serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main #contents .sec .credits dl dt strong:nth-child(1) {
    margin-bottom: 5px;
  }
  main #contents .sec .credits dl dt strong:nth-child(2) {
    font-weight: 400;
    display: inline-block;
  }
  main #contents .sec .credits dl dt strong span {
    font-weight: 400;
    display: inline-block;
    padding: 0 0 0 10px;
  }
  main #contents .sec .credits dl dt span.inf {
    color: #000;
    font-family: "source-han-sans-japanese", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    margin: 0 0 0 5px;
    display: inline-block;
  }
  main #contents .sec .credits dl dd {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main #contents .sec .credits dl dd span {
    color: #000;
    font-family: "aktiv-grotesk", serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    display: inline-block;
  }
  main #contents .sec .credits dl dd.items__buy {
    width: 45px;
    margin: 0px;
  }
  main #contents .sec .credits dl dd.items__buy a {
    width: 100%;
    height: 20px;
    border: solid 1px #000;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: all 0.15s ease-in;
  }
  main #contents .sec .credits dl dd.items__buy a:hover {
    background-color: #000;
  }
  main #contents .sec .credits dl dd.items__buy a:hover span {
    color: #FFF;
  }
  main #contents .sec .credits dl dd.items__buy a span {
    color: #000;
    font-family: "source-han-sans-japanese", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    position: relative;
    transition: all 0.15s ease-in;
  }
  main #contents .sec .credits dl dd.linelink {
    display: none;
  }
  main #contents .sec#sec5 {
    width: 100%;
  }
  main #contents .sec#sec5 .shead.combo p {
    padding: 0 20px;
  }
  main #contents .sec#sec5 .pset {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  main #contents .sec#sec7 {
    width: 100%;
  }
  main #contents .sec#sec7 .shead {
    width: calc(100% - 40px);
    margin: 0 auto 40px auto;
  }
  main #contents .sec#sec8 {
    width: 100%;
  }
  main #contents .sec#sec8 .insec {
    width: calc(100% - 40px);
    padding: 90px 0;
  }
  main #contents .sec#sec8 .insec .shead h4 {
    color: #000;
    font-family: "aktiv-grotesk", serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    text-align: center;
    margin-bottom: 20px;
  }
  main #contents .sec#sec8 .insec .look:not(:last-child) {
    margin-bottom: 40px;
  }
  main #contents .sec#sec8 .insec .look .photoset {
    margin-bottom: 4px;
  }
  main #contents .sec#sec8 .insec .look .thumbset {
    margin-bottom: 20px;
  }
  main #contents .sec#sec8 .insec .look .thumbset .swiper-wrapper .swiper-slide {
    position: relative;
  }
  main #contents .sec#sec8 .insec .youtube {
    width: 100%;
    line-height: 0;
  }
  main #contents .sec#sec8 .insec .youtube iframe {
    width: 100%;
    height: calc((100vw - 40px) * 0.5625);
  }

  footer {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  footer .pgtop a {
    color: #333333;
    font-family: "aktiv-grotesk", serif;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0em;
    text-decoration: underline;
    display: inline-block;
    transition: all 0.25s ease-in 0s;
  }
  footer .pgtop a:hover {
    color: #666666;
  }
  footer .inner {
    width: 100%;
    padding: 40px 20px;
    transform: translateX(0px);
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  footer .inner ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 0px;
  }
  footer .inner ul li:not(:last-child) {
    margin: 0 0 10px 0;
  }
  footer .inner ul li a {
    color: #000;
    font-family: "aktiv-grotesk", serif;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
    transition: all 0.25s ease-in 0s;
  }
  footer .inner ul li span {
    color: #000;
    font-family: "aktiv-grotesk", serif;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
  }
  footer .inner ul li:hover a {
    color: #666666;
  }
  footer .inner p {
    color: #333333;
    font-family: "aktiv-grotesk", serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    width: 100%;
    padding: 40px 0 0 0;
  }
  footer .pgtop {
    position: relative;
    right: auto;
    bottom: auto;
  }
  footer .pgtop a {
    color: #000;
    font-family: "aktiv-grotesk", serif;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
  }
}

/*# sourceMappingURL=style.css.map */
