@charset "utf-8";

/* Theme Name: Cafe de Lune
Description: 架空サイトCafe de Luneのホームページ
Version: 1.0
Author: Amtrix
Author URI: https://amtrix.jp */



html {
    font-size: 100%;
    padding: 0;
    margin: 0;
}

body {
  font-family: 'PT Serif', serif;
  font-weight: 400;
  color: #4C2E30;
}

a {
  text-decoration: none;
  color: #4C2E30;
}

a:hover {
  color: #f6978f;
}

.sec-title {
  font-size: 2rem;
  text-align: center;
  font-family: 'PT Serif', serif;
  font-weight: 400;
  font-style: italic;
  color: #4C2E30;
  padding-top: 120px;

}

.sec-title .en {
  font-size: 2rem;
  display: inline-block;
  position: relative;
}


.sec-title .en::before {
  content: "";
  width: 5px;
  height: 1.8rem;
  background-color: #f6978f;
  position: absolute;
  top: 7px;
  left: -10px;
}

.sec-title .ja {
  font-size: 0.9rem;
  display: block;
  opacity: 1;
}

li {
  list-style: none;
}

.wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

/* *******************
pagination
******************* */

.pagination {
	text-align: center;
	margin-top: 88px;
	margin-bottom: 45px;
}

.pagination .nav-links {
	font-family: 'PT Serif', serif;
}

.pagination .page-numbers {
	display: inline-block;
	padding: .5em 1em;
	text-decoration: none;
	color: #3B4043;
	border: 2px solid #edeceb;
	border-radius: 0.2em;
	background-color: #F7F6F5;
	font-size: 0.875rem;
}

.pagination .page-numbers:hover {
	border-color: #f6978f;
}

.pagination .page-numbers.current {
	color: #FFFFFF;
	border-color: #f6978f;
	background-color: #f6978f;
}

.pagination .page-numbers.dots {
	padding: 0 .5em;
	border: none;
	background-color: transparent;
}

.sr-only {
	position: absolute;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
}

/* *******************
bread-crumb
******************* */
.bread-crumb {
  max-width: 1100px;
  color: #4C2E30;
  margin: 40px auto;
}

/* *******************
header
******************* */
header {
  height: 80px;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0.9;
  z-index: 700;
  /* background-color: #fff;
  box-shadow: rgba(0, 0, 0, .05); */
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 4px rgba(0, 0, 0, .3);
}

.container {
  display: flex;
  justify-content:space-between;
  align-items: center;
}

#nav-pc ul {
  display: flex;
}

#nav-pc ul li {
  margin-left: 30px;
}

#logo a {
  display: block;
  width: 180px;
  margin: 0 auto;
  padding-top: 15px;
}

#logo a img {
  width: 180px;
  object-fit: cover;
}

#nav-sp {
  transform:  translateY(-100%);
  transition: all 0.6s;
  display: none;
}

.menu-btn {
  display: none;
}

/* *******************
mainvisual
******************* */
.mainvisual {
  width: 100vw;
  height: 100vh;
  z-index: 100;
  position: relative;
}

.mainvisual img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  transition: opacity 1s;
}

.mainvisual img.current {
  opacity: 1;
}

.mainvisual .info-box {
  width: 350px;
  height: 90px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 300;
}

.mainvisual .info-title {
  padding: 3.3% 16%;
}

.mainvisual .en {
  font-size: 2rem;
  display: inline-block;
  position: relative;
}


.mainvisual .en::before {
  content: "";
  width: 5px;
  height: 1.8rem;
  background-color: #f6978f;
  position: absolute;
  top: 7px;
  left: -10px;
}

.mainvisual .ja {
  font-size: 0.9rem;
  display: block;
}

/* *******************
information
******************* */
#info {
  width: 100%;
  height: auto;
  padding-top: 40px;
}

#info dl {
  margin-top: 40px;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
}

#info dl dt {
  width: 11%;
  line-height: 1.6;
  font-size: 0.9rem;
}

#info dl .cat {
  width: 7%;
  line-height: 1.6;
  background-color: #f9b3ac;
  color: #fff;
  text-align: center;
}

.dummy-line {
  width: 100%;
  height: 10px;
  border-bottom: dotted 1px #909090;
}


#info dl .info-text {
  width: 78%;
  line-height: 1.6;
  margin-left: 24px;
}

.viewmore {
  text-align: center;
  padding: 80px 0;
}

.viewmore a {
  padding-bottom: 1px;
  font-size: 0.9rem;
  font-weight: 400;
  margin-top: 16px;
  color: #4C2E30;
  text-align: center;
  position: relative;
}

.viewmore a:hover {
  color: #f6978f;
}

.viewmore a::after {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: #4C2E30;
  transition: all 200ms ease;
}

.viewmore a:hover::after {
  opacity: 0;
  transform: translateY(5px);
}

/* *******************
concept
******************* */
#concept {
  width: 100vw;
  height: auto;
  background-image: url("img/sheepbg.jpg");
}

.concept-container {
  display: flex;
  justify-content: space-between;
}

.concept-left {
  width: 55%;
}

.concept-title {
  margin-top: 60px;
  font-size: 20px;
  font-weight: 400;
}

.concept-desc {
  width: 90%;
  margin-top: 60px;
}

.concept-desc p {
  margin-bottom: 30px;
}

.concept-right {
  padding-top: 60px;
  width: 43%;
  position: relative;
}
.concept-img1 {
  width: 100%; 
  height: 380px;
}

.concept-img1 img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.concept-img2 {
  width: 70%;
  position: absolute;
  right: -15px;
  top: 200px;
}

.concept-img3 {
  width: 400px;
  height: 100px;

}

.concept-img3 img {
  width: 400px;
  height: 100px;
  object-fit: cover;
}


/* *******************
menu
******************* */
#menu {
  margin-bottom: 80px;
}

.menu-box {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
}

.menu-left {
  width: 40%;
  height: 280px;
  display: block;
  overflow: hidden;
}

.menu-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s all;
}

.menu-left img:hover {
  transform: scale(1.2, 1.2);
  transition: 1s all;
}

.vm-img1,
.vm-img2,
.vm-img3 {
  width: 130px;
  height: 130px;
  display: inline-block;
  margin-left: 2px;
  overflow: hidden;
}

.vm-img1 {
  margin-left: 0;
}

.vm-img1 img,
.vm-img2 img,
.vm-img3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s all;
}

.vm-img1 img:hover,
.vm-img2 img:hover,
.vm-img3 img:hover {
  transform: scale(1.2, 1.2);
  transition: 1s all;
}

.menu-right {
  width: 50%;
}

.menu-right .sec-title {
  margin-top: 0;
  padding-top: 0;
  text-align: left;
  margin-bottom: 16px;
}

.menu-right .sec-title {
  line-height: 1.4rem;
  padding-left: 10px;
}

.menu-right .sec-title .en {
  font-size: 1.4rem;
}


.menu-right .sec-title .en::before {
  content: "";
  width: 3px;
  height: 1.2rem;
  top: 2px;
  left: -9px;
  background-color: #866211;
}

.sec-title .ja {
  font-size: 0.7rem;
  display: block;
  vertical-align: text-top;
}

.viewmore-box {
  display: flex;
  margin-top: 24px;
  gap: 10px;
  
}

.menu-right .viewmore {
  padding-top: 50px;
  margin-left: 24px;
}

/* *******************
 instagram
******************* */
#instagram {
  width: 100%;
  height: auto;
  background-image: url("img/sheepbg.jpg");
}

#carousel-visual {
  margin-top: 60px;
  padding-bottom: 80px;
}

.autoplay {
  width: 100vw;
  height: 290px;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}

.autoplay .carouselImg {
  width: 290px;
  height: 290px;
  object-fit: cover;
}


/* *******************
 Access
******************* */
#access {
  width: 100%;
  height: auto;
  margin-bottom: 80px;
}

#access .access-container {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
}

#access .access-left {
  width: 55%;
}

#access .access-logo {
  width: 100%;
}

#access .access-logo img {
  width: 150px;
  display: block;
  object-fit: cover;
}

#access .map {
  width: 45%;
}

#access iframe {
  filter: grayscale(1);
}

#access .access-right {
  width: 40%;
}

#access .cafe-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#access .cafe-info dt {
  width: 22%;
  line-height: 1.7;
}

#access .cafe-info dd {
  width: 78%;
  line-height: 1.7;
}

#access .cafe-pic {
  width: 100%;
  height: 200px;
  margin-top: 32px;
}

#access .cafe-pic img {
  width: 90%;
  height: 200px;
  object-fit: cover;
}

/* *******************
 Footer
******************* */
footer {
  padding: 20px 0 80px 0;
  height: 300px;
  background-color: #866211;
}

.footer-logo {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
}

footer .address {
  color: #fff;
}

footer .footer-inner {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}

.footer-inner ul {
  display: flex;
}

.footer-inner ul li {
  margin-left: 30px;
}

.footer-inner ul li a {
    color: #fff;
    font-weight: 400;
}

.footer-inner ul li a:hover {
  color:#f6978f;
}

.footer-sns {
  margin: 0 auto;
  padding-top: 80px;
}

footer .shareon {
  width: 160px;
  padding: 10px;
  text-align: center;
  display: flex;
  font-size: 18px;
  color: #fff;
  margin-top: 24px;
  border: solid 0.8px #fff;
  border-radius: 5px;
}

footer .sns i {
  margin-left: 8px;
  color: #fff;
}

footer .sns i:hover {
  color: #f6978f;
}

footer .copyright {
  font-size: 11px;
  color: #fff;
  text-align: center;
  margin-top: 60px;
}

 /* TOPに戻るボタン */
 #page-top {
  position: fixed;
  bottom: 300px;
  right: 20px;
  color:#866211;
  text-align: center;
  text-decoration: none;
  padding: 28px 24px;
  border-radius: 50%;
  font-family: "Noto Sans JP", sans-serif;
  display: none;
 }


 #page-top .totop {
  margin-bottom: 8px;
  font-size: 14px;
 }

 #page-top .bi-moon-stars {
  font-size: 22px;
 }

/* *******************
archives.html
******************* */
#archives {
  margin-top: 60px;
  background: url("img/sheepbg.jpg");
  padding: 40px 0;
}

.archives-mainvisual {
  width: 100%;
  height: 400px;
}

.archives-mainvisual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.archives-item {
  padding: 2% 4%;
  border: solid 0.7px #ccc;
  margin-top: 88px;
  background-color: #fff;
}

.archives-a:hover {
  cursor: pointer;
  color: #4C2E30;
}

#archives dl {
  display: flex;
  line-height: 1.6;
 
}

#archives .dummy {
  height: 16px;
  border-bottom: solid 0.7px #f6978f;
}

.archives-article {
  display: flex;
  margin-top: 32px;
  gap: 40px;
}

.archives-pic {
  width: 450px;
  height: 250px;
}

.archives-pic img {
  width: 450px;
  height: 250px;
  object-fit: cover;
  object-position: center bottom;
}

#archives dl dd.cat {
  margin-left: 30px;
  padding: 0 8px;
  background-color: #f6978f;
  color: #fff;
}

.archives-title {
  font-size: 20px;
  padding-top: 24px;
}

.archives-content {
  margin-top: 16px;
  margin-left: 24px;
}

/* *******************
single.html
******************* */
.single-page {
  display: flex;
  justify-content: space-between;
  margin: 120px auto;
}

.single-page article {
  width: 70%;
}

.content-header > h1 {
  font-size: 22px;
}

.content-meta {
  margin-top: 8px;
  display: flex;
  gap: 16px;
}

.content-meta .cat {
  background-color: #f9b3ac;
  color: #fff;
  padding-left: 4px;
  padding-right: 4px;
}

.single-page aside {
  width: 30%;
  padding-left: 10%;
  line-height: 3;
}

.content-eyecatch {
  width: 100%;
  height: 500px;
  margin-top: 40px;
}

.content-eyecatch img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.content-body > p {
  line-height: 1.7;
  margin-top: 24px;
}

.sidebar ul {
  border-bottom: solid 1px #4C2E30;
}

.sidebar ul:first-child {
  border-bottom: none;
}

.sidebar li {
  border-top: solid 1px #4C2E30;
}

.sidebar  h2 {
  font-size: 18px;
  font-weight: 400;
  border-top: solid 1px #4C2E30;
}


.content-tags {
  display: flex;
  margin-top: 24px;
}

.content-tags > li {
  border: 1px solid #f5f6ba;
  margin-left: 3px;
  padding: 2px 4px;
  background-color: #eee;
  font-size: 0.75rem;
}

.content-tags > li:first-child {
  margin-left: 0;
}

#single-pagination {
  margin-top: 88px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

#single-pagination .prev > a,
#single-pagination .next > a {
  text-decoration: none;
  color: #404040;
}

#single-pagination .prev > a:hover,
#single-pagination .next > a:hover {
  opacity: 0.7;
  color: #FB3D28;
} 

/* *******************
food.html
******************* */
#food-menu > p {
  text-align: center;
  margin-top: 40px;
}

.recommend {
  text-align: center;
  margin-top: 60px;
  background-image: url("img/sheepbg.jpg");
  padding-top: 60px;
  z-index: 100;
  /* 全幅にするために、カスタムhtmlで直接styleを指定したが、うまくいかなかったので、こちらに記述 */
  margin:0 calc(50% - 50vw);
}

.recom-title span {
  display: block;
}

.recom-title .en {
  font-size: 1.2rem;
}

.recom-title .ja {
  font-size: 0.9rem;
}

.recom-item {
  position: relative;
  width: 100%;
  height: 550px;
  padding: 40px 8px;
}

.recom-img {
  width: 50%;
  height: 365px;
  z-index: 500;
  position: absolute;
}

.recom-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 1px 1px 5px  rgba(0, 0, 0, .1);
}

.recom-text {
  background-color: #fff;
  text-align: left;
  padding: 4% 1% 4% 15%;
  width: 60%;
  z-index: 300;
  position: absolute;
  right: 0;
  top: 17%;
  z-index: 300;
  box-shadow: 1px 1px 5px  rgba(0, 0, 0, .05);
}

.recom-desc {
  width: 100%;
  margin-top: 16px;
}

.price {
  margin-top: 16px;
}

.menu-container {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 36px;
  grid-template-rows: 1fr 1fr;
  row-gap: 60px;
}

.item-img img {
  width: 100%;
  object-fit: cover;
}

.item-text {
  font-size: 18px;
  font-weight: 600;
  margin-top: 8px;
}

.item-price .yen {
  font-size: 18px;
  font-weight: 500;
}

.item-price .tax {
  font-size: 12px;
  font-weight: 300;
}

/* *******************
cake.html
******************* */
#cake-menu > p {
  text-align: center;
  margin-top: 40px;
}

.archives-mainvisual img {
  object-position: center center;
}

/* *******************
drink.html
******************* */
#cake-menu > p {
  text-align: center;
  margin-top: 40px;
}

#drink-menu > p {
  text-align: center;
  margin-top: 40px;
}

/* *******************
setmenu.html
******************* */
#set-menu > p {
  text-align: center;
  margin-top: 40px;
}

#set-menu > p {
  text-align: center;
  margin-top: 40px;
}

/* *******************
concept.html
******************* */
.features {
  padding: 40px calc(50% - 50vw) 80px;
  margin:0 calc(50% - 50vw); 
  margin-top: 60px;
  background: url("img/sheepbg.jpg");
}

.features-item {
  display: flex;
  gap: 60px;
  margin-top: 100px;
}

.features-item:first-child {
  margin-top: 0;
}

.features-item:nth-child(even) {
  flex-direction: row-reverse;
}

.features .concept-pic {
  width: 45%;
  height: 360px;
}

.features .concept-pic img {
  width: 100%;
  height: 365px;
  object-fit: cover;
}

.features .concept-desc {
  width: 45%;
}

.features .concept-desc h3 {
  margin-bottom: 24px;
}

/* *******************
要素をふわっと表示
******************* */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .6s, transform .6s;
}

.animate.slide-from-left {
  transform: translateX(-80px);
}

.animate.slide-from-right {
  transform: translateX(80px);
}

.animate.delay {
  transition-delay: .3s;
}

.animate.delay-more {
  transition-delay: .6s;
}

.animate.appear {
  opacity: 1;
  transform: none;
}





 /* *********************************************** */
 @media screen and (max-width:767px) {


/* *******************
header
******************* */
header {
  background-color: #fff;
}

#nav-pc {
  display: none;
}

#nav-sp {
  padding-top: 80px;
  position:fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  color: #866211;
  text-align: center;
  height: 100%;
  width: 100%;
  opacity: 1;
  z-index: 500;
  display: block;
}

#nav-sp ul {
  background: rgba(255, 255, 255, 0.9);
  margin: 0 auto;
  padding-top: 5%;
  width: 100%;
  height: 100%;
}

#nav-sp ul li {
  font-size: 1.1em;
  list-style-type: none;
  padding: 0;
  width: 100%;
  margin-top: 20px;
}

#nav-sp ul li a {
display: block;
color: #866211;
padding: 1em 0;
}

/* このクラスを、jQueryで付与・削除する */
#nav-sp.active {
transform: translateY(0%);
}

/*ハンバーガー用CSS*/
.menu-btn {
    display: block;
/* headerに対して配置する */
  position: absolute;    
  right: 13px;
  top: 15px;
  width: 42px;
  height: 51px;
  cursor: pointer;
   z-index: 900;
  text-align: center;
  }


  .menu-btn  span {
    display: block;
    position: absolute;    /* .menu-btn に対して */
    width: 30px;
    border-bottom: solid 3px #866211;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 6px;
 }
  
 .menu-btn  span:nth-child(1) {
  top: 9px;
 }
 
 .menu-btn  span:nth-child(2) {
     top: 18px;
 }
 
 .menu-btn  span:nth-child(3) {
    top: 27px;
 }
 
 .menu-btn  span:nth-child(4) {
    border: none;
    color: #eee;
    font-size: 9px;
    font-weight: bold;
    top: 34px;
 }
 
 /*ハンバーガーメニュータップ後CSS*/
 /* 最初のspanをマイナス45度に */
 .menu-btn.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    border-bottom: solid 3px #866211;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
 }
 
 /* 2番目と3番目のspanを45度に */
 .menu-btn.active span:nth-child(2),
 .menu-btn.active span:nth-child(3) {
     top: 18px;
     border-bottom: solid 3px #866211;
     -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
     transform: rotate(45deg);
 }
 
  #nav-pc {
      display: none;
   }

  .bread-crumb {
    padding: 0 2%;
  }
 
  /* *******************
information
******************* */
#info {
  padding: 0 2%;
}
#info dl {
  width: 100%;
  padding: 0 2%;
}

#info dl dt {
  width: 20%;
  border-bottom: none;
}

#info dl .cat {
  border-bottom: none;
}

#info dl .info-text {
  width: 100%;
}


/* *******************
concept
******************* */
#concept {
  width: 100%;
  height: auto;
  background-image: url("img/sheepbg.jpg");
}

.concept-container {
  flex-direction: column;
}

.concept-left {
  width: 100%;
}

.concept-title {
  margin-top: 60px;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}

.concept-desc {
  padding: 0 2%;
  width: 100%;
  margin-top: 60px;
}

.concept-desc p {
  margin-bottom: 30px;
}

.concept-right {
  padding-top: 20px;
  width: 100vw;
  position: relative;
  background-image: url("img/sheepbg.jpg");
}
.concept-img1 {
  width: 100%; 
  padding: 0 2%;
  height: 380px;
  margin: 0 auto;
}

.concept-img1 img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background-image: url(../img/sheepbg.jpg);
}

.concept-img2 {
  width: 50%;
  position: absolute;
  right: 2px;
  top: 105px;
}

.concept-img3 {
  width: 100%;
  height: 100px;
  padding: 0 2%;
}

.concept-img3 img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

#concept .viewmore {
  background-image: url("img/sheepbg.jpg");
}


/* *******************
menu
******************* */
.menu-box {
  flex-direction: column;
  padding: 0 2%;
  margin-top: 50px;
}

.menu-box:first-child {
  margin-top: 40px;
}

.menu-left {
  width: 100%;
}

.images {
  margin: 0 auto;
  width: 430px;
}

.vm-img1,
.vm-img2,
.vm-img3 {
  margin-left: 16px;
}

.vm-img1 {
  margin-left: 0;
}

.menu-right {
  width: 100%;
}

.menu-right .sec-title {
  margin-top: 20px;
}

.viewmore-box {
  flex-direction: column;
}

.menu-right .viewmore {
  margin-left: 0;
  margin-bottom: 0;
}

/* *******************
 instagram
******************* */
#instagram {
  width: 100%;
  height: auto;
  background-image: url("img/sheepbg.jpg");
}

#carousel-visual {
  margin-top: 60px;
  padding-bottom: 60px;
}

.autoplay .carouselImg {
  width: 195px;
  height: 195px;
  object-fit: cover;
}


/* *******************
 Access
******************* */
#access {
  width: 100%;
  height: auto;
  margin-bottom: 80px;
}

#access .access-container {
  margin-top: 32px;
  flex-direction: column;
}

#access .access-left {
  width: 100%;
}

#access .access-right {
  width: 100%;
  padding: 0 2%;
}


#access .cafe-pic {
  width: 100%;
  height: 170px;
  margin-top: 32px;
}

#access .cafe-pic img {
  width: 100%;
  height: 170px;
}

/* *******************
 Footer
******************* */
footer {
  padding: 20px 2% 16px;
  height: auto;
  background-color: #866211;
}

.footer-logo {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
}

footer .address {
  color: #fff;
}

footer .footer-inner {
  flex-direction: column;
  margin-top: 24px;
}

.footer-inner ul {
  width: 80%;
  margin: 56px auto 16px;
}

.footer-inner ul li {
  margin-left: 30px;
}

.footer-inner ul li:first-child {
  margin-left: 0;
}

footer .sns i {
  margin-left: 8px;
  color: #fff;
}

footer .copyright {
  margin-top: 0;
}

/* *******************
archives.html
******************* */
.archives-item {
  margin-left: 2%;
  margin-right: 2%;
}

.archives-article {
  flex-direction: column;
}

.archives-pic {
  width: 100%;
  padding: 0 5.5%;
}


.archives-content {
  margin-left: 0;
}

/* *******************
single.html
******************* */
.single-page {
  flex-direction: column;
  padding: 2%;
  margin: 120px auto;
}

.single-page article {
  width: 100%;
}

.single-page aside {
  width: 100%;
  margin-top: 24px;
  padding-left: 0;
}

/* *******************
food.html
******************* */
.recom-item {
  position: static;
  width: 100%;
  height: auto;
  padding: 40px 8px 80px 8px;
}

.recom-img {
  width: 100%;
  height: 365px;
  position: static;
  z-index: 100;
}

.recom-text {
  padding: 8%;
  width: 100%;
  display: block;
  z-index: 100;
  position: static;
}

.recom-desc {
  width: 100%;
  margin-top: 16px;
}

.price {
  margin-top: 16px;
}

.menu-container {
  display: block;
}

.menu-item {
  padding: 0 2%;
  margin-bottom: 40px;
}

.item-img img {
  width: 100%;
  object-fit: cover;
}

.item-text {
  font-size: 18px;
  font-weight: 600;
  margin-top: 8px;
}

.item-price .yen {
  font-size: 18px;
  font-weight: 500;
}

.item-price .tax {
  font-size: 12px;
  font-weight: 300;
}

/* *******************
concept.html
******************* */
.features {
  padding: 40px 10px 80px 10px;
  margin-top: 60px;
  background: url("img/sheepbg.jpg");
}

.features-item {
  flex-direction: column; 
  gap: 0;
  margin-top: 80px;
}

.features-item:nth-child(even) {
  flex-direction: column;
}

.features .concept-pic {
  width: 100%;
}

.features .concept-pic img {
  width: 100%;
}

.features .concept-desc {
  width: 100%;
}


 /* TOPに戻るボタン */
 #page-top {
  bottom: 50px;
 }





 }
 
 