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

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

body {
  font-family: gill-sans-nova, sans-serif;
  font-size: 1rem;
  line-height: 2rem;
  color: #111;
  text-align: center;
  -webkit-text-size-adjust: 100%;
  background-color: #FFF;
  height: 100%;
  overflow: hidden;
  position: fixed;
  left: 0px;
  top: 0px;
}
body.loaded {
  position: static;
  overflow: scroll;
}
body.looking {
  overflow: hidden;
}
body.looking .sec {
  pointer-events: none;
}

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

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

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: 999999;
  transition: all 0.75s ease-in-out 0.25s;
}
#loader .bar {
  width: 100%;
  height: 15px;
  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: #111;
  display: block;
}
#loader.complete {
  height: 15px;
}

header {
  width: 100%;
  padding: 55px 45px 0 45px;
  margin: 0 auto;
  box-sizing: border-box;
  transition: opacity 0.5s ease-in 0.5s;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 99999;
}
header h1 {
  width: 150px;
}
header h1 span {
  background-image: url(../images/logo_white.png);
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  width: 100%;
  height: 57px;
  display: block;
}
header .hum {
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: fixed;
  right: 45px;
  top: 55px;
}
header .hum span {
  width: 100%;
  height: 2px;
  background-color: #FFF;
  position: absolute;
  left: 0px;
  transition: all 0.25s ease-in 0s;
}
header .hum span:nth-child(1) {
  top: 8px;
}
header .hum span:nth-child(2) {
  top: 19px;
}
header .hum span:nth-child(3) {
  bottom: 8px;
}
header .hum:hover span {
  background-color: #999;
}
header .hum.scrl span {
  background-color: #111;
}
header .hum.active span {
  background-color: #111;
}
header .hum.active span:nth-child(1) {
  transform: rotate(135deg);
  top: 19px;
}
header .hum.active span:nth-child(2) {
  opacity: 0;
}
header .hum.active span:nth-child(3) {
  transform: rotate(-135deg);
  bottom: 19px;
}
header .close {
  display: none;
}

main {
  width: 100%;
  padding: 0px;
  margin: 0 0 150px 0;
  position: relative;
  box-sizing: border-box;
  transition: padding-top 1s ease-in 0s;
  /*
  &::before{
  	content: '';
  	width: $w1;
  	height: 500px;
  	background-color: $col2;
  	position: absolute;
  	left: 0px;
  	top:0px;
  	z-index: -1;
  }
  */
}
main p i {
  color: #111;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.4rem;
  letter-spacing: 0em;
  font-style: italic;
}
main #index {
  width: 100%;
  padding: 20px;
  margin: 0 auto 300px auto;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-sizing: border-box;
}
main #index::before {
  content: "";
  width: 100%;
  height: calc(50vh - 20px);
  background-image: url(../images/visual1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
main #index::after {
  content: "";
  width: 100%;
  height: calc(50vh - 20px);
  background-image: url(../images/visual2.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
main #index h2 {
  width: 462px;
  height: 79px;
  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: fixed;
  left: calc(50% - 231px);
  top: calc(25% - 40px);
  z-index: 0;
}
main #index .photo {
  display: none;
}
main .deco {
  width: 100%;
  height: 100vh;
  position: sticky;
  left: 0px;
  top: 0px;
  transition: opacity 1s ease-out;
}
main .deco .inner {
  text-align: left;
  width: 100%;
  height: 100%;
  padding: 70px;
  background-image: url(../images/deco1.jpg);
  background-repeat: no-repeat;
  background-position: right 40px center;
  background-size: auto calc(100vh - 80px);
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
main .deco .inner .intext {
  width: 50%;
}
main .deco .inner .intext p:nth-child(1) {
  color: #111;
  font-family: gill-sans-nova, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.4rem;
  letter-spacing: 0em;
  margin-bottom: 80px;
}
main .deco .inner .intext p:nth-child(2) {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2.4rem;
  letter-spacing: 0em;
}
main .deco#deco2 .inner {
  background-image: url(../images/bg_deco2.jpg);
  background-repeat: no-repeat;
  background-position: right 40px center;
  background-size: auto calc(100vh - 80px);
}
main .deco.hide {
  opacity: 1;
}
main article {
  width: calc(100% - 40px);
  max-width: 1270px;
  height: 100vh;
  padding: 0 0 80px 0;
  margin: 0 auto;
  border-bottom: solid 1px #111;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
main article ul {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
main article ul li {
  width: 25%;
}
main article ul li:not(:first-child) {
  margin-left: 80px;
}
main .sec {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  /*
  &#sec8{
  	.photo{
  		@include flexbox(nowrap,column,flex-start,center);
  		> div{
  			@include flexbox(nowrap,row,center,center);
  			span{
  				width: 75%;
  				//width: calc((100vh - 100px)*(12/19));
  				height: calc(100vh - 100px);
  				@include flexbox(nowrap,row,center,center);
  				img{
  					width: 100%;
  					height: auto;
  				}
  			}
  			&.cbtn{ display: none; }
  		}
  	}
  }
  */
}
main .sec.active::before {
  opacity: 1;
}
main .sec::before {
  content: "";
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 35% auto;
  display: block;
  position: sticky;
  left: 0px;
  top: 0px;
  z-index: -1;
  opacity: 0;
  transition: opacity 1s ease-out 0.25s;
}
main .sec::after {
  content: "";
  width: 100%;
  height: 100vh;
  display: block;
}
main .sec .text {
  text-align: left;
  width: 100%;
  padding: 50px;
  box-sizing: border-box;
  position: sticky;
  top: 0px;
  left: 0px;
}
main .sec .text .inner {
  width: 300px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.75);
  box-sizing: border-box;
}
main .sec .photo {
  width: 100%;
  padding: 0 0 0 350px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  position: sticky;
  top: 0px;
  opacity: 0;
  pointer-events: none;
}
main .sec .photo > div {
  width: auto;
  padding: 50px 0;
}
main .sec .photo > div img {
  width: auto;
  height: calc(100vh - 100px);
}
main .sec .photo > div.cbtn {
  display: none;
}
main .sec#sec1::before {
  background-image: url(../images/image1.jpg);
}
main .sec#sec2::before {
  background-image: url(../images/image2.jpg);
}
main .sec#sec3::before {
  background-image: url(../images/image3.jpg);
}
main .sec#sec4::before {
  background-image: url(../images/image4.jpg);
}
main .sec#sec5::before {
  background-image: url(../images/image5.jpg);
}
main .sec#sec6::before {
  background-image: url(../images/image6.jpg);
}
main .sec#sec7::before {
  background-image: url(../images/image7.jpg);
}
main .sec#sec8::before {
  background-image: url(../images/image8.jpg);
}
main .sec#sec9::before {
  background-image: url(../images/image9.jpg);
}
main .sec#sec10::before {
  background-image: url(../images/image10.jpg);
}
main .sec#sec11::before {
  background-image: url(../images/image11.jpg);
}
main .sec#sec12::before {
  background-image: url(../images/image12.jpg);
}
main .sec#sec13::before {
  background-image: url(../images/image13.jpg);
}
main .sec#sec14::before {
  background-image: url(../images/image14.jpg);
}
main .sec#sec15::before {
  background-image: url(../images/image15.jpg);
}
main .sec#sec2::before {
  background-image: none;
}
main .sec#sec2 .text .inner .intext p:not(:last-child) {
  margin-bottom: 80px;
}
main .sec#sec10::before {
  background-image: none;
}

.intext dl {
  display: none;
}
.intext p {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2rem;
  letter-spacing: 0em;
}
.intext p:not(:last-child) {
  margin-bottom: 20px;
}
.intext .read {
  display: none;
}

.credits {
  width: 100%;
}
.credits .credit {
  width: 100%;
}
.credits .credit:not(:last-child) {
  margin-bottom: 10px;
}
.credits .credit dl.items__credit {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.credits .credit dl.items__credit dt {
  width: 80%;
}
.credits .credit dl.items__credit dt strong {
  display: block;
}
.credits .credit dl.items__credit dt strong:first-child {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.8rem;
  letter-spacing: 0em;
}
.credits .credit dl.items__credit dt strong:first-child span {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.8rem;
  letter-spacing: 0em;
  padding: 0 0 0 5px;
  display: inline-block;
}
.credits .credit dl.items__credit dt strong:nth-child(2) {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.8rem;
  letter-spacing: 0em;
}
.credits .credit dl.items__credit dt > span {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
}
.credits .credit dl.items__credit dd {
  text-align: right;
  width: 20%;
}
.credits .credit dl.items__credit dd a {
  color: #111;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.8rem;
  letter-spacing: 0em;
  text-decoration: underline;
}
.credits .credit dl.items__credit dd a:not([href]) {
  display: none;
}

#overlay {
  display: none;
}

#thumbs {
  background-color: #FFF;
  width: 100%;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 999;
  overflow: scroll;
  transition: opacity 0.5s ease-in;
}
#thumbs.active {
  opacity: 1;
  pointer-events: auto;
}
#thumbs.active ul.btnset {
  display: block;
}
#thumbs ul.inner {
  width: 100%;
  padding: 140px 40px 90px 40px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
#thumbs ul.inner li {
  width: 20%;
  padding: 10px;
}
#thumbs ul.inner li a {
  display: block;
}
#thumbs ul.inner li a p:first-child {
  margin-bottom: 10px;
}
#thumbs ul.inner li a p:first-child img {
  transition: all 0.25s ease-in 0s;
}
#thumbs ul.inner li a p:last-child {
  color: #111;
  font-family: gill-sans-nova, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 2.4rem;
  letter-spacing: 0em;
  transition: all 0.25s ease-in 0s;
}
#thumbs ul.inner li a:hover p:first-child img {
  opacity: 0.6;
}
#thumbs ul.inner li a:hover p:last-child {
  color: #999;
}

footer {
  text-align: left;
  width: calc(100% - 40px);
  max-width: 1270px;
  padding: 0 0 80px 0;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}
footer .inner {
  width: 100%;
}
footer .inner .credit {
  padding-bottom: 80px;
  margin-bottom: 80px;
  border-bottom: solid 1px #111;
}
footer .inner .credit h5 {
  color: #111;
  font-family: gill-sans-nova, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3rem;
  letter-spacing: 0em;
  margin-bottom: 20px;
}
footer .inner .credit p {
  color: #111;
  font-family: gill-sans-nova, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.4rem;
  letter-spacing: 0em;
  text-align: left;
}
footer .inner .info p:first-child {
  color: #111;
  font-family: gill-sans-nova, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 3rem;
  letter-spacing: 0em;
  margin-bottom: 70px;
}
footer .inner .info p:last-child {
  color: #111;
  font-family: gill-sans-nova, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0em;
}
footer .inner ul {
  margin-bottom: 45px;
}
footer .inner ul li:not(:last-child) {
  margin-bottom: 10px;
}
footer .inner ul li a span {
  color: #111;
  font-family: gill-sans-nova, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0em;
}
footer .inner ul li a:hover span {
  color: #999;
}
footer .inner.active {
  opacity: 1;
}
footer .pgtop {
  width: 109px;
  height: 16px;
  position: absolute;
  right: 0px;
  bottom: 80px;
}
footer .pgtop a {
  width: 100%;
  height: 100%;
  background-image: url(../images/text_pagetop.png);
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.25s ease-in 0s;
}
footer .pgtop a:hover {
  opacity: 0.7;
}

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

  header {
    padding: 15px 15px 0 15px;
  }
  header h1 {
    width: 96px;
  }
  header h1 span {
    background-image: url(../images/logo_white.png);
    height: 37px;
  }
  header .hum {
    width: 30px;
    height: 30px;
    right: 15px;
    top: 15px;
  }
  header .hum span {
    width: 100%;
    height: 2px;
    background-color: #FFF;
  }
  header .hum span:nth-child(1) {
    top: 6px;
  }
  header .hum span:nth-child(2) {
    top: 14px;
  }
  header .hum span:nth-child(3) {
    bottom: 6px;
  }
  header .hum.active span {
    background-color: #111;
  }
  header .hum.active span:nth-child(1) {
    top: 14px;
  }
  header .hum.active span:nth-child(3) {
    bottom: 14px;
  }
  header .close {
    width: 40px;
    height: 40px;
    background-color: #FFF;
    position: fixed;
    right: 10px;
    top: 10px;
    z-index: 999;
  }
  header .close::before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #111;
    transform: rotate(135deg);
    position: absolute;
    left: 0px;
    top: 19px;
    display: block;
  }
  header .close::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #111;
    transform: rotate(-135deg);
    position: absolute;
    left: 0px;
    bottom: 19px;
    display: block;
  }
  header .close.active {
    display: block;
  }

  main {
    margin: 0px;
  }
  main.active {
    pointer-events: none;
  }
  main p i {
    color: #111;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2.4rem;
    letter-spacing: 0em;
    font-style: italic;
  }
  main #index {
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main #index::before {
    height: calc(50vh - 20px);
  }
  main #index::after {
    height: calc(50vh - 20px);
  }
  main #index h2 {
    width: 231px;
    height: 40px;
    left: calc(50% - 116px);
    top: calc(25vh - 20px);
    z-index: 0;
  }
  main .deco {
    width: 100%;
    height: 100vh;
    position: sticky;
    left: 0px;
    top: 0px;
    transition: opacity 1s ease-out;
  }
  main .deco .inner {
    text-align: left;
    width: 100%;
    height: 100%;
    padding: 37px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  main .deco .inner .intext {
    width: 100%;
    min-height: auto;
    padding: 0px;
    position: relative;
    opacity: 1;
  }
  main .deco .inner .intext p {
    display: inline-block;
  }
  main .deco .inner .intext p:nth-child(1) {
    color: #111;
    font-family: gill-sans-nova, sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2.4rem;
    letter-spacing: 0em;
    margin-bottom: 40px;
  }
  main .deco .inner .intext p:nth-child(2) {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
    padding: 0 0 0 37px;
  }
  main .deco#deco1 .inner .intext p {
    color: #FFF;
  }
  main .deco#deco2 {
    margin-bottom: 50vh;
  }
  main .deco#deco2 .inner {
    background-image: url(../images_sp/bg_deco2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  main .deco.hide {
    opacity: 1;
  }
  main article {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 37px;
    margin: 0 auto;
    border-bottom: none;
    display: block;
    box-sizing: border-box;
  }
  main article ul {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  main article ul li {
    width: 100%;
  }
  main article ul li:not(:first-child) {
    margin: 0px;
  }
  main .sec {
    position: relative;
    /*
    &#sec4{
    	&::before{
    		margin: 0 18px 0 auto;
    	}
    	.photo{
    		height: auto;
    		position: relative;
    		opacity: 1 !important;
    		div{
    			span{
    				width: 100%;
    				height: auto;
    				display: block;
    			}
    		}
    	}
    }
    &#sec8{
    	&::before{ position: relative; }
    	&::after{ content: none; }
    	.photo{
    		height: auto;
    		position: relative;
    		opacity: 1 !important;
    		>div{
    			&.p1{
    				padding: 0px;
    				span{
    					width: 100%;
    					height: auto;
    					display: block;
    				}	
    			}
    			&.p2{
    				background-color: $col2;
    				padding: 37px 37px 0 37px;
    				img{
    					width: 100%;
    					height: auto;
    				}
    			}
    			&.p3{
    				background-color: $col2;
    				padding: 37px 37px 75px 37px;
    				img{
    					width: 100%;
    					height: auto;
    				}
    			}
    		}
    		.cbtn{
    			background-image: url(../images_sp/btn_credit2.png);
    			bottom: 37px;
    		}
    	}
    }
    */
    /*
    &#sec13{
    	&::before{
    		width: 100%;
    		height: 50vh;
    		position: relative;
    	}
    	&::after{ content: none; }
    	.photo{
    		>div{
    			span{
    				width: 100%;
    				height: auto;
    			}
    		}
    	}
    }
    */
  }
  main .sec::before {
    width: calc(100% - 74px);
    height: calc(100vh - 74px);
    margin: 0 auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  main .sec::after {
    content: "";
    width: 100%;
    height: 100vh;
    display: block;
  }
  main .sec .text {
    padding: 0px;
    position: sticky;
    left: 0px;
    top: 0px;
    z-index: 1;
  }
  main .sec .text .inner {
    width: 100%;
    padding: 0px;
    background-color: transparent;
    margin-bottom: 0;
  }
  main .sec .text .inner > dl {
    margin-bottom: 20px;
  }
  main .sec .text .inner > dl dt {
    color: #FFF;
    font-family: gill-sans-nova, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.9rem;
    letter-spacing: 0em;
  }
  main .sec .text .inner > dl dd {
    color: #FFF;
    font-family: gill-sans-nova, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 3.1rem;
    letter-spacing: 0em;
    margin-bottom: 0px;
  }
  main .sec .text .inner > dl dd + dd {
    display: none;
  }
  main .sec .text.active .inner .intext {
    opacity: 1;
    pointer-events: auto;
    position: fixed;
  }
  main .sec .photo {
    width: 100%;
    padding: 0px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    position: sticky;
    top: 0px;
    opacity: 0;
  }
  main .sec .photo div {
    width: 100%;
    padding: 0px;
    overflow: hidden;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    position: relative;
  }
  main .sec .photo div img {
    width: auto;
    height: 100vh;
  }
  main .sec .photo .cbtn {
    width: 86px;
    height: 13px;
    background-image: url(../images_sp/btn_credit.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;
    left: 20px;
    bottom: 40px;
    pointer-events: auto;
    display: block !important;
    cursor: pointer;
  }
  main .sec .photo.small {
    background-color: #FFF;
    height: 100vh;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  main .sec .photo.small div {
    padding: 0 60px;
  }
  main .sec .photo.small div img {
    width: 100%;
    height: auto;
  }
  main .sec#sec1::before {
    background-image: url(../images/image1.jpg);
  }
  main .sec#sec2::before {
    background-image: url(../images/image2.jpg);
  }
  main .sec#sec3::before {
    background-image: url(../images/image3.jpg);
  }
  main .sec#sec4::before {
    background-image: url(../images/image4.jpg);
  }
  main .sec#sec5::before {
    background-image: url(../images/image5.jpg);
  }
  main .sec#sec6::before {
    background-image: url(../images/image6.jpg);
  }
  main .sec#sec7::before {
    background-image: url(../images/image7.jpg);
  }
  main .sec#sec8::before {
    background-image: url(../images/image8.jpg);
  }
  main .sec#sec9::before {
    background-image: url(../images/image9.jpg);
  }
  main .sec#sec10::before {
    background-image: url(../images/image10.jpg);
  }
  main .sec#sec11::before {
    background-image: url(../images/image11.jpg);
  }
  main .sec#sec12::before {
    background-image: url(../images/image12.jpg);
  }
  main .sec#sec13::before {
    background-image: url(../images/image13.jpg);
  }
  main .sec#sec2::before {
    content: none;
  }
  main .sec#sec3::before, main .sec#sec6::before {
    width: 100%;
    height: 100vh;
    background-size: cover;
  }
  main .sec#sec9 .photo {
    padding: 58px 37px 0 37px;
  }
  main .sec#sec9 .photo img {
    width: 100%;
    height: auto;
  }
  main .sec#sec10::before {
    content: none;
  }
  main .sec#sec12::before {
    width: 100%;
    height: 100vh;
    background-size: cover;
  }

  .intext {
    width: 100%;
    height: auto;
    min-height: 100vh;
    background-color: rgba(255, 255, 255, 0);
    padding: 75px 20px 20px 20px;
    pointer-events: none;
    opacity: 0;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 333;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition: all 0.25s ease-in 0s;
  }
  .intext > dl {
    margin-bottom: 20px;
    display: block;
    order: 1;
  }
  .intext > dl dt {
    color: #111;
    font-family: gill-sans-nova, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.9rem;
    letter-spacing: 0em;
  }
  .intext > dl dd {
    color: #111;
    font-family: gill-sans-nova, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 3.1rem;
    letter-spacing: 0em;
    margin-bottom: 10px;
  }
  .intext p {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 2rem;
    letter-spacing: 0em;
    display: none;
  }
  .intext p:nth-child(2) {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
    padding: 20px 0 0 0;
    order: 4;
  }
  .intext p:nth-child(3) {
    color: #111;
    font-family: gill-sans-nova, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 2rem;
    letter-spacing: 0em;
    order: 5;
  }
  .intext p:not(:last-child) {
    margin-bottom: 10px;
  }
  .intext p:nth-child(4) {
    margin: 0px;
    padding: 0 0 80px 0;
    order: 6;
  }
  .intext .read {
    color: #111;
    font-family: gill-sans-nova, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 2rem;
    letter-spacing: 0em;
    text-decoration: underline;
    padding: 20px 0 0 0;
    order: 3;
    display: block;
    cursor: pointer;
    pointer-events: auto;
  }

  .credits {
    width: 100%;
    order: 2;
  }
  .credits .credit {
    width: 100%;
  }
  .credits .credit:not(:last-child) {
    margin-bottom: 10px;
  }
  .credits .credit dl.items__credit {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .credits .credit dl.items__credit dt {
    width: 80%;
  }
  .credits .credit dl.items__credit dt strong {
    display: block;
  }
  .credits .credit dl.items__credit dt strong:first-child {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.8rem;
    letter-spacing: 0em;
  }
  .credits .credit dl.items__credit dt strong:first-child span {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8rem;
    letter-spacing: 0em;
    padding: 0 0 0 5px;
    display: inline-block;
  }
  .credits .credit dl.items__credit dt strong:nth-child(2) {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8rem;
    letter-spacing: 0em;
  }
  .credits .credit dl.items__credit dt > span {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
  }
  .credits .credit dl.items__credit dd {
    text-align: right;
    width: 20%;
  }
  .credits .credit dl.items__credit dd a {
    color: #111;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.8rem;
    letter-spacing: 0em;
    text-decoration: underline;
  }

  #overlay {
    text-align: left;
    width: 100%;
    height: 100vh;
    overflow: scroll;
    pointer-events: none;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 9999;
    opacity: 0;
    display: block;
  }
  #overlay .intext {
    background-color: #FFF;
  }
  #overlay.active {
    pointer-events: auto;
  }
  #overlay.active .intext {
    pointer-events: auto;
    opacity: 1;
  }

  #thumbs ul.inner {
    padding: 70px 10px 70px 10px;
    box-sizing: border-box;
  }
  #thumbs ul.inner li {
    width: 50%;
    padding: 10px;
  }
  #thumbs ul.inner li a {
    display: block;
  }
  #thumbs ul.inner li a p:first-child {
    margin-bottom: 10px;
  }
  #thumbs ul.inner li a p:first-child img {
    transition: all 0.25s ease-in 0s;
  }
  #thumbs ul.inner li a p:last-child {
    color: #111;
    font-family: gill-sans-nova, sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 2.4rem;
    letter-spacing: 0em;
    transition: all 0.25s ease-in 0s;
  }
  #thumbs ul.inner li a:hover p:first-child img {
    opacity: 0.6;
  }
  #thumbs ul.inner li a:hover p:last-child {
    color: #999;
  }

  footer {
    text-align: left;
    width: 100%;
    max-width: 100%;
    padding: 0 0 90px 0;
  }
  footer .inner .credit {
    width: 100%;
    padding: 75px 37px;
    box-sizing: border-box;
    margin-bottom: 30px;
    border-top: solid 1px #111;
    border-bottom: solid 1px #111;
  }
  footer .inner .credit h5 {
    color: #111;
    font-family: gill-sans-nova, sans-serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 3rem;
    letter-spacing: 0em;
    margin-bottom: 20px;
  }
  footer .inner .credit p {
    color: #111;
    font-family: gill-sans-nova, sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2.4rem;
    letter-spacing: 0em;
    text-align: left;
  }
  footer .inner .info {
    width: 100%;
    padding: 0 37px;
    box-sizing: border-box;
  }
  footer .inner .info p:first-child {
    color: #111;
    font-family: gill-sans-nova, sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 3rem;
    letter-spacing: 0em;
    margin-bottom: 30px;
  }
  footer .inner .info p:last-child {
    color: #111;
    font-family: gill-sans-nova, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0em;
  }
  footer .inner ul {
    width: 100%;
    padding: 0 37px;
    margin-bottom: 30px;
    box-sizing: border-box;
  }
  footer .inner ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  footer .inner ul li a span {
    color: #111;
    font-family: gill-sans-nova, sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0em;
  }
  footer .inner ul li a:hover span {
    color: #999;
  }
  footer .inner.active {
    opacity: 1;
  }
  footer .pgtop {
    width: 82px;
    height: 12px;
    position: absolute;
    right: 15px;
    bottom: 40px;
  }
  footer .pgtop a {
    width: 100%;
    height: 100%;
    background-image: url(../images/text_pagetop.png);
    text-align: left;
    text-indent: 999%;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all 0.25s ease-in 0s;
  }
  footer .pgtop a:hover {
    opacity: 0.7;
  }
}

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