@charset "UTF-8";
@font-face {
  font-family: "LINE Seed JP";
  font-weight: 100;
  font-display: swap;
  src: url(../fonts/line_seed_jp_thin.woff2) format("woff2");
}
@font-face {
  font-family: "LINE Seed JP";
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/line_seed_jp_regular.woff2) format("woff2");
}
@font-face {
  font-family: "LINE Seed JP";
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/line_seed_jp_bold.woff2) format("woff2");
}
@font-face {
  font-family: "LINE Seed JP";
  font-weight: 800;
  font-display: swap;
  src: url(../fonts/line_seed_jp_exbold.woff2) format("woff2");
}
@font-face {
  font-family: "LINE AWESOME SOLID";
  font-weight: 900;
  font-display: swap;
  src: url(../fonts/la-solid-900.woff2) format("woff2");
}
:root {
  --primary-color: #D02826;
  --secondary-color: #EB9845;
}

body {
  font-family: "LINE Seed JP";
  font-weight: 400;
  font-style: normal;
}

.content_wrap {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.global_header {
  width: 100%;
  border-top: 5px solid var(--primary-color);
  background-color: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}

.global_header_inner {
  position: relative;
  padding: 15px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.global_ham_btn {
  position: absolute;
  left: 20px;
  top: 0;
  cursor: pointer;
  color: #EB9845;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition-duration: 0.3s;
}
.global_ham_btn__icon {
  font-family: "LINE AWESOME SOLID";
  font-size: 5.5rem;
  font-weight: 900;
  transition-duration: 0.4s;
}
.global_ham_btn__text {
  font-size: 1.2rem;
  font-weight: 800;
  margin-top: -0.7em;
  transition-duration: 0.2s;
}
.global_ham_btn:focus, .global_ham_btn:hover {
  color: var(--primary-color);
  transform: scale(1.2);
}
.global_ham_btn:focus .global_ham_btn__icon, .global_ham_btn:hover .global_ham_btn__icon {
  transform: rotate(-5deg);
}
.global_ham_btn:focus .global_ham_btn__text, .global_ham_btn:hover .global_ham_btn__text {
  transform: rotate(5deg);
}

.global_header_logo {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  text-align: center;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.global_header_logo__img {
  width: 45px;
  height: auto;
  margin-right: 20px;
  transition-duration: 0.5s;
}
.global_header_logo__text {
  margin-top: 3px;
  transition-duration: 0.5s;
}
.global_header_logo__text--burger {
  color: #EB9845;
}
.global_header_logo__text--news {
  color: var(--primary-color);
}
.global_header_logo:focus .global_header_logo__img, .global_header_logo:hover .global_header_logo__img {
  transform: rotate(360deg);
}
.global_header_logo:focus .global_header_logo__text--burger, .global_header_logo:hover .global_header_logo__text--burger {
  color: var(--primary-color);
}
.global_header_logo:focus .global_header_logo__text--news, .global_header_logo:hover .global_header_logo__text--news {
  color: #EB9845;
}

.drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 500px;
  height: 100dvh;
  overflow-y: auto;
  background-color: #fff;
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.2);
  transition-duration: 0.3s;
  z-index: 1000;
}
.drawer.is-active {
  left: 0;
}
.drawer__inner {
  width: 100%;
  padding: 0 25px 25px 25px;
}

.drawer_close {
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  padding: 0.4em;
  color: #fff;
  background-color: var(--primary-color);
  cursor: pointer;
  transition-duration: 0.3s;
}
.drawer_close:focus, .drawer_close:hover {
  background-color: #EB9845;
}
.drawer_close__icon {
  font-family: "LINE AWESOME SOLID";
  margin-right: 10px;
}

.drawer_content {
  margin-top: 30px;
}

.drawer_head {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}

.drawer_search__label {
  display: block;
  width: max-content;
}
.drawer_search__inner {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 10px;
}
.drawer_search__input {
  flex-grow: 1;
  font-size: 1.4rem;
  padding: 10px;
  border: 2px solid var(--primary-color);
  border-radius: 4px 0 0 4px;
}
.drawer_search__input:focus, .drawer_search__input:hover {
  border-color: #EB9845;
}
.drawer_search__button {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 4px;
  padding: 10px 20px;
  cursor: pointer;
  transition-duration: 0.3s;
}
.drawer_search__button:focus, .drawer_search__button:hover {
  background-color: #EB9845;
  border-color: #EB9845;
  transform: scale(1.1);
}

.drawer_category_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.drawer_category_list__link {
  display: block;
  color: #fff;
  background-color: var(--primary-color);
  border-radius: 1em;
  font-size: 1.3rem;
  padding: 0.5em 1em;
  text-decoration: none;
  transition-duration: 0.3s;
}
.drawer_category_list__link:focus, .drawer_category_list__link:hover {
  background-color: #EB9845;
  transform: scale(1.1);
}

.drawer_tag_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.drawer_tag_list__link {
  display: block;
  color: #fff;
  background-color: #EB9845;
  border-radius: 1em;
  font-size: 1.3rem;
  padding: 0.5em 1em;
  text-decoration: none;
  transition-duration: 0.3s;
}
.drawer_tag_list__link:focus, .drawer_tag_list__link:hover {
  background-color: var(--primary-color);
  transform: scale(1.1);
}

.drawer_feature_list {
  font-size: 1.4rem;
  margin-top: 1em;
}
.drawer_feature_list__item {
  position: relative;
  width: 100%;
}
.drawer_feature_list__item:not(:last-of-type) {
  margin-bottom: 15px;
}
.drawer_feature_list__link {
  display: block;
  color: var(--primary-color);
  background-color: #fff;
  transition-duration: 0.3s;
}
.drawer_feature_list__link:focus, .drawer_feature_list__link:hover {
  color: #EB9845;
}
.drawer_feature_list__link:focus .drawer_feature_list__thumb, .drawer_feature_list__link:hover .drawer_feature_list__thumb {
  border-color: #EB9845;
}
.drawer_feature_list__link:focus .drawer_feature_list_views, .drawer_feature_list__link:hover .drawer_feature_list_views {
  background-color: #EB9845;
}
.drawer_feature_list__thumb {
  border: 2px solid var(--primary-color);
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  object-fit: cover;
}
.drawer_feature_list__title {
  font-size: 1.3rem;
  line-height: 1.5;
  margin-top: 0.5em;
}

.drawer_feature_list_views {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  background-color: var(--primary-color);
  padding: 0.3em 0.5em;
  transition-duration: 0.3s;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.drawer_feature_list_views__dt::after {
  padding: 0 0.2em;
  content: "：";
}

.drawer_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.3s;
  z-index: 2;
}
.drawer_bg.is-active {
  opacity: 1;
  visibility: visible;
}

.main_area {
  width: calc(100% - 300px - 30px);
  min-height: 70dvh;
}

.article_wrap {
  width: 100%;
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
}

.page_title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.5;
  color: #333;
  margin-bottom: 1em;
}

.page_content {
  font-size: 1.6rem;
  line-height: 1.5;
}
.page_content h2 {
  display: block;
  width: fit-content;
  font-size: 2rem;
  color: #fff;
  background-color: var(--primary-color);
  padding: 0.4em 0.8em;
  margin-top: 2em;
  margin-bottom: 1em;
}
.page_content p {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 1em;
}

.article_archive_link {
  display: block;
  width: fit-content;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #EB9845;
  text-decoration: none;
  padding: 1em 2.5em;
  border: 1px solid #EB9845;
  border-radius: 30px;
  margin: 50px auto 0;
  letter-spacing: 0.1em;
  transition-duration: 0.3s;
}
.article_archive_link:focus, .article_archive_link:hover {
  color: #EB9845;
  background-color: transparent;
  transform: scale(1.2);
}

.archive_pagenation {
  font-size: 1.6rem;
  margin: 50px auto;
  text-align: center;
}
.archive_pagenation .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.5em;
}
.archive_pagenation a {
  display: block;
  width: fit-content;
  text-decoration: none;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  padding: 0.5em 0.8em;
  transition-duration: 0.3s;
}
.archive_pagenation .current {
  width: fit-content;
  border-radius: 4px;
  padding: 0.5em 0.8em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.archive_pagenation .current,
.archive_pagenation a:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.global_side {
  width: 300px;
  padding: 20px 15px;
  background-color: #fff;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
  font-size: 1.4rem;
  line-height: 1.5;
}
.global_side__item {
  width: 100%;
}
.global_side__item:not(:last-of-type) {
  margin-bottom: 30px;
}
.global_side__title {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #333;
  padding: 0.4em;
}
.global_side__title--category {
  background-color: var(--primary-color);
}
.global_side__title--tag {
  background-color: #EB9845;
}

.side_search__label {
  display: block;
  width: max-content;
}
.side_search__inner {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 5px;
  gap: 5px;
}
.side_search__input {
  flex-grow: 1;
  font-size: 1.4rem;
  padding: 10px;
  border: 2px solid var(--primary-color);
  border-radius: 4px 0 0 4px;
}
.side_search__input:focus, .side_search__input:hover {
  border-color: #EB9845;
}
.side_search__button {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 4px;
  padding: 0.4em 0.8em;
  cursor: pointer;
  transition-duration: 0.3s;
}
.side_search__button:focus, .side_search__button:hover {
  background-color: #EB9845;
  border-color: #EB9845;
  transform: scale(1.1);
}

.side_category_list {
  font-size: 1.4rem;
  margin-top: 1em;
}
.side_category_list__item {
  display: block;
  line-height: 1.5;
  color: var(--primary-color);
}
.side_category_list__item::before {
  content: "・";
}
.side_category_list__item:not(:last-of-type) {
  margin-bottom: 0.5em;
}
.side_category_list__link {
  color: var(--primary-color);
}

.side_tag_list {
  font-size: 1.4rem;
  margin-top: 1em;
}
.side_tag_list__item {
  display: block;
  line-height: 1.5;
  color: #EB9845;
}
.side_tag_list__item::before {
  content: "・";
}
.side_tag_list__item:not(:last-of-type) {
  margin-bottom: 0.5em;
}
.side_tag_list__link {
  color: #EB9845;
}

.side_feature_list {
  font-size: 1.4rem;
  margin-top: 1em;
}
.side_feature_list__item {
  position: relative;
  width: 100%;
}
.side_feature_list__item:not(:last-of-type) {
  margin-bottom: 15px;
}
.side_feature_list__link {
  display: block;
  color: var(--primary-color);
  background-color: #fff;
  transition-duration: 0.3s;
}
.side_feature_list__link:focus, .side_feature_list__link:hover {
  color: #EB9845;
}
.side_feature_list__link:focus .side_feature_list__thumb, .side_feature_list__link:hover .side_feature_list__thumb {
  border-color: #EB9845;
}
.side_feature_list__link:focus .side_feature_list_views, .side_feature_list__link:hover .side_feature_list_views {
  background-color: #EB9845;
}
.side_feature_list__thumb {
  border: 2px solid var(--primary-color);
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  object-fit: cover;
}
.side_feature_list__title {
  font-size: 1.3rem;
  line-height: 1.5;
  margin-top: 0.5em;
}

.side_feature_list_views {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  background-color: var(--primary-color);
  padding: 0.25em 0.5em;
  transition-duration: 0.3s;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.side_feature_list_views__dt::after {
  padding: 0 0.2em;
  content: "：";
}

.global_footer {
  width: 100%;
  padding: 20px 10px;
  margin-top: 50px;
  background-color: var(--primary-color);
}

.global_footer_nav {
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 1em;
}
.global_footer_nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}
.global_footer_nav__link {
  display: block;
  color: #fff;
  padding: 0.4em 0.8em;
  transition-duration: 0.3s;
}
.global_footer_nav__link:focus, .global_footer_nav__link:hover {
  color: var(--primary-color);
  background-color: #fff;
  text-decoration: none;
}

.global_footer_copy {
  display: block;
  width: 100%;
  font-size: 1.3rem;
  font-weight: 100;
  color: #fff;
  text-align: center;
}

.sns_area {
  display: block;
  width: 100%;
  margin-top: 25px;
}

.sns_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 10px;
  font-size: 2.2rem;
}
.sns_list__link {
  display: block;
  padding: 0.3em 0.6em;
  color: #999;
  border: 1px solid #999;
  border-radius: 4px;
  transition-duration: 0.4s;
}
.sns_list__link:focus, .sns_list__link:hover {
  color: #fff;
}
.sns_list__link--facebook:focus, .sns_list__link--facebook:hover {
  background-color: #3B5998;
  border-color: #3B5998;
}
.sns_list__link--twitter:focus, .sns_list__link--twitter:hover {
  background-color: #1DA1F2;
  border-color: #1DA1F2;
}
.sns_list__link--line:focus, .sns_list__link--line:hover {
  background-color: #00C300;
  border-color: #00C300;
}

@media screen and (max-width: 1220px) {
  .content_wrap {
    padding-left: 3%;
    padding-right: 3%;
  }
}
@media screen and (max-width: 960px) {
  .global_ham_btn {
    display: flex;
  }
  .main_area {
    width: 100%;
  }
  .article_wrap {
    padding: 30px 4%;
  }
  .global_side {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .global_header_logo {
    font-size: 2.2rem;
  }
  .global_header_logo__img {
    width: 30px;
    margin-right: 10px;
  }
  .global_ham_btn {
    top: 6px;
  }
  .global_ham_btn__icon {
    font-size: 3.5rem;
  }
  .global_ham_btn__text {
    font-size: 1rem;
    margin-top: -0.5em;
  }
  .content_wrap {
    padding-left: 4%;
    padding-right: 4%;
  }
}

/*# sourceMappingURL=common.css.map */
