@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  vertical-align: middle;
}

body {
  position: relative;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-image: url(../images/bg_night.webp);
  background-size: cover;
}

#contents {
  display: grid;
  grid-template-columns: 1fr 18vw;
  grid-template-rows: 14.5vh 9.4vh 1fr;
  gap: 2vw;
  padding: 2vw 2vw 0;
  height: 100vh;
  position: relative;
  z-index: 10;
}

#textArea {
  grid-column: 1/2;
  grid-row: 3/4;
  width: 100%;
  overflow-y: scroll;
  position: relative;
  border-radius: 1.8vw 1.8vw 0 0;
}
#textArea #filterStatus {
  position: fixed;
  top: 25vh;
  left: 2vw;
  width: 76vw;
  height: 5vw;
  display: none;
  justify-content: center;
  align-items: center;
}
#textArea #filterStatus.block {
  display: flex;
}
#textArea #filterStatus #clearFilter {
  width: 100%;
  height: 100%;
  font-size: 1.8vw;
  background-color: #ca6923;
  color: #fff;
  border: none;
  outline: none;
}
#textArea::-webkit-scrollbar {
  display: none;
}
#textArea ul {
  list-style: none;
  background-color: #fff;
  border-radius: 1.5vw 1.5vw 0 0;
}
#textArea ul li .wrap {
  padding: 2vw;
  display: grid;
  grid-template-columns: 10vw 1fr auto;
  grid-template-rows: auto auto auto auto;
  gap: 1.5vw 1.5vw;
}
#textArea ul li .wrap .icon {
  grid-column: 1/2;
  grid-row: 1/3;
  align-self: center;
}
#textArea ul li .wrap .icon img {
  width: 100%;
  height: auto;
}
#textArea ul li .wrap .cat {
  grid-column: 2/3;
  grid-row: 1/2;
  font-size: 3vw;
  font-weight: 700;
  align-self: self-end;
}
#textArea ul li .wrap .day {
  grid-column: 2/3;
  grid-row: 2/3;
  font-size: 2vw;
  align-self: last baseline;
  color: #444;
  align-self: self-start;
}
#textArea ul li .wrap .day .name {
  display: inline-block;
  padding-left: 1em;
}
#textArea ul li .wrap .txt {
  grid-column: 1/4;
  grid-row: 3/4;
  font-size: 2.5vw;
  line-height: 1.5;
}
#textArea ul li .wrap .qr {
  grid-column: 3/4;
  grid-row: 1/3;
  background-color: #fff;
  padding: 5px;
}
#textArea ul li .wrap .qr canvas {
  width: 6.5vw;
  height: 6.5vw;
}
#textArea ul li .wrap .likeBtn {
  grid-column: 2/4;
  grid-row: 4/5;
  justify-self: end;
  align-self: center;
}
#textArea ul li .wrap .likeBtn .btnWrap {
  display: inline-block;
  width: 3vw;
  position: relative;
}
#textArea ul li .wrap .likeBtn .btnWrap img.like {
  width: 3vw;
  height: auto;
  position: relative;
  z-index: 6;
  opacity: 0;
}
#textArea ul li .wrap .likeBtn .btnWrap .like_anim {
  position: absolute;
  aspect-ratio: 800/695;
  width: 11vw;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 5;
}
#textArea ul li .wrap .like-count {
  font-size: 2vw;
  width: 4vw;
  border: 1px solid #ff86b5;
  background-color: #ff86b5;
  color: #fff;
  border-radius: 1vw;
  line-height: 1;
  padding: 0.5vw;
  text-align: center;
  min-width: 4em;
  display: inline-block;
  margin-left: 0.6em;
  position: relative;
}
#textArea ul li .wrap .like-count:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-right: 14px solid #ff86b5;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  position: absolute;
  top: calc(50% - 7px);
  left: -13px;
}
#textArea ul li .img {
  width: 50%;
}
#textArea ul li .img img {
  width: 100%;
  height: auto;
}
#textArea ul li .opt {
  display: flex;
  gap: 2vw;
  padding: 3vw;
}
#textArea ul li + li {
  border-top: 1px solid #f9d1d2;
}

#photoArea {
  grid-column: 1/3;
  grid-row: 2/3;
  display: flex;
  gap: 3vw;
  position: relative;
}
#photoArea .photoblock {
  display: flex;
  gap: 3vw;
  width: 76vw;
}
#photoArea .photoblock .photo-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 1px solid #fff;
  position: relative;
}
#photoArea .photoblock .photo-item img {
  width: 100%;
  height: auto;
}
#photoArea .photoblock .photo-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 2vw;
  padding: 0.5vw;
}
#photoArea #phtoInfo {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
}
#photoArea #phtoInfo .title {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 20px;
}
#photoArea #phtoInfo .title .iconCamera {
  width: 32px;
  height: 28px;
  fill: #fff;
}
#photoArea #phtoInfo .title span {
  display: block;
  color: #fff;
}
#photoArea #phtoInfo .qr {
  display: flex;
  align-items: center;
  gap: 20px;
}
#photoArea #phtoInfo .qr img {
  width: 35%;
  height: auto;
}
#photoArea #phtoInfo .qr .all {
  aspect-ratio: 1/1;
  width: 35%;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  outline: none;
  font-size: 18px;
}

/* モーダル */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
}
.modal .modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  margin: 5% auto;
  text-align: center;
}
.modal .modal-content img {
  max-width: 100%;
  max-height: 80vh;
  -o-object-fit: contain;
  object-fit: contain;
}
.modal #modalTitle {
  color: #fff;
  padding: 10px;
  font-size: 16px;
}
.modal .close {
  position: absolute;
  right: 20px;
  top: 10px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  #photoList {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  #photoList {
    grid-template-columns: repeat(2, 1fr);
  }
} 
#side {
  grid-column: 2/3;
  grid-row: 3/4;
  /*
  	#moonCanvas{
  		aspect-ratio: 1 / 1;
  		width: 100%;
  		margin-top: 2vw;
  	}
  */
}
#side .sideInner {
  background-color: #fff;
  border-radius: 1.5vw;
  padding: 3vw;
}
#side #today {
  font-size: 4vw;
  text-align: center;
  line-height: 1;
  width: 100%;
  margin: 0 auto;
}
#side #today .D {
  border-top: 1px solid #000;
  margin-top: 1.5vw;
  padding-top: 1.5vw;
}
#side #today .yobi {
  margin-top: 1.5vw;
  font-size: 2.5vw;
}
#side #time {
  font-size: 2.5vw;
  text-align: center;
  margin-top: 1.5vw;
  display: flex;
  justify-content: center;
}
#side #time .coron {
  width: 1em;
  animation: byo 1s linear infinite;
}
@keyframes byo {
  0%, 50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#side #refresh {
  display: block;
  aspect-ratio: 1/1;
  width: 10vw;
  background-color: transparent;
  border: none;
  outline: none;
  background-image: url(../images/reload.webp);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 80% auto;
  margin: 1.5vw auto 0;
}
#side #moonAge {
  text-align: center;
  font-size: 1vw;
  margin-top: 1.5vw;
}
#side #moonImg {
  width: 100%;
  margin-top: 3vw;
}
#side #moonImg img {
  width: 100%;
  height: auto;
}
#side #weather, #side #weather2 {
  margin-top: 3vw;
}
#side #weather .name, #side #weather2 .name {
  text-align: center;
  font-size: 1.4vw;
}
#side #weather .svg, #side #weather2 .svg {
  aspect-ratio: 8/6;
  width: 100%;
  margin: 0 auto;
}
#side #weather .svg img, #side #weather2 .svg img {
  width: 100%;
  height: auto;
}
#side #weather .title, #side #weather2 .title {
  font-size: 0.7vw;
  text-align: center;
  margin-top: -0.5vw;
}

#imgArea {
  grid-column: 1/3;
  grid-row: 1/2;
  aspect-ratio: 1046/260;
  overflow: hidden;
}
#imgArea .slick-slide img {
  border-radius: 1.5vw;
  width: 100%;
  height: auto;
}
#imgArea .slick-dots {
  position: absolute;
  display: flex;
  justify-content: center;
  bottom: 0;
  width: 100%;
  left: 0;
  list-style: none;
  gap: 2.5vw;
}
#imgArea .slick-dots li button {
  font-size: 0;
  border: none;
  outline: none;
  width: 3vw;
  height: 3vw;
  border-radius: 50%;
  border: 1px solid #000;
  background-color: rgba(255, 255, 255, 0.7);
}
#imgArea .slick-dots li.slick-active button {
  background-color: rgba(255, 0, 0, 0.7);
}

#mameChishiki {
  grid-column: 1/3;
  grid-row: 4/5;
  background-color: #fff;
  border-radius: 1.5vw 1.5vw 0 0;
  padding: 2vw 11.5vw 2vw 2vw;
  position: relative;
}
#mameChishiki #chieQr {
  width: 10vw;
  position: absolute;
  right: 1vw;
  top: 1vw;
}
#mameChishiki #chieQr p {
  font-size: 1vw;
}
#mameChishiki #chieQr img {
  display: block;
  width: 7vw;
  height: auto;
}
#mameChishiki .title {
  font-size: 2.5vw;
  font-weight: 400;
}
#mameChishiki .title span {
  font-size: 1.5vw;
}
#mameChishiki #chie {
  font-size: 2vw;
}
#mameChishiki #chieName {
  font-size: 1.4vw;
  text-align: right;
}

#catch {
  width: 30vw;
  aspect-ratio: 1/1;
  background-image: url(../images/catch.webp);
  background-size: 85% auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: fixed;
  bottom: 20vw;
  right: 10vw;
}
#catch #cWrap {
  width: 30vw;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  animation: catchRota 30s linear infinite;
}
#catch #cWrap img {
  width: 100%;
  height: auto;
}

@keyframes catchRota {
  100% {
    transform: translateX(-50%) translateY(-50%) rotate(1turn);
  }
}/*# sourceMappingURL=style.css.map */