@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: var(--color-text-secondary);
    color: #000;
    text-decoration: none;
}
mark {
    background-color: var(--color-text-secondary);
    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
======================================================================*/
:root {
    /* --color-text */
    --color-text-primary: #282b2c;
    --color-text-secondary: #fff;
    --color-text-tertiary: #004f3c;
    --color-text-quaternary: #b0974b;
    --color-text-quinary: #d6be98;
    /* --color-bg */
    --color-bg-main: #f4f2ee;
    --color-bg-recommend: #eee7da;
    --color-bg-footer: #004f3c;
}

html,body {
    height: 100%;
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}
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;
    color: var(--color-text-primary);
    font-size: 1.6rem;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    background: var(--color-bg-main);
}
p { line-height: 1.5; }
a {
    color: var(--color-text-primary);
    text-decoration: none;
}
a:active{
    opacity: 0.5;
}
@media (hover: hover) {
    a:hover {
        opacity: 0.5;
    }
}

/*======================================================================
  FORMAT
======================================================================*/
/*====== common style ======*/
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/*====== wrap ======*/
.box_wrap {
    max-width: 768px;
    margin: 0 auto;
    box-sizing: border-box;
}

.img_wrap {
    display: block;
    position: relative;
    overflow: hidden;
}

.img_wrap img {
    position: absolute;
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: auto;
    margin: auto;
}

/*====== flexBox ======*/
.flex_box {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-direction: row;
    flex-wrap: wrap;
}

@media screen and (max-width: 480px){
    .flex_box{
        flex-direction: column;
    }
}

/*====== logo ======*/
.logo{
    display: block;
    width: fit-content;
}

/*====== menu_hamburger ======*/
.el_hamburger {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 108px;
    height: 40px;
    border-radius: 5px;
    z-index: 10000;
    cursor: pointer;
    box-sizing: border-box;
    background: url(images/button_hamburger.png) no-repeat center center / 100% auto;
}
.el_hamburger:hover{
    opacity: 0.5;
}

.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 {
    text-align: center;
    margin-top: 70px;
}

.gnav li {
    border-bottom: var(--color-text-tertiary) 1px solid;
}

.gnav li>a {
    display: block;
    padding: 2rem 0;
    color: var;
    text-decoration: none;
}

.gnav li>a:hover {
    opacity: 0.5;
}

.js_fixed {
    position: fixed;
    width: 100%;
    height: 100%;
}

/*====== breadcrumb ======*/
.breadcrumb{
    max-width: 768px;
    margin: 0 auto;
}

.breadcrumb ul{
    box-sizing: border-box;
    padding: 16px 24px;
}

.breadcrumb ul li {
    padding: 0 5px 0 0;
    display: inline-block;
}

.breadcrumb ul li a span {
    font-weight: bold;
}

/*======================================================================
  HEADER
======================================================================*/
.mv{
    box-sizing: border-box;
    height: 384px;
    padding: 24px;
    background: url(images/mv.jpg) no-repeat center right / cover;
}

.content_mv{
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.content_mv h1{
	position: relative;
	z-index: 100;
    font-size: 1.8rem;
}

.content_mv .logo{
	position: relative;
	z-index: 100;
}

.content_mv .logo + p{
    font-weight: bold;
}

@media screen and (max-width: 520px){
    .content_mv h1{
        margin: 0 132px 0 0;
    }
	
	.content_mv .logo::after,
	.content_mv h1::after{
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		z-index: -1;
		background: #fff;
		filter: blur(10px);
		opacity: .7;
		padding: 10px;
	}
	
}

/*======================================================================
  FOOTER
======================================================================*/
footer{
    background: var(--color-bg-footer);
}

footer .box_wrap{
    position: relative;
    padding: 24px;
}

footer .box_wrap::after{
    content: "";
    display: block;
    width: 182px;
    height: 204px;
    position: absolute;
    bottom: 91px;
    right: 0;
    background: url(images/object_flower_footer.png) no-repeat center center / 100% auto;
    z-index: 1;
}

.button_page-top{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    box-sizing: border-box;
    width: 64px;
    height: 54px;
    color: var(--color-text-quaternary);
    margin: 0 0 0 auto;
}

.button_page-top::after{
    content: "";
    display: block;
    width: 10px;
    height: 30px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: url(images/arrow_page-top.png) no-repeat center center / 100% auto;
}

.button_page-top:active{
    opacity: 1;
    color: var(--color-text-secondary);
}

.button_page-top:active:after{
    background: url(images/arrow_page-top_hover.png) no-repeat center center / 100% auto;
}

@media (hover: hover) {
    .button_page-top:hover{
        opacity: 1;
        color: var(--color-text-secondary);
    }

    .button_page-top:hover:after{
        background: url(images/arrow_page-top_hover.png) no-repeat center center / 100% auto;
    }
}

.fnav{
    margin: 32px 0 0 0;
}

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

.fnav ul li a{
    position: relative;
    display: block;
    width: fit-content;
    color: var(--color-text-secondary);
    font-weight: bold;
    padding: 0 0 0 10px;
}

.fnav ul li a:active{
    opacity: 1;
    text-decoration: underline;
}

@media (hover: hover) {
    .fnav ul li a:hover{
        opacity: 1;
        text-decoration: underline;
    }
}

.fnav ul li a::before{
    content: "";
    display: block;
    width: 6px;
    height: 2px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 1px;
    background: var(--color-text-secondary);
}

.box_about{
    max-width: 500px;
    color: var(--color-text-quaternary);
    margin: 32px 0 0 0;
    position: relative;
    z-index: 100;
}

.box_about a{
    font-weight: bold;
    color: #f683b8;
}

.box_about span{
    display: block;
    font-weight: bold;
    margin: 0 0 8px 0;
}

footer .logo{
    margin: 32px 0 0 0;
}

footer small{
    display: block;
    color: var(--color-text-secondary);
    text-align: center;
    margin: 32px 0 0 0;
}

@media screen and (max-width: 690px){
    .box_about{
        padding: 0 182px 0 0;
    }
}

@media screen and (max-width: 550px){
    footer .logo{
        margin: 32px 182px 0 0;
    }
}

@media screen and (max-width: 480px){
    footer .box_wrap::after{
        display: none;
    }

    footer .logo{
        margin: 32px 0 0 0;
    }

    .box_about{
        padding: 0;
    }
}

/*======================================================================
  RECOMMEND
======================================================================*/
.recommend{
    background: var(--color-bg-recommend);
    padding: 48px 0;
}

.recommend .box_wrap{
    position: relative;
    padding: 0 24px;
}

.recommend .box_wrap::after{
    content: "";
    display: block;
    width: 180px;
    height: 152px;
    position: absolute;
    top: -48px;
    right: 0;
    background: url(images/object_flower_recommend.png) no-repeat center center / 100% auto;
    z-index: 1;
}

.recommend h4{
    color: var(--color-text-tertiary);
    position: relative;
    z-index: 100;
}

.recommend h4 span{
    display: block;
    font-size: 3.2rem;
}

.recommend ul{
    position: relative;
    z-index: 100;
    margin: 40px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.recommend ul > li{
    background: var(--color-text-secondary);
    padding: 24px;
}

.recommend ul > li .img_wrap{
    height: 200px;
}

.recommend ul > li strong{
    display: block;
    margin: 16px 0 0 0;
    padding: 0 0 16px 0;
    border-bottom: 1px solid var(--color-text-quaternary);
}

.recommend ul > li strong a{
    display: block;
    width: fit-content;
    color: var(--color-text-quaternary);
    font-size: 2rem;
}

.recommend ul li ul{
    margin: 16px 0 0 0;
}

.recommend ul li ul li{
    padding: 0;
}

.recommend ul li ul li a{
    min-width: 252px;
    width: fit-content;
    min-height: 35px;
    border: 1px solid var(--color-text-quaternary);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--color-text-secondary);
    font-weight: bold;
    background: var(--color-text-quaternary);
    padding: 4px 8px;
}

.recommend ul li ul li a:active{
    opacity: 1;
    color: var(--color-text-quaternary);
    background: var(--color-text-secondary);
}

@media (hover: hover) {
    .recommend ul li ul li a:hover{
        opacity: 1;
        color: var(--color-text-quaternary);
        background: var(--color-text-secondary);
    }
}

/*======================================================================
  INDEX
======================================================================*/
.index{
    padding: 48px 0;
}

.index .box_wrap{
    position: relative;
    padding: 0 24px;
}

.index .box_wrap::after{
    content: "";
    display: block;
    width: 127px;
    height: 124px;
    position: absolute;
    top: 0;
    left: 0;
    background: url(images/object_flower_top.png) no-repeat center center / 100% auto;
}

.box_head_index{
    padding: 0 0 0 127px;
}

.box_head_index h2{
    max-width: 384px;
    font-size: 3.2rem;
}

.box_head_index h2 + p{
    margin: 16px 0 0 0;
}

.index ul{
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 40px 0 0 0;
    padding: 0 0 40px 0;
    border-bottom: 1px solid #D4CEC9;
}

.index ul li h3 a{
    position: relative;
    display: block;
    width: fit-content;
    font-size: 2rem;
    padding: 0 0 0 28px;
}

.index ul li h3 a::before{
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url(images/icon_flower_top.png) no-repeat center center / 100% auto;
}

.index ul li p{
    margin: 16px 0 0 0;
}

.index ul li .button_more{
    position: relative;
    width: 164px;
    height: 40px;
    box-sizing: border-box;
    border: 1px solid var(--color-text-quaternary);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 50px;
    color: var(--color-text-quaternary);
    background: var(--color-text-secondary);
    margin: 16px 0 0 auto;
    padding: 0 0 0 24px;
}

.index ul li .button_more::after{
    content: "";
    display: block;
    width: 30px;
    height: 10px;
    position: absolute;
    top: 13px;
    right: 24px;
    background: url(images/arrow_more.png) no-repeat center center / 100% auto;
}

.index ul li .button_more:active{
    opacity: 1;
    border: 1px solid var(--color-text-tertiary);
    color: var(--color-text-secondary);
    background: var(--color-text-tertiary);
}

.index ul li .button_more:active:after{
    background: url(images/arrow_more_hover.png) no-repeat center center / 100% auto;
}

@media (hover: hover) {
    .index ul li .button_more:hover{
        opacity: 1;
        border: 1px solid var(--color-text-tertiary);
        color: var(--color-text-secondary);
        background: var(--color-text-tertiary);
    }

    .index ul li .button_more:hover:after{
        background: url(images/arrow_more_hover.png) no-repeat center center / 100% auto;
    }
}

@media screen and (max-width: 480px){
    .index .box_wrap::after{
        display: none;
    }

    .box_head_index{
        padding: 0;
    }
    
    .box_head_index h2{
        font-size: 2.4rem;
    }
}

/*======================================================================
  CATEGORY
======================================================================*/
.category{
    padding: 48px 0 0 0;
    counter-reset: number;
}

.category .box_wrap:first-of-type{
    position: relative;
    padding: 0 24px;
}

.category .box_wrap:first-of-type:after{
    content: "";
    display: block;
    width: 120px;
    height: 153px;
    position: absolute;
    top: 0;
    right: 0;
    background: url(images/object_flower_category.png) no-repeat center center / 100% auto;
}

.category .box_wrap + .box_wrap{
    padding: 0;
}

.box_head_category{
    padding: 0 120px 0 0;
}

.box_head_category h2{
    position: relative;
    font-size: 3.2rem;
    padding: 0 0 0 61px;
}

.box_head_category h2::before{
    content: "";
    display: block;
    width: 53px;
    height: 34px;
    position: absolute;
    top: 7px;
    left: 0;
    background: url(images/icon_title_category.png) no-repeat center center / 100% auto;
}

.box_head_category h2 + p{
    margin: 16px 0 0 0;
}

.category ul{
    margin: 40px 0 0 0;
}

.category ul li{
    display: flex;
}

.category ul li .box_post_category a{
    box-sizing: border-box;
    max-width: 468px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 100%;
    background: var(--color-text-tertiary);
    padding: 24px;
}

.category ul li .box_post_category a span{
    position: relative;
}

.category ul li .box_post_category a span::after{
    counter-increment: number 1;
    content: counter(number, decimal-leading-zero);
    color: var(--color-text-quinary);
    font-size: 2rem;
    font-weight: bold;
}

.category ul li .box_post_category a h3{
    color: var(--color-text-secondary);
    font-size: 2rem;
    text-align: center;
}

.category ul li .box_post_category a p{
    color: var(--color-text-secondary);
}

.category ul li .img_wrap{
    max-width: 300px;
    width: 100%;
}

.category ul li .img_wrap img{
    height: 100%;
    object-fit: cover;
}

.category ul li .box_post_category a:active{
        opacity: 1;
        background: var(--color-text-quaternary);
    }

    .category ul li .box_post_category a:active h3,
    .category ul li .box_post_category a:active p{
        text-decoration: underline;
    }

@media (hover: hover) {
    .category ul li .box_post_category a:hover{
        opacity: 1;
        background: var(--color-text-quaternary);
    }

    .category ul li .box_post_category a:hover h3,
    .category ul li .box_post_category a:hover p{
        text-decoration: underline;
    }
}

@media screen and (max-width: 480px){
    .category .box_wrap:first-of-type:after{
        display: none;
    }

    .box_head_category{
        padding: 0;
    }

    .box_head_category h2{
        font-size: 2.4rem;
        padding: 0 0 0 30px;
    }

    .box_head_category h2::before{
        width: 25px;
        height: 17px;
        top: 9px;
    }
}

/*======================================================================
  DETAIL
======================================================================*/
.detail{
    padding: 48px 0;
}

.detail .box_wrap{
    position: relative;
    padding: 0 24px;
}

.detail .box_wrap::after{
    content: "";
    display: block;
    width: 121px;
    height: 163px;
    position: absolute;
    top: 0;
    left: 0;
    background: url(images/object_flower_detail.png) no-repeat center center / 100% auto;
}

.box_head_detail{
    padding: 0 0 0 141px;
}

.box_head_detail h2{
    font-size: 3.2rem;
}

.box_head_detail h2 + p{
    margin: 16px 0 0 0;
    min-height: 120px;
}

.box_head_detail + .img_wrap{
    height: 200px;
    margin: 40px 0 0 0;
}

.box_post{
    margin: 40px 0 0 0;
}

.box_post h3{
    position: relative;
    font-size: 2rem;
    padding: 0 0 0 28px;
}

.box_post h3::before{
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url(images/icon_flower_detail.png) no-repeat center center / 100% auto;
}

.box_post h3:not(:first-of-type){
    margin: 32px 0 8px;
}

.box_post h3 + p,
.box_post h3 + ul,
.box_post h3 + ol{
    padding: 8px 0 0 0;
    margin: 8px 0 0 0;
    border-top: 1px solid var(--color-text-quinary);
}

.box_post .link_item,
.box_post .link_item dd:last-of-type{
    display: inline-block;
    margin: 1em 0 0 0;
}

.box_post a,
.box_post .link_item dt a{
    font-weight: bold;
    color: #f683b8;
}

@media screen and (max-width: 480px){
    .detail .box_wrap::after{
        display: none;
    }

    .box_head_detail{
        padding: 0;
    }

    .box_head_detail h2{
        font-size: 2.4rem;
    }

    .box_head_detail h2 + p{
        min-height: auto;
    }
}