@charset "UTF-8";
/*======================================================================
  css
======================================================================*/
article,aside,canvas,details,figcaption,figure,header,footer,main,menu,nav,section,summary{display:block}
/*======================================================================
  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}

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: var(--black);
  background: var(--bg);
}

a {
  color: var(--black);
  text-decoration: none;
  box-sizing: border-box;
  transition: .3s;
}

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

h1 {
  font-weight: normal;
}
/*======================================================================
  Global Variables
======================================================================*/
:root {
  --bg: #FFFBF5;
  --bg2: #FEF2E2;
  --black: #333;
  --blue: #1499B9;
  --green: #26AD6B;
  --header-bg: #FFF6E9;
  --red: #DD765B;
  --white: #FFF;
  --yellow: #E39B2A;
}
/*======================================================================
  共通
======================================================================*/
img:not([..img-clip]) {
  max-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 {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  z-index: 10000;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  box-sizing: border-box;
}

.el_hamburger>span {
  display: block;
  margin: 0 auto 5px;
  /*border間隔*/
  height: 1px;
  /*border太さ*/
  font-size: 0;
  background: #000;
  /*border色*/
  transition: all 0.2s ease-in-out;
}

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

.js_hamburgerOpen .el_hamburger>span {
  background: #000;
}

.js_hamburgerOpen .el_hamburger>span.top {
  transform: translateY(3px) rotate(-45deg);
}

.js_hamburgerOpen .el_hamburger>span.middle {
  opacity: 0;
}

.js_hamburgerOpen .el_hamburger>span.bottom {
  transform: translateY(-8px) rotate(45deg);
}

.el_hamburgerButton.el_hamburgerButton__close {
  top: 2%;
  right: 2%;
}

.el_hamburgerButton__close>span {
  display: block;
  width: 40px;
  margin: 0 auto;
  height: 1px;
  background: #000;
}

.el_hamburgerButton__close>span.el_hamburgerLineTop {
  transform: translateY(5px) rotate(-45deg);
}

.el_hamburgerButton__close>span.el_hamburgerLineBottom {
  transform: translateY(-6px) rotate(45deg);
}

.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: 24px;
}

.menu_button {
  display: block;
  width: fit-content;
  margin: 0 auto;
  color: #000;
  display: block;
}

.menu_button img {
  width: 39px;
}

.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;
}

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

/*======================================================================
  パンくず
======================================================================*/
.breadcrumb {
  margin: 0 auto;
  padding-bottom: 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;
}

header .logo img {
	max-width: 100%;
	height: auto;
}

.gnav {
  padding: 0;
}

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

header {
  background: var(--bg) url(images/bg.png) repeat-x top center;
}

.header-content-top {
  position: relative;
  display: flex;
  align-items: center;
  padding-block: 24px;
  height: 208px;
}

.header-content-top::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 279px;
  height: 197px;
  transform: translateY(-50%);
  background: url(images/header-img.png) no-repeat center center;
	background-size: 100%;
}

.header-content-bottom h1{
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 24px;
}

hr {
  position: relative;
  height: 26px;
  border: none;
  margin-bottom: -12px;
}

hr::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 26px;
  background: url(images/recommend-deco.png) repeat-x center center;
  z-index: 999;
}


@media screen and (max-width: 768px) {
	.header-content-top {
		justify-content: center;
	}
			.header-content-top::after {
		display: none;
	}
}

/*======================================================================
  index
======================================================================*/
.main-content {
  margin-bottom: 40px;
}

.main-content-top {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

.main-content-top h2 {
  margin-top: 40px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.main-content-top .img_wrap {
  height: 200px;
  border-radius: 25px;
}

.main-content-post ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.title-deco {
  display: block;
  width: fit-content;
  margin: 0 auto 32px;
  font-size: 24px;
  font-weight: bold;
}

.title-deco span {
  position: relative;
  padding-inline: 34px;
}

.title-deco span::before,
.title-deco span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 32px;
  background-size: 100% 100%;
}

.title-deco span::before {
  left: 0;
  background: url(images/title-deco-left.png) no-repeat center center;
}

.title-deco span::after {
  right: 0;
  background: url(images/title-deco-right.png) no-repeat center center;
}

.main-content-post ul li {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg2);
  border-radius: 25px;
}

.main-content-post-title {
	display: inline-block;
	width: fit-content;
  font-size: 20px;
  font-weight: bold;
}

.main-content-post-title:hover {
  opacity: 1;
  color: var(--yellow);
}

.main-content-post ul li .img_wrap {
  height: 150px;
  border-radius: 25px;
}

.link-content {
  margin-top: 40px;
}

.link-content-wrap {
  padding: 48px 24px;
  background: var(--bg2);
  border-radius: 24px;
}

.link-content-box {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.link-content-wrap table {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--white);
}

.link-content-wrap table a  img{
	display: block;
	width: 100%;
	height: auto;
}

@media screen and (max-width: 768px) {
	.link-content-box {
  display: flex;
flex-direction: column;
		align-items: center;
  justify-content: center;
  gap: 8px;
}
	.link-content-box table {
		width: 300px;
		max-width: 100%;
		justify-content: center;
	}
}

/*======================================================================
  recommend
======================================================================*/
#recommend {
  position: relative;
  padding-block: 40px;
  background: var(--bg2);
}

#recommend::before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 26px;
  background: url(images/recommend-deco.png) repeat-x center center;
  overflow: hidden;
  z-index: 999;
}

#recommend::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 26px;
  background: url(images/recommend-deco.png) repeat-x center center;
  overflow: hidden;
  z-index: 999;
}

#recommend .title-deco {
  margin: 24px auto 32px;
}

.recommend_post {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.recommend_post .img_wrap {
  height: 200px;
  border-radius: 25px;
  margin-bottom: 16px;
}

.recommend_post a:not([class]) {
  font-size: 20px;
  font-weight: bold;
}

.recommend_post a:not([class]):hover {
  opacity: 1;
  color: var(--yellow);
}

/*======================================================================
  footer
======================================================================*/
footer {
  padding: 40px 0 24px 0;
}

.pagetop {
  position: relative;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-block: 24px;
}

.pagetop img {
  width: 50px;
}

.pagetop:hover {
  opacity: 1;
}

.pagetop:hover img {
  visibility: hidden;
}

.pagetop:hover::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 50px;
  height: 50px;
  background: url(images/pagetop-hover.png) no-repeat center center;
}

.fnav {
  margin-bottom: 32px;
}

.fnav ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fnav-title {
  display: inline-block;
  margin-bottom: 16px;
}

.fnav ul a {
  font-size: 16px;
  font-weight: bold;
}

.menu-fnav-container > ul > li > a {
	display: inline-block;
	margin-bottom: 16px;
}

.menu-fnav-container > ul > li:first-child a {
	margin-bottom: 0;
}

.fnav ul li ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fnav ul li ul li a {
  position: relative;
  padding-left: 16px;
  display: inline-block;
}

.fnav ul li a:hover {
  opacity: 1;
  color: var(--yellow);
}

.fnav ul li ul li a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 10px;
  background: url(images/icon-footer.png) no-repeat center center;
}

.footer-logo {
  display: block;
  width: 424px;
  max-width: 100%;
  margin: 0 auto 32px;
}

.footer-logo img {
	max-width: 100%;
	height: auto;
}

.footer-logo + p {
  display: block;
  width: 424px;
  max-width: 100%;
  margin: 0 auto 32px;
}

.footer-logo + p span {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 8px;
  padding-top: 58px;
}

.footer-logo+p span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: url(images/icon-footer-about.png) no-repeat center center;
}

footer small {
  display: block;
  text-align: center;
  font-size: 16px;
}

.footer-about a,
.link_item a{
  font-weight: bold;
  color: #55b96e;
}


/*======================================================================
  category
======================================================================*/

/*======================================================================
  
======================================================================*/

.main-content-top-cate {
    position: relative;
}

.main-content-top-cate .img_wrap {
    height: 300px;
    border-radius: 25px;
}

@media screen and (max-width: 768px) {
    .main-content-top-cate .img_wrap {
        height: 200px;
    }
}

.category-title {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align-last: left;
    font-size: 24px;
    font-weight: bold;
    padding: 24px;
    width: 100%;
    border-radius: 0 0 25px 25px;
    background: var(--bg);
    opacity: 0.8;
    box-sizing: border-box;
}

#category ul {
display: flex;
flex-direction: column;
gap: 24px;
}

#category ul li {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#category ul li .img_wrap {
  height: 150px;
  border-radius: 25px;
}

.catepost-title {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1;
  width: 100%;
}

/* .catepost-title::after {
  content: "...";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-20px);
  padding-inline: 5px;
  background: var(--bg);
} */

.catepost-title:hover {
  opacity: 1;
  color: var(--yellow);
}

.readmore {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  color: var(--white);
  padding: 8px 24px;
  background: var(--green);
  border-radius: 5px;
}

.readmore:hover {
  opacity: 1;
  background: var(--yellow );
}

.letter-big::first-letter {
  font-size: 40px;
  font-weight: bold;
}

.letter-big {
  font-size: 24px;
  font-weight: bold;
}

.detail-title {
  margin:40px auto 32px;
}

.detail-title .letter-big {
  border-bottom: 2px dotted #CCD9D4;
  margin-bottom: 16px;
}

.detail-title .img_wrap {
  height: 150px;
  border-radius: 25px;
}



#detail div:not([class]) h3::first-letter {
  font-size: 36px;
  font-weight: bold;
}

#detail div:not([class]) h3 {
  font-size: 24px;
  font-weight: bold;
  padding-top: 24px;
  margin-bottom: 16px;
  border-top: 2px dotted #CCD9D4;
}

#detail div:not([class]) p {
  margin-bottom: 32px;
}

#detail div:not([class]) p:has(+ .link_item) {
  margin-bottom: 0;
}

#detail div:not([class]) p + ul {
	margin-bottom: 32px;
}

#detail div:not([class]) p:has(+ ul) {
	margin-bottom: 16px;
}

#detail a[href^="mailto:"] {
	font-weight: bold;
	color:#55b96e;
}

.img-clip {
	display: inline-block;
  overflow: hidden;
  max-width: 300px; 
}

.img-clip a img {
	width: 410px; 
	height:auto;
}

.detail-cate {
  display: flex;
  justify-content: right;
  align-items: center;
}

.detail-cate span {
  font-weight: bold;
  padding-right: 8px;
  border-right: 1px solid #CCD9D4;
}

.detail-cate ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 8px;
}

.detail-cate ul li a {
  display: inline-block;
  padding: 8px 33px;
  font-size: 16px;
  font-weight: bold;
  color: var(--white);
  background: var(--green);
  border-radius: 5px;
}

.detail-cate ul li a:hover {
  opacity: 1;
  background: var(--yellow);
}

.link_item {
  margin-block: 1em;
}


#detail table.link_item p {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
	.detail-cate span {
		width: 25%;
	}
	.detail-cate ul {
		width: 75%;
	}
	.detail-cate ul li a {
		padding: 8px 10px;
	}
}
.field-wrap input[type="submit"]{
	width: fit-content;
	min-height: 40px;
	font-size: 16px;
	font-weight: bold;
	line-height: 1;
	color: var(--white);
	padding: 8px 24px;
	background: var(--green);
	border-radius: 5px;
	border: none;
}
.field-wrap input[type="submit"]:hover{
	opacity: 1;
	background: var(--yellow );
}
.label-above .nf-field-element input {
  height: 30px;