@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 {
    --orange: #ED6103;
    --white: #FFFFFF;
    --light-gray: #D2D2D2;
    --beige: #FEF3EB;
    --footer-gray: #F4F4F4;
    --black: #1F1F1F;
    --link: #af00bb;
}
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(--black);
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}
p { 
    line-height: 1.5; 
}
a { 
    text-decoration: none; 
    color: var(--black);
}
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.8rem;
    position: absolute;
    bottom: -11px;
    left: 0;
    font-weight: normal;
    background-color: var(--white);
    border-radius: 0 8px 0 0;
    padding: 32px 30px 32px 80px;
    width: calc((382 / 768) * 100%);
    box-sizing: border-box;
}

h2 {
    font-size: 3.2rem;
    position: relative;
    padding-bottom: 4rem;
}
h2::before, h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: .2rem;
}
h2::before {
    width: 100%;
    background: var(--light-gray);
}
h2::after {
    width: 10rem;
    background: var(--orange);
}

h3 {
    font-size: 2.4rem;
}

@media screen and (max-width: 768px) {
    h1 {
        width: 90%;
        padding: 24px;
    }
}


/*======================================================================
  HEADER
======================================================================*/
.header-inner{
    box-sizing: border-box;
    padding: 20px 24px;
    max-width: 768px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 0 auto;
}

/* mv */
.mv{
    box-sizing: border-box;
    width: 768px;
    max-width: 100%;
    height: 468px;
    margin: 0 auto;
    background: url(images/mv.png) no-repeat center;
    position: relative;
    margin-bottom: 41px;
}
.mv .logo {
    display: inline-block;
}

@media screen and (max-width: 768px) {
    .mv{
        background: url(images/mv.png) no-repeat right;
    }
}


/*ハンバーガーボタン*/
.el_hamburger {
    width: 35px;
    z-index: 10000;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 9px;
}
.el_hamburger:hover span{
    background-color: var(--light-gray);
}
.el_hamburger span {
    display: block;
    width: 35px;
    height: 4px;
    /*border太さ*/
    font-size: 0;
    background-color: var(--orange);
    /*border色*/
    transition: transform 0.2s ease-in-out;
}
.js_hamburgerOpen .el_hamburger > span.top {
    transform: translateY(13px) rotate(-405deg);
}
.js_hamburgerOpen .el_hamburger > span.middle {
    opacity: 0;
}
.js_hamburgerOpen .el_hamburger > span.bottom {
    transform: translateY(-13px) rotate(405deg);
}

/*ナビゲーション*/
.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(--white);
    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(--black) 1px solid;
}
.gnav li > a {
    display: block;
    color: var(--black);
    text-decoration: none;
    padding: 1.5rem;
    text-align: center;
}

/* breadcrumb */
.breadcrumb ul {
	display: block;
	max-width: 768px;
	margin: 0 auto;
	padding: 1.5rem 2.4rem;
    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-top: 80px;
}
.footer .fnav {
    max-width: 608px;
    margin: 0 auto;
}
.footer ul {
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}
.footer .fnav ul li a {
    position: relative;
    color: var(--black);
    padding-left: 27px;
    display: inline-block;
    font-weight: bold;
}
.footer .fnav ul li a:hover {
    opacity: 1;
    color: var(--orange);
}
.footer .fnav ul li a::before{
    content: "";
    display: block;
    width: 7px;
    height: 13px;
    position: absolute;
    top: 5px;
    left: 0;
    background: url(./images/arrow_black.svg) no-repeat;
}
.footer .fnav ul li a:hover::before {
    opacity: 1;
    background: url(./images/arrow_orange.svg) no-repeat;
}
.footer_copy {
    background: var(--white);
    text-align: center;
    padding: 24px 0;
    border-bottom: 8px solid var(--orange);
}
@media screen and (max-width: 768px) {
    .footer ul {
        padding: 0 24px;
    }
}

/*======================================================================
  RECOMMEND
======================================================================*/
.recommend {
    padding-top: 80px;
    background: var(--beige);
}
.recommend boxWrap {
	gap: 40px;
}
.recommend ul {
    gap: 40px;
}
.recommend li {
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid var(--orange);
}
.recommend .new_post li:last-of-type,
.recommend .recommend_post li:last-of-type {
    border-bottom: none;
}
.recommend li h3 a {
    display: inline-block;
}
.recommend li h3 a:hover {
	opacity:1;
    color: var(--orange);
}
.recommend .trimming {
    height: 200px;
    border-radius: 8px;
    box-sizing: border-box;
    border:1px solid var(--light-gray);
}
.recommend .trimming:hover {
    border: 2px solid var(--orange);
    opacity: .5;
}
.recommend .cat_btn {
    display: flex;
    align-items: center;
    gap: 40px;
    align-self: stretch;
}
.recommend .cat_more {
    display: flex;
    width: fit-content;
    padding: 16px 42px;
    align-items: center;
    gap: 40px;
    border-radius: 9999px;
    color: var(--black);
    background-color: var(--beige);
    border: 1px solid var(--orange);
    font-weight: bold;
    box-sizing: border-box;
            
}
.recommend .cat_more:hover {
    opacity: 1;
    color: var(--white);
    background-color: var(--orange);
}
.recommend_post {
    padding-top: 40px;
}
@media screen and (max-width: 768px) {
    .recommend .cat_btn {
        flex-direction: column;
    }
}


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

/* index_top */
.index_top .index_img { 
    background: url(./images/index_top.jpg) no-repeat center;
    height: 267px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 35px 0 36px;
}
.index_top p {
    font-size: 2.6rem;
    font-weight: bold;
    color: var(--white);
    text-shadow: 1px 1px 6px #000;
}

/* index_category*/
.index_category {
    padding-top: 40px;
}
.index_category ul {
    padding-top: 40px;
    gap: 40px;
}
.index_category li a {
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--light-gray);
}
.index_category li a:hover {
    padding-bottom: 39px;
    border-bottom: 2px solid var(--orange);
}
.index_category li:last-of-type a {
    border-bottom: none;
    padding-bottom: 40px;
}
.index_category li a:hover {
    opacity: 1;
}
.index_category li a:hover h3 {
    color: var(--orange);
}
.index_category .trimming {
    height: 200px;
    border-radius: 8px;
    box-sizing: border-box;
    border:1px solid var(--light-gray);
}
.index_category li a:hover .trimming {
    border: 2px solid var(--orange);
    opacity: .5;
}

/*======================================================================
CATEGORY
======================================================================*/
/* category_top */
.category_top {
    padding-top: 80px;
    gap: 40px;
}
.category_top .trimming {
    height: 200px;
    border-radius: 8px;
    border:1px solid var(--light-gray);
}
/* category_post */
.category_post {
    padding: 80px 0;
    gap: 40px;
}
.category_post li {
    gap: 40px;
}
.category_flex {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.category_flex .text_group {
    width: 480px;
    gap: 40px;
    box-sizing: border-box;
}
.category_flex .text_group h3 {
    padding-left: 16px;
    border-left: 2px solid var(--orange);
}
.category_flex .text_group h3 a {
    display: inline-block;
}
.category_flex .text_group h3 a:hover {
    opacity: 1;
    color: var(--orange)
}
.category_flex .text_group ul {
    gap: 20px;
}
.category_flex .text_group li {
    color: var(--orange);
    font-size: 2rem;
    font-weight: bold;
}
.category_flex .trimming {
    border-radius: 8px;
    width: 200px;
    min-height: 200px;
    height: 100%;
    box-sizing: border-box;
    border:1px solid var(--light-gray);
}
.category_flex .trimming:hover {
    opacity: .5;
    border:2px solid var(--orange);
}
.category_post .btn {
    display: block;
    width:100%;
    color: var(--white);
    text-align:center;
    border-radius: 8px;
    padding: 6px 0;
    font-weight: bold;
    background: var(--orange);
}
.category_post .btn:hover {
    opacity: .5;
}
@media screen and (max-width: 768px) {
    .category_flex {
        flex-direction: column;
        gap: 10px;
    }
    .category_flex .text_group {
        width: 100%;
        height: auto;
    }
    .category_flex .trimming {
        width: 100%;
    }
}


/*======================================================================
  DETAIL
======================================================================*/
.detail{
    padding-bottom: 80px;
}

/* detail_top */
.detail_top {
    padding: 48px 0;
    gap: 80px;
}
.detail_top .trimming{
    height: 240px;
    width: calc(100% - 40px);
    border-radius: 8px;
    margin: 0 auto;
    border:1px solid var(--light-gray);
}
.detail_top-head time {
    color: var(--orange);
    font-weight: bold;
}
.detail_top-head h2 {
    margin: 20px 0 40px;
}
.detail_top-head p {
    padding: 10px 0;
}

/* detail_post */
.detail_post {
    padding: 160px 20px 80px;
    background: var(--beige);
    margin-top: -170px;
    border-radius: 8px;
}
.detail_post h3{
    padding: 0 20px ;
    border-left: 2px solid var(--orange);
    margin-bottom: 40px;
    font-size: 18px;
    font-weight: bold;
}
.detail_post h3:not(:first-of-type){
    margin-top: 40px;
}
.detail_post p {
    padding: 0 20px;
}

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

/* リンク設置 */
.detail_post .link_item{
    display: inline-block;
    margin-block: 1em;
}

@media screen and (max-width: 768px) {
    .detail_top .trimming {
        height: 200px;
    }
}

