@charset "UTF-8";
/* ----------------  common ---------------- */
html {
  /* NotoSans */
  font-family: "Reddit Sans", "Noto Sans JP", sans-serif, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 62.5%;
}

/* ビューポート幅がタブレット以下のときのフォントサイズ */
/* ビューポート幅がスマホ以下のときのフォントサイズ */
@media (max-width: 767px) {
  html {
    font-size: calc(62.5% + 4.5 * (100vw - 390px) / 200);
  }
}
body {
  background: #faf7f1;
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0.15em;
  line-height: 1.8;
  overflow-x: clip;
  position: relative;
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
    letter-spacing: 0.06em;
  }
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

a {
  color: inherit;
  transition: all 0.3s;
  text-decoration: none;
}
a:hover {
  opacity: 0.6;
}
a[href^="tel:"] {
  cursor: default;
  opacity: 1;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: inherit;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  h1,
  h2,
  h3,
  h4,
  h5 {
    letter-spacing: 0.08em;
  }
}

strong {
  font-weight: 700;
}

.txt_center {
  text-align: center;
}

.txt_left {
  text-align: left;
}

.txt_right {
  text-align: right;
}

.txt_mk {
  background-color: #fbffb8;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.txt_line {
  color: #000;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1em;
}
.txt_line::before, .txt_line::after {
  content: "";
  background-color: #000;
  height: 3px;
  width: 30px;
}
.txt_line::before {
  margin-right: 5px;
  transform: rotate(60deg);
}
.txt_line::after {
  margin-left: 5px;
  transform: rotate(-60deg);
}

.note {
  font-size: 1.2rem;
}

.list_disc {
  list-style-type: disc;
  text-align: left;
  padding-left: 1.4em;
}
.list_disc li {
  padding: 0;
}

main {
  /* header重なり */
  padding-top: 110px;
}
@media (max-width: 1024px) {
  main {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  main {
    padding-top: 60px;
  }
}

.inner {
  max-width: 1150px;
  padding: 0 25px;
  margin: 0 auto;
  width: 100%;
}
.inner.is_s {
  max-width: 820px;
}
@media (max-width: 1024px) {
  .inner {
    max-width: 750px;
  }
}

/* btn */
.btn {
  margin: 8em 0 4em;
}
.btn a {
  background: #000;
  border-radius: 100px;
  color: #fff;
  display: block;
  text-align: center;
  padding: 14px;
  position: relative;
  margin: 0 auto;
  width: 270px;
}
.btn a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 25px;
}
@media (max-width: 767px) {
  .btn {
    margin-bottom: 1.5em;
  }
}

/* padding */
.pd_m {
  padding: 80px 0;
}

.pdt_m {
  padding-top: 80px;
}

.pdb_m {
  padding-bottom: 80px;
}

@media (max-width: 767px) {
  .pd_m {
    padding: 60px 0;
  }
  .pdt_m {
    padding-top: 60px;
  }
  .pdb_m {
    padding-bottom: 60px;
  }
}
/* display */
.is_sp,
.is_tb {
  display: none !important;
}

@media (max-width: 1024px) {
  .is_pc {
    display: none !important;
  }
  .is_tb {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .is_sp {
    display: block !important;
  }
}
.front {
  position: relative;
  z-index: 1;
}

/* ---------------- slick ---------------- */
.slick-dots {
  bottom: -50px;
}
.slick-dots li {
  width: 25px;
  height: 25px;
  margin: 0 25px;
}
.slick-dots li button:before {
  color: #f3f3f3;
  font-size: 22px;
  opacity: 1;
}
.slick-dots li.slick-active button:before {
  color: #aaa;
}

.slick-dotted.slick-slider {
  margin-bottom: 100px;
}

/* ----------------  header ---------------- */
.header {
  transition: background-color 0.3s ease;
  border-bottom: 1px solid #000;
  position: fixed;
  width: 100%;
  height: 110px;
  z-index: 99;
}
.header.scrolled {
  background: rgba(250, 247, 241, 0.9);
}
@media (max-width: 1024px) {
  .header {
    height: 90px;
  }
}
@media (max-width: 767px) {
  .header {
    height: 60px;
  }
}

.header__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2em;
  height: 100%;
}
@media (max-width: 1024px) {
  .header__block {
    padding: 0 1.5em;
  }
}
@media (max-width: 767px) {
  .header__block {
    padding: 0 0.6em 0 0.8em;
  }
}
.header__block .primary_menu {
  margin: 0 80px 0 auto;
  display: flex;
  gap: 1.4em;
}
.header__block .primary_menu a {
  color: #000;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .header__block .primary_menu {
    display: none;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 4%;
  position: relative;
  max-width: 520px;
  width: 100%;
  z-index: 100;
}
@media (max-width: 767px) {
  .header__logo {
    gap: 2.6%;
  }
}
.header__logo img {
  display: block;
  width: 250px;
}
@media (max-width: 1024px) {
  .header__logo img {
    width: 190px;
  }
}
@media (max-width: 767px) {
  .header__logo img {
    max-width: 140px;
    width: 32vw;
  }
}
.header__logo .txt {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.15em;
}
@media (max-width: 767px) {
  .header__logo .txt {
    font-size: min(2.6vw, 12px);
    letter-spacing: 0.1em;
  }
}

.header__block_menu {
  position: relative;
}

.header__nav {
  display: none;
  background: #d1e190;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 120px;
  text-align: center;
}
@media (max-width: 767px) {
  .header__nav {
    padding-top: 80px;
  }
}
.header__nav.on,
.header__nav ul {
  display: block;
}
.header__nav a {
  color: #000;
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: left;
  padding: 0.6em 2.4em;
}
.header__nav a:hover {
  opacity: 0.6;
}
@media (max-width: 767px) {
  .header__nav a {
    font-size: 1.3rem;
    padding: 0.5em 2.2em;
  }
}
.header__nav .tag_box {
  background: #faf7f1;
  border-radius: 16px;
  padding: 1.8em 2em;
  margin: 1.4em 2em;
}
.header__nav .tag_box .ttl {
  color: #569501;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0.4em;
}
.header__nav .tag_box .tags {
  text-align: left;
}
.header__nav .tag_box .tags p {
  display: inline-block;
  margin: 0 1em 0.8em 0;
}
.header__nav .tag_box .tags p a {
  color: #8b8b8b;
  font-size: 1.2rem;
  font-weight: 400;
  padding: 0;
}
@media (max-width: 767px) {
  .header__nav .tag_box {
    border-radius: 14px;
    padding: 1.8em 1.6em;
  }
  .header__nav .tag_box .tags p {
    margin: 0 1em 0.2em 0;
  }
  .header__nav .tag_box .tags p a {
    font-size: 1.1rem;
  }
}

.header__toggle {
  width: 100%;
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: -20px;
  right: 0;
  z-index: 100;
}
.header__toggle .bar {
  width: 30px;
  height: 2px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #569501;
  transition: transform 0.3s, opacity 0.3s;
}
@media (max-width: 767px) {
  .header__toggle .bar {
    width: 28px;
  }
}
.header__toggle .bar_top {
  top: 10px;
}
.header__toggle .bar_middle {
  top: 50%;
  transform: translate(-50%, -50%);
}
.header__toggle .bar_bottom {
  bottom: 10px;
}
.header__toggle.close .bar_top {
  transform: translate(-50%, 10px) rotate(45deg);
}
.header__toggle.close .bar_middle {
  opacity: 0;
}
.header__toggle.close .bar_bottom {
  transform: translate(-50%, -8px) rotate(-45deg);
}

/* ---------------- footer ---------------- */
.footer__cont {
  border-top: 1px solid #000;
  text-align: center;
  padding: 46px 0 40px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .footer__cont {
    padding: 30px 0;
  }
}

.footer__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4em;
}
@media (max-width: 767px) {
  .footer__menu {
    margin-bottom: 0.8em;
  }
}
.footer__menu a {
  font-size: 1.4rem;
  line-height: 1;
  display: block;
  padding: 0 1em;
}
.footer__menu a:hover {
  color: #569501;
  opacity: 1;
}
@media (max-width: 767px) {
  .footer__menu a {
    font-size: 1.2rem;
  }
}
.footer__menu li:last-child a {
  padding-right: 0;
}
.footer__menu li:not(:first-child) {
  -webkit-border-start: 1px solid #000;
  border-inline-start: 1px solid #000;
}

.footer__logo {
  display: block;
  max-width: 156px;
  margin: 1em auto;
}
@media (max-width: 767px) {
  .footer__logo {
    max-width: 90px;
    margin: 0.8em auto 1.2em;
  }
}

.footer__copy {
  color: #8b8b8b;
  display: block;
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

/* ---------------- page_top ---------------- */
#page_top {
  position: fixed;
  bottom: 65px;
  right: 50px;
  z-index: 99;
}
@media (max-width: 767px) {
  #page_top {
    right: 25px;
    bottom: 50px;
  }
}
#page_top a {
  display: block;
  transition: all 0.3s ease;
}
#page_top a:hover {
  opacity: 0.9;
}
#page_top .arrow_up {
  display: inline-block;
  vertical-align: middle;
  color: #000;
  line-height: 1;
  width: 1.4em;
  height: 1.4em;
  border: 0.14em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
}
@media (max-width: 767px) {
  #page_top .arrow_up {
    width: 1em;
    height: 1em;
  }
}

/* ----------------  top_bg ---------------- */
.main_cont {
  position: relative;
  min-height: 1100px;
}
.main_cont::before {
  content: "";
  background: url(../images/bg_01.webp) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 0;
  width: 801px;
  height: 925px;
}
@media (max-width: 1024px) {
  .main_cont::before {
    width: 480px;
    height: 554px;
  }
}
@media (max-width: 767px) {
  .main_cont::before {
    width: 320px;
    height: 370px;
  }
}
.main_cont::after {
  content: "";
  background: url(../images/bg_02.webp) no-repeat center/contain;
  position: absolute;
  bottom: 6%;
  right: 0;
  width: 514px;
  height: 1063px;
}
@media (max-width: 1024px) {
  .main_cont::after {
    width: 360px;
    height: 745px;
  }
}
@media (max-width: 767px) {
  .main_cont::after {
    width: 270px;
    height: 558px;
  }
}

.footer {
  position: relative;
}
.footer::before {
  content: "";
  background: url(../images/bg_03.webp) no-repeat center/contain;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 478px;
  height: 371px;
}
@media (max-width: 1024px) {
  .footer::before {
    width: 320px;
    height: 242px;
  }
}
@media (max-width: 767px) {
  .footer::before {
    width: 258px;
    height: 200px;
  }
}

/* ---------------- top_mv ---------------- */
.top_mv {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .top_mv {
    margin-bottom: 50px;
  }
}
.top_mv .main_bnr a {
  border-radius: 24px;
  display: block;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .top_mv .main_bnr a {
    border-radius: 18px;
  }
}
.top_mv .main_bnr a img {
  transition: all 0.8s;
  width: 100%;
}
.top_mv .main_bnr a .ttl {
  background: rgba(0, 0, 0, 0.75);
  padding: 0.8em 1.4em;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.8s;
  width: 100%;
  z-index: 1;
}
.top_mv .main_bnr a .ttl span {
  color: #fff;
  display: block;
  font-size: 2.2rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .top_mv .main_bnr a .ttl {
    padding: 0.6em 0.85em;
  }
  .top_mv .main_bnr a .ttl span {
    font-size: 1.1rem;
  }
}
.top_mv .main_bnr a:hover {
  opacity: 1;
}
.top_mv .main_bnr a:hover img {
  transform: scale(1.05, 1.05);
  transition: 1s all;
}
.top_mv .main_bnr a:hover .ttl {
  color: #569501;
}

/* ----------------  top_article ---------------- */
.top_article {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .top_article {
    padding: 50px 0 60px;
  }
}
.top_article .list {
  display: flex;
  flex-wrap: wrap;
  gap: 6%;
}
.top_article .list li {
  letter-spacing: 0.08em;
  margin-bottom: 4.5em;
  max-width: 330px;
  width: 47%;
}
@media (max-width: 767px) {
  .top_article .list li {
    margin-bottom: 2.6em;
  }
}
.top_article .list li .thumb {
  border-radius: 30px;
  display: block;
  overflow: hidden;
  max-width: 330px;
  margin: 0 auto 0.8em;
}
.top_article .list li .thumb img {
  transition: all 0.8s;
  width: 100%;
}
@media (max-width: 767px) {
  .top_article .list li .thumb {
    border-radius: 18px;
    max-width: none;
  }
}
.top_article .list li .ttl {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0.4em 0 0;
  transition: all 0.8s;
}
@media (max-width: 767px) {
  .top_article .list li .ttl {
    font-size: 1.4rem;
  }
}
.top_article .list li a:hover {
  opacity: 1;
}
.top_article .list li a:hover .ttl {
  color: #569501;
}
.top_article .list li a:hover img {
  transform: scale(1.15, 1.15);
  transition: 1s all;
}
.top_article .list li .date {
  color: #8b8b8b;
  display: inline-block;
  font-size: 1.3rem;
  margin-right: 0.6em;
}
@media (max-width: 767px) {
  .top_article .list li .date {
    display: block;
    font-size: 1.2rem;
    line-height: 1.4;
  }
}
.top_article .list li .cat {
  background: #569501;
  border-radius: 100px;
  color: #fff;
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.1;
  padding: 0.22em 0.6em 0.16em;
  margin-right: 0.4em;
}
@media (max-width: 767px) {
  .top_article .list li .cat {
    font-size: 1.1rem;
    line-height: 1;
    padding: 0.26em 0.8em 0.18em;
  }
}

.row_block {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.row_block .main_item {
  width: 65%;
}
.row_block .sub_item {
  background: #fff;
  border: 1px solid #000;
  border-radius: 24px;
  padding: 2.4em 2em;
  position: sticky;
  top: 160px;
  width: 29%;
}
.row_block .sub_item .sub_item_ttl {
  color: #569501;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.6em;
}
.row_block .sub_item .cat_list a {
  font-weight: 500;
  letter-spacing: 0.12em;
}
.row_block .sub_item .cat_list {
  margin-bottom: 2.2em;
}
.row_block .sub_item .tag_list {
  margin-bottom: 2.2em;
}
.row_block .sub_item .tag_list li {
  display: inline-block;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  margin-right: 0.4em;
  padding: 0.1em 0;
}
.row_block .sub_item .tag_list li a {
  color: #8b8b8b;
}
@media (max-width: 1024px) {
  .row_block {
    flex-direction: column;
  }
  .row_block .main_item {
    width: 100%;
  }
  .row_block .sub_item {
    margin: 6em auto 0;
    width: 100%;
    position: static;
  }
}
@media (max-width: 767px) {
  .row_block .sub_item {
    border-radius: 20px;
    margin: 4em auto 0.6em;
  }
  .row_block .sub_item .sub_item_ttl {
    font-size: 2.2rem;
  }
  .row_block .sub_item .tag_list li {
    font-size: 1.2rem;
  }
}

.top_popular {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 100px 0;
}
@media (max-width: 767px) {
  .top_popular {
    padding: 60px 0;
  }
}
.top_popular .list {
  display: flex;
  justify-content: space-between;
}
.top_popular .list li {
  position: relative;
  width: 17.5%;
}
.top_popular .list li::before {
  position: absolute;
  top: -0.88em;
  left: 0.46em;
  font-size: 4rem;
  font-weight: 500;
  color: #cab154;
  z-index: 5;
}
.top_popular .list li:nth-of-type(1)::before {
  content: "1";
}
.top_popular .list li:nth-of-type(2)::before {
  content: "2";
}
.top_popular .list li:nth-of-type(3)::before {
  content: "3";
}
.top_popular .list li:nth-of-type(4)::before {
  content: "4";
}
.top_popular .list li:nth-of-type(5)::before {
  content: "5";
}
.top_popular .list li .thumb {
  border-radius: 20px;
  display: block;
  overflow: hidden;
  margin: 0 auto 0.8em;
}
.top_popular .list li .thumb img {
  transition: all 0.8s;
  width: 100%;
}
.top_popular .list li .date {
  color: #8b8b8b;
  display: block;
  font-size: 1.2rem;
  margin: 0.6em 0 0.2em;
}
.top_popular .list li .ttl {
  font-size: 1.5rem;
  line-height: 1.6;
  transition: all 0.8s;
}
.top_popular .list li a:hover {
  opacity: 1;
}
.top_popular .list li a:hover .ttl {
  color: #569501;
}
.top_popular .list li a:hover img {
  transform: scale(1.15, 1.15);
  transition: 1s all;
}
@media (max-width: 1024px) {
  .top_popular .list {
    flex-direction: column;
  }
  .top_popular .list li {
    margin-bottom: 2.4em;
    width: 100%;
  }
  .top_popular .list li::before {
    left: 0.26em;
  }
  .top_popular .list li a {
    display: flex;
    justify-content: space-between;
  }
  .top_popular .list li .thumb {
    border-radius: 14px;
    margin: 0;
    width: 20%;
  }
  .top_popular .list li .txt_box {
    width: 76%;
  }
}
@media (max-width: 767px) {
  .top_popular .list {
    margin-top: 2.4em;
  }
  .top_popular .list li::before {
    top: -0.8em;
    left: 0.26em;
    font-size: 2.6rem;
  }
  .top_popular .list li .thumb {
    width: 28%;
  }
  .top_popular .list li .txt_box {
    width: 66%;
  }
  .top_popular .list li .ttl {
    font-size: 1.3rem;
  }
  .top_popular .list li .date {
    margin: 0;
  }
}

.top_about {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .top_about {
    padding: 60px 0;
  }
}
.top_about .top_about_ttl {
  text-align: center;
  margin-bottom: 2.2em;
}
.top_about .top_about_ttl img {
  display: inline-block;
  width: 270px;
}
.top_about .top_about_ttl span {
  display: inline-block;
  font-size: 2rem;
  font-weight: 500;
  padding-left: 0.6em;
  vertical-align: text-bottom;
}
@media (max-width: 767px) {
  .top_about .top_about_ttl {
    margin-bottom: 1.8em;
  }
  .top_about .top_about_ttl img {
    width: 140px;
  }
  .top_about .top_about_ttl span {
    font-size: 1.6rem;
    font-weight: 500;
    vertical-align: bottom;
  }
}
.top_about .txt {
  text-align: center;
  line-height: 2;
  margin-bottom: 4em;
}
@media (max-width: 767px) {
  .top_about .txt {
    text-align: left;
    margin-bottom: 2.4em;
  }
}

.sec_ttl {
  color: #569501;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 1.6em;
}
.sec_ttl span {
  color: #000;
  display: inline-block;
  font-size: 50%;
  font-weight: 500;
  margin-left: 1em;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .sec_ttl {
    font-size: 2.4rem;
    margin-bottom: 1.2em;
  }
}

.archive_ttl {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2em;
}
.archive_ttl span {
  font-size: 80%;
  font-weight: inherit;
}
@media (max-width: 767px) {
  .archive_ttl {
    font-size: 2rem;
  }
}

.cmn_btn {
  background: #569501;
  border-radius: 100px;
  color: #fff !important;
  display: block;
  font-weight: 600;
  text-align: center;
  padding: 14px;
  position: relative;
  margin: 1em auto;
  max-width: 270px;
  width: 100%;
}
@media (max-width: 767px) {
  .cmn_btn {
    max-width: 210px;
  }
}
.cmn_btn .arrow {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
}
.cmn_btn .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 9px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
}

/* ---------------- animation ---------------- */
/* 初期状態ではアニメーションしない */
.anim_fadeup {
  opacity: 0;
  transform: translateY(35px);
}

/* 表示されたらアニメ発動 */
.anim_fadeup.is-active {
  animation: fadeup 0.8s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeup {
  0% {
    transform: translateY(35px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ---------------- single_article ---------------- */
.single_article {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .single_article {
    padding: 50px 0 80px;
  }
}
.single_article .single_cat {
  margin-bottom: 1.4em;
}
.single_article .single_cat .cat {
  background: #569501;
  border-radius: 100px;
  color: #fff;
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1.2;
  padding: 0.2em 1em;
  margin-right: 0.4em;
}
@media (max-width: 767px) {
  .single_article .single_cat .cat {
    font-size: 1.2rem;
  }
}
.single_article .single_ttl {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1.4em;
}
.single_article .single_ttl::first-letter {
  color: #569501;
  font-weight: inherit;
}
@media (max-width: 767px) {
  .single_article .single_ttl {
    font-size: 2.4rem;
  }
}
.single_article .single_pic img {
  border-radius: 30px;
  width: 100%;
}
@media (max-width: 767px) {
  .single_article .single_pic img {
    border-radius: 20px;
  }
}
.single_article .single_date {
  color: #8b8b8b;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 2.6em 0 2.4em;
}
@media (max-width: 767px) {
  .single_article .single_date {
    font-size: 1.1rem;
  }
}
.single_article .single_cont {
  line-height: 2;
}
.single_article .single_cont .wp-block-separator {
  border-top: 1px dotted #b9b9b9;
}
.single_article .single_cont #ez-toc-container {
  background: #fff;
  border: 1px solid #000;
  border-radius: 24px;
  width: 100%;
  padding: 2.2em 3em;
  margin: 3.4em 0;
}
@media (max-width: 767px) {
  .single_article .single_cont #ez-toc-container {
    border-radius: 16px;
    padding: 2em 1.4em;
  }
}
.single_article .single_cont #ez-toc-container .ez-toc-title {
  color: #569501;
  display: block;
  font-size: 2rem;
  margin-bottom: 0.8em;
}
@media (max-width: 767px) {
  .single_article .single_cont #ez-toc-container .ez-toc-title {
    font-size: 1.8rem;
  }
}
.single_article .single_cont #ez-toc-container .ez-toc-list .ez-toc-link {
  font-size: 1.4rem;
  margin-bottom: 0.4em;
}
@media (max-width: 767px) {
  .single_article .single_cont #ez-toc-container .ez-toc-list .ez-toc-link {
    font-size: 1.2rem;
  }
}
.single_article .single_cont #ez-toc-container ul ul {
  margin-left: 0.8em;
}
.single_article .single_cont p {
  margin-bottom: 2em;
}
.single_article .single_cont a {
  color: #569501;
  text-decoration: underline;
}
.single_article .single_cont strong a {
  font-weight: 700;
}
.single_article .single_cont h2 {
  color: #569501;
  font-size: 3rem;
  line-height: 1.7;
  margin: 3.8em 0 1em;
}
.single_article .single_cont h2:first-of-type {
  margin-top: 2.4em;
}
@media (max-width: 767px) {
  .single_article .single_cont h2 {
    font-size: 2.2rem;
    line-height: 1.5;
  }
}
.single_article .single_cont h2 * {
  font-weight: 600;
}
.single_article .single_cont h3 {
  border-bottom: 1px solid #000;
  font-size: 2.2rem;
  line-height: 1.7;
  margin: 3.8em 0 1.4em;
  padding-bottom: 0.2em;
}
@media (max-width: 767px) {
  .single_article .single_cont h3 {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-top: 2.8em;
  }
}
.single_article .single_cont h2 + h3 {
  margin-top: 2.2em;
}
.single_article .single_cont h4 {
  color: #569501;
  font-size: 2rem;
  margin: 1.8em 0 1em;
}
@media (max-width: 767px) {
  .single_article .single_cont h4 {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.single_article .single_cont ul {
  list-style-type: disc;
  padding-left: 1.4em;
  margin-bottom: 2em;
}
.single_article .single_cont ol {
  list-style-type: decimal;
  padding-left: 1.4em;
  margin-bottom: 2em;
}
.single_article .post_tags {
  display: flex;
  gap: 1em;
  margin-top: 3.4em;
}
.single_article .post_tags a {
  color: #569501;
  font-size: 85%;
  text-decoration: underline;
}

.sns_share {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 4em 0 4.6em;
  margin-top: 4.4em;
}
@media (max-width: 767px) {
  .sns_share {
    padding: 2.2em 0 2.8em;
    margin-top: 3em;
  }
}
.sns_share .ttl {
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.8em;
}
@media (max-width: 767px) {
  .sns_share .ttl {
    font-size: 1.2rem;
    margin-bottom: 1.2em;
  }
}
.sns_share .list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5%;
}
.sns_share .list a {
  display: block;
  width: 37px;
}
@media (max-width: 767px) {
  .sns_share .list {
    gap: 8.5%;
  }
  .sns_share .list a {
    width: 26px;
  }
}

.bottom_pickup {
  padding: 60px 0 0;
}
@media (max-width: 767px) {
  .bottom_pickup {
    padding: 50px 0 0;
  }
}
.bottom_pickup .bottom_pickup_list {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
}
@media (max-width: 767px) {
  .bottom_pickup .bottom_pickup_list {
    gap: 6%;
  }
}
.bottom_pickup .bottom_pickup_list li {
  margin-bottom: 2em;
  width: 30%;
}
@media (max-width: 767px) {
  .bottom_pickup .bottom_pickup_list li {
    width: 47%;
  }
}
.bottom_pickup .bottom_pickup_list li a {
  display: block;
}
.bottom_pickup .bottom_pickup_list li a .thumb {
  border-radius: 20px;
  display: block;
  overflow: hidden;
  margin: 0 auto 0.8em;
}
.bottom_pickup .bottom_pickup_list li a .thumb img {
  transition: all 0.8s;
  width: 100%;
}
@media (max-width: 767px) {
  .bottom_pickup .bottom_pickup_list li a .thumb {
    border-radius: 18px;
  }
}
.bottom_pickup .bottom_pickup_list li a .ttl {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-top: 0.6em;
  transition: all 0.8s;
}
@media (max-width: 767px) {
  .bottom_pickup .bottom_pickup_list li a .ttl {
    font-size: 1.2rem;
  }
}
.bottom_pickup .bottom_pickup_list li a:hover {
  opacity: 1;
}
.bottom_pickup .bottom_pickup_list li a:hover .ttl {
  color: #569501;
}
.bottom_pickup .bottom_pickup_list li a:hover img {
  transform: scale(1.15, 1.15);
  transition: 1s all;
}

/* ---------------- page ---------------- */
.page_block {
  padding: 100px 0;
  margin: 0 auto;
  max-width: 860px;
}
@media (max-width: 767px) {
  .page_block {
    padding: 40px 0;
  }
}
.page_block .page_ttl {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1.8em;
  text-align: center;
}
@media (max-width: 767px) {
  .page_block .page_ttl {
    font-size: 2.4rem;
  }
}
.page_block .page_cont {
  line-height: 2;
}
.page_block .page_cont p {
  margin-bottom: 1.4em;
}
.page_block .page_cont a {
  color: #569501;
}
.page_block .page_cont h2 {
  font-size: 2.2rem;
  margin: 3em 0 0.8em;
}
@media (max-width: 767px) {
  .page_block .page_cont h2 {
    font-size: 1.8rem;
  }
}
.page_block .page_cont ul {
  list-style-type: disc;
  padding-left: 1.4em;
}
.page_block .page_cont ol {
  list-style-type: decimal;
  padding-left: 1.4em;
}

/* ---------------- form ---------------- */
.page_block .wpforms-container {
  margin: 0 auto;
  max-width: 600px;
  width: 100%;
}
.page_block .wpforms-container input,
.page_block .wpforms-container textarea {
  border: 1px solid #000 !important;
  border-radius: 8px !important;
  display: block;
  max-width: 100%;
  width: 100%;
}
.page_block .wpforms-container button[type=submit] {
  border-radius: 100px;
  background: #569501 !important;
  display: block;
  margin: 1.4em auto;
  max-width: 210px;
  width: 100%;
  height: 50px;
  transition: all 0.3s;
}
.page_block .wpforms-container button[type=submit]:hover {
  opacity: 0.7;
}

/* ---------------- about ---------------- */
.about .about_ttl {
  margin-bottom: 1.8em;
  line-height: 1.6;
  text-align: center;
}
.about .about_ttl img {
  display: inline-block;
  width: 300px;
}
.about .about_ttl span {
  display: inline-block;
  font-size: 2.8rem;
  font-weight: 500;
  padding-left: 0.6em;
  vertical-align: text-bottom;
}
@media (max-width: 767px) {
  .about .about_ttl img {
    width: 150px;
  }
  .about .about_ttl span {
    font-size: 1.8rem;
    vertical-align: bottom;
  }
}
.about .main_lead {
  color: #569501;
  font-size: 2.4rem;
  margin-bottom: 2em;
  text-align: center;
}
@media (max-width: 767px) {
  .about .main_lead {
    font-size: 1.8rem;
  }
}
.about p {
  line-height: 2;
  margin-bottom: 1.4em;
}
.about a {
  color: #569501;
}
.about .about_item {
  margin: 5em 0;
}
.about .about_item:first-of-type {
  margin-top: 4em;
}
.about .about_item .ttl {
  font-size: 2.4rem;
  margin-bottom: 1.4em;
  border-bottom: 1px solid #000;
  padding-bottom: 0.2em;
}
.about .about_item .ttl::first-letter {
  color: #569501;
}
@media (max-width: 767px) {
  .about .about_item .ttl {
    font-size: 1.8rem;
  }
}
.about .about_item .subttl {
  font-size: 2rem;
  margin: 2.4em 0 0.6em;
}
@media (max-width: 767px) {
  .about .about_item .subttl {
    font-size: 1.5rem;
  }
}

/* ---------------- breadcrumb ---------------- */
.breadcrumb {
  padding: 1.2em 2.5em 0;
}
.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
}
.breadcrumb ul li {
  font-size: 12px;
  letter-spacing: 0.1em;
  padding-right: 1.2em;
  position: relative;
}
.breadcrumb ul li::after {
  content: "";
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 0.6em;
  width: 4px;
  height: 4px;
}
.breadcrumb ul li:last-child::after {
  content: none;
}
.breadcrumb ul li a {
  color: #569501;
}
@media (max-width: 767px) {
  .breadcrumb {
    padding: 1em 1em 0;
  }
  .breadcrumb ul li {
    font-size: 10px;
  }
}

/* ---------------- pagination ---------------- */
.pagination {
  margin: 0 0 4em;
}
.pagination ul {
  display: flex;
  justify-content: center;
  gap: 1.4em;
}
.pagination ul span,
.pagination ul a {
  display: inline-block;
  font-weight: 600;
  text-align: center;
}
.pagination .page-numbers {
  color: #569501;
  font-size: 102%;
}
.pagination .page-numbers.current {
  color: #000;
}
@media (max-width: 1024px) {
  .pagination {
    margin: 0;
  }
}

/* ---------------- サイドバー関連記事 ---------------- */
.pickup-posts {
  margin: 2.6em 0 3em;
}
.pickup-posts .list_s li {
  margin-bottom: 1.4em;
}
.pickup-posts .list_s a {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.pickup-posts .list_s a .thumb {
  border-radius: 10px;
  overflow: hidden;
  display: block;
  width: 28%;
}
@media (max-width: 1024px) {
  .pickup-posts .list_s a .thumb {
    width: 16%;
  }
}
@media (max-width: 767px) {
  .pickup-posts .list_s a .thumb {
    width: 26%;
  }
}
.pickup-posts .list_s a .ttl {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
  width: 66%;
}
@media (max-width: 1024px) {
  .pickup-posts .list_s a .ttl {
    font-size: 1.4rem;
    width: 80%;
  }
}
@media (max-width: 767px) {
  .pickup-posts .list_s a .ttl {
    font-size: 1.2rem;
    width: 68%;
  }
}

/* ---------------- widget ---------------- */
.side_widgets .widget_search {
  margin-bottom: 2.4em;
}
.side_widgets .wp-block-search__input {
  background: #faf7f1;
  border: 1px solid #000;
  border-radius: 10px 0 0 10px;
  padding: 0.6em 1em;
}
.side_widgets .wp-block-search__button {
  background: #000;
  border: 0;
  border-radius: 0 10px 10px 0;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "Reddit Sans", sans-serif;
  margin-left: 0;
}
.side_widgets .wp-block-latest-posts__list {
  border-top: 1px solid #dedede;
  margin-bottom: 1em;
}
.side_widgets .wp-block-latest-posts__list li {
  border-bottom: 1px solid #dedede;
  padding: 1em 0;
}
.side_widgets .wp-block-latest-posts__list li a {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .side_widgets .wp-block-latest-posts__list li a {
    font-size: 1.2rem;
  }
}
.side_widgets .popular-posts .r_list {
  display: block;
  margin-top: 1.2em;
  margin-bottom: 2.6em;
}
.side_widgets .popular-posts .r_list li {
  position: relative;
  margin-bottom: 1.6em;
  width: 100%;
}
.side_widgets .popular-posts .r_list li::before {
  position: absolute;
  top: -0.98em;
  left: 0.28em;
  font-size: 2.2rem;
  font-weight: 500;
  color: #cab154;
  z-index: 5;
}
@media (max-width: 767px) {
  .side_widgets .popular-posts .r_list li::before {
    top: -0.74em;
    left: 0.34em;
    font-size: 2rem;
  }
}
.side_widgets .popular-posts .r_list li:nth-of-type(1)::before {
  content: "1";
}
.side_widgets .popular-posts .r_list li:nth-of-type(2)::before {
  content: "2";
}
.side_widgets .popular-posts .r_list li:nth-of-type(3)::before {
  content: "3";
}
.side_widgets .popular-posts .r_list li:nth-of-type(4)::before {
  content: "4";
}
.side_widgets .popular-posts .r_list li:nth-of-type(5)::before {
  content: "5";
}
.side_widgets .popular-posts .r_list li a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.side_widgets .popular-posts .r_list li .thumb {
  border-radius: 10px;
  overflow: hidden;
  display: block;
  width: 28%;
}
@media (max-width: 1024px) {
  .side_widgets .popular-posts .r_list li .thumb {
    width: 16%;
  }
}
@media (max-width: 767px) {
  .side_widgets .popular-posts .r_list li .thumb {
    width: 26%;
  }
}
.side_widgets .popular-posts .r_list li .ttl {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
  width: 66%;
}
@media (max-width: 1024px) {
  .side_widgets .popular-posts .r_list li .ttl {
    font-size: 1.4rem;
    width: 80%;
  }
}
@media (max-width: 767px) {
  .side_widgets .popular-posts .r_list li .ttl {
    font-size: 1.2rem;
    width: 68%;
  }
}

/* ---------------- 検索 ---------------- */
.no_results .ttl {
  display: block;
  font-size: 180%;
  font-weight: 700;
  margin-bottom: 1em;
}
.no_results .txt {
  margin-bottom: 4em;
}

/* ---------------- widget ---------------- */
.rakuten_widget {
  margin: 3em 0;
}
.rakuten_widget.is_top {
  margin: 5em 0 0;
}

.moon_tbl {
  letter-spacing: 0.04em;
}
.moon_tbl th,
.moon_tbl td {
  background: #fff;
  border: 1px solid #e4e6e1;
  padding: 0.8em 1.4em;
  font-size: 92%;
  line-height: 1.6;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .moon_tbl th,
  .moon_tbl td {
    padding: 0.8em 0.6em;
    font-size: 88%;
  }
}
.moon_tbl thead th,
.moon_tbl thead td {
  background: #000;
  color: #fff;
  font-weight: 700;
}
.moon_tbl .fmoon,
.moon_tbl .nmoon {
  text-align: left;
  white-space: normal;
  width: 65%;
}
.moon_tbl .fmoon a,
.moon_tbl .nmoon a {
  display: block;
}
.moon_tbl .fmoon a::before,
.moon_tbl .nmoon a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #000;
  border-right: 0;
  margin-right: 4px;
}
.moon_tbl .fmoon strong {
  color: #cab154;
}
.moon_tbl .nmoon strong {
  color: #425098;
}/*# sourceMappingURL=style.css.map */