@charset "utf-8";
.sp {
	display: none;
}

p { 
	font-weight: bold;
}

header {
    width: 100%;
	height: 100px;
    background: rgba(255, 255, 255, 0.7);
	/* 画面上部に追尾 */
    position: fixed;
	top: 0;
    left: 0;
	z-index: 100;
}

#gNavi {
    width: 100%;
	margin-top: 10px;
}
#gNavi ul {
    width: 100%;
    display: flex;
	flex-direction: row;
    list-style: none;
	justify-content: space-around;
	font-size: 32px;
	font-weight: bold;
    letter-spacing: 1px;
	align-items: center;
}

#gNavi ul a {
	color: black;
    width: 100%;
    text-align: center;
}

/* main */
.h2Style {
    font-size: 32px;
    text-align: center;
    margin: 0 0 20px 0;
	padding-top: 20px;
    letter-spacing: 0.1em;
}

.contentTitle{
	color: white;
	font-size: 32px;
	font-weight: bold;
}

.mainContent {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding: 40px 0 0 0;
}
.mainContent img {
	max-width: 50%;
	height: auto ;
}

.moreButton {
	text-align: center;
	padding: 20px 0;
}

.menuTitle {
	font-size: 32px;
	color: white;
}

.fadein {
  opacity : 0;
  transform : translate(0, 100px);
  transition : all 1s;
}
 
.fadein.active{
  opacity : 1;
  transform : translate(0, 0);
}

.slider {
	overflow: hidden;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.add-animation {
  animation: zoomUp 12s linear 0s normal both;
}

section div {
	background: rgba(181, 117, 61, 0.4);
	margin: 0 100px;
}
section div button {
	font-size: 48px;
	border-radius: 50px;
	padding: 0px 20px 6px 28px;
	letter-spacing: 10px;
}

#mainPhoto {
	position: relative;
}

#mainTitle {
	display: none;
	position: absolute;
    top: 50%;
    left: 50%;
	transform: translate(-50%,-50%);
	color: white;
    font-size: 48px;
    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: 96px;
	letter-spacing: 20px;
	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: 40px;
}
#concept div img{
	margin-bottom: 10px;
	margin-left: 100px;
}

/* menu */
#menu {
	background-image: url("../images/menu_bg.png");
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	padding-bottom: 40px;
}
#menuList {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-content: space-around;
}
#menuList img {
	width: 100%;
	height: auto;
}
#menuList p {
	width: 100%;
	text-align: center;
	margin-bottom: 20px;
}
#desert {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-content: space-around;
}
#desert p {
	width: 100%;
	text-align: center;
	margin-bottom: 20px;
}

/* space */
#space {
	background-image: url("../images/space_bg.png");
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	padding-bottom: 40px;
}
#space div img{
	margin-top: 20px;
	margin-bottom: 10px;
}
#space div p{
	margin-left: 100px;
}

/* access */
#access {
	background-image: url("../images/access_bg.png");
	background-size:cover;
	background-repeat: no-repeat;
	width: 100%;
	padding-bottom: 40px;
}
#access div {
	padding-bottom: 20px;
}
#access div iframe {
	margin-right: 100px;
}

#telephoneNum {
	color: white;
	font-size: 32px;
}

/* footer */
footer {
	width: 100%;
	height: 100px;
	background-color: #C59266;
	float: left;
}

#footerLogo {
	float: left;
	margin-left: 100px;
}

#copyright {
	float: right;
	margin-top: 40px;
	margin-right: 100px;
	text-align: center;
}

