@charset "utf-8";

/* base style */

body {
  margin: 0;
  font-family: "Noto Sans JP", "Helvetica Neue","Helvetica","Hiragino Sans","Hiragino Kaku Gothic ProN","Arial","Yu Gothic","Meiryo",sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  background-color: #e5e2e2;
}
@media (max-width: 992px){
  body {
  max-width: 992px;
  margin: 0;
  font-family: "Noto Sans JP", "Helvetica Neue","Helvetica","Hiragino Sans","Hiragino Kaku Gothic ProN","Arial","Yu Gothic","Meiryo",sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  
}
}

header {
  background-color: #fff;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  position: fixed; /*何にも左右されずに固定される*/
  z-index: 10;
  top: 0;
  left: 0;
}
@media (max-width: 992px){
  header {
  background-color: #fff;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  position: fixed; /*何にも左右されずに固定される*/
  z-index: 10;
  top: 0;
  left: 0;
}
}

.header-logo{
  margin: 0;
}

.header-logo img{
  max-width: 120px;
}
@media (max-width: 992px){
  .header-logo img{
  max-width: 80px;
}
}

.header-navlist{
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 150px;
}

/* .header-navitem{

} */

.header-navitem > a{
  display: block;
  padding: 20px;
  color: #333;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  border-bottom: 2px solid transparent;
  transition: border-color .25s;
}

.header-navitem > a:hover{
  border-bottom: 2px solid #333;
}

.header-navitem.has-dropdown {
  position: relative;
}

/* ドロップダウンリストのスタイル */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  padding: 10px 0;
  min-width: 230px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border: 1px solid #777;
  border-radius: 6px;
  z-index: 1000;
}

/* 吹き出しの三角形 */
.dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 20px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #777;
}

/* リスト内のリンク */
.dropdown li {
  padding: 0;
}

.dropdown li a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s;
}

.dropdown li a:hover {
  background: #f0f0f0;
}

/* ホバー時に表示 */
.header-navitem.has-dropdown:hover .dropdown {
  display: block;
}





/* headerのサイト名（デモの参考値） */

/* 全体調整CSS */
.hamburger-demo-menubox *{
	font-size: 16px;
}
.hamburger-demo-menubox li{
	font-size: 14px;
}
/* hamburgerここから */
	/* inputを非表示 */
.input-hidden{
	display: none;
}
	/* label */
.hamburger-demo-switch{
	cursor: pointer;
	position: absolute;
	right: 3%;
	align-items: center; /* ハンバーガーアイコンの位置（上から） */
	z-index: 9999;
	width: 4em; /* アイコン（クリック可能領域）の幅 */
	height: 4em; /* アイコン（クリック可能領域の）高さ */
}
/* メニュー展開時にハンバーガーアイコンを固定 */
#hamburger-demo1:checked ~ .hamburger-demo-switch{
	position: fixed;
}
/* ハンバーガーアイコン */
.hamburger-switch-line1, .hamburger-switch-line1:before, .hamburger-switch-line1:after{
	width: 25px;
	height: 3px;
	background: #333; /* ハンバーガーアイコンの色 */
	position: absolute;
	top: 50%;
	left: 50%;
	transition: .3s;
	content: "";
}
.hamburger-switch-line1{
		transform: translate(-50%, -50%);
}
.hamburger-switch-line1:before{
	transform: translate(-50%, -300%);
}
.hamburger-switch-line1:after{
	transform: translate(-50%, 200%);
}
/* ハンバーガーアイコン･アニメーション */
#hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1{
	width: 0;
}
#hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1:before{
	transform: rotate(45deg) translate(-40%, 325%);
}
#hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1:after{
	transform: rotate(-45deg) translate(-40%, -325%);
}
/* メニューエリア */
.hamburger-demo-menuwrap{
	position: fixed;
	height: 100%;
	background: #fafafa; /* メニューエリアの背景色 */
	padding: 5em 3% 2em;
	z-index: 9998;
	transition: .3s;
	overflow-y: scroll; /* メニュー内容が多い場合に縦スクロールする */
	top: 0;
	left: 100%;
	width: 70%;
}
/* メニューリスト */
.hamburger-demo-menulist{
	margin-right: 3%;
	padding-left: 5% !important; /* !important不要な場合もあり */
	list-style: none;
}
.hamburger-demo-menulist li a{
	text-decoration: none;
	color: #333; /* メニューリストの文字色 */
	display: block;
  margin: 0;
	padding: .5em 0;
  font-size: 24px;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: border-color .25s;
}
@media (max-width: 992px){
  .hamburger-demo-menulist li a{
	text-decoration: none;
	color: #333; /* メニューリストの文字色 */
	display: block;
  margin: 0;
	padding: .5em 0;
  font-size: 18px;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: border-color .25s;
}
}

.hamburger-demo-menulist li a:hover{
  color: #000;
  font-weight: bold;
  border-bottom: 2px solid #333;
}

/* メニューエリア･アニメーション */
	/* 右から */
#hamburger-demo1:checked ~ .hamburger-demo-menuwrap{
	left: 80%;
}

@media (max-width: 992px){
  #hamburger-demo1:checked ~ .hamburger-demo-menuwrap{
	left: 35%;
}
}

	/* コンテンツカバー */
#hamburger-demo1:checked ~ .hamburger-demo-cover{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 9997;
	background: rgba(3,3,3,.5);
	display: block;
}


@media (max-width: 992px){
  .header-nav{
    display: none;
  }
}

.menu-title {
  text-align: center;
  background-color: #e60000;
  color: white;
  padding: 100px 10px 20px;
}
@media (max-width: 992px){
  .menu-title {
  text-align: center;
  background-color: #e60000;
  color: white;
  width: 100%;
  padding: 80px 15px 5px;
}
}

.menu-title h1 {
  font-size: 48px;
  margin-bottom: 5px;
}
@media (max-width: 992px){
  .menu-title h1 {
  font-size: 36px;
  margin-bottom: 5px;
}
}

.menu-title p{
  font-size: 24px;
}
@media (max-width: 992px){
  .menu-title p{
  font-size: 18px;
}
}

.service-time-select-nav{
  display: flex;
  justify-content: center; /* 中央揃え */
  align-items: center;      /* 垂直方向にも中央揃えしたい場合 */
  gap: 8rem;                /* ボタン間にスペースを作りたい場合 */
  margin: 0 auto;
  padding: 40px 0;
}
@media (max-width: 992px){
  .service-time-select-nav{
  display: flex;
  justify-content: center; /* 中央揃え */
  align-items: center;      /* 垂直方向にも中央揃えしたい場合 */
  gap: 0.5rem;                /* ボタン間にスペースを作りたい場合 */
  margin: 0 auto;
  padding: 40px 0;
}
}

.button_solid014 a{
  text-decoration: none;
  background: #eee;
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 400px;
  height: 80px;
  padding: 10px 25px;
  color: #313131;
  transition: 0.3s ease-in-out;
  font-size: 36px;
  font-weight: 600;
  box-shadow: 5px 5px 0 #6bb6ff;
  border-radius: 50px;
}
@media (max-width: 992px){
  .button_solid014 a{
  text-decoration: none;
  background: #eee;
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 120px;
  height: 30px;
  padding: 10px 25px;
  color: #313131;
  transition: 0.3s ease-in-out;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 5px 5px 0 #6bb6ff;
  border-radius: 50px;
}
}

.button_solid014 a:hover {
  background-color: #b3d9ff;
  box-shadow: 0 0 0;
  transform: translate(5px, 5px);
}
.button_solid014 a:after {
    position: absolute;
    top: 50%;
    right: 20px;
    transition: 0.2s ease-in-out;
    content: "";
    width: 10px;
    height: 10px;
    border-top: 3px solid #543618;
    border-right: 3px solid #543618;
    transform: rotate(45deg) translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}


/* menu-about */

.menu-about{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 50px;
  background: #f9f5f0;
  gap: 60px;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  margin: 60px 250px 100px;
}
@media (max-width: 992px){
  .menu-about{
  display: flex;
  flex-direction: column;
  max-width: 400px; 
  padding: 20px;    
  position: relative;
  background: #f9f5f0;
  gap: 10px; 
  border-radius: 8px;
  justify-content: center;
  margin: 30px 10px 20px;
  text-align: center;
}
}


.sub-headline{
  font-size: 48px;
  font-weight: 700;
  color: #e60000;
  margin-bottom: 24px;
  border-left: 8px solid #e60000;
  padding-left: 16px;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 992px){
  .sub-headline{
  font-size: 20px;
  position: relative;
  line-height: 22px;
  margin: 10px 0 20px 0;
  color: #e60000;
  
}
}


.menu-about .sub-text{
  font-size: 24px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 32px;
  max-width: 600px;
  text-align: center;
}
@media (max-width: 992px){
  .menu-about .sub-text{
  width: 300px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 10px 0;
  line-height: 1.6;
}
}

.menu-about .sub-text-attention{
  font-size: 20px;
  color: #666;
  line-height: 1.6;
  background: #fff0e6;
  padding: 16px;
  border-left: 4px solid #e6a600;
  border-radius: 8px;
  max-width: 640px;
}
@media (max-width: 992px){
  .menu-about .sub-text-attention{
  width: 320px;
  position: relative;
  bottom: 12px;
  line-height: 14px;  
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  background: #fff0e6;
  padding: 10px 20px;
  border-left: 4px solid #e6a600;
  border-radius: 8px;
  text-align: left;
  font-weight: bold;
}
}


.menu-about .main-image img{
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
@media (max-width: 992px){
  .menu-about .main-image img{
  width: 250px;
  height: 150px;
  position: relative;
  margin: 0 20px 0 10px;
  object-fit: cover;
  transition: 0.3s;
}
}

.menu-about .main-image:hover img{
  transform: scale(1.05);
}

.menu-sets {
  max-width: 1350px;
  margin: 100px auto;
  font-family: "Helvetica Neue", sans-serif;
  color: #333;
  padding: 0 20px;
}
@media (max-width: 992px){
  .menu-sets {
  max-width: 900px;
  margin: 50px auto;
  font-family: "Helvetica Neue", sans-serif;
  color: #333;
  padding: 0 20px;
}
}



/* pizza-service-time */

.menu-sets .pizza-service-time{
  display: flex;
  justify-content: space-between;
  padding: 60px 120px;
  padding: auto 200px;
}
@media (max-width: 992px){
  .menu-sets .pizza-service-time{
  display: flex;
  flex-direction: column;  
  padding: 20px;
}
}

.menu-sets .pizza-service-time .service-time-text h2{
  font-size: 48px;
  color: #a13d00;
}
@media (max-width: 992px){
  .menu-sets .pizza-service-time .service-time-text h2{
  font-size: 25px;
  color: #a13d00;
}
}

.menu-sets .pizza-service-time .service-time-text p{
  font-size: 42px;
}
@media (max-width: 992px){
 .menu-sets .pizza-service-time .service-time-text p{
  font-size: 30px;
} 
}

.menu-sets .pizza-service-time .service-time-text h3{
  font-size: 32px;
}
.menu-sets .pizza-service-time .service-time-text h3 a{
  font-size: 32px;
  color: #333;
}
@media(max-width:992px){
  .menu-sets .pizza-service-time .service-time-text h3 a{
  font-size: 20px;
  color: #333;
}
}


@media (max-width: 992px){
  .menu-sets .pizza-service-time .service-time-text h3{
  font-size: 19px;
}
}

.menu-sets .pizza-service-time .service-time-text h4{
  font-size: 28px;
  color: #e60000;
}
@media (max-width: 992px){
  .menu-sets .pizza-service-time .service-time-text h4{
  font-size: 14px;
  color: #e60000;
}
}



.pizza-service-time{
  background-color: #fff8eb;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 40px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.pizza-service-time .service-time-text p{
  font-weight: bold;
}

.menu-sets .happy-hour{
  font-size: 20px;
  color: #097b92;
}





.menu-sets .drinkbar{
  display: flex;
  justify-content: space-between;
  padding: 60px 120px;
  padding: auto 200px;
}
@media (max-width: 992px){
  .menu-sets .drinkbar{
  display: flex;
  flex-direction: column;  
  padding: 30px 60px;
}
}

.menu-sets .drinkbar .drinkbar-text h2{
  font-size: 48px;
  color: #a13d00;
}
@media (max-width: 992px){
  .menu-sets .drinkbar .drinkbar-text h2{
  font-size: 20px;
  color: #a13d00;
}
}

.menu-sets .drinkbar .drinkbar-text p{
  font-size: 30px;
}
@media (max-width: 992px){
 .menu-sets .drinkbar .drinkbar-text p{
  font-size: 18px;
} 
}

.drinkbar img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  margin-top: 16px;
}
@media (max-width: 992px){
  .drinkbar img {
  width: 200px;
  height: 100px;
  border-radius: 12px;
  margin-top: 16px;
}
}

.drinkbar{
  background-color: #fff8eb;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 40px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.drinkbar .drinkbar-text p{
  font-weight: bold;
  @media (min-width: 992px){
    .break{
      display: none;
    }
  }
}
@media (max-width: 992px){
  .drinkbar .drinkbar-text p{
  font-weight: bold;
  font-size: 24px;
}
}

.set-about{
  background-color: #fff8eb;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 40px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}
@media (max-width: 992px){
  .set-about{
  background-color: #fff8eb;
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}
}

.menu-set-headline{
  font-size: 24px;
}
@media (max-width: 992px){
  .menu-set-headline{
  font-size: 12px;
}
}

.menu-set-headline span{
  font-size: 36px;
  color: #a13d00;
}
@media (max-width: 992px){
  .menu-set-headline span{
  font-size: 18px;
  color: #a13d00;
}
}

@media (min-width: 992px){
    .break{
      display: none;
    }
  }

.menu-set-box{
  display: flex;
  justify-content: center;  
}

.menu-set-box h6{
  font-size: 48px;
}
@media (max-width: 992px){
  .menu-set-box h6{
  font-size: 24px;
}
}

.menu-set-detail{
  margin: 0 auto;
  padding: 0 20px;
  background-color: #f6d6c1;;
  border-radius: 20px;
}
@media (max-width: 992px){
  .menu-set-detail{
  padding: 10px;
  border-radius: 20px;
  max-width: 100px;
}
}

.menu-set-detail h4{
  font-size: 28px;
}
@media (max-width: 992px){
  .menu-set-detail h4{
  font-size: 12px;
}
}

.menu-set-detail h5{
  font-size: 18px;
}
@media (max-width: 992px){
  .menu-set-detail h5{
  font-size: 10px;
}
}

.menu-set-box .menu-set-detail img{
  width: 200px;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 20px;
}
@media (max-width: 992px){
  .menu-set-box .menu-set-detail img{
  width: 90px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  margin-left: -5px;
}
}

.categories-kids{
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px){
  .categories-kids{
  display: flex;
  flex-direction: column;
}
}

.menu-sets .set-kids{
  max-width: 800px;
  padding-bottom: 100px;
}
@media (max-width: 992px){
  .menu-sets .set-kids{
  max-width: 500px;
  max-height: 450px;
}
}

.menu-sets .set-kids-less{
  max-width: 450px;
}
@media (max-width: 992px){
  .menu-sets .set-kids-less{
  max-width: 200px;
  margin: 0 2px;
}
}


@media (max-width: 992px){
  .set-kids-less .menu-set-detail{
  border-radius: 20px;
  max-width: 150px;
}
}



.menu-sets .set-kids-less .menu-set-headline h3{
  font-size: 28px;
}
@media (max-width: 992px){
  .menu-sets .set-kids-less .menu-set-headline h3{
  font-size: 16px;
}
}



@media (max-width: 992px){
  .menu-sets .set-kids-less .menu-set-box .menu-set-detail{
    width: 300px;
    text-align: center;
  }
}

@media (max-width: 992px){
  .menu-sets .set-kids-less .menu-set-box .menu-set-detail h4{
    font-size: 14px;
  }
}

@media (max-width: 992px){
  .menu-sets .set-kids-less .menu-set-box .menu-set-detail h5{
    font-size: 11px;
  }
}

@media (max-width: 992px){
  .menu-sets .set-kids-less .menu-set-box .menu-set-detail img{
    max-width: 135px;
    height: 80px;
    margin-left: 20px;
  }
}

.menu-sets .set-kids-less h6{
  font-size: 12px;
  @media (min-width: 992px){
    .break{
      display: none;
    }
  }
}

.menu-set-headline p{
  font-weight: bold;
}

.menu-set-detail .dolce-image-and-text{
  display: flex;
  margin-bottom: 20px;
}
@media (max-width: 992px){
  .menu-set-detail .dolce-image-and-text{
    display: flex;
    flex-direction: column;
}
}

@media (max-width: 992px){
  .menu-set-detail .dolce .set-box-headline h4{
    font-size: 16px;
}
}



/* footer */

.site-footer {
  background-color: #f9f9f9;
  padding: 40px 20px 20px;
  text-align: center;
  font-size: 14px;
  color: #333;
  border-top: 1px solid #ddd;
  max-width: 100%;
}
@media(max-width:992px){
  .site-footer {
  background-color: #f9f9f9;
  padding: 20px 5px 20px;
  text-align: center;
  font-size: 14px;
  color: #333;
  border-top: 1px solid #ddd;
  max-width: 100%;
}
}


footer .footer-nav-box{
  margin: 50px;
  display: flex;
}
@media(max-width:992px){
  footer .footer-nav-box{
  margin: 0;
  display: flex;
  max-width: 700px;
}
}

footer .footer-nav-box .footer-box1{
  display: flex;
  margin: 0 20px;
}


@media(max-width:992px){
  footer .footer-nav-box .footer-box1{
  display: flex;
  flex-direction: column;
  margin: 0 20px;
  justify-content: space-between;
}
}

footer .footer-nav-box .footer-box2{
  display: flex;
  margin: 0 20px;
}

@media(max-width:992px){
  footer .footer-nav-box .footer-box2{
  display: flex;
  flex-direction: column;
  margin: 0 20px;
}
}

footer .footer-nav-box .nav-list{
  margin: 0 50px;
  text-align: left;
}
@media(max-width:992px){
  footer .footer-nav-box .nav-list{
  margin: 0;
  text-align: left;
}
}

footer .footer-nav-box .nav-list .nav-name{
  font-weight: bold;
  font-size: 20px;
  margin-left: 37px;
  
}
@media(max-width:992px){
 footer .footer-nav-box .nav-list .nav-name{
  font-weight: bold;
  font-size: 12px;
  margin-left: 0px;
} 
}

footer .footer-nav-box .nav-list .list-detail{
  list-style: none;
}

/* footer .footer-nav-box .nav-list .list-detail li{
  
} */

@media(max-width:992px){
  footer .footer-nav-box .nav-list .list-detail{
    margin-left: -40px;
  }
}

footer .footer-nav-box .nav-list .list-detail a{
  text-decoration: none;
  color: #333;
  font-size: 16px;
  line-height: 1.6em;
}
@media(max-width:992px){
 footer .footer-nav-box .nav-list .list-detail a{
  text-decoration: none;
  color: #333;
  font-size: 10px;
  line-height: 1.1em;
} 
}
footer .footer-nav-box .nav-list .list-detail a:hover{
  color: #777676;
}


footer .sns-icon {
  display: flex;
  margin: 20px 0 20px 1600px;
}
@media(max-width:992px){
  footer .sns-icon {
  display: flex;
  margin: 20px 0 20px 270px;
}
}



footer .sns-icon img {
  width: 50px;
  height: 50px;
}
@media (max-width: 992px) {
  footer .sns-icon img {
    width: 30px;
    height: 30px;
  }
}



footer .border-line {
  border: 0.2px solid #ddd;
  width: calc(100% - 100px); /* 両端50pxずつ空ける */
  max-width: 2000px;
  margin: 30px auto;
}
@media(max-width:992px){
  footer .border-line {
  border: 0.2px solid #ddd;
  width: calc(100% - 100px); /* 両端50pxずつ空ける */
  max-width: 600px;
  margin: 30px auto;
}
}



.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  text-decoration: none;
  color: #333;
  margin: 0 5px;
  font-weight: 500;
}
@media(max-width:992px){
 .footer-links a {
  text-decoration: none;
  color: #333;
  margin: 0 5px;
  font-weight: 500;
  font-size: 8px;
} 
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-logo img {
  width: 80px;
  margin-bottom: 10px;
}

.footer-copy {
  font-size: 12px;
  color: #777;
}
@media(max-width:992px){
 .footer-copy {
  font-size: 12px;
} 
}