@charset "UTF-8";
/* CSS Document */
/* ブラウザスタイル初期化用ＣＳＳ */

/*font*/
/*@font-face {
	font-family: 'MyFont';
	src: url("font/YuMincho.ttc");
}
@font-face {
	font-family: 'MyFontEN';
	src: url("font/Kyokasho.ttc");
}*/

@font-face {
	font-family: 'MyYuMinchoM';
	font-weight: normal;
	src: local('YuMincho-Medium'), /* PostScript Name = localの正式な指定方法 */
	local('Yu Mincho Medium'),     /* PostScript Nameを認識できないChrome用にFull Nameを指定 */
	local('YuMincho-Regular');     /* 游ゴシックMediumが存在しないWindows8.1用 */
}
@font-face {
	font-family: 'MyYuMinchoM';
	font-weight: bold;
	src: local('YuMincho-Bold'), /* PostScript Name = localの正式な指定方法 */
	local('Yu Mincho');          /* PostScript Nameを認識できないChrome用にFull Nameを指定 */
}
@font-face {
	font-family: 'MyYuGothicM';
	font-weight: normal;
	src: local('YuGothic-Medium'), /* PostScript Name = localの正式な指定方法 */
	local('Yu Gothic Medium'),     /* PostScript Nameを認識できないChrome用にFull Nameを指定 */
	local('YuGothic-Regular');     /* 游ゴシックMediumが存在しないWindows8.1用 */
}
@font-face {
	font-family: 'MyYuGothicM';
	font-weight: bold;
	src: local('YuGothic-Bold'), /* PostScript Name = localの正式な指定方法 */
	local('Yu Gothic');          /* PostScript Nameを認識できないChrome用にFull Nameを指定 */
}

html {
  width: 100%;
  height: 100%;
  background: white;
  overflow: auto;
}
body{
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: auto;
  font-size: 0;
  line-height: 0;
  background-color: #ffffff;
  overflow-x: hidden;
  font-family: 'Noto Serif JP', serif, "Meiryo","メイリオ","ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  -webkit-text-size-adjust: 100%;
  color: #171717;
}
body *{
  box-sizing: border-box;
}
h1,h2,h3,h4,h5,h6,p,pre,blockquote,ul,ol,li,dl,dt,dd{
  margin: 0px;
  padding: 0px;
  font-family: 'Noto Serif JP', serif, "Meiryo","メイリオ","ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}
li,dt,dd{
  list-style-type: none;
}
p {
  margin: 0;
}
img {
  border: 0;
  border: none;
}
a:hover{
  text-decoration: none;
}
.en1{
  font-family: 'Poiret One', cursive;
}
.en2{
  font-family: 'Lato', sans-serif;
}
.yg{
  font-family :
	MyYuGothicM, /* Windows調整用 */
	YuGothic,    /* Mac用 */
	sans-serif;
}
a:hover, a:focus{
	color:#aa8e17;
	text-decoration:none;
}

/*top*/
body{
  background: #EDF1F2;
}

body.fixed{
  position: fixed;
  width:100%;
}

/*ハンバーガーメニュー*/
#nav{
  /*height: 100px;
  display: block;
  z-index: 9999999;
  width: 750px;
  position: static;*/
}
#nav .nav_bg.active{
  background: rgba(39,38,38,0.6);
  height: 100vh;
  width: 100%;
  position: absolute;
  z-index: 999;
  /*opacity: 0.6;*/
  /*animation: fadeIn 0.2s ease 0.3s 1 normal;*/
}
#nav .nav_btn{
  position: absolute;
  right: 38px;
  cursor: pointer;
  z-index: 10000;
}
#idx #nav .nav_btn{
  top: 100px;
}
#kasou #nav .nav_btn{
  top: 40px;
}
#nav .nav_btn .menu-trigger,
#nav .nav_btn .menu-trigger span {
  display: inline-block;
  transition: transform .4s;
  box-sizing: border-box;
}
#nav .nav_btn .menu-trigger {
  position: relative;
  width: 50px;
  height: 50px;
}
#nav .nav_btn .menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #171717;
  border-radius: 4px;
}
#nav .nav_btn .menu-trigger span:nth-of-type(1) {
  top: 0;
}
#nav .nav_btn .menu-trigger span:nth-of-type(2) {
  top: 20px;
}
#nav .nav_btn .menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(20px) rotate(-45deg);
}
#nav .nav_btn .menu-trigger.active span:nth-of-type(2) {
  -webkit-transform: translateY(0px) rotate(45deg);
  transform: translateY(0px) rotate(45deg);
}

#nav .menu_ttl{
  font-size: 40px;
  padding-left: 20px;
  padding-top: 28px;
  line-height: 40px;
  display: none;
}

/*メニュー中身*/
.nav_cnt{
  position: absolute;
  font-size: 10px;
  line-height: 10px;
  top: 0;
  right: 0;
  background: white;
  width: 70%;
  height: 100vh;
  z-index: 9999;
  padding: 150px 30px 0;
  overflow-y: scroll;
  display: none;
}
.nav_cnt.out{
  display: block;
  animation: SlideOut 0.8s;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-100%);
}
/* CSSアニメーションの設定 */
@keyframes SlideOut {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;/*初期状態では透明に*/
    transform: translateX(64px);
    z-index: -9999;
  }
}
/* CSSアニメーションの指定 */
.nav_cnt.in{
  display: block;
  animation: SlideIn 0.8s;
  opacity: 1;
}

/* CSSアニメーションの設定 */
@keyframes SlideIn {
  0% {
    opacity: 0;/*初期状態では透明に*/
    transform: translateX(64px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.nav_cnt ul li.nav_cnt_ttl{
  font-size: 40px;
  margin-top: 56px;
  line-height: 40px;
}
.nav_cnt ul li.nav_cnt_ttl::after{
  content: '+';
  margin-left: 18px;
  font-size: 40px;
  line-height: 40px;
  color: #707070;
  position: absolute;
  top: 0px;
  left: 258px;
}
.nav_cnt ul li.nav_cnt_ttl.on::after{
  content: '';
  width: 30px;
  height: 2px;
  margin-top: 20px;
  background-color: #707070;
}
.nav_cnt ul li.c_point{
  cursor: pointer;
  position: relative;
}
.nav_cnt ul li:first-child.nav_cnt_ttl{
  margin-top: 0px;
}
.nav_cnt ul li.nav_cnt_ttl:first-child::after{
  content: '';
}
.nav_cnt ul .sub_menu{
  margin-top: 66px;
  margin-left: 54px;
  display: none;
}
.nav_cnt ul .sub_menu ul li{
  font-size: 28px;
  line-height: 40px;
  margin-bottom: 35px;
}
.nav_cnt ul .sub_menu ul li span{
  margin-right: 31px;
}
#nav .nav_cnt .sns{
  margin-top: 99px;
  margin-bottom: 150px;
}
#nav .nav_cnt .sns a{
  margin-right: 40px;
}


#content{
  max-width: 750px;
  margin: 0 auto;
  background: white;
  position: relative;
  overflow-x: hidden;
}
#content #main{
    height: 1100px;
    position: relative;
    padding-top: 30px;
}
/*#content #main .main_ttl h1{
  font-size: 62px;
  line-height: 90px;
  padding-left: 44px;
  position: absolute;
  z-index: 1;
}*/
#content #main .main_ttl img{
  position: absolute;
  left: 45px;
  top: 86px;
}
#content #main .main_copy{
  position: absolute;
  bottom: 286px;
  left: 151px;
}
#content #main .main_copy p{
  font-size: 32px;
  line-height: 70px;
  color: #FFFFFF;
}
#content #main .main_scroll{
  position: absolute;
  bottom: 36.8px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
#content #main .main_scroll .scroll_txt{
  position: relative;
  margin-bottom: 8px;
}
#content #main .main_scroll p{
  text-align: center;
  font-size: 26px;
  line-height: 26px;
  color: #FFFFFF;
  margin-bottom: 10px;
  position: absolute;
  /* top: 0; */
  /* left: 40%; */
  margin-top: -150px;
  margin-left: -45px;
}
#content #main .main_scroll img{
  margin-bottom: 120px;
  margin-left: 0px;
}
.scroll_icon{
  position: relative;
}
.inner {
  overflow: hidden;
  position: relative;
  position: absolute;
  top: -126px;
  left: 50%;
  width: 15px;
  background: url("img/scroll.png");
  height: 125px;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: bottom;
  animation: inner 2s cubic-bezier(.4, 0, .2, 1) forwards infinite;
}

/*.inner:before {
  animation: inner 2s cubic-bezier(.4, 0, .2, 1) forwards infinite;
  background: #fff;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}*/

@keyframes inner {
  0% {
    height: 0px;
  }
  100% {
    height: 125px;
  }
}

#content #main .main_img{
  position: relative;
  z-index: 0;
}
#content #main .main_img img{
  position: absolute;
  top: 139px;
  right: 0;
  z-index: 1;
  animation  : bgAnime 15s infinite;  /* 画像枚数 × 各5s */
  opacity: 0;
}
#content #main .main_img img.img1 {
  animation-delay  : 10s;
}
#content #main .main_img img.img2 {
  animation-delay  : 5s;
}
#content #main .main_img img.img3 {
  
}
/*フェードイン・アウト*/
@keyframes bgAnime{
  0% {
    animation-timing-function: ease-in;/*ゆっくり表示される*/
    opacity: 0;
  }
  15% {
    animation-timing-function: ease-out;/*表示された*/
    opacity: 1;
  }
  38% {
    opacity: 1;/*＊表示期間*/
  }
  48% {
    opacity: 0;/*次の画像で消えている*/
  }
  100% {
    opacity: 0;/*表示されていない時間*/
  }
}

#content #sub_copy{
  padding: 0px 111px;
  margin-bottom: 25px;
}
#content #sub_copy p{
  font-size: 30px;
  line-height: 68px;
  color: #171717;
  margin-bottom: 75px;
}

#content #top{
  padding: 0px 65px;
  position: relative;
  max-width: 750px;
  width: 100%;
}
#content #top .cnt .cnt_img{
  width: calc(48.2% - 23px / 2);
  margin: 0px 45px 40px 0px;
  display: inline-block;
  position: relative;
}
#content #top .cnt div:nth-of-type(2n){
  margin-right: 0px;
}
#content #top .cnt .new::before{
  content: url("../../img/common/new_icon.png");
  position: absolute;
  top: 0;
  left: 0;
  width: 98px;
  z-index: 99;
}
#content #top .bnr{
  margin: 60px 0px 100px;
}
#content #top .bnr a{
  width: 100%;
}

#content .caution_btm {
  font-size: 22px;
  line-height: 1.46;
  margin: 75px 0 100px;
  color: #707070;
}

/*コンテンツパラパックス*/
/*1.フェードインアニメーションの指定*/
.scrollanime {opacity: 0;} /*一瞬表示されるのを防ぐ*/
.fadeInDown {
    animation-name: fadeInDown;
    animation-duration: 3s;
    animation-fill-mode: forwards;
}
#idx .fadeInDown:nth-child(even) {
    animation-delay: 0.4s;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
    }
    100% {
    opacity: 1;
    transform: translate(0);
    }
}

/*2.上下の動きを指定*/
.downup {transform: translateY(100px);}

/*pagetop*/
.pagetop{
  display: none;
  position: fixed;
  /* top: 0; */
  right: 50%;
  bottom: 20px;
  margin-right: -360px;
}

/*下層*/
#kasou .cnt{
  padding-top:136px;
}
#kasou .cnt h2{
  font-size: 38px;
  line-height: 60px;
  margin-bottom: 45px;
}
#kasou .cnt dl{
  font-size: 26px;
  line-height: 29px;
  color: #707070;
  margin-bottom: 42px;
}
#kasou .cnt dl dt,#kasou .cnt dl dd{
  display: inline-block;
}
#kasou .cnt dl dt{
  margin-right: 45px;
  font-weight: normal;
}
#kasou #content #top .cnt img{
  width: 100%;
  margin: 0px;
}
#kasou #content #top .cnt .main_img{
  margin-bottom: 53px;
  position: relative;
}
#kasou #content #top .cnt .main_img::after{
  content: "";
  width: 2px;
  height: 70px;
  background: #707070;
  display: block;
  margin: -30px auto;
  position: absolute;
  left: 50%;
}
#kasou #content #top .cnt p.txt{
  font-size: 30px;
  line-height: 55px;
  margin-bottom: 54px;
}
#kasou #content #top .cnt p.brand_name{
  font-size: 36px;
  line-height: 36px;
  margin-bottom: 17px;
}
#kasou #content #top .cnt p.name{
  font-size: 26px;
  line-height: 26px;
}
#kasou #content #top .cnt h3{
  font-size: 37px;
  line-height: 60px;
  margin-bottom: 45px;
  margin-top: 100px;
}
#kasou #content #top .cnt h3::after{
  content: '';
  width: 70px;
  height: 2px;
  background-color: #707070;
  display: block;
  margin-top: 31px;
}
#kasou #content #top .cnt p.caption{
  font-size: 26px;
  line-height: 31px;
  color: #707070;
  margin: 37px 0px 34px !important;
}
#kasou #content #top .cnt .spec{
  font-size: 26px;
  line-height: 29px;
  margin-bottom: 78px;
}
#kasou #content #top .cnt .spec p{
  margin-bottom: 19px;
}
#kasou #content #top .cnt .line::after{
  content: '';
  width: 2px;
  height: 70px;
  margin: 0 auto;
  display: block;
  background: #707070;
}
#kasou #profile{
  background: #F0F0F0;
  padding: 85px 64px;
}
#kasou #profile .prof_cnt img{
  display: block;
  margin: 0 auto;
}
#kasou #profile .prof_cnt img.prof_ttl{
  margin-bottom: 38px;
}
#kasou #profile .prof_cnt p.prof_name{
  font-size: 48px;
  line-height: 69px;
  margin: 0px 0px 0px;
  text-align: center;
}
#kasou #profile .prof_cnt p.prof_name_en{
  font-size: 28px;
  margin-bottom: 43px;
  text-align: center;
}
#kasou #profile .prof_cnt p.prof_name_cap{
  font-size: 26px;
  line-height: 59px;
  color: #707070;
  text-align: center;
}
#kasou #profile .prof_cnt p{
  font-size: 30px;
  line-height: 55px;
  text-align: left;
}
#kasou #nav .menu_ttl{
  display: block !important;
}
/*#kasou #nav .nav_btn{
  top: 20px !important;
}*/

/*バナー*/
#other{
  padding: 100px 65px;
}



/*footer*/
#footer{
  padding: 50px 60px;
  max-width: 750px;
}
footer dl, footer div{
  width: 100%;
  margin: 0px;
}
ul.footer_link{
  margin-bottom: 10px;
}
ul.footer_link_child{
  margin-top: 10px;
  padding-left: 1.5em;
}

/*20200817*/
#content #top .cnt .line{
  margin-bottom: 20px;
}

/*20200826*/
.cnt_img a {
    display: block;
}
.cnt_img a:hover{
	/*background:rgba(170,142,23,0.8);*/
}
.cnt_img img{
	width:100%;
}


/* クリスマスケーキ仕様追加 ▼ ここから ▼ */
.nav_cnt ul.menu {
  margin-bottom: 0;
}
.nav_cnt ul.menu li:first-of-type {
  font-size: 40px;
  font-family: 'Poiret One', cursive;
  margin-bottom: 140px;
}
.nav_cnt li {
  font-size: 32px;
  font-family: MyYuGothicM,	YuGothic, sans-serif;
  letter-spacing: 0.2em;
  margin-bottom: 70px;
}
.nav_cnt ul li.nav_cnt_ttl::after {
  display: none;
}
.nav_cnt ul li.new_window::after {
  content: "";
  background-image: url(../img/common/nav_window.png);
  background-size: 23px auto;
  background-repeat: no-repeat;
  display: inline-block;
  width: 23px;
  height: 24px;
}
.nav_cnt ul.link li {
  margin-bottom: 50px;
}
#content #main .main_img img {
  height: 880px;
  width: 640px;
}
#content #main .main_scroll {
  left: 65px;
}
#content #main .main_scroll img {
  margin-bottom: 30px;
  margin-left: -15px;
}
div.scroll_icon {
	background-color: black;
	width: 2px;
	height: 232px;
}
div.scroll_icon span {
	display: block;
	background-color: black;
	width: 4px;
	height: 60px;
	animation: scroll 2s ease-in 0s infinite normal none;
}
@keyframes scroll {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(172px);
	}
	100% {
		transform: translateY(172px);
	}
}
#content #sub_copy {
  padding: 0;
}
#content #sub_copy h1 {
  font-size: 36px;
  line-height: 64px;
  text-align: center;
  margin-bottom: 25px;
}
#content #sub_copy h1 span {
  display: block;
  letter-spacing: 0.2em;
}
#content #sub_copy h1 span:first-child {
  font-size: 50px;
}
#content #sub_copy p {
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 60px;
  text-align: center;
  margin-bottom: 55px;
}
#content #sub_copy p span {
  font-size: 44px;
}
#content #sub_copy p img {
  position: relative;
  top: -7px;
  left: -7px;
}
#content #sub_copy p.reserve_online {
  font-size: 26px;
  line-height: 50px;
  margin-bottom: 70px;
}
#content #sub_copy p.reserve_online span:first-child {
  font-size: 28px;
  display: block;
}
#content #sub_copy p.reserve_online span {
  font-size: 34px;
}
#content #sub_copy p.reserve_online img {
  position: relative;
  top: -5px;
  left: -9px;
  width: 22px;
  height: auto;
}
.reserve_online_btn {
  margin-left: 40px;
}
#content #top {
  margin: 100px auto;
}
#content #yoyaku img {
  width: 100%;
}
.topline {
  background-color: black;
  display: flex;
  width: 2px;
  height: 70px;
  margin: auto;
}
.category_ttl {
  text-align: center;
  margin: 48px auto 60px;
}
.annotation {
  margin: 65px 65px 0;
}
.annotation.tokusyu{
	margin: 65px 0px 0px;
}
.annotation p {
  font-size: 27px;
  color: #707070;
  line-height: 1.8;
}
.annotation p.color_red {
  color: #F52747;
}
#other .bnr_alcohol {
  margin: 0 0 50px -65px ;
}
#other .bnr_online {
  margin: 0 0 50px 0 ;
}
#other .bnr_online img {
  width: 100%;
}
/* 下層 */
#kasou .cnt.cake_cnt {
  padding: 0;
}
.cake_mv {
  margin: 0 -65px;
}
#kasou .cnt.cake_cnt h2 {
  font-size: 32px;
  letter-spacing: 0.2em;
  line-height: 58px;
  text-align: center;
  margin: 50px auto;
}
#kasou .item_box {
  margin-top: 120px;
}
#kasou .item_box:first-of-type {
  margin-top: 64px;
}
#kasou .item_box p {
  font-size: 30px;
  line-height: 50px;
  margin-bottom: 45px;
}
#kasou .item_box p.item_cutimg {
  text-align: center;
  width: 100%;
  margin: 0 auto 45px;
}
#kasou .item_box p.item_shopbtn {
  margin: 0 -24px 0 20px;
  display: none;
}
section[id^="orderItem"]:has(img[alt*="Webでのお取り扱いはできません"]) .item_shopbtn {
  display: none;
}
#kasou .item_box ul {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 45px;
}
#kasou .item_box ul li {
  font-family: MyYuGothicM,	YuGothic, sans-serif;
}
#kasou .item_box ul.item_data li.item_size {
  margin-right: 0.25em;
}
#kasou .item_box ul.item_data li.item_size,
#kasou .item_box ul.item_data li.item_price {
  display: inline-block;
}
#kasou .item_box ul.item_data li.item_price span {
  font-size: 36px;
}
#kasou .item_box ul.item_date {
  font-size: 26px;
  margin-bottom: 35px;
}
#kasou #content #top .cnt .item_box img.img_width_s {
  width: 70%;
}
#kasou #yoyaku {
  text-align: center;
}

/* クリスマスケーキ仕様追加 ▲ ここまで ▲ */






@media screen and (min-width:1024px){
  html {
    overflow-x: hidden;
  }
	#kasou .cnt h2{
	    font-size: 26px;
    	line-height: 50px;
		margin-bottom: 20px;
	}
	#kasou .cnt dl{
		font-size:18px;
	}
	#content #sub_copy p{
		font-size: 30px;
		line-height: 60px;
	}
	#kasou #content #top .cnt p.brand_name{
		font-size: 22px;
		line-height: 22px;
	}
	#kasou #content #top .cnt p.name{
		font-size: 18px;
		line-height: 22px;
	}
	#kasou #content #top .cnt h3{
		font-size: 26px;
		line-height: 50px;
		margin-top: 60px;
	}
	#kasou #content #top .cnt h3::after{
		margin-top: 20px;
	}
	#kasou #content #top .cnt p.txt{
		font-size: 18px;
		line-height: 38px;
	}
	#kasou #content #top .cnt p.caption{
		font-size: 16px;
		line-height: 26px;
		margin: 17px 0px 24px !important;
	}
	#kasou #content #top .cnt .spec{
		font-size: 18px;
		line-height:18px;
	}
	#kasou #content #top .cnt .spec .s1{
		font-size: 22px;
		line-height:22px;
	}
	#content .caution_btm {
		font-size: 18px;
		line-height: 1.46;
		margin: 75px 0 75px;
	}
	#kasou #profile .prof_cnt p.prof_name_cap {
    	font-size: 22px;
    	line-height: 50px;
	}
	#kasou #profile .prof_cnt p.prof_name {
		font-size: 26px;
		line-height: 40px;
	}
	#kasou #profile .prof_cnt p.prof_name_en {
    	font-size: 22px;
    	margin-bottom: 20px;
	}
	#kasou #profile .prof_cnt p{
		font-size: 18px;
    	line-height: 35px;
  }

  /* クリスマスケーキ仕様追加 ▼ ここから ▼ */
  .annotation p {
    font-size: 16px;
  }
  /* 下層 */
  #kasou .item_box p {
    font-size: 18px;
    line-height: 36px;
    margin-bottom: 50px;
  }
  #kasou .item_box ul {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 25px;
  }
  #kasou .item_box ul.item_data li.item_price span {
    font-size: 22px;
  }
  #kasou .item_box ul.item_date {
    font-size: 16px;
    margin-bottom: 30px;
  }
  #kasou .item_box p.item_cutimg {
    width: 84%;
  }
  /* クリスマスケーキ仕様追加 ▲ ここまで ▲ */

}

/*footer*/
@media screen and (max-width:750px){
	#footer{
		padding: 50px 60px 80px 60px;
	}
	#footer ul.footer_link{
		font-size: 29px;
    	line-height: 49px;
	}
	#footer .f_cmp,#footer .f_toi{
		margin-bottom:20px;
	}
	#footerBody .footer-copyright{
		text-align: center;
	}
	#footerBody .footer-copyright small{
		font-size: 24px;
	}
	footer a:not(.totop)::before{
		width: 1.5rem;
   		height: 1.5rem;
    	margin-right: 1rem;
	}
}

.nav_cnt_ttl_notes {
    font-size: 20px;
    line-height: 1.5;
    padding-top: 15px;
    display: block;
}

#yoyaku {
  padding-top: 130px;
  margin-top: -100px;
}