@charset "utf-8";
/* CSS Document */


html {
	scroll-behavior: smooth;
}
body {
	font-family: 'Murecho', sans-serif;
	font-weight: 500;
	line-height: 1.25;
	//letter-spacing: 0.1em;
	font-size: 16px;
	color: #333333;
}


section {
	display: block;
	padding-top: 75px;
	padding-bottom: 75px;
	width: 100%;
}

.container {
	width: min(100% - 2rem, 1440px);
	margin-inline:auto;
}

.area-flex {
	display: flex;
	justify-content: space-around;
	align-items: center;
}
	
.sp-only {display: none}

@media only screen and (min-width : 641px) and (max-width : 960px) {
  /*tablet用のcssを記述*/
	
	.sp-only {display: none}
	
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
	
	.sp-only {display: block}
	
}


/*--------------
font 要素
--------------*/
h1 {
	text-align: center;
	font-size: 36px;
	font-weight: 700;
}

h2 {
	//font-family: 'Fascinate', cursive;
	font-family: 'Lilita One', cursive;
	font-size: 50px;
	font-weight: 400;
	color: #B78F00;
	text-align: center;
	margin-bottom: 40px;
}

h2 span {
	display: block;
	color:  #181818;
	font-size: 1rem;
	font-weight: 700;
}

h2.__white {
	color: #fff;
}

h3 {
	font-size: 27px;
	width: fit-content;
	font-weight: 700;
	margin: 0 auto 50px;
}

h3 span {
	display: block;
	font-family: 'Roboto', sans-serif;
	font-size: 11px;
	color: #B78F00;
  position: relative;
	text-align: center;
	width: fit-content;
	margin: 5px auto 0;
	font-weight: 500;
}

h3 span::before, h3 span::after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 12px;
  height: 1px;
  background-color: #B78F00;
}

h3 span::before {
  left:-19px;
}

h3 span::after {
  right:-19px;
}



.roboto {
	font-family: 'Roboto', sans-serif;
	font-size: 1.2em
}

.menu-price {
	font-size: 18px
}

.menu-price::after {
	content: "縁";
	font-size: 0.8em;
	padding-left: 5px;
}
.menu-price.__no-yen::after {
	content: "";
}


@media only screen and (min-width : 641px) and (max-width : 960px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
}

/*--------------
header 要素
--------------*/
.header-wrapper {
	background-color: #FFD159;
	height: 100vh
}
.header {
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.header__inner {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
    padding-top: 26px;
}


/* ヘッダーのロゴ部分 */
.header__title {
    width: 242px;
}



.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ヘッダーのナビ部分 */
.header-navi-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header__nav {
  position: absolute;
  right: 0;
  left: 30%;
  top: 0;
  width: 70%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #fff;
  transition: ease .4s;
    overflow: hidden;
    margin-bottom: 1em;
    box-shadow: 0px 0 4px rgba(0,0,0,0.15);
}
.navi-item-ttl {
    border-left: 6px solid #CEC8FF;
    padding-left: 7px;
	font-weight: 700;
	font-size: 18px;
    margin-bottom: 0.7em;
}


.nav-items {
  padding: 0;
    list-style: disc;
    padding-left: 4em;
    margin-bottom: 10px;
}


/* ナビのリンク */
.nav-items__item a {
  color: black;
  width: 100%;
  display: block;
  text-align: left;
  font-size: 14px;
    margin-bottom: 0.7em;
  color: black;
}

.nav-items__item:last-child a {
  margin-bottom: 0;
}


/* ハンバーガーメニュー */

.header__hamburger {
  width: 50px;
  height: 50px;
	padding: 10px;
background-color: #fff;
	border-radius: 50vh;
	border: 4px solid#221815
}

.hamburger {
  //background-color: transparent;
  //border-color: transparent;
  z-index: 9999;
}


/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 2px;
  background-color: #000;
  position: relative;
  transition: ease .4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;

}

.hamburger.active span:nth-child(3) {
  top: -10px;
  transform: rotate(-45deg);
}


.hamburger-bg-01, .hamburger-bg-02 {
	position: absolute;
    width: 37%;
    height: 100%;
}
.hamburger-bg-01{
	background: url("../img/bg-hamburger-pc01.png") no-repeat center center;
	left: -5%;
    top: 50%;
    transform: translate(0, -50%);
    background-size: contain;
}

.hamburger-bg-02 {
	background: url("../img/bg-hamburger-pc02.png") no-repeat center center;
	right: -10%;
    top: 50%;
    transform: translate(0, -50%);
    background-size: contain;
}

@media only screen and (min-width : 641px) and (max-width : 960px) {
  /*tablet用のcssを記述*/
	
			.header__title {
				width: 95px;
		}






	.hamburger-bg-01, .hamburger-bg-02 {
		position: absolute;
		width: 58%;
		height: 100%;
	}
	.hamburger-bg-01{
		background: url("../img/bg-hamburger-sp01.png") no-repeat center center;
		left: -21%;
		top: 50%;
		transform: translate(0, -50%);
		background-size: contain;
	}

	.hamburger-bg-02 {
		background: url("../img/bg-hamburger-sp02.png") no-repeat center center;
		right: -15%;
		top: 50%;
		transform: translate(0, -50%);
		background-size: contain;
	}

}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
		.header__title {
			width: 95px;
	}
	
	
	.header__nav {
	  left: 20%;
	  width: 80%;
	}
	
	.header-navi-wrap {
		width: max-content;
	}
	
	
	.navi-item-ttl {
		border: 0;
		position: relative
	}
	
	.navi-ttl::before {
		content: "";
		width: 200px;
		height: 3px;
		background-color: #CEC8FF;
		position: absolute;
		left: -86%;
		top: 50%;
		transform: translate(0, -50%);
}
	
	
	.hamburger-bg-01, .hamburger-bg-02 {
		position: absolute;
		width: 37%;
		height: 100%;
	}
	.hamburger-bg-01{
		background: url("../img/bg-hamburger-sp01.png") no-repeat center center;
		left: -5%;
		top: 50%;
		transform: translate(0, -50%);
		background-size: contain;
	}

	.hamburger-bg-02 {
		background: url("../img/bg-hamburger-sp02.png") no-repeat center center;
		right: -10%;
		top: 50%;
		transform: translate(0, -50%);
		background-size: contain;
	}
}


/*--------------
header SNSエリア 要素
--------------*/
.sns-info { 
	position: fixed;
	bottom: 10px;
	right: 10px;
	padding: 6px 0px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: wrap;
	text-align: center;
}
p.sns-txt {
	width: 100%;
	font-size:17px;
}

.sns-lt, .sns-in {
	width: 35%;
	font-size: 33px;
}
.sns-lt img {
	width: 35px;
	height: 35px;
}

.sns-fb a, .sns-in a {
	color: #181818;
}



@media only screen and (min-width : 641px) and (max-width : 960px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
}



/*--------------
parallax 要素
--------------*/
.parallax1, .parallax2 {
	position: fixed;
	height: auto;
	z-index: -3;
	opacity: 0.5;
}
.parallax1 {
	left:-10%;
	top:0px;
	width:350px;
}

.parallax2 {
	right:-15%;
	top: 0px;
	width: 370px;
}

@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
	
	.parallax1, .parallax2 {
		width: 170px;
		opacity: 0.5;
	}
	
}


/*--------------
モーダル 要素
--------------*/
.modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0px 10px 0px;
  text-align: center
}

.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}

.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}

.modal-wrapper .modal-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  width: 70%;
  max-width: 600px;
  padding: 30px 30px 2em;
  border-radius:12px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, .6);
  vertical-align: middle
}

.modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
}

.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}

.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  color: #95979c!important;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.modal-wrapper .modal-close:hover {
  color: #2b2e38!important
}


/*モーダル内のデザイン設定*/

@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
}

/*--------------
contact 要素
--------------*/

.contact {
	display: none;
}



@media only screen and (min-width : 641px) and (max-width : 960px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
}

/*--------------
sns 要素
--------------*/

.sns {
	background-color: #CEC8FF;
	box-shadow: 0 0 0 100vmax #CEC8FF;
	clip-path: inset(0 -100vmax);
	color: #FFF
}
.sns-txt {
	text-align:center;
	margin-bottom: 0px;
}

.sns-btn-list {
	display: flex;
	justify-content:space-between;
	align-items: center;
	text-align: center;
	width: 150px;
	margin: 25px auto 20px;;
}
.sns-btn {
	width: 30%;
	font-size: 30px;
}

.sns-txt-fm {
	text-align: center;
}



@media only screen and (min-width : 641px) and (max-width : 960px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
}
/*--------------
footer 要素
--------------*/

footer {
	border-top: 8px solid #FFD159;
	width: 100%;
	margin: 0 auto;
	padding: 100px 0 ;
}

footer img {
	width: 198px;
	display: block;
	margin: 0 auto;
}

.footer-nav-list {
	width: 300px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 25px auto 25px;
}

.footer-list {
	width: fit-content;;
	text-align: center;
	font-size: 10px;
}

.footer-list a {
	color: #414141;
}


small {
	text-align: center;
	font-size: 10px;
	margin: 25px auto 0;
	display: block;
}



/*プライバシーポリシー*/
.pp-ttl-area {
    font-weight: 700;
    margin-bottom: 1em;
}

.pp-txt-area {
    text-align: left;
}

p.pp-subttl {
    font-weight: 700;
    padding-bottom: 0.5em;
}

p.pp-txt {
    margin-bottom: 1.5em;
}







@media only screen and (min-width : 641px) and (max-width : 960px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
}