/* ============================ */
/* 	reset
/* ============================ */

body, p, dl, dt, dd, h1, h2, h3, h4, h5, h6, ul, ol, li, figure, figcaption, form {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

em {
  font-style: normal;
}

table {
  /*width: 100%;*/
  border-collapse: collapse;
  border-spacing: 0;
}

body * {
  box-sizing: border-box;
}


/* ============================ */
/* 	base
/* ============================ */

:root {
  --baseColor: #3c2317;
  --subColor: #9e7676;
  --whiteColor: #fefefe;
  --bgColor: #f9f5eb;
  --bodyBgColor: #f9f5eb;
  --grayColor: #5d5e5e;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  color: var(--baseColor);
  font-size: 1.6rem;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.8;
  background-color: var(--bodyBgColor);
}

img,
picture * {
  font-style: italic;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6, strong, b {
  font-weight: bold;
}


/* ============================ */
/* 	link
/* ============================ */

a {
  outline: none;
  text-decoration: none;
  transition: all 0.3s;
}

a:link, a:visited {
  color: var(--subColor);
  border-bottom: 1px solid var(--subColor);
}

a:hover, a:active {
  color: var(--baseColor);
  border-bottom-color: transparent;
}

a:hover img {
  opacity: 0.85;
}


/* ============================ */
/* 	.wrapper
/* ============================ */

.wrapper {
  margin: 4rem auto;
  width: min(90%, 500px);
  position: relative;
  overflow: hidden;
}

.wrapper .admin {
  position: absolute;
  top: 0;
  right: 0;
}

.wrapper .admin a {
  color: transparent;
  font-size: 0.85em;
  border-bottom: none;
}


/* ============================ */
/* 	.header
/* ============================ */

.header {
  margin-bottom: 8rem;
  text-align: center;
}

.header a {
  border-bottom: none;
}

.header_logo {
  margin-bottom: 1.5rem;
  font-size: 1em;
}

.header_logo a {
  font-size: 1.65em;
  font-weight: bold;
  letter-spacing: 0.1em;
}


/* ============================ */
/* 	main
/* ============================ */

.postarea .postform {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--baseColor);
}

.postarea .tegalogpost {
  background-color: transparent;
  border: 1px solid var(--baseColor);
  width: 100%;
  height: 7em;
}

.postarea input.postbutton {
  color: var(--bgColor) !important;
  background-color: var(--baseColor) !important;
  border: 1px solid var(--baseColor) !important;
  width: 100%;
  max-width: 200px;
}

.postarea .decoBtns {
  margin-left: 1em;
  display: inline-block;
}

.main .situation {
  margin-bottom: 2rem;
  padding-left: 1rem;
  font-weight: bold;
  border-left: 7px solid var(--baseColor);
}

.inner {
  margin-bottom: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--grayColor);
}

.inner .comment img {
  width: 100%;
}

.inner .comment a.taglink {
  text-decoration: none;
}

.inner .comment a.imagelink {
  margin-right: 5px;
  padding: 0 3px;
  text-decoration: none;
  border-bottom: none;
  display: inline-block;
}

.inner .comment .decorationQ {
  padding: 0.5rem 0 0.5rem 1rem;
  line-height: 1.4;
  word-break: break-all;
  border-left: 5px solid var(--subColor);
}

.inner .comment .decorationQ::before, .inner .comment .decorationQ::after {
  display: none;
}

.inner .comment .readmorebutton {
  padding: 0.7rem;
  color: var(--baseColor);
  font-size: 0.8em;
  line-height: 1;
  text-align: center;
  border: 2px solid var(--baseColor);
  width: 100%;
  display: inline-block;
}

.inner .comment .readmorebutton:hover {
  color: var(--bgColor);
  background-color: var(--baseColor);
}

.inner .comment span.embeddedmovie {
  padding-top: 56.25%;
  width: 100%;
  position: relative;
  display: block;
}

.inner .comment span.embeddedmovie iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.inner .status {
  margin-top: 1rem;
  color: var(--grayColor);
  font-size: 0.9em;
  text-align: right;
}

.inner .status a {
  color: var(--grayColor);
}

.inner.logstatus-fixed {
  margin-bottom: 6.5rem;
  padding: 1.5em;
  border: 2px dashed var(--subColor);
}

.pagenavi {
  margin-top: 3rem;
}

.pagenavi .pagelinks {
  margin-bottom: 1rem;
}

.pagenavi .pagenums {
  display: flex;
  flex-wrap: wrap;
}

.pagenavi .pagenums a {
  margin: 0 1rem 1rem 0;
  padding: 2px 5px;
  color: var(--bgColor);
  background-color: var(--baseColor);
  border: 1px solid var(--baseColor);
  display: inline-block;
}

.pagenavi .pagenums a:hover,
.pagenavi .pagenums a.pagenumhere {
  background-color: var(--subColor);
  border: 1px solid var(--subColor);
}


/* ============================ */
/* 	footer
/* ============================ */

.footer {
  margin-top: 8rem;
  text-align: center;
  position: relative;
}

.footer::after {
  content: '';
  margin: auto;
  background-color: var(--subColor);
  width: 100px;
  height: 1px;
  position: absolute;
  top: -3rem;
  right: 0;
  left: 0;
  display: inline-block;
}

.footer .poweredby {
  font-size: 0.85em;
  text-align: center;
}


/* ============================ */
/* 	form
/* ============================ */

input:not([type=checkbox]), textarea, button, select {
  margin: 0;
  padding: 0;
  color: var(--baseColor);
  font-size: 1.4rem;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.4;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

input:not([type=checkbox]),
textarea {
  padding: 0.25em;
}

::placeholder {
  color: transparent;
}

.catChecks label {
  margin-right: 5px;
}


/* ============================ */
/* 	@media SP
/* ============================ */

@media screen and (max-width: 799px) {
  .pc {
    display: none;
  }
}


/* ============================ */
/* 	@media PC
/* ============================ */

@media screen and (min-width: 800px) {
  .sp {
    display: none;
  }
}