@charset "UTF-8";
/*
Theme Name: LSL Journal Theme
Author: BlueBlaze Inc.
Description: ライフシフトラボ・ジャーナルのテーマです
Version: 1.0
*/
/* 変数 */
html {
  font-size: 16px;
}
@media (max-width: 599px) {
  html {
    font-size: 3.8vw;
  }
}

body {
  line-height: 1.8;
  width: 100vw;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #333333;
  text-align: left;
  word-break: break-word;
}

img {
  display: block;
  width: 100%;
  height: initial;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
@media (max-width: 599px) {
  h1, h2, h3, h4 {
    letter-spacing: 0.02em;
  }
}

h1 {
  font-size: 1.875rem;
  margin-bottom: 2rem;
}
@media (max-width: 599px) {
  h1 {
    font-size: 1.6rem;
  }
}

h2, .section-title {
  font-size: 1.5rem;
  color: #274A78;
}

h3 {
  font-size: 1.25rem;
}

.sp {
  display: none;
}
@media (max-width: 599px) {
  .sp {
    display: block;
  }
}

.dt {
  display: block;
}
@media (max-width: 768px) {
  .dt {
    display: none;
  }
}

.bold {
  font-weight: 700;
}

#content, .container {
  width: 92vw;
  max-width: 1050px;
  margin: 0 auto;
}

#content {
  padding: 1.5rem 0 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.heading-wrapper {
  display: flex;
  align-items: center;
  margin: 0.5rem 0 1rem;
}
.heading-wrapper h1, .heading-wrapper h2 {
  margin-bottom: 0;
}
.heading-wrapper::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: #7C7C89;
  margin-left: 1rem;
}

.main-heading::after {
  content: "";
  background: red;
  width: 100%;
  height: 1px;
}

/* ヘッダー */
header {
  background: #FFFFFF;
  border-bottom: 1px solid #E7E7EA;
}

.header-logo {
  width: initial;
  height: 2.5rem;
}

.header-top-wrapper {
  height: 4rem;
}

.header-top-wrapper, #menu-header-menu {
  width: 92vw;
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-bottom-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #274A78;
  color: #FFFFFF;
  font-weight: 500;
}
@media (max-width: 768px) {
  .header-bottom-wrapper {
    display: none;
    position: fixed;
    z-index: 1;
    width: 100vw;
    top: 4rem;
    left: 0;
    background: #274A78;
    padding: 2rem 4vw;
  }
}

#menu-header-menu {
  justify-content: space-between;
  flex-wrap: wrap;
}
#menu-header-menu li {
  flex-grow: 1;
  text-align: center;
  line-height: 4rem;
  position: relative;
}
#menu-header-menu li::after, #menu-header-menu li:first-child::before {
  content: "";
  position: absolute;
  top: 1rem;
  right: 0;
  width: 1px;
  height: 2rem;
  background: #FFFFFF;
}
#menu-header-menu li:first-child::before {
  right: initial;
  left: 1rem;
}
#menu-header-menu li a {
  display: block;
}
#menu-header-menu li a::hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  #menu-header-menu li {
    font-size: 1.25rem;
    display: block;
    padding: 1.5rem 4vw;
    text-align: left;
    width: 100%;
    line-height: initial;
    border-bottom: 1px solid #FFFFFF;
  }
  #menu-header-menu li::before, #menu-header-menu li::after {
    display: none;
  }
}

/* 検索 */
#search-form {
  position: relative;
}
@media (max-width: 768px) {
  #search-form {
    display: none;
  }
}

.search-box {
  line-height: 1;
  width: 240px;
  border: 1px solid #7C7C89;
  border-radius: 4px;
  padding: 0.5rem;
  outline: none;
}
@media (max-width: 768px) {
  .search-box {
    width: 100%;
    padding: 1rem;
    border-color: #FFFFFF;
  }
}

.search-box::-moz-placeholder {
  color: #7C7C89;
}

.search-box::placeholder {
  color: #7C7C89;
}
@media (max-width: 768px) {
  .search-box::-moz-placeholder {
    color: #FFFFFF;
    font-size: 1.25rem;
  }
  .search-box::placeholder {
    color: #FFFFFF;
    font-size: 1.25rem;
  }
}

.search-btn {
  color: inherit;
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
  right: 0.5rem;
}
@media (max-width: 599px) {
  .search-btn {
    right: 1rem;
  }
}

.search-btn svg {
  vertical-align: top;
}

.search-sp-wrapper {
  text-align: center;
}

.search-sp-wrapper #search-form {
  display: none;
  text-align: initial;
}
@media (max-width: 768px) {
  .search-sp-wrapper #search-form {
    display: inline;
  }
}

#hamburger {
  display: none;
  position: relative;
  width: 23px;
  height: 21px;
  cursor: pointer;
}
#hamburger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background: #274A78;
  border-radius: 10px;
  transition: transform 0.3s ease, top 0.3s ease;
}
#hamburger span:nth-child(1) {
  top: 0;
}
#hamburger span:nth-child(2) {
  top: 9px;
}
#hamburger span:nth-child(3) {
  top: 18px;
}
@media (max-width: 768px) {
  #hamburger {
    display: block;
  }
}

#hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 10.5px;
}
#hamburger.open span:nth-child(2) {
  width: 0;
}
#hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10.5px;
}

#menu-bg {
  display: none;
}
@media (max-width: 768px) {
  #menu-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
  }
}

/* フッター */
footer {
  color: #FFFFFF;
  background: #274A78;
  padding: 3rem 0;
}

#menu-footer-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

#menu-footer-menu li {
  margin-right: 2rem;
}

#menu-footer-menu li:last-child {
  margin-right: 0;
}

.copyright {
  text-align: center;
  font-size: 0.875rem;
}

.footer-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-banner-item {
  width: calc((100% - 1.5rem) / 4);
}
.footer-banner-item:not(:last-child) {
  margin-right: 0.5rem;
}
@media (max-width: 599px) {
  .footer-banner-item {
    width: calc(50% - 0.25rem);
  }
  .footer-banner-item:nth-child(2) {
    margin-right: 0;
  }
  .footer-banner-item {
    margin-bottom: 0.5rem;
  }
}

@media screen and (max-width: 599px) {
  #menu-footer-menu li {
    width: 100%;
    text-align: center;
    margin: 0 0 0.5rem 0;
  }
}
/* 座布団 */
/* Main */
main {
  width: calc(100% - 300px - 2rem);
}

/* Aside */
aside.sidebar {
  width: 300px;
  margin-left: 1rem;
}

.sidebar > section {
  padding-top: 1rem;
  margin-bottom: 2rem;
}

.sidebar h2 {
  text-align: center;
}

aside.pickup {
  width: 100%;
  margin-bottom: 1.5rem;
}

.sidebar-logo {
  margin-bottom: 1rem;
}

.sp-fixed-banner {
  width: 94vw;
  position: fixed;
  bottom: 4vw;
  left: 3vw;
}
.sp-fixed-banner.js-close {
  display: none;
}

.close-banner {
  position: absolute;
  right: -3vw;
  top: -3vw;
  width: 6vw;
  height: 6vw;
  background: #7C7C89;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.close-banner .x-lg {
  display: block;
  color: #FFFFFF;
  width: 4vw;
  height: 4vw;
}

@media screen and (max-width: 768px) {
  .sidebar > section {
    padding: 1.5rem 4vw;
  }
  main, aside.sidebar, aside.pickup {
    width: 92vw;
    margin: 0;
  }
}
/* パンくず */
.breadcrumb {
  color: #7C7C89;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.breadcrumb-item, .breadcrumb-item .post-categories, .breadcrumb-item .post-categories li {
  display: inline;
}

.breadcrumb-item::after {
  display: inline-block;
  content: ">";
  margin: 0 0.25rem;
}

.breadcrumb-item:last-child {
  color: #333333;
}
.breadcrumb-item:last-child::after {
  content: none;
}

/* 記事リスト */
.list-item:not(:last-child) {
  margin-bottom: 1.5rem;
}

.list-item > a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.list-item > a:hover .list-title, .sidebar-card > a:hover .list-title, .pickup-card > a:hover .list-title {
  color: #274A78;
}

.list-item img {
  width: 40%;
}
@media (max-width: 599px) {
  .list-item img {
    width: 100%;
  }
}

.list-body {
  width: calc(60% - 1rem);
}
@media (max-width: 599px) {
  .list-body {
    width: 100%;
    margin-top: 0.5rem;
  }
}

.list-attributes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.list-title {
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.5;
}

.before, .after {
  font-size: 0.875rem;
  width: 5rem;
  border-radius: 300px;
  text-align: center;
  display: inline-block;
  margin-right: 0.5rem;
  margin-bottom: 0.25rem;
  background: #7C7C89;
  color: #FFFFFF;
}

.after {
  background: #D2171E;
}

/* 記事カード */
.article-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pickup-card {
  width: calc((100% - 2rem) / 3);
  background: #FFFFFF;
  border-radius: 4px;
}
@media (max-width: 599px) {
  .pickup-card {
    width: 100%;
    margin-bottom: 1.5rem;
  }
}

.pickup-card img {
  border-radius: 4px 4px 0 0;
}

.sidebar-card {
  margin-bottom: 1.5rem;
}

.sidebar-card:last-child {
  margin-bottom: 0;
}

.sidebar-card .list-title {
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .sidebar-card .list-title {
    font-size: 16px;
  }
}
@media (max-width: 599px) {
  .sidebar-card .list-title {
    font-size: 3.8vw;
  }
}

.card-body {
  margin-top: 0.5rem;
}
@media (max-width: 599px) {
  .card-body {
    margin-top: 0;
  }
}

.pickup-card .card-body {
  padding: 0.5rem 1rem 1rem;
}

/* アクセスランキング */
.ranking-list {
  counter-reset: item;
}

.ranking-list li {
  position: relative;
}

.ranking-list li::before, .ranking-list li::after {
  position: absolute;
  top: 0;
  left: 0;
}

.ranking-list li::before {
  content: "";
  border-top: 1.5rem solid #D2171E;
  border-left: 1.5rem solid #D2171E;
  border-right: 1.5rem solid transparent;
  border-bottom: 1.5rem solid transparent;
}

.ranking-list li::after {
  counter-increment: item;
  content: counter(item);
  color: #FFFFFF;
  padding: 0.5rem 0 0 0.5rem;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 599px) {
  .card {
    width: 100%;
    margin-bottom: 2rem;
  }
  .card:last-child {
    margin-bottom: 0;
  }
  .card > a, .sidebar-card > a {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .card img, .sidebar-card img {
    width: 100%;
  }
  .ranking-list li::before {
    border-top-width: 1rem;
    border-left-width: 1rem;
    border-right-width: 1rem;
    border-bottom-width: 1rem;
  }
  .ranking-list li::after {
    padding: 0.2rem 0 0 0.2rem;
  }
}
/* 記事本文 */
.article-container {
  margin-bottom: 4rem;
}

.article-body {
  margin-bottom: 4rem;
}

.article-body p, .article-body img {
  margin-bottom: 2rem;
}

.article-body h2 {
  color: #333333;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.article-body h3 {
  margin-top: 3rem;
}

.article-body a {
  color: #274A78;
  text-decoration: underline;
}

.article-body ul, .article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.article-body ul li {
  list-style-type: disc;
}

.article-body ol li {
  list-style-type: decimal;
}

mark {
  background: linear-gradient(transparent 60%, #FDE081 60%);
}

.article-body .courses-selector {
  padding: initial;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.article-body .course-item {
  list-style-type: none;
  width: calc((100% - 1rem) / 4);
}
@media (max-width: 599px) {
  .article-body .course-item {
    width: 25%;
  }
}

.article-body table {
  width: 100%;
  margin-bottom: 2rem;
}

.article-body td {
  border: 1px solid #E7E7EA;
  padding: 0.5rem;
}

.article-body blockquote {
  padding: 0.5rem 0 0.5rem 1rem;
  margin-bottom: 2rem;
  border-left: 2px solid #7C7C89;
  background: top left 0.5rem/3rem no-repeat url(https://res.cloudinary.com/blueblaze/image/authenticated/s--fw5nI6Yp--/v1650198541/lsc/quotation_gray.svg);
}

.article-body .question {
  color: #274A78;
  font-weight: 500;
}

.eyecatch-img {
  margin-bottom: 2rem;
}
@media (max-width: 599px) {
  .eyecatch-img {
    position: relative;
    left: -4vw;
    width: 100vw;
  }
}

.article-attributes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.published-at, .updated-at {
  color: #7C7C89;
  font-size: 0.875rem;
}

@media (max-width: 599px) {
  .list-body .updated-at {
    display: block;
    margin-top: 0.25rem;
  }
}

.post-categories li, .category-item {
  font-size: 0.875rem;
  color: #274A78;
  padding: 0.25rem 1rem;
  line-height: 1;
  border-radius: 100px;
  border: 1px solid #274A78;
  display: inline-block;
  margin-right: 0.5rem;
}

.tags-list {
  margin-bottom: 2rem;
}

.tag-item {
  display: inline-block;
  margin-right: 1rem;
  color: #7C7C89;
  font-size: 0.875rem;
}

.share-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.share-item {
  width: calc(50% - 0.5rem);
  color: #FFFFFF;
  font-weight: 500;
  text-align: center;
  border-radius: 4px;
}

.share-item:last-child {
  margin-right: 0;
}

.share-item a {
  display: block;
  padding: 0.25rem 0;
}

.icon-wrapper svg {
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  margin-right: 0.5rem;
  vertical-align: middle;
  position: relative;
  bottom: 0.1rem;
}

.twitter {
  border-color: #00acee;
  background: #00acee;
}

.facebook {
  border-color: #1877f2;
  background: #1877f2;
}

.author-wrapper {
  border: 1px solid #E7E7EA;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 599px) {
  .author-wrapper {
    padding: 4vw;
    display: block;
  }
}

.author-img {
  width: 20%;
  margin-right: 1.5rem;
  margin-bottom: 0.5rem !important;
}
@media (max-width: 599px) {
  .author-img {
    width: 40%;
    margin: 0 auto;
  }
}

.author-body {
  flex: 1;
  margin: 0;
}
.author-body > p {
  margin-bottom: 0 !important;
}

.author-name {
  color: #274A78;
  font-size: 1.25rem;
  font-weight: 700;
}

.nav-links {
  margin: 2rem auto 0;
  text-align: center;
}

.page-numbers {
  font-weight: 700;
  color: #7C7C89;
  display: inline-block;
  margin: 0 0.5rem;
}
.page-numbers.current {
  color: #274A78;
}

/* プロフィール */
.before-after-info > p {
  margin-bottom: 0 !important;
}

.profile {
  border: 1px solid #E7E7EA;
  padding: 1.5rem;
}
.profile > p {
  margin-bottom: 0 !important;
}
@media (max-width: 599px) {
  .profile {
    padding: 1.5rem 4vw;
  }
}

.profile-img {
  border: 1px solid #7C7C89;
  width: 60%;
  margin: 0 auto 1rem;
  border-radius: 100%;
}

.alignright, [class*=wp-block].alignright {
  margin-left: auto;
}

.wp-block-categories.aligncenter,
.wp-block-latest-posts.aligncenter,
.wp-block-archives.aligncenter,
.wp-block-tag-cloud.aligncenter,
.wp-block-latest-comments.aligncenter,
.wp-block-rss.aligncenter {
  text-align: center;
}

.attachment-full {
  width: 100%;
}

.wp-block-image {
  margin-bottom: 1rem;
}

.wp-block-image figcaption {
  margin: -1.5rem 0 2rem;
  font-size: 0.875rem;
  text-align: center;
  color: #7C7C89;
}

.wp-caption-text {
  font-size: 0.875rem;
  text-align: center;
  color: #7C7C89;
  margin-top: -1.5rem;
}

figure.size-full {
  width: 100%;
}
figure.size-full.is-resized {
  width: auto;
}

figure.size-medium {
  width: 50%;
}

figure.size-thumbnail {
  width: 30%;
}

.wp-block-image figure.alignright {
  float: right;
  margin: 0 0 0 1rem;
}

.wp-block-image figure.alignleft {
  float: left;
  margin: 0 1rem 0 0;
}

.clear {
  clear: both;
}/*# sourceMappingURL=style.css.map */