@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body{
color: #333;
font-size: 14px;
letter-spacing: 0.03em;
font-family: 'Hiragino Kaku Gothic Pro', 'メイリオ', 'ＭＳ Ｐゴシック', sans-serif;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
ol, ul, li{
    list-style: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
select{
    text-overflow: ellipsis;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}
a{
    text-decoration: none;
    color: #333;
}
a img{
transition:all 0.3s;
}
a image:hover{
    opacity: 0.7;
}
*{box-sizing: border-box;}

/*共通部分*/
.contents{
    padding-top: 60px;
}
.inner{
    width: auto;
    margin: 0 auto;
}
/*ヘッダー*/
.header{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: 100px;
    border-bottom: 1px solid #f2f2f2;
    z-index: 100;
    background: linear-gradient(-225deg, #d8c42c 0%, #bbff91 56%, #baffdf 100%);
}
.header img{
    width: 100%;
    display: block;
    background-color: rgba(255, 255, 255, 0.8);
}
.header-inner{
    position: relative;
    margin: 0 auto;
    height: 100%;
}
.logo{
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.header-top {
    position: absolute;
	border-radius: 4px;
	color: #888888;
	display: block;
    z-index: 10;
    transition: all 0.4s;
    transform: translate(0,10%);
    right: 0;
}
.header-top ul {
	margin: 0;
	padding: 0;
}
.header-top ul li {
	display: inline-block;
	list-style-type: none;
	-webkit-transition: all 0.2s;
	        transition: all 0.2s;
            border-radius: 8px;
}
.header-top > ul > li > h3 > .caret {
	border-top: 4px solid #aaaaaa;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	content: '';
	display: inline-block;
	height: 0;
	width: 0;
	vertical-align: middle;
	-webkit-transition: color 0.1s linear;
	        transition: color 0.1s linear;
}
.header-top > ul > li > h3 {
	display: block;
	line-height: 56px;
	padding: 0 10px;
	text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}
.header-top > ul > li:hover {
	background-color: #d8c42c;
    transition: all ease-in-out 0.5s;
}
.header-top > ul > li:hover > h3 {
	color: rgb( 255, 255, 255 );
}
.header-top > ul > li:hover > h3 > a {
	color: rgb( 255, 255, 255 );
}
.header-top > ul > li:hover > h3 > .caret {
	border-top-color: rgb( 255, 255, 255 );
}
.header-top > ul > li > div {
	background-color: #d8c42c;
	border-top: 0;
	border-radius: 0 0 4px 4px;
	box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.055);
	display: none;
	margin: 0;
	opacity: 0;
	position: absolute;
	width: 165px;
	visibility: hidden;
}
.header-top > ul > li:hover > div {
	display: block;
	opacity: 1;
	visibility: visible;
}
.header-top > ul > li > div ul > li {
	display: block;
}
.header-top > ul > li > div ul > li > a {
	color: #ffffff;
	display: block;
	padding: 12px 24px;
	text-decoration: none;
    font-weight: bold;
}
.header-top > ul > li > div ul > li:hover > a {
	background-color: rgba( 255, 255, 255, 0.1);
}
.header-nav {
    position: absolute;
	border-radius: 4px;
	color: #888888;
	display: block;
    z-index: 10;
    transition: all 0.4s;
    transform: translate(60%,75%);
}
.header-nav ul {
	margin: 0;
	padding: 0;
}
.header-nav ul li {
	display: inline-block;
	list-style-type: none;
	-webkit-transition: all 0.2s;
	        transition: all 0.2s;
}
.header-nav > ul > li > h3 > .caret {
	border-top: 4px solid #aaaaaa;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	content: '';
	display: inline-block;
	height: 0;
	width: 0;
	vertical-align: middle;
	-webkit-transition: color 0.1s linear;
	        transition: color 0.1s linear;
}
.header-nav > ul > li > h3 {
	display: block;
	line-height: 56px;
	padding: 0 10px;
	text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    color: #333;
    cursor: pointer;
}
.header-nav > ul > li:hover {
	background-color: #d8c42c;
    transition: all ease-in-out 0.5s;
}
.header-nav > ul > li:hover > h3 {
	color: rgb( 255, 255, 255 );
}
.header-nav > ul > li:hover > h3 > a {
	color: rgb( 255, 255, 255 );
}
.header-nav > ul > li:hover > h3 > .caret {
	border-top-color: rgb( 255, 255, 255 );
}
.header-nav > ul > li > div {
	background-color: #d8c42c;
	border-top: 0;
	border-radius: 0 0 4px 4px;
	box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.055);
	display: none;
	margin: 0;
	opacity: 0;
	position: absolute;
	width: 165px;
	visibility: hidden;
}
.header-nav > ul > li:hover > div {
	display: block;
	opacity: 1;
	visibility: visible;
}
.header-nav > ul > li > div ul > li {
	display: block;
}
.header-nav > ul > li > div ul > li > a {
	color: #ffffff;
	display: block;
	padding: 12px 24px;
	text-decoration: none;
    font-weight: bold;
}
.header-nav > ul > li > div ul > li:hover > a {
	background-color: rgba( 255, 255, 255, 0.1);
}

/*コンテンツ*/
.top-slider img{
    position: relative;
    max-height: 500px;
    width: 100%;
    height: 100%;
    display: block;
}
.c-section{
    margin: 0 auto 20px auto;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    }
.c-section-head{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
    border-bottom: 1px solid #f2f2f2;
}
.c-section-title{
    font-size: 30px;
    font-weight: bold;
}
.dino-list{
    display: flex;
    flex-wrap: wrap;
}
.dino{
    position: relative;
    width: calc(100% / 5);
    margin: 0 5px 20px 5px;
}
.dino img{
    max-width: 130px;
    max-height: 70px;
    width: 100%;
    height: 100%;
    display: block;
}
.dino-cap{
    margin-bottom: 5px;
}
.dino-info{
    padding: 0 3px;
}
.dino-name{
    font-weight: bold;
    font-size: 16px;
}
.dino-text{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 13px;
    font-weight: bold;
}
.dino-price{
    margin-top: 5px;
    font-size: 13px;
}
.thumbnail-list{
    justify-content: space-between;
}
.thumbnail-list .dino{
    width: calc(100% / 2 - 10px);
    padding-bottom: 20px;
    border-bottom: 1px solid #f2f2f2;
}
.thumbnail-list .dino a{
    display: flex;
}
.thumbnail-list .dino-cap{
    width: 100px;
    height: auto;
    margin-right: 15px;
    margin-bottom: 0;
}
.thumbnail-list .dino-info{
    width: calc(100% - 100px - 15px);
}
.museum-list{
    display: flex;
    flex-wrap: wrap;
}
.museum{
    position: relative;
    width: calc(100% / 5);
    margin: 5px 5px;
}
.museum img{
    max-width: 130px;
    max-height: 70px;
    width: 100%;
    height: 100%;
    display: block;
}
.museum-cap{
    margin-bottom: 5px;
}
.museum-info{
    padding: 0 3px;
}
.museum-name{
    font-weight: bold;
    font-size: 16px;
}
.museum-address{
    font-weight: bold;
    margin-top: 5px;
    font-size: 13px;
}
.museum-time{
    font-weight: bold;
    margin-top: 5px;
    font-size: 13px;
}
.museum-url{
    margin-top: 5px;
    font-size: 13px;
}
.thumbnail-list{
    justify-content: space-between;
}
.thumbnail-list .museum{
    width: calc(100% / 2 - 10px);
    padding-bottom: 20px;
    border-bottom: 1px solid #f2f2f2;
}
.thumbnail-list .museum a{
    display: flex;
}
.thumbnail-list .museum-cap{
    width: 100px;
    height: auto;
    margin-right: 15px;
    margin-bottom: 0;
}
.thumbnail-list .museum-info{
    width: calc(100% - 100px - 15px);
}
.thumbnail-list .place{
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid #f2f2f2;
}
.place-list{
    display: flex;
    flex-wrap: wrap;
}
.place{
    position: relative;
    width: calc(100% / 5);
    margin: 10px 20px;
}
.place img{
    width: 100%;
    height: 100%;
    display: block;
}
.place-cap{
    margin-bottom: 5px;
}
.place-info{
    padding: 0 3px;
}
.place-address{
    font-weight: bold;
    margin-top: 5px;
    font-size: 15px;
}
.place-time{
    font-weight: bold;
    margin-top: 5px;
    font-size: 15px;
}
.thumbnail-list .place a{
    display: flex;
}
.thumbnail-list .place-cap{
    width: 50%;
    height: auto;
    margin-right: 15px;
    margin-bottom: 0;
}
.thumbnail-list .place-info{
    width: calc(100% - 100px - 15px);
}


/*生息域*/
.c-brand{
    margin: 0 auto 60px auto;
    background-image:linear-gradient(-225deg, #d8c42c 0%, #bbff91 56%, #baffdf 100%);
    padding: 30px 30px;
    margin-bottom: 1px;
    overflow: hidden;
}
.d-brand{
    margin: 0 auto 60px auto;
    padding: 35px 30px;
    margin-bottom: 1px;
    overflow: hidden;
    background-image:linear-gradient(-225deg, #d8c42c 0%, #bbff91 56%, #baffdf 100%);
    border-radius: 8px;
}
.category-list{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
    grid-gap:10px 10px;
}
.category-list li:nth-child(1){
    background: #fff;
    background-size: 110%;
    border-radius: 8px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-weight: bold;
    font-size: 25px;
    &:hover {
		transition: all ease-in-out 0.5s;
        background: url(../img/item/6.jpg) 0 center no-repeat;
        background-size: 110%;
	}
}
.category-list li:nth-child(2){
    background: #fff;
    background-size: 110%;
    border-radius: 8px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-weight: bold;
    font-size: 25px;
    &:hover {
		transition: all ease-in-out 0.5s;
        background: url(../img/item/14.jpg) 0 center no-repeat;
        background-size: 110%;
	}
}
.category-list li:nth-child(3){
    background: #fff;
    background-size: 110%;
    border-radius: 8px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-weight: bold;
    font-size: 25px;
    &:hover {
		transition: all ease-in-out 0.5s;
        background: url(../img/item/15.jpg) 0 center no-repeat;
        background-size: 110%;
	}
}
.category-list li a{
    display: block;
    color: #ff7401;
}
.brand-list{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
    grid-gap:10px 10px;
}
.brand-list li:nth-child(1){
    background: #fff;
    background-size: 110%;
    border-radius: 8px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-weight: bold;
    font-size: 25px;
    &:hover {
		transition: all ease-in-out 0.5s;
        background: url(../img/item/15.jpg) 0 center no-repeat;
        background-size: 110%;
	}
}
.brand-list li:nth-child(2){
    background: #fff;
    background-size: 110%;
    border-radius: 8px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-weight: bold;
    font-size: 25px;
    &:hover {
		transition: all ease-in-out 0.5s;
        background: url(../img/item/4.jpg) 0 center no-repeat;
        background-size: 110%;
	}
}
.brand-list li:nth-child(3){
    background: #fff;
    background-size: 110%;
    border-radius: 8px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-weight: bold;
    font-size: 25px;
    &:hover {
		transition: all ease-in-out 0.5s;
        background: url(../img/item/18.jpg) 0 center no-repeat;
        background-size: 110%;
	}
}
.brand-list li:nth-child(4){
    background: #fff;
    background-size: 110%;
    border-radius: 8px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-weight: bold;
    font-size: 25px;
    &:hover {
		transition: all ease-in-out 0.5s;
        background: url(../img/item/9.jpg) 0 center no-repeat;
        background-size: 110%;
	}
}
.brand-list li:nth-child(5){
    background: #fff;
    background-size: 110%;
    border-radius: 8px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-weight: bold;
    font-size: 25px;
    &:hover {
		transition: all ease-in-out 0.5s;
        background: url(../img/item/20.jpg) 0 center no-repeat;
        background-size: 110%;
	}
}
.brand-list li:nth-child(6){
    background: #fff;
    background-size: 110%;
    border-radius: 8px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-weight: bold;
    font-size: 25px;
    &:hover {
		transition: all ease-in-out 0.5s;
        background: url(../img/item/17.jpg) 0 center no-repeat;
        background-size: 110%;
	}
}
.brand-list li:nth-child(7){
    background: #fff;
    background-size: 110%;
    border-radius: 8px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-weight: bold;
    font-size: 25px;
    &:hover {
		transition: all ease-in-out 0.5s;
        background: url(../img/item/19.jpg) 0 center no-repeat;
        background-size: 110%;
	}
}
.brand-list li a{
    display: block;
    color: #ff7401;
}
.feature-list{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
    grid-gap:10px 10px;
}
.feature-list li:nth-child(1){
    background: #fff;
    background-size: 110%;
    border-radius: 8px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-weight: bold;
    font-size: 25px;
    &:hover {
		transition: all ease-in-out 0.5s;
        background: url(../img/item/20.jpg) 0 center no-repeat;
        background-size: 110%;
	}
}
.feature-list li:nth-child(2){
    background: #fff;
    background-size: 110%;
    border-radius: 8px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-weight: bold;
    font-size: 25px;
    &:hover {
		transition: all ease-in-out 0.5s;
        background: url(../img/item/16.jpg) 0 center no-repeat;
        background-size: 110%;
	}
}
.feature-list li a{
    display: block;
    color: #ff7401;
}
.com-list{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
    grid-gap:10px 10px;
  }
.com-list li{
    background: #fff;
    border-radius: 8px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-weight: bold;
    font-size: 25px;
}
.com-list li a{
    display: block;
    color: #ff7401;
}
.d-com-list{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
    grid-gap:10px 10px;
  }
.d-com-list li{
    background: #d8c42c;
    border-radius: 8px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-weight: bold;
    font-size: 25px;
}
.d-com-list li a{
    display: block;
    color: #ff7401;
}

/*フッター*/
.footer{
    background: #333;
  }
  .footer a{
    color: #fff;
  }
  .footer-logo{
    text-align: center;
    font-size: 30px;
    margin-bottom: 30px;
    color: #fff;
  }
  .footer-info{
    padding: 50px 0;
  }
  .footer img{
    width: 100%;
  }
  .sns{
    text-align: center;
  }
  .sns li{
    display: inline-block;
    margin: 0 10px;
  }
  .sns li a{
    display: flex;
    align-items: center;
  }
  .sns li .sns-icon{
    width: 25px;
    margin-right: 10px;
  }
  .footer-link{
    background: #000;
    font-size: 12px;
    padding: 10px;
    text-align: center;
  }
  .footer-link li{
    display: inline-block;
    margin: 0 10px;
  }

@media screen and (max-width: 768px) {
    
    /*共通*/
    .contents{
        padding-top: 0;
    }
    .inner{
        width: auto;
        margin: 0;
    }
    .slick-slide{
        margin: 0 0;
    }

    /*ヘッダ－*/
    .header{
        height: 45px;
    }
    .header-top{
        height: 25px;
        right: 15%;
    }
    .header-top ul{
        text-align: center;
    }
    .header-top li{
        line-height: 30px;
    }
    .header-top li a{
        font-size: 12px;
    }
    .header-top ul li h3{
        font-size: 12px;
        line-height: 40px;
        padding: 0 5px;
    }
    .header-top ul li h3 a{
        font-size: 12px;
    }
    .header-top > ul > li > div {
        width: 100px;
    }
    .header-top > ul > li > div ul > li {
        border-bottom: 1px solid #e6e6e6;
    }
    .header-nav{
        position: fixed;
        width: 100%;
        top: 45px;
        left: 100%;
        background: rgba(54, 53, 53, 0.945);
        height: 100vh;
        z-index: 10;
        transition: all 0.4s;
        transform: translate(0);
    }
    .logo{
        width: 45px;
    }
    .header-nav ul{
        display: block;
        text-align: center;
    }
    .header-nav ul li{
        display: block;
        line-height: 10px;
    }
    .header-nav ul li h3{
        border-bottom: 1px solid #e6e6e6;
        color: #fff;
    }
    .header-nav ul li h3 a{
        color: #fff;
    }
    .header-nav > ul > li > div{
        width: 100%;
    }
    .header-nav > ul > li > div ul > li {
        border-bottom: 1px solid #e6e6e6;
    }
    .header-top > ul > li > div {
        background-color: #333;
    }
    
    .controls{
        right: 50%;
        transform: translate(50%, -50%);
    }
    .menu-trigger{
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.4s;
        width: 30px;
        height: 20px;
        z-index: 100;
        display: block;
    }
    .menu-trigger span{
        display: inline-block;
        transition: all 0.4s;
        position: absolute;
        width: 100%;
        height: 2px;
        background: #000;
    }
    .menu-trigger span:nth-of-type(1){
        top: 0;
    }
    .menu-trigger span:nth-of-type(2){
        top: 50%;
        transform: translateY(-50%);
    }
    .menu-trigger span:nth-of-type(3){
        bottom: 0;
    }
    /*js変更される箇所*/
    .header-nav.is-active{
        left: 0;
    }
    .menu-trigger.is-active span:nth-of-type(1){
        transform: translateY(9px) rotate(-315deg);
    }
    .menu-trigger.is-active span:nth-of-type(2){
        opacity: 0;
    }
    .menu-trigger.is-active span:nth-of-type(3){
        transform: translateY(-9px) rotate(315deg);
    }
    /*セクション　スマホ*/
    .c-section{
        font-size: 20px;
    }
    .more-link{
        font-size: 13px;
    }
    .dino{
        width: calc(100% / 2);
    }
    .dino-name{
        font-size: 13px;
    }
    .dino img {
        max-width: 100px;
        max-height: 60px;
        width: 100%;
        height: 100%;
        display: block;
    }
    .museum{
        width: calc(100% / 2);
    }
    .museum-name{
        font-size: 13px;
    }
    .museum img {
        max-width: 100px;
        max-height: 60px;
        width: 100%;
        height: 100%;
        display: block;
    }
    .place img{
        max-width: 100px;
        max-height: 60px;
        width: 100%;
        height: 100%;
        display: block;
    }
    .place-address{
        font-size: 12px;
    }
    .place-time{
        font-size: 12px;
    }
    /*ピックアップ*/
    .thumbnail-list .dino{
        width: auto;
    }
    .thumbnail-list .museum{
        width: auto;
    }
    .thumbnail-list .place{
        width: auto;
    }
    /*画面　スマホ*/
    .c-brand{
        font-size: 20px;
        padding: 30px 15px;
    }
    .more-link{
        font-size: 20px;
    }
    .category-list{
        grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    }
    .category-list li:nth-child(-n+4){
        height: 50px;
        line-height: 50px;
        font-size: 14px;
    }
    .brand-list{
        grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    }
    .brand-list li:nth-child(-n+7){
        height: 50px;
        line-height: 50px;
        font-size: 14px;
    }
    .feature-list{
        grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    }
    .feature-list li:nth-child(-n+3){
        height: 50px;
        line-height: 50px;
        font-size: 14px;
    }
    .com-list{
        grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    }
    .com-list li:nth-child(-n+9){
        height: 50px;
        line-height: 50px;
        font-size: 14px;
    }
    .d-com-list{
        grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    }
    .d-com-list li:nth-child(-n+9){
        height: 50px;
        line-height: 50px;
        font-size: 16px;
    }
    /*フッター　スマホ*/
    .footer-inner{
        padding: 30px 0;
    }
    .sns li{
        font-size: 10px;
    }
    .footer-link li{
        font-size: 10px;
        margin: 0 3px;
    }
}