@charset "UTF-8";
body {
  width: 100%;
  height: 100%;
  background-color: #fbefe1;
  color: #267e7c;
  overflow-x: hidden;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
a {
  font-weight: bold;
  color: #267e7c;
  text-decoration: none;
}
a:hover {
  color: #c9a477;
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  グリットレイアウト ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.container {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 300px auto;
  grid-template-rows: auto auto auto auto 200px;
  gap: 10px 10px;
  grid-template-areas: "header header" "slide slide" "nav main" "info main" "footer footer";
}

.grid-item {
  border-radius: 20px;
  border: 12px solid #654b2b;
}

@media screen and (max-width: 1260px) {
  .container {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .container {
    display: grid;
    grid-template-columns: 250px auto;
  }
}
@media screen and (max-width: 768px) {
  .container {
    display: grid;
    grid-template-columns: 100%;
    gap: 10px 10px;
    grid-template-areas: "header" "slide" "main" "info" "footer";
  }
  .grid-item {
    border: 10px solid #654b2b;
  }
}
/* ↑↑↑↑↑  グリットレイアウト ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  レスポンシブ ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.sp-only {
  display: none;
}

.tb-only {
  display: none;
}

@media screen and (max-width: 1024px) {
  .tb-only {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}
/* ↑↑↑↑↑  レスポンシブ ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  slider ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.slider {
  width: 100vw;
  height: 100%;
  box-sizing: border-box;
  z-index: 99;
  margin: 40px auto 0;
  grid-area: slide;
}

.slider-list {
  width: 90%;
  box-sizing: border-box;
  margin: 0 auto;
}

.slider-item {
  height: auto;
  margin: 0 4px;
}
.slider-item:hover {
  opacity: 0.8;
}

.slider-item img {
  width: 20vw;
  min-width: 160px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}

.slider-title {
  width: 19vw;
  min-width: 150px;
  height: calc(100% - 25px);
  background-color: rgba(255, 255, 255, 0.2);
  font-size: clamp(0.75rem, 0.477rem + 1.36vw, 1.5rem);
  font-weight: bold;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  box-sizing: border-box;
  filter: drop-shadow(3px 3px 2px #000);
  position: absolute;
  top: 10px;
  bottom: 0;
  padding-top: 3vw;
  margin: 0 auto;
}

.slick-prev,
.slick-next {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 40%;
  z-index: 1;
  cursor: pointer;
  outline: none;
  border-top: 5px solid #654b2b;
  border-right: 5px solid #654b2b;
}

.slick-prev {
  left: -2%;
  transform: rotate(-135deg);
}

.slick-next {
  right: -2%;
  transform: rotate(45deg);
}

.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background-color: #654b2b;
}

.slick-dots .slick-active button {
  background-color: #654b2b;
}

@media screen and (max-width: 768px) {
  .slider {
    padding: 0 0 20px;
  }
}
/* ↑↑↑↑↑  slider ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  slide-in ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.slide-in {
  opacity: 0;
}

.slide-in.show {
  opacity: 0;
  -webkit-animation: slideIn 1s forwards;
          animation: slideIn 1s forwards;
}

@-webkit-keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ↑↑↑↑↑  slide-in ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  global-nav & hamburger-btn ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.global-nav {
  background-color: #fbefe1;
  padding: 24px;
  margin: 16px 14px 0 16px;
  z-index: 99;
  grid-area: nav;
}

.global-nav-item {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 2;
}
.global-nav-item a {
  color: #654b2b;
}

.global-nav-image {
  width: 95%;
  position: relative;
  margin: 40px auto;
}

.global-nav-image img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: drop-shadow(10px 10px 10px #333);
}

.global-nav-title {
  width: 90%;
  height: 80px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
  filter: drop-shadow(2px 2px 2px #333);
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 24px 0;
}

.hamburger-btn {
  display: none;
}

@media screen and (max-width: 768px) {
  .global-nav {
    width: 100%;
    height: 100%;
    background: #fbefe1;
    position: fixed;
    top: -120%;
    left: 0;
    border: none;
    border-radius: 0;
    box-sizing: border-box;
    transition: all 0.6s;
    z-index: 999;
    margin: 0 auto;
  }
  .global-nav-list {
    display: block;
  }
  .global-nav.panelactive {
    top: 0;
  }
  .global-nav-list {
    position: absolute;
    top: 50px;
    right: 100px;
    z-index: 999;
    margin: 0 auto;
  }
  .global-nav-item {
    list-style: none;
  }
  .global-nav-item a {
    font-size: 1.2rem;
    font-weight: bold;
    color: #654b2b;
    display: block;
    text-decoration: underline;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px;
  }
  .global-nav-image {
    display: none;
  }
  .info-text-container.menu {
    display: none;
  }
  .info-map-container.menu {
    display: none;
  }
  .hamburger-btn {
    width: 50px;
    height: 50px;
    background: #654b2b;
    display: block;
    position: fixed;
    top: 10px;
    right: 10px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 9999;
  }
  .hamburger-btn span {
    width: 45%;
    height: 3px;
    background-color: #fff;
    display: inline-block;
    position: absolute;
    left: 14px;
    border-radius: 2px;
    transition: all 0.4s;
  }
  .hamburger-btn span:nth-of-type(1) {
    top: 15px;
  }
  .hamburger-btn span:nth-of-type(2) {
    top: 23px;
  }
  .hamburger-btn span:nth-of-type(3) {
    top: 31px;
  }
  .hamburger-btn.active span:nth-of-type(1) {
    width: 30%;
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
  }
  .hamburger-btn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .hamburger-btn.active span:nth-of-type(3) {
    width: 30%;
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
  }
}
/* ↑↑↑↑↑  global-nav & hamburger-btn ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  info ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.info {
  box-sizing: border-box;
  margin: 0 16px;
  grid-area: info;
}

.info-wrapper {
  width: 90%;
  margin: 0 auto;
}

.info-shop-title {
  font-family: "Dancing Script", cursive;
  font-weight: bold;
  padding: 40px 16px 20px;
}

.info-sub-title {
  font-size: 1.2rem;
}

.info-main-title {
  font-size: 3rem;
  line-height: 0.5;
  padding-bottom: 16px;
}

.info-time {
  width: 80%;
  font-size: 1rem;
  font-weight: bold;
  background-color: #fff;
  padding: 16px;
  margin-bottom: 20px;
}

.info-closed {
  padding-top: 8px;
}

.info-address-container {
  font-size: 16px;
  font-weight: bold;
  padding: 8px;
}

.info-phone {
  padding: 10px 0 40px;
}

.info-map-container {
  width: 90%;
  margin: 0 auto;
}

.info-map-container img {
  width: 100%;
  height: 100%;
}

.calendar-wrapper {
  width: 95%;
  height: auto;
  margin: 40px auto;
}

.calendar-month {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  padding: 20px;
}

.calendar-month .num {
  font-size: 2rem;
  font-weight: bold;
  padding-left: 10px;
}

.calendar-container {
  width: 90%;
  margin: 0 auto;
}
.calendar-container th {
  width: 14.2857142857%;
  font-size: 0.6rem;
  font-weight: bold;
  text-align: center;
}
.calendar-container td {
  font-weight: bold;
  text-align: center;
}

.closed {
  background-color: #ffe0ba;
}

.red {
  color: red;
}

.mayree {
  border: 3px solid #654b2b;
}

.calendar-desc {
  width: 70%;
  padding: 4px 16px 0;
  margin: 8px auto;
}
.calendar-desc span {
  font-weight: bold;
  line-height: 20px;
  vertical-align: top;
  padding-left: 10px;
}

.closed-color {
  display: inline-block;
  width: 30px;
  height: 20px;
  background-color: #ffe0ba;
}

.mayree-color {
  display: inline-block;
  width: 30px;
  height: 20px;
  border: 3px solid #654b2b;
  box-sizing: border-box;
}

.info-contact {
  width: 200px;
  height: 210px;
  margin: 0 auto;
  position: relative;
}
.info-contact p {
  width: 100%;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.info-contact p::first-line {
  font-size: 2.2rem;
}

.info-contact a {
  width: 100%;
  height: 100%;
  display: block;
  color: #654b2b;
  text-align: center;
  background-image: url(../image/bread01.jpg);
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 1024px) {
  .calendar-container {
    width: 100%;
  }
  .calendar-container th {
    font-size: 0.2rem;
  }
  .calendar-desc {
    width: 90%;
  }
  .info-contact {
    width: 180px;
    height: 190px;
  }
}
@media screen and (max-width: 768px) {
  .info-wrapper {
    width: 90%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
  }
  .info-text-container {
    width: 50%;
  }
  .info-map-container {
    width: 40%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .info-map-container img {
    width: 100%;
  }
  .calendar-wrapper {
    width: 45%;
  }
  .info-contact {
    width: 200px;
    height: 210px;
  }
}
@media screen and (max-width: 500px) {
  .info-text-container {
    width: 80%;
    margin: 0 auto;
  }
  .info-map-container {
    width: 60%;
  }
}
/* ↑↑↑↑↑  info ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  main ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.main {
  background-color: #fbefe1;
  box-sizing: border-box;
  margin: 16px 30px 0 0;
  grid-area: main;
}

section {
  width: 90%;
  padding-bottom: 60px;
  margin: 0 auto;
}

.sec-title {
  width: 400px;
  font-weight: bold;
  color: #654b2b;
  padding: 40px 24px;
}
.sec-title .en {
  display: inline-block;
  font-size: 3rem;
}
.sec-title .ja {
  font-size: 1rem;
  font-weight: bold;
}

.title-area {
  display: flex;
}

.more-area {
  padding: 80px 10% 60px 2%;
}

.more {
  display: inline-block;
  height: 30px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #654b2b;
  line-height: 30px;
  border: 4px solid #654b2b;
  border-radius: 10px;
  padding: 8px 16px;
}

@media screen and (max-width: 1024px) {
  .more {
    height: 24px;
    font-size: 1.1rem;
    line-height: 24px;
    border: 3px solid #654b2b;
  }
}
@media screen and (max-width: 768px) {
  .main {
    width: 95%;
    margin: 16px auto 0;
  }
  .sec-title {
    width: 80%;
    padding: 40px 24px;
  }
  .sec-title .en {
    font-size: 2.5rem;
  }
  .title-area {
    display: block;
  }
  .more-area {
    text-align: right;
    padding: 0 16px 20px 0;
  }
  .more {
    height: 24px;
    font-size: 1.2rem;
    line-height: 24px;
    border: 3px solid #654b2b;
  }
}
/* ↑↑↑↑↑  main ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  fade-up ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.fade-up {
  opacity: 0;
}

.fade-up.show {
  opacity: 0;
  -webkit-animation: fadeUp 0.5s forwards;
          animation: fadeUp 0.5s forwards;
}

@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    transform: rotate(-10deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: rotate(-10deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg);
  }
}
/* ↑↑↑↑↑  fade-up ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  under-line ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.under-line {
  opacity: 0;
}

.under-line.show {
  -webkit-animation-name: underLine;
          animation-name: underLine;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  position: relative;
  opacity: 0;
}

@-webkit-keyframes underLine {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes underLine {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.under-line.show::before {
  -webkit-animation-name: underLineL;
          animation-name: underLineL;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  top: 95%;
  width: 100%;
  height: 3px;
  background-color: #654b2b; /*伸びる背景色の設定*/
}

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

@keyframes underLineL {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  100% {
    transform-origin: left;
    transform: scaleX(1);
  }
}
/* ↑↑↑↑↑  under-line ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  fade-in02 ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.fade-in02 {
  opacity: 0;
}

.fade-in02.show {
  opacity: 0;
  -webkit-animation: fadeIn02 1s 0.5s forwards;
          animation: fadeIn02 1s 0.5s forwards;
}

@-webkit-keyframes fadeIn02 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn02 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ↑↑↑↑↑  fae-in02 ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  footer ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.footer {
  position: relative;
  grid-area: footer;
}

.footer-movie {
  width: 100%;
  height: 200px;
  text-align: center;
  margin: 0 auto;
}

.footer-video {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.copy-right {
  width: 100%;
  display: block;
  font-size: 1.2rem;
  font-family: "Dancing Script", cursive;
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: 40px;
  text-align: center;
  padding: 40px 0;
}

/* ↑↑↑↑↑  footer ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  company ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.company {
  width: 90%;
  margin: 0 auto;
}

.company-wrapper {
  width: 90%;
  margin: 0 auto;
}
.company-wrapper tr {
  border-bottom: 2px solid #654b2b;
  padding: 16px;
}
.company-wrapper td {
  font-size: 1.2rem;
  padding: 16px 30px;
}
.company-wrapper td:nth-of-type(1) {
  width: 100px;
}

.company-map-container {
  width: 50%;
  padding: 80px 0;
  margin: 0 auto;
}
.company-map-container p {
  font-size: 1.2rem;
  text-align: center;
  padding-top: 16px;
}

@media screen and (max-width: 768px) {
  .company {
    width: 95%;
    padding: 16px 0;
    margin: 0;
  }
  .company-wrapper {
    width: 95%;
    margin: 0 auto 40px;
  }
  .company-wrapper td:nth-of-type(1) {
    width: 100px;
  }
  .company-wrapper td {
    padding: 16px;
  }
  .company-map-container {
    display: none;
  }
}
/* ↑↑↑↑↑  company ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  concept ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.concept-wrapper {
  width: 95%;
  margin: 0 auto;
}

.concept-sub-title {
  font-size: 2rem;
  font-weight: bold;
}
.concept-sub-title span {
  display: inline-block;
  font-size: 4rem;
  color: #fff;
  background-color: #267e7c;
  border-radius: 50%;
  padding: 8px 16px 4px;
  margin: 20px 0;
}

.concept-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
  margin: 40px auto;
}

.concept-message {
  width: 65%;
  font-size: 1.6rem;
  font-weight: bold;
  color: #654b2b;
  text-align: right;
  text-decoration: underline;
  padding: 40px 0 20px;
}

.concept-image-container {
  width: 32%;
  position: relative;
}

.concept-image-container img {
  width: 70%;
  height: 20vh;
  -o-object-fit: cover;
     object-fit: cover;
  filter: drop-shadow(10px 10px 10px #333);
}

.img02 {
  position: relative;
  top: -40px;
  left: 100px;
}

.concept-text-container {
  width: 100%;
}

.concept-desc {
  width: 90%;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  padding: 0 0 100px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .concept-sub-title {
    font-size: 2rem;
  }
  .concept-sub-title span {
    font-size: 3rem;
  }
  .concept-message {
    font-size: 1.5rem;
    padding: 20px 0;
  }
  .concept-image-container {
    top: -20px;
  }
  .concept-image-container img {
    width: 100px;
    height: 100px;
  }
  .img02 {
    top: -20px;
    left: 50px;
  }
}
@media screen and (max-width: 768px) {
  .main {
    margin: 0 auto;
  }
  .concept-sub-title {
    font-size: 1.5rem;
  }
  .concept-message {
    padding: 40px 0 0;
  }
}
@media screen and (max-width: 500px) {
  .concept-container {
    flex-direction: column-reverse;
  }
  .concept-message {
    width: 100%;
    text-align: center;
    padding: 0;
  }
  .concept-image-container {
    width: 20%;
  }
  .concept-image-container {
    width: 100%;
    top: -20px;
    left: 22%;
  }
  .concept-image-container img {
    width: 50%;
    height: 80px;
  }
  .img02 {
    top: -20px;
    left: 60px;
  }
}
/* ↑↑↑↑↑  concept ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  contact ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.contact {
  width: 80%;
  height: 100%;
  margin: 80px auto;
}

.contact-title-area {
  padding: 0 40px;
}
.contact-title-area .en {
  display: inline-block;
  font-size: 4rem;
  font-weight: bold;
  color: #654b2b;
  vertical-align: top;
}
.contact-title-area .ja {
  font-size: 1.3rem;
  font-weight: bold;
  color: #654b2b;
  font-family: Arial, Helvetica, sans-serif;
}

.contact-message {
  font-size: 1rem;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 2rem;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  padding: 40px 0;
}

form {
  width: 100%;
  margin: 0 auto;
}
form label {
  font-size: 1.3rem;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 2rem;
  margin: 16px;
}
form input,
form textarea {
  font-size: 1.1rem;
  display: block;
  background-color: #fff;
  border: solid 4px #654b2b;
  border-radius: 8px;
  padding: 1rem;
  margin: 0 40px;
}
form button {
  font-size: 1.1rem;
  font-weight: 700;
  color: #654b2b;
  background-color: #fff;
  border: solid 4px #654b2b;
  border-radius: 8px;
  padding: 10px 20px;
  margin: 40px;
}

@media screen and (max-width: 599px) {
  .contact-wrapper {
    width: 95%;
    padding: 16px 0;
    margin: 0 auto;
  }
  .contact-wrapper .contact-title-area {
    width: 100%;
    display: block;
  }
  .contact-wrapper .contact-title-area h4 {
    font-size: 1.2rem;
    padding: 8px 24px;
  }
}
/* ↑↑↑↑↑  contact ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  covid19 ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.covid19-wrapper {
  width: 95%;
  margin: 0 auto;
}

.covid19-sub-title {
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  color: #654b2b;
  border: 4px solid #654b2b;
  border-radius: 8px;
  padding: 4px 16px;
  margin: 40px 0;
}

.covid119-message {
  font-size: 1.3rem;
  font-weight: bold;
  color: #654b2b;
  padding: 16px;
}

.covid19-list {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 60px 0;
  margin: 0 auto;
}

.covid19-item {
  width: 22%;
  min-width: 80px;
  height: 100%;
}

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

.covid19-name {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  padding: 20px 8px;
}

@media screen and (max-width: 768px) {
  .main {
    margin: 0 auto;
  }
}
/* ↑↑↑↑↑  covid19 ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  information ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.information-wrapper {
  width: 95%;
  margin: 0 auto;
}

.information-list {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.information-item {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 40px;
  margin: 0 auto;
}

.information-item-img {
  width: 40%;
  max-width: 280px;
  min-width: 200px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.information-item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: drop-shadow(10px 10px 10px #333);
}

.information-sub-title {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background-color: rgba(255, 255, 255, 0.2);
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  box-sizing: border-box;
  filter: drop-shadow(3px 3px 2px #000);
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 99;
  padding: 30px 0;
  margin: 0 auto;
}

.information-item-text {
  width: 45%;
  height: 100%;
  text-align: left;
  position: relative;
  padding-left: 20px;
}
.information-item-text a {
  display: inline-block;
  text-decoration: overline;
  padding-top: 20px;
  position: absolute;
  top: 24px;
  left: 20px;
}

.information-item-desc {
  font-size: 1.2rem;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .information-wrapper {
    width: 80%;
    margin: 0 auto;
  }
  .information-list {
    display: block;
    margin: 0 auto;
  }
  .information-item-img {
    width: 100%;
    margin: 0 auto;
  }
  .information-item-text {
    width: 80%;
    padding: 0;
    margin: 0 auto;
  }
  .information-item-desc {
    padding: 16px 0 0;
  }
}
/* ↑↑↑↑↑  information ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  mayreeday ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.mayreeday-wrapper {
  width: 90%;
  margin: 0 auto;
}

.mayreeday-sub-title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 5rem;
  text-align: left;
}
.mayreeday-sub-title span {
  display: inline-block;
  font-size: 4rem;
  color: #fff;
  background-color: #267e7c;
  border-radius: 50%;
  padding: 8px 16px 4px;
  margin: 20px 0;
}

.mayreeday-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 30px;
  margin: 40px auto 80px;
}

.mayreeday-message {
  width: 55%;
  font-size: 1.8rem;
  font-weight: bold;
  color: #654b2b;
  text-align: center;
  text-decoration: underline;
  padding: 80px 0;
}

.mayreeday-image-container {
  width: 40%;
  position: relative;
  top: 40px;
}

.mayreeday-image-container img {
  width: 50%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: drop-shadow(10px 10px 10px #333);
}

.img02 {
  position: relative;
  top: -40px;
  left: 100px;
}

.mayreeday-text-container {
  width: 100%;
}

.mayreeday-desc {
  width: 100%;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 40px 0;
}
.mayreeday-desc span {
  display: inline-block;
  font-size: 1.2rem;
  color: #fff;
  background-color: #267e7c;
  border-radius: 8px;
  padding: 8px 16px 4px;
  margin: 20px 0;
}

@media screen and (max-width: 1024px) {
  .mayreeday-sub-title {
    font-size: 2rem;
  }
  .mayreeday-sub-title span {
    font-size: 3rem;
  }
  .mayreeday-message {
    font-size: 1.5rem;
    padding: 20px 0;
  }
  .mayreeday-image-container {
    top: 20px;
  }
  .mayreeday-image-container img {
    width: 40%;
    height: 100px;
  }
  .img02 {
    top: 50px;
    left: -30px;
  }
}
/* ↑↑↑↑↑  mayreeday ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.global-nav-image.menu {
  /* padding-bottom: 40px; */
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  menu ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.title-area {
  width: 95%;
}

.menu-title {
  width: 200px;
}

.menu-message {
  width: 70%;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: underline;
  padding: 80px 1%;
}

.menu-wrapper {
  width: 90%;
  margin: 0 auto;
}

.menu-list {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto;
}

.menu-item {
  width: 20%;
  min-width: 200px;
  height: 100%;
}

.menu-item img {
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: drop-shadow(10px 10px 10px #333);
}

.menu-name {
  font-size: 1.2rem;
  font-weight: bold;
  padding: 16px 0 0;
}

.menu-price {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: right;
  text-decoration: underline;
  margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  .menu-wrapper {
    width: 100%;
  }
  .menu-item {
    min-width: 180px;
  }
  .menu-item img {
    width: 180px;
    height: 180px;
  }
}
@media screen and (max-width: 768px) {
  .menu-message {
    width: 95%;
    padding: 0 16px 40px;
    margin: 0 auto;
  }
}
/*↑↑↑↑↑  menu ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  whats-new ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.whats-new-wrapper {
  width: 90%;
  margin: 0 auto;
}

.whats-new-list {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto;
}

.whats-new-item {
  width: 40%;
  min-width: 200px;
  height: 100%;
  overflow: hidden;
}

.whats-new-item img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: drop-shadow(10px 10px 10px #333);
}

.bread-name {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  text-decoration: underline;
  padding: 20px;
}

.bread-desc {
  font-size: 1rem;
  font-weight: bold;
  padding: 0 8px;
}

@media screen and (max-width: 1024px) {
  .whats-new-wrapper {
    width: 95%;
  }
  .whats-new-item {
    min-width: 180px;
  }
}
/* ↑↑↑↑↑  whats-new ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  news ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.news-wrapper {
  width: 85%;
  background-color: #fff;
  padding: 20px 40px;
  margin: 0 auto;
}

.news-date {
  font-weight: bold;
  text-decoration: underline;
}

.news-desc {
  display: block;
  font-weight: bold;
  padding: 0 16px 16px;
}

/* ↑↑↑↑↑  news ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  header start  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.header {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  grid-area: header;
}

.header-movie {
  width: 100%;
  margin: 0px auto;
}

video {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.header-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.header-img img {
  width: 100%;
  height: auto;
  filter: drop-shadow(-1px -1px 50px #fbefe1);
}

.header-title {
  color: #fff;
  font-family: "Dancing Script", cursive;
  filter: drop-shadow(3px 3px 1px #267e7c);
  position: absolute;
  top: 200px;
  left: 30%;
  z-index: 99;
}

.sub-title {
  font-size: 5vw;
}

.main-title {
  font-size: clamp(6rem, 1.818rem + 10.91vw, 15rem);
  line-height: 100px;
}

.header-text {
  width: 300px;
  height: 500px;
  font-weight: bold;
  color: #111;
  position: absolute;
  top: 120px;
  right: 5%;
  z-index: 99;
}

.header-message {
  font-size: 1.1rem;
  font-family: sans-serif;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  position: relative;
  z-index: 99;
  padding-bottom: 20vh;
  margin: 0 auto;
}

.header-time {
  width: 180px;
  background-color: #fff;
  padding: 8px 16px;
}

@media screen and (max-width: 1024px) {
  .header {
    height: 540px;
  }
  .header-text {
    right: 5%;
  }
}
@media screen and (max-width: 980px) {
  .header {
    height: 540px;
  }
  .header-title {
    top: 80px;
    left: 25%;
  }
}
@media screen and (max-width: 768px) {
  .header {
    height: 420px;
  }
  .main-title {
    font-size: 10vw;
    line-height: 2rem;
  }
  .header-text {
    width: 280px;
    height: 340px;
    right: 2%;
  }
  .header-message {
    font-size: 1rem;
    padding-bottom: 10vh;
  }
}
@media screen and (max-width: 700px) {
  .header {
    height: 450px;
  }
  .header-text {
    height: 300px;
  }
}
@media screen and (max-width: 400px) {
  .header {
    height: 340px;
  }
  .header-img img {
    width: 120%;
    -o-object-position: -30px;
       object-position: -30px;
  }
  .header-text {
    width: 200px;
    height: 340px;
    top: 80px;
  }
  .header-message {
    font-size: 0.9rem;
    line-height: 1.4rem;
    padding-bottom: 5vh;
  }
  .header-time {
    position: absolute;
    top: 160px;
    left: -100px;
  }
}
/* ↑↑↑↑↑  header end  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  news start  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.news-wrapper {
  width: 85%;
  background-color: #fff;
  padding: 20px 40px;
  margin: 0 auto;
}

.news-date {
  font-weight: bold;
  text-decoration: underline;
}

.news-desc {
  display: block;
  font-weight: bold;
  padding: 0 16px 16px;
}

@media screen and (max-width: 768px) {
  .news-wrapper {
    width: 80%;
    padding: 20px;
  }
}
/* ↑↑↑↑↑  news end  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  whats-new start  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.whats-new-wrapper {
  width: 90%;
  margin: 0 auto;
}

.whats-new-list {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto;
}

.whats-new-item {
  width: 40%;
  min-width: 200px;
  height: 100%;
  overflow: hidden;
}

.whats-new-item img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: drop-shadow(10px 10px 10px #333);
}

.bread-name {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  text-decoration: underline;
  padding: 20px;
}

.bread-desc {
  font-size: 1rem;
  font-weight: bold;
  padding: 0 8px;
}

@media screen and (max-width: 550px) {
  .whats-new-item {
    width: 80%;
    padding-bottom: 20px;
  }
}
/* ↑↑↑↑↑  whats-new end  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  covid19 start  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.covid19-wrapper {
  width: 90%;
  background-color: #fff;
  text-align: center;
  margin: 0 auto;
}

.covid19-sub-title.top {
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  background-color: #267e7c;
  border-radius: 8px;
  padding: 4px 16px;
  margin: 40px 0 20px;
}

.covid119-message {
  font-size: 1.3rem;
  font-weight: bold;
  color: #654b2b;
  padding: 0 16px;
}

.covid19-list {
  width: 90%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 60px 0 0;
  margin: 0 auto;
}

.covid19-item {
  width: 22%;
  min-width: 40px;
  height: 100%;
  overflow: hidden;
}

.covid19-item img {
  width: 80%;
  height: 80%;
  -o-object-fit: cover;
     object-fit: cover;
}

.covid19-name {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4rem;
  padding: 20px;
}

@media screen and (max-width: 768px) {
  .covid19-wrapper {
    width: 95%;
  }
  .covid19-sub-title.top {
    font-size: 1.5rem;
  }
  .covid19-name {
    font-size: 0.7rem;
    line-height: 1.1rem;
    padding: 8px 0 20px 0;
  }
}
/* ↑↑↑↑↑  covid19 end  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
↓↓↓↓↓  whats-new ここから  ↓↓↓↓↓
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.whats-new-wrapper {
  width: 90%;
  margin: 0 auto;
}

.whats-new-list {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto;
}

.whats-new-item {
  width: 43%;
  min-width: 200px;
  height: 100%;
}

.whats-new-item img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: drop-shadow(10px 10px 10px #333);
}

.bread-name {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  text-decoration: underline;
  padding: 20px;
}

.bread-desc {
  font-size: 1rem;
  font-weight: bold;
  padding: 0 8px;
}

.menu-price {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: right;
  text-decoration: underline;
  margin-bottom: 40px;
}

/* ↑↑↑↑↑  whats-new ここまで  ↑↑↑↑↑
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*//*# sourceMappingURL=b-style.css.map */