@import url(reset.css);

html {
  scroll-behavior: smooth;
}

img {
  vertical-align: bottom;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

a:hover {
  cursor: url(../images/pointCursor.webp), auto;
}

/* 問題
ファイル層の問題：一つのファイルに複数のhtmlをおいてもいいのか？
押せば言語を変れるボタンをどうやって作れる？
worksのコンテンツに全てのサイズのデバイスに中央に置くこと
lightサイトのcursor問題
doll pageの6枚組写真サイズ1pxの差がある
doll page 960px以下構造問題（他のページにも）
*/

/* font */
/* 
font-family: 'Kanit', sans-serif;300,700,Italic:400,700
font-family: 'Montserrat Subrayada', sans-serif;400,700
.black-ops one-regular {
  font-family: "Black Ops One", system-ui;
  font-weight: 400;
  font-style: normal;
}
 */
/* body */
body {
  cursor: url(../images/bodyCursor.webp), auto;
  font-family: 'Kanit', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: rgb(217, 217, 217);
  height: auto;
  position: relative;
}

body.page_about header,
body.page_about .hamburger,
body.page_about p.blank,
body.page_contact header,
body.page_contact .hamburger,
body.page_contact p.blank,
body.page_works header,
body.page_works .hamburger,
body.page_works p.blank,
body.page_photo header,
body.page_photo .hamburger,
body.page_photo p.blank,
body.page_lSM header,
body.page_lSM .hamburger,
body.page_lSM p.blank,
body.page_dontPut header,
body.page_dontPut .hamburger,
body.page_dontPut p.blank,
body.page_asagaya header,
body.page_asagaya .hamburger,
body.page_asagaya p.blank {
  animation: none;
}

body.page_dontPut,
body.page_lSM {
  background-color: rgba(199, 204, 193, 1);
}

body.page_asagaya{
  background-color: #831111;
}
body.page_contact,
header.bgclear {
  background-color: rgba(0, 0, 0, 0);
}

/* sp用 */
/* opening */

.opening {
  background: url(../images/opening.webp) center center / cover no-repeat;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  animation: openingFade 3s 2s both;
  font-family: 'Kanit', sans-serif;
}

@keyframes openingFade {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    display: none;
  }
}

.openingTxtPC {
  display: none;
}

.openingTxtSP {
  color: #b9261e;
  font-size: 48px;
  text-align: center;
  padding-top: 138px;
  font-weight: 600;
  animation: InFade 2.5s .3s both;
}

@keyframes InFade {
  0% {
    opacity: 0;
  }

  70% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    display: none;
  }
}

span {
  font-size: 36px;
  font-style: italic;
  font-weight: 300;
}

/* header */

header {
  padding: 9px 12px 0;
  min-height: 54px;
  box-sizing: border-box;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  transition: all .2s ease;
}

.logo {
  margin-top: 11px;
}

.logo a {
  color: #3d3d3d;
  font-size: 16px;
  font-weight: 700;
}

main {
  flex: 1;
}

.main_navPC {
  display: none;
}

/* hamburger */
.hamburger {
  width: 34px;
  height: 34px;
  position: fixed;
  right: 7px;
  top: 6px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #3d3d3d;
  position: absolute;
  transition: all .4s ease;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hamburger span:nth-child(1) {
  top: 50%;
}

.hamburger span:nth-child(2) {
  top: 50%;
}

.hamburger.close span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, 0) rotate(405deg);
}

.hamburger.close span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
}

header,
p.hamburger {
  animation: headerDelay 1s 2.4s both;
}

@keyframes headerDelay {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


/* drawer */
.drawer {
  background-color: rgba(157, 155, 158, 0.8);
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
  transition: all .4s ease;
  z-index: 100;
  display: grid;
  place-items: center;
}

.drawer.show {
  right: 0;
}

.drawer ul.main_nav li {
  margin-top: 15px;
}

.drawer ul.main_nav li a {
  display: block;
  text-align: center;
  color: #831111;
  font-size: 20px;
  font-weight: 700;
  padding: 13px;
  line-height: 1.5;
  font-family: 'Montserrat Subrayada', sans-serif;
}

.subNavSP {
  margin-top: 72px;
}

.subNavSP li {
  margin-top: 9px;
  text-align: center;
}

.subNavSP li a {
  display: block;
  line-height: 1.5;
  padding: 9px;
  font-size: 16px;
  color: #831111;
  font-weight: 700;
  font-style: italic;
}

/* main */

.about,
.contact h1 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}

/* about */
.about {
  text-align: center;
  margin-top: 141px;
  color: rgba(44, 86, 44, 1);
}

.about p {
  padding: 42px 63px 0;
  line-height: 2;
  font-weight: 400;
  font-size: 15px;
}

/* contact */
.contact {
  color: #575a57;
  text-shadow: rgb(173, 176, 219) 1px 0 6px;
  margin: 60px 18px 0px;
}

.cantactbg {
  padding-top: 18px;
  background: url(../images/h1812px.webp) center center / auto 700px no-repeat;
  box-sizing: border-box;
  margin-top: 22px;

}

.formArea {
  border-radius: 30px;
}

.mailForm dt {
  margin-left: 15px;
  margin-top: 21px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.47;
}

.mailForm dd {
  margin-top: 6px;
  border-bottom: solid 1px rgba(44, 86, 44, 1);
  padding-bottom: 12px;

}

.mailForm dd:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mailForm dd input[name="titBox"],
.mailForm dd input[name="nameBox"],
.mailForm dd input[name="kanaBox"],
.mailForm dd input[name="emailBox"],
.mailForm dd input[name="telBox"],
.mailForm dd textarea[name="messageBox"] {
  border: none;
  padding: 4px;
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
  color: rgb(55, 85, 56);
  border-radius: 0;
  background-color: #ccccccb6;
}

.mailForm dd textarea[name="messageBox"] {
  height: 139px;
}

p.send_btn {
  margin-top: 23px;
  text-align: right;
}

.send_btn input[name="send"] {
  appearance: none;
  border-radius: 12px;
  border: solid 1px rgba(89, 87, 90, 1);
  background-color: rgba(0, 0, 0, 0);
  color: rgba(89, 87, 90, 1);
  text-shadow: rgb(173, 176, 219) 1px 0 6px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 0 22px;
  margin-right: 24px;
}

/* footer */
footer {
  margin-top: 42px;
  background-color: rgba(80, 91, 80, 1);
  color: white;
  text-align: center;
  height: 116px;
  width: 100%;
}

.link a.musicLinkforPC {
  display: none;
}

.link {
  padding-top: 16px;
}

.link a {
  font-size: 14px;
  display: block;
  margin-top: 2px;
  padding: 4px;
  color: white;
  line-height: 1.5;
}

footer p.Jupielle {
  margin: 12px 10px 0;
  font-size: 12px;
  font-weight: 300;
}
p.footer02{
  font-size: 11px;
  font-weight: 300;
  color: #b4b4b4;
  text-align: center;
  margin: 80px auto 10px;
}
/* works */

.icon_list {
  text-align: center;
  margin-top: 126px;
}

.icon_list li {
  margin-top: 60px;
}

.icon_list li a {
  display: block;
}

.icon_list li a h1 {
  font-size: 14px;
  font-weight: 700;
  color: #2c562c;
}

.icon_list li a p {
  margin-top: 18px;
  animation: iconFade 2s .1s both;
}

@keyframes iconFade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* photography */

.photoLi {
  margin: 116px 18px auto;
}

.photoSec {
  height: 153px;
  border-radius: 30px;
  background-color: red;
  margin-top: 36px;
  position: relative;
}

.photoSec h1 {
  color: rgb(226, 226, 226);
  font-size: 20px;
  position: absolute;
  bottom: 13px;
  left: 30px;
  font-style: italic;
  font-weight: 400;
}

.p_Sec1 {
  background: url(../images/iconPhoto1.webp) center center / cover no-repeat;
}

.p_Sec2 {
  background: url(../images/iconPhoto2.webp) center center / cover no-repeat;
}

.p_Sec3 {
  background: url(../images/iconPhoto3.webp) center center / cover no-repeat;

}

/* photo_Dont */
.picLi_D {
  margin: 83px auto 134px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.picLi_D li {
  margin: 33px 100px 0;
}

.picLi_D li img {
  height: 153px;
  display: block;
}

/* light,shadow,mist */
.lightSMLi:first-child {
  margin-top: 82px;
}

.lightSMLi {
  margin-top: 196px;
  text-align: center;
}

.lightSMLi li {
  margin-top: 13px;
}

.singlePic li a img,
.lightSMLi li a img {
  height: 260px;
}

.lightflex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.lightflex li a img {
  height: 193px;
}

.singlePic {
  margin-top: 196px;
  text-align: center;
}

.singlePic li {
  margin-top: 96px;
}
.LIghtSMtxt{
margin-left: 10px;
color: #919191;
font-size: 14px;
letter-spacing: 1px;
}
/* music */
.musicbox2forPC{
  display: none;
}
.musicBox {
  margin-top: 76px;
}

.tab_btn li {
  flex: 1;
  border: #2c562c 1px solid;
  border-radius: 12px;
  display: inline-block;
  background-color: rgb(217, 217, 217);
  z-index: 100;
}

.panel1 {
  border: #2c562c 1px solid;
  border-radius: 12px;
  margin: 0 18px;
  padding: 7px;
}

.panel1 h1.ttl_year {
  cursor: url(../images/pointCursor.webp), auto;
  color: #a7a7a7;
  padding: 0 10px;
  line-height: 1.5;
  font-size: 24px;
  font-family: "Black Ops One", system-ui;
  font-weight: 400;
  font-style: normal;

}

.panel1 .musicbox1 {
  text-align: center;
  border-radius: 12px;
  background: url(../images/ishiko_h2023px.webp) center center / cover no-repeat;
  height: 363px;
  margin: 0 auto;
}

.musicbox1 .grid {
  padding-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 18px);
  grid-template-rows: repeat(3, 18px);
  gap: 98px;
  justify-content: center;
  align-items: center;
}

.musicbox1 .grid span.item {
  display: block;
  background-color: #831111;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}
.musicAbbr{
  text-align: right;
  font-size: 12px;
  color: #919191;
  margin-top: 8px;
  margin-right: 18px;
}
/* doll */
.doll_mainpic {
  background: url(../images/doll_pic1.webp) center center / cover no-repeat;
  height: 100vh;
}
.doll_mainpic2{
  background: url(../images/doll_pic11.webp) center center / cover no-repeat;
  height: 100vh;
  margin-top: 196px;
  position: relative;
}
.doll_picBox {
  margin-top: 196px;
}

.doll_picBox a img {
  width: 100vw;
  height: 100%;
}
.doll_picBoxFlex > p,
.doll_picBox>p {
  text-align: right;
  margin-right: 10px;
}

.doll_picBox .doll_ttl {
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.5;
  color: #626262;
}


.doll_picBoxFlex a img{
margin: 3px;
}
.doll_picBoxFlex{
  margin: 55px 18px 0;

}
.dollflexbox{
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}

.doll_picBoxFlex a img {
  height: 170px;
  width: auto;
}

.doll_picBoxFlex .doll_abbr,
.doll_picBox .doll_abbr {
  font-size: 11px;
  color: #939393;
  line-height: 1.46;
}
.doll_mainpic2 p.footer02{
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translatex(-50%);
}
/* painting */

.paintingyear{
  margin: 0 18px;
  text-align: center;
}
.paintingPicLi a img{
text-align: center;
}
.paintingTtl{
  text-align: center;
  font-size: 36px;
  font-style: italic;
  color: #a7a7a7;
  margin-top: 180px;
}
.paintingflex{
  display: flex;
  justify-content: space-between;
  margin-top: 136px;
}
.paintingtxt{
  font-size: 14px;
  margin-top: 30px;
  line-height: 1.5;
  color: #626262;
  margin-right: 10px;
}
.paintingabbr{
  font-size: 11px;
  color: #939393;
  line-height: 1.46;
  margin-right: 10px;

}
.pt0405{
  display: flex;
  justify-content: space-between;
  margin-top: 66px;
}
.paintingPicLi{
  margin-top: 132px;
}

/* pc用 */

@media only screen and (min-width:960px) {

  /* 全body */
  body.page_lSM,
  body.page_asagaya {
    background-color: rgba(255, 255, 255, 0);
  }


  p.blank {
    display: block;
    height: 40px;
    width: 100%;
    background-color: white;
    animation: headerDelay 1s 2s both;
  }

  .drawer {
    display: none;
  }

  @keyframes openingFade {
    0% {
      opacity: 1;
    }

    100% {
      opacity: 0;
      display: none;
    }
  }

  .opening {
    top: 0;
    width: 100%;
    height: 1459px;
  }

  .openingTxtSP {
    display: none;
  }

  .openingTxtPC {
    display: block;
  }

  .openingTxtPC {
    font-weight: 600;
    font-size: 64px;
    padding-top: 0;
    line-height: 1.5;
    position: relative;
    top: 0;
    left: 50px;
    color: #b9261e;
    animation: InFade 2.5s .3s both;
  }

  .hamburger {
    display: none;
  }

  .wrapper {
    width: 1000px;
    margin: 0 auto;
  }

  header {
    padding-top: 15px;
    right: 10.9375%;
    left: 10.9375%;
    top: 0px;
    position: fixed;
    display: flex;
    justify-content: space-between;
    animation: headerDelay 1s 3s both;
  }

  .logo {
    margin-top: 0;
  }

  .logo a {
    color: #2c562c;
    padding-bottom: 3px;
    display: block;
    line-height: 1.5;
    transform: scale(1);
    transition: .3s;
  }

  .logo a:hover {
    color: rgb(214, 203, 203);
    text-shadow: rgb(176, 0, 0) -3px 4px, rgb(57, 96, 66) 3px -4px;
    font-weight: 300;
    transform: scale(1.3);
  }


  .main_navPC {
    display: block;
  }

  .menuPC {
    display: flex;
    position: relative;
  }

  .menuPC li {
    margin-left: 90px;
  }

  .menuPC li a {
    display: block;
    padding: 6px;
    font-size: 16px;
    font-weight: 700;
    color: #2c562c;
    transition: .3s;
    transform: scale(1);
  }



  .menuPC li a:hover {
    color: rgba(139, 15, 15, 1);
    transform: scale(1.2);
  }

  .menuPC .sub {
    left: 50%;
    width: 120px;
    position: absolute;
    z-index: 10;
    transform: translateX(-50%);
    width: 130px;
    height: 75px;
    display: none;
  }

  .main_navPC .menuPC>li {
    position: relative;
  }

  .menuPC .sub li {
    overflow: hidden;
    margin-left: 0;
    border: solid 1px rgba(139, 15, 15, 1);
  }

  .menuPC .sub li+li {
    border-top: none;
  }

  .menuPC .sub li a {
    background-color: #a3b1a35a;
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    font-style: italic;
    padding: 0;
    display: inline-block;
    width: 100%;
    line-height: 1.5;
    color: rgba(139, 15, 15, 1);
  }

  .menuPC .sub li a:hover {
    background-color: #4342479c;
    color: #d7c1aa;
    text-shadow: rgba(48, 17, 184, 0.74) 0 1px 6px;
  }

  .menuPC .sub li a:hover .sub li {
    padding-bottom: 1px;
  }



  /* main */

  .mainspace {
    height: 1449px;
  }

  .about {
    margin-top: 210px;
  }

  .about,
  .contact h1 {
    font-size: 48px;
  }

  .about p {
    padding: 88px 190px 0;
    line-height: 1.8;
    font-size: 18px;
  }

  .contact {
    margin-top: 161px;
  }

  .contact h1 {
    text-align: right;
    margin-right: 192px;
  }

  .cantactbg {
    padding-top: 18px;

    background-size: auto 1252px;
    box-sizing: border-box;
    margin-top: 22px;
    padding: 200px 0;
  }

  .formArea {
    margin-top: 28px;
    padding: 77px 120px 39px;
  }

  .mailForm dt {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.5;
    float: left;
    clear: both;
  }

  .mailForm dd {
    margin-top: 0px;
    padding: 24px 0px 24px 240px;
  }

  .mailForm dd input[name="titBox"],
  .mailForm dd input[name="nameBox"],
  .mailForm dd input[name="kanaBox"],
  .mailForm dd input[name="emailBox"],
  .mailForm dd input[name="telBox"],
  .mailForm dd textarea[name="messageBox"] {
    padding: 6px 9px;
    font-size: 16px;
    width: 443px;
    box-sizing: border-box;
    border-radius: 0;
  }

  .mailForm dd input[name="titBox"] {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .mailForm dd input[name="nameBox"],
  .mailForm dd input[name="kanaBox"] {
    width: 264px;
  }

  .mailForm dd input[name="emailBox"] {
    width: 341px;
  }

  .mailForm dd input[name="telBox"] {
    width: 211px;
  }

  .mailForm dd textarea[name="messageBox"] {
    width: 100%;
    height: 169px;
  }

  p.send_btn {
    display: inline-block;
    background: url(../images/contact_icon01.svg) left center no-repeat;
    margin-top: 56px;
  }

  p.send_btn span {
    display: block;
    padding: 0 0 0 72px;
  }

  .send_btn input[name="send"] {
    font-size: 24px;
    padding: 0 42px;
    transition: .3s;
  }

  .send_btn input[name="send"]:hover {
    background-color: #a7acc8;
    color: white;
    font-weight: 300;
    cursor: url(../images/pointCursor.webp), auto;

  }



  .link {
    padding-top: 0px;
    margin: 69px 0 0 80px;
  }

  .link a {
    display: block;
    font-size: 16px;
    padding: 7px;
    transition: .3s;
    margin-top: 6px;
  }

  .link a:hover {
    color: #9ecd9e;
  }

  /* footer */
  .link a.musicLinkforPC {
    display: block;
  }

  footer {
    margin-top: 60px;
    height: 224px;
    display: flex;
    justify-content: space-between;
  }

  .link {
    margin-top: 70px;
  }

  footer p.Jupielle {
    font-size: 14px;
    margin: 166px 80px 0 0;
  }

  .link a img {
    height: 45px;
  }

  p.footer02{
    margin: 12px 10px 0;
    font-size: 14px;
    margin: 139px auto 15px;
  }


  /* 
  align-items: flex-end;効かない？
*/

  /* works */
  .centerBox {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  body.page_works main {
    min-height: 410px;
  }

  .icon_list {
    display: flex;
    flex: 1;
    justify-content: space-between;
    width: 693px;
    padding: 0 100px;
    margin-top: 0;
    transform: translateY(-40%);
  }

  .icon_list li {
    justify-content: center;
    transform: translateY(10%);
  }

  .icon_list li a img {
    height: 169px;
  }

  .icon_list li a img.painting {
    height: 160px;
  }

  .icon_list li a h1 {
    font-size: 24px;
    transform: scale(1);
    transition: .4s;
  }

  .icon_list li a p {
    margin-top: 55px;
  }

  .icon_list li a p img {
    transform: scale(1);
    transition: .4s;
  }

  .icon_list li .Photography {
    margin-left: -5px;
  }

  .icon_list li a:hover h1 {
    transform: translateY(-6px);
    color: #8C8E70;
  }

  .icon_list li a:hover p img {
    transform: scale(0.9);
    transform-origin: center;
  }

  /* photography */

  .photoSec h1 {
    font-size: 13px;
    left: 44px;
  }

  .photoLi li a .photoSec {
    overflow: hidden;
  }

  .photoSec .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: -100%;
    top: 0;
    background-color: rgba(255, 255, 255, 0.53);
    transition: .3s;
  }

  .photoLi li a:hover .photoSec .bg {
    left: 0;
  }

  .photoLi li a:hover h1 {
    color: rgba(139, 15, 15, 1);
    font-size: 40px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    transition: .3s;
  }



  /* photo_Dont */
  .picLi_D {
    position: relative;
    display: block;
    height: 1924px;
    margin-bottom: 0;
  }

  .picLi_D li img {
    height: 232px;
  }

  .picLi_D li img:hover {
    cursor: url(../images/pointCursor.webp), auto;
  }

  #DontP1 {
    position: absolute;
    left: 24.8%;
  }

  #DontP2 {
    position: absolute;
    top: 174px;
    left: 4.3%;
  }

  #DontP3 {
    position: absolute;
    top: 232px;
    left: 46.6%;
  }

  #DontP4 {
    position: absolute;
    top: 160px;
    left: 73.6%;
  }

  #DontP5 {
    position: absolute;
    top: 368px;
    left: 22.2%;
  }

  #DontP6 {
    position: absolute;
    top: 489px;
    left: 61.7%;
  }

  #DontP7 {
    position: absolute;
    top: 544px;
    left: 84.8%;
  }

  #DontP8 {
    position: absolute;
    top: 605px;
    left: 38.1%;
  }

  #DontP9 {
    position: absolute;
    top: 656px;
    left: 8%;
  }

  #DontP10 {
    position: absolute;
    top: 847px;
    left: 56.2%;
  }

  #DontP11 {
    position: absolute;
    top: 888px;
    left: 84.8%;
  }

  #DontP12 {
    position: absolute;
    top: 914px;
    left: 31.4%;
  }

  #DontP13 {
    position: absolute;
    top: 963px;
    left: 0;
  }

  #DontP14 {
    position: absolute;
    top: 1120px;
    left: 59.7%;
  }

  #DontP15 {
    position: absolute;
    top: 1172px;
    left: 19.6%;
  }

  #DontP16 {
    position: absolute;
    top: 1195px;
    left: 78.7%;
  }

  #DontP17 {
    position: absolute;
    top: 1384px;
    left: 38.1%;
  }

  #DontP18 {
    position: absolute;
    top: 1479px;
    left: 11%;
  }

  #DontP19 {
    position: absolute;
    left: 69.2%;
    margin-top: 1616px;
    margin-bottom: 100px;
  }

  /* light,shadow,mist */
  body.page_asagaya{
    background-color: rgba(0, 0, 0, 0);

  }
  .lightSMLi:first-child {
    margin-top: 73px;
  }

  .lightSMLi {
    margin-top: 300px;
    width: 740px;
    background-color: #c7ccc1;
    padding: 1px 0 20px;
  }
.asagayaLi{
  background-color: #831111;
}
  .lightSMLi li {
    margin-top: 20px;
  }


  .lightSMLi li a img {
    height: 467px;
  }

  .singlePic {
    text-align: left;
  }

  .singlePic li a img {
    height: 493px;
  }

  .lightflex {
    width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .lightflex li {
    margin-right: 5px;
  }

  .lightflex li:nth-child(3n) {
    margin-right: 0;
  }

  .lightflex li a img {
    height: 347px;
  }

  /* doll */

  .doll_mainpic {
    height: 1888px;
    width: 100%;
  }

  .doll_mainpic2{
    width: 100%;
height: 1920px;
    margin-top: 300px;
  }
  .doll_picBox {
    margin-top: 300px;
  }
.doll_picBox{
  text-align: center;

}
  .doll_picBox a img {
width: 585px;
height: auto;
  }
  .doll_picBox>p {
    text-align: right;
    margin-right: 220px;
  }
  .doll_picBoxFlex > p{
    margin-right: 20px;
  }

  .doll_picBox .doll_ttl {
    font-size: 16px;
    margin-top: 18px;
    line-height: 1.3;
  }

  .doll_picBoxFlex .doll_abbr,
  .doll_picBox .doll_abbr {
    font-size: 13px;
    color: #939393;
    line-height: 1.3;
    margin-top: 6px;
  }
  .doll_picBoxFlex{
    margin-top:88px;
  
  }

  .doll_picBoxFlex a img {
    height: 310px;
    width: auto;
  }
/* painting */

.paintingyear{
  width: 585px;
  margin: 0 auto;
}
.paintingflex a img{
  height: 226px;
}
.pt0405 a img{
  height: 187px;
}
.picLi01 a img{
  height: 377px;
}
.picLi02 a img{
  height: 451px;
}
.picLi03 a img{
  height: 481px;
}
.picLi04 a img{
  height: 463px;
}
.picLi05 a img{
  height: 391px;
}
.paintingflex{
margin-top: 232px;
}
.paintingtxt,
.paintingabbr{
  text-align: left;
  margin-left: 16px;
}
.paintingtxt{
  font-size: 16px;
}
.paintingabbr{
  font-size: 13px;
}
.pt0405{
  margin-top: 95px;
}
.paintingPicLi{
  margin-top: 300px;
}

.paintingTtl{
  margin-top: 232px;
}

/* music */
.musicbox2forPC{
  display: block;
}
.musicbox2forPC img{
  border-radius: 12px;
margin-right: 7px;
}
.musicbox1{
  height: 511px;

}
.musicBox {
  width: 1000px;
}
.musicboxflex{
display: flex;
}
.panel1 .musicbox1 {
  height: 511px;
  width:474px ;
}
.musicAbbr{
  margin-top: 15px;
}
.musicbox1 .grid {
  padding-top: 91px;
  grid-template-columns: repeat(3, 21px);
  grid-template-rows: repeat(3, 21px);
  gap: 133px;
}
.musicbox1 .grid span:hover{
  transform: scale(1.3);
  transition: .3s;
  cursor: url(../images/pointCursor.webp), auto;

}







}