@charset "UTF-8";
html,
body,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

article,
header,
footer,
aside,
figure,
figcaption,
nav,
section {
  display: block;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@-webkit-keyframes mapLoading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes mapLoading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes topSlideText {
  100% {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}

@keyframes topSlideText {
  100% {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}

@-webkit-keyframes topSlideText-p {
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes topSlideText-p {
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@-webkit-keyframes h2Animation {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@keyframes h2Animation {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@-webkit-keyframes spMenu {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3em);
            transform: translateY(3em);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes spMenu {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3em);
            transform: translateY(3em);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

.text-red {
  color: red;
  font-weight: bold;
}

.top-scroll-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  z-index: 10000;
  background-color: #856239;
  color: #fff;
  border: 1px solid #fff;
  padding: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.top-scroll-button:hover {
  cursor: pointer;
}

h1 {
  width: auto;
  font-family: Yumincho, "游明朝";
  font-size: 40px;
  color: #856239;
  text-align: center;
  margin: 50px 0;
  line-height: 1.3em;
}

@media (max-width: 767px) {
  h1 {
    font-size: 24px;
    margin: 0;
  }
}

h1.logo {
  margin: 0;
  padding: 0;
}

@media (max-width: 767px) {
  h1.logo {
    text-align-last: left;
  }
}

h2 {
  width: auto;
  font-family: Yumincho, "游明朝";
  font-size: 40px;
  color: #856239;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 50px;
  line-height: 1.3em;
}

@media (max-width: 767px) {
  h2 {
    font-size: 24px;
    margin-top: 50px;
  }
}

h2 .h2-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  h2 .h2-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

h2 .h2-left-bar {
  width: 200px;
  height: 1px;
  background-color: #856239;
  margin-right: 30px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
}

@media (max-width: 767px) {
  h2 .h2-left-bar {
    width: 90%;
    margin: 10px 0;
  }
}

h2 .h2-left-bar.h2-animation {
  -webkit-animation: h2Animation 1s ease forwards;
          animation: h2Animation 1s ease forwards;
}

h2 .h2-right-bar {
  width: 200px;
  height: 1px;
  background-color: #856239;
  margin-left: 30px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
}

@media (max-width: 767px) {
  h2 .h2-right-bar {
    width: 90%;
    margin: 10px 0;
  }
}

h2 .h2-right-bar.h2-animation {
  -webkit-animation: h2Animation 1s ease forwards;
          animation: h2Animation 1s ease forwards;
}

h3 {
  font-family: Yumincho, "游明朝";
}

.sp-menu-toggle {
  z-index: 10000;
  width: 50px;
  height: 50px;
  position: fixed;
  top: 10px;
  right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #856239;
  background-color: #856239;
  padding: 30px;
  display: none;
}

@media (max-width: 767px) {
  .sp-menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.sp-menu-toggle p {
  position: absolute;
  margin-top: 40px;
  font-size: 14px;
  color: #fff;
}

.sp-menu-toggle i:nth-of-type(1) {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  top: 13px;
  width: 30px;
  height: 2px;
  background-color: #fff;
}

.sp-menu-toggle i:nth-of-type(1).open {
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translateY(10px) rotate(45deg);
          transform: translateY(10px) rotate(45deg);
}

.sp-menu-toggle i:nth-of-type(2) {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  top: 23px;
  width: 30px;
  height: 2px;
  background-color: #fff;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.sp-menu-toggle i:nth-of-type(2).open {
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}

.sp-menu-toggle i:nth-of-type(3) {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  top: 33px;
  z-index: 10000;
  width: 30px;
  height: 2px;
  background-color: #fff;
}

.sp-menu-toggle i:nth-of-type(3).open {
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translateY(-10px) rotate(-45deg);
          transform: translateY(-10px) rotate(-45deg);
}

.sp-menu {
  z-index: 1000;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #fff;
  border-left: 1px solid #000;
  width: 250px;
  height: 102vh;
  overflow: hidden;
  -webkit-transform: translateX(250px);
          transform: translateX(250px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sp-menu.open {
  overflow: hidden;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.sp-menu.open a:nth-of-type(0) .sp-menu-text {
  -webkit-animation: spMenu 0.3s 0s forwards;
          animation: spMenu 0.3s 0s forwards;
}

.sp-menu.open a:nth-of-type(1) .sp-menu-text {
  -webkit-animation: spMenu 0.3s 0.075s forwards;
          animation: spMenu 0.3s 0.075s forwards;
}

.sp-menu.open a:nth-of-type(2) .sp-menu-text {
  -webkit-animation: spMenu 0.3s 0.15s forwards;
          animation: spMenu 0.3s 0.15s forwards;
}

.sp-menu.open a:nth-of-type(3) .sp-menu-text {
  -webkit-animation: spMenu 0.3s 0.225s forwards;
          animation: spMenu 0.3s 0.225s forwards;
}

.sp-menu.open a:nth-of-type(4) .sp-menu-text {
  -webkit-animation: spMenu 0.3s 0.3s forwards;
          animation: spMenu 0.3s 0.3s forwards;
}

.sp-menu.open a:nth-of-type(5) .sp-menu-text {
  -webkit-animation: spMenu 0.3s 0.375s forwards;
          animation: spMenu 0.3s 0.375s forwards;
}

.sp-menu.open a:nth-of-type(6) .sp-menu-text {
  -webkit-animation: spMenu 0.3s 0.45s forwards;
          animation: spMenu 0.3s 0.45s forwards;
}

.sp-menu.open a:nth-of-type(7) .sp-menu-text {
  -webkit-animation: spMenu 0.3s 0.525s forwards;
          animation: spMenu 0.3s 0.525s forwards;
}

.sp-menu.open a:nth-of-type(8) .sp-menu-text {
  -webkit-animation: spMenu 0.3s 0.6s forwards;
          animation: spMenu 0.3s 0.6s forwards;
}

.sp-menu.open a:nth-of-type(9) .sp-menu-text {
  -webkit-animation: spMenu 0.3s 0.675s forwards;
          animation: spMenu 0.3s 0.675s forwards;
}

.sp-menu.open a:nth-of-type(10) .sp-menu-text {
  -webkit-animation: spMenu 0.3s 0.75s forwards;
          animation: spMenu 0.3s 0.75s forwards;
}

.sp-menu ul {
  z-index: 1000;
  width: 100%;
  height: 100%;
  margin-top: 100px;
  padding: 0 10px;
}

.sp-menu ul a {
  display: block;
  border-bottom: 1px solid #856239;
}

.sp-menu ul li {
  overflow: hidden;
  color: #333;
  font-size: 16px;
  padding: 20px 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sp-menu ul li:hover {
  color: #fff;
  background-color: #856239;
}

.sp-menu ul .sp-menu-text {
  opacity: 0;
  -webkit-transform: translateY(3em);
          transform: translateY(3em);
}

.sp-menu ul a.sp-menu-button {
  display: block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 20px;
  margin-top: 20px;
  text-shadow: rgba(51, 51, 51, 0.7) 1px 1px 1px;
  -webkit-box-shadow: rgba(51, 51, 51, 0.16) 3px 3px 3px;
          box-shadow: rgba(51, 51, 51, 0.16) 3px 3px 3px;
  display: inline-block;
  background-color: #ffc400;
  border: none;
}

.sp-menu ul a.sp-menu-button:nth-of-type(1) {
  margin-top: 50px;
}

.sp-menu ul a.sp-menu-button li {
  padding: 10px 20px;
  margin: 0;
  color: #fff;
}

.bg-close {
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  width: 102vw;
  height: 102vh;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.bg-close.open {
  opacity: 0.2;
  visibility: visible;
}

.access:hover {
  cursor: pointer;
}

.pan {
  padding: 20px;
  border-bottom: 1px solid #856239;
  margin-bottom: 30px;
}

body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  color: #333333;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

a {
  color: #333333;
  text-decoration: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a:hover {
  opacity: 0.8;
}

p {
  line-height: 1.8em;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}

body {
  font-family: "Hiragino Sans", "遊ゴシック";
  font-size: 16px;
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 10px;
}

header {
  width: 100%;
  height: auto;
  padding: 20px 0;
}

header .sp-header {
  display: none;
  width: 100%;
  height: 70px;
}

@media (max-width: 767px) {
  header .sp-header {
    display: block;
  }
}

header .sp-header img {
  height: 70px;
}

@media (max-width: 767px) {
  header {
    padding: 10px 0;
  }
}

@media (max-width: 767px) {
  header .header-inner {
    display: none;
  }
}

header .header-inner .header-upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .header-inner .header-upper .logo {
  width: 200px;
}

header .header-inner .header-upper .logo img {
  width: 200px;
}

header .header-inner .header-upper .header-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header .header-inner .header-upper .header-button a {
  width: 200px;
  padding: 15px 0;
  margin: 10px 0;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  background-color: #ffc400;
  color: #fff;
  text-shadow: #333333 1px 1px 1px;
  -webkit-box-shadow: rgba(51, 51, 51, 0.16) 3px 3px 3px;
          box-shadow: rgba(51, 51, 51, 0.16) 3px 3px 3px;
}

header .header-inner .header-upper .header-button a .header-contact-button {
  font-weight: 600;
}

header .header-inner .header-beneath {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header .header-inner .header-beneath nav {
  font-size: 18px;
}

header .header-inner .header-beneath ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .header-inner .header-beneath ul a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 30px;
}

header .header-inner .header-beneath ul a:hover {
  opacity: 1;
  color: #fff;
  background-color: #856239;
}

.top {
  position: relative;
}

.top .top-slide-text {
  position: absolute;
  top: 50%;
  left: 10%;
  font-size: 40px;
  font-family: Yumincho, "游明朝";
  color: #fff;
  text-shadow: #000 2px 2px 5px;
  overflow: hidden;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  -webkit-animation: topSlideText 1s 0.5s forwards;
          animation: topSlideText 1s 0.5s forwards;
}

@media (max-width: 767px) {
  .top .top-slide-text {
    top: 35%;
    left: 5%;
    font-size: 20px;
  }
}

.top .top-slide-text p {
  overflow: hidden;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  -webkit-animation: topSlideText-p 1s 0.5s forwards;
          animation: topSlideText-p 1s 0.5s forwards;
  font-weight: bold;
}

.top img {
  width: 100%;
  height: calc(100vh - 235px);
}

@media (max-width: 767px) {
  .top img {
    height: auto;
  }
}

.top .top-new-news {
  width: 100%;
  padding: 20px;
  background-color: #856239;
  color: #fff;
}

@media (max-width: 767px) {
  .top .top-new-news {
    padding: 10px 0;
  }
}

.top .top-new-news main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .top .top-new-news main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.top .top-new-news .top-new-news-text {
  margin-right: 50px;
  position: relative;
}

@media (max-width: 767px) {
  .top .top-new-news .top-new-news-text {
    margin-right: 10px;
    margin-bottom: 10px;
  }
}

.top .top-new-news .top-new-news-text:after {
  content: "";
  position: absolute;
  top: -10px;
  right: -30px;
  background-color: #fff;
  width: 1px;
  height: 40px;
}

@media (max-width: 767px) {
  .top .top-new-news .top-new-news-text:after {
    width: 200px;
    height: 1px;
    top: 30px;
    left: calc(50% - 100px);
  }
}

.top .top-new-news .top-new-news-date {
  margin: 0 10px;
}

@media (max-width: 767px) {
  .top .top-new-news .top-new-news-date {
    margin: 10px;
  }
}

.top .top-new-news .top-new-news-title {
  margin-left: 10px;
}

@media (max-width: 767px) {
  .top .top-new-news {
    line-height: 1.3em;
  }
}

.gaiyou {
  margin-top: 100px;
}

@media (max-width: 767px) {
  .gaiyou {
    margin-top: 50px;
  }
}

.gaiyou .gaiyou-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  .gaiyou .gaiyou-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.gaiyou .gaiyou-contents .gaiyou-contents-img {
  width: 50%;
}

@media (max-width: 767px) {
  .gaiyou .gaiyou-contents .gaiyou-contents-img {
    width: 100%;
  }
}

.gaiyou .gaiyou-contents .gaiyou-contents-img img {
  width: 100%;
}

.gaiyou .gaiyou-contents .gaiyou-contents-text {
  position: relative;
  width: 50%;
  padding: 20px;
}

@media (max-width: 767px) {
  .gaiyou .gaiyou-contents .gaiyou-contents-text {
    width: 100%;
    padding: 20px 0;
  }
}

.gaiyou .gaiyou-contents .gaiyou-contents-text img {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
}

.gaiyou .gaiyou-contents .gaiyou-contents-text p {
  margin-top: 20px;
}

.gaiyou .gaiyou-contents .gaiyou-contents-text p:nth-of-type(1) {
  margin-top: 0;
}

.gaiyou-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .gaiyou-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.gaiyou-nav article {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
  width: 32%;
  height: 250px;
  text-align: center;
  background-color: #000;
}

@media (max-width: 767px) {
  .gaiyou-nav article {
    width: 100%;
    height: 200px;
    margin-top: 50px;
  }
}

.gaiyou-nav article img {
  width: 100%;
  height: 250px;
  opacity: 0.7;
}

@media (max-width: 767px) {
  .gaiyou-nav article img {
    height: 200px;
  }
}

.gaiyou-nav article .gaiyou-nav-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  font-size: 28px;
  color: #fff;
  font-family: Yumincho, "游明朝";
}

@media (max-width: 767px) {
  .gaiyou-nav article .gaiyou-nav-text {
    font-size: 24px;
  }
}

.fresh-grape {
  position: relative;
  margin-top: 200px;
  background-image: url(images/background.webp);
  padding: 100px 0;
}

@media (max-width: 767px) {
  .fresh-grape {
    margin-top: 100px;
    padding: 50px 0;
  }
}

.fresh-grape h2 {
  margin-top: 0;
}

.fresh-grape .fresh-grape-circle-img {
  z-index: -1;
  position: absolute;
  top: -90px;
  left: calc(50% - 75px);
}

@media (max-width: 767px) {
  .fresh-grape .fresh-grape-circle-img {
    top: -60px;
    left: calc(50% - 50px);
  }
}

.fresh-grape .fresh-grape-circle-img img {
  display: block;
  width: 150px;
  margin: 0 auto;
  -webkit-animation: 8s linear infinite rotation;
          animation: 8s linear infinite rotation;
}

@media (max-width: 767px) {
  .fresh-grape .fresh-grape-circle-img img {
    width: 100px;
  }
}

.fresh-grape .fresh-grape-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .fresh-grape .fresh-grape-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.fresh-grape .fresh-grape-contents .fresh-grape-img {
  width: 50%;
}

@media (max-width: 767px) {
  .fresh-grape .fresh-grape-contents .fresh-grape-img {
    width: 100%;
  }
}

.fresh-grape .fresh-grape-contents .fresh-grape-img img {
  width: 100%;
}

.fresh-grape .fresh-grape-contents .fresh-grape-text {
  width: 50%;
  padding: 20px;
}

@media (max-width: 767px) {
  .fresh-grape .fresh-grape-contents .fresh-grape-text {
    width: 100%;
    padding: 20px 0;
  }
}

.fresh-grape .fresh-grape-contents .fresh-grape-text p {
  margin-top: 20px;
}

.fresh-grape .fresh-grape-contents .fresh-grape-text p:nth-of-type(1) {
  margin-top: 0;
}

.fresh-grape .morning-cafe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}

.fresh-grape .morning-cafe article {
  width: 32%;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .fresh-grape .morning-cafe article {
    width: 49%;
  }
}

.fresh-grape .morning-cafe article img {
  width: 100%;
}

.top-page-news {
  margin-top: 100px;
}

.top-page-news .news-list article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  border-bottom: 2px solid #856239;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.top-page-news .news-list article .news-date {
  margin-right: 30px;
  color: gray;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.top-page-news .news-list article .news-title {
  font-size: 16px;
}

.top-page-news .news-list article:hover {
  background-color: #856239;
  color: #fff;
}

.top-page-news .news-list article:hover .news-date {
  color: #fff;
}

.top-page-news .more-news-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.top-page-news .more-news-container .more-news {
  margin-top: 30px;
  padding: 20px 30px;
  border: 1px solid #856239;
  display: inline-block;
}

@media (max-width: 767px) {
  .top-page-order {
    margin-top: 100px;
  }
}

.top-page-order .top-page-order-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 767px) {
  .top-page-order .top-page-order-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top-page-order .top-page-order-container article {
  position: relative;
  margin: 30px;
  width: 45%;
}

@media (max-width: 767px) {
  .top-page-order .top-page-order-container article {
    margin: 0;
    margin-bottom: 50px;
    width: 100%;
  }
  .top-page-order .top-page-order-container article:nth-of-type(2) {
    margin-top: 150px;
  }
}

.top-page-order .top-page-order-container article h3 {
  padding: 20px;
  background-color: #856239;
  color: #fff;
  text-align: center;
  font-size: 24px;
}

.top-page-order .top-page-order-container article p {
  padding: 20px;
}

@media (max-width: 767px) {
  .top-page-order .top-page-order-container article p {
    padding: 20px 0;
  }
}

.top-page-order .top-page-order-container article a {
  color: #1558d6;
  text-decoration: underline;
  font-weight: bold;
}

.top-page-order .top-page-order-container article .order-more-button {
  margin-top: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  bottom: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.top-page-order .top-page-order-container article .order-more-button a {
  white-space: nowrap;
  padding: 15px 20px;
  margin: 0 auto;
  font-size: 18px;
  text-align: center;
  color: #856239;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #856239;
}

.top-page-order .top-page-order-container article .order-more-button a:hover {
  color: #fff;
  background-color: #856239;
  opacity: 1;
}

.top-page-order .top-page-order-container article .order-more-button:nth-of-type(2) {
  bottom: -120px;
}

.online-shop-button {
  position: absolute;
  bottom: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.online-shop-button a {
  white-space: nowrap;
  padding: 15px 20px;
  font-size: 18px;
  text-align: center;
  background-color: #ffc400;
  color: #fff;
  text-shadow: #333333 1px 1px 1px;
  -webkit-box-shadow: rgba(51, 51, 51, 0.16) 3px 3px 3px;
          box-shadow: rgba(51, 51, 51, 0.16) 3px 3px 3px;
  font-weight: 600;
  text-decoration: none;
}

.line-infomation {
  margin-top: 200px;
  color: #fff;
}

@media (max-width: 767px) {
  .line-infomation {
    margin-top: 100px;
  }
}

.line-infomation .line-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #47b749;
}

@media (max-width: 767px) {
  .line-infomation .line-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 0;
  }
}

.line-infomation .line-banner .line-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 150px;
}

@media (max-width: 767px) {
  .line-infomation .line-banner .line-icon {
    width: 70px;
  }
}

.line-infomation .line-banner .line-icon img {
  width: 100%;
}

.line-infomation .line-banner .line-official-start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 30px;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.3em;
  margin-right: 50px;
}

@media (max-width: 767px) {
  .line-infomation .line-banner .line-official-start {
    font-size: 18px;
    margin: 0;
  }
}

.line-infomation .line-banner p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  line-height: 1.3;
  font-weight: bold;
}

@media (max-width: 767px) {
  .line-infomation .line-banner p {
    font-size: 16px;
    margin-top: 20px;
    font-weight: normal;
  }
}

.line-friend-button {
  width: 230px;
  margin: 0 auto;
  margin-top: 30px;
}

.line-friend-button img {
  width: 100%;
}

.calendar {
  margin-top: 200px;
}

@media (max-width: 767px) {
  .calendar {
    margin-top: 100px;
  }
}

.calendar .calendar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.calendar .calendar-container .calendar-info {
  margin-bottom: 30px;
}

.calendar .calendar-container .calendar-info .calendar-info-item {
  position: relative;
  margin-top: 20px;
}

.calendar .calendar-container .calendar-info .calendar-info-item::before {
  position: absolute;
  content: "";
  top: -7px;
  left: -40px;
  width: 30px;
  height: 30px;
  background-color: #000;
}

.calendar .calendar-container .calendar-info .calendar-info-item:nth-of-type(1)::before {
  background-color: #ddffcc;
}

.calendar .calendar-container .calendar-info .calendar-info-item:nth-of-type(2)::before {
  background-color: #ffc0bd;
}

.calendar .calendar-container .wpsbc-calendars {
  max-width: 800px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  width: 100% !important;
}

footer {
  margin-top: 100px;
  background-color: #856239;
  padding: 50px 0;
  color: #fff;
  font-weight: bold;
}

@media (max-width: 767px) {
  footer {
    margin-top: 100px;
  }
}

footer .footer-logo {
  width: 200px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  footer .footer-logo {
    margin: 0 auto;
    margin-bottom: 30px;
  }
}

footer .footer-logo img {
  width: 100%;
}

footer .footer-upper {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  footer .footer-upper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  footer .footer-upper .footer-access {
    margin-top: 0;
    width: 100%;
  }
}

footer .footer-upper .footer-access article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
}

footer .footer-upper .footer-access article p {
  margin-left: 30px;
}

footer .footer-upper .footer-access article .contact-icon {
  width: 25px;
}

footer .footer-upper .footer-access article .contact-icon img {
  width: 100%;
}

footer .footer-upper .footer-access article .contact-icon p {
  margin-left: 0;
}

footer .footer-upper .footer-access article:nth-of-type(1) {
  margin-top: 30px;
}

footer .footer-upper .map {
  z-index: 10;
  position: relative;
  width: 60%;
}

@media (max-width: 767px) {
  footer .footer-upper .map {
    width: 100%;
    margin-top: 50px;
  }
}

footer .footer-upper .map iframe {
  width: 100%;
}

@media (max-width: 767px) {
  footer .footer-upper .map iframe {
    height: 300px;
  }
}

footer .footer-upper .map .map-loading {
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

footer .footer-upper .map .map-loading .map-loading-text {
  margin-bottom: 20px;
}

footer .footer-upper .map .map-loading .map-loading-img {
  -webkit-animation: mapLoading 2s linear infinite;
          animation: mapLoading 2s linear infinite;
}

footer .footer-beneath {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 767px) {
  footer .footer-beneath {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

footer .footer-beneath nav ul li {
  color: #fff;
  margin-top: 20px;
}

@media (max-width: 767px) {
  footer .footer-beneath .footer-line-friend {
    margin-top: 70px;
    text-align: center;
  }
}

footer .copy-right {
  margin-top: 100px;
  text-align: center;
}

.page-overview .page-overview-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 50px;
}

@media (max-width: 767px) {
  .page-overview .page-overview-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-overview .page-overview-container:nth-of-type(1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .page-overview .page-overview-container:nth-of-type(3) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.page-overview .page-overview-container .page-overview-img {
  width: 49%;
}

@media (max-width: 767px) {
  .page-overview .page-overview-container .page-overview-img {
    width: 100%;
  }
}

.page-overview .page-overview-container .page-overview-img img {
  width: 100%;
}

.page-overview .page-overview-container .page-overview-text {
  width: 50%;
  padding: 20px;
}

@media (max-width: 767px) {
  .page-overview .page-overview-container .page-overview-text {
    width: 100%;
    padding: 20px 0;
  }
}

.page-overview .page-overview-img-last {
  margin-top: 50px;
  padding: 50px 0;
  width: 100%;
  background-image: url(images/background.webp);
}

.page-overview .page-overview-img-last img {
  width: 100%;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .page-overview .page-overview-img-last img {
    -o-object-position: -80px;
       object-position: -80px;
  }
}

.page-overview p {
  margin-bottom: 20px;
}

.goods {
  margin-top: 50px;
}

@media (max-width: 767px) {
  .goods {
    margin-top: 20px;
  }
}

.goods .goods-text-area {
  text-align: center;
  margin-top: 50px;
}

@media (max-width: 767px) {
  .goods .goods-text-area {
    text-align: left;
  }
}

.goods .goods-text-area p {
  margin-top: 20px;
}

.goods .goods-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.goods .goods-container article {
  margin-top: 30px;
  width: 32%;
  text-align: center;
}

@media (max-width: 767px) {
  .goods .goods-container article {
    width: 49%;
  }
}

.goods .goods-container article .goods-img {
  position: relative;
  width: 100%;
  height: 250px;
}

@media (max-width: 767px) {
  .goods .goods-container article .goods-img {
    height: 130px;
  }
}

.goods .goods-container article .goods-img img {
  width: 100%;
  height: 250px;
}

@media (max-width: 767px) {
  .goods .goods-container article .goods-img img {
    height: 130px;
  }
}

.goods .goods-container article .goods-img .on-sale-true {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 20px;
  color: #fff;
  background-color: #ffc400;
  text-shadow: #333 1px 1px 1px;
  font-size: 20px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .goods .goods-container article .goods-img .on-sale-true {
    padding: 5px 10px;
    font-size: 14px;
  }
}

.goods .goods-container article .goods-img .on-sale-false {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 20px;
  color: #fff;
  background-color: gray;
  text-shadow: #333 1px 1px 1px;
  font-size: 20px;
  font-weight: bold;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .goods .goods-container article .goods-img .on-sale-false {
    padding: 5px 10px;
    font-size: 14px;
  }
}

.goods .goods-container article .goods-name {
  margin-top: 10px;
  font-weight: bold;
}

.goods .goods-container article .goods-season {
  margin-top: 10px;
}

.goods .goods-container article .goods-price {
  margin-top: 10px;
}

@media (max-width: 767px) {
  .archive-news {
    margin-top: 50px;
  }
}

.news-single-date {
  color: #856239;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .news-single-date {
    margin-top: 20px;
  }
}

.news-single-container .news-single-thumbnail {
  width: 100%;
  height: auto;
}

.news-single-container .news-single-thumbnail img {
  width: 100%;
  height: auto;
}

.news-single-container p {
  text-align: left;
  font-size: 16px;
  font-family: "Hiragino Sans", "遊ゴシック";
  color: #333333;
  padding: 30px 10px;
}

.news-single-pagination main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  .news-single-pagination main {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.news-single-pagination main a {
  max-width: 250px;
  width: 250px;
  padding: 20px;
  margin: 0 10px;
  margin-top: 50px;
  font-size: 18px;
  text-align: center;
  border: 1px solid #856239;
  white-space: nowrap;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .news-single-pagination main a {
    width: 49%;
    margin-left: 0;
    margin-right: 0;
    padding: 10px 0;
  }
}

.news-single-pagination main a:hover {
  color: #fff;
  background-color: #856239;
}

.contact {
  text-align: center;
}

@media (max-width: 767px) {
  .contact {
    margin-top: 50px;
    text-align: left;
  }
}

.contact p {
  margin-top: 20px;
}

.order p {
  margin-bottom: 20px;
}

.order .order-more-button {
  margin-top: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
}

.order .order-more-button a {
  white-space: nowrap;
  padding: 15px 20px;
  margin: 0 auto;
  font-size: 18px;
  text-align: center;
  color: #856239;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #856239;
}

.order .order-more-button a:hover {
  color: #fff;
  background-color: #856239;
  opacity: 1;
}

.order .order-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px;
}

@media (max-width: 767px) {
  .order .order-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.order .order-container .order-img {
  width: 50%;
}

@media (max-width: 767px) {
  .order .order-container .order-img {
    width: 100%;
  }
}

.order .order-container .order-img img {
  width: 100%;
  height: auto;
}

.order .order-container .order-text {
  width: 50%;
  padding: 20px;
}

@media (max-width: 767px) {
  .order .order-container .order-text {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.order h2 {
  margin: 50px 0;
}

@media (max-width: 767px) {
  .order h2 {
    margin: 25px 0;
  }
}

.order .calendar {
  margin-top: 0;
}

@media (max-width: 767px) {
  .order .calendar {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .order .payment {
    margin-top: 50px;
  }
}

.order .payment p {
  text-align: center;
}

@media (max-width: 767px) {
  .ebizrule {
    margin-top: 50px;
  }
}

.ebizrule table {
  border: 1px solid #333;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.3em;
}

.ebizrule table td {
  border: 1px solid #333;
  vertical-align: middle;
  padding: 10px;
}
/*# sourceMappingURL=style.css.map */