*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

li {
  list-style: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 300;
  color: #707070;
}

.block-wrapper {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 800px;
}

.article-item a {
  transition: opacity 0.3s ease 0s;
}
.article-item a:hover {
  opacity: 0.7;
}

.article-item__link {
  display: block;
  height: inherit;
}

.article-item__thumbnail {
  width: 100%;
  aspect-ratio: 400/220;
}

.article-item__title {
  margin-top: 20px;
  font-weight: 600;
}
@media screen and (max-width:700px) {
  .article-item__title {
    margin-top: 20px;
  }
}

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

a {
  color: inherit;
}

.breadcrumbs {
  margin-top: 30px;
}

.single-wrapper {
  max-width: 1680px;
  padding: 0 20px;
  margin: 130px auto 0;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1000px) {
  .single-wrapper {
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (max-width:700px) {
  .single-wrapper {
    flex-direction: column;
    justify-content: center;
    margin-top: 120px;
    padding: 0 10px;
  }
}

.single__main {
  width: 56.5476190476%;
}
@media (max-width: 1000px) {
  .single__main {
    width: 100%;
  }
}
@media screen and (max-width:700px) {
  .single__main {
    width: 100%;
  }
}

.single-blog-title {
  font-family: "m-plus-2c", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 116px;
  color: #e71e19;
  font-size: 40px;
  font-weight: 800;
}
@media screen and (max-width:700px) {
  .single-blog-title {
    font-size: 30px;
    line-height: 83px;
  }
}
.single-blog-title .color-orange {
  color: #fdbc0b;
  font-weight: 700;
}

.single__top-img {
  margin-top: 64px;
  width: 100%;
  aspect-ratio: 950/490;
}
@media screen and (max-width:700px) {
  .single__top-img {
    margin-top: 32px;
  }
}

.single__top-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 51px;
  margin-top: 23px;
}
@media screen and (max-width:700px) {
  .single__top-title {
    font-size: 23px;
  }
}

.toc {
  margin-top: 80px;
  padding: 33px 40px;
  display: flex;
  gap: 20px;
  background: #d6d6d6;
}
@media screen and (max-width:700px) {
  .toc {
    flex-direction: column;
  }
}
.toc a {
  transition: opacity 0.3s ease 0;
}
.toc a:hover {
  opacity: 0.7;
}

.toc__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 51px;
}

.toc__h2-ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toc__h3-ul {
  margin-top: 10px;
  padding-left: 20px;
}

.single-content {
  margin-top: 55px;
}
.single-content h2 {
  padding: 30px;
  background: #15318e;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  line-height: 51px;
}
@media screen and (max-width:700px) {
  .single-content h2 {
    font-size: 23px;
    padding: 20px;
  }
}
.single-content h2:not(:first-child) {
  margin-top: 55px;
}
.single-content h3 {
  font-weight: bold;
  margin-top: 30px;
}
.single-content p {
  margin-top: 30px;
}

.single-button-content {
  text-align: center;
  margin-top: 114px;
}

.entry-button {
  width: 400px;
  border-radius: 15px;
  color: #fff;
  font-weight: 600;
  background: #e8b223;
  display: inline-block;
  padding: 24px 0;
  transition: opacity 0.3s ease 0;
}
.entry-button:hover {
  opacity: 0.7;
}
@media screen and (max-width:700px) {
  .entry-button {
    width: 300px;
    padding: 20px 0;
  }
}

.related-articles {
  margin-top: 122px;
}

.related-articles__title-main {
  font-size: 30px;
  font-weight: 600;
  line-height: 51px;
  color: #15318e;
  padding-bottom: 25px;
  border-bottom: 1px solid #15318e;
}
@media screen and (max-width:700px) {
  .related-articles__title-main {
    font-size: 23px;
    padding-bottom: 15px;
  }
}

.related-articles__lists {
  margin-top: 55px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width:700px) {
  .related-articles__lists {
    flex-direction: column;
    margin-top: 30px;
    align-items: center;
    gap: 40px;
  }
}

.related-articles__list {
  max-width: 400px;
  flex: 1;
}
@media screen and (max-width:700px) {
  .related-articles__list {
    max-width: 100%;
  }
}

.sidebar {
  width: 36.3095238095%;
  background: #f9f9ee;
  padding: 138px 0;
  display: flex;
  flex-direction: column;
  gap: 100px;
  height: 100%;
}
@media (max-width: 1000px) {
  .sidebar {
    width: 100%;
    margin-top: 120px;
  }
}
@media screen and (max-width:700px) {
  .sidebar {
    width: 100%;
    margin-top: 120px;
    gap: 100px;
    padding: 80px 0;
  }
}

.sidebar__content {
  width: 100%;
  max-width: 440px;
  padding: 0 20px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .sidebar__content {
    max-width: 600px;
  }
}
@media screen and (max-width:700px) {
  .sidebar__content {
    max-width: 600px;
  }
}

.sidebar__content__title {
  color: #15318e;
  font-weight: 600;
  font-size: 30px;
  line-height: 51px;
}
@media screen and (max-width:700px) {
  .sidebar__content__title {
    font-size: 23px;
  }
}

.sidebar__content-lists {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (max-width:700px) {
  .sidebar__content-lists {
    gap: 50px;
  }
}
.sidebar__content-lists .card-title {
  margin-top: 20px;
  font-weight: 600;
}
@media screen and (max-width:700px) {
  .sidebar__content-lists .card-title {
    margin-top: 20px;
  }
}

.sidebar__content-list img {
  aspect-ratio: 400/220;
}

.footer-content {
  margin-top: 197px;
}
@media screen and (max-width:700px) {
  .footer-content {
    margin-top: 120px;
  }
}

.want-read-article {
  margin-top: 55px;
}

.want-read-article__link {
  padding: 18px;
  display: flex;
  gap: 16px;
  border: 1px solid #707070;
  transition: opacity 0.3s ease 0;
}
.want-read-article__link:hover {
  opacity: 0.7;
}
@media screen and (max-width:700px) {
  .want-read-article__link {
    flex-direction: column;
  }
}

.want-read-article__img {
  width: 220px;
}
@media screen and (max-width:700px) {
  .want-read-article__img {
    width: 100%;
  }
}
.want-read-article__img img {
  aspect-ratio: 221/123;
}

.want-read-article__detail {
  width: calc(100% - 236px);
}
@media screen and (max-width:700px) {
  .want-read-article__detail {
    width: 100%;
  }
}

.want-read-article__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 34px;
  margin-top: 0 !important;
}

.want-read-article__text {
  font-size: 20px;
  font-weight: 300;
  line-height: 34px;
  margin-top: 0 !important;
}

.want-read-article__category {
  font-size: 13px;
  font-weight: 300;
  line-height: 23px;
  margin-top: 36px;
  padding: 4px 48px;
  border-radius: 30px;
  border: 1px solid #707070;
}

.wpp-post-title {
  font-weight: 700;
}/*# sourceMappingURL=single.css.map */