@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-decoration: none;
}

@font-face {
  font-family: Playfair_Display;
  src: url(../font/Playfair_Display/static/PlayfairDisplay-SemiBold.ttf);
}

@font-face {
  font-family: Noto_Sans;
  src: url(../font/Noto_Sans/static/NotoSans-ExtraBold.ttf)
}

.back1 {
    z-index: 1;
    position: fixed;
    width: 100%;
    height: 12vw;
    background-color: #73d0c2;
}

nav.NavMenu{
	position: fixed; /*表示位置を固定*/
	z-index: 2; /*重ね順を変更*/
	top: 0; /*表示位置を指定*/
	left: 0; /*表示位置を指定*/
	background: #fff;/*背景を白にする*/
	color: #978d86; /*文字色を黒にする*/
	text-align: center; /*テキストを中央揃え*/
	width: 100%; /*全幅表示*/
	transform: translateY(-100%); /*ナビを上に隠す上から出したい場合は、transform: translateYを使う。*/
	transition: all 0.6s; /*アニメーションの時間を指定*/
    background-color: #73d0c2;
}

nav.NavMenu ul{
	background: #fff; /*背景をグレーにする*/
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

nav.NavMenu ul li{
	font-size: 1.1em;
	list-style-type: none;
	padding: 0;
	width: 100%;
	border-bottom: 1px dotted #978d86;
}

nav.NavMenu ul li:last-child{
	padding-bottom: 0;
	border-bottom: none; /*最後のメニュー項目のみ下線を消す*/
}

nav.NavMenu ul li a {
	display: block; /*クリックできる領域を広げる*/
	color: #978d86;
    font-family: serif;
	padding: 1em 0;
}

/*トグルボタンが押されたときに付与するクラス*/
nav.NavMenu.active{
	transform: translateY(0%);/*上から出したい場合は、transform: translateYを使う。*/
}

/*トグルボタンのスタイルを指定*/
.Toggle {
	position: fixed;/* bodyに対しての絶対位置指定 */
	right: 13px;
	top: 12px;
	width: 42px;
	height: 42px;
	cursor: pointer;/*divだけどカーソルが変わるようにしている*/
	z-index: 3;/*ボタンを一番上にしている(押せなくなるから)*/
}

.Toggle span {
	display: block;
	position: absolute;
	left: 6px;
	width: 30px;
	border-bottom: solid 3px #978d86;
	transition: .35s ease-in-out;/*変化の速度を指定*/
}

.Toggle span:nth-child(1) {
	top: 9px;
}

.Toggle span:nth-child(2) {
	top: 18px;
}

.Toggle span:nth-child(3) {
	top: 27px;
}

/* 最初のspanをマイナス45度に */
.Toggle.active span:nth-child(1) {
	top: 18px;
	left: 6px;
	transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
	top: 18px;
	transform: rotate(45deg);
}

section:nth-of-type(1) {
    padding-top: 10%;
    padding-bottom: 5%;
    background-color: #f6e5d7;
}

.bbs{
    margin-top: 3%;
    margin-bottom: 3%;
    align-items: center;
    color: rgba(237, 141, 73, 0.3);
    display: flex;
    overflow:hidden;
    width: 100%;
    white-space:nowrap;
    z-index: 1;
  }
  .bbs ul {
    animation: flowing 150s linear infinite;
    font-size: 20px;
    transform:translateX(100%);
    margin: 0;
    padding: 0;
    
  }
  .bbs ul li{
    display: inline-block;
    padding-right: 10px;
    font-size: 7vw;
    font-family: Playfair_Display;
  
  }
  @keyframes flowing {
    0% { transform:translateX(0); }
    100% { transform:translateX(-100%); }
  }

  section:nth-of-type(2) {
    padding-bottom: 5%;
    width: 100%;
    background-color: #f6e5d7;
  }

  section:nth-of-type(2) img {
    display: block;
    
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 7%;
    width: 60%;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
    max-width:60%;
    -webkit-filter: blur(15px);
    filter: blur(15px);
  }

/* GENERAL STYLING */

article {
    width: 50%;
    margin: 0 auto;
  }

  
  /* IMAGE BLUR EFFECT */

  .img-blur {
    animation: imageBlur 1s both;
  }
  @keyframes imageBlur {
    100% {
      -webkit-filter: blur(0);
      filter: blur(0);
    }
  }

  footer {
    padding-top: 2%;
    width: 100%;
    background-color: #73d0c2;
    box-shadow: 2px -1px 10px 2px rgba(0, 0, 0, 0.22);
  }
  
  footer p {
    margin-left: 3%;
    width: 10%;
    color: white;
    line-height: 3vw;
    font-weight: 100;
    font-family: serif;
    font-size: 3vw;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.22);
  }
  
  footer p:nth-of-type(2) {
    width: 93%;
    border-bottom:  solid 1.5px white;
  }
  
  .flex-box6 p {
    margin-left: 20%;
    width: 20%;
    text-align: center;
    
  }
  
  .flex-box6 {
    width: 100%;
    display: flex;
  }
  
  address {
    margin-left: 3%;
    width: 20%;
    background-color: #73d0c2;
  }
  
  footer img {
    width: 10%;
    
  }
  
  footer a {
    display: block;
  }
  
  footer p small { 
    font-size: 1.2vw;
  }