@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)
}


.back2 {
    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);
}


.bbs-box1 {
    padding-top: 10%;
    padding-bottom: 2%;
    background-color: #f6e5d7;
  }
  
  .bbs{
      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 {
  height: 100vw;
  background-color: #f6e5d7;
}

.box1 {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    
}

.box1 img {
    width: 60%;
display: block;
margin-right: auto;
margin-left: auto;
}

.box1 img:hover {
    opacity:0.5;
	transition:0.3s;
}


h2 {
  margin-left: 2%;
  margin-top: 5%;
  color: #978d86;
  font-size: 2vw;
  font-family: serif;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
}

.border1 {
  
  margin-bottom: 2%;
  width: 80%;
  border: solid 1.5px white;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

.adjustment {
  margin-left: 2%;
  margin-top: 2%;
  color: #978d86;
  font-size: 1.8vw;
  font-family: serif;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
}

span.marker {
  
  background-image: repeating-linear-gradient(-45deg,
  rgba(151, 141, 134, 0.22) 0, rgba(151, 141, 134, 0.22) 3px,
  transparent 3px, transparent 6px);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 40%;
}

section p:nth-of-type(2) {
  width: 25%;
  margin-left: 5%;
  color: #978d86;
  font-size: 1.3vw;
  font-family: serif;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
}

section ul {
width: 100%;
}

section ul li {
  width: 42%;
  margin-left: 5%;
  color: #978d86;
  font-size: 1.3vw;
  font-family: serif;
  list-style-type:circle;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
}

.collar-img {
    margin-top: 1%;
    margin-left: 5%;
    width: 20%;
  }
  
  .collar-img img {
   
    width: 100%;
   
  }
  


/* 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;
  }