@charset "UTF-8";
/* 矢印調整 */
.arrow-1 {
  position: absolute;
  left: 20px;
  top: 392.2px;
  padding: 50px 20px;
}
.arrow-2 {
  position: absolute;
  right: 20px;
  top: 392.2px;
  padding: 50px 20px;
  
}
/* ＞実装 */
.dli-chevron-right {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 1.5px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}

.dli-chevron-left {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 1.5px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(25%) rotate(-135deg);
}
/* ＞実装ここまで */

/* 全体のスクロールバー */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
/* スクロールバーのレール部分 */
::-webkit-scrollbar-track {
  background-color: rgba(121, 121, 121, 0.1);
}
/* スクロールバーのつまみ部分 */
::-webkit-scrollbar-thumb {
  background-color:rgba(221, 221, 221, 0.5);
}
/* 文字の出現仮 */

@keyframes randomText {
  0% {
    content: "";
  }
  100% {
    content: attr(data-text);
  }
}
/* アーティスト写真 */
.pageLeft {
  height: 57vh;
  height: 57dvh;
  width: auto;
}
.pageLeft > img {
  height: 57vh;
  height: 57dvh;
  width: auto;
  border-radius: 10px;
  box-shadow: 2px 2px 10px #707070;
  vertical-align: top;
}

/* personal SNS link */
.pageLeft .snsLink {
  width: 150px;
  height: 40px;
  margin: 0 0 0 auto;
}
.pageLeft .snsLink img {
  width: 30px;
  height: auto;
  margin: 10px 0 0 20px;
}

.pageRight {
  width: 40vw;
  height: 55vh;
  height: 55dvh;
  text-align: start;
}
h2 {
  font-size: 36px;
  font-family: 'Zen Antique', serif;
  margin-bottom: 20px;
  text-align: center;
  height: 48px;
}
h2 p {
  width: 100vw;
  height: 48px;
}
.profileTag ul {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.profileTag ul li {
  margin : 0 10px;
}

/* profile tag Button */
.btn_10 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 20px;
  box-sizing: border-box;
  position: relative;
}
.btn_10 span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 20px;
  background: #fff;
  box-sizing: border-box;
  color: #333;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-decoration: none;
  box-shadow: 3px 3px 5px #747c87, -1px -1px 12px #FFF;
  border-radius: 10px;
  position: absolute;
  top: -1px;
  right: 5px;
  transition-duration: 0.2s;
}
/* アートボタンの変更記述 */
.artWorks .btn_10 span {
  font-size: 12px;
  color: #ffffff;
  background: #000000;
}
.btn_10:hover span {
  top: 0;
  right: 0;
  box-shadow: 0 0 1px #CAD4E2, 1px 1px 0px #FFF;
}

/* profilr iframe */
.pageText {
  width: 35vw;
  height: 43vh;
  height: 43dvh;
  margin: 0 0 0 auto;
}
.pageText iframe {
  width: 35vw;
  height: 43vh;
  height: 43dvh;
}

/* iframe中身 */
.profWrap {
  font-family: "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
  margin-bottom: 320px;
}
tr {
  vertical-align: top;
}
td {
  padding: 0 5px 10px;
}

/* artWorksLink */
.artWorks {
  width: 100px;
  height: 20px;
  margin: 25px 0 0 auto;
}

/* footer SNSlink */
footer .snsLink {
  display: none;
}


/* 狭画面 */
@media screen and (max-width:960px) {
  .arrow-2 {
    /* right: 0; */
    display: none;
}
.arrow-1 {
    left: 70px;
    top: 92.7px;
}

.artWorks button::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 18px;
  height: 18px;
  border: 1.5px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  margin-left: 5px; /* 矢印とテキストの間隔 */
  position: absolute;
  left: 100%;
  animation: fadein 3.5s forwards;
}
}
  /* スマホ版 */
@media screen and (max-width:640px) {
  h2 {
    font-size: 28px;
  }
  .pageLeft > img {
    height: 20vh;
    height: 20dvh;
    position: absolute;
    top: 0;
    left: 10%;
  }
  .arrow-1 {
    display: none;
  }
  
  .pageLeft {
    height: 25vh;
    height: 25dvh;
    width: auto;
    text-align: start;
    margin-top: 5vh;
    margin-top: 5dvh;
    margin-bottom: 20px;
  }
  .page {
    margin: 0 auto;
    position: relative;
  }
  .pageLeft .snsLink {
    width: 107px;
    position: absolute;
    top: 20vh;
    top: 20dvh;
    left: 10%;
  }
  .pageLeft .snsLink img {
    width: 20px;
    height: auto;
    margin: 10px 0 0 0;
  }
  .profileTag {
    position: absolute;
    top: 0;
    right: 5%;
  }
  .profileTag ul {
    display: block;
    margin-bottom: 10px;
  }
  .profileTag ul li {
    margin-bottom: 10px;
  }

  .pageRight {
    width: 95vw;
    height: 30vh;
    height: 30dvh;
    margin: 5vh auto;
    margin: 5dvh auto;
  }
  .pageText {
    width: 95vw;
    height: 30vh;
    height: 30dvh;
    margin: auto;
    position: relative;
  }
  .pageText iframe {
    width: 95vw;
    height: 30vh;
    height: 30dvh;
  }
  .artWorks {
    margin: 10px 0 0 auto;
    position: absolute;
    right: 5%;
    top: -45px;
  }
  .artWorks button::before {
    width: 10px;
    height: 10px;
    margin-left: 0;
  }
}
