/* common */
html {
    scroll-behavior: smooth;
}
body {
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
    overflow-x: hidden;
}
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 #ee3e43;
    width: 70%;
    background-color: #fff;
    text-align: center;
    line-height: 5rem;
    font-size: 1.4rem;
    font-weight: 600;
    margin: auto;
}
.f-min {
    font-family: "shippori-mincho", sans-serif;
    font-weight: 500;
    font-style: normal;
    letter-spacing: .1em;
}
.txt {
    font-size: 1.5rem;
    line-height: 2;
}
.marker {
    display: inline;
    background:linear-gradient(transparent 40%, #c9e5f7 60%);
    background-repeat: no-repeat;

  /* マーカーの横方向を0にして縮める */
  background-size: 0% 100%;

  /* マーカーが引かれる速度を指定 */
  transition:background-size 1.5s;
}
.marker.on {
    background-size: 100% 100%;
}
.fadein {
    opacity: 0;
    transition: 2s;
}
.fadein.is-show {
    opacity: 1;
}
.icon {
    background-color: #39bddb;
    color: #fff;
    padding: 4px 8px;
    font-size: 1rem;
}
@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;
    }
}

/* top */
#intro {
    padding: 0 calc(4% + 5px) 5rem;
}
#intro .top-ttl {
    font-size: 2.1rem;
    line-height: 2;
    letter-spacing: 0;
}
#intro .top-txt {
    font-size: 1.6rem;
    line-height: 2;
}
@media only screen and (min-width: 769px) {
    #intro {
        max-width: 1200px;
        margin: 0 auto 5rem;
        padding: 0 5px;
        text-align: center;
    }
}

/* novelty */
.novelty-wrap {
    padding: 2rem calc(4% + 5px) 5rem;
    background-color: lightblue;
    color: #fff;
}
.novelty-wrap .ttl {
    text-align: center;
    font-size: 2.1rem;
    border-top: 4px double yellow;
    border-bottom: 4px double yellow;
    display: block;
    max-width: 700px;
    margin: 3rem auto;
    padding: 5px 1rem;
}
.novelty-wrap .flex {
    display: grid;
    grid-template-columns: 50% 1fr;
    column-gap: 2rem;
}
.novelty-wrap .date {
    font-size: 1.6rem;
}
.novelty-wrap .under-txt {
    border-top: 1px dotted #39bddb;
    padding-top: 2rem;
}
.novelty-wrap .under-txt .icon {
    font-size: 1.4rem;
}
.novelty-wrap .img img {
    border-radius: 2rem;
}
@media only screen and (max-width: 768px) {
    .novelty-wrap .flex {
        align-items: center;
    }
    .novelty-wrap .under-txt {
        grid-area: 2 / span 2;
        
        margin-top: 2rem;
        text-align: center;
    }
}
@media only screen and (min-width: 769px) {
    .novelty-wrap {
        padding: 5rem 0;
    }
    .novelty-wrap .flex {
        max-width: 700px;
        margin: auto;
        grid-template-rows: 1fr 1fr;
    }
    .novelty-wrap .img {
        grid-area: span 2 / 1;
    }
    .novelty-wrap .txt-wrap {
        grid-area: 1 / 2;
        place-content: end;
    }
    .novelty-wrap .under-txt {
        grid-area: 2 / 2;
    }
}

/* leather */
#leather {
    padding: 5rem calc(4% + 5px);
}
#leather .ttl {
    font-size: 2.1rem;
    padding-bottom: 2rem;
}
#leather .flex {
    display: grid;
    grid-template-columns: 1fr 50%;
    column-gap: 2rem;
    align-items: center;
}
@media only screen and (min-width: 769px) {
    #leather {
        padding: 5rem 0;
    }
    #leather .ttl {
        text-align: center;
    }
    #leather .flex {
        max-width: 700px;
        margin: auto;
    }
}

/* scene */
#scene {
    padding: 5rem calc(4% + 5px);
}
#scene > .ttl {
    font-size: 2.1rem;
    padding-bottom: 2rem;
    text-align: center;
}
#scene .list {
    display: grid;
    row-gap: 3rem;
}
#scene .list:nth-child(2) {
    border-bottom: 1px dashed #47B1C1;
    padding-bottom: 4rem;
    margin-bottom: 4rem;
}
#scene .list .txt-wrap .ttl {
    font-size: 1.8rem;
}
#scene .list-item .img {
    text-align: center;
}
#scene .list-item img {
    margin-bottom: 2rem;
}
.icon-arrow {
    color: #2697df;
}
@media only screen and (max-width: 768px) {
    #scene .list-item {
        display: grid;
        column-gap: 2rem;
        align-items: center;
    }
    #scene .list li:nth-of-type(odd) .list-item {
        grid-template-columns: 50% 1fr;
    }
    #scene .list li:nth-of-type(even) .list-item {
        grid-template-columns: 1fr 50%;
    }
    #scene .list li:nth-of-type(even) .txt-wrap {
        order: 1;
        text-align: right;
    }
    #scene .list li:nth-of-type(even) .img {
        order: 2;
    }
    .icon-arrow {
        animation: fluffy 3s infinite;
    }
    @keyframes fluffy {
        0%, 100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-20px);
        }
      }
}
@media only screen and (min-width: 769px) {
    #scene .list {
        margin: auto;   
    }
    #scene .list:nth-child(2) {
        max-width: 970px;
        grid-template-columns: repeat(4,1fr);
        justify-content: center;
        column-gap: 3rem;
    }
    #scene .list:nth-child(2) .list-item {
        text-align: center;
    }
    #scene .list:nth-child(2) .txt-wrap .ttl {
        margin-top: 2rem;
    }
    #scene .list:nth-child(3) {
        max-width: 450px;
    }
    #scene .list:nth-child(3) .list-item {
        display: grid;
        column-gap: 2rem;
        align-items: center;
        grid-template-columns: 50% 1fr;
    }
    #scene .list-item img {
        transition: all 0.4s;
    }
    #scene .list-item:hover img {
        transform: translate(0, -20px);
    }
}

/* item */
.category_section .container .header_area .top-txt {
    font-size: 2rem;
    line-height: 2;
}
@media only screen and (max-width: 768px) {
    .category_section{
        padding: 3rem 0;
    }
    .category_section .container .header_area{
	margin: 0 0 20px 0;
	text-align: center;
    }
    .category_section .container .header_area .number{
            width: 20%;
            margin: 0 auto 15px;
    }
    .category_section .container .header_area .number img{
            max-width: 100%;
    }
    .category_section .container .header_area .top-txt {
            width: 95%;
            margin: 0 auto;
    }
}

@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;
        display: flex;
	justify-content: center;
	align-items: center;
        column-gap: 4rem;
    }
}

.category_section .container .item_area {
    position: relative;
}
.category_section.plus_section .item_area .container {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    column-gap: 15px;
    width: 155%;
    margin: 0 15px;
}
.category_section .item_area .container .box{
    margin: 0 0 5rem 0;
}
.category_section:not(.plus_section) .item_area .container .box .thumb{
    display: block;
    width: 300px;
    height: 375px;
    overflow: hidden;
    border-radius: 1.5rem;
    background: #fff;
    margin: 0 auto 2rem;
}
.category_section.plus_section .item_area .container .box .thumb img {
    border-radius: 1.5rem;
}
.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.plus_section .item_area .container .box .color ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, 31px);
    justify-content: center;
}
.category_section .item_area .container .box .color ul li{
    margin: 0 4px;
    font-size: 1.8rem;
}
section.bg {
    background: #F3FAFB;
}
.category_section.category02 .item_area .container .box .info_area .txt {
    background-color: #fff;
}
@media only screen and (max-width: 768px) {
    .category_section.plus_section .item_area {
        overflow-x: scroll;
    }
}
@media only screen and (min-width: 769px) {
    .category_section .item_area .container{
        width: 826px;
        margin: 0 auto;
        display: grid;
        justify-content: center;
        column-gap: 5rem;
        grid-template-columns: repeat(2,1fr);
    }
    .category_section.plus_section .item_area .container {
        width: 100%;
        margin: 0;
    }
    .category_section .item_area .container .box{
        margin: 0 0 5rem 0;
    }
    .category_section:not(.plus_section) .item_area .container .box .thumb{
        width: 360px;
        height: 450px;
    }
    .category_section.plus_section .item_area .container .box .thumb {
        display: block;
        width: 280px;
        height: auto;
        border-radius: 1.5rem;
        overflow: hidden;
    }
    .category_section.plus_section .item_area .container .box .thumb img {
        object-fit: cover;
        object-position: top;
    }
    .category_section .item_area .container .box .info_area{
        margin: 0 0 1rem 0;
    }
    .category_section.plus_section .item_area .container .box .color ul {
        grid-template-columns: repeat(auto-fit, 37px);
    }
    .category_section .item_area .container .box .color ul li{
        font-size: 2.7rem;
    }
}

/* about */
.about_section{
    padding: 6rem 0;
}
.about_section .about_handmade_section{
    width: 87%;
    margin: 0 auto 5rem;
}
.about_section .about_handmade_section .main{
    background: url(https://kanmi.itembox.design/item/lp/mothersday2025/img/handmade_bg_middle.webp) 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;
    }
}

/* faq */
#faq {
    padding: 5rem 0;
}
#faq .container {
    width: 87%;
    margn: auto;
}
#faq .ttl {
    font-size: 2.1rem;
    padding-bottom: 2rem;
    text-align: center;
}
#faq .faq-wrap {
    display: grid;
    row-gap: 2rem;
}
#faq .faq-item {
    padding: 3rem;
    background-color: #fff;
}
#faq .faq-ttl {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.75;
    padding: 0 0 3rem 6rem;
    position: relative;
    border-bottom: 1px dashed #47B1C1;
    margin-bottom: 3rem;
}
#faq .faq-ttl:before {
    content: "Q";
    font-size: 4rem;
    position: absolute;
    top: -.5rem;
    left: 0;
    line-height: 1;
}
#faq dd {
    margin: 0;
}
#faq .faq-item .txt {
    font-size: 1.6rem;
    padding: 0 0 0 6rem;
    position: relative;
}
#faq .faq-item .txt:before {
    content: "A";
    color: #CBD6E2;
    font-size: 4.4rem;
    position: absolute;
    top: 1rem;
    left: .2rem;
    line-height: 5.2rem;
}
@media only screen and (min-width: 900px) {
    #faq .faq-item {
        padding: 4rem 16rem;
    }
    #faq .faq-ttl {
        font-size: 1.8rem;
        padding: 1rem 0 3.5rem 6.6rem;
    }
    #faq .faq-ttl:before, #faq .faq-item .txt:before {
        font-size: 3.5rem;
        top: .5rem;
    }
    #faq .faq-item .txt {
        padding: 0 0 0 6.6rem;
    }
}

/* 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(https://kanmi.itembox.design/item/lp/mothersday2025/img/flag.webp);
}
.aboutkanmi_section .container div .open{
    background-image: url(https://kanmi.itembox.design/item/lp/mothersday2025/img/clock.webp);
}
.aboutkanmi_section .container div .traffic{
    background-image: url(https://kanmi.itembox.design/item/lp/mothersday2025/img/train.webp);
    margin-bottom: 3rem
}
.aboutkanmi_section .container.btnarea{
    justify-content: center;
}
.aboutkanmi_section .btn {
    display: block;
    border: 1px solid #2697df;
    border-radius: 3rem;
    font-weight: bold;
    font-size: 1.6rem;
    padding: 1.5rem 2rem;
    text-align: center;
}
.aboutkanmi_section .container iframe {
    width: 100%;
}
.aboutkanmi_section .container #calendar {
    text-align: left;
}
@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: #ee3e43;
    }
    .aboutkanmi_section .container div.shopmap,
    .aboutkanmi_section .container div#calendar {
        padding-left: 0;
    }
}


/* itemcolor */
#scene01 .item_area .box:nth-child(1) .color li:nth-child(1),
#scene01 .item_area .box:nth-child(2) .color li:nth-child(1),
#scene02 .item_area .box:nth-child(1) .color li:nth-child(1),
#scene02 .item_area .box:nth-child(2) .color li:nth-child(1),
#scene03 .item_area .box:nth-child(2) .color li:nth-child(1){
    color: #506441;
}
#scene01 .item_area .box:nth-child(1) .color li:nth-child(2),
#scene01 .item_area .box:nth-child(2) .color li:nth-child(2),
#scene01 .item_area .box:nth-child(3) .color li:nth-child(2),
#scene01 .item_area .box:nth-child(4) .color li:nth-child(1),
#scene02 .item_area .box:nth-child(1) .color li:nth-child(2),
#scene02 .item_area .box:nth-child(2) .color li:nth-child(2),
#scene03 .item_area .box:nth-child(1) .color li:nth-child(1),
#scene03 .item_area .box:nth-child(2) .color li:nth-child(2),
#scene03 .item_area .box:nth-child(3) .color li:nth-child(1){
    color: #7E3A23;
}
#scene01 .item_area .box:nth-child(1) .color li:nth-child(3),
#scene01 .item_area .box:nth-child(2) .color li:nth-child(3),
#scene01 .item_area .box:nth-child(3) .color li:nth-child(3),
#scene01 .item_area .box:nth-child(4) .color li:nth-child(2),
#scene02 .item_area .box:nth-child(2) .color li:nth-child(3),
#scene03 .item_area .box:nth-child(2) .color li:nth-child(3),
#scene03 .item_area .box:nth-child(3) .color li:nth-child(2){
    color: #222222;
}
#scene01 .item_area .box:nth-child(1) .color li:nth-child(4),
#scene01 .item_area .box:nth-child(2) .color li:nth-child(4),
#scene01 .item_area .box:nth-child(3) .color li:nth-child(4),
#scene01 .item_area .box:nth-child(4) .color li:nth-child(4),
#scene02 .item_area .box:nth-child(1) .color li:nth-child(3),
#scene02 .item_area .box:nth-child(2) .color li:nth-child(4),
#scene03 .item_area .box:nth-child(2) .color li:nth-child(4),
#scene03 .item_area .box:nth-child(3) .color li:nth-child(3){
    color: #5A392A;
}
#scene01 .item_area .box:nth-child(1) .color li:nth-child(5),
#scene01 .item_area .box:nth-child(2) .color li:nth-child(5),
#scene01 .item_area .box:nth-child(3) .color li:nth-child(5),
#scene01 .item_area .box:nth-child(4) .color li:nth-child(5),
#scene02 .item_area .box:nth-child(1) .color li:nth-child(4),
#scene02 .item_area .box:nth-child(2) .color li:nth-child(5),
#scene03 .item_area .box:nth-child(1) .color li:nth-child(2),
#scene03 .item_area .box:nth-child(2) .color li:nth-child(5),
#scene03 .item_area .box:nth-child(3) .color li:nth-child(4){
    color: #E3DFCC;
}
#scene01 .item_area .box:nth-child(3) .color li:nth-child(1),
#scene01 .item_area .box:nth-child(4) .color li:nth-child(3){
    color: gray;
}

/* .plus_section.bg .color {
    background-color: #fff;
    border-radius: 1rem;
} */
.plus_section.bg .box:nth-child(2) .color,
.plus_section.bg .box:nth-child(3) .color {
    padding: 0 0 1rem;
}

.plus_section .box:nth-child(2) .color li:nth-child(1){
    color: #7E4D39;
}
.plus_section .box:nth-child(2) .color li:nth-child(2){
    color: darkgreen;
}
.plus_section .box:nth-child(2) .color li:nth-child(3){
    color: darkorange;
}
.plus_section .box:nth-child(2) .color li:nth-child(4){
    color: gray;
}

/* footer */
#footer{
    padding: 3rem 0 1rem;
    background-color: #F3FAFB !important;
}
#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: #2697df;
    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;
    }
}