@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,
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 {
    --text: #033824;
    --green: #00AE68;
    --dark-green: #056740;
    --white: #FFFFFF;
    --footer-gray: #F1F4F3;
    --border: #CCD9D4;
    --header-gray: #F8F8F8;
    --light-gray: #F1F4F3;
    --link: #ff773e;
}
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(--text);
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}
p { 
    line-height: 1.5; 
}
a { 
    text-decoration: none; 
    color: var(--text);
}
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;
}
@media screen and (max-width: 768px) {
    .boxWrap{
        padding: 0 16px; 
    }
}

/* 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;
}

main {
    max-width: 768px;
    margin: 0 auto;
}
h1 {
    font-size: 1.8rem;
    max-width: 90%;
}
h2 {
    font-size: 3.2rem;
    font-weight: bold;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
h3 {
    font-size: 2rem;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    h2 {
        font-size: 2.8rem; 
    }
}

.subtitle {
    font-size: 16px;
    display: block;
    margin-bottom: 4px;
}

/* link */
.link {
    padding-bottom: 4rem;
}
.link .boxWrap {
    gap: 32px;
} 
.link .link_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 6.4rem;
}

.link .link_item:last-child {
    background: #343a40;
    padding: 4px 0;
}

@media screen and (max-width: 768px) {
    .link .link_list {
        gap: 4rem; 
    }
}


/*======================================================================
  HEADER
======================================================================*/
/* mv */
.boxwrap,
.breadcrumb ul,
.trimming,
.recommend li.trimming {
    width: 100%;
}
.header {
    background: var(--header-gray);
}
.header-inner{
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 40px;
}
.header-inner p {
    font-weight: bold;
}
/* mv */
.mv{
    box-sizing: border-box;
    max-width: 768px;
    background-position: left 24px bottom 24px;
    background-repeat: no-repeat;
    margin: 0 auto;
    padding: 24px;
}

@media screen and (max-width: 768px) {
    .mv{
        background-position: left bottom;
    }
}


/*ハンバーガーボタン*/
.el_hamburger {
    position: fixed;
    top: 24px;
    right: calc((50% + 2.4rem) - 768px / 2);
    width: 40px;
    z-index: 10000;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.el_hamburger:hover {
    opacity: 1;
}
.el_hamburger span {
    display: block;
    width: 40px;
    height: 3px;
    /*border太さ*/
    border-radius: 1px;
    font-size: 0;
    background-color: var(--text);
    /*border色*/
    transition: transform 0.2s ease-in-out;
}
.el_hamburger:hover span {
    background-color: var(--green);

}
.js_hamburgerOpen .el_hamburger > span.top {
    transform: translateY(6px) rotate(-405deg);
}
.js_hamburgerOpen .el_hamburger > span.bottom {
    transform: translateY(-6px) rotate(405deg);
}
@media screen and (max-width: 768px) {
    .el_hamburger {
        right: 16px;
    }
}

/*ナビゲーション*/
.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: var(--header-gray);
    z-index: 0;
    margin-top: 0;
    padding-top: 0;
    overflow: auto;
}
.gnav {
    padding-top: 80px;
}
.gnav li {
    border-bottom: var(--text) 1px solid;
}
.gnav li > a {
    display: block;
    color: var(--text);
    text-decoration: none;
    padding: 1.5rem 1.5rem 1.5rem 3rem;
    text-align: center;
}
.gnav li > a:hover {
    color: var(--green);
    opacity: 1;
}
.js_fixed {
    position: fixed;
    width: 100%;
    height: 100%;
}

/* breadcrumb */
.breadcrumb ul {
	display: block;
	max-width: 768px;
	margin: 0 auto;
	padding: 1.5rem;
    box-sizing: border-box;
    text-align: left;
}
.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 {
    background: var(--footer-gray);
    padding: 24px 0;
}
.footer .flexBox {
    gap: 32px;
}
.footer small {
    display: block;
    text-align: center;
    font-weight: bold;
    margin-top: 40px;
}
.footer .logo {
    display: flex;
    justify-content: center;
}

/* fnav */
.fnav ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.fnav ul li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.fnav ul li a {
    font-weight: bold;
}
.fnav ul li a:hover {
    opacity: 1;
    text-decoration: underline;
    color: var(--green);
}

/* pagetop */
.pagetop {
    display: flex;
    justify-content: flex-end;
}
.pagetop a {
    display: flex;
    width: 38px;
    height: 38px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--dark-green);
}
.pagetop a:hover {
    background: var(--green);
    opacity: 1;
}
.pagetop a::after {
    display: block;
    content: '';
    width: 8px;
    height: 5px;
    background: url(./images/arrow-top.svg) no-repeat center;
}

/*======================================================================
  RECOMMEND
======================================================================*/
.recommend {
    gap: 32px;
    padding-bottom: 40px;
}
.rec-catpost {
    gap: 24px;
}
.rec-catpost li {
    gap: 16px;
}
.rec-catpost li > a {
    position: relative;
    height: 200px;
    border-radius: 8px;
}
.recpost-catttl {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    padding: 16px;
    width: calc((560 / 720) * 100%);
    background: var(--green);
    font-weight: bold;
    font-size: 1.8rem;
    color: var(--white);
    pointer-events: none;
    z-index: 10;
    box-sizing: border-box;
    border-radius: 8px 0px;
}
.rec-catpost h3 a {
    display: inline-block;
    color: var(--text);
    font-weight: bold;
    font-size: 2rem;
}
.rec-catpost h3 a:hover {
    text-decoration: underline;
    opacity: 1;
    color: var(--green);
}

/*======================================================================
INDEX
======================================================================*/
.index {
    padding: 40px 24px;
}

/* pickUp */
.pickUp {
    gap: 32px;
}
.pickUp .trimming {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-right: var(--margin-sm);
    aspect-ratio: 720 / 150;
    border-radius: 8px;
    padding: 0 10px;
    box-sizing: border-box;
}
.pickUp ul {
    gap: 24px;
}
.pickUp h3 {
    max-width: 600px;
    position: relative;
    padding: 8px;
    text-align: left;
    background: var(--dark-green);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    z-index: 1;
    color: var(--white);
    box-sizing: border-box;
}

/* about */
.about {
    padding: 40px 0;
}
.about .flexBox{
    gap: 32px;
}
.about h2 {
    padding-bottom: 4px;
}

/* categoryList */
.categoryList {
    gap: 32px;
}
.categoryList ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
}
.categoryList li {
    gap: 16px;
}
.categoryList .trimming {
    aspect-ratio: 348 / 200;
    border-radius: 8px;
    position: relative;
    padding: 16px;
    box-sizing: border-box;
}
.categoryList .trimming:hover {
    opacity: 1;
}
.categoryList .trimming::before {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 1;
    display: block;
    content: '';
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--white);
}
.categoryList .trimming:hover::before {
    background-color: var(--green);
}
.categoryList .trimming::after {
    position: absolute;
    bottom: 2px;
    right: 9px;
    z-index: 1;
    display: block;
    content: '';
    width: 20px;
    height: 6px;
    background: url(./images/arrow-right_green.svg) no-repeat;
    padding: 15px 8px;
}
.categoryList .trimming:hover::after {
    background: url(./images/arrow-right_white.svg) no-repeat;
}
.categoryList li h3 a {
    display: inline-block;
}
.categoryList li h3 a:hover {
    opacity: 1;
    color: var(--green);
    text-decoration: underline;
}
@media screen and (max-width: 768px) {
    .categoryList .trimming {
        aspect-ratio: 348 / 150;
    }
    .categoryList ul {
        grid-template-columns: repeat(1, 1fr);
    }
}


/*======================================================================
CATEGORY
======================================================================*/
.category  {
    padding: 40px 0;
}
.category .boxWrap {
    gap: 32px;
}

/* category_top */
.category .category_top  {
    gap: 24px;
}
.category .category_top h2 {
    padding-bottom: 4px;
}
.category .category_top-bottom {
    align-items: center;
    gap: 32px;
}
.category .category_top .trimming{
    border-radius: 8px;
    aspect-ratio: 720 / 200;
}

/* category_post */
.category .category_post-list {
    background: var(--light-gray);
    padding: 32px 24px;
    gap: 32px;
    border-radius: 8px;
}
.category .category_post-item {
    gap: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.category .category_post-item h3 a{
    display: inline-block;
}
.category .category_post-item h3 a:hover {
    opacity: 1;
    color: var(--green);
    text-decoration: underline;
}

/*======================================================================
  DETAIL
======================================================================*/
.detail {
    padding: 40px 24px;
}
.detail .boxWrap {
    box-sizing: border-box;
}

/* detail_top */
.detail_top {
    gap: 24px;
}
.detail_top .trimming {
    border-radius: 8px;
    aspect-ratio: 720 / 200;
}
.detail_top h2 {
    padding-bottom: 4px;
}
.detail_top h2::first-letter {
    font-size: 4.8rem;
} 

/* detail_post */
.detail .detail_post {
    padding-top: 32px;
}
.detail .detail_post h3 {
    padding-bottom: 24px;
}
.detail .detail_post h3::first-letter {
    font-size: 4rem;
}
.detail .detail_post h3:not(:first-of-type) {
    margin-top: 24px;
    border-top: 1px solid var(--border);
    padding-top: 32px;
}
.detail .detail_post ol {
	padding-left: 24px
}
/* メアド設置 */
.detail_post a{
    color: var(--link);
    font-weight: bold;
}

/* リンク設置 */
.link_item {
    display: inline-flex;
    flex-direction: column;
    gap: 1em;
    margin: 1em 0;
}
.link_item a {
    font-weight: bold;
    color: var(--link);
}

/* detailCategory*/
.detailCategory {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
	margin-top: 24px;
}
.detailCategory span {
    font-weight: bold;
    padding: 4px 8px;
    border-right: 1px solid var(--border);
}
.detailCategory ul {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.detailCategory ul li {
    background: var(--dark-green);
    border-radius: 24px;
}
.detailCategory ul li a {
    padding: 4px 32px;
    font-weight: bold;
    display: inline-block;
    color: var(--white);
}
.detailCategory ul li a:hover {
    opacity: 1;
}
.detailCategory ul li:hover {
    background: var(--green);
}
@media screen and (max-width: 460px) {
	.detailCategory {
		flex-direction: column;
	}
	.detailCategory span {
		border: none;
	}
}
@media screen and (max-width: 768px) {
    .detail_top h2::first-letter {
        font-size: 4.4rem;
    } 
    .detail .detail_post h3::first-letter {
        font-size: 3.6rem;
    }
}
