@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #333333;
  --white-color: #FDFBF7;
  --primary-color: #F8F5EF;
  --accsent-color: #BED0CA;
  --sub-color01: #B89B81;
  --sub-color02: #A3B2B6;
  --sub-color03: #5A4738;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 800px;
  --content-width: 960px;
  --content-width-lg: 1088px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

:root {
  /* 筆記体 */
  --caveat-font: "Caveat", cursive;
}

/* ---------- base ---------- */

body {
  color: var(--black-color);
  background-color: var(--primary-color);
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

/* クリックした際の青い枠線を削除 */
*:focus {
  outline: none;
}

/* タップした際の青い四角を削除 */
button,
span {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

/* ---------- utility ---------- */

.u_txt_line {
  padding-bottom: 5px;
  position: relative;
}
.u_txt_line::before {
  background: var(--black-color);
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.u_txt_line:hover::before {
  transform-origin: center top;
  transform: scale(1, 1);
}

.l_footer .u_txt_line::before {
  background: var(--primary-color);
}

.u_btn_circle {
  background: var(--sub-color02);
  color: var(--sub-color01);
  overflow: hidden;
  position: relative;
  transition-duration: .4s;
  z-index: 2;
}
.u_btn_circle::after {
  background: var(--sub-color02);
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity .5s, transform 0s;
  transition-delay: 0s, .4s;
}

.u_btn_circle:hover {
  color: var(--primary-color);
}
.u_btn_circle:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity .8s, transform .6s ease-in-out;
}

/* ---------- layout ---------- */

.l_container-sm,
.l_container,
.l_container-lg {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 32px);
}

.l_container {
  max-width: calc(var(--content-width) + 32px);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 32px);
}

.l_contents {
  padding: 80px 0;
}

@media screen and (min-width: 1080px) {
  .l_contents {
    padding: 120px 0;
  }
}

.l_header {
  width: 100vw;
  height: 92px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
  background-color: var(--sub-color01);
}
@media screen and (min-width: 1080px) {
  .l_header {
    padding: 16px 80px;
  }
}

.l_header-logo {
  display: block;
  font-size: 48px;
  font-weight: bold;
  font-family: var(--caveat-font);
  color: var(--sub-color03);
  white-space: nowrap;
}

.l_header-logo_link {
  width: 100%;
  height: 100%;
}

.l_header-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--sub-color01);
  z-index: var(--z-index-menu);
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 1080px) {
  .l_header-nav {
    display: block;
    position: static;
    background: transparent;
    width: auto;
    height: auto;
    opacity: 1;
    pointer-events: inherit;
    visibility: visible;
    padding: 0;
  }
}

.l_header-nav_list {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1080px) {
  .l_header-nav_list {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
  }
}

.l_section_content {
  margin-top: 32px;
}
@media screen and (min-width: 1080px) {
  .l_section_content {
    margin-top: 40px;
  }
}

.l_footer {
  width: 100%;
  height: auto;
  padding: 40px 0 16px;
  background: var(--sub-color03);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
}

.l_footer_logo {
  display: block;
  width: 100%;
  height: auto;
  font-size: 64px;
  color: var(--white-color);
  font-family: var(--caveat-font);
  text-align: center;
}

.l_footer_logo_link {
  display: block;
  width: 100%;
  height: 100%;
}

.l_footer-nav_list  {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.l_footer-nav_item {
  width: auto;
  height: auto;
  color: var(--white-color);
}

.l_footer-nav_link {
  display: block;
  width: 100%;
  height: 100%;
}

.l_footer-copyright {
  width: 100%;
  height: auto;
  text-align: center;
}

.l_footer-copyright_txt {
  color: var(--white-color);
}

/* ---------- module ---------- */

.m_hamburger {
  width: 40px;
  height: 32px;
  position: relative;
  z-index: var(--z-index-menu);
}
@media screen and (min-width: 1080px) {
  .m_hamburger {
    display: none;
  }
}

.m_hamburger-bar {
  width: 100%;
  height: 3px;
  border-radius: 2px;
  position: absolute;
  background: var(--sub-color03);
  left: 50%;
  transition: 0.3s;
}

.m_hamburger-bar:first-child {
  top: 0;
  transform: translate(-50%, 0);
}

.m_hamburger-bar:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.m_hamburger-bar:last-child {
  top: 100%;
  transform: translate(-50%, -100%);
}

.m_section_title {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 48px;
  font-weight: bold;
  font-family: var(--caveat-font);
  color: var(--sub-color01);
  letter-spacing: 10%;
  text-shadow: 4px 4px 4px rgba(51, 51, 51, 0.25);
}


.m_section_title__white {
  color: var(--white-color);
}

.m_section_btn-wrap {
  width: 221px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 64px;
  background: var(--sub-color01);
  border-radius: 100px;
  margin: 40px auto 0;
}

.m_section_btn {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white-color);
}





/* ---------- top ---------- */
.top_kv {
  position: relative;
  width: 100%;
  height: 140vh;
  overflow: hidden;
  z-index: var(--z-index-default);
}
@media screen and (min-width: 768px) {
  .top_kv {
    height: 100vh;
  }
}

.top_kv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140vh;
  z-index: var(--z-index-back);
  background: var(--sub-color01);
  border-radius: 0 0 100px 0;
}
@media screen and (min-width: 768px) {
  .top_kv::before {
    width: 50%;
    height: 100vh;
  }
}

.top_kv-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .top_kv-inner {
    flex-direction: row-reverse;
    align-items: end;
    margin-left: 40px;
  }
}

.top_kv_img-wrap {
  width: 100%;
  height: calc(100vh - 92px);
  display: flex;
  overflow: hidden;
  border-radius: 100px 0 0 100px;
  box-shadow: -4px 4px 4px rgba(51, 51, 51, 0.25);
  position: relative;
}
@media screen and (min-width: 768px) {
  .top_kv_img-wrap {
    width: calc(100% / 3 * 2);
    height: calc(90vh - 92px);
    margin: 0 0 0 auto;
  }
}

.top_kv_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 100px 0 0 100px;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;

  animation: image-switch-animation 15s infinite;
}

.top_kv_img-src01 {
  background-image: linear-gradient(rgba(248, 245, 239, 0.15), rgba(248, 245, 239, 0.15)), url("../img/KV01.jpg");
}

.top_kv_img-src02 {
  background-image: linear-gradient(rgba(248, 245, 239, 0.15), rgba(248, 245, 239, 0.15)), url("../img/KV02.webp");
}

.top_kv_img-src03 {
  background-image: linear-gradient(rgba(248, 245, 239, 0.15), rgba(248, 245, 239, 0.15)), url("../img/KV03.jpg");
}

.top_kv_img-src04 {
  background-image: linear-gradient(rgba(248, 245, 239, 0.15), rgba(248, 245, 239, 0.15)), url("../img/KV04.jpg");
}

.top_kv_img-src05 {
  background-image: linear-gradient(rgba(248, 245, 239, 0.15), rgba(248, 245, 239, 0.15)), url("../img/KV05.webp");
}


@keyframes image-switch-animation {
  0%{ opacity: 0;}
  5%{ opacity: 1;}
  25%{ opacity: 1;}
  30%{ opacity: 0;}
  100%{ opacity: 0;}
}

.top_kv_img:nth-of-type(1) {
  animation-delay: 0s;
}
.top_kv_img:nth-of-type(2) {
  animation-delay: 3s;
}
.top_kv_img:nth-of-type(3) {
  animation-delay: 6s;
}
.top_kv_img:nth-of-type(4) {
  animation-delay: 9s;
}
.top_kv_img:nth-of-type(5) {
  animation-delay: 12s;
}

.top_kv_cta-box {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 8px 8px;
}
@media screen and (min-width: 768px) {
  .top_kv_cta-box {
    width: calc(100% / 3);
    gap: 0;
    margin: 24px 0;
  }
}

.top_kv_copy-box {
  width: 100%;
  display: flex;
  align-items: center; 
  justify-content: center;
  text-align: center;
  padding: 16px 8px;
  gap: 8px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top_kv_copy-box {
    flex-direction: column;
    gap: 24px;
    padding: 24px 0;
  }
}

.top_kv_copy-box::after {
  content: "";
  width: 100%;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  filter: blur(64px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.top_kv_icon {
  width: 64px;
  height: 41px;
}
@media screen and (min-width: 768px) {
  .top_kv_icon {
    width: 96px;
    height: 62px;
  } 
}
@media screen and (min-width: 1080px) {
  .top_kv_icon {
    width: 128px;
    height: 82px;
  }
}

.top_kv_icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



.top_kv_cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; 
  width: 298px;
  height: 162px;
  padding: 16px 24px;
  gap: 8px;
  background: var(--white-color);
  border-radius: 8px;
  position: relative;
}

.top_kv_cta::before {
  content: "";
  width: 90%;
  height: 90%;
  border-top: 2px solid var(--accsent-color);
  border-left: 2px solid var(--accsent-color);
  border-radius: 8px 0 0;
  position: absolute;
  top: -8px;
  left: -8px;
}

.top_kv_cta::after {
  content: "";
  width: 90%;
  height: 90%;
  border-bottom: 2px solid var(--accsent-color);
  border-right: 2px solid var(--accsent-color);
  border-radius: 0 0 8px 0;
  position: absolute;
  bottom: -8px;
  right: -8px;
}

.top_kv_cta-title {
  font-weight: bold;
  display: block;
  text-align: center;
}

.top_kv_cta-tel {
  display: flex;
  align-items: center;
  justify-content: center; 
  font-weight: bold;
  font-size: 24px;
  gap: 8px;
}

.top_kv_tel-icon {
  width: 30px;
  height: 30px;
  object-fit: cover;
}

.top_kv_time-table {
  width: 100%;
  height: auto;
  padding: 8px 0;
  gap: 8px;
}

.top_kv_cta-time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* news */
.top_news {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top_news {
    max-width: var(--content-width-sm);
    margin: 0 auto;
  }
}
@media screen and (min-width: 1080px) {
  .top_news {
    max-width: var(--content-width-lg);
  }
}

.top_news_list {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .top_news_list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: left;
  }
}

.top_news_item {
  width: 100%;
  max-width: 343px;
  height: 408px;
  border-radius: 24px;
  box-shadow: 4px 4px 4px rgba(51, 51, 51, 0.25);
  background: var(--white-color);
}
@media screen and (min-width: 600px) {
  .top_news_item {
    width: calc((100% - 24px) / 2);
  }
}
@media screen and (min-width: 1080px) {
  .top_news_item {
    width: calc((100% - 48px) / 3);
  }
}

.top_news_link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
  flex-direction: column;
}

.top_news_img-wrap {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.top_news_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.top_news_txt {
  margin: 24px 24px 16px 24px;
  line-height: 150%;
}

.top_news_date {
  text-align: right;
  margin-right: 24px;
  padding: 4px 8px;
  border: 1px solid var(--accsent-color);
  border-radius: 4px;
  font-size: 12px;
  margin-bottom: 24px;
}

/* menu */
.top_menu {
  width: 100%;
  height: auto;
  background: var(--sub-color01);
}

.top_menu_container {
  padding: 0;
  max-width: 100%;
}

.top_menu_list {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top_menu_item {
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top_menu_item {
    width: calc((100% - 16px) / 3);
  }
}

.top_menu_img-wrap {
  width: 100%;
  height: 600px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.top_menu_item:hover {
  filter: brightness(1.1);
}

.top_menu_img-wrap::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}

.top_menu_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.top_menu_txt-box {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  position: absolute;
  top: 205px;
  left: 50%;
  transform: translateX(-50%);
}

.top_menu_txt {
  width: 100%;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: var(--white-color);
}

.top_menu_title {
  width: auto;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: var(--white-color);
  padding-bottom: 35px;
  position: relative;
}

.top_menu_title::after {
  content: "";
  width: 100%;
  height: 5px;
  background: var(--white-color);
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.top_menu_title::before {
  content: "";
  width: 100%;
  height: 19px;
  font-size: 16px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.top_menu_title__m::before {
  content: "モーニング";
}

.top_menu_title__l::before {
  content: "ランチ";
}

.top_menu_title__d::before {
  content: "ドリンク";
}

.top_menu_price {
  width: auto;
  height: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  font-size: 16px;
  background: var(--white-color);
}

.top_menu_subtxt-box {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.top_menu_subtxt {
  font-size: 14px;
  font-weight: bold;
  color: var(--white-color);
}

/* instagram */
.top_insta_content {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top_insta_img-wrap {
  width: calc((100% - 32px - 8px) / 2);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .top_insta_img-wrap {
    width: calc((100% - 24px - 8px) / 3);
  }
}
@media screen and (min-width: 1080px) {
  .top_insta_img-wrap {
    width: calc((100% - 24px) / 4);
  }
}

.top_insta_img-wrap:hover {
  filter: brightness(1.1);
}

.top_insta_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* access */
.top_access {
  background: var(--primary-color);
  width: 100%;
  height: 1439px;
  position: relative;
  z-index: var(--z-index-default);
}
@media screen and (min-width: 768px) {
  .top_access {
    height: 869px;
  }
}

.top_access::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--sub-color01);
  border-radius: 100px 0 0 0;
  z-index: var(--z-index-back);
}
@media screen and (min-width: 768px) {
  .top_access::before {
    width: calc(100% / 3 * 2);
    left: auto;
    right: 0;
  }
}

.top_access_content {
  position: absolute;
  bottom: 80px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .top_access_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}

.top_access_box {
  width: auto;
  height: auto;
  max-height: 554px;
  margin: 32px 24px;
  padding: 24px 16px;
  background: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top_access_box {
    width: calc(100% / 2);
  }
}
@media screen and (min-width: 1080px) {
  .top_access_box {
    width: calc(100% / 3);
    margin-right: 120px;
  }
}

.top_access_box::before {
  content: "";
  width: 90%;
  height: 90%;
  border-top: 2px solid var(--accsent-color);
  border-left: 2px solid var(--accsent-color);
  border-radius: 8px 0 0;
  position: absolute;
  top: -16px;
  left: -16px;
}

.top_access_box::after {
  content: "";
  width: 90%;
  height: 90%;
  border-bottom: 2px solid var(--accsent-color);
  border-right: 2px solid var(--accsent-color);
  border-radius: 0 0 8px 0;
  position: absolute;
  bottom: -16px;
  right: -16px;
}

.top_access_map-wrap {
  width: 100%;
  height: 330px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top_access_map-wrap {
    max-width: 100%;
  }
}
@media screen and (min-width: 1080px) {
  .top_access_map-wrap {
    width: 450px;
  }
}

.top_access_map {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
}

.top_access_txt-box {
  width: 100%;
  height: auto;
  margin-top: 24px;
}

.top_access_list {
  width: 100%;
  height: auto;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
}

.top_access_item {
  width: 100%;
  height: auto;
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 8px;
}

.top_access_item:not(:last-child) {
  margin-bottom: 16px;
}

.top_access_th {
  width: 68px;
}

.top_access_td {
  width: calc(100% - 68px - 8px);
}

.top_access_img-wrap {
  width: 100%;
  height: 596px;
  border-radius: 0 100px 100px 0;
  overflow: hidden;
  box-shadow: -4px 4px 4px rgba(51, 51, 51, 0.25);
  position: relative;
}
@media screen and (min-width: 768px) {
  .top_access_img-wrap {
    width: calc(100% / 2);
  }
}

.top_access_img-wrap::after {
  content: "";
  width: 100%;
  height: 596px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(248, 245, 239, 0.15);
  border-radius: 0 100px 100px 0;
}

.top_access_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0 100px 100px 0;
}

/* ---------- js ---------- */
.js_body.is-active {
  overflow: hidden;
}

.js_navigation {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

@media screen and (min-width: 1080px) {
  .js_navigation {
    pointer-events: auto;
    opacity: 1;
  }
}

.js_navigation.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: inherit;
}

.js_hamburger.is-active .m_hamburger-bar:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
  background: var(--sub-color03);
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(2) {
  opacity: 0;
}

.js_hamburger.is-active .m_hamburger-bar:last-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
  background: var(--sub-color03);
}


