@charset "UTF-8";
/* CSS Document */
html{
    font-size: 62.5%;
}
body{
    display: none;
    font-family:'Cormorant Infant','Noto Serif JP', serif;
    color: #474747;
    letter-spacing: .05em;
    font-size: 1.4rem;
    line-height: 1.92;
    font-weight: 400;
    margin: 0;
    font-feature-settings: "palt";
}
a{
    color: inherit;
    text-decoration: none;
    transition: all .1s;
}
a:hover{
    opacity: .6;
}
main{
    width: 100%;
    margin: 0 auto;
}
figure{
    position: relative;
}
figcaption{
    font-size: .7rem;
    position: absolute;
    bottom: 5px;
    right: 5px;
    color: #fff;
    text-align: right;
    text-shadow: 2px 2px 2px #000, -2px -2px 2px #000, -2px 2px 2px #000, 2px -2px 2px #000;
    line-height: 1.6;
}
.container{
    padding-top: 80px;
}

/*fade-in*/
 .fadein {
  opacity: 0;
  transform : translate(0, 10px);
  transition : all 1000ms;
}
.fadein.scrollin{
  opacity: 1;
  transform: translate(0, 0);
}

@media only screen and (max-width: 767px) {
    body{
        font-size: 1.3rem;
    }
    .container{
        padding-top: 75px;
    }
}
/*ヘッダー--------------------------------------------------------------------------------*/
#header{
    width: 100%;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.9);
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    transition: .3s;
}
#header .inner{
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 80px;
    align-items: center;
    padding: 0 4%;
    box-sizing: border-box;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: .1rem;
}
#header .logo a{
    width: 100%;
    height: auto;
    display:flex;
    align-items: center;
}
#header .logo{
    max-width: 100px;
    width: 100%;
}
@media only screen and (max-width: 767px) {
    #header .inner{
        height: 75px;
        display: block;
    }
    #header .logo {
        max-width: 90px;
        display: block;
        height: auto;
        top: 30px;
        left: 50%;
        width: 100px;
        transform: translateX(-50%);
        position: absolute;
    }
}
/*グローバルナビ---------------------------------------------------------------------------------*/
.hamburger,.globalMenuSp{display: none;}
.globalMenuPc {
    max-width: 700px;
    width: 100%;
    z-index: 3;
}
.globalMenuPc ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 480px;
    width: 100%;
    box-sizing: border-box;
}
.globalMenuPc li{
    width: 25%;
    position: relative;
    transition: .2s all;
    text-align: center;
}
.globalMenuPc a{
    display: block;
}
/*ドロップダウン*/
.has_child ul{
	position: absolute;
	left:50%;
	top:55px;
	z-index: 4;
	visibility: hidden;
	opacity: 0;
	transition: all .4s;
    display: block;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background: rgba(255,255,255,.9);
    min-width: 240px;
    width: 100%;
    box-shadow: 0px 2px 10px rgb(216 215 222 / 60%);
}
.has_child li{
    display: block;
    text-align: center;
    margin: 0 auto;
    position: relative;
    border-bottom: 1px solid #ededed;
    padding: 6% 0;
    width: 100%;
}
.has_child .ttl:hover{
    opacity: 1;
    cursor: pointer;
}
/*hoverしたら表示*/
.has_child:hover > ul,
.has_child ul li:hover > ul,
.has_child:active > ul,
.has_child ul li:active > ul{
  visibility: visible;
  opacity: 1;
    cursor: pointer;
}

/*ふわっと出現させるためのCSS*/
/*　上に上がる動き　*/

#header.UpMove{
	position: fixed;
	width:100%;
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 1;
	transform: translateY(0);
  }
  to {
    opacity: 0;
	transform: translateY(-100px);
  }
}
/*　下に下がる動き　*/

#header.DownMove{
	position: fixed;
	width:100%;
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}
@media only screen and (max-width: 767px) {
    .globalMenuPc{
      display: none;
    }
    .hamburger {
      position: absolute;
      display : block;
      z-index : 999;
      right : 13px;
      top   : 12px;
      width : 40px;
      height: 40px;
      cursor: pointer;
      text-align: center;
    }
    .hamburger span {
      display : block;
      position: absolute;
      width   : 30px;
      height  : 1px ;
      left    : 6px;
      background : #474747;
      -webkit-transition: 0.3s ease-in-out;
      -moz-transition   : 0.3s ease-in-out;
      transition        : 0.3s ease-in-out;
    }
    .hamburger span:nth-child(1) {
      top: 10px;
    }
    .hamburger span:nth-child(2) {
      top: 20px;
    }
    .hamburger span:nth-child(3) {
      top: 30px;
    }

    /* ナビ開いてる時のボタン */
    .hamburger.active span:nth-child(1) {
      top : 16px;
      left: 6px;
      -webkit-transform: rotate(-45deg);
      -moz-transform   : rotate(-45deg);
      transform        : rotate(-45deg);
    }

    .hamburger.active span:nth-child(2),
    .hamburger.active span:nth-child(3) {
      top: 16px;
      -webkit-transform: rotate(45deg);
      -moz-transform   : rotate(45deg);
      transform        : rotate(45deg);
    }

    nav.globalMenuSp {
      position: fixed;
      z-index : 997;
      top  : 0;
      right: 0;
      color: #474747;
      background: rgba(255,255,255,.9);
      text-align: center;
      transform: translateX(100%);
      transition: all 0.6s;
      width: 100%;
      display: block;
      height: 100vh;
    }
    nav.globalMenuSp ul {
      margin: 0 auto;
      padding: 120px 0 0 0;
    }

    nav.globalMenuSp ul li {
      list-style-type: none;
      padding: 0;
      width: 100%;
        
    }
    nav.globalMenuSp ul li:last-child {
      padding-bottom: 0;
      border-bottom: none;
    }
    nav.globalMenuSp ul li a {
      display: block;
      color: #333;
      text-decoration :none;
      font-size: 2rem;
     letter-spacing: .1em;
        padding: 3% 0;
        font-weight: 500;
        
    }
    nav.globalMenuSp ul li a:hover{
        box-shadow: none;
    }
    /* このクラスを、jQueryで付与・削除する */
    nav.globalMenuSp.active {
      transform: translateX(0%);
        right: 0
    }
	.has_child ul,
	.has-child ul ul{
  	position: relative;
	top:0;
	width:100%;
	visibility:visible;
	opacity:1;
	display: none;
	transition:none;
    background-color: #f5f5f5;
    box-shadow: none;
}
    .has_child.active ul{
        padding: 10px 0 0 0;
    }
	
}

/*フッター ----------------------------------------------------------------------*/

footer{
    background-color: #474747;
}
footer .inner{
    max-width: 1080px;
    width: 84%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}
footer .logo a:first-child{
    width: 100px;
}
footer .left .logo{
    min-width: 100px;
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}
footer .left a{
    display: flex;
    align-items: center;    
}
footer .left a:last-child{
    width: 17px;
    padding-left: 16px;
}
footer .right{
    color: #fff;
    font-size: 1.3rem;
    min-width: 100px;
    width: 100%;
    margin: 0 auto;
    text-align: right;
}
@media only screen and (max-width: 767px) {
    footer .inner{
        height: 80px;
    }
    footer .copy{
        font-size: 1.2rem;
    }
    footer .logo a:first-child{
    width: 80px;
}
}





.shop_link{
    position: fixed;
    right: -1px;
    writing-mode: vertical-rl;
    background: #A92E3A;
    color: #fff;
    padding: 10px 2px 10px 5px;
    font-size: 20px;
    font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
    font-weight: 300;
    align-content: center;
    border: 1px solid #fff;
    box-shadow: 0px 2px 5px rgb(0 0 0 / 38%);
    z-index: 1;
}
.shop_link::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 32px;
  background-image: url('../../common/img/cart.png');
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: -19px;
  margin-bottom: 9px;
  vertical-align: middle;
}

@media only screen and (max-width: 767px) {
.shop_link {
    padding: 12px 11px 12px 15px;
    bottom: 0;
    }
.shop_link span{
    display: none;
    }
.shop_link::before {
    margin-bottom:0;
    width: 44px;
    height: 40px;
    }
}

