@charset "UTF-8";
/*======================================================================
  Reset CSS for HTML5
======================================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,caption,tbody,tfoot,thead,article,aside,canvas,details,figcaption,figure,footer,header,main,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}ul,ol,dl{list-style:none}html{scroll-behavior:smooth}
* {box-sizing: border-box;}
body {
  font-size: 1rem;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  font-family: Avenir, "Open Sans", "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #000;
  background: #FFF;
}

a {
  color: #000;
  text-decoration: none;
  box-sizing: border-box;
  transition: .3s;
}

a:hover {
  opacity: 0.5;
  transition: .3s;
}

h1 {
  font-weight: normal;
}
/*======================================================================
  Global Variables
======================================================================*/
:root {
  --color-primary: #1C9B7A;
  --color-secondary: #008969;
  --margin-large: 40px;
  --margin-middle: 24px;
  --margin-small: 16px;
}
/*======================================================================
  共通
======================================================================*/
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.box_wrap {
  margin: 0 auto;
  max-width: 768px;
  padding-inline: 24px;
  box-sizing: border-box;
}

.Inner {
  margin: 0 30px;
}

.img_wrap {
  position: relative;
  display: block;
  overflow: hidden;
}

.img_wrap img {
  position: absolute;
  inset: -50%;
  margin: auto;
  width: 100%;
  height: auto;
}

.flex { display: flex; }
.flex.column { flex-direction: column; }
.flex.aic { align-items: center; }
.flex.jcc { justify-content: center; }
.flex.jcsb { justify-content: space-between; }


/*======================================================================
  ハンバーガーA
======================================================================*/
.el_hamburger {
  text-align: center;
  position: fixed;
  top: 24px;
  right: 24px;
  width: 47px;
  z-index: 10000;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  box-sizing: border-box;
}

.el_hamburger p {
  font-weight: bold;
}

.el_hamburger img {
  width: 29px;
}

.el_hamburger:hover {
  opacity: 0.5;
}

.uq_spNavi {
  display: none;
}

.uq_spNavi.js_appear {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  z-index: 9999;
}

.uq_spNavi_screen {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.96);
  z-index: 0;
  margin-top: 0;
  padding-top: 0;
  overflow: auto;
}

.gnav {
  padding: 80px 0 0 0;
  text-align: center;
}

.gnav li {
  border-bottom: #aaa 1px solid;
}

.gnav li>a {
  display: block;
  padding: 1.5rem 0;
  color: #000;
  text-decoration: none;
}

.gnav li>a:hover {
  opacity: 0.5;
}

.js_fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

/*======================================================================
  ハンバーガーB
======================================================================*/
.gnav {
  color: #fff;
  cursor: pointer;
  display: block;
  margin-bottom: 1px;
  position: relative;
  margin-bottom: 32px;
}

.menu_button {
  color: #000;
  display: block;
}

.menu_button:hover {
  opacity: 0.5;
}

.menu_button>span {
  width: 30px;
  display: block;
  margin: 0 auto 5px;
  height: 1px;
  font-size: 0;
  background: #000;
  transition: all 0.2s ease-in-out;
}

.menu_button>span:last-child {
  margin-bottom: 0;
}

.menu-main {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
}

#menu-gnav {
	padding-top:30px;
}
.gnav ul li {
  border-bottom: 1px solid #adaca7;
  color: #000;
}

/*======================================================================
  パンくず
======================================================================*/
.breadcrumb {
  margin: 0 auto;
  margin-top: 24px;
}

.breadcrumb ul li {
  padding-right: 5px;
  display: inline-block;
}

.breadcrumb ul li a span {
  font-weight: bold;
}

header {
  background: #F7F5EF;
}

header .logo {
  display: inline-block;
  margin-top: 1em;
}

.gnav {
  padding: 0;
}

/*======================================================================
  header
======================================================================*/

#header {
  padding-block: 24px;
  min-height: 475px;
  background: #EAF0F8 url(images/pattern.png) repeat;
}

.header-content {
  position: relative;
  width: 80%;
  z-index: 1;
}

#header h1 {
  display: block;
	width: 100%;
  margin-bottom: 16px;
}

.header-bg {
  position: relative;
}

.header-bg::after {
  display: block;
  content: "";
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 358px;
  height: 229px;
  background: url(images/bg_tree.png) no-repeat right bottom;
  z-index: 0;
}

.logo {
  display: inline-block;
  width: 300px;
  max-width: 100%;
  margin-bottom: 32px;
}

.header-content p {
  margin-bottom: 32px;
}

.header-post li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.header-post .img_wrap{
  width: 225px;
  height: 127px;
}

.header-post-title {
  display: inline-block;
  width: 225px;
  max-width: 100%;
}

.header-post-title:hover {
  opacity: 1;
  text-decoration: underline;
}

/*======================================================================
  index
======================================================================*/
.index-top {
  margin-top: 72px;
}
.index-top h2 {
  position: relative;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
}

.index-top h2::before {
  display: block;
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  max-width: 100%;
  height: 243px;
  background: url(images/index-top.png) no-repeat center;
}

.index-top .img_wrap {
  margin-inline: auto;
  width: 672px;
  height: 224px;
  margin-bottom: 16px;
}

.index-top p {
  display: block;
  margin: 0 auto;
  width: 672px;
  max-width: 100%;
}

.post {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-block: 40px;
}

.post li {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid #000;
}

.post-title {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  padding-left: 32px;
}

.post-title:hover {
  opacity: 1;
  text-decoration: underline;
}

.post-title::before {
  display: block;
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 24px;
  height: 30px;
  background: url(images/star.png) no-repeat center center /cover;
}

.read-more {
  position: relative;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-bottom: 24px;
  padding-right: 32px;
}

.read-more:hover {
  opacity: 1;
  text-decoration: underline;
}

.read-more::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url(images/arrow-right.png) no-repeat center;
}

/*======================================================================
  recommend
======================================================================*/

#recommend {
  padding-block: 40px;
  background: #5F5F5F;
}

#recommend h3 {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  color: #FFF;
  z-index: 1;
}

#recommend h3::after {
  display: block;
  content: "";
  position: absolute;
  top: -40px;
  right: -23px;
  width: 288px;
  height: 149px;
  background: url(images/bg_tree2.png) no-repeat;
  z-index: -1;
}

.recommend-post {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.recommend-post li {
  position: relative;
  padding: 24px;
  background: url(images/pattern.png) repeat;
  z-index: 10;
}

.recommend-post li .img_wrap {
  height: 180px;
  margin-bottom: 16px;
}

.recommend-post-title {
  font-size: 20px;
  font-weight: bold;
}

.recommend-post-title:hover {
  opacity: 1;
  text-decoration: underline;
}

.cate-box {
  display: flex;
  flex-direction: column;
  gap: 8px;  
  margin-top: 20px;
}

.cate-box a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: #666;
  padding-left: 13px;
}

.cate-box a::before {
  display: block;
  content: "#";
  position: absolute;
  top: 0;
  left: 0;
  width: 9px;
  height: 24px;
}

/*======================================================================
  footer
======================================================================*/
#footer  {
background: #FFF;
margin-top: 32px;
}

.pagetop {
  display: block;
  width: fit-content;
  margin: 0 0 32px auto;
}

.fnav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.fnav ul {
  padding-bottom: 24px;
  border-bottom: 1px solid #333;
}

.fnav ul li {
  width: 348px;
}

.fnav ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
}

.fnav ul li a:hover {
  opacity: 1;
  text-decoration: underline;
}

.copyright {
  text-align: center;
  font-size: 16px;
  margin-bottom: 32px;
}

@media (width <= 768px) {
  .index-top .img_wrap {
    width: 100%;
  }
  .fnav ul {
    gap: 8px;
  }
}



@media (width <= 480px) {
  #recommend h3::after {
    opacity: 0.6;
  }
}
/*======================================================================
  category
======================================================================*/

.category-top {
  margin-top: 24px;
}

.category-top h2 {
  position: relative;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
  padding-top: 45px;
}

.category-top h2::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 29px;
  height: 37px;
  background: url(images/star.png) no-repeat center;
}

/*======================================================================
  Detail
======================================================================*/

.detail-top {
  padding-top: 24px;
}

.detail-top h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
}

.detail-top .cate-box {
  margin-top: 0;
  margin-bottom: 24px;
}

.detail-top .img_wrap {
  width: 720px;
  max-width: 100%;
  height: 180px;
  margin-bottom: 16px;
}

.detail-post {
  margin-block: 40px;
}

.detail-post .img_wrap {
  width: 720px;
  max-width: 100%;
  height: 180px;
  margin-bottom: 8px;
}

.detail-post h3 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 24px;
  margin-bottom: 16px;
}

.detail-post a {
  font-weight: bold;
  color: #dd0909;
  width: fit-content;
}

.detail-post h3:first-child {
  margin-top: 0;
}

.link-item {
  margin-block: 1em;
}

.link-item a {
  display: block;
}

.link-item a img {
  width: revert-layer;
  margin-bottom: 1em;
  max-width: 100%;
}