@charset "utf-8";
.pc {
    display: none;
}

p { 
	font-weight: bold;
}

/* header */
header {
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, 0.7);
    /* 画面上部に追尾 */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
#logoSp {
    margin-top: 4px;
    margin-left: 20px;
}
#hambergerMenu {
    width: 30px;
    height: 25px;
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 1000;
}
#hambergerMenu > div {
    position: relative;
    width: 100%;
    height: 100%;
}
#hambergerMenu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    position: absolute;
    left: 0;
    transition: all .6s ease;
}
#hambergerMenu span:nth-child(1) {
    top: 0;
}
#hambergerMenu span:nth-child(2) {
    top: 10px;
}
#hambergerMenu span:nth-child(3) {
    top: 20px;
}
.open #hambergerMenu span {
    top: 10px;
}
.open #hambergerMenu span:nth-child(1) {
    transform: rotate(45deg);
}
.open #hambergerMenu span:nth-child(2) {
    opacity: 0;
}
.open #hambergerMenu span:nth-child(3) {
    transform: rotate(-45deg);
}

#gNavi  {
    background-color: rgba(197, 146, 102, 0.8);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 990;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: black;
    font-size: 32px;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transition: all .6s ease;
  }

#gNavi ul {
    opacity: 0;
    transform: translateY(-200px);
    transition: all .9s ease;
	font-weight: bold;
  }

#gNavi a {
	color: black;
	line-height: 100px;
  }

#gNavi p {
	color: white;
}

  /* open */
  .open {
    overflow: hidden;
  }

  .open #gNavi {
    visibility: visible;
    opacity: 1;
  }

  .open #gNavi ul {
    opacity: 1;
    transform: translateY(0);
  }

/* main */
.h2Style {
    font-size: 32px;
    text-align: center;
    margin: 0 0 10px 0;
    letter-spacing: 0.1em;
}
.contentTitle{
	color: white;
	font-size: 32px;
	font-weight: bold;
}

.mainContent {
	text-align: center;
	padding: 20px 0 0 0;
}
.mainContent img {
	max-width: 50%;
	height: auto ;
}

.moreButton {
	text-align: center;
	padding: 20px 0;
}

.contentTitle{
	color: white;
	font-size: 28px;
	margin-top: 20px;
	font-weight: bold;
}

.menuTitle {
	font-size: 28px;
	color: white;
}

.fadein {
  opacity : 0;
  transform : translateX(-50%);
  transition : all 1s;
}
 
.fadein.active{
  opacity : 1;
  transform : translateX(0);
}

.slider {
	overflow: hidden;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

section div {
	background: rgba(181, 117, 61, 0.4);
	margin: 0 100px;
}

section div button {
	font-size: 24px;
	font-weight: bold;
	border-radius: 50px;
	padding: 4px 20px;
	letter-spacing: 4px;
}

#mainPhoto {
	position: relative;
}

#mainTitle {
	display: none;
	position: absolute;
    top: 50%;
    left: 50%;
	transform: translate(-50%,-50%);
	color: white;
    font-size: 16px;
    font-family: Gadget, "sans-serif", serif, "游ゴシック", YuGothic, "Yu Gothic medium", "Hiragino Sans", "メイリオ", Meiryo, "sans-serif";
    font-weight: bold;
    letter-spacing: 1px;
	text-align: center;
	text-shadow: 4px 1px 1px black;
	z-index: 2;
}
#pastaregion {
	font-size: 32px;
	letter-spacing: 8px;
	text-shadow: 5px 2px 1px black;
}

#mainPhoto img{
	width: 100%;
	height: 100%;
}

/* concept */
#concept {
	background-image: url("../images/consept_bg2.png");
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	padding-bottom: 20px;
}

#concept div img{
	max-width: 60%;
	height: auto;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 10px;
}

/* menu */
#menu {
	background-image: url("../images/menu_bg.png");
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	padding-bottom: 20px;
}

#menu ul {
	padding-bottom: 20px;
}
#menu img {
	width: 100%;
	height: auto;
}
#menu p {
	width: 100%;
	text-align: center;
}

#desert {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-content: space-around;
}

/* space */
#space {
	background-image: url("../images/space_bg.png");
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	padding-bottom: 20px;
}
#space div img{
	margin-top: 20px;
	margin-bottom: 10px;
}

/* access */
#access {
	background-image: url("../images/access_bg.png");
	background-size:cover;
	background-repeat: no-repeat;
	width: 100%;
	padding-bottom: 20px;
}
#access div {
	padding-bottom: 20px;
}
#access div iframe {
	width: 70%;
	height: auto;
	margin-bottom: 20px;
}

#telephoneNum {
	color: white;
	font-size: 32px;
}

/* footer */
footer {
    width: 100%;
    height: 200px;
    background-color: #C59266;
}
#footerLogo {
    padding-top: 20px;
    text-align: center;
}
#copyright {
    margin-top: 40px;
    text-align: center;
    font-size: 20px;
}