@charset "UTF-8";
@import url("https://use.typekit.net/aeh7xzq.css");
@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;
  }
}
/* ------------------------------------------------- Default and Common --------------------------------------------------- */
html, body {
  width: 100%;
  height: auto;
}

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

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #000;
  text-align: center;
  -webkit-text-size-adjust: 100%;
  background-color: #FFF;
  height: 100%;
  position: fixed;
  left: 0px;
  top: 0px;
}
body.loaded {
  position: static;
}
body.looking {
  overflow: hidden;
}

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

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

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, nav, footer {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
}

br.brsp {
  display: none;
}

br.brpc {
  display: block;
}

/* ---------------------------------------------------------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 0.5s ease-in 0s;
}
#loader .logo {
  width: 200px;
  height: 43px;
  background-image: url(../images/logo_lessage.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 {
  width: 100%;
  padding: 0 90px 280px 30px;
  box-sizing: border-box;
}
header .inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
header .inner.on .visual h2 {
  opacity: 1;
}
header .inner .logo {
  position: absolute;
  top: 20px;
  left: 20px;
}
header .inner .logo h1 {
  width: 100px;
  height: auto;
}
header .inner .text {
  width: 94%;
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
}
header .inner .text h2 {
  width: 86%;
  height: auto;
  margin: 0 auto 40px;
}
header .inner .text h3 {
  width: 45%;
  height: auto;
  margin: 0 auto;
}
header .inner .photo {
  width: 100%;
}

nav {
  padding: 0;
  position: fixed;
  right: 15px;
  top: 20px;
  z-index: 2;
}
nav.on .links {
  opacity: 1;
}
nav .links {
  width: auto;
  min-width: 300px;
  white-space: nowrap;
  position: absolute;
  right: 0;
  opacity: 0;
  transition: all 0.2s ease-in 0.25s;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right top;
}
nav .links p {
  color: #000;
  font-family: "futura-pt", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  font-style: normal;
}
nav .links p:first-child {
  padding-right: 10px;
  margin-right: 10px;
  border-right: solid 1px #000;
}

main {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}
main .js-scroll-overlap:not(.is-disabled) {
  --sticky-offset: -1px;
  position: sticky;
  top: var(--sticky-offset);
  background-color: #FFF;
}
main .notoverlap {
  position: relative;
}
main .lead {
  width: 100%;
  max-width: 1200px;
  margin: 160px auto 200px;
  color: #000;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0em;
  font-style: normal;
  text-align: center;
}
main .lead.on .lead_text {
  opacity: 1;
}
main .lead .lead_text {
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main .lead .lead_text:not(:last-child) {
  padding-bottom: 15px;
}
main .sec {
  width: 100%;
  max-width: 1100px;
  padding: 0px;
  margin: 0 auto;
}
main .sec .insec {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 180px;
}
main .sec .insec .photo {
  position: relative;
}
main .sec .insec.type1 {
  width: 440px;
  margin: 0 auto 0 100px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
main .sec .insec.type1.on .photo {
  opacity: 1;
}
main .sec .insec.type1.on .credits {
  opacity: 1;
}
main .sec .insec.type1 .photo {
  width: 100%;
  position: relative;
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main .sec .insec.type1 .credits {
  opacity: 0;
  transition: all 0.5s ease-in 0.5s;
}
main .sec .insec.type2 {
  width: 610px;
  margin: 0 auto 0 100px;
}
main .sec .insec.type2.on .photo {
  opacity: 1;
}
main .sec .insec.type2.on .credits {
  opacity: 1;
}
main .sec .insec.type2 .photo {
  width: 100%;
  opacity: 0;
  transition: all 0.25s ease-in 0.25s;
}
main .sec .insec.type2 .credits {
  width: 100%;
  margin: 0 auto;
  opacity: 0;
  transition: all 0.5s ease-in 0.5s;
}
main .sec .insec.type3 {
  width: 550px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
main .sec .insec.type3.on .photo {
  opacity: 1;
}
main .sec .insec.type3 .photo {
  width: 100%;
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main .sec .insec.type4 {
  width: 330px;
  margin: 0 100px 0 auto;
}
main .sec .insec.type4.on .photo {
  opacity: 1;
}
main .sec .insec.type4 .photo {
  width: 100%;
  opacity: 0;
  transition: all 0.8s ease-out 0s;
}
main .sec .insec.type5 {
  width: 550px;
  margin: 0 100px 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
main .sec .insec.type5.on .photo {
  opacity: 1;
}
main .sec .insec.type5.on .credits {
  opacity: 1;
}
main .sec .insec.type5 .photo {
  width: 100%;
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main .sec .insec.type5 .photo:nth-child(2) {
  width: 440px;
  margin: 100px auto 0;
}
main .sec .insec.type5 .credits {
  width: 440px;
  margin: 0 auto;
  opacity: 0;
  transition: all 0.5s ease-in 0.5s;
}
main .sec .insec.type6 {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
main .sec .insec.type6.on .photo {
  opacity: 1;
}
main .sec .insec.type6.on .credits {
  opacity: 1;
}
main .sec .insec.type6 .photo {
  width: calc((100% - 20px) / 2);
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main .sec .insec.type6 .credits {
  opacity: 0;
  transition: all 0.5s ease-in 0.5s;
  width: 100%;
  margin: 0 auto;
}
main .story {
  width: 100%;
  padding: 150px 0;
  background-color: #F7F8F6;
}
main .story.on .inner h4 {
  opacity: 1;
}
main .story .inner {
  width: 100%;
  max-width: 900px;
  padding: 0px;
  margin: 0 auto;
}
main .story .inner h4 {
  width: 384px;
  margin: 0 auto;
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main .story .inner .lead {
  width: 560px;
  margin: 80px auto;
}
main .story .inner .lead.on p {
  opacity: 1;
}
main .story .inner .lead p {
  text-indent: 1rem;
  text-align: left;
  opacity: 0;
  color: #333333;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.02em;
  font-style: normal;
}
main .story .inner .lead p:not(:last-child) {
  padding-bottom: 20px;
}
main .story .inner .lead p:nth-child(1) {
  transition: all 0.5s ease-in 0s;
}
main .story .inner .lead p:nth-child(2) {
  transition: all 0.5s ease-in 0.5s;
}
main .story .inner .lead p:nth-child(3) {
  transition: all 0.5s ease-in 0.75s;
}
main .story .inner .lead p:nth-child(4) {
  transition: all 0.5s ease-in 1s;
}
main .story .inner .story_content .column_2 {
  width: 800px;
  margin: 0 auto 120px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
main .story .inner .story_content .column_2 .photo {
  width: 330px;
}
main .story .inner .story_content .column_2 .photo.on img {
  opacity: 1;
}
main .story .inner .story_content .column_2 .photo img {
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main .story .inner .story_content .column_2 .photo h5 {
  padding: 30px 0 20px;
  color: #333333;
  font-family: "futura-pt", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  font-style: normal;
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main .story .inner .story_content .column_2 .photo h5.on {
  opacity: 1;
}
main .story .inner .story_content .column_2 .photo p.text {
  text-align: left;
  color: #333333;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.02em;
  font-style: normal;
  opacity: 0;
  transition: all 0.5s ease-in 0.25s;
}
main .story .inner .story_content .column_2 .photo p.text.on {
  opacity: 1;
}
main .story .inner .story_content .column_2 .photo:nth-child(2) {
  margin-top: 150px;
}
main .story .inner .story_content .column_1 {
  width: 660px;
  margin: 0 auto;
}
main .story .inner .story_content .column_1 .photo.on .photo_row img {
  opacity: 1;
}
main .story .inner .story_content .column_1 .photo .photo_row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
main .story .inner .story_content .column_1 .photo .photo_row img {
  display: block;
  width: calc((100% - 3px) / 2);
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main .story .inner .story_content .column_1 .photo h5 {
  padding: 30px 0 20px;
  color: #000;
  font-family: "futura-pt", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  font-style: normal;
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main .story .inner .story_content .column_1 .photo h5.on {
  opacity: 1;
}
main .story .inner .story_content .column_1 .photo p.text {
  text-align: left;
  color: #000;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.02em;
  font-style: normal;
  opacity: 0;
  transition: all 0.5s ease-in 0.25s;
}
main .story .inner .story_content .column_1 .photo p.text.on {
  opacity: 1;
}
main .story .inner .profile {
  width: 900px;
  margin: 120px auto;
  padding: 20px 0;
  border-top: dotted 1px #999999;
  text-align: left;
}
main .story .inner .profile .inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
main .story .inner .profile .inner > div {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
main .story .inner .profile .inner > div:nth-child(1) {
  padding-right: 20px;
  border-right: dotted 1px #999999;
}
main .story .inner .profile .inner > div:nth-child(2) {
  padding-left: 20px;
}
main .story .inner .profile .inner > div .ph {
  width: 100px;
  padding-right: 10px;
}
main .story .inner .profile .inner > div .text {
  width: calc(100% - 100px);
}
main .story .inner .profile .inner > div .text .job {
  color: #333333;
  font-family: "futura-pt", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-style: normal;
}
main .story .inner .profile .inner > div .text .name {
  color: #333333;
  font-family: "futura-pt", sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-style: normal;
  padding-bottom: 3px;
}
main .story .inner .profile .inner > div .text .tx {
  color: #333333;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0em;
  font-style: normal;
}
main .story .inner .staff {
  width: 100%;
  color: #333333;
  font-family: "futura-pt", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0em;
  font-style: normal;
  text-align: center;
}

footer {
  position: relative;
  text-align: left;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  background-color: #FFF;
}
footer .infoot {
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  position: relative;
}
footer .infoot div h3 {
  width: 120px;
  margin: 0 auto 40px 0;
}
footer .infoot div ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 40px;
}
footer .infoot div ul li:not(:last-child) {
  margin-bottom: 12px;
}
footer .infoot div ul li a, footer .infoot div ul li span {
  color: #000;
  font-family: "futura-pt", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  font-style: normal;
  transition: all 0.25s ease-in 0s;
}
footer .infoot div ul li a:hover, footer .infoot div ul li span:hover {
  color: #000;
  opacity: 0.5;
}
footer .infoot div p {
  color: #000;
  font-family: "futura-pt", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  font-style: normal;
  text-align: left;
}
footer .infoot .pgtop {
  position: absolute;
  right: 20px;
  bottom: 160px;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}
footer .infoot .pgtop a {
  color: #000;
  font-family: "futura-pt", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  font-style: normal;
  transition: all 0.25s ease-in 0s;
}
footer .infoot .pgtop a:hover {
  color: #000;
  opacity: 0.5;
}

/* ---- common credits ---- */
.credits_wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.credits_wrap .credits:not(:last-child) {
  padding-bottom: 20px;
}

.credits {
  width: 100%;
  padding-top: 20px;
}
.credits:first-child {
  padding-right: 30px;
}
.credits .note {
  padding-bottom: 10px;
  color: #000;
  font-family: "futura-pt", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  font-style: normal;
  text-align: left;
}
.credits > div {
  width: 100%;
  transition: all 0.25s ease-in 0s;
}
.credits > div:not(:last-child) {
  margin-bottom: 10px;
}
.credits > div:hover {
  opacity: 0.7;
}
.credits > div.item-d-none dl dt {
  width: auto;
}
.credits > div.item-d-none dl dd {
  width: auto;
}
.credits > div.item-d-none dl dd a {
  display: none;
}
.credits > div.item-d-none dl dd span {
  color: #000;
  font-family: "futura-pt", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  font-style: normal;
  padding: 2px 0;
  display: inline-block;
}
.credits > div dl {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.credits > div dl dt {
  padding: 2px 0;
  text-align: left;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.credits > div dl dt strong {
  color: #000;
  font-family: "futura-pt", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  font-style: normal;
}
.credits > div dl dt strong:not(:first-child) {
  margin-left: 5px;
}
.credits > div dl dt span {
  color: #000;
  font-family: "futura-pt", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  font-style: normal;
  margin-left: 5px;
}
.credits > div dl dd {
  margin-left: 20px;
}
.credits > div dl dd a {
  color: #000;
  font-family: "futura-pt", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  font-style: normal;
  text-decoration: none;
  padding: 2px 30px;
  display: block;
  background-color: transparent;
  border: solid 1px #000;
}
.credits > div dl dd a img {
  height: auto;
  width: 26px;
}
.credits > div dl dd span {
  display: none;
}

/*--------- SLICK -----------*/
.slick-prev::before {
  content: "　";
  background: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.slick-next::before {
  content: "　";
  background: url(../images/arrow2.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* ----------------------------------------------- Media Queries Smartphone ----------------------------------------------- */
@media screen and (max-width: 768px) {
  /* --------------------------- Default and Common --------------------------- */
  br.brsp {
    display: block;
  }
  br.brpc {
    display: none;
  }
  /* --------------------------- page --------------------------- */
  #loader .logo {
    width: 180px;
    height: 39px;
  }
  #loader .bar {
    height: 8px;
  }
  header {
    width: 100%;
    padding: 10px 50px 100px 10px;
    box-sizing: border-box;
  }
  header .inner {
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  header .inner.on .visual h2 {
    opacity: 1;
  }
  header .inner .logo {
    position: absolute;
    top: 20px;
    left: 20px;
  }
  header .inner .logo h1 {
    width: 100px;
    height: auto;
  }
  header .inner .text {
    width: 94%;
    position: absolute;
    bottom: -11%;
    left: 50%;
    transform: translateX(-50%);
  }
  header .inner .text h2 {
    width: 100%;
    height: auto;
    margin: 0 auto 5px;
  }
  header .inner .text h3 {
    width: 50%;
    height: auto;
    margin: 0 auto;
  }
  header .inner .photo {
    width: 100%;
  }
  nav {
    padding: 0;
    position: fixed;
    right: 10px;
    top: 10px;
  }
  nav.on .links {
    opacity: 1;
  }
  nav .links {
    width: auto;
  }
  nav .links p {
    color: #000;
    font-family: "futura-pt", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.02em;
    font-style: normal;
  }
  nav .links p:first-child {
    padding-right: 10px;
    margin-right: 10px;
    border-right: solid 1px #000;
  }
  main {
    width: 100%;
    position: relative;
    box-sizing: border-box;
  }
  main .sec {
    width: 100%;
    padding: 0px;
  }
  main .sec .insec {
    width: 100%;
    margin: 0 auto;
    padding: 0 0 100px;
  }
  main .sec .insec .photo {
    position: relative;
  }
  main .sec .insec .photo:not(:last-child) {
    margin-bottom: 0;
  }
  main .sec .insec .photo:nth-child(2) {
    margin-bottom: 20px;
  }
  main .sec .insec.type1 {
    width: 80%;
    margin: 0 auto 0 0;
  }
  main .sec .insec.type1 .credits {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  main .sec .insec.type2 {
    width: 90%;
    margin: 0 auto 0 0;
  }
  main .sec .insec.type2 .photo {
    width: 100%;
  }
  main .sec .insec.type2 .credits {
    width: 100%;
    margin: 0 auto 0 10px;
  }
  main .sec .insec.type3 {
    width: 100%;
  }
  main .sec .insec.type3 .photo {
    width: 100%;
  }
  main .sec .insec.type3 .credits {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  main .sec .insec.type4 {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding-bottom: 20px;
  }
  main .sec .insec.type4 .photo {
    width: 100%;
  }
  main .sec .insec.type5 {
    width: 100%;
    margin: 0 100px 0 auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main .sec .insec.type5 .photo {
    width: 100%;
    opacity: 0;
    transition: all 0.5s ease-in 0s;
  }
  main .sec .insec.type5 .photo:nth-child(2) {
    width: calc(100% - 40px);
    margin: 20px auto 0;
  }
  main .sec .insec.type5 .credits {
    width: calc(100% - 40px);
  }
  main .sec .insec.type6 {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  main .sec .insec.type6 .photo {
    width: 100%;
  }
  main .sec .insec.type6 .credits {
    width: 100%;
    margin: 0 auto;
  }
  main .story {
    width: 100%;
    padding: 80px 0;
  }
  main .story .inner {
    width: 100%;
    max-width: inherit;
    padding: 0px;
    margin: 0 auto;
  }
  main .story .inner h4 {
    width: 70%;
    margin: 0 auto;
  }
  main .story .inner .lead {
    width: calc(100% - 60px);
    margin: 50px auto;
  }
  main .story .inner .lead p {
    text-indent: 1rem;
  }
  main .story .inner .lead p:not(:last-child) {
    padding-bottom: 18px;
  }
  main .story .inner .story_content .column_2 {
    width: calc(100% - 60px);
    margin: 0 auto 60px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  main .story .inner .story_content .column_2 .photo {
    width: 100%;
  }
  main .story .inner .story_content .column_2 .photo h5 {
    padding: 26px 0 16px;
    color: #333333;
    font-family: "futura-pt", sans-serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.02em;
    font-style: normal;
  }
  main .story .inner .story_content .column_2 .photo p.text {
    text-align: left;
    color: #333333;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.02em;
    font-style: normal;
  }
  main .story .inner .story_content .column_2 .photo:nth-child(2) {
    margin-top: 60px;
  }
  main .story .inner .story_content .column_1 {
    width: calc(100% - 60px);
    margin: 0 auto;
  }
  main .story .inner .story_content .column_1 .photo .photo_row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  main .story .inner .story_content .column_1 .photo .photo_row img {
    display: block;
    width: 100%;
  }
  main .story .inner .story_content .column_1 .photo .photo_row img:nth-child(1) {
    padding-bottom: 3px;
  }
  main .story .inner .story_content .column_1 .photo h5 {
    padding: 26px 0 16px;
    color: #000;
    font-family: "futura-pt", sans-serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.02em;
    font-style: normal;
    opacity: 0;
    transition: all 0.5s ease-in 0.25s;
  }
  main .story .inner .story_content .column_1 .photo p.text {
    text-align: left;
    color: #000;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.02em;
    font-style: normal;
  }
  main .story .inner .profile {
    width: calc(100% - 40px);
    margin: 80px auto;
    padding: 0;
    border-top: dotted 1px #999999;
    text-align: left;
  }
  main .story .inner .profile .inner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  main .story .inner .profile .inner > div {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  main .story .inner .profile .inner > div:nth-child(1) {
    padding-right: 0;
    padding-bottom: 30px;
    border-right: none;
    border-bottom: dotted 1px #999999;
  }
  main .story .inner .profile .inner > div:nth-child(2) {
    padding-left: 0;
  }
  main .story .inner .profile .inner > div .ph {
    width: 40%;
    padding: 30px 0;
    margin: 0 auto;
  }
  main .story .inner .profile .inner > div .text {
    width: 60%;
    margin: 0 auto;
  }
  main .story .inner .profile .inner > div .text .job {
    text-align: center;
    color: #333333;
    font-family: "futura-pt", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    font-style: normal;
  }
  main .story .inner .profile .inner > div .text .name {
    text-align: center;
    color: #333333;
    font-family: "futura-pt", sans-serif;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    font-style: normal;
    padding-bottom: 10px;
  }
  main .story .inner .profile .inner > div .text .tx {
    color: #333333;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0em;
    font-style: normal;
  }
  main .story .inner .staff {
    width: 100%;
    color: #333333;
    font-family: "futura-pt", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0em;
    font-style: normal;
    text-align: center;
  }
  footer {
    padding: 0 10px 0 20px;
  }
  footer .infoot {
    width: 100%;
    margin: 0 auto;
    padding: 30px 0;
  }
  footer .infoot div h3 {
    width: 100px;
    margin: 0 auto 30px 0;
  }
  footer .infoot div ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
  }
  footer .infoot div ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  footer .infoot div ul li a, footer .infoot div ul li span {
    color: #000;
    font-family: "futura-pt", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    font-style: normal;
  }
  footer .infoot div p {
    color: #000;
    font-family: "futura-pt", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    font-style: normal;
    text-align: left;
  }
  footer .infoot .pgtop {
    right: 12px;
    bottom: 100px;
  }
  footer .infoot .pgtop a {
    color: #000;
    font-family: "futura-pt", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    font-style: normal;
  }
  /* common credits------ */
  .credits {
    width: 100%;
  }
  .credits:first-child {
    padding-right: 0;
  }
  .credits > div {
    width: 100%;
  }
  .credits > div:not(:last-child) {
    margin-bottom: 8px;
  }
  .credits > div.item-d-none dl dt {
    width: auto;
  }
  .credits > div.item-d-none dl dd {
    width: auto;
  }
  .credits > div.item-d-none dl dd a {
    display: none;
  }
  .credits > div.item-d-none dl dd span {
    color: #000;
    font-family: "futura-pt", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    font-style: normal;
    padding: 4px 0;
    display: inline-block;
  }
  .credits > div dl {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .credits > div dl dt {
    padding: 2px 0;
    text-align: left;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .credits > div dl dt strong {
    color: #000;
    font-family: "futura-pt", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05em;
    font-style: normal;
  }
  .credits > div dl dt strong:not(:first-child) {
    margin-left: 2px;
  }
  .credits > div dl dt .s {
    font-size: 1rem;
  }
  .credits > div dl dt span {
    color: #000;
    font-family: "futura-pt", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05em;
    font-style: normal;
    margin-left: 2px;
  }
  .credits > div dl dd {
    margin-left: 10px;
  }
  .credits > div dl dd a {
    color: #000;
    font-family: "futura-pt", sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    font-style: normal;
    padding: 2px 10px;
  }
  .credits > div dl dd a img {
    height: auto;
    width: 26px;
  }
  .credits > div dl dd span {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */