@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,ol {
    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;
}

/*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: 10px;
}
:root {
    --space_xl: 48px;
    --space_lg: 40px;
    --space_md: 24px;
    --space_sm: 16px;
    --space_mi: 8px;
    --base: #FDF8EE;
    --light_base: #FEFBF5;
    --recommend_base: #E5EEE7;
    --primary: #007E43;
    --text: #413126;
    --fontsize_lg: 2.4rem;
    --fontsize_md: 2.0rem;
    --fontsize_nm: 1.6rem;
}

body {
    position: relative;
    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: var(--fontsize_nm);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
    background: var(--base);
}
p { color: var(--text);}
a { text-decoration: none; color: var(--primary); cursor: pointer; transition: .2s;}
a:hover {opacity: .5;}

* {box-sizing: border-box;}

.fit {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.fit .img {
    display: block;
    width: 100%;
    overflow: hidden;
}
.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
ul,ol,dl {
    list-style: none;
}

/*======================================================================
  FORMAT
======================================================================*/
/* block class */
.box_wrap {
    max-width: 768px;
    margin: 0 auto;
    padding: var(--space_xl) var(--space_md);
}


/*======================================================================
  HEADER
======================================================================*/

/* header */
.box_wrap.header {
    padding: 32px;
    background: var(--light_base);
}
.mv {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 448px;
    padding: 16px; 
    background: var(--light_base) url(images/mv.webp) no-repeat center center;
    
}
.logo {
    display: block;
    margin-top: 26px;
    text-align: center;
}
.logo .img {
    display: inline-block;
    max-width: 320px;
}
.mv h1 {
    max-width: 308px;
    margin: 0 auto;
    text-align: center;
}
.new_post {
    position: absolute;
    bottom: var(--space_sm);
    right: var(--space_sm);
    max-width: 288px;
    font-weight: bold;
    text-align: right;
}
.new_post a {
    display: inline-block;
    margin-top: 4px;
    color: var(--primary);
}

/* nav */
.el_hamburger {
    position: relative;
    width: 42px;
    height: 42px;
    padding: 19px 12px;
    border-radius: 2px;
    background: var(--primary);
    z-index: 10000;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}
.el_hamburger > span {
    display: block;
    height: 1px;
    font-size: 0;
    background: var(--light_base);
    transition: all 0.2s ease-in-out;
}
.el_hamburger > span:not(:last-of-type){
    margin: 0 auto 2px;/*border間隔*/
}
.el_hamburger:hover {
    opacity: .5;
}
.el_hamburger:hover span {
    background: var(--light_base);
}
.js_hamburgerOpen .el_hamburger > span.top {
    transform: translateY(2px) rotate(-45deg);
    margin: 0;
}
.js_hamburgerOpen .el_hamburger > span.middle {
    opacity: 0;
}
.js_hamburgerOpen .el_hamburger > span.bottom {
    transform: translateY(1px) rotate(45deg);
    margin: 0;
}
/*ナビゲーション*/
.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: 0px;
    padding-top: 0px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.gnav {
    padding: 80px 0 0 0;
    text-align: center;
}
.gnav li {
    padding: 0 var(--space_md) var(--space_md);
    margin-bottom: var(--space_md);
    border-bottom: #aaa 1px solid;
}
.gnav li > a {
    display: block;
    text-decoration: none;
}
.js_fixed {
    position: fixed;
    width: 100%;
    height: 100%;
}

/* breadcrumb */
.breadcrumb {
    max-width: 768px;
    margin: 0 auto;
    padding: 0 var(--space_md);
    box-sizing: border-box;
}
.breadcrumb ul {
	display: block;
	margin: 0 auto;
}
.breadcrumb ul li {
	display: inline-block;
	margin-left: 10px;
}
.breadcrumb ul li:first-child {
	margin-left: 0;
}
.breadcrumb ul li a {
    font-weight: bold;
}

@media screen and (max-width: 540px) {
    .mv {
        gap: var(--space_sm);
        background: var(--light_base) url(images/mv.webp) no-repeat center left -120px;
    }
    .logo {
        margin-top: 0;
    }
    .mv h1 {
        text-shadow: 2px 2px var(--light_base);
    }
    .new_post p {
        padding: .5em .8em;
        background: rgba(254, 251, 245, .6);
        box-shadow: 0 0 10px rgba(254,251,245,.8);
    }
    .new_post {
        max-width: calc(100% - 32px);
    }
    .new_post a {
        text-shadow: 2px 2px 4px var(--light_base), -2px -2px 4px var(--light_base);
    }
}
/*======================================================================
  FOOTER
======================================================================*/
.gfoot {
    color: var(--light_base);
    background: var(--primary);
}
.gfoot .box_wrap {
    display: flex;
    flex-direction: column;
    gap: var(--space_md);
}
.gfoot .page_top {
    text-align: center;
}
.gfoot .page_top a {
    padding-left: var(--space_md);
    color: var(--base);
    font-weight: bold;
    background: url(images/top.webp) no-repeat center left;
}

/*======================================================================
  RECOMMEND
======================================================================*/
.recommend {
    background: var(--recommend_base);
}
.recommend_title {
    margin-bottom: var(--space_md);
    color: var(--primary);
    font-size: var(--fontsize_lg);
}
.recommend_post {
    display: flex;
    flex-direction: column;
    gap: var(--space_sm);
    counter-reset: step;
}
.recommend_post .fit {
    margin-bottom: var(--space_mi);
}
.recommend_post .img {
    max-width: 720px;
    aspect-ratio: 720 / 230;
}
.recommend_post h3 {
    position: relative;
    padding: 0  0 8px 32px;
    border-bottom: 1px dashed var(--primary);
}
.recommend_post li {
  counter-increment: step;
}
.recommend_post  h3::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: calc(50% - 4px);
  transform: translateY(-50%);
  font-weight: 700;
  font-size: var(--fontsize_md);
}
.recommend_post h3 a {
    display: inline-block;
}
.recommend_post h3 + p {
    margin-top: var(--space_mi);
}

/*======================================================================
  INDEX
======================================================================*/
.index .box_wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.index_head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 154px;
    padding: 12px var(--space_md) 12px 168px;
    background: var(--light_base) url(images/index.webp) no-repeat center left 24px;
}
.index_head h2 {
    font-size: var(--fontsize_md);
}
.index_head span {
    display: block;
    font-weight: bold;
    font-size: var(--fontsize_nm);
}

.index_new h3 {
    margin-bottom: var(--space_md);
    color: var(--primary);
    font-size: var(--fontsize_lg);
}
.index_new > ul {
    display: flex;
    gap: var(--space_md);
    flex-wrap: wrap;
}
.index_new > ul > li {
    display: flex;
    flex-direction: column;
    gap: var(--space_mi);
    width: calc((100% - var(--space_md)) / 2);
}
.index_new .img {
    max-width: 348px;
    aspect-ratio: 348 / 232;
}
.index_new time {
    font-weight: bold;
}
.index_new p a {
    display: inline-block;
    font-weight: bold;
    font-size: var(--fontsize_md);
}
.index_new li ul {
    padding-top: 10px;
    background: url(images/line.webp) no-repeat left top;
}
.index_new li ul li {
    padding-left: 16px;
    background: url(images/list_icon.svg) no-repeat left top 0.5rem;
}
.index_new li ul a {
    display: inline-block;
    color: var(--text);
}
@media screen and (max-width: 540px) {
    .index_head {
        padding: 12px var(--space_md) 12px 120px;
        background: var(--light_base) url(images/index.webp) no-repeat center left 24px / 80px;
    }
    .index_new > ul > li {
        width: 100%;
    }
    .index_new .img {
        max-width: 100%;
    }
}
/*======================================================================
  CATEGORY
======================================================================*/
.category .box_wrap {
    display: flex;
    flex-direction: column;
    gap: var(--space_md);
}
.cat_head {
	padding-bottom: var(--space_md);
	border-bottom: 1px dashed var(--primary);
}
.cat_title {
    margin-bottom: var(--space_sm);
    color: var(--primary);
    font-size: var(--fontsize_lg);
}
.cat_post ul {
    display: flex;
    flex-direction: column;
    gap: var(--space_md);
}
.cat_post li {
    display: flex;
    flex-direction: column;
    gap: var(--space_sm);
}
.cat_post h3 a {
    display: inline-block;
    font-size: var(--fontsize_md);
}
.cat_post .img {
    max-width: 720px;
    aspect-ratio: 720 / 230;
}
.cat_post .more {
    text-align: right;
}
.cat_post .more a {
    display: inline-block;
    padding-right: var(--space_md);
    color: var(--text);
    background: url(images/more.webp) no-repeat right center;
}
.img.cat_thumb {
    max-width: 720px;
    height: 283px;
    max-height: 50vw;
    padding: 32px;
    aspect-ratio: 656 / 219;
    overflow: hidden;
    background: var(--light_base);
}

/*======================================================================
  DETAIL
======================================================================*/
.det_head {
    display: flex;
    flex-direction: column;
    gap: var(--space_sm);
}
.det_title {
    color: var(--primary);
    font-size: var(--fontsize_lg);
}
.det_head time {
    display: block;
    text-align: right;
}
.det_head .img {
    max-width: 720px;
    aspect-ratio: 720 / 230;
    border-radius: 8px;
    overflow: hidden;
}
.detail_post {
    margin-top: var(--space_md);
}
.detail_post h3 {
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--primary);
    color: var(--primary);
    font-size: var(--fontsize_md);
}
.detail_post h3:not(:first-of-type) {
    margin-top: 32px;
}
.detail_post p {
    margin-top: var(--space_sm);
}
.detail_post a {
    color: #CC0C7F;
    font-weight: bold;
}

/* link_item */
.link_item {
    display: inline-block;
    max-width: 100%;
    margin-top: 1rem;
    color: #CC0C7F;
    font-weight: bold;
}
.link_item img {
    max-width: 100%;
    height: auto;
}
.link_item + p {
    margin-top: 1rem;
}