@charset "UTF-8";
html {
  font-size: 62.5%;
  background-color: white;
  display: block;
  height: -webkit-fill-available;
}

/* support iOS */
body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  font-size: 1.6rem;
  overflow-y: scroll;
}

.container {
  display: block;
  background-color: #333;
  width: 95dvw;
  min-height: 98lvh;
  text-align: center;
  margin: 0 auto;
}
.container img {
  background-color: #fff;
}
.container .upper {
  text-transform: uppercase;
}

header {
  width: 95dvw;
  display: block;
}
header .logo {
  position: absolute;
  top: 3rem;
  left: 2rem;
  width: 8rem;
  height: 8rem;
}
header .sns {
  position: absolute;
  right: 2rem;
  top: 3rem;
  width: 5.5rem;
  height: 5.5rem;
}
header .icon {
  position: relative;
}
header span {
  display: block;
  position: absolute;
  text-align: center;
  top: 1rem;
  width: 95dvw;
  height: 5vh;
  background-color: rgb(200, 200, 200);
  z-index: 100;
}

.mainContainer {
  display: block;
  position: absolute;
  top: 8rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  text-align: center;
  width: 90dvw;
  height: 85lvh;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  background-color: #333;
  z-index: 999;
}
.mainContainer .bSlide {
  width: auto;
  height: 85lvh;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .mainContainer .bSlide {
    margin: 0.2rem auto;
  }
  .mainContainer .bSlide img {
    width: auto;
    -o-object-fit: cover;
       object-fit: cover;
    height: 95lvh;
    overflow: hidden;
  }
}

.bSlide > li {
  opacity: 0;
  position: absolute;
  transition: opacity 3s ease-in-out;
  /*フェード時間・イージング*/
}

.bSlide > li.showSlide {
  opacity: 1;
}

.slideContainer {
  width: 95dvw;
  height: 85lvh;
  position: fixed;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  text-align: center;
  overflow: hidden;
  margin: 0 auto;
  z-index: 100;
}
.slideContainer .slide {
  border: #333 solid 0.5rem;
  height: 28lvh;
  width: 100%;
  margin-top: -0.3rem;
}
.slideContainer .slide:nth-of-type(even) {
  height: 15lvh;
}

.slider {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: transparent;
  justify-content: space-around;
  /*ul全体の境界線を指定*/
}
.slider .card {
  width: 25dvw;
  padding: 0 3rem;
  background-color: transparent;
  border-left: 0.5rem solid #333;
  border-right: 0.5rem solid #333;
}
.slider li:nth-of-type(odd) {
  width: 8dvw;
}
.slider span {
  width: 100%;
  display: block;
  height: 100%;
}

.menuBox {
  text-transform: uppercase;
  position: absolute;
  top: 55lvh;
  left: 8rem;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  font-size: 2.4rem;
  letter-spacing: 1.2rem;
  line-height: 3rem;
  background-color: rgba(200, 200, 200, 0.5);
  padding: 2rem;
}
.menuBox li {
  margin-top: 1.5rem;
  text-align: start;
  width: 25dvw;
}
.menuBox li:nth-of-type(even) {
  text-align: end;
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 1024px) {
  .menuBox {
    left: 2rem;
    width: 75dvw;
    font-size: 1.8rem;
  }
}
.contentContainer {
  display: none;
  text-align: center;
  padding-top: 100lvh;
  padding-bottom: 10lvh;
  background-color: #333;
  width: 95dvw;
  margin: 0 auto;
  justify-content: center;
}
.contentContainer h2 {
  width: 95dvw;
  color: #333;
  padding-top: 0.5rem;
  line-height: 1.8;
  letter-spacing: 0.5rem;
  font-size: 3.2rem;
  background-color: rgb(200, 200, 200);
  vertical-align: baseline;
}
.contentContainer h3 {
  color: rgb(200, 200, 200);
  font-size: 2.4rem;
  padding-top: 0.5rem;
}
.contentContainer ul {
  display: grid;
  justify-content: space-around;
  margin: 3rem auto;
  width: 80dvw;
  grid-template-columns: repeat(5, 1fr);
  gap: 3rem 1rem;
}
.contentContainer li {
  display: flex;
  justify-content: center;
}
.contentContainer article {
  display: block;
}
.contentContainer article.illust section {
  display: flex;
}
.contentContainer .menu {
  color: rgb(200, 200, 200);
  margin-top: 3rem;
  width: 10rem;
  height: 3rem;
  font-size: 2.1rem;
  cursor: pointer;
}
.contentContainer .biography {
  position: absolute;
  background-image: url(../image/passtime/swing.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 95dvw;
}
.contentContainer .biography .box {
  position: absolute;
  text-align: end;
  top: 10lvh;
  left: 5dvw;
  background-color: rgba(218, 213, 213, 0.8);
  padding: 3rem;
}
.contentContainer .biography .box h3 {
  color: #333;
  border-bottom: #333 solid 0.6rem;
}
.contentContainer .biography .box p {
  line-height: 3rem;
  letter-spacing: 0.5rem;
}
.contentContainer .biography .work {
  position: absolute;
  text-align: start;
  top: 45lvh;
  left: 50dvw;
  padding: 3rem;
  background-color: rgba(218, 213, 213, 0.8);
}
.contentContainer .biography .work h3 {
  color: #333;
  border-bottom: #333 solid 0.6rem;
}
.contentContainer .biography .work p {
  line-height: 2.5rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 1024px) {
  .contentContainer .biography .work,
  .contentContainer .biography .box {
    position: relative;
    top: 0;
    left: 0;
    margin: 1rem auto;
  }
}
.contentContainer .illust article {
  display: flex;
}
.contentContainer .illustList {
  display: none;
}
.contentContainer .illustList a {
  display: flex;
}
.contentContainer .illustList p {
  font-size: 1.4rem;
  text-align: center;
  width: 50%;
}
.contentContainer .illustList.show {
  width: 95dvw;
  display: grid;
}
@media screen and (max-width: 1024px) {
  .contentContainer .illustList.show .illustList {
    display: grid;
  }
}
.contentContainer .lButton.show::after {
  content: "";
  background-image: url(../icons/arrow-big-left-lines.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 6rem;
  height: 6rem;
  position: fixed;
  cursor: pointer;
  top: 55lvh;
  right: 9rem;
}
@media screen and (max-width: 1024px) {
  .contentContainer .lButton::after {
    position: fixed;
    top: 70lvh;
  }
}
.contentContainer .lButton {
  display: none;
  position: fixed;
  text-indent: -9999px;
}
.contentContainer .lButton.show {
  display: block;
}
.contentContainer .illustSample {
  display: none;
}
.contentContainer .illustSample.show {
  display: block;
}
.contentContainer .illustSample .ilList {
  display: grid;
  width: 90dvw;
  margin-bottom: 10lvh;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(3, 0.5fr);
  gap: 0.3rem;
  grid-template-areas: "area1 area2 area2 area3 area4 area9" "area5 area5 area6 area6 area7 area7" "area5 area5 area6 area6 area8 area8";
}
.contentContainer .illustSample .ilList li {
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.contentContainer .illustSample .ilList .sButton {
  width: 25rem;
  height: auto;
  color: rgb(200, 200, 200);
  font-size: 3rem;
  text-align: end;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .contentContainer .illustSample .ilList {
    display: block;
  }
  .contentContainer .illustSample .ilList li {
    height: 10rem;
    width: auto;
    overflow: hidden;
    -o-object-fit: cover;
       object-fit: cover;
    align-items: center;
    text-align: center;
  }
  .contentContainer .illustSample .ilList .sButton {
    text-align: center;
  }
}
.contentContainer .illustSample .area1 {
  grid-area: area1;
}
.contentContainer .illustSample .area2 {
  grid-area: area2;
}
.contentContainer .illustSample .area3 {
  grid-area: area3;
}
.contentContainer .illustSample .area4 {
  grid-area: area4;
}
.contentContainer .illustSample .area5 {
  grid-area: area5;
}
.contentContainer .illustSample .area6 {
  grid-area: area6;
}
.contentContainer .illustSample .area7 {
  grid-area: area7;
  align-items: center;
}
.contentContainer .illustSample .area8 {
  grid-area: area8;
  align-items: center;
}
.contentContainer .illustSample .area9 {
  grid-area: area9;
}

img {
  max-block-size: none;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  img {
    width: 100%;
  }
}

.open {
  position: relative;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .open .webDesine ul {
    display: flex;
    flex-wrap: wrap;
  }
  .open .webDesine ul li {
    width: 15rem;
    height: 15rem;
  }
  .open .contact {
    height: 250lvh;
  }
}

#colorbox #cboxContent {
  position: relative;
  z-index: 30;
  background-color: transparent;
  padding: 8px 5rem;
  border: none;
  box-shadow: 0 0 12px -6px rgba(0, 0, 0, 0.6);
}

#colorbox #cboxPrevious,
#colorbox #cboxNext {
  background: none;
  width: 10rem;
  height: 100%;
  margin-top: 0;
  top: 0;
  z-index: 11;
}

#colorbox #cboxClose {
  background: none;
  width: 100%;
  height: 10rem;
  top: 0;
  right: 0;
  z-index: 31;
}

#colorbox #cboxPrevious::before {
  background-image: url(../icons/transition-left.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: block;
  width: 5rem;
  height: 5rem;
  position: absolute;
  top: 50%;
  left: 1rem;
  opacity: 0.8;
}

#colorbox #cboxNext::before {
  background-image: url(../icons/transition-right.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: block;
  width: 5rem;
  height: 5rem;
  position: absolute;
  top: 50%;
  right: 1rem;
  opacity: 0.8;
}

#colorbox #cboxClose::before {
  background-image: url(../icons/square-x.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: block;
  width: 5rem;
  height: 5rem;
  opacity: 0.5;
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 15;
}

iframe {
  width: 100%;
  height: 1750px;
}

footer {
  position: fixed;
  display: block;
  width: inherit;
  text-align: center;
  top: 95lvh;
  left: 0;
  color: rgb(200, 200, 200);
}
footer .goTop {
  display: none;
}
footer .goTop.show {
  display: block;
}
footer .goTop img {
  width: 6rem;
  height: 6rem;
  position: fixed;
  top: 90lvh;
  left: 90dvw;
  background-color: transparent;
  color: rgb(200, 200, 200);
}
@media screen and (max-width: 1024px) {
  footer .goTop img {
    left: 75dvw;
  }
}/*# sourceMappingURL=style.css.map */