@charset "UTF-8";
/* ===TOP-PAGE=== */
#top__page .mv--wrap {
  width: 100%;
}
#top__page .mv--wrap img {
  width: 100%;
}
@media screen and (max-width: 430px) {
  #top__page .mv--wrap.img--radius {
    border-radius: 0;
  }
}
#top__page .main__contents--about details summary {
  display: block;
  cursor: pointer;
}
#top__page .main__contents--about details summary::before {
  display: inline-block;
  content: "+";
  width: 12px;
  height: 12px;
  background-color: var(--main-color);
  border-radius: 2px;
  color: #FDFDFD;
  font-size: 10px;
  font-weight: 700;
  line-height: 12px;
  margin-right: 4px;
  text-align: center;
  vertical-align: 2px;
}
#top__page .main__contents--about details .about__wrap {
  margin-top: 1rem;
  border: 1px solid var(--font-color);
  border-radius: 4px;
  padding: 1rem;
}
#top__page .main__contents--about details .about__wrap ul li::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 2px;
  background-color: var(--font-color);
  margin-right: 4px;
  vertical-align: 4px;
}
#top__page .main__contents--about details .about__wrap a {
  display: block;
  text-align: right;
  padding: 4px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.125rem;
}
#top__page .main__contents--about details .about__wrap a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 8px;
  background-color: var(--main-color);
  -webkit-mask-image: url(../images/top/arrow.svg);
          mask-image: url(../images/top/arrow.svg);
  margin-left: 4px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
#top__page .main__contents--about details[open] summary::before {
  content: "-";
}
#top__page .main__contents--about details[open] .about__wrap {
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0; /* 透明 */
    transform: translateY(-10px); /* 上から表示 */
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
#top__page .main__contents .article__contents--list {
  margin-top: 1rem;
}
#top__page .main__contents .article__contents--list ul {
  width: 100%;
  gap: 0 40px;
}
#top__page .main__contents .article__contents--list ul li {
  width: calc((100% - 80px) / 3);
  position: relative;
  align-items: end;
  row-gap: 0.5rem;
}
#top__page .main__contents .article__contents--list ul li .thumb {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: #bebebe;
  border-radius: 4px;
  overflow: hidden;
}
#top__page .main__contents .article__contents--list ul li .thumb img {
  width: auto;
  height: 100%;
}
#top__page .main__contents .article__contents--list ul li .date {
  width: 100%;
  justify-content: space-between;
}
#top__page .main__contents .article__contents--list ul li .date span {
  display: block;
}
#top__page .main__contents .article__contents--list ul li .contents__link {
  display: inline-block;
  padding: 0 2rem;
  position: relative;
  background-color: #FDFDFD;
  border: 1px solid var(--font-color);
  border-radius: 40px;
  color: var(--font-color);
  font-weight: 500;
  transition: all 0.5s 0s ease;
}
#top__page .main__contents .article__contents--list ul li .contents__link::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 8px;
  position: absolute;
  background-color: var(--font-color);
  -webkit-mask-image: url(../images/top/arrow.svg);
          mask-image: url(../images/top/arrow.svg);
  margin-left: 4px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  right: 10px;
  transform: translateY(-50%);
  top: 50%;
}
#top__page .main__contents .article__contents--list ul li a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#top__page .main__contents .article__contents--list ul li:hover .contents__link {
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  color: #FDFDFD;
}
#top__page .main__contents .article__contents--list ul li:hover .contents__link::after {
  background-color: #FDFDFD;
}
@media screen and (max-width: 430px) {
  #top__page .main__contents .article__contents--list ul {
    gap: 0 1rem;
  }
  #top__page .main__contents .article__contents--list ul li {
    width: calc((100% - 2rem) / 3);
  }
  #top__page .main__contents .article__contents--list ul li .date {
    flex-direction: column;
    font-size: 0.65rem;
  }
  #top__page .main__contents .article__contents--list ul li .contents__link {
    display: inline-block;
    padding: 0 2rem;
    position: relative;
    background-color: #FDFDFD;
    border: 1px solid var(--font-color);
    border-radius: 40px;
    color: var(--font-color);
    font-weight: 500;
    transition: all 0.5s 0s ease;
    font-size: 0.8rem;
  }
  #top__page .main__contents .article__contents--list ul li .contents__link::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 8px;
    position: absolute;
    background-color: var(--font-color);
    -webkit-mask-image: url(../images/top/arrow.svg);
            mask-image: url(../images/top/arrow.svg);
    margin-left: 4px;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    right: 10px;
    transform: translateY(-50%);
    top: 50%;
  }
}
#top__page .main__contents .tegalog__contents--wrap h2 {
  font-size: 1.2rem;
}
#top__page .main__contents .tegalog__contents--wrap article {
  margin-top: 1rem;
  padding: 1.5rem;
  background-color: #e2f7f0;
  border-radius: 4px;
}
#top__page .main__contents .tegalog__contents--wrap article .hitokoto-body {
  background-color: #FDFDFD;
  border-radius: 4px;
  padding: 1rem;
}
#top__page .main__contents .tegalog__contents--wrap article .hitokoto-body p.dateseparator {
  display: none;
}
#top__page .main__contents .tegalog__contents--wrap article .hitokoto-body a span {
  display: block;
}
#top__page .main__contents .tegalog__contents--wrap article .hitokoto-body a span + span {
  margin-top: 0.5rem;
}
#top__page .main__contents .tegalog__contents--wrap article .hitokoto-body .hitokoto-poweredby {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #c8d9d3;
}
#top__page .main__contents .tegalog__contents--wrap article .hitokoto-body .hitokoto-poweredby a {
  color: #c8d9d3;
}
@media screen and (max-width: 430px) {
  #top__page .main__contents .tegalog__contents--wrap article {
    padding: 1rem;
  }
  #top__page .main__contents .tegalog__contents--wrap article .hitokoto-body a .date {
    font-size: 0.7rem;
  }
  #top__page .main__contents .tegalog__contents--wrap article .hitokoto-body a .body {
    font-size: 0.8rem;
  }
  #top__page .main__contents .tegalog__contents--wrap article .hitokoto-body .hitokoto-poweredby {
    font-size: 0.6rem;
  }
}

/* ===ILLUST&PHOTO-PAGE=== */
#gallary__page .main__contents h2 {
  font-size: 2rem;
  text-align: center;
}
#gallary__page .main__contents .gallary--categories {
  align-items: center;
  justify-content: center;
  gap: 40px;
}
#gallary__page .main__contents .gallary--categories li {
  width: 10rem;
}
#gallary__page .main__contents .gallary--categories li label {
  width: 100%;
  display: inline-block;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--font-color);
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
}
#gallary__page .main__contents .gallary--categories li .notbox {
  display: none;
}
#gallary__page .main__contents .gallary--categories li input:checked + label {
  color: var(--main-color);
  border-color: var(--main-color);
}
#gallary__page .main__contents .gallary--categories li.active {
  border-color: var(--main-color);
  color: var(--main-color);
}
#gallary__page .main__contents .gallary--contents p.update {
  padding: 0 1.75rem;
  text-align: center;
}
#gallary__page .main__contents .gallary--contents .gallary__thumbnail-list ul.gallary__thumbnail-lists {
  width: 100%;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}
#gallary__page .main__contents .gallary--contents .gallary__thumbnail-list ul.gallary__thumbnail-lists li {
  width: calc((100% - 64px) / 5);
  position: relative;
}
#gallary__page .main__contents .gallary--contents .gallary__thumbnail-list ul.gallary__thumbnail-lists li .flex {
  gap: 0.5rem 0;
}
#gallary__page .main__contents .gallary--contents .gallary__thumbnail-list ul.gallary__thumbnail-lists li .flex .gallary__img {
  height: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  text-align: center;
}
#gallary__page .main__contents .gallary--contents .gallary__thumbnail-list ul.gallary__thumbnail-lists li .flex .gallary__img::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(151, 151, 151, 0.5019607843);
  transition: all 0.3s ease;
}
#gallary__page .main__contents .gallary--contents .gallary__thumbnail-list ul.gallary__thumbnail-lists li .flex .gallary__img:hover::before {
  opacity: 0.2;
}
#gallary__page .main__contents .gallary--contents .gallary__thumbnail-list ul.gallary__thumbnail-lists li .flex .gallary__img img {
  width: 100%;
  aspect-ratio: 4/3;
}
#gallary__page .main__contents .gallary--contents .gallary__thumbnail-list ul.gallary__thumbnail-lists li .flex .cate__name {
  width: 70px;
  margin: 0 0 0 auto;
  padding: 0 0.5rem;
  background-color: var(--main-color);
  border-radius: 1rem;
  color: #FDFDFD;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
}
#gallary__page .main__contents .gallary--contents .gallary__thumbnail-list:has(.photo-list) img {
  width: 100% !important;
  max-width: 100%;
  height: auto !important;
  display: block;
  -o-object-fit: contain !important;
     object-fit: contain !important;
  -o-object-position: center !important;
     object-position: center !important;
}
@media screen and (max-width: 1119px) {
  #gallary__page .main__contents .gallary {
    padding: 0 0.9rem;
  }
  #gallary__page .main__contents .gallary--categories {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  #gallary__page .main__contents .gallary--categories li {
    width: 8rem;
  }
  #gallary__page .main__contents .gallary--contents .gallary__thumbnail-list ul.gallary__thumbnail-lists {
    width: 100%;
    flex-wrap: wrap;
    gap: 1rem;
  }
  #gallary__page .main__contents .gallary--contents .gallary__thumbnail-list ul.gallary__thumbnail-lists li {
    width: calc((100% - 3rem) / 4);
  }
}
@media screen and (max-width: 430px) {
  #gallary__page .main__contents .gallary--categories li {
    width: calc((100% - 1.5rem) / 2);
  }
  #gallary__page .main__contents .gallary--categories li label {
    font-size: 0.88rem;
  }
  #gallary__page .main__contents .gallary--contents .gallary__thumbnail-list ul.gallary__thumbnail-lists {
    width: 100%;
    flex-wrap: wrap;
    gap: 1rem;
  }
  #gallary__page .main__contents .gallary--contents .gallary__thumbnail-list ul.gallary__thumbnail-lists li {
    min-width: calc((100% - 2rem) / 3);
  }
}

/* ===ABOUT-PAGE=== */
#about__page .main__contents--wrap .contents__about h2 + ul {
  margin-top: 1.5rem;
}
#about__page .main__contents--wrap .contents__about h4 + ul, #about__page .main__contents--wrap .contents__about h4 + p {
  margin-top: 1rem;
}
#about__page .main__contents--wrap .contents__about ul li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 8px;
  background-color: var(--main-color);
  -webkit-mask-image: url(../images/top/arrow.svg);
          mask-image: url(../images/top/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  margin-right: 0.5rem;
  vertical-align: 2px;
}
#about__page .main__contents--wrap .contents__about dl {
  margin-top: 1rem;
  width: 15rem;
  padding: 1rem;
  border: 1px solid var(--font-color);
  border-radius: 4px;
}
#about__page .main__contents--wrap .contents__about dl dt {
  float: left;
  padding-right: 0.2rem;
  margin-bottom: 0.5rem;
}
#about__page .main__contents--wrap .contents__about dl dt::after {
  content: "：";
  padding-left: 0.2rem;
}
#about__page .main__contents--wrap .contents__about dl dt:last-of-type {
  margin-bottom: 0;
}
#about__page .main__contents--wrap .contents__about dl dd {
  display: block;
  margin-bottom: 0.5rem;
}
#about__page .main__contents--wrap .contents__about dl dd:last-of-type {
  margin-bottom: 0;
}
#about__page .main__contents--wrap .contents__about dl dd::after {
  clear: both;
}
#about__page .main__contents--wrap .contents__about--link ul li::before {
  display: none;
}
#about__page .main__contents--wrap .contents__about .link-color {
  color: var(--main-color);
  font-weight: 700;
}

/* ===BLOG-PAGE=== */
#blog__page .main__contents h2 {
  font-size: 2rem;
  text-align: center;
}
#blog__page .blog--nav ul {
  align-items: center;
  justify-content: center;
  gap: 40px;
}
#blog__page .blog--nav ul li {
  width: 10rem;
  display: inline-block;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--font-color);
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.2s ease;
}
#blog__page .blog--nav ul li .notbox {
  display: none;
}
#blog__page .blog--nav ul li input:checked + label {
  color: var(--main-color);
  border-color: var(--main-color);
}
#blog__page .blog--nav ul li.active {
  border-color: var(--main-color);
  color: var(--main-color);
}
#blog__page .blog--contents {
  padding: 2.5rem;
  background-color: #E0F4ED;
  border-radius: 4px;
}
#blog__page .blog--contents--wrap {
  gap: 2.5rem;
  flex-wrap: wrap;
}
#blog__page .blog--contents--wrap article {
  width: calc((100% - 80px) / 3);
}
#blog__page .blog--contents--wrap article a {
  width: 100%;
  transition: all 0.3s ease;
}
#blog__page .blog--contents--wrap article a p {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
#blog__page .blog--contents--wrap article a p img {
  width: 100%;
  height: auto;
  background-color: #9494F9;
  border-radius: 4px;
}
#blog__page .blog--contents--wrap article a h4 {
  margin-top: 1rem;
  transition: all 0.3s ease;
}
#blog__page .blog--contents--wrap article a:hover img {
  opacity: 0.8;
}
#blog__page .blog--contents--wrap article a:hover h4 {
  color: var(--main-color);
}
#blog__page .blog--contents--wrap article div {
  margin-top: 1rem;
  align-items: flex-end;
  gap: 0.5rem 0;
}
#blog__page .blog--contents--wrap article div .blogcate {
  align-items: center;
  gap: 0 0.5rem;
}
#blog__page .blog--contents--wrap article div .blogcate li {
  padding: 0 1rem;
  background-color: var(--main-color);
  color: #FDFDFD;
  border: 1px solid var(--main-color);
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
}
#blog__page .blog--single {
  background-color: #FDFDFD;
  border-radius: 4px;
  padding: 1.5rem;
}
#blog__page .blog--single h2 {
  text-align: left;
}
#blog__page .blog--single div {
  margin-top: 1.5rem;
  justify-content: space-between;
}
#blog__page .blog--single div .blogcate {
  align-items: center;
  gap: 0 0.5rem;
}
#blog__page .blog--single div .blogcate li {
  padding: 0 1rem;
  background-color: var(--main-color);
  color: #FDFDFD;
  border: 1px solid var(--main-color);
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
}
#blog__page .blog--single--text {
  margin-top: 2rem;
  line-height: 1.8;
}
#blog__page .blog--single--text .eyechach {
  display: none;
}
#blog__page .blog--category, #blog__page .blog--archive {
  padding: 2.5rem;
}
#blog__page .blog--category .cate-list li, #blog__page .blog--archive .cate-list li {
  font-weight: 500;
}
#blog__page .blog--category .cate-list li::before, #blog__page .blog--archive .cate-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 8px;
  background-color: var(--main-color);
  -webkit-mask-image: url(../images/top/arrow.svg);
          mask-image: url(../images/top/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  margin-right: 0.5rem;
  vertical-align: 2px;
}
#blog__page .blog--category .cate-list li + li, #blog__page .blog--archive .cate-list li + li {
  margin-top: 1rem;
}
#blog__page .blog--category .cate-list li ul.children, #blog__page .blog--archive .cate-list li ul.children {
  margin-left: 1rem;
  margin-top: 0.4rem;
}
#blog__page .blog--category .cate-list li ul.children li, #blog__page .blog--archive .cate-list li ul.children li {
  font-weight: 400;
}
#blog__page .blog--category .cate-list li ul.children li + li, #blog__page .blog--archive .cate-list li ul.children li + li {
  margin-top: 0.4rem;
}
#blog__page .blog .new-pagenation {
  margin-top: 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
#blog__page .blog .new-pagenation .page-numbers {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
  background-color: var(--sub-color);
  border-radius: 50%;
  color: #FDFDFD;
  font-weight: 500;
  line-height: 1.5rem;
  text-align: center;
}
#blog__page .blog .new-pagenation .page-numbers.current {
  width: 2rem;
  height: 2rem;
  background-color: var(--main-color);
  line-height: 2rem;
}
#blog__page .blog .single__pagenation {
  justify-content: space-between;
}
#blog__page .blog .single__pagenation a {
  display: block;
}
#blog__page .blog .single__pagenation a.nextpage::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 8px;
  background-color: var(--font-color);
  -webkit-mask-image: url(../images/top/arrow.svg);
          mask-image: url(../images/top/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  margin-right: 0.5rem;
  transform: scale(-1, 1);
  vertical-align: 2px;
}
#blog__page .blog .single__pagenation a.prepage::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 8px;
  background-color: var(--font-color);
  -webkit-mask-image: url(../images/top/arrow.svg);
          mask-image: url(../images/top/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  margin-left: 0.5rem;
  vertical-align: 2px;
}
@media screen and (max-width: 430px) {
  #blog__page .blog--nav ul {
    gap: 1.5rem;
  }
  #blog__page .blog--nav ul li {
    width: 5rem;
    font-size: 0.88rem;
  }
  #blog__page .blog--contents {
    padding: 0.9rem;
    border-radius: 0;
  }
  #blog__page .blog--contents--wrap {
    gap: 1rem;
    flex-wrap: wrap;
  }
  #blog__page .blog--contents--wrap article {
    width: 100%;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--font-color);
  }
  #blog__page .blog--contents--wrap article a {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
  #blog__page .blog--contents--wrap article a p {
    width: 80px;
  }
  #blog__page .blog--contents--wrap article div {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0 0.5rem;
  }
  #blog__page .blog--single h2 {
    font-size: 1.25rem;
  }
}/*# sourceMappingURL=index.css.map */