body {
  margin: 0;
  padding: 0;
}

p, h1, h2, h3, h4, h5, h6, ul, ol, dl, dt, dd, li, form, table, a, span, main, section, div, figure {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

a {
  text-decoration: none;
  color: #de0507;
}

.header {
  background: #de0507 url(../images/header_bg.jpg) no-repeat right top;
  background-size: auto 100%;
  height: 240px;
  text-align: center;
}
.header-logo img {
  height: 240px;
  width: auto;
}
@media screen and (max-width: 1330px) {
  .header {
    text-align: left;
  }
}
@media screen and (max-width: 1020px) {
  .header {
    height: 180px;
  }
  .header-logo img {
    height: 180px;
    width: auto;
  }
}
@media screen and (max-width: 760px) {
  .header {
    text-align: center;
    background: #de0507;
    height: auto;
    padding: 3% 10%;
  }
  .header-logo img {
    height: auto;
    width: 100%;
  }
}

.footer {
  background: #000;
  text-align: center;
  padding: 24px;
}
.footer .copyright {
  color: #ececec;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.page-title {
  margin-bottom: 30px;
}
@media screen and (max-width: 760px) {
  .page-title {
    margin-bottom: 10px;
  }
}
.page-title img {
  display: block;
  max-width: 480px;
  margin: 0 auto;
}

.entry-wrap {
  background: #ececec;
  padding: 30px 0 60px;
}
@media screen and (max-width: 760px) {
  .entry-wrap {
    padding: 10px 0 30px;
  }
}

.entry {
  max-width: 760px;
  margin: 0 auto 30px;
  padding: 30px;
  background: #FFF;
  border-radius: 8px;
  filter: drop-shadow(0px 5px 10px rgba(30, 30, 30, 0.06));
}
@media screen and (max-width: 760px) {
  .entry {
    padding: 24px;
  }
}
.entry-date {
  display: inline-block;
  background: #ececec;
  padding: 3px 8px;
  font-size: 12px;
  margin-bottom: 10px;
}
.entry-title {
  font-size: 21px;
  letter-spacing: 0.02em;
  line-height: 1.5em;
}
.entry p {
  margin-top: 2em;
  font-size: 16px;
  line-height: 1.7em;
}
.entry span.new {
  color: #C00;
  font-size: 14px;
  margin-left: 1em;
}
.entry ul {
  margin: 1em;
}
.entry ul li {
  font-size: 14px;
}
.entry ul li a {
  text-decoration: underline;
  color: #181818;
}
.entry ul li a:hover {
  opacity: 0.7;
}
.entry .item {
  margin-top: 1em;
  font-size: 16px;
  line-height: 1.7em;
  background: #ececec;
  /*border: solid 1px #333;*/
  padding: 20px;
  position: relative;
}
.entry .item-tokuten {
  min-height: 282px;
}
@media screen and (max-width: 820px) {
  .entry .item-tokuten {
    min-height: calc((100vw - 40px) * 0.4 / 800 * 630 + 40px);
  }
}
.entry .item dt {
  font-weight: 700;
}
.entry .item dd {
  overflow: hidden;
}
.entry .item dd p {
  margin-top: 1em;
  font-size: 14px;
}
.entry .tokuten {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40%;
  overflow: hidden;
  border-radius: 8px;
}
@media screen and (max-width: 760px) {
  .entry .tokuten {
    position: static;
    width: 100%;
    padding: 0 10px;
    margin: 15px 0;
    background: #FFF;
    text-align: center;
  }
  .entry .tokuten img {
    max-width: 360px;
  }
}
.entry ._small {
  font-size: 12px !important;
}
.entry ._medium {
  font-size: 14px;
}
.entry ._right {
  text-align: right;
}
.entry ._center {
  text-align: center;
}
.entry .kome {
  color: #333;
}
.entry a.btn {
  display: block;
  margin: 0 auto;
  color: #19C;
  padding: 12px 20px;
  width: 100%;
  max-width: 480px;
  text-align: center;
  border: solid 1px #19C;
  border-radius: 3px;
}
@media screen and (min-width: 760px) {
  .entry a.btn {
    transition: all 0.3s;
  }
  .entry a.btn:hover {
    background: #19C;
    color: #FFF;
  }
}