@charset "UTF-8";
/*
Theme Name: BlogTheme
Description: かなり適当
Author: weblasts
Version: 1.0
*/
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.header {
  background-color: #fff;
  width: 100%;
  height: 55px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
}

.nav {
  height: 100%;
}
.nav_list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
.nav_item {
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info_button {
  display: block;
  border: solid 2px #434343;
  background-color: rgba(255, 255, 255, 0.9);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.info_button::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-image: url(img/info-solid.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 1px;
  transform: translate(-50%, -50%);
}

.logout_button {
  display: block;
  border: solid 2px #434343;
  background-color: rgba(255, 255, 255, 0.9);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.logout_button::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-image: url(img/arrow-right-from-bracket-solid.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 1px;
  transform: translate(-50%, -50%);
}

.right_posi {
  left: auto;
  right: 0;
  transform: translate(50%, -50%);
  background-color: #7e8490;
  border-radius: 50%;
}
.right_posi::before {
  color: #fff;
}

.form {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  width: calc(100% - 40px);
}
.form_overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.8);
}
.form_overlay-text {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  position: absolute;
  width: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@keyframes overlay {
  0% {
    content: ".";
  }
  20% {
    content: "..";
  }
  40% {
    content: "...";
  }
  60% {
    content: "....";
  }
  80% {
    content: ".....";
  }
  100% {
    content: ".";
  }
}
.form_overlay-text::after {
  content: "";
  display: inline-block;
  width: 30px;
  white-space: pre;
  text-align: left;
  animation: overlay 3s ease-in-out infinite;
}

.upload {
  max-width: 540px;
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width:500px) {
  .upload {
    padding: 20px 20px 0;
  }
}
.upload_title {
  font-size: 20px;
  line-height: 2;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding-bottom: 6px;
  color: transparent;
  text-align: center;
}
.upload_title-inner {
  position: relative;
  border-bottom: solid 1px;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%), linear-gradient(135deg, #427eff 0%, #f13f79 70%);
  background-repeat: no-repeat, no-repeat;
  background-size: 63px 30px, cover;
  background-position: -8px 13px, left center;
}
.upload_title::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(135deg, #427eff 0%, #f13f79 70%);
  background-repeat: no-repeat;
  background-size: cover;
}
.upload_part {
  margin-top: 30px;
}
@media (min-width:500px) {
  .upload_part {
    margin-top: 40px;
  }
}
.upload_label {
  display: block;
  width: 110px;
  height: 40px;
  background-image: linear-gradient(135deg, #427eff 0%, #f13f79 70%);
  background-repeat: no-repeat;
  background-size: cover;
  line-height: 40px;
  font-size: 14px;
  border-radius: 20px;
  text-align: left;
  padding-left: 52px;
  color: #fff;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
@media (min-width:500px) {
  .upload_label {
    height: 50px;
    line-height: 50px;
    padding-left: 56px;
  }
}
.upload_label::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -26px;
  width: 95px;
  height: 95px;
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
}
.upload_label::after {
  content: "";
  display: block;
  background-image: url(img/camera-solid.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  transform: translate(0, -50%);
  width: 20px;
  height: 20px;
  left: 22px;
  top: 50%;
}
@media (min-width:500px) {
  .upload_label::after {
    width: 24px;
    height: 24px;
    left: 24px;
    top: 50%;
  }
}
.upload_label2 {
  display: block;
  text-align: left;
}
.upload_label2-text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 10px;
}
.upload_file {
  display: none;
}
.upload_file-result {
  margin-top: 10px;
  text-align: left;
}
.upload_file-result .error {
  font-size: 12px;
  color: #ef4343;
}
.upload_file-result img {
  width: 90px;
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 8px 8px 0 0;
  border: solid 1px #ababab;
}
.upload_caption {
  width: 100%;
  height: 120px;
  padding: 12px;
  border: 1px solid #747474;
  text-align: left;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.85;
}
.upload_caption:focus {
  outline: none;
}
.upload_btn {
  display: block;
  width: 160px;
  background-image: linear-gradient(22deg, #0d91fd, #4d68fe 25%, #903eff 50%, #c851b5 75%, #ff646d);
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  font-weight: 700;
  padding: 17px 0;
  color: #fff;
  letter-spacing: 0.1em;
  border-radius: 30px;
}
.upload_button {
  display: block;
  border: solid 2px #434343;
  background-color: rgba(255, 255, 255, 0.9);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.upload_button::before {
  content: "";
  display: block;
  width: 12px;
  height: 2px;
  background-color: #434343;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 1px;
  transform: translate(-50%, -50%);
}
.upload_button::after {
  content: "";
  display: block;
  width: 2px;
  height: 12px;
  background-color: #434343;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 1px;
  transform: translate(-50%, -50%);
}

.tutorial {
  width: calc(100% - 40px);
}
.tutorial_pc {
  display: none;
  width: 100%;
  height: auto;
}
@media (min-width:500px) {
  .tutorial_pc {
    display: block;
  }
}
.tutorial_sp {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width:500px) {
  .tutorial_sp {
    display: none;
  }
}
.tutorial_title {
  font-size: 20px;
  line-height: 2;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding-bottom: 6px;
  color: transparent;
  text-align: center;
}
.tutorial_title-inner {
  border-bottom: solid 1px;
  -webkit-background-clip: text;
          background-clip: text;
  background-image: linear-gradient(135deg, #42f2ff 0%, #57f13f 70%);
  background-repeat: no-repeat;
  background-size: cover;
}
.tutorial_title::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(135deg, #42ffd0 0%, #57f13f 70%);
  background-repeat: no-repeat;
  background-size: cover;
}
.tutorial_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}
.tutorial_block-inner {
  width: 100%;
}
.tutorial_bg {
  position: relative;
  width: 100%;
  padding-top: 81.3868613139%;
}
.tutorial_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-image: url(img/tbg.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.tutorial_step {
  width: 160px;
  height: 40px;
  margin-right: auto;
  border-radius: 20px;
  background-image: linear-gradient(135deg, #42ffd0 0%, #57f13f 70%);
  background-clip: border-box;
  font-size: 19px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-align: left;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  left: -30px;
}
.tutorial_step::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-top: 30px solid #57f13f;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  position: absolute;
  bottom: -16px;
  right: 20px;
  transform: rotate(-15deg);
  z-index: -1;
}
.tutorial_text {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.75;
  font-weight: 700;
  text-align: left;
}
.tutorial_caution {
  font-size: 11px;
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-align: left;
  margin-top: 8px;
}
.tutorial_button {
  display: inline-block;
  border: solid 1px #434343;
  background-color: rgba(255, 255, 255, 0.9);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  position: relative;
  margin: 0px 3px -3px;
}
.tutorial_button::before {
  content: "";
  display: block;
  width: 9px;
  height: 1px;
  background-color: #434343;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 1px;
  transform: translate(-50%, -50%);
}
.tutorial_button::after {
  content: "";
  display: block;
  width: 1px;
  height: 9px;
  background-color: #434343;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 1px;
  transform: translate(-50%, -50%);
}
.tutorial_pagination {
  margin-top: 10px;
  margin-bottom: 20px;
}
.tutorial_pagination .swiper-pagination-bullet {
  background-color: #ffffff;
  opacity: 0.3;
}
.tutorial_pagination .swiper-pagination-bullet-active {
  background-color: #ffffff;
  opacity: 1;
}
.tutorial_buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.tutorial_next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 40px;
  background-color: #89e5a4;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.1em;
  margin: 0 10px;
}
.tutorial_next.swiper-button-disabled {
  opacity: 0.45;
}
.tutorial_prev {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 40px;
  background-color: #89e5a4;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.1em;
  margin: 0 10px;
}
.tutorial_prev.swiper-button-disabled {
  opacity: 0.45;
}

.board {
  overflow: hidden;
  position: relative;
}
.panel {
  padding: 40px 0 120px;
  background-color: #43bdc1;
  min-height: 540px;
  height: calc(100vh - 160px);
  height: calc(100dvh - 160px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.panel.panel2 {
  background-color: #da6272;
}
.panel.panel3 {
  background-color: #87c143;
}
.panel.panel4 {
  background-color: #ea9a32;
}
.panel_title {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.75;
  margin-bottom: 30px;
  text-align: center;
}
.panel_title2 {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.75;
  margin-bottom: 30px;
  text-align: center;
}
.panel_frame {
  overflow: hidden;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-bottom: 20px;
  margin: 0 auto;
}
.panel_image {
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.panel_text {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.75;
}
.panel_text2 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.75;
}
.panel_control {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  padding-bottom: 60px;
}
.panel_pagination {
  margin-bottom: 40px;
}
.panel_pagination .swiper-pagination-bullet {
  background-color: #1c1c1c;
  opacity: 0.3;
}
.panel_pagination .swiper-pagination-bullet-active {
  background-color: #fff;
  opacity: 1;
}
.panel_buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.panel_next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 270px;
  height: 40px;
  background-color: #414141;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.1em;
  margin: 0 10px;
  position: absolute;
  z-index: 1;
  cursor: pointer;
}
.panel_next.swiper-button-disabled {
  display: none;
}
.panel_prev {
  display: flex;
  display: none;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 40px;
  background-color: #414141;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.1em;
  margin: 0 10px;
}
.panel_close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 270px;
  height: 40px;
  background-color: #e9586c;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.1em;
  margin: 0 10px;
  position: absolute;
  cursor: pointer;
}
.panel_demo {
  margin-top: 10px;
  font-size: 21px;
  font-weight: 700;
  color: #fff;
}

.page_wrap {
  background-color: rgba(43, 46, 56, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  height: 100dvh;
}
.page_message {
  display: block;
  width: 300px;
  background-color: #fff;
  padding: 14px 30px 30px;
}
.page_title {
  font-size: 20px;
  line-height: 2;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding-bottom: 6px;
  color: #1a1a1a;
  text-align: center;
  border-bottom: solid 1px #1a1a1a;
  margin-bottom: 20px;
  position: relative;
}
.page_title-sub {
  display: inline-block;
  font-size: 14px;
  text-align: center;
  margin-left: 6px;
}
.page_headline {
  font-size: 20px;
  line-height: 2;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #1a1a1a;
  text-align: center;
  position: relative;
}
.page_headline.green {
  color: #81c782;
}
.page_headline.red {
  color: #f35d5d;
}
.page_line {
  text-align: center;
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
}
@keyframes b1 {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.page_line::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  animation: b1 1s ease-in-out both;
}
.page_line.green::before {
  background-color: #81c782;
}
.page_line.red::before {
  background-color: #f35d5d;
}
.page_line::after {
  content: "";
  display: block;
  width: 55px;
  height: 30px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: calc(50% - 27.5px);
}
.page_row {
  margin-top: 20px;
}
.page_link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 40px;
  background-color: #1a1a1a;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.1em;
  margin: 0 auto;
}
.page_link.green {
  background-color: #81c782;
}
.page_link.red {
  background-color: #f35d5d;
}
.page_content {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.75;
  margin-bottom: 4px;
  font-weight: 600;
  text-align: center;
}
.page_content p {
  margin-top: 20px;
}
.page_icon {
  width: 30px;
  height: 30px;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.login {
  background-color: rgba(242, 242, 242, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  height: 100dvh;
}
.login_form {
  display: block;
  width: 300px;
  background-color: #fff;
  padding: 14px 30px 30px;
}
.login_title {
  font-size: 20px;
  line-height: 2;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding-bottom: 6px;
  color: #1a1a1a;
  text-align: center;
  border-bottom: solid 1px;
}
.login_row {
  margin-top: 20px;
}
.login_row:first-child {
  margin-top: 0;
}
.login_label {
  display: block;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.75;
  margin-bottom: 4px;
  font-weight: 600;
}
.login_input {
  display: block;
  width: 100%;
  padding: 8px;
  font-size: 16px;
  border: 1px solid #dedede;
}
.login_btn {
  width: 160px;
  background-image: linear-gradient(151deg, #6091ff, #31b2ff);
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin: 40px auto 0;
}

.empty {
  height: calc(100vh - 70px - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 70px;
}
.empty_text {
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.085em;
  margin-top: 30px;
  text-align: center;
}
.empty_text:first-child {
  margin-top: 0;
}
.empty_button {
  display: inline-block;
  border: solid 1px #434343;
  background-color: rgba(255, 255, 255, 0.9);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  position: relative;
  margin: 0px 3px -3px;
}
.empty_button::before {
  content: "";
  display: block;
  width: 9px;
  height: 1px;
  background-color: #434343;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 1px;
  transform: translate(-50%, -50%);
}
.empty_button::after {
  content: "";
  display: block;
  width: 1px;
  height: 9px;
  background-color: #434343;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 1px;
  transform: translate(-50%, -50%);
}

.demo {
  margin: 70px auto 40px;
  padding: 20px;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  background-color: #2b2b2b;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
}

#list {
  width: calc(100% - 40px);
  margin: 0 auto 0;
  min-height: calc(100vh - 80px);
}

.grid-sizer {
  width: 49%;
}
@media (min-width:500px) {
  .grid-sizer {
    width: 32%;
  }
}
@media (min-width:800px) {
  .grid-sizer {
    width: 24%;
  }
}
@media (min-width:1100px) {
  .grid-sizer {
    width: 19%;
  }
}
@media (min-width:1400px) {
  .grid-sizer {
    width: 15.5%;
  }
}

.gutter-sizer {
  width: 2%;
}
@media (min-width:800px) {
  .gutter-sizer {
    width: 1.3333%;
  }
}
@media (min-width:1100px) {
  .gutter-sizer {
    width: 1.25%;
  }
}
@media (min-width:1400px) {
  .gutter-sizer {
    width: 1%;
  }
}

.entry {
  margin: 0 auto 10px;
  width: 49%;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0);
  opacity: 0;
}
@media (min-width:500px) {
  .entry {
    width: 32%;
  }
}
@media (min-width:800px) {
  .entry {
    width: 24%;
  }
}
@media (min-width:1100px) {
  .entry {
    width: 19%;
  }
}
@media (min-width:1400px) {
  .entry {
    width: 15.5%;
  }
}
.entry.active {
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
  opacity: 1;
  transition: transform 1s ease-in-out, opacity 1s ease-in-out, box-shadow 1s 0.6s ease-in-out;
}
.entry .thumbnail img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.thumbnail {
  cursor: pointer;
}

.detail {
  padding: 0;
  background-color: transparent;
  overflow: hidden;
  height: 100%;
  width: 100%;
  max-width: none;
}
.detail_inner {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
@media (min-width:800px) {
  .detail_inner {
    display: flex;
  }
}
.detail_image {
  width: 100%;
  height: 100%;
}
.detail_link {
  display: flex;
  max-height: 100%;
  justify-content: center;
  align-items: stretch;
}
.detail_img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.detail .swiper-wrapper {
  align-items: stretch !important;
}
.detail .swiper-slide {
  height: 100%;
  width: 100% !important;
  display: flex;
  /* height: auto; */
  align-items: center;
  justify-content: center;
}
.detail .swiper-button-next,
.detail .swiper-button-prev {
  width: 35px;
  height: 35px;
}
.detail .swiper-button-next:after,
.detail .swiper-rtl .swiper-button-prev:after {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: rgba(237, 237, 237, 0.8);
  font-size: 14px;
  font-weight: bold;
  background-image: url(img/angle-right-solid.svg);
  background-size: auto 20px;
  background-position: center center;
  background-repeat: no-repeat;
}
.detail .swiper-button-prev:after,
.detail .swiper-rtl .swiper-button-next:after {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: rgba(237, 237, 237, 0.8);
  font-size: 14px;
  font-weight: bold;
  background-image: url(img/angle-left-solid.svg);
  background-size: auto 20px;
  background-position: center center;
  background-repeat: no-repeat;
}
.detail .swiper-button-next.swiper-button-disabled,
.detail .swiper-button-prev.swiper-button-disabled {
  opacity: 0.4;
  pointer-events: all;
}
.detail .swiper-pagination {
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.detail .swiper-pagination .sep {
  display: block;
  width: 42px;
  height: 17px;
  position: relative;
  margin: 0 8px 0 9px;
}
.detail .swiper-pagination .sep::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  background-color: #000;
}
.detail .swiper-pagination-current {
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.detail .swiper-pagination-total {
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.detail_caption {
  width: 100%;
  max-height: 180px;
  margin-top: 40px;
  flex-shrink: 0;
  font-size: 14px;
  text-align: left;
  line-height: 1.55;
  letter-spacing: 0.05em;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  z-index: 1000;
}
.detail_caption.nocomment {
  color: #a0a0a0;
}
.detail_caption-inner {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  overflow: auto;
}
.detail_caption-inner::-webkit-scrollbar {
  display: none;
}
.detail_block {
  text-align: right;
}
.detail_delete {
  font-size: 10px;
  color: #fff;
  text-decoration: underline;
}
.detail_bg {
  padding: 0;
  background-color: rgba(0, 0, 0, 0.95);
  overflow: hidden;
}
.detail .remodal-close {
  top: 16px;
  left: 16px;
  width: 33px;
  height: 33px;
  z-index: 1000;
  color: #000000;
}
.detail .remodal-close:before {
  line-height: 33px;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background-color: rgba(237, 237, 237, 0.8);
}

.title {
  text-align: center;
  font-size: 20px;
}

.remodal-overlay {
  background-color: rgba(0, 0, 0, 0.75);
}

.view-more-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 40px;
  margin: 80px auto;
  border: solid 1px #81c782;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #81c782;
}

.entry-loading {
  text-align: center;
  margin: 3em 0;
  font-weight: 700;
  width: 100%;
  display: none;
}

.entry-loading.is-show {
  display: block;
}

.infinite-scroll-request {
  color: #81c782;
  font-size: 10px;
  margin: 140px auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  animation: load4 1.3s infinite linear;
  transform: translateZ(0);
}

@keyframes load4 {
  0%, 100% {
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}
@keyframes textAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.infinite-scroll-last {
  font-size: 14px;
  color: #bcbcbc;
  text-align: center;
  padding: 20px 0;
  margin: 80px auto;
  animation: textAnimation 1s 1s both ease-in-out;
}
.infinite-scroll-error {
  font-size: 14px;
  color: #bcbcbc;
  text-align: center;
  padding: 20px 0;
  margin: 80px auto;
  animation: textAnimation 1s 1s both ease-in-out;
}

.footer {
  height: 20px;
  padding-right: 40px;
  text-align: right;
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #505050;
}

.message {
  padding: 80px 0;
}
.message_headline {
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
.message_content {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: center;
}/*# sourceMappingURL=style.css.map */