@charset "UTF-8";
@import url("https://use.typekit.net/row8uel.css");
@import url("https://fonts.googleapis.com/css2?family=Marcellus&display=swap");
@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;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------ */
html, body {
  width: 100%;
  height: auto;
}

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

body {
  font-family: "adobe-jenson-pro-display", serif;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #333;
  text-align: center;
  -webkit-text-size-adjust: 100%;
  background-color: #FFF;
  height: 100%;
  position: fixed;
  left: 0px;
  top: 0px;
}
body.loaded {
  position: static;
  overflow: scroll;
}
body.looking {
  overflow: hidden;
}

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

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

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: calc(var(--vh) * 100);
  min-height: 100%;
  background-color: #A6A6A6;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 99999;
  transition: opacity 0.5s ease-in-out 0.25s;
}
#loader .logo {
  width: 206px;
  height: 26px;
  background-image: url(../images/logo.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 13px);
  left: calc(50% - 103px);
}
#loader .bar {
  width: 100%;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 5;
}
#loader .bar span {
  width: 0%;
  height: 100%;
  background-color: #FFF;
  opacity: 1;
  display: block;
}

.loaded main {
  opacity: 1;
}

header {
  width: 100%;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 10;
}
header .inner {
  width: 100%;
  height: 30px;
  padding: 0px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
header .inner ul {
  width: calc(100% - 20px);
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
}
header .inner ul li:not(:first-child) {
  margin-left: 10px;
}
header .inner ul li a {
  color: #FFF;
  font-family: "adobe-jenson-pro-display", serif;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0em;
  width: 100%;
  transition: all 0.25s ease-in 0s;
}
header .inner ul li a:hover {
  color: #333;
}
header .inner ul li span {
  width: 1px;
  height: 90%;
  background-color: #FFF;
  display: block;
}

main {
  width: 100%;
  margin: 0;
  position: relative;
  box-sizing: border-box;
}
main .wrapper {
  width: 100%;
  min-height: calc(100vh + 30px);
  padding: 0px;
  margin-bottom: 0px;
  background-color: #A6A6A6;
  position: sticky;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
main .wrapper .visual {
  width: 100%;
  padding: 0px;
  margin: 0 auto;
  position: relative;
  flex-shrink: 0;
}
main .wrapper .visual h2 {
  width: 360px;
  height: 140px;
  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;
  position: absolute;
  top: calc(50% - 70px);
  left: calc(50% - 180px);
  z-index: 5;
  opacity: 0;
  transition: opacity 0.5s ease-in 1s;
}
main .wrapper .visual .v-slider {
  width: 100%;
  overflow: hidden;
  /*
  .swiper-wrapper{
  	transition-timing-function: linear;
  }*/
}
main .wrapper .visual .v-slider .myslide {
  width: 16vw;
}
main .wrapper .visual .v-slider.slider1 .myslide img {
  opacity: 0;
  transition: opacity 0.5s ease-in 0s;
}
main .wrapper .visual .v-slider.slider2 .myslide img {
  opacity: 0;
  transition: opacity 0.5s ease-in 0.5s;
}
main .wrapper .visual.on h2 {
  opacity: 1;
}
main .wrapper .visual.on .v-slider.slider1 .myslide img, main .wrapper .visual.on .v-slider.slider2 .myslide img {
  opacity: 1;
}
main .wrapper .lead {
  width: 100%;
  padding: 100px 0 150px 0;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .wrapper .lead.on .inner {
  opacity: 1;
}
main .wrapper .lead .inner {
  opacity: 0;
  transition: opacity 0.5s ease-in 0s;
}
main .wrapper .lead .inner p {
  color: #FFF;
  font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.8rem;
  letter-spacing: 0em;
}
main .wrapper .lead .inner p:not(:last-child) {
  margin-bottom: 30px;
}
main .sec {
  width: 100%;
  background-color: #FFF;
  padding: 100px 0 0 0;
  margin: 0 auto;
  box-sizing: border-box;
}
main .sec:not(:last-child) {
  margin-bottom: 200px;
}
main .sec .credits {
  width: 100%;
}
main .sec .credits div {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
main .sec .credits div dl {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
main .sec .credits div dl dt {
  color: #333;
  font-family: "Marcellus", serif;
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  margin-bottom: 10px;
}
main .sec .credits div dl dd {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
main .sec .credits div dl dd span {
  display: inline-block;
}
main .sec .credits div dl dd span:nth-child(1) {
  color: #333;
  font-family: "adobe-jenson-pro-display", serif;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
}
main .sec .credits div dl dd span:nth-child(2) {
  color: #333;
  font-family: "adobe-jenson-pro-display", serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.8rem;
  letter-spacing: 0em;
  margin-left: 5px;
}
main .sec .credits div dl + p {
  color: #333;
  font-family: "adobe-jenson-pro-display", serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.8rem;
  letter-spacing: 0em;
  margin-bottom: 40px;
}
main .sec .credits div .btn {
  width: 80px;
}
main .sec .credits div .btn a {
  color: #FFF;
  font-family: "adobe-jenson-pro-display", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  width: 100%;
  height: 30px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #000;
  transition: all 0.25s ease-in 0s;
}
main .sec .credits div .btn a:hover {
  background-color: #A6A6A6;
}
main .sec .insec {
  width: 100%;
  margin: 0 auto;
}
main .sec .insec .title.t1 h3 {
  background-image: url(../images/title_style1.png);
  width: 231px;
}
main .sec .insec .title.t2 h3 {
  background-image: url(../images/title_style2.png);
  width: 244px;
}
main .sec .insec .title.t3 h3 {
  background-image: url(../images/title_style3.png);
  width: 244px;
}
main .sec .insec .title.t4 h3 {
  background-image: url(../images/title_style4.png);
  width: 248px;
}
main .sec .insec .title.t5 h3 {
  background-image: url(../images/title_style5.png);
  width: 242px;
}
main .sec .insec .title.t6 h3 {
  background-image: url(../images/title_style6.png);
  width: 246px;
}
main .sec .insec .title.t7 h3 {
  background-image: url(../images/title_style7.png);
  width: 248px;
}
main .sec .insec .title h3 {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  height: 60px;
  margin: 0 auto;
}
main .sec .insec .title h3:not(:last-child) {
  margin-bottom: 80px;
}
main .sec .insec .title dl dt {
  color: #333;
  font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  margin-bottom: 10px;
}
main .sec .insec .title dl dd {
  color: #333;
  font-family: "adobe-jenson-pro-display", serif;
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
}
main .sec .insec .style {
  width: 982px;
  padding: 60px 0 0 0;
  margin: 0 auto;
}
main .sec .insec .style .style-visual {
  width: 100%;
  padding: 120px 0;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}
main .sec .insec .style .style-visual .bg {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0px;
  left: 0px;
}
main .sec .insec .style .style-visual .slider {
  width: calc(100% - 380px);
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
main .sec .insec .style .style-visual .slider .arrow {
  width: 26px;
  height: 50px;
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 25px);
  z-index: 5;
}
main .sec .insec .style .style-visual .slider .arrow.prev {
  left: 10px;
}
main .sec .insec .style .style-visual .slider .arrow.next {
  right: 10px;
  transform: rotate(180deg);
}
main .sec .insec .style .credits {
  width: 100%;
}
main .sec .insec .style .credits:not(:last-child) {
  margin-bottom: 60px;
}
main .sec .insec .style .credits > div:not(:last-child) {
  margin-bottom: 70px;
}
main .sec .insec .style .comment p {
  color: #333;
  font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.8rem;
  letter-spacing: 0em;
}
main .sec .insec .style2 {
  width: 100%;
  padding: 150px 0 0 0;
}
main .sec .insec .style2 .inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}
main .sec .insec .style2 .inner .photo {
  width: calc(100% - 766px);
  max-width: 600px;
  padding-bottom: 80px;
  position: sticky;
  top: 20px;
}
main .sec .insec .style2 .inner .photo:not(:nth-child(2n+1)) {
  margin-left: 20px;
}
main .sec .insec .other {
  width: 100%;
  position: relative;
}
main .sec .insec .other .inner {
  width: 100%;
}
main .sec .insec .other .inner .credits {
  width: 100%;
  position: relative;
  z-index: 1;
}
main .sec .insec .other .inner .credits > div:not(:last-child) {
  margin-bottom: 70px;
}
main .sec .insec .other .inner .comment {
  width: 100%;
  padding: 60px 0 0 0;
  position: relative;
  z-index: 2;
}
main .sec .insec .other .inner .comment div {
  text-align: left;
  width: calc(100% - 766px);
  max-width: 600px;
  margin: 0 auto;
}
main .sec .insec .other .inner .comment div p {
  color: #333;
  font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.8rem;
  letter-spacing: 0em;
}
main .sec .insec .other .inner .profile {
  width: 100%;
  padding: 100px 0 200px 0;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
main .sec .insec .other .inner .profile .inprof {
  text-align: left;
  width: calc(100% - 766px);
  max-width: 600px;
  padding: 30px 0 30px 0;
  margin: 0 auto;
  border-top: solid 1px #000;
  border-bottom: solid 1px #000;
}
main .sec .insec .other .inner .profile .inprof h5 {
  color: #333;
  font-family: "adobe-jenson-pro-display", serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  margin-bottom: 20px;
}
main .sec .insec .other .inner .profile .inprof dl dt {
  color: #333;
  font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 2.2rem;
  letter-spacing: 0em;
}
main .sec .insec .other .inner .profile .inprof dl dt:not(:last-child) {
  margin-bottom: 5px;
}
main .sec .insec .other .inner .profile .inprof dl dd {
  color: #333;
  font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2.2rem;
  letter-spacing: 0em;
}
main .sec .insec .other .inner .profile .inprof dl dd:not(:last-child) {
  margin-bottom: 5px;
}
main .sec .insec .other .inner .profile .inprof dl dd.link {
  color: #333;
  font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 2.2rem;
  letter-spacing: 0em;
}
main .sec#sec1, main .sec#sec6 {
  position: sticky;
}
main .sec#sec2, main .sec#sec3, main .sec#sec4, main .sec#sec5, main .sec#sec7 {
  position: sticky;
}
main .sec#sec2 .other, main .sec#sec3 .other, main .sec#sec4 .other, main .sec#sec5 .other, main .sec#sec7 .other {
  padding-top: 60px;
}
main .sec#sec4, main .sec#sec5, main .sec#sec6, main .sec#sec7 {
  background-color: #DBDBDB;
}

footer {
  text-align: left;
  width: 100%;
  padding: 70px 0 35px 0;
  margin: 0 auto;
  border-top: solid 1px #333;
  background-color: #DBDBDB;
}
footer .infoot {
  width: calc(100% - 80px);
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
footer .infoot ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  box-sizing: border-box;
}
footer .infoot ul li:not(:last-child) {
  margin-bottom: 10px;
}
footer .infoot ul li a {
  color: #333;
  font-family: "nimbus-roman", serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
}
footer .infoot ul li a:hover {
  text-decoration: underline;
}
footer .infoot p {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
footer .infoot p span {
  color: #333;
  font-family: "nimbus-roman", serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  text-align: right;
}

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

  #loader .logo {
    width: 103px;
    height: 13px;
    top: calc(50% - 7px);
    left: calc(50% - 51px);
  }

  header .inner ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
  }
  header .inner ul li:not(:first-child) {
    margin-left: 10px;
  }
  header .inner ul li a:hover {
    color: #FFF;
  }

  main .wrapper {
    min-height: calc(var(--vh) * 100);
    padding: 0 0 60px 0;
  }
  main .wrapper .visual h2 {
    width: 180px;
    height: 70px;
    top: calc(50% - 35px);
    left: calc(50% - 90px);
  }
  main .wrapper .visual .v-slider .myslide {
    width: 50vw;
  }
  main .wrapper .lead {
    padding: 50px 30px 75px 30px;
  }
  main .wrapper .lead .inner p {
    color: #FFF;
    font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2.8rem;
    letter-spacing: 0em;
    text-align: left;
  }
  main .wrapper .lead .inner p:not(:last-child) {
    margin-bottom: 0px;
  }
  main .wrapper .lead .inner p br {
    display: none;
  }
  main .sec {
    padding: 60px 0 0 0;
  }
  main .sec:not(:last-child) {
    margin-bottom: 200px;
  }
  main .sec .credits {
    width: 100%;
  }
  main .sec .credits div {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main .sec .credits div dl {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main .sec .credits div dl:not(:last-child) {
    margin-bottom: 25px;
  }
  main .sec .credits div dl dt {
    color: #333;
    font-family: "Marcellus", serif;
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    margin-bottom: 10px;
  }
  main .sec .credits div dl dd {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  main .sec .credits div dl dd span {
    display: inline-block;
  }
  main .sec .credits div dl dd span:nth-child(1) {
    color: #333;
    font-family: "adobe-jenson-pro-display", serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
  }
  main .sec .credits div dl dd span:nth-child(2) {
    color: #333;
    font-family: "adobe-jenson-pro-display", serif;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 2rem;
    letter-spacing: 0em;
    margin-left: 5px;
  }
  main .sec .credits div dl + p {
    color: #333;
    font-family: "adobe-jenson-pro-display", serif;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 2rem;
    letter-spacing: 0em;
    margin-bottom: 25px;
  }
  main .sec .credits div .btn {
    width: 60px;
  }
  main .sec .credits div .btn a {
    color: #FFF;
    font-family: "adobe-jenson-pro-display", serif;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
    height: 25px;
  }
  main .sec .insec {
    width: 100%;
    margin: 0 auto;
  }
  main .sec .insec .title h3 {
    height: 40px;
  }
  main .sec .insec .title h3:not(:last-child) {
    margin-bottom: 40px;
  }
  main .sec .insec .title dl dt {
    color: #333;
    font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    margin-bottom: 10px;
  }
  main .sec .insec .title dl dd {
    color: #333;
    font-family: "adobe-jenson-pro-display", serif;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
  }
  main .sec .insec .style {
    width: 100%;
    padding: 30px 0 0 0;
  }
  main .sec .insec .style .style-visual {
    width: 100%;
    padding: 20px 0;
    margin-bottom: 50px;
  }
  main .sec .insec .style .style-visual .bg {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0px;
    left: 0px;
  }
  main .sec .insec .style .style-visual .slider {
    width: calc(100% - 40px);
  }
  main .sec .insec .style .style-visual .slider .arrow {
    width: 11px;
    height: 22px;
    top: calc(50% - 11px);
  }
  main .sec .insec .style .style-visual .slider .arrow.prev {
    left: 5px;
  }
  main .sec .insec .style .style-visual .slider .arrow.next {
    right: 5px;
  }
  main .sec .insec .style .credits {
    width: 100%;
  }
  main .sec .insec .style .credits:not(:last-child) {
    margin-bottom: 60px;
  }
  main .sec .insec .style .credits > div:not(:last-child) {
    margin-bottom: 70px;
  }
  main .sec .insec .style .comment {
    width: 100%;
    padding: 0 20px;
  }
  main .sec .insec .style .comment p {
    color: #333;
    font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2.8rem;
    letter-spacing: 0em;
    text-align: left;
  }
  main .sec .insec .style .comment p br {
    display: none;
  }
  main .sec .insec .style2 {
    padding: 100px 0 0 0;
  }
  main .sec .insec .style2 .inner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main .sec .insec .style2 .inner .photo {
    width: 100%;
    padding-bottom: 0px;
    position: sticky;
    top: 0px;
  }
  main .sec .insec .style2 .inner .photo:not(:nth-child(2n+1)) {
    margin-left: 0px;
  }
  main .sec .insec .style2 .inner .photo:last-child {
    width: calc(100% - 40px);
  }
  main .sec .insec .other .inner .credits {
    padding-top: 50px;
  }
  main .sec .insec .other .inner .credits > div:not(:last-child) {
    margin-bottom: 35px;
  }
  main .sec .insec .other .inner .comment {
    padding: 50px 0 0 0;
  }
  main .sec .insec .other .inner .comment div {
    width: calc(100% - 40px);
  }
  main .sec .insec .other .inner .comment div p {
    color: #333;
    font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2.8rem;
    letter-spacing: 0em;
  }
  main .sec .insec .other .inner .comment div p br {
    display: none;
  }
  main .sec .insec .other .inner .profile {
    padding: 70px 0 140px 0;
  }
  main .sec .insec .other .inner .profile .inprof {
    width: calc(100% - 40px);
    padding: 20px 0;
    margin: 0 auto;
  }
  main .sec .insec .other .inner .profile .inprof h5 {
    color: #333;
    font-family: "adobe-jenson-pro-display", serif;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
    margin-bottom: 20px;
  }
  main .sec .insec .other .inner .profile .inprof dl dt {
    color: #333;
    font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 2.2rem;
    letter-spacing: 0em;
  }
  main .sec .insec .other .inner .profile .inprof dl dt:not(:last-child) {
    margin-bottom: 5px;
  }
  main .sec .insec .other .inner .profile .inprof dl dd {
    color: #333;
    font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 2.2rem;
    letter-spacing: 0em;
  }
  main .sec .insec .other .inner .profile .inprof dl dd:not(:last-child) {
    margin-bottom: 5px;
  }
  main .sec .insec .other .inner .profile .inprof dl dd.link {
    color: #333;
    font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 2.2rem;
    letter-spacing: 0em;
  }
  main .sec#sec1, main .sec#sec6 {
    position: sticky;
  }
  main .sec#sec2, main .sec#sec3, main .sec#sec4, main .sec#sec5, main .sec#sec7 {
    position: sticky;
  }
  main .sec#sec2 .other, main .sec#sec3 .other, main .sec#sec4 .other, main .sec#sec5 .other, main .sec#sec7 .other {
    padding-top: 0px;
  }
  main .sec#sec4, main .sec#sec5, main .sec#sec6, main .sec#sec7 {
    background-color: #DBDBDB;
  }

  footer {
    padding: 30px 0 30px 0;
  }
  footer .infoot {
    width: calc(100% - 40px);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  footer .infoot ul {
    margin-bottom: 30px;
  }
  footer .infoot ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  footer .infoot ul li a {
    color: #333;
    font-family: "nimbus-roman", serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
  }
  footer .infoot p {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  footer .infoot p span {
    color: #333;
    font-family: "nimbus-roman", serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    text-align: left;
  }
}

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