
html,body{
  background: #000000;
  margin: 0%;/*周囲の枠を消す*/
}
.header {
  display: flex;
  align-items: center;
  padding: 0 20px;
  background: #ffffff00;
  height: auto;
  text-align: left;
}

/* ------ハンバーガーアイコンの設置スペース---------- */
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;/* 重なり順を一番上にする */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #ffffff;
  transition: 0.8s;
  position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.nav_content {
  color: #ffffff;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: -100%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #1c050569;
  transition: .5s;
}

/* メニュー黒ポチを消す */
.nav_list {
  text-decoration: none;
  color: #ffffff;
  margin-top: 50px;
  list-style: none;
}

.nav_content{
  color: #ffffff;
  display: flex;
  font-size: 20px;
  letter-spacing: 0.4em;
  line-height: 3.0;
}
.nav_item{
  color: #ffffff;
}
/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  left: 0;/* メニューを画面に入れる */
}

/*下にひくせん*/
.fontsize1_1{
  color: rgb(255, 255, 255);
  text-decoration: none;
  text-align: left;
  font-size: 20px;
  letter-spacing: 0.4em;
  line-height: 2.0;
}

header #fontsize0{
  width: auto;
  margin-left: 5px;
}
header #fontsize0::before {
  content: "";
  position: absolute;
  background: #ffffff;
  width: 0;
  height: 0;
  left: 0;
  bottom: 8px;
  transition: width 600ms ease-out;
  text-align: center;
}
header #fontsize0.act,header #fontsize0:hover {
  position: relative
}
header #fontsize0.act,header #fontsize0:hover::before {
  width: 82px;
  height: 0.5px;
}

/*トップの文字の設定*/
.top2{
  color: #ffffff;
  text-decoration:none;
}



header #color1{
  width: auto;
  margin-left: 5px;
}
header #color1::before {
  content: "";
  position: absolute;
  background: #ffffff;
  width: 0;
  height: 0;
  left: 0;
  bottom: 8px;
  transition: width 600ms ease-out;
  text-align: center;
}
header #color1.act,header #color1:hover {
  position: relative
}
header #color1.act,header #color1:hover::before {
  width: 47px;
  height: 0.5px;
}



/* -----ローディング画面------- */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: rgb(255, 255, 255);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.spinner {
  width: 100px;
  height: 100px;
  margin: 200px auto;
  background-color: #c73636;
  border-radius: 100%;
  animation: sk-scaleout 1.0s infinite ease-in-out;
}

/* ---------------ローディングアニメーション--------------- */
@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  } 100% {
    transform: scale(1.0);
    opacity: 0;
  }
}
.loaded {
  opacity: 0;
  visibility: hidden;
}
/* コンテンツ部分の装飾 */
.gallery {
  display: grid;
  gap: .5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

img {
  width: 100%;
  object-fit: cover;
}

/*半分に分けるコード*/
main #divide {
  background-color: #ff000000;
  display: flex;
  min-height:auto;
  margin: 15px 0px 60px 0px;
  margin-top: auto;
}



.LeftContent{/*左の要素*/
  
  margin:auto;
  margin-left:7%;
  margin-right: 2%;
  text-align: left;
  flex: 1;
  background-color: #3300ff00;
  text-align: center;
  vertical-align: middle;/*真ん中に寄せる*/
}

.photo1{
  filter: grayscale(100%);
}

.RightContent{/*右の要素*/
  overflow: hidden;
  position: relative;
  margin-top:40px;
  margin-left: 30px;
  text-align: left;
  flex: 1;
  background-color: #0400ff00;
  transition: 1s;
}
.fontsize1{
  color: #ffffff;
  font-size: 30px;
  letter-spacing: 0.4em;
  line-height: 1.7;
  margin-right: 30px;
  margin-top: 0;
  margin-bottom: 0;
}

.fontsize2{
  margin: 10px;
  color: #ffffff;
  text-align: left;
  font-size: 16px;
  letter-spacing: 0.3em;
  line-height: 2.0;
}
.fontsize1_2{
  color: #ffffff;
  font-size: 40px;
  letter-spacing: 0.4em;
  line-height: 3.0;
  margin-right: 30px;
  margin-top: 0;
  margin-bottom: 0;
}
/*---------------画像の赤色の乗算内容---------------*/
.photo1ue{
  position: absolute;
  right: 0%;
  top: 0%;
  width: 15%;
  height: 100%;
  mix-blend-mode: multiply; /* 乗算 */
  transition: 0.5s;
}
.photo2ue{
  position: absolute;
  right: 0%;
  height:100%;
  width: auto;
  mix-blend-mode: multiply; /* 乗算 */
  transition: 1s;
}

/*
.photo1ue:hover{
  transform: scale(1,8);
}
.photo2ue:hover{
  transform: scale(10,1);
}
*/
.photo2hidari:hover{
  transform: scale(20,1);
}
.photo4:hover{
  filter: grayscale(0%);

}
.photo2hidari:hover ~ .photo4{
  filter: grayscale(0%);
}

.RightContent1{/*右の要素1*/
  position: relative;
  margin:auto;
  margin-left: 30px;
  text-align: left;
  flex: 1;
  background-color: #0400ff00;
  vertical-align: middle;/*真ん中に寄せる*/
}
.LeftContent1{/*左の要素1*/
  overflow: hidden;
  position: relative;
  margin:0;
  text-align: left;
  flex: 1;
  background-color: #3300ff00;
  text-align: center;
  transition: 1s;

}
.ContentinR{
  width: 30%;
  margin: 0%;
}
.ContentinL{
  width: 70%;
  margin: 0%;
}



/*下の写真の設定*/
.LeftContent3{

  overflow: hidden;
  position: relative;
  margin: auto;
  margin-top: 30px;
  margin-right: 10px;
  margin-left: 10%;
}

.LeftContent31{
  overflow: hidden;
  position: relative;
  margin: auto;
  margin-top: 30px;
  margin-right: 10px;
  margin-left: 22%;
}
.CenterContent3{
  overflow: hidden;
  position: relative;
  margin: 30px;
  margin-right: 10px;
  margin-left: 10px;
}
.RightContent3{
  overflow: hidden;
  position: relative;
  margin: 30px;
  margin-left: 10px;
  margin-right: 10%;

}

.RightContent31{
  overflow: hidden;
  position: relative;
  margin: 30px;
  margin-left: 10px;
  margin-right: 22%;

}

main #divide1 {
  background-color: #ff000000;
  display: flex;
  min-height:auto;
  margin: 15px 0px 20px 0px;
}

.photo2hidari{
  position: absolute;
  left: 0%;
  height:100%;
  width: 10%;
  mix-blend-mode: multiply; /* 乗算 */
  transition: 2s;
  cursor: pointer;
}

.photo4{
  border-radius: 2px;
  transition: 1s;
  filter: grayscale(100%);
}

.upletter{
  transition: 2s;
  pointer-events: none;/*触れなくする*/
  position: absolute;
  top: 0%;
  width: 10%;
  height: 100%;
  color: #ffffff;
}
.upletternaka{
  writing-mode: vertical-rl;
  margin: 0px;
  margin-top: 40%;
  color: #eaeaea;
  text-align:center;
  font-size: 12px;
  letter-spacing: 0.2em;
  line-height: 2.0;
  transition: 2s;
}

.photo2hidari:hover ~.upletternaka{
  color: #ffffff;
}

/*
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}
*/



/*別れるとことろのうちちょっと変わったところ*/

.divide2{
  display: flex;
  margin: auto;
}

.RightContentmain{/*右の要素*/
  overflow: hidden;
  position: relative;
  margin-top:40px;
  text-align: left;
  flex: 1;
  background-color: #0400ff00;
  transition: 1s;
}

.photo1uemain{
  position: absolute;
  right: 0%;
  top: 35%;
  width: 100%;
  height: 30%;
  mix-blend-mode: multiply; /* 乗算 */
}
.photo1uemainmozi{
  position: absolute;
  left: 30%;
  top: 47%;
  width:40%;
  height: auto;
  filter: invert(90%);
}


.uplettermain{
  display: flex;
  transition: 2s;
  pointer-events: none;/*触れなくする*/
  position: absolute;
  top: 0%;
  width: 100%;
  height: 100%;
  color: #ffffff;
}
.upletternakamain{
  margin: auto;
  color: #dccfcf;
  text-align:center;
  font-size: 34px;
  letter-spacing: 0.3em;
  line-height: 2.0;
  transition: 2s;
}

.fontsize2main{
  margin-left: 17%;
  margin-right: 17%;
  margin-top: 60px;
  margin-bottom: 70px;
  color: #d0c1c1;
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.2em;
  line-height: 2.0;
}

.fontsize2main1{
  margin-left: 17%;
  margin-right: 17%;
  margin-top: 60px;
  margin-bottom: 0px;
  color: #d0c1c1;
  text-align: left;
  font-size: 15px;
  letter-spacing: 0.2em;
  line-height: 2.0;
}
.fontsize2main2{
  margin-left: 17%;
  margin-right: 17%;
  margin-top: 60px;
  margin-bottom: 0px;
  color: #d0c1c1;
  font-size: 13px;
  letter-spacing: 0.2em;
  line-height: 2.0;
  text-align: center;
}
.ookisa{
  margin: 5%;
}













/* ポップアップウインドウの設定 */
.pu {
  background-color: #000000;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, .8);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 80%;
  height: 80%;
  overflow-y: scroll;
  z-index: 99998;
}


/* チェックボックスの初期設定 */
#pu-on{
  display: none;
}
/* チェックされたらポップアップウインドウを開く */
#pu-on:checked + .pu{
  display: block;
}

/* 閉じるアイコン（右上） */
.icon-close{
  background: #000;
  color: #fff;
  font-size: 50px;
  padding: 0 10px;
  position: absolute;
  right:10px;
}

/* 開くボタン */
.btn-open{
  background: #ffffff00;
  color: #fff;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

/* ポップアップの内容 */
.pu-content{
  width: 90%;
}



.himitu{
  color: #ffffff;
  text-decoration:none;
  font-size: 20px;
  letter-spacing: 0.4em;
  margin-bottom: 600px;
 
}

.himitul{
  text-align: center;
  margin-bottom: 60px;
}

.pu1 {
  background-color: #000000;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, .8);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 80%;
  height: 80%;
  overflow-y: scroll;
  z-index: 99998;
}


/* チェックボックスの初期設定 */
#pu-on1{
  display: none;
}
/* チェックされたらポップアップウインドウを開く */
#pu-on1:checked + .pu1{
  display: block;
}


.pu2 {
  background-color: #000000;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, .8);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 80%;
  height: 80%;
  overflow-y: scroll;
  z-index: 99998;
}


/* チェックボックスの初期設定 */
#pu-on2{
  display: none;
}
/* チェックされたらポップアップウインドウを開く */
#pu-on2:checked + .pu2{
  display: block;
}

.pu3 {
  background-color: #000000;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, .8);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 80%;
  height: 80%;
  overflow-y: scroll;
  z-index: 99998;
}


/* チェックボックスの初期設定 */
#pu-on3{
  display: none;
}
/* チェックされたらポップアップウインドウを開く */
#pu-on3:checked + .pu3{
  display: block;
}

.pu4 {
  background-color: #000000;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, .8);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 80%;
  height: 80%;
  overflow-y: scroll;
  z-index: 99998;
}


/* チェックボックスの初期設定 */
#pu-on4{
  display: none;
}
/* チェックされたらポップアップウインドウを開く */
#pu-on4:checked + .pu4{
  display: block;
}

.pu5 {
  background-color: #000000;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, .8);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 80%;
  height: 80%;
  overflow-y: scroll;
  z-index: 99998;
}


/* チェックボックスの初期設定 */
#pu-on5{
  display: none;
}
/* チェックされたらポップアップウインドウを開く */
#pu-on5:checked + .pu5{
  display: block;
}

.pu6 {
  background-color: #000000;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, .8);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 80%;
  height: 80%;
  overflow-y: scroll;
  z-index: 99998;
}


/* チェックボックスの初期設定 */
#pu-on6{
  display: none;
}
/* チェックされたらポップアップウインドウを開く */
#pu-on6:checked + .pu6{
  display: block;
}

.pu7 {
  background-color: #000000;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, .8);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 80%;
  height: 80%;
  overflow-y: scroll;
  z-index: 99998;
}


/* チェックボックスの初期設定 */
#pu-on7{
  display: none;
}
/* チェックされたらポップアップウインドウを開く */
#pu-on7:checked + .pu7{
  display: block;
}


.footer-001 {
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 25px 10px 10px;
  background-color: #61000050;
  font-size: 15px;
  
}


.footer-001__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 1.5em;
  list-style-type: none;
  margin: 0 0 .5em;
  padding: .5em;
}

.footer-001__link {
  color: #ffffff;
  font-weight: 200;
  text-decoration: none;
}

