@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 {
    --blue: #66BAC5;
    --border: #46443C;
    --text: #1B140B;
    --creem: #FEFCF1;
    --textyellow: #F7C01C;
    --white: #FFFFFF;
    --green: #169A5A;
    --beige: #E9E2C4;
    --deepgreen: #156B4C;
    --orange: #EF8222;
    --brown: #CCBF9B;
    --link: #a430f1;
}
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;
}

.index_post h2,
.recommend h2,
.link h2 {
    font-size: 2.4rem;
    border: 1px solid var(--border);
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 6px 30px;
    color: var(--white);
    text-shadow:1px 1px 0px var(--border),
                -1px 1px 0px var(--border),
                1px -1px 0px var(--border),
                -1px -1px 0px var(--border);
}
h3 {
    font-size: 2rem;
}

/* link */
.link {
    padding-bottom: 36px;
}
.link_inner {
    gap: 36px;
    background: var(--white);
    border-radius: 30px;
    border: 1px solid var(--border);
    padding: 24px;
    margin-top: 36px;
} 
.link .link_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem 6rem;
    margin-top: 2.4rem;
}


/*======================================================================
  HEADER
======================================================================*/
/* mv */
.header {
    background: url(./images/bg.png);
    padding: 36px 0;
    box-sizing: border-box;
}
h1 {
    font-size: 1.8rem;
    width: auto;
    z-index: 1;
    position: relative;
}
.h1_area {
    position: relative;
    background: var(--brown);
    border-radius: 999px;
    padding: 16px 27px;
    border: 1px solid var(--border);
    max-width: 630px;
    z-index: 1;
    height: auto;
    border-radius: 999px;
    box-sizing: border-box;
}
.h1_area::before {
    position: absolute;
    content: "";
    display: block;
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    box-sizing: border-box;
}

/* mv */
.mv{
    max-width: 768px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    margin: 24px auto 0;
}
.mv_inner {
	position: relative;
    max-width: 100%;
}
.mv_inner p {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white);
}
.mv .logo {
	display: flex;
    flex-wrap: wrap;
	position: absolute;
	top: 30px;
	left: 30px;
	max-width: 489px;
	gap: 12px;
}

@media screen and (max-width: 768px) {
    .header {
        padding-top: 48px;
    }
    .mv {
        margin-top: 0;
    }
    .mv_inner {
        padding: 16px;
    }
    .mv_inner p {
        text-shadow:1px 1px 0px var(--border),
                    -1px 1px 0px var(--border),
                    1px -1px 0px var(--border),
                    -1px -1px 0px var(--border);
    }
	.mv .logo {
        position: relative;
		top: 0;
		left: 0;
		margin-bottom: 12px;
	}
}


/*ハンバーガーボタン*/
.el_hamburger {
    position: fixed;
    top: 63px;
    right: calc((50% + 2.4rem) - 768px / 2);
    width: 60px;
    height: 28px;
    z-index: 10000;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.el_hamburger span {
    display: block;
    width: 80%;
    height: 4px;
    font-size: 0;
    border: .5px solid var(--border);
    position: absolute;
    width: 80%;
    transition: transform 0.2s ease-in-out;
}

.el_hamburger span.top {
    background: var(--green);
    top: 0;
    left: 0;
}
.el_hamburger span.middle {
    background: var(--deepgreen);
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
.el_hamburger span.bottom {
    background: var(--green);
    bottom: 0;
    left: 0;
}
.el_hamburger:hover {
    opacity: 1;
}
.el_hamburger:hover span {
    background-color: var(--white);
}
.js_hamburgerOpen .el_hamburger > span.top {
    transform: translateY(11px) rotate(-390deg);
}
.js_hamburgerOpen .el_hamburger > span.middle {
    opacity: 0;
}
.js_hamburgerOpen .el_hamburger > span.bottom {
    transform: translateY(-11px) rotate(390deg);
}

@media screen and (max-width: 768px) {
    .el_hamburger {
        top: 16px;
        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: url(./images/bg.png);
    z-index: 0;
    margin-top: 0;
    padding-top: 0;
    overflow: auto;
}
.gnav {
    padding-top: 80px;
    max-width: 768px;
    margin: 0 auto;
}
.gnav li {
    border-bottom: var(--text) 1px solid;
}
.gnav li > a {
    display: block;
    color: var(--text);
    text-decoration: none;
    padding: 1.6rem;
    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 0;
    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: url(./images/bg.png);
    padding: 36px 0;
}
.footer_inner {
    background: var(--white);
    border-radius: 30px;
    padding: 24px;
}
.footer_top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.footer small {
    display: block;
    text-align: center;
    padding-top: 24px;
}

/* fnav */
.fnav ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
}
.fnav ul li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.fnav ul li a {
    position: relative;
    font-weight: bold;
    font-size: 1.8rem;
    padding-left: 19px;
}
.fnav ul li a::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 11px;
    height: 11px;
    background: url(images/arrow_right-wh.svg) no-repeat center center;
}
.fnav ul li a:hover {
    opacity: 1;
    color: var(--green);
}
.fnav ul li a:hover::before {
    background: url(images/arrow_right-gr.svg) no-repeat center center;

}

/* pagetop */
.pagetop {
    display: flex;
    width: 35px;
    height: 35px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    font-size: 0;
}
.pagetop:hover {
    background: var(--green);
    opacity: 1;
    border: 1px solid var(--green);
}
.pagetop::after {
    display: block;
    content: '';
    width: 14px;
    height: 14px;
    background: url(./images/arrow_top-gr.svg) no-repeat center / contain;
}
.pagetop:hover:after {
    background: url(./images/arrow_top-wh.svg) no-repeat center / contain;
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 24px 0;
    }
    .footer_inner {
        padding: 24px 16px;
    }
    .footer_top {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

/*======================================================================
  RECOMMEND
======================================================================*/
.recommend {
    background: url(images/recommend_bg.png)no-repeat center top;
    padding-top: 356px;
}
.recommend > div {
    background: var(--deepgreen);
    padding-bottom: 36px;
    margin-top: -1px;
}
.recommend_inner {
    padding: 24px;
    background: url(images/index_bg.png);
    background-repeat: repeat;
    border-radius: 30px;
    border: 1px solid var(--border);
}
.recommend_inner ul {
    margin-top: 24px;
    gap: 36px;
}
.recommend_inner li {
    gap: 16px;
}
.cat_link {
    border-radius: 999px;
    border: 1px solid var(--border);
    position: relative;
    box-sizing: border-box;
    width: fit-content;
    background: var(--white);
    z-index: 1;
    box-sizing: border-box;
}
.cat_link::before {
    background: var(--orange);
    border-radius: 999px;
    position: absolute;
    display: block;
    content: "";
    width: calc(100% + 8px);
    height: 100%;
    left: -4px;
    top: 0;
    z-index: -1;
    box-sizing: border-box;
}
.cat_link a {
    display: inline-block;
    border-radius: 999px;
    padding: 8px 30px;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    box-sizing: border-box;
    background: var(--white);
    font-weight: bold;
}
.cat_link a:hover {
    opacity: 1;
    background: var(--orange);
    color: var(--white);
    border-left: 1px solid var(--orange);
    border-right: 1px solid var(--orange);
}
.cat_link:hover {
    border-color: var(--orange);
}
.recommend_inner h3 a {
    color: var(--green);
    display: inline-block;
}

@media screen and (max-width: 768px) {
    .recommend_inner {
        padding: 24px 16px;
    }
}



/*======================================================================
INDEX
======================================================================*/
main {
    background: var(--creem);
}
.index {
    padding: 36px 24px;
    gap: 36px;
}

/* index_head*/
.index_head h2 {
    text-align: center;
}
.index_text {
    margin-top: 16px;
}
.index_img {
    border-radius: 30px;
    border: 1px solid var(--border);
    margin-top: 36px;
    position: relative;
    background: var(--textyellow);
    padding: 0 7px 0 9px;
    box-sizing: border-box;
}
.index_img::before {
    position: absolute;
    display: block;
    content: "";
    width: calc(100% + 8px);
    height: 100%;
    left: -4px;
    top: 0;
    z-index: -1;
    box-sizing: border-box;
}
.index_img img {
    border-radius: 30px;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    box-sizing: border-box;
}

/* index_post */
.index_post {
    background: url(./images/index_bg.png);
    padding: 24px 23px;
    gap: 24px;
    border-radius: 30px;
    border: 1px solid var(--border);
}
.index_post ul {
    gap: 36px;
    background: #fff;
}
.index_post-title a{
    display: inline-block;
	padding-left:40px;
    background: url(./images/index_icon.svg) no-repeat left top;
    background-size: 30px 30px;
}
.index_post-title a:hover{
	opacity: 1;
    color: var(--green);
}
.index_post-content {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 16px;
}
.index_post-content .trimming {
    width: 160px;
    height: 160px;
    border-radius: 30px;
    border: 1px solid var(--border);
    position: relative;
    padding: 0 7px 0 9px;
    box-sizing: border-box;
    display: block;
    background: var(--blue);

}
.index_post-content .trimming::after {
    position: absolute;
    display: block;
    content: "";
    width: calc(100% - 16px);
    height: 100%;
    left: 8px;
    top: 0;
    background: var(--white);
    z-index: 1;
    border-radius: 30px;
    box-sizing: border-box;
}
.index_post-content .trimming img {
    width: calc(100% - 16px);
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    z-index: 2;
}
.index_post-content .trimming:hover {
    opacity: 1;
} 
.index_post-content .trimming:hover img {
    opacity: 0.5;
}
.index_post-content p {
    max-width: 496px;
}
.more a{
    position: relative;
    padding: 11px 98px 11px 30px;
    align-items: center;
    align-items: flex-end;
    border-radius: 999px;
    background: var(--white);
    font-weight: bold;
    float: right;
    border-right: 3px solid var(--deepgreen);
    border-left: 3px solid var(--deepgreen);
    border-top: 1px solid var(--deepgreen);
    border-bottom: 1px solid var(--deepgreen);
    margin-top: 16px;
}
.more a:hover{
    opacity: 1;
    background: var(--deepgreen);
    color: var(--white);
}
.more a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background-image: url(images/arrow_right.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

@media screen and (max-width: 800px) {
    .index {
        padding: 36px 16px;
    }
    .index_post {
        padding: 24px 16px;
    }
    .index_post-content {
        flex-direction: column;
    }
    .index_post-content .trimming {
        width: 100%;
    }
    .index_post-content p {
        max-width: 100%;
    }
} 


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

/* category_top */
.category_top  {
    gap: 16px;
}
.category_top h2 {
    font-size: 3.2rem;
    border: 1px solid var(--border);
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 8px;
    color: var(--white);
    text-shadow:1px 1px 0px var(--border),
                -1px 1px 0px var(--border),
                1px -1px 0px var(--border),
                -1px -1px 0px var(--border);
}

/* category_post */
.category .category_post-list {
    gap: 36px;
}
.category .category_post-item {
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    background: var(--white);
}
.category .category_post-item h3 a{
    display: inline-block;
    padding-left: 41px;
    background: url(./images/category_icon.svg) no-repeat left top;
    background-size: 31px 30px;
}
.category .category_post-item h3 a:hover {
    opacity: 1;
    color: var(--green);
}
.category .category_post-item .trimming {
    height: 200px;
    border-radius: 5px;
}
.category .category_post-item .more a {
    margin-top: 0;
}

/*======================================================================
  DETAIL
======================================================================*/
/* detail */
.detail {
    padding: 36px 0;
}
.detail .boxWrap {
    padding: 0 24px;
}
.detail_inner {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 24px;
    margin-top: 36px;
    gap: 24px;
}
.detail_inner .flexBox {
    gap: 24px;
}

/* detail_head */
.detail_head {
    gap: 16px;
}
.detail_head h2 {
    font-size: 3.2rem;
    color: var(--blue);
    text-shadow:1px 1px 0px var(--border),
                -1px 1px 0px var(--border),
                1px -1px 0px var(--border),
                -1px -1px 0px var(--border);
}
.detail_inner .trimming {
    width: 672px;
    height: 200px;
    border-radius: 30px;
    border: 1px solid var(--border);
    background: var(--blue);
    padding: 0 8px;
    box-sizing: border-box;
    display: block;
}
.detail_inner .trimming img {
    width: calc(100% - 16px);
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

/* detail_post */
.detail_post {
    margin-top: 24px;
}
.detail_post h3 {
    padding-left: 50px;
    background: url(./images/detail_icon.svg) no-repeat left top;
    background-size: 40px 30px;
    margin-bottom: 16px;
} 
.detail_post h3:not(:first-of-type) {
    border-top: 1px solid var(--border);
    margin-top: 24px;
    padding-top: 24px;
    background: url(./images/detail_icon.svg) no-repeat left top 24px;
}


/* メアド設置 */
.detail_post a {
    color: var(--link);
    font-weight: bold;
}

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

@media screen and (max-width: 768px) {
    .detail .boxWrap {
    padding: 0 16px;
    }
    .detail_inner {
        padding: 24px 16px;
    }
    .detail_inner .trimming {
        width: 100%;
    }
}
