@charset "utf-8";
/* CSS Document */
html,
body {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.5;
  color: #444444;
  background-color: #d3d3d3;
}
@media screen and (min-width: 960px) {
    body {
      font-size: 15px;
    }
}
h2{
 font-size: 18px;
 letter-spacing: 1px;
 text-align: center;
 font-weight: normal;
}
@media screen and (min-width: 960px) {
     h2{
         font-size: 24px;
    }
}
h3{
 font-size: 16px;
 letter-spacing: 1px;
 text-align: center;
 font-weight: normal;
}
@media screen and (min-width: 960px) {
  h3{
         font-size: 20px;
    }
}
p{
    text-align: justify;
    line-height: 2;
}
@media screen and (min-width: 960px) {
  p{
         line-height: 2;
    }
}
.header{
    background: linear-gradient(rgba(0,0,0,0.35),rgba(0,0,0,0.35)),url("../images/mv-sub.jpg") no-repeat;
    background-size: cover;
    height: 183px;
    width: 100%;
    color: #d3d3d3;
    position: relative;
}
@media screen and (min-width: 960px) {
    .header{
        background: linear-gradient(rgba(0,0,0,0.35),rgba(0,0,0,0.35)),url("../images/mv-sub-pc.jpg") no-repeat;
    background-size: cover;
        height: 242px;
        width: 100%;
    }
}
.header-inner{
    padding: 15px 20px;
    margin: 0 auto;
}
@media screen and (min-width: 960px) {
    .header-inner{
    padding: 50px 120px;
    margin: 0 auto;
    }
}
.online-shop a{
    border: solid 1px #d3d3d3;
    padding: 13px;
}
.logo-shop{
    display: flex;
    justify-content: space-between;
}
.online-shop{
    margin-top: 15px;
}

@media screen and (min-width: 960px) {
     .logo a > img{
        width: 130px;
        height: 116px;
    }
}
.sub-mv{
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 100px;
}
.sub-mv-img{}
.sub-mv-txt{
}
.sub-mv-ttl{
    display: flex;
   align-items: center;
    gap: 20px;
}
.sub-mv-line{
    display: block;
    height: 1px;
    width: 20px;
    background: #d3d3d3;
}
.breadcrumb{
    display: none;
}
@media screen and (min-width: 960px) {
    .breadcrumb{
        display: block;
    }
   .ttl-breadcrumb{
     display: flex;
     flex-direction: row-reverse;
       align-items: center;
    }
    #product .breadcrumb-txt{
        border-bottom: solid 0.5px #b4b4b4;
        padding-bottom: 10px;
    }
    #feature .breadcrumb-txt{
        border-bottom: solid 0.5px #b4b4b4;
        padding-bottom: 10px;
    }
    #contact .breadcrumb-txt{
        border-bottom: solid 0.5px #b4b4b4;
        padding-bottom: 10px;
    }
}
/*inner*/
.inner{
    width: calc(315 / 375 * 100%);
    margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .inner{
    width: calc(1200 / 1440 * 100%);
    max-width: 1200px;
    margin: 0 auto;
}
}
/*footer*/
.footer{
    padding: 30px 30px 5px 30px;
    background-color: #444444;
    color: #d3d3d3;
}
@media screen and (min-width: 960px) {
 .footer{
    padding-top: 100px;
     padding-bottom: 10px;
     padding-left: 180px;
      padding-right: 180px;
}
}
.footer-logo a > img{
    width: 61px;
    height: 61px;
    margin: 0 auto;
    margin-bottom: 30px;
} 
@media screen and (min-width: 960px) {
    .footer-logo a > img{
        width: 115px;
    height: 111px;
    }
    .footer-logo{
        margin: 0 auto;
    }
}
.footer-nav-items li{
   display: grid;
    grid-template-columns: auto 40px auto;
    grid-template-areas:
        "no li tx";
    justify-self: start;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 10px;
}
.footer-no,
.footer-txt{
	display: block;
	line-height: 1;
}
@media screen and (min-width: 960px) {
    .footer-nav-items li{
        margin-bottom: 20px;
    }
}
.footer-no{
    grid-area: no;
}
.footer-line{
    height:1px;
    background: #b4b4b4;
    display: block;
    grid-area: li;
    width: 100%;
}
.footer-txt{
    grid-area: tx;
}
.insta{
    display: flex;
    gap: 10px;
    margin-top: 25px;
    margin-bottom: 50px;
}
.copy{
    font-size: 10px; 
}
@media screen and (min-width: 960px) {
    .copy,
    .copy p{
        text-align: center;
    }
}
img.clip-img.bottom{
  display:block;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transition: -webkit-clip-path .9s ease, clip-path .9s ease;
}
img.clip-img.bottom.reveal{
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}