/* common */
html {
    scroll-behavior: smooth;
}
body {
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
}
a {
    color: #333333;
    text-decoration: none;
    transition: all 0.4s;
}
img {
    max-width: 100%;
    width: 100%;
    height: auto;
    vertical-align: bottom;
}
figure {
    margin: 0;
}
ol, ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.container{
    width: 100%;
    margin: 0 auto;
}
.fs-c-breadcrumb {
    margin: 16px 0 24px 0;
    padding: 0 4%;
    letter-spacing: 0.05em;
}
.lp-btn {
    display: block;
    border-radius: 4rem;
    border: 1px solid #f2cf39;
    width: 70%;
    background-color: #fff;
    text-align: center;
    line-height: 5rem;
    font-size: 1.4rem;
    font-weight: 600;
    margin: auto;
}

@media only screen and (max-width: 768px) {
    .pc-only {
        display: none;
    }
}
@media only screen and (min-width: 769px) {
    .sp-only {
        display: none;
    }
    .fs-c-breadcrumb {
        max-width: 1200px;
        margin: 2.4rem auto;
        padding: 0;
    }
}

/* header */
@media only screen and (min-width: 769px) {
    #header .container{
	max-width: 1366px;
    }
}

/* index */
#index .container {
    text-align: center;
    background-color: #f8f7f6;
    padding: 3rem 0;
}
#index .top-ttl {
    font-size: 3rem;
    font-weight: 600;
    background: linear-gradient(transparent 60%, #f2cf39 0%);
    display: inline;
    padding: 0 1px 0px;
}
#index .top-nav {
    width: 90%;
    margin: 3rem auto;
    display: grid;
    row-gap: 5rem;
}
#index .nav-ttl {
    font-size: 2rem;
}
#index .nav-ttl:before {
    content: attr(data-num)".";
    font-size: 3rem;
    font-style: italic;
    font-weight: 600;
    color: #f2cf39;
    margin-right: .5em;
}
#index .top-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 1rem;
    row-gap: 2rem;
}
#index .top-list img {
    margin-bottom: 2rem;
    border-radius: 2rem;
}
#index .top-list figcaption {
    font-size: 1.6rem;
    font-weight: 600;
    display: inline-block;
    border-bottom: 3px dotted #f2cf39;
    padding-bottom: 3px;
}
@media only screen and (min-width: 769px) {
    #index .container {
        max-width: 1200px;
        border-radius: 3rem;
        margin-bottom: 5rem;
        padding: 5rem 0;
    }
    #index .top-list {
        justify-content: center;
    }
    #index .nav-wrap:not(:nth-child(2)) .top-list {
        grid-template-columns: repeat(3,22%);
        
    }
    #index .nav-wrap:nth-child(2) .top-list {
        grid-template-columns: repeat(4,22%);
    }
    #index .top-list a:hover figure {
        transform: translate(0, -1rem);
    }
}

/* about */
.about_section{
    background: #fffdee;
    padding: 6rem 0;
}
.about_section .about_handmade_section{
    width: 87%;
    margin: 0 auto 5rem;
}
.about_section .about_handmade_section .main{
    background: url(./img/handmade_bg_middle.png) repeat-y 0 0;
    text-align: center;
    background-size: contain;
    padding: 1rem 0 0;
}
.about_section .about_handmade_section .main .inner .img{
    max-width: 100%;
    padding-top: 3rem;
}
.about_section .about_handmade_section .main p.txt{
    text-align: left;
    line-height: 2;
    width: 90%;
    margin: 0 auto;
    padding: 2rem 1rem 1rem;
    font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
    .about_section .about_handmade_section .main img {
        max-width: 50%;
        margin: 0 auto;
    }
}
@media only screen and (min-width: 769px) {
    .about_section .about_handmade_section{
        margin: 0 auto 7rem;
    }
    .about_section .about_handmade_section .container{
	max-width: 970px;
    }
    .about_section .about_handmade_section h2 img {
        width: 24rem;
    }
    .about_section .about_handmade_section .main .inner{
	display: grid;
        grid-template-columns: 23rem 1fr;
	justify-content: space-between;
	align-items: center;
    }
    .about_section .about_handmade_section .main .inner .img{
        padding: 0 0 0 3rem;
    }
    .about_section .about_handmade_section .main p.txt{
        padding: 0;
    }
}

#gift {
    width: 87%;
    margin: 0 auto;
    text-align: center;
}
#gift .gift-ttl {
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(transparent 60%, #f2cf39 0%);
    display: inline;
    padding: 0 1px 0px;
}
#gift .gift-list {
    display: grid;
    row-gap: 4rem;
    margin-top: 4rem;
}
#gift .txt {
    font-size: 1.6rem;
    line-height: 2;
    text-align: left;
}
#gift figure img {
    border-radius: 6rem;
    margin-bottom: 2rem;
}
#gift .ttl {
    font-size: 1.6rem;
    font-weight: 600;
}
@media only screen and (min-width: 769px) {
    #gift .gift-ttl + .txt {
        text-align: center;
    }
    #gift .gift-list {
        max-width: 1200px;
        margin: 0 auto;
        grid-template-columns: repeat(2,1fr);
        column-gap: 3rem;
        align-items: flex-start;
    }
    #gift .gift-list li {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        column-gap: 3rem;
        background-color: cornsilk;
        padding: 3rem;
    }
    #gift .ttl {
        text-align: left;
    }
    #gift figure img {
        margin-bottom: 0;
    }
    #gift .lp-btn {
        margin: 2rem 0 0;
    }
}

/* item */
.category_section{
    padding: 3rem 0;
}
.category_section .container .header_area{
    width: 90%;
    margin: 0 auto 2rem;
    text-align: center;
}
.category_section .container .header_area .ttl{
    font-size: 2rem;
    font-weight: 600;
}
.category_section .container .header_area .ttl:before {
    content: attr(data-num) ".";
    font-size: 3rem;
    font-style: italic;
    font-weight: 600;
    color: #f2cf39;
    margin-right: .5em;
}
.category_section .container .header_area .txt {
    font-size: 1.6rem;
    line-height: 2;
}
@media only screen and (min-width: 769px) {
    .category_section{
	padding: 5rem 0 0;
    }
    .category_section .container {
        max-width: 1200px;
    }
    .category_section .container .header_area{
        margin: 0 auto 4rem;
    }
}

.category_section .container .item_area{
    position: relative;
}
.category_section .item_area .container .box{
    margin: 0 0 5rem 0;
}
.category_section .item_area .container .box .thumb{
    display: block;
    width: 300px;
    height: 300px;
    overflow: hidden;
    border-radius: 1.5rem;
    background: #fff;
    margin: 0 auto 2rem;
}
.category_section .item_area .container .box .thumb img{
    transition: all 0.5s;
}
.category_section .item_area .container .box a:hover .thumb img{
    transform: scale(1.1);
    transition: all 0.5s;
    opacity: 0.7;
}
.category_section .item_area .container .box .info_area {
    margin: 0 0 1.5rem 0;
    text-align: center;
}
.category_section .item_area .container .box .info_area .name{
    font-weight: bold;
    font-size: 1.8rem;
}
.category_section .item_area .container .box .info_area .txt {
    font-size: 1.6rem;
    line-height: 2;
    background-color: #f8f7f6;
    display: inline-block;
    padding: 0 1.5rem;
    border-radius: 3rem;
    margin: 0;
}
.category_section .item_area .container .box .info_area .price{
    font-size: 1.6rem;
}
.category_section .item_area .container .box .color ul{
    display: flex;
    justify-content: center;
}
.category_section .item_area .container .box .color ul li{
    margin: 0 4px;
    font-size: 1.8rem;
}
.category_section.category02{
    background: #fffdee;
}
.category_section.category02 .item_area .container .box .info_area .txt {
    background-color: #fff;
}
@media only screen and (min-width: 769px) {
    .category_section .item_area .container{
        width: 826px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        column-gap: 5rem;
        flex-wrap: wrap;
    }
    .category_section .item_area .container .box{
        margin: 0 0 5rem 0;
    }
    .category_section .item_area .container .box .thumb{
        width: 360px;
        height: 360px;
    }
    .category_section .item_area .container .box .info_area{
        margin: 0 0 1rem 0;
    }
    .category_section .item_area .container .box .color ul li{
        font-size: 2.7rem;
    }
}

/* priceselection */
.priceselect_section{
    padding: 4rem 0 5rem;
    width: 90%;
    margin: 0 auto;
}
.priceselect_section .ttl{
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 4rem;
    color: gray;
}
.priceselect_section .ttl img {
    margin-bottom: 1rem;
}
.priceselect_section ul{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 2rem;
    row-gap: 2rem;
}
.priceselect_section ul li a:hover{
    opacity: 0.65;
}
@media only screen and (min-width: 769px) {
    .priceselect_section{
	max-width: 1200px;
    }
    .priceselect_section .ttl {
        font-size: 2.4rem;
    }
    .priceselect_section .ttl img {
        width: 56.8rem;
        display: block;
        margin: auto;
    }
    .priceselect_section ul{
        grid-template-columns: repeat(4,1fr);
        column-gap: 6rem;
    }
    .priceselect_section ul li a img{
            transition: all 0.4s;
    }
    .priceselect_section ul li a:hover img{
            transform: translate(0, -15px);
    }
}

/* aboutkanmi */
.aboutkanmi_section{
    background: #fbfbfb;
    padding: 3rem 0;
}
.aboutkanmi_section .container{
    width: 90%;
    margin: 0 auto 2rem;
}
.aboutkanmi_section .container div{
    text-align: center;
    padding: 2rem 0 0 0;
}
.aboutkanmi_section .container div .blue{
    background: #004f71;
    color: #fff;
    font-size: 1.6rem;
    padding: 4px 15px 3px;
    display: inline-block;
    margin: 0 0 2rem 0;
}
.aboutkanmi_section .container div .shopname{
    font-weight: bold;
    font-size: 3.5rem;
    font-family: 'Montserrat', sans-serif;
    margin: 0 0 3rem 0;
}
.aboutkanmi_section .container div .access,
.aboutkanmi_section .container div .open,
.aboutkanmi_section .container div .traffic {
    padding: 0 0 0 4rem;
    font-weight: bold;
    line-height: 1.9em;
    margin: 0 0 2rem 0;
    text-align: left;
    font-size: 1.4rem;
    background-position: top left;
    background-size: 2.5rem;
    background-repeat: no-repeat;
}
.aboutkanmi_section .container div .access{
    background-image: url(img/flag.png);
}
.aboutkanmi_section .container div .open{
    background-image: url(img/clock.png);
}
.aboutkanmi_section .container div .traffic{
    background-image: url(img/train.png);
    margin-bottom: 3rem
}
.aboutkanmi_section .container.btnarea{
    justify-content: center;
}
.aboutkanmi_section .btn {
    display: block;
    border: 1px solid #f2cf39;
    border-radius: 3rem;
    font-weight: bold;
    font-size: 1.6rem;
    padding: 1.5rem 2rem;
    text-align: center;
}
@media only screen and (min-width: 769px) {
    .aboutkanmi_section{
	padding: 5rem 0;
    }
    .aboutkanmi_section .container{
        max-width: 1200px;
        display: grid;
        grid-template-columns: 50rem 1fr;
        align-items: center;
        margin: 0 auto 5rem;
    }
    .aboutkanmi_section .container div{
        padding: 0 0 0 5rem;
        text-align: left;
    }
    .aboutkanmi_section .btn {
        font-size: 1.8rem;
        width: 36rem;
    }   
    .aboutkanmi_section .btn:hover{
        color: #fff;
        background: #f2cf39;
    }
}

/* itemcolor */
#item04 .color li:nth-child(1){
    color: #63443B;
}
#item04 .color li:nth-child(2){
    color: #E4D3C1;
}
#item04 .color li:nth-child(3){
    color: #AC6B1B;
}
#item04 .color li:nth-child(4){
    color: #A3462C;
}
#item04 .color li:nth-child(5){
    color: #2F3037;
}
#item04 .color li:nth-child(6){
    color: #514934;
}
#item04 .color li:nth-child(7){
    color: #2A3741;
}
#item04 .color li:nth-child(8){
    color: #8E603C;
}
#item05 .color li:nth-child(1){
    color: #AD312F;
}
#item05 .color li:nth-child(2){
    color: #596438;
}
#item05 .color li:nth-child(3){
    color: #343434;
}
#item05 .color li:nth-child(4){
    color: #785C51;
}
#item05 .color li:nth-child(5){
    color: #A26C3D;
}
#item05 .color li:nth-child(6){
    color: #BD591B;
}
#item06 .color li:nth-child(1){
    color: #A3462C;
}
#item06 .color li:nth-child(2){
    color: #514934;
}
#item06 .color li:nth-child(3){
    color: #2F3037;
}
#item06 .color li:nth-child(4){
    color: #E4D3C1;
}
#item06 .color li:nth-child(5){
    color: #AC6B1B;
}
#item07 .color li:nth-child(1){
    color: #878E7C;    
}
#item07 .color li:nth-child(2){
    color: #3B2B28;
}
#item07 .color li:nth-child(3){
    color: #837569;
}
#item07 .color li:nth-child(4){
    color: #6E463C;
}
#item07 .color li:nth-child(5){
    color: #B7683D;
}
#item08 .color li:nth-child(1){
    color: #AD312F; 
}
#item08 .color li:nth-child(2){
    color: #596438;
}
#item08 .color li:nth-child(3){
    color: #343434;
}
#item08 .color li:nth-child(4){
    color: #785C51;
}
#item08 .color li:nth-child(5){
    color: #835435;
}
#item08 .color li:nth-child(6){
    color: #BD591B;
}
#item09 .color li:nth-child(1){
    color: #AD312F; 
}
#item09 .color li:nth-child(2){
    color: #596438;
}
#item09 .color li:nth-child(3){
    color: #343434;
}
#item09 .color li:nth-child(4){
    color: #785C51;
}
#item09 .color li:nth-child(5){
    color: #835435;
}
#item09 .color li:nth-child(6){
    color: #BD591B;
}
#item10 .color li:nth-child(1){
    color: #AD312F; 
}
#item10 .color li:nth-child(2){
    color: #596438;
}
#item10 .color li:nth-child(3){
    color: #343434;
}
#item10 .color li:nth-child(4){
    color: #785C51;
}
#item10 .color li:nth-child(5){
    color: #BD591B;
}

/* footer */
#footer{
    padding: 3rem 0 1rem;
}
#footer .container{
    text-align: center;
}
#footer .container img {
    width: 20rem;
}
#footer .copy{
    text-align: center;
    font-size: 11px;
    padding: 20px 0 0 0;
}
#page-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: 20px;
}
#page-top a {
    background: #f49e9d;
    color: #fff;
    width: 3.5rem;
    height: 3.5rem;
    padding: 2px 0;
    text-align: center;
    display: block;
    border-radius: 50%;
}
@media only screen and (min-width: 900px) {
    #footer{
	padding: 50px 0 15px;
    }
    #footer .container{
        display: flex;
        justify-content: center;
    }
    #footer .container ul{
        padding: 0 0 0 50px;
    }
    #footer .container ul li{
        font-size: 14px;
    }
    #footer .copy{
        padding: 30px 0 0 0;
    }
    #page-top {
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }
    #page-top a {
        width: 5rem;
        height: 5rem;
    }
    #page-top a:hover {
        text-decoration: none;
        background: #f9c3c2;
    }
}