@charset "utf-8";
@charset "UTF-8";
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,
table, caption, tbody, tfoot, thead, tr, th, td,
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 {
    list-style:none;
}
blockquote, q {
    quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
img {
    line-height: 1;
    vertical-align: bottom;
}

/*change colours to suit your needs*/
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}
del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
input, select {
    vertical-align:middle;
}

/*======================================================================
    BASIC
======================================================================*/
html,body {
    box-sizing: border-box;
    height: 100%;
}
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}
:root {
    --primary: #63B653;
    --body: #000000;
    --bodyVariant: #777777;
    --white: #FFFFFF;
    --base: #F3F1EF;
    --baseVariant: #ECEAE8;
    --border: #D9D9D9;
    --link: #2c94ff;
}
body {
    line-height: 1.5;
    font-family: "Yu Gothic" , "Yu Gothic UI" , "Segoe UI" , "游ゴシック" , "Meiryo" , "Meiryo UI" , "メイリオ" , "Hiragino Sans" , "Sanfrancisco" , "Hiragino Kaku" , "Gothic ProN" , "Helvetica Neue" , "Noto Sans CJK JP" , "Roboto" , sans-serif;
    font-size: 1.6rem;
    color: var(--body);
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}
p { 
    line-height: 1.5; 
}
a { 
    text-decoration: none; 
    color: var(--body);
}
img {
    max-width: 100%;
    height: auto;
}

/* mouseover - opacity */
body a:hover {
	opacity: 0.5;
}

/*======================================================================
  FORMAT
======================================================================*/
/* block class */
.boxWrap {
    max-width: 768px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* flexBox */
.flexBox {
    display: flex;
    flex-direction: column;
}

/* float */
.fl { float: left;}
.fr { float: right;}

/* trimming */
.trimming {
    display: block;
    position: relative;
    overflow: hidden;
}
.trimming img {
    position: absolute;
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: auto;
    margin: auto;
}

h1 {
    font-size: 1.6rem;
    font-weight: normal;
}

h2 {
    font-size: 2.4rem;
    padding-left: 42px;
    background: url(./images/icon_two.svg) no-repeat left top;
  }
h3 {
    font-size: 1.8rem;
}



/*======================================================================
  header
======================================================================*/
.header {
  background: var(--base);
  min-height: 198px;
}
.header_inner {
  padding: 24px 0 48px;
  gap: 24px;
}
.header_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_logo {
  padding-right: 10px;
}

/*ハンバーガーボタン*/
.el_hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .4rem;
  min-width: 5.4rem;
  height: 5.4rem;
  border-radius: 4px;
  background: var(--white);
  z-index: 10000;
  transition: .2s;
  cursor: pointer;
}
.el_hamburger > span {
  display: block;
  width: 2rem;
  height: 4px;
  font-size: 0;
  background-image: url(./images/line.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: .2s;
}
.el_hamburger:hover {
  background: var(--primary);
}
.el_hamburger:hover > span {
  background: url(./images/line-hover.svg);
}
.js_hamburgerOpen .el_hamburger > span.top {
  transform: translateY(8px) rotate(-45deg);
}
.js_hamburgerOpen .el_hamburger > span.middle {
  opacity: 0;
}
.js_hamburgerOpen .el_hamburger > span.bottom {
  transform: translateY(-8px) 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: var(--white);
  z-index: 0;
  margin-top: 0;
  padding-top: 0;
  overflow: auto;
}
.gnav {
  padding: 80px 0 0 0;
  text-align: center;
}
.gnav ul {
  max-width: 76.8rem;
  margin-inline: auto;
  padding-inline: 2.4rem;
}
.gnav li {
    border-bottom: var(--body) 1px solid;
}
.gnav li > a {
  display: block;
  padding-block: 2rem;
  font-size: 2rem;
  color: var(--body);
}
.gnav li > a:hover {
  opacity: .5;
}
.js_fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

/* breadcrumb */
.breadcrumb ul {
	display: block;
	max-width: 768px;
	margin: 0 auto;
	padding: 1.5rem 0;
}
.breadcrumb ul li {
	display: inline-block;
	margin-left: 0.5rem;
}
.breadcrumb ul li:first-child {
	margin-left: 0;
}
.breadcrumb ul li a span {
	font-weight: bold;
}

/*======================================================================
  footer
======================================================================*/
.footer {
  position: relative;
  padding-bottom: 96px;
}
.footer::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 64px;
  bottom: 0;
  left: 0;
  background: url(./images/footer_bottom.svg)center no-repeat;
}
@media screen and (min-width: 768px) {
	.footer {
		overflow:hidden;
	}
    .footer::after {
        transform:scale(2.5);
		bottom:-42px;
    }
}
.pagetop {
  display: flex;
  justify-content: flex-end;
}
.pagetop a {
  font-weight: bold;
  color: var(--white);
  background: var(--primary);
  border-radius: 4px;
  padding: 8px;
  display: flex; 
  align-items: center; 
  gap: 12px; 
}
.pagetop a::after {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--white) url(./images/arrow-up.svg) no-repeat center center;
  background-size: 8px 8px;
  border-radius: 50%;
}
.fnav {
  padding-block: 32px;
}
.fnav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.fnav a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: bold;
}
.fnav a::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0; 
  background: var(--primary) url(./images/arrow-triangle.svg) no-repeat center center;
  background-size: 10px 9px;
  border-radius: 50%;
}
.footer p {
  color: var(--bodyVariant);
  text-align: right;
}

/*======================================================================
  recommend
======================================================================*/
.recommend {
  padding: 48px 0 112px;
  background: var(--baseVariant);
  position: relative;
}
.recommend::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 64px;
  bottom: 0;
  left: 0;
  background: url(./images/recommend_bottom.svg)center no-repeat;
}
@media screen and (min-width: 768px) {
	.recommend {
		overflow:hidden;
	}
    .recommend::after {
        transform:scale(2.5);
		bottom:-48px;
    }
}
.recommend .boxWrap {
  gap: 48px;
}
.recommend_new,
.recommend_article {
  gap: 24px;
}
.recommend ul {
  gap: 24px;
}
.recommend li {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  gap: 8px;
}
.recommend li h3 a {
  display: inline-block;
}
.more a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--body);
  position: relative;
  width: fit-content;
  margin-left: auto; 
}
.more span {
  border-bottom: 1px solid var(--body);
  padding-bottom: 4px;
}
.more a:hover span {
  opacity: .5;
}
.more a::after {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  background: var(--primary) url(./images/arrow-right.svg) no-repeat center center;
  background-size: 12px 12px;
  border-radius: 50%;
  border-bottom: none;
  padding-bottom: 0;
}


/*======================================================================
  top_link
======================================================================*/
.top_link {
  padding-block: 48px;
  /* position: relative; */
}
.top_link .boxWrap {
  background: var(--base);
  padding: 48px;
  border-radius: 16px;

}
.top_link .linkBox {
  display: flex;
  justify-content:space-around ;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 24px;
}
.top_link p{
  padding:20px;
}



/*======================================================================
  index
======================================================================*/
.index {
  background: var(--base);
}

/* index_head */
.index_head {
  border-radius: 32px;
  border: 1px solid var(--border);
  background: var(--white);
  margin-inline: 24px;
  padding: 32px;
  gap: 16px;
  text-align: center;
}
.index_head h2 {
  background: none;
  padding-left: 0;
}
.index_head p {
  text-align: left;
}

/* index_new */
.index_new {
  padding-block: 48px;
  gap: 24px;
}
.index_new ul {
  gap: 12px;
}
.index_new li {
  border-bottom: 2px dotted var(--border);
  gap: 8px;
  padding-bottom: 12px;
}
.index_new li a {
  width: fit-content;
}
.index_new time {
  display: block;
  color: var(--bodyVariant);
  font-weight: bold;
}

@media screen and (max-width: 768px) {
    .index_head {
        margin-inline: 0;
    }
}

/*======================================================================
  category
===================================================================*/
.category {
  background: var(--base);
  padding-bottom: 48px;
}
.category .boxWrap {
  gap: 24px;
}

/* category_head */
.category_head {
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px dotted var(--border);
}

/* category_post */
.category_post {
  background: var(--color-primary);
}
.category_post ul {
  gap: 24px;
}
.category_post li {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  gap: 8px;
}
.category_post li h3 a {
  display: inline-block;
  padding-left: 24px;
  background: url(./images/icon_one.svg) no-repeat left top 5px;
}

/*======================================================================
  detail
======================================================================*/
.detail {
  background: var(--base);
  padding-bottom: 48px;
  
}
.detail .boxWrap {
  gap: 24px;
}


/* detail_head */
.detail_head {
  position: relative;
}
.detail_head::before {
  position: absolute;
  content: "";
  width: 513px;
  max-width: 100%;
  height: 549px;
  top: 42px;
  left: 8px;
  background: url(./images/detail_background.svg)center/contain no-repeat;
}
.detail_head h2 {
  position: relative;
  z-index: 1; 
}
.detail_head .trimming {
  display: block;
  max-width: 500px;
  height: 281px;
  border-radius: 32px;
  margin: 16px auto 0;
}
.detail_head .trimming img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* detail_post */
.detail_post {
  z-index: 1;
}
.detail_post h3 {
  display: inline-block;
  padding-left: 24px;
  background: url(./images/icon_one.svg) no-repeat left top 5px;
  margin-bottom: 16px;
}
.detail_post h3:not(:first-child) {
  margin-top: 24px;
}
.link_item {
  margin: 1rem 0;
}
.detail_post a {
  font-weight: bold;
  color: var(--link);
}


