@charset "UTF-8";
/* ===============================================
# global
=============================================== */
/* ===============================================
# フォントのCDN
=============================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@700;900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css");
/* ===============================================
# 関数
=============================================== */
/* ===============================================
# global
=============================================== */
/* ===============================================
# ミックスイン
=============================================== */
:root {
  --sp: 480px;
  --tb: 835px;
}

/* ===============================================
# 変数
=============================================== */
:root {
  --font-size12: 0.75rem;
  --font-size16: 1rem;
  --font-size18: 1.125rem;
  --font-size20: 1.25rem;
  --font-size22: 1.375rem;
  --font-size24: 1.5rem;
  --font-size28: 1.75rem;
  --font-size30: 1.875rem;
  --font-size32: 2rem;
  --font-size36: 2.25rem;
  --font-size50: 3.125rem;
}

:root {
  --color-white: #fff;
  --color-black: #151515;
  --color-gray: #cbcbcb;
  --color-gray-bg: #ebebe3;
  --color-red: #C95A7C;
  --color-red-2: #C35778;
  --color-yellow: #E8DB70;
  --color-green: #5AC99E;
  --color-orange: #BE7155;
  --color-blue: #59ACB7;
  --color-link:#0000ee;
  --color-bg:#FDFBF5;
  --color-brown:#5c4f36;
  --color-lightBrown:#4d4d4d;
  --color-hover:#c25840;
}

/* ===============================================
# common
=============================================== */
/* ===============================================
# 共通ベース
=============================================== */
* {
  box-sizing: border-box;
  font-size: 1rem;
  font-family: "Noto Sans JP", serif;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

*::-webkit-scrollbar {
  display: none;
}

html {
  width: 100%;
  height: 100%;
}

.body {
  display: flex;
  flex-direction: column;
}
.body > ul {
  margin-top: 100px;
}

main {
  width: 100%;
  padding-top: 200px;
}
@media screen and (max-width: 835px) {
  main {
    padding-top: 100px;
  }
}

.single main {
  padding-top: 100px;
}

body {
  min-width: 375px;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg);
}

h1, h2, h3, p, a {
  color: var(--color-brown);
  line-height: 1.6;
}

p {
  font-size: var(--font-size16);
}

a {
  text-decoration: none;
  display: inline-block;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto 100px auto;
}

/* ===============================================
# ハナプレについて・運営会社について
=============================================== */
#page_contact .container,
#page_hanapre .container,
#page_company .container {
  margin-bottom: 0;
}

/* ===============================================
# フォームの送信ボタン
=============================================== */
#privacy_scroll .container {
  padding: 30px;
}

/* ===============================================
# アニメーション
=============================================== */
@keyframes open_menu {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.key-open_menu {
  animation-name: open_menu;
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
}
@keyframes typing {
  from {
    width: 0;
    opacity: 1;
  }
  to {
    width: 36ch;
  }
}
@keyframes typing2 {
  from {
    width: 0;
    opacity: 1;
  }
  to {
    width: 24ch;
    opacity: 1;
  }
}
@keyframes typing3 {
  from {
    width: 0;
    opacity: 1;
  }
  to {
    width: 22ch;
    opacity: 1;
  }
}
@keyframes typing4 {
  from {
    width: 0;
    opacity: 1;
  }
  to {
    width: 24ch;
    opacity: 1;
  }
}
@keyframes typing5 {
  from {
    width: 0;
    opacity: 1;
  }
  to {
    width: 30ch;
    opacity: 1;
  }
}
@keyframes effect {
  50% {
    border-color: transparent;
  }
}
@keyframes typing-2 {
  from {
    width: 0;
  }
  to {
    width: 22ch;
  }
}
@keyframes effect-2 {
  0% {
    display: block;
  }
  50% {
    border-color: transparent;
  }
}
.anime {
  animation-duration: 3s;
  animation-fill-mode: forwards;
}
.anime.loop {
  animation-iteration-count: infinite;
}
.anime.delay-2s {
  animation-delay: 2s;
}
.anime.delay-4s {
  animation-delay: 4s;
}
.anime.delay-6s {
  animation-delay: 6s;
}
.anime.delay-8s {
  animation-delay: 8s;
}
.anime.delay-10s {
  animation-delay: 10s;
}
.anime.fast {
  animation-duration: 500ms;
}
.anime.slow-2s {
  animation-duration: 2s;
}
.anime.slow-10s {
  animation-duration: 10s;
}
.anime.slow-20s {
  animation-duration: 20s;
}
.anime.ease-in {
  animation-timing-function: ease-in;
}
.anime.ease-out {
  animation-timing-function: ease-out;
}

/* ===============================================
# テキストをタイプライター風表示のアニメーション
=============================================== */
#page_hanapre h3 {
  min-height: 1.5em;
  transition: all 0.2s ease;
  position: relative;
  display: block;
}

#page_hanapre h3.typewriter-ready {
  opacity: 1;
  border-right: 2px solid transparent;
}

#page_hanapre h3.typewriter-active {
  border-right: 2px solid #333;
  animation: blink 1s infinite;
}

#page_hanapre h3.typewriter-complete {
  border-right: none;
  animation: none;
}

.typewriter-cursor {
  animation: blink 1s infinite;
  color: #333;
  font-weight: normal;
}

#page_hanapre h3 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: #333;
  font-weight: bold;
}

@media (max-width: 768px) {
  #page_hanapre h3 {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
@media (max-width: 480px) {
  #page_hanapre h3 {
    font-size: 1.1rem;
    line-height: 1.6;
  }
}
@media (prefers-reduced-motion: reduce) {
  #page_hanapre h3.typewriter-active {
    animation: none;
    border-right: 2px solid #333;
  }
  .typewriter-cursor {
    animation: none;
  }
}
@media (prefers-color-scheme: dark) {
  #page_hanapre h3.typewriter-active {
    border-right-color: #fff;
  }
  .typewriter-cursor {
    color: #fff;
  }
}
#page_hanapre h3.typewriter-ready {
  min-height: 1.5em;
  position: relative;
}

#page_hanapre h3:focus {
  outline: 2px solid #007cba;
  outline-offset: 2px;
}

#page_hanapre h3.typewriter-active:hover {
  cursor: default;
}

@media (prefers-contrast: high) {
  #page_hanapre h3.typewriter-active {
    border-right: 3px solid #000;
  }
  .typewriter-cursor {
    color: #000;
    font-weight: bold;
  }
}
/* ===============================================
# hover
=============================================== */
.kv .swiper-slide:has(img:hover) {
  border: 1px solid #5C4F36;
}
.kv .category-link-item:hover {
  opacity: 0.7;
}

.swiper-pagination-bullet:hover {
  opacity: 0.7;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 0.7;
}

.category-link:hover {
  opacity: 0.7;
}

.pagination a:hover, .pagination span:hover,
.prev_next a:hover,
.prev_next span:hover {
  background-color: var(--color-brown);
  color: var(--color-bg);
}

.tag--list--item a:hover {
  color: var(--color-hover);
}

.btn a {
  transition: 0.1s;
}
.btn:hover a {
  color: var(--color-hover);
  box-shadow: 0 0 0;
  transform: translate(4px, 4px);
  transition: 0.3s;
}
.btn:hover a::after {
  translate: 2px 0;
  border-color: transparent transparent transparent var(--color-hover);
}

.sharing .btn:hover {
  box-shadow: 0 0 var(--color-yellow);
}

.creating .btn:hover {
  box-shadow: 0 0 var(--color-red);
}

.asking .btn:hover {
  box-shadow: 0 0 var(--color-green);
}

.trying .btn:hover {
  box-shadow: 0 0 var(--color-orange);
}

.btn-submit.is-active {
  background: none;
  border: none;
}
.btn-submit.is-active input {
  color: var(--color-brown);
  background-color: var(--color-white);
  transition: 0.1s;
  border: 1px solid var(--color-brown);
}
.btn-submit.is-active:hover input {
  box-shadow: 0 0 0;
  transform: translate(4px, 4px);
  transition: 0.3s;
}

a:hover .thumbnail-img--bg {
  scale: 1.1;
}

/* ===============================================
# コンテンツ幅
=============================================== */
.cont {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

/* ===============================================
# page
=============================================== */
/* ===============================================
# topページ
=============================================== */
.loop {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 835px) {
  .loop {
    justify-content: center;
  }
}
.loop--item {
  position: relative;
  width: calc(33.3333333333% - 30px);
}
@media screen and (max-width: 835px) {
  .loop--item {
    width: calc(50% - 30px);
  }
}
@media screen and (max-width: 480px) {
  .loop--item {
    width: 100%;
  }
}
.loop--item a {
  width: 100%;
  display: block;
}
.loop--item a .thumbnail-img {
  width: 100%;
  margin-bottom: 20px;
}
.loop--item .author-box {
  max-width: 6rem;
  margin: -85px 10px 0 auto;
}
.loop--item .author-box img {
  max-width: 60px;
  width: 100%;
  box-shadow: none;
  margin: 0 auto 5px;
}
.loop--item .author-box .author-name {
  font-size: var(--font-size12);
  text-align: center;
}

.tag_list {
  margin-bottom: 100px;
}
.tag_list .wp-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.tag_list .wp-tag-cloud li a::before {
  content: "# ";
}

.news--inner {
  margin-bottom: 50px;
}
.news--inner--item {
  padding: 20px 30px;
  border-top: solid 2px var(--color-brown);
}
.news--inner--item:last-child {
  border-bottom: solid 2px var(--color-brown);
}
.news--inner--item a {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
}
.news--inner--item a .date {
  margin-right: 30px;
}

.hanapre--inner {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 835px) {
  .hanapre--inner {
    flex-direction: column;
  }
}
.hanapre--inner .sub_ttl--outer {
  width: 40%;
}
.hanapre--inner--works {
  width: 60%;
}
@media screen and (max-width: 835px) {
  .hanapre--inner--works {
    max-width: 510px;
    width: 100%;
    margin: 0 auto;
  }
}
.hanapre--inner--works img {
  width: 100%;
  margin-bottom: 30px;
}

.pege_link--inner {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 480px) {
  .pege_link--inner {
    flex-direction: column;
  }
}

/* ===============================================
# 投稿記事ページ
=============================================== */
.single {
  width: 100%;
  margin: 0 auto;
}
.single--inner--text {
  margin-bottom: 200px;
}
.single--inner--text .p-articleThumb {
  max-width: 600px;
  width: 100%;
  margin: 0 auto 100px auto;
}
.single .wp-block-image {
  width: 100%;
}
.single .wp-block-image img {
  display: inline-block;
}
.single .author-ttl {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}
.single .author-box {
  width: 100%;
  border-top: solid 1px var(--color-brown);
  border-bottom: solid 1px var(--color-brown);
  padding: 50px 20px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.single .author-box img {
  margin: 0 auto;
}
@media screen and (max-width: 835px) {
  .single .author-box {
    display: block;
    text-align: center;
  }
}
.single .author-box .author-info {
  width: calc(100% - 130px - 300px - 20px);
}
@media screen and (max-width: 835px) {
  .single .author-box .author-info {
    width: 100%;
  }
}
.single .author-box .author-name {
  margin-bottom: 10px;
  font-weight: bold;
}
.single .author-box .author-description {
  text-align: left;
}
.single .tag {
  margin-bottom: 100px;
}
.single .tag--list {
  display: flex;
}
.single .tag--list--item {
  margin-right: 20px;
}

/* ===============================================
# カテゴリーの一覧
=============================================== */
.category_archive {
  padding-top: 0;
}
@media screen and (max-width: 835px) {
  .category_archive {
    margin-top: 50px;
  }
}
.category_archive .cont {
  padding: 0 20px;
}
.category_archive .loop {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 100px;
  gap: 50px 30px;
}
@media screen and (max-width: 835px) {
  .category_archive .loop {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 680px) {
  .category_archive .loop {
    grid-template-columns: 1fr;
  }
}
.category_archive .loop--item {
  width: 100%;
}
.category_archive .loop--item img {
  width: 100%;
}
.category_archive .loop--item .post_ttl {
  height: 4rem;
}
.category_archive .loop--item .date_writer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.category_archive .loop--item .date_writer .author-box {
  margin: 0;
}

/* ===============================================
# ライター紹介ページ
=============================================== */
.hanapre_author {
  padding-top: 150px;
}
.hanapre_author .p-authorBox img {
  margin: 0 auto;
}

/* ===============================================
# 404
=============================================== */
.not_found {
  height: 80%;
}
.not_found .not_found--text {
  margin-bottom: 50px;
}

/* ===============================================
# ハナプレについて
=============================================== */
#page_hanapre {
  background-color: var(--color-orange);
}
#page_hanapre .inner {
  margin-bottom: 150px;
}
@media screen and (max-width: 480px) {
  #page_hanapre .inner {
    margin-bottom: 50px;
  }
}
#page_hanapre .inner .cont > strong {
  font-weight: 500;
}
#page_hanapre .inner section {
  margin-bottom: 3rem;
}
#page_hanapre .inner section span {
  font-weight: 500;
}
#page_hanapre .inner h3, #page_hanapre .inner h4, #page_hanapre .inner strong {
  color: var(--color-white);
  margin-bottom: 2rem;
}
#page_hanapre .inner h3 {
  font-size: var(--font-size24);
}
#page_hanapre .inner h4 {
  font-weight: 600;
}
#page_hanapre .inner p {
  margin-bottom: 1rem;
  font-weight: 300;
}
#page_hanapre .inner strong {
  display: block;
  margin-bottom: 1rem;
}
#page_hanapre p {
  color: var(--color-white);
}
#page_hanapre #newArticles {
  background-color: var(--color-orange);
}

.typing {
  overflow: hidden;
  white-space: nowrap;
  font-size: var(--font-size24);
  opacity: 0;
  position: relative;
}
@media screen and (max-width: 680px) {
  .typing {
    font-size: var(--font-size18);
  }
}
.typing::after {
  content: "|";
  position: absolute;
  right: -5px;
  opacity: 1;
  animation: blink 0.7s step-end infinite, cursor-hide 0.1s linear forwards;
  animation-delay: 0s, 3s;
}
.typing.typing-effect-2::after {
  animation-delay: 3s, 6s;
}
.typing.typing-effect-3::after {
  animation-delay: 7s, 10s;
}
.typing.typing-effect-4::after {
  animation-delay: 10s, 13s;
}
.typing.typing-effect-5::after {
  animation-delay: 13s, 16s;
}
.typing.typing-effect-6::after {
  animation-delay: 16s, 19s;
}

.typing-effect {
  width: 36ch;
  animation: typing 3s steps(36, end);
  opacity: 1;
}
@media screen and (max-width: 680px) {
  .typing-effect {
    width: 30ch;
    animation: typing 3s steps(30, end);
  }
}

.typing-effect-2 {
  width: 24ch;
  animation: typing2 3s steps(24, end) 3s forwards;
}

.typing-effect-3 {
  width: 22ch;
  animation: typing3 3s steps(22, end) 18s forwards;
}

.typing-effect-4 {
  animation: typing3 3s steps(22, end) 21s forwards;
}

.typing-effect-5 {
  width: 24ch;
  animation: typing4 3s steps(24, end) 34s forwards;
}

.typing-effect-6 {
  width: 30ch;
  animation: typing5 3s steps(30, end) 37s forwards;
}

/* ===============================================
# 運営会社について
=============================================== */
#page_company {
  background-color: var(--color-blue);
}
@media screen and (max-width: 835px) {
  #page_company {
    padding-top: 150px;
  }
}
#page_company #newArticles {
  background-color: var(--color-blue);
}
#page_company .cont > P {
  text-align: center;
}
#page_company .detail--list {
  color: var(--color-white);
  text-align: left;
  display: flex;
  align-items: flex-start;
  border-bottom: solid 1px var(--color-white);
  padding: 1.5rem 0;
  font-weight: 300;
}
#page_company .detail--list > div:last-child {
  flex: 1;
}
#page_company .detail--list .item {
  min-width: 150px;
  font-weight: 500;
}
#page_company .detail--list span {
  display: block;
  font-weight: 500;
}
#page_company .detail--list ul {
  margin: 0;
}
#page_company .detail--list ul li {
  margin-bottom: 10px;
}

/* ===============================================
# お知らせ
=============================================== */
#page_contact #newArticles {
  background-color: var(--color-bg);
}
#page_contact .cont > P {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 835px) {
  #page_contact .cont > P {
    text-align: left;
  }
}
@media screen and (max-width: 835px) {
  #page_contact .cont > P br {
    display: none;
  }
}
#page_contact .form_outer > div {
  display: flex;
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  #page_contact .form_outer > div {
    flex-direction: column;
  }
}
#page_contact .form_outer > div dt {
  width: 20%;
}
@media screen and (max-width: 1000px) {
  #page_contact .form_outer > div dt {
    width: 100%;
  }
}
#page_contact .form_outer > div dt span {
  font-size: var(--font-size12);
}
#page_contact .form_outer > div dd {
  flex: 1;
}
#page_contact .form_outer > div dd span {
  width: 100%;
  display: block;
}
#page_contact .form_outer > div dd span input,
#page_contact .form_outer > div dd span textarea {
  width: 100%;
  background-color: #fff;
  border: solid 2px var(--color-gray);
  border-radius: 3px;
}
#page_contact .form_outer > div dd span input {
  height: 3.5rem;
}
@media screen and (max-width: 835px) {
  #page_contact .form_outer > div dd span input {
    height: 2rem;
  }
}
#page_contact .form_outer > div dd span select {
  height: 3.5rem;
  background-color: #fff;
  border-radius: 3px;
  border: solid 2px var(--color-gray);
}
@media screen and (max-width: 835px) {
  #page_contact .form_outer > div dd span select {
    height: 2rem;
  }
}

/* ===============================================
# 全ての記事一覧
=============================================== */
.post_archive .cont {
  margin-bottom: 100px;
}
.post_archive #newArticles {
  max-width: 1000px;
  padding-bottom: 0;
  margin-bottom: 0;
}
.post_archive #ranking {
  padding-bottom: 0;
  margin-bottom: 0;
}
.post_archive #ranking .sub_ttl {
  max-width: 1000px;
  font-family: "Lato", serif;
  font-weight: 900;
  font-size: var(--font-size50);
  padding-bottom: 0;
}
.post_archive #ranking .cont {
  padding: 50px 0 0;
  margin-bottom: 0;
}
.post_archive #ranking .ranking--inner {
  padding-bottom: 100px;
}
.post_archive .ranking {
  padding-top: 100px;
}

/* ===============================================
# 記事ランキング一覧
=============================================== */
.page-template-page-ranking {
  background-color: #6792E2 !important;
}
.page-template-page-ranking #header.header {
  background-color: #6792E2 !important;
}
.page-template-page-ranking .header--inner #hamburger.is-open span {
  background-color: var(--color-brown);
}
.page-template-page-ranking .header--inner #hamburger span {
  background-color: var(--color-white);
}
.page-template-page-ranking .breadcrumb {
  color: var(--color-white);
}
.page-template-page-ranking .breadcrumb a {
  color: var(--color-white);
}
.page-template-page-ranking .page_ranking .cont {
  margin-bottom: 100px;
}
.page-template-page-ranking .page_ranking .cont .loop {
  justify-content: normal;
}
.page-template-page-ranking .page_ranking #newArticles {
  max-width: 1000px;
  padding-bottom: 0;
  margin-bottom: 0;
  background-color: #6792E2 !important;
}
.page-template-page-ranking .page_ranking #ranking {
  padding-bottom: 0;
  margin-bottom: 0;
}
.page-template-page-ranking .page_ranking #ranking .sub_ttl {
  max-width: 1000px;
  font-family: "Lato", serif;
  font-weight: 900;
  font-size: var(--font-size50);
  padding-bottom: 0;
}
.page-template-page-ranking .page_ranking #ranking .cont {
  padding: 50px 0 0;
  margin-bottom: 0;
}
.page-template-page-ranking .page_ranking #ranking .ranking--inner {
  padding-bottom: 100px;
}
.page-template-page-ranking .page_ranking .ranking {
  padding-top: 100px;
}
.page-template-page-ranking h3 {
  color: var(--color-white);
}
.page-template-page-ranking .date_writer {
  color: var(--color-white);
}
.page-template-page-ranking .author-name {
  color: var(--color-white);
}

/* ===============================================
# お知らせ一覧
=============================================== */
#page_news {
  padding-top: 0;
}
#page_news #newArticles {
  background-color: var(--color-bg);
}
#page_news #newArticles .sub_ttl {
  color: var(--color-brown);
  border-bottom: solid 3px var(--color-brown);
}
#page_news #ranking {
  margin-bottom: 0;
}
#page_news .news_list_section {
  margin: 0 0 60px;
}
@media (max-width: 768px) {
  #page_news .news_list_section {
    padding: 0 15px;
    margin: 30px 0 40px;
  }
}
#page_news .news_list_container {
  border-bottom: 1px solid var(--color-brown);
  overflow: hidden;
}
#page_news .news_item {
  display: flex;
  align-items: center;
  padding: 40px 25px;
  border-bottom: 1px solid var(--color-brown);
}
@media (max-width: 768px) {
  #page_news .news_item {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }
}
@media (max-width: 480px) {
  #page_news .news_item {
    padding: 12px 15px;
  }
}
#page_news .news_item:last-child {
  border-bottom: none;
}
#page_news .news_item:hover {
  background-color: #f8f8f8;
}
#page_news .news_date {
  flex-shrink: 0;
  width: 90px;
  font-size: var(--font-size16);
  font-weight: 500;
  margin-right: 60px;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 768px) {
  #page_news .news_date {
    width: auto;
    margin-right: 0;
    margin-bottom: 8px;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  #page_news .news_date {
    font-size: 12px;
  }
}
#page_news .news_title {
  flex: 1;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}
@media (max-width: 768px) {
  #page_news .news_title {
    width: 100%;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  #page_news .news_title {
    font-size: 14px;
  }
}
#page_news .news_title a {
  text-decoration: none;
  color: #333;
  display: block;
  transition: color 0.2s ease;
}
#page_news .news_title a:hover {
  color: #0066cc;
}
#page_news .no_news {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
}
#page_news .no_news p {
  margin: 0;
  color: #999;
  font-size: 16px;
}
#page_news .news_pagination {
  margin-top: 40px;
  text-align: center;
}
#page_news .news_pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 4px;
  text-decoration: none;
  border: 1px solid var(--color-brown);
  background-color: var(--color-bg);
  color: var(--color-brown);
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  #page_news .news_pagination .page-numbers {
    width: 36px;
    height: 36px;
    margin: 0 2px;
    font-size: 13px;
  }
}
#page_news .news_pagination .page-numbers:hover {
  background-color: var(--color-brown);
  color: var(--color-bg);
}
#page_news .news_pagination .page-numbers.current {
  background-color: var(--color-brown);
  border-color: var(--color-brown);
  color: var(--color-bg);
}
#page_news .news_pagination .page-numbers.prev, #page_news .news_pagination .page-numbers.next {
  font-weight: bold;
}

/* ===============================================
# ライター一覧
=============================================== */
.page_writers {
  padding-top: 0;
}
.page_writers .sub_ttl {
  margin-bottom: 100px;
}
.page_writers .Writer--inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.page_writers .Writer--inner li {
  min-width: 290px;
  width: 23%;
  background-color: var(--color-white);
  border: solid 1px var(--color-brown);
  border-radius: 200px;
  padding: 40px 40px 50px;
}
.page_writers .Writer--inner li figure {
  width: 200px;
  height: 200px;
  border-radius: 100px;
  overflow: hidden;
  margin: 0 auto 15px;
}
.page_writers .Writer--inner li figure img {
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page_writers .Writer--inner li .Writer--inner-name {
  margin-bottom: 15px;
}
.page_writers .Writer--inner li .Writer--inner-name span {
  display: block;
}
.page_writers .Writer--inner li .Writer--inner-name .position {
  text-align: center;
}
.page_writers .Writer--inner li .Writer--inner-name .name {
  font-size: 1.2rem;
  text-align: center;
  font-weight: 600;
}
.page_writers .Writer--inner li .Writer--inner-desc {
  color: var(--color-brown);
  margin-bottom: 20px;
}
.page_writers .Writer--inner li a {
  display: block;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-brown);
}
.page_writers #newArticles .sub_ttl {
  color: var(--color-brown);
  border-bottom: solid 3px var(--color-brown);
}
.page_writers #ranking {
  margin-bottom: 0;
}

/* ===============================================
# プライバシーポリシー
=============================================== */
.privacy {
  height: 500px;
  overflow: scroll;
  border: solid 3px var(--color-brown);
  border-radius: 10px;
  margin-bottom: 50px;
  background-color: #fff;
}
.privacy dt, .privacy dd {
  color: var(--color-brown);
}
.privacy dt {
  font-size: var(--font-size24);
}
@media screen and (max-width: 835px) {
  .privacy dt {
    font-size: var(--font-size18);
  }
}
.privacy dd {
  margin-left: 2rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 835px) {
  .privacy dd {
    margin-left: 0;
  }
}
.privacy .cont > span {
  color: var(--color-brown);
  display: block;
  margin-bottom: 30px;
}

.privacy_text {
  text-align: center;
  margin-bottom: 50px;
}

/* ===============================================
# コンタクトフォーム７ メッセージ
=============================================== */
#page_contact .wpcf7-response-output {
  text-align: center;
  color: var(--color-red);
  border: none;
}

/* ===============================================
# parts
=============================================== */
/* ===============================================
# header
=============================================== */
#header {
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  z-index: 10;
  background-color: var(--color-bg);
  /* ===============================================
  # ハナプレについて
  =============================================== */
  /* ===============================================
  # 運営会社について
  =============================================== */
}
@media screen and (max-width: 480px) {
  #header {
    height: 80px;
  }
}
#header .header--inner {
  height: 100px;
  display: flex;
  padding-top: 10px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  #header .header--inner {
    height: 80px;
  }
}
#header .header--inner h1 {
  flex: 1;
  position: fixed;
  left: 50%;
  z-index: 100;
  translate: -50% 0;
}
@media screen and (max-width: 480px) {
  #header .header--inner h1 {
    position: relative;
    top: 1%;
    left: 5%;
    translate: 0;
  }
}
#header .header--inner h1 svg {
  width: 80px;
  height: 80px;
  color: #cd6e52;
  transition: color 0.3s;
}
@media screen and (max-width: 835px) {
  #header .header--inner h1 svg {
    width: 72px;
    height: 72px;
  }
}
@media screen and (max-width: 480px) {
  #header .header--inner h1 svg {
    width: 60px;
    height: 60px;
  }
}
#header.header-hanapre {
  background-color: var(--color-orange);
}
#header.header-company {
  background-color: var(--color-blue);
}

/* ===============================================
# footer
=============================================== */
.footer {
  background-color: var(--color-brown);
  padding-top: 50px;
  padding-bottom: 50px;
}
.footer h3, .footer a, .footer p {
  color: var(--color-bg);
}
.footer li {
  margin-bottom: 1rem;
}
.footer--inner {
  border-bottom: solid 1px var(--color-bg);
  padding: 0 20px 30px 20px;
  margin-bottom: 30px;
}
.footer--menu {
  display: flex;
  width: 65%;
  margin: 0 auto;
}
@media screen and (max-width: 680px) {
  .footer--menu {
    width: 100%;
    flex-direction: column;
  }
}
.footer--menu--category, .footer--menu--page {
  width: 100%;
}
.footer--menu--category .menu-ttl, .footer--menu--page .menu-ttl {
  font-size: var(--font-size22);
  border-bottom: solid 2px var(--color-brown);
  margin-bottom: 10px;
}
@media screen and (max-width: 835px) {
  .footer--menu--category .menu-ttl, .footer--menu--page .menu-ttl {
    font-size: var(--font-size20);
  }
}
.footer--menu--category a, .footer--menu--page a {
  display: block;
  text-align: left;
  margin-left: 1rem;
  margin-bottom: 10px;
  font-size: var(--font-size16);
}
.footer--address {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
@media screen and (max-width: 680px) {
  .footer--address {
    flex-direction: column;
  }
}
.footer--address a {
  margin-right: 30px;
}
@media screen and (max-width: 680px) {
  .footer--address a {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.footer--address p:first-child {
  margin-right: 30px;
}
.footer small {
  display: block;
  text-align: center;
  color: var(--color-white);
}

/* ===============================================
# ボタン
=============================================== */
.btn {
  width: 280px;
  height: 60px;
  margin: 0 auto;
}
.btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 58px;
  position: relative;
  border: solid 1px var(--color-brown);
  background-color: var(--color-white);
  border-radius: 30px;
  box-shadow: 4px 4px;
  gap: 24px;
  width: 100%;
}
.btn a::after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  border-style: solid;
  border-width: 8px 14px 8px 14px;
  border-color: transparent transparent transparent var(--color-brown);
  transform: translate 0.3s;
}

.sharing .btn a {
  border: solid 1px var(--color-yellow);
}
.sharing .btn:not(:hover) a {
  box-shadow: 4px 4px var(--color-yellow);
}

.creating .btn a {
  border: solid 1px var(--color-red);
}
.creating .btn:not(:hover) a {
  box-shadow: 4px 4px var(--color-red);
}

.asking .btn a {
  border: solid 1px var(--color-green);
}
.asking .btn:not(:hover) a {
  box-shadow: 4px 4px var(--color-green);
}

.trying .btn a {
  border: solid 1px var(--color-orange);
}
.trying .btn:not(:hover) a {
  box-shadow: 4px 4px var(--color-orange);
}

@media screen and (max-width: 835px) {
  .hanapre .btn-pc {
    display: none;
  }
}
.hanapre .btn-sp {
  display: none;
}
@media screen and (max-width: 835px) {
  .hanapre .btn-sp {
    display: block;
  }
}

.single .btn {
  width: 300px;
}
@media screen and (max-width: 860px) {
  .single .btn {
    margin-top: 50px;
  }
}
.single .btn a::after {
  display: none;
}

.btn-page {
  width: 350px;
  height: 120px;
}
@media screen and (max-width: 835px) {
  .btn-page {
    width: 300px;
    height: 100px;
  }
}
.btn-page a {
  line-height: 120px;
}
@media screen and (max-width: 835px) {
  .btn-page a {
    line-height: 100px;
  }
}
@media screen and (max-width: 835px) {
  .btn-page a::after {
    right: 10%;
  }
}

.category-link-wrapper {
  position: absolute;
  right: 15px;
  top: 10px;
  display: flex;
  gap: 5px;
}
.category-link-wrapper .category-link-item a {
  color: #fff;
  font-size: 0.8rem;
  padding: 4px 15px;
  display: block;
  border-radius: 15px;
  background-color: #5C4F36;
}
@media screen and (max-width: 835px) {
  .category-link-wrapper .category-link-item a {
    font-size: 0.6rem;
  }
}
.category-link-wrapper .category-link-item a i {
  margin-right: 5px;
  font-size: 0.9rem;
}

.pagination {
  display: flex;
  justify-content: center;
}
.pagination a, .pagination span {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: solid 1px var(--color-brown);
  text-align: center;
  line-height: 50px;
  border-radius: 5px;
  margin: 0 5px;
}
.pagination .pager.current {
  background-color: var(--color-brown);
  color: var(--color-bg);
}
.prev_next {
  display: flex;
  justify-content: space-around;
}
.prev_next a {
  width: 150px;
  height: 50px;
  border: solid 1px var(--color-brown);
  border-radius: 5px;
  text-align: center;
  line-height: 50px;
}

.post_archive .pagination .current {
  background-color: var(--color-white);
}
.post_archive .pagination .current.pager {
  color: var(--color-brown) !important;
}
.post_archive .pagination span {
  border: solid 1px var(--color-white);
}
.post_archive .pagination a {
  border: solid 1px var(--color-white);
}

.btn-submit {
  width: 280px;
  height: 60px;
  border-radius: 30px;
  border: solid 1px var(--color-brown);
  background-color: var(--color-white);
  margin: 0 auto 30px auto;
  box-shadow: 4px 4px;
}
.btn-submit input {
  text-align: center;
  color: var(--color-white);
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background-color: var(--color-brown);
}

/* ===============================================
# ハンバーガー
=============================================== */
#header {
  /* ===============================================
  # ハナプレについて
  =============================================== */
  /* ===============================================
  # 運営会社について
  =============================================== */
}
#header .hamburger {
  width: 75px;
  height: 75px;
  pointer-events: auto;
  position: relative;
  transition: all 0.4s;
  cursor: pointer;
  position: fixed;
  right: 20px;
  z-index: 100;
}
#header .hamburger.is-open span:nth-of-type(1) {
  transform: translateY(7px) translateX(-20px) rotate(45deg);
  top: 43%;
}
#header .hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}
#header .hamburger.is-open span:nth-of-type(3) {
  transform: translateY(-11px) translateX(-20px) rotate(-45deg);
}
#header .hamburger span {
  display: inline-block;
  width: 45px;
  height: 3px;
  background-color: var(--color-brown);
  position: absolute;
  transform: translate(-50%, -50%);
  transition: all 0.2s;
  left: 50%;
}
#header .hamburger span:nth-of-type(1) {
  top: 33%;
}
#header .hamburger span:nth-of-type(2) {
  top: 50%;
}
#header .hamburger span:nth-of-type(3) {
  top: 68%;
}
#header.header-hanapre .hamburger.is-open span {
  background-color: var(--color-brown);
}
#header.header-hanapre .hamburger span {
  background-color: var(--color-white);
}
#header.header-company .hamburger.is-open span {
  background-color: var(--color-brown);
}
#header.header-company .hamburger span {
  background-color: var(--color-white);
}

/* ===============================================
# キービジュアル
=============================================== */
.kv {
  width: 100%;
  position: relative;
  padding-bottom: 60px;
  margin-top: 30px;
}
.kv .swiper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 40px;
}
.kv .swiper-wrapper {
  display: flex;
  box-sizing: border-box;
  max-height: 490px;
}
.kv .swiper-wrapper .swiper-slide {
  position: relative;
  overflow: hidden;
  padding: 0 5px 5px 0;
}
.kv .swiper-wrapper .swiper-slide a {
  display: block;
  border: 1px solid #5C4F36;
}
.kv .kv--bg {
  width: 100%;
  height: calc(50% + 50px);
  background-color: #7B6845;
  position: absolute;
  bottom: 0;
}

/* スライダーページネーション&ナビゲーションボタン */
.swiper-pagination-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  width: 100%;
  max-width: 400px;
  margin: 50px auto 0;
}
.swiper-pagination-wrapper .swiper-pagination {
  position: initial;
  height: 30px;
}
.swiper-pagination-wrapper .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background: initial;
  border: 2px solid #fff;
}
.swiper-pagination-wrapper .swiper-pagination .swiper-pagination-bullet-active {
  background: #FFF;
}
.swiper-pagination-wrapper .swiper-button-next,
.swiper-pagination-wrapper .swiper-button-prev {
  position: initial;
  color: #fff;
  width: initial;
  margin: initial;
  height: 30px;
}
.swiper-pagination-wrapper .swiper-button-next .swiper-button-next-text, .swiper-pagination-wrapper .swiper-button-next .swiper-button-prev-text,
.swiper-pagination-wrapper .swiper-button-prev .swiper-button-next-text,
.swiper-pagination-wrapper .swiper-button-prev .swiper-button-prev-text {
  white-space: nowrap;
  letter-spacing: 1px;
}
.swiper-pagination-wrapper .swiper-button-next .swiper-button-next-text span, .swiper-pagination-wrapper .swiper-button-next .swiper-button-prev-text span,
.swiper-pagination-wrapper .swiper-button-prev .swiper-button-next-text span,
.swiper-pagination-wrapper .swiper-button-prev .swiper-button-prev-text span {
  font-size: 1.5rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  vertical-align: sub;
}
.swiper-pagination-wrapper .swiper-button-next::after {
  content: "";
}
.swiper-pagination-wrapper .swiper-button-prev::after {
  content: "";
}

/*記事のタイトルスライダー*/
.latest-posts {
  margin: 30px 0 100px 0;
  border-top: 1px solid #5C4F36;
  border-bottom: 1px solid #5C4F36;
  padding: 30px 0;
}
@media screen and (max-width: 835px) {
  .latest-posts {
    padding: 15px 0;
  }
}
.latest-posts .title-swiper {
  width: 100%;
  height: 45px;
  overflow: hidden;
  margin: 0 auto;
}
.latest-posts .title-swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.latest-posts .title-swiper .swiper-wrapper .swiper-slide {
  min-width: 390px;
  overflow: hidden;
}
.latest-posts .title-swiper .swiper-wrapper .swiper-slide a {
  max-width: 100%;
  min-width: 540px;
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 45px;
  white-space: nowrap;
}
.latest-posts .title-swiper .swiper-wrapper .swiper-slide a:hover {
  color: #c25840;
}
.latest-posts .title-swiper .swiper-wrapper .swiper-slide a span {
  font-weight: bold;
}
.latest-posts .title-swiper .swiper-wrapper .swiper-slide img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  display: inline-block;
}

/* ===============================================
# 見出し
=============================================== */
.category_archive .sub_ttl,
.not_found .sub_ttl,
.page_ranking .sub_ttl,
.ttl .sub_ttl {
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
}

.page-template-page-ranking .sub_ttl_bg .sub_ttl {
  color: var(--color-white);
  border-bottom: solid 3px var(--color-white);
}

.sub_page_ttl {
  text-align: center;
  font-family: "Lato", serif;
  font-size: var(--font-size50);
  font-weight: 900;
  margin-bottom: 100px;
}
@media screen and (max-width: 835px) {
  .sub_page_ttl {
    font-size: var(--font-size28);
    margin-bottom: 50px;
  }
}
.sub_page_ttl span {
  width: 300px;
  display: block;
  font-weight: 500;
  font-size: var(--font-size24);
  padding-bottom: 20px;
  margin: 0 auto;
  border-bottom: solid 3px var(--color-brown);
}
@media screen and (max-width: 835px) {
  .sub_page_ttl span {
    font-size: var(--font-size16);
  }
}

/* ===============================================
# カテゴリー一覧
=============================================== */
.category_archive .sub_ttl_bg img {
  width: 50%;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 680px) {
  .category_archive .sub_ttl_bg img {
    width: 100%;
  }
}
.category_archive .sub_ttl {
  max-width: 1280px;
  font-size: var(--font-size28);
  padding-bottom: 50px;
  margin-top: -77px;
  margin-bottom: 50px;
  border-bottom: solid 3px var(--color-lightBrown);
}
@media screen and (max-width: 835px) {
  .category_archive .sub_ttl {
    font-size: var(--font-size24);
    padding-bottom: 30px;
    margin-top: -70px;
  }
}
@media screen and (max-width: 680px) {
  .category_archive .sub_ttl {
    font-size: var(--font-size18);
    padding-bottom: 20px;
    margin-top: -60px;
  }
}
@media screen and (max-width: 480px) {
  .category_archive .sub_ttl {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: solid 3px var(--color-brown);
  }
}

.category-1 .sub_ttl_bg .sub_ttl,
.category-4 .sub_ttl_bg .sub_ttl,
.category-5 .sub_ttl_bg .sub_ttl {
  border-bottom: solid 3px var(--color-white);
}

.ttl .time_category {
  display: flex;
}
.ttl .time_category .category-link-wrapper {
  position: static;
  margin-left: 30px;
}

.sub_ttl {
  max-width: 1100px;
  font-size: var(--font-size50);
  font-family: "Lato", serif;
  font-weight: 900;
  margin: 0 auto 30px;
  border-bottom: solid 3px var(--color-brown);
}
@media screen and (max-width: 1000px) {
  .sub_ttl {
    font-size: var(--font-size36);
  }
}
@media screen and (max-width: 835px) {
  .sub_ttl {
    font-size: var(--font-size30);
  }
}
.sub_ttl span {
  font-size: var(--font-size24);
  font-weight: 500;
  margin-left: 2rem;
}
@media screen and (max-width: 1000px) {
  .sub_ttl span {
    font-size: var(--font-size18);
    margin-left: 1rem;
  }
}
.sub_ttl .category_color {
  font-family: "Lato", serif;
  font-size: var(--font-size50);
  margin-left: 0;
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  .sub_ttl .category_color {
    font-size: var(--font-size36);
  }
}
@media screen and (max-width: 835px) {
  .sub_ttl .category_color {
    font-size: var(--font-size30);
  }
}

/* ===============================================
# 全ての記事一覧
=============================================== */
.post_archive .sub_ttl {
  max-width: 1280px;
  border-bottom: solid 3px var(--color-white);
}

/* ===============================================
# ハナプレについて、運営会社について
=============================================== */
#page_hanapre .sub_page_ttl,
#page_company .sub_page_ttl {
  width: 50%;
  padding-bottom: 40px;
  margin: 0 auto 100px;
  border-bottom: solid 1px var(--color-white);
  position: relative;
}
@media screen and (max-width: 680px) {
  #page_hanapre .sub_page_ttl,
  #page_company .sub_page_ttl {
    width: 100%;
  }
}
#page_hanapre .sub_page_ttl h2,
#page_company .sub_page_ttl h2 {
  width: 100%;
  color: var(--color-white);
  font-size: 24px;
  font-weight: 400;
  transform: translateY(-80%);
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 480px) {
  #page_hanapre .sub_page_ttl h2,
  #page_company .sub_page_ttl h2 {
    font-size: 16px;
  }
}

.hanapre .sub_ttl {
  line-height: 4rem;
  margin-bottom: 100px;
}
@media screen and (max-width: 1000px) {
  .hanapre .sub_ttl {
    line-height: 2.5rem;
  }
}
.hanapre .sub_ttl .font {
  font-family: "Noto Sans JP", serif;
  font-size: var(--font-size50);
  font-weight: 900;
  margin-left: 0;
}
@media screen and (max-width: 1000px) {
  .hanapre .sub_ttl .font {
    font-size: var(--font-size36);
  }
}
@media screen and (max-width: 835px) {
  .hanapre .sub_ttl .font {
    font-size: var(--font-size30);
  }
}
.hanapre .sub_ttl span {
  margin-left: 0;
}

.hanapre_author .sub_ttl {
  font-family: "Noto Sans JP", serif;
  font-weight: 600;
}
.hanapre_author .sub_ttl span {
  margin-left: 0;
}

.sharing .category_color {
  color: var(--color-yellow);
}

.creating .category_color {
  color: var(--color-red);
}

.asking .category_color {
  color: var(--color-green);
}

.trying .category_color {
  color: var(--color-orange);
}

.post_ttl {
  font-size: var(--font-size22);
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 835px) {
  .post_ttl {
    font-size: var(--font-size20);
  }
}

.ranking_list--title {
  height: 69px;
  font-size: 1.2rem;
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 835px) {
  .ranking_list--title {
    font-size: var(--font-size20);
  }
}

.sharing h3,
.creating h3,
.asking h3,
.trying h3 {
  height: 2rem;
  margin-bottom: 75px;
}

/* ===============================================
# お知らせ一覧
=============================================== */
#page_news .sub_ttl_bg .sub_ttl {
  max-width: 1280px;
  font-size: var(--font-size28);
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  padding-bottom: 50px;
  margin-top: -55px;
  margin-bottom: 0;
}

/* ===============================================
# NEW ARTICLES
=============================================== */
.newArticles--inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 30px 50px;
}
@media screen and (max-width: 1000px) {
  .newArticles--inner {
    display: block;
  }
}
@media screen and (max-width: 1000px) {
  .newArticles--inner--item {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 835px) {
  .newArticles--inner--item {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .newArticles--inner--item:nth-of-type(3), .newArticles--inner--item:nth-of-type(4) {
    display: none;
  }
}
.newArticles--inner--item > a {
  display: flex;
}
@media screen and (max-width: 835px) {
  .newArticles--inner--item > a {
    flex-direction: column;
  }
}
.newArticles--inner--item img {
  max-width: 180px;
}
.newArticles--inner--item .text {
  width: 100%;
}
.newArticles--inner--item .text p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 任意の行数を指定 */
}
.newArticles--inner--item:first-of-type {
  grid-row: 1/5;
  grid-column: 1/2;
}
@media screen and (max-width: 1000px) {
  .newArticles--inner--item:first-of-type {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
.newArticles--inner--item:first-of-type > a {
  display: flex;
  flex-direction: column;
}
.newArticles--inner--item:first-of-type .thumbnail-img {
  margin-bottom: 30px;
  max-width: 600px;
}
.newArticles--inner--item:first-of-type img {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .newArticles--inner--item:first-of-type img {
    margin-right: auto;
    margin-left: auto;
  }
}
.newArticles--inner--item:first-of-type .date_category {
  width: 100%;
  transform: translateY(0);
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 835px) {
  .newArticles--inner--item:first-of-type .date_category {
    align-items: center;
  }
}
.newArticles--inner--item:nth-of-type(2), .newArticles--inner--item:nth-of-type(3), .newArticles--inner--item:nth-of-type(4) {
  grid-column: 2/3;
}
.newArticles--inner--item:nth-of-type(2) .thumbnail-img, .newArticles--inner--item:nth-of-type(3) .thumbnail-img, .newArticles--inner--item:nth-of-type(4) .thumbnail-img {
  width: 180px;
}
@media screen and (max-width: 835px) {
  .newArticles--inner--item:nth-of-type(2) .thumbnail-img, .newArticles--inner--item:nth-of-type(3) .thumbnail-img, .newArticles--inner--item:nth-of-type(4) .thumbnail-img {
    width: 100%;
    max-width: 600px;
  }
}
.newArticles--inner--item:nth-of-type(2) .text, .newArticles--inner--item:nth-of-type(3) .text, .newArticles--inner--item:nth-of-type(4) .text {
  padding-left: 20px;
}
@media screen and (max-width: 835px) {
  .newArticles--inner--item:nth-of-type(2) .text, .newArticles--inner--item:nth-of-type(3) .text, .newArticles--inner--item:nth-of-type(4) .text {
    max-width: 600px;
    padding-top: 20px;
    padding-left: 0;
    margin: 0 auto;
  }
}
.newArticles--inner--item:nth-of-type(2) .text p, .newArticles--inner--item:nth-of-type(3) .text p, .newArticles--inner--item:nth-of-type(4) .text p {
  padding-bottom: 20px;
}
.newArticles--inner--item:nth-of-type(2) .date, .newArticles--inner--item:nth-of-type(3) .date, .newArticles--inner--item:nth-of-type(4) .date {
  margin-left: 20px;
}
.newArticles--inner--item:nth-of-type(2) .author-box, .newArticles--inner--item:nth-of-type(3) .author-box, .newArticles--inner--item:nth-of-type(4) .author-box {
  transform: translateY(-30px);
}
.newArticles--inner--item:nth-of-type(2) {
  grid-row: 1/2;
}
.newArticles--inner--item:nth-of-type(3) {
  grid-row: 2/3;
}
.newArticles--inner--item:nth-of-type(4) {
  grid-row: 3/4;
}
.newArticles--inner--item .text {
  display: flex;
  flex-direction: column;
}
.newArticles--inner--item span {
  display: inline;
}
.newArticles--inner--item .author-box img {
  max-width: 60px;
  width: 100%;
  margin-bottom: 5px;
  box-shadow: none;
}
.newArticles--inner--item .author-box .author-name {
  font-size: var(--font-size12);
  text-align: center;
}
.newArticles--inner--item .date_category {
  width: 73%;
  margin-left: auto;
  display: flex;
  align-items: center;
  transform: translateY(-50px);
}
@media screen and (max-width: 835px) {
  .newArticles--inner--item .date_category {
    max-width: 510px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(0);
    justify-content: flex-start;
    align-items: center;
  }
}
.newArticles--inner--item .date_category i {
  color: var(--color-brown);
}
.newArticles--inner--item .date_category .date {
  display: inline-block;
  margin-right: 1rem;
}
.newArticles--inner--item .date_category .category {
  flex: 1;
}
.newArticles--inner--item .date_category .category a {
  margin-right: 0.5rem;
}

/* ===============================================
# 下層ページ
=============================================== */
#newArticles .sub_ttl {
  max-width: 1100px;
  color: var(--color-white);
  font-family: "Lato", serif;
  font-size: var(--font-size50);
  font-weight: 900;
  border-bottom: solid 3px var(--color-white);
  padding-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 835px) {
  #newArticles .sub_ttl {
    font-size: var(--font-size28);
  }
}
#newArticles .sub_ttl span {
  font-size: var(--font-size24);
}
#newArticles .ranking_list li::before {
  display: none;
}

/* ===============================================
# 人気記事トップ５（スライダー）
=============================================== */
.ranking {
  background: #ebe4d0;
  padding-top: 50px;
  padding-bottom: 100px;
}
.ranking .cont .subTtl {
  color: #5c4f36;
  border-bottom: none;
}
.ranking .cont .subTtl span {
  display: block;
  margin-left: 0;
  position: relative;
  margin-bottom: 70px;
}
.ranking .cont .subTtl span:before {
  position: absolute;
  content: "";
  border: 1px solid #5c4f36;
  left: 0;
  bottom: -30px;
  width: 140px;
}
.ranking .cont .ranking-container {
  position: relative;
}
.ranking .cont .ranking-container .ranking-wrapper {
  max-width: 1100px;
  margin: 0 auto 50px;
}
.ranking .cont .ranking-container .ranking-wrapper .ranking-prev,
.ranking .cont .ranking-container .ranking-wrapper .ranking-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  z-index: 1;
}
@media screen and (max-width: 835px) {
  .ranking .cont .ranking-container .ranking-wrapper .ranking-prev img,
  .ranking .cont .ranking-container .ranking-wrapper .ranking-next img {
    width: 50px;
  }
}
.ranking .cont .ranking-container .ranking-wrapper .ranking-prev {
  display: none;
  left: 0;
}
.ranking .cont .ranking-container .ranking-wrapper .ranking-prev img {
  transform: scaleX(-1);
  transform-origin: center;
}
.ranking .cont .ranking-container .ranking-wrapper .ranking-next {
  right: 0;
}
.ranking .cont .ranking-container .ranking-wrapper .ranking-slider {
  padding: 0 40px;
  transition: transform 0.6s ease-in-out;
}
.ranking .cont .ranking-container .ranking-wrapper .ranking-slider .ranking_list {
  display: flex;
  gap: 30px;
  counter-reset: rank;
  overflow-x: scroll;
}
@media screen and (max-width: 835px) {
  .ranking .cont .ranking-container .ranking-wrapper .ranking-slider .ranking_list {
    gap: 30px;
  }
}
.ranking .cont .ranking-container .ranking-wrapper .ranking-slider .ranking_list li {
  flex: 0 0 calc(33.333333% - 27px);
  position: relative;
  background: #fff;
  border: 1px solid #5c4f36;
  margin-bottom: 0;
}
@media screen and (max-width: 835px) {
  .ranking .cont .ranking-container .ranking-wrapper .ranking-slider .ranking_list li {
    flex: 0 0 calc(50% - 15px);
  }
}
@media screen and (max-width: 680px) {
  .ranking .cont .ranking-container .ranking-wrapper .ranking-slider .ranking_list li {
    flex: 0 0 100%;
  }
}
.ranking .cont .ranking-container .ranking-wrapper .ranking-slider .ranking_list li:before {
  counter-increment: rank;
  content: counter(rank);
  position: absolute;
  color: #5c4f36;
  z-index: 1;
  width: 40px;
  height: 40px;
  font-weight: 600;
  font-size: 1.5rem;
  text-align: center;
  border-right: 1px solid #5c4f36;
  border-bottom: 1px solid #5c4f36;
}
.ranking .cont .ranking-container .ranking-wrapper .ranking-slider .ranking_list li:nth-child(1)::before {
  background: #e8db70;
}
.ranking .cont .ranking-container .ranking-wrapper .ranking-slider .ranking_list li:nth-child(2)::before {
  background: #cecece;
}
.ranking .cont .ranking-container .ranking-wrapper .ranking-slider .ranking_list li:nth-child(n+3)::before {
  background: #fdfbf5;
}
.ranking .cont .ranking-container .ranking-wrapper .ranking-slider .ranking_list li a {
  width: 100%;
  display: block;
}
.ranking .cont .ranking-container .ranking-wrapper .ranking-slider .ranking_list li .ranking_list--thumb a {
  display: block;
}
.ranking .cont .ranking-container .ranking-wrapper .ranking-slider .ranking_list li .ranking_list--thumb a .wpp-thumbnail {
  margin: 0;
  display: block;
  float: none;
}
.ranking .cont .ranking-container .ranking-wrapper .ranking-slider .ranking_list li .ranking_list--body {
  padding: 15px;
}
.ranking .cont .ranking-container .ranking-wrapper .ranking-slider .ranking_list li .date_author {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 15px 15px;
}
.ranking .cont .ranking-container .ranking-wrapper .ranking-slider .ranking_list li .ranking_list--date {
  color: #5c4f36;
  display: inline-block;
}
.ranking .cont .ranking-container .ranking-wrapper .ranking-slider .ranking_list li .ranking_list--date i {
  margin-right: 5px;
}
.ranking .cont .ranking-container .ranking-wrapper .ranking-slider .ranking_list li .author-box {
  display: inline-block;
}
.ranking .cont .ranking-container .ranking-wrapper .ranking-slider .ranking_list li .author-box > img {
  max-width: 60px;
  width: 100%;
  margin-left: auto;
  margin-right: 10px;
}
.ranking .cont .ranking-container .ranking-wrapper .ranking-slider .ranking_list li .author-box .author-name {
  text-align: right;
  font-size: var(--font-size12);
  padding-right: 28px;
}
.ranking .cont .ranking-container .ranking-wrapper .ranking-slider .ranking_list li .category-link {
  display: flex;
  -moz-column-gap: 5px;
       column-gap: 5px;
}

/* ===============================================
# 下層ページ
=============================================== */
.archive #ranking {
  margin-bottom: 0;
}
.archive #ranking .sub_ttl {
  max-width: 1100px;
  font-family: "Lato", serif;
  font-size: var(--font-size50);
  font-weight: 900;
  padding-bottom: 10px;
  margin: 0 auto 50px;
}

/* ===============================================
# パンくず
=============================================== */
body .breadcrumb {
  max-width: 1280px;
  position: relative;
  z-index: 9999;
  display: flex;
  align-items: center;
  padding-left: 20px;
  margin: 150px auto 70px;
}
@media screen and (max-width: 835px) {
  body .breadcrumb {
    display: block;
  }
}
@media screen and (max-width: 680px) {
  body .breadcrumb {
    margin-top: 100px;
  }
}
@media screen and (max-width: 480px) {
  body .breadcrumb {
    margin-top: 140px;
    margin-bottom: 0;
    display: block;
  }
}
@media screen and (max-width: 835px) {
  body .breadcrumb li {
    display: inline-block;
  }
}
@media screen and (max-width: 480px) {
  body .breadcrumb li {
    display: inline-block;
  }
}
body .breadcrumb li + li::before {
  content: ">";
  margin: 0.5em;
}
body .breadcrumb li a:hover {
  color: var(--color-hover);
}

.Writer {
  background: #f2eee4;
  border-top: 1px solid var(--color-brown);
  border-bottom: 1px solid var(--color-brown);
  padding-top: 70px;
  padding-bottom: 70px;
}
.Writer .cont .writer--wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 50px;
  position: relative;
  padding: 0 0 50px;
}
.Writer .cont .writer--wrapper .scroll_btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  width: 300px;
}
.Writer .cont .writer--wrapper .scroll_btn button {
  position: absolute;
  background: none;
  border: none;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-brown);
}
.Writer .cont .writer--wrapper .scroll_btn .scroll-left {
  left: 0;
  display: none;
}
.Writer .cont .writer--wrapper .scroll_btn .scroll-right {
  right: 0;
}
.Writer .cont .writer--wrapper .Writer--inner {
  display: flex;
  gap: 30px;
  overflow-x: scroll;
  color: var(--color-brown);
  margin-bottom: 50px;
}
@media screen and (max-width: 480px) {
  .Writer .cont .writer--wrapper .Writer--inner {
    padding: 0 6%;
  }
}
.Writer .cont .writer--wrapper .Writer--inner li {
  background: #fff;
  border: 1px solid var(--color-brown);
  border-radius: 200px;
  padding: 40px 40px 50px;
  flex: 0 0 calc(25% - 30px);
}
@media screen and (max-width: 835px) {
  .Writer .cont .writer--wrapper .Writer--inner li {
    flex: 0 0 calc(50% - 15px);
  }
}
@media screen and (max-width: 480px) {
  .Writer .cont .writer--wrapper .Writer--inner li {
    flex: 0 0 100%;
  }
}
.Writer .cont .writer--wrapper .Writer--inner li figure {
  margin: 0 auto 15px;
  width: 200px;
  height: 200px;
  border-radius: 100px;
  overflow: hidden;
}
.Writer .cont .writer--wrapper .Writer--inner li figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 200px;
  height: 200px;
  aspect-ratio: 1/1;
}
.Writer .cont .writer--wrapper .Writer--inner li .Writer--inner-name {
  margin-bottom: 15px;
}
.Writer .cont .writer--wrapper .Writer--inner li .Writer--inner-name span {
  display: block;
  text-align: center;
}
.Writer .cont .writer--wrapper .Writer--inner li .Writer--inner-name .name {
  font-size: 1.2rem;
  text-align: center;
  font-weight: 600;
}
.Writer .cont .writer--wrapper .Writer--inner li .Writer--inner-desc {
  color: var(--color-brown);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  margin: 0 0 20px;
}
.Writer .cont .writer--wrapper .Writer--inner li a {
  text-align: center;
  display: block;
  color: var(--color-brown);
  font-size: 1.1rem;
  font-weight: 600;
}
.Writer .cont .writer--wrapper .Writer--inner li a i {
  font-size: 1.3rem;
}

/* ===============================================
# メニュー
=============================================== */
.body.is-active {
  overflow: hidden;
}

.header.is-active ul {
  display: flex;
}
.header.is-active .header--inner h1 svg {
  color: #cd6e52 !important;
}
.header .menu--outer {
  transition: top 0.5s;
  opacity: 1;
  background-color: var(--color-bg);
  width: 100dvw;
  height: 100dvh;
  position: fixed;
  top: -100dvh;
  z-index: 10;
}
.header .menu--outer.is-active {
  transition: top 0.5s;
  top: 0;
}
.header .menu--outer .menu {
  width: 300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 144px;
}
.header .menu--outer .menu--category, .header .menu--outer .menu--page {
  width: 100%;
}
.header .menu--outer .menu--category .menu-ttl, .header .menu--outer .menu--page .menu-ttl {
  font-size: var(--font-size24);
  border-bottom: solid 2px var(--color-brown);
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.header .menu--outer .menu--category a, .header .menu--outer .menu--page a {
  display: block;
  text-align: center;
  font-size: var(--font-size16);
  margin-bottom: 10px;
}
.header .menu--outer .menu--category {
  margin-bottom: 50px;
}

.thumbnail-img {
  overflow: hidden;
  display: block;
  aspect-ratio: 4/5;
  position: relative;
  width: 100%;
}
.thumbnail-img--bg {
  transition: 0.3s;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center;
}
.thumbnail-img--shadow {
  box-shadow: 6px 6px;
}/*# sourceMappingURL=style.css.map */