@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, main,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  height: auto;
}

a {
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
a:hover {
  color: red;
}

i {
  font-style: normal;
}

body {
  background: #f5f5f5;
  color: #191919;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Helvetica Neue", Arial, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", Meiryo, sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.6;
  font-size: 1rem;
}

header {
  background: #6a1014;
  position: relative;
  z-index: 11;
}
@media (max-width: 768px) {
  header {
    position: sticky;
    top: 0;
  }
}
header > .inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-end;
  justify-content: space-between;
  padding: 8px 8px 0;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  header > .inner {
    display: block;
  }
}

#logo {
  padding-bottom: 8px;
}
#logo a {
  display: inline-block;
}
@media (max-width: 768px) {
  #logo img {
    width: 120px;
  }
}

#gnav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  #gnav {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 11;
    padding-top: 64px;
    transform: translateX(100%);
    background: rgba(25, 25, 25, 0.9);
    transition: all 0.2s ease-in-out;
  }
}
#gnav > li {
  position: relative;
}
@media (max-width: 768px) {
  #gnav > li {
    background: rgba(25, 25, 25, 0.4);
  }
  #gnav > li:first-child a {
    border-top: 1px dotted rgba(255, 255, 255, 0.3);
  }
}
#gnav a, #gnav span {
  display: block;
  padding: 4px 16px;
  color: white;
}
@media (max-width: 768px) {
  #gnav a, #gnav span {
    background: rgba(25, 25, 25, 0.4);
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
    padding: 16px;
  }
}
#gnav span {
  cursor: default;
}
#gnav ol {
  position: absolute;
  top: 100%;
  width: 160px;
  display: none;
}
@media (max-width: 768px) {
  #gnav ol {
    position: static;
    width: 100%;
  }
}
#gnav ol li:last-child a {
  border: none;
}
#gnav ol a {
  color: #583822;
  background: #eeded3;
  font-size: 0.875rem;
  border-bottom: 1px dashed #c0855d;
}
@media (max-width: 768px) {
  #gnav ol a {
    background: rgba(255, 255, 255, 0.06);
    color: white;
  }
}
#gnav ol a:hover {
  background: white;
}
@media (max-width: 768px) {
  #gnav ol a:hover {
    background: rgba(255, 255, 255, 0.1);
  }
}

p {
  width: 94%;
  margin: 24px auto;
  max-width: 1200px;
  margin: 24px auto;
  max-width: 800px;
}

#menu_bar {
  display: none;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 12;
  width: 48px;
  height: 54px;
  cursor: pointer;
}
@media (max-width: 768px) {
  #menu_bar {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}
#menu_bar span {
  display: block;
  width: 32px;
  height: 2px;
  background: white;
  position: relative;
  transition: all 0.2s ease-in-out;
}
#menu_bar span::before, #menu_bar span::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  left: 0;
  background: white;
  transition: all 0.2s ease-in-out;
}
#menu_bar span::before {
  top: -10px;
}
#menu_bar span::after {
  bottom: -10px;
}
#menu_bar.active span {
  background: rgba(255, 255, 255, 0);
}
#menu_bar.active span::before {
  top: 0;
  transform: rotate(45deg);
}
#menu_bar.active span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

body.fixed #gnav {
  transform: translateX(0);
}

footer {
  margin-top: 128px;
  padding-top: 32px;
  background: url(../image/common/bg_footer.png);
  box-shadow: 0 2px 2px rgba(25, 25, 25, 0.4) inset;
}
footer .inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  footer .inner {
    display: block;
  }
}
footer .inner > div {
  flex: 1;
}
footer .inner dl {
  padding: 0 8px 16px;
}
footer .inner dt {
  font-weight: bold;
  color: #6a1014;
  border-bottom: 1px solid #6a1014;
}
footer .inner dd {
  padding: 8px 0;
  font-size: 0.9375rem;
}
footer .inner dd p, footer .inner dd a {
  padding: 0 4px;
  color: #565656;
  display: block;
  margin: 0;
}
footer .inner dd p em, footer .inner dd a em {
  border-bottom: 2px dotted #191919;
}
footer .payment dd {
  padding-bottom: 16px;
}
footer .payment dd p {
  border-bottom: 1px dotted #bcbcbc;
  padding-top: 8px;
  line-height: 1.4;
}
footer .payment dd p.title {
  border: none;
  padding: 0;
  margin-bottom: 8px;
}
footer .payment table {
  margin-top: 16px;
}
footer table {
  width: 100%;
}
footer table th, footer table td {
  border-bottom: 1px solid #bcbcbc;
  border-right: 1px solid #bcbcbc;
  padding: 4px 8px;
}
footer table th {
  background: rgba(106, 16, 20, 0.1);
  width: 50%;
}
footer #copy {
  text-align: center;
  padding: 0 0.6rem 0.6rem;
  color: #565656;
  font-size: 0.8rem;
}

/* headline
---------------------------*/
.boxtitle {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 16px 8px;
  margin-bottom: 32px;
  line-height: 1.4;
  background: #ffb94a;
  background-image: radial-gradient(#ffb136 24%, transparent 24%), radial-gradient(#ffb136 24%, transparent 24%);
  background-size: 16px 16px;
  background-position: 0 0, 24px 24px;
}
@media (max-width: 768px) {
  .boxtitle {
    font-size: 1.125rem;
    text-align: left;
    padding: 16px;
  }
}

/* box
---------------------------*/
.card {
  width: 94%;
  margin: 24px auto;
  max-width: 1200px;
  max-width: 800px;
  border: 2px solid #1fa44e;
  border-radius: 6px;
  box-shadow: 0px 2px 3px rgba(25, 25, 25, 0.4);
  padding: 8px;
}
.card .cardtitle {
  margin-bottom: 24px;
  border-bottom: 2px dotted #1fa44e;
  padding: 8px;
  color: #6a1014;
  font-weight: bold;
  font-size: 1.25rem;
}
.card .cardtitle a {
  color: #6a1014;
}
.card .cardtitle a:hover {
  color: #1fa44e;
}
.card .content {
  margin-bottom: 64px;
  width: 94%;
  margin: 24px auto;
  max-width: 1200px;
  margin: 0 auto;
}
.card .content p {
  width: auto;
}
.card .content a {
  display: block;
  border: 2px solid #191919;
  padding: 8px 16px;
  border-radius: 6px;
  color: #191919;
  width: 94%;
  margin: 24px auto;
  max-width: 1200px;
  max-width: 800px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0px 2px 3px rgba(25, 25, 25, 0.3);
}
.card .content a:hover {
  background: #ffe8c4;
}
.card .content img {
  max-width: 100%;
  max-height: 600px;
}
@media (max-width: 768px) {
  .card .content img {
    max-height: 480px;
  }
}
.card .content div {
  width: 94%;
  margin: 24px auto;
  max-width: 1200px;
  margin: 16px auto;
  max-height: 600px;
  text-align: center;
}
@media (max-width: 768px) {
  .card .content div {
    max-height: 480px;
    margin: 8px auto;
  }
}
.card .cates {
  font-size: 0.875rem;
  text-align: right;
  padding: 8px;
}
.card .cates a {
  border: 1px solid #1fa44e;
  border-radius: 6px;
  display: inline-block;
  padding: 2px 4px;
  color: #1fa44e;
}

.block3 {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.block3 .card {
  width: calc(33.3333333333% - 4px);
  margin: 8px 2px;
}
@media (max-width: 768px) {
  .block3 .card {
    width: calc(50% - 4px);
  }
}
.block3 .card .img {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.block3 .card .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.2s ease-in-out;
}
.block3 .card a {
  display: block;
}
.block3 .card a:hover img {
  transform: scale(1.06);
}

/* list
---------------------------*/
.block03 {
  width: 94%;
  margin: 24px auto;
  max-width: 1200px;
  max-width: 960px;
  padding: 16px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.block03 li {
  padding: 0 8px 8px;
  width: 33.3333333333%;
}
@media (max-width: 768px) {
  .block03 li {
    width: 100%;
  }
}
.block03 a, .block03 p, .block03 span {
  display: block;
  line-height: 1.4;
  height: 100%;
  cursor: pointer;
  border: 2px solid #191919;
  padding: 0.6em 0.4em;
  text-align: center;
  border-radius: 3px;
  color: #191919;
  font-weight: bold;
  box-shadow: 1px 1px 3px #999999;
  transition: all 0.2s ease-in-out;
}
.block03 a:hover, .block03 p:hover, .block03 span:hover {
  box-shadow: 0px 0px 2px #999999;
  background: #ffd6d6;
  color: #8d0101;
  border: 2px solid #8d0101;
}

.pager {
  text-align: center;
  width: 94%;
  margin: 24px auto;
  max-width: 1200px;
  margin: 64px auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.pager > a, .pager > span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 4px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border: 2px solid #583822;
  text-decoration: none;
  font-weight: bold;
}
.pager > a {
  background: white;
  color: #583822;
}
.pager > a:hover {
  background: rgba(255, 185, 74, 0.3);
}
.pager > span {
  background: #583822;
  color: white;
}

/* single
---------------------------*/
.prev_next {
  width: 94%;
  margin: 24px auto;
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 64px;
}
.prev_next li {
  padding: 0 8px;
}
.prev_next li.prev a::after {
  content: none;
}
.prev_next li.next a::before {
  content: none;
}
.prev_next a {
  display: inline-block;
  border-bottom: 2px solid #1fa44e;
  color: #1fa44e;
  padding: 8px 32px;
  position: relative;
}
.prev_next a:hover {
  color: #de0202;
  border-color: #de0202;
}
.prev_next a:hover::before, .prev_next a:hover::after {
  background: #de0202;
}
.prev_next a::before, .prev_next a::after {
  content: "";
  width: 2px;
  height: 16px;
  position: absolute;
  bottom: 0;
  background: #1fa44e;
  transition: all 0.2s ease-in-out;
}
.prev_next a::before {
  left: 0;
  transform-origin: left bottom;
  transform: rotate(54deg);
}
.prev_next a::after {
  right: 0;
  transform-origin: right bottom;
  transform: rotate(-54deg);
}

#another_post, #another_category {
  margin-top: 64px;
}/*# sourceMappingURL=base.css.map */