@charset "UTF-8";
/* reset.scss - 2025年最新版の軽量モダンリセット */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.5;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #000;
  background-color: #fff;
  text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background-color: transparent;
  border: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

hr {
  border: none;
  height: 1px;
  background-color: #ccc;
}

:focus-visible {
  outline: 2px solid #2684ff;
  outline-offset: 2px;
}

/*
 変数定義用のファイルです 
 自由に書き換えてください
*/
/*========= Media Size ===============*/
/*========= Font ===============*/
/*========= Color ===============*/
:root {
  --page-bg: #fff;
  --text-color: #323232;
  --border-color: #b3b3b3;
  --button-bg: #fff;
  --button-hover-bg: #545454;
  --button-text-color: #000;
  --button-hover-text-color: #fff;
}

body.is-bar {
  --page-bg: #000;
  --text-color: #fff;
  --border-color: #fff;
  --button-bg: #000;
  --button-hover-bg: #fff;
  --button-text-color: #fff;
  --button-hover-text-color: #000;
}

:root {
  --text-color: #323232;
  --border-color: #b3b3b3;
  --button-bg: #fff;
  --button-text-color: #323232;
}

html {
  font-size: 62.5%;
  container-type: scroll-state;
  scroll-padding-top: 67px;
}
@media screen and (max-width: 900px) {
  html {
    scroll-padding-top: 0px;
  }
}

body {
  width: 100%;
  min-width: 1200px;
  background-color: var(--page-bg);
  color: var(--text-color);
  font-family: "Noto Sans JP", serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 900px) {
  body {
    min-width: unset;
    font-size: 1.2rem;
  }
}

main {
  overflow: hidden;
}

h2 {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 900px) {
  h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

p {
  line-height: 2;
}

a {
  cursor: pointer;
}

.pc {
  display: block !important;
}
@media (max-width: 900px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media (max-width: 900px) {
  .sp {
    display: block !important;
  }
}

.p-front__fv {
  position: relative;
  display: flex;
  flex-direction: column;
}
.p-front__fv__icon-wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-front__fv__icon-wrap.cafe {
  left: 5%;
  gap: 30px;
}
@media screen and (max-width: 900px) {
  .p-front__fv__icon-wrap.cafe {
    left: 2%;
    gap: 13px;
  }
}
.p-front__fv__icon-wrap.bar {
  right: 5%;
  gap: 20px;
}
@media screen and (max-width: 900px) {
  .p-front__fv__icon-wrap.bar {
    right: 1%;
    gap: 10px;
  }
}
.p-front__fv__icon-wrap .wifi {
  width: 20px;
}
@media screen and (max-width: 900px) {
  .p-front__fv__icon-wrap .wifi {
    width: 17px;
  }
}
.p-front__fv__icon-wrap .outlet {
  width: 20px;
}
@media screen and (max-width: 900px) {
  .p-front__fv__icon-wrap .outlet {
    width: 17px;
  }
}
.p-front__fv__icon-wrap .clock {
  width: 14px;
}
@media screen and (max-width: 900px) {
  .p-front__fv__icon-wrap .clock {
    width: 11px;
  }
}
.p-front__fv__icon-wrap .beer {
  width: 32px;
}
@media screen and (max-width: 900px) {
  .p-front__fv__icon-wrap .beer {
    width: 29px;
  }
}
.p-front__fv__icon-wrap .speaker {
  width: 25px;
}
@media screen and (max-width: 900px) {
  .p-front__fv__icon-wrap .speaker {
    width: 22px;
  }
}
.p-front__fv__icon-wrap .fansta {
  width: 50px;
}
@media screen and (max-width: 900px) {
  .p-front__fv__icon-wrap .fansta {
    width: 45px;
  }
}
.p-front__fv__icon-wrap .time {
  display: block;
  position: relative;
  width: 38px;
  top: -12px;
  right: -3px;
}
@media screen and (max-width: 900px) {
  .p-front__fv__icon-wrap .time {
    width: 31px;
    top: -9px;
    right: -2px;
  }
}
.p-front__fv a {
  position: relative;
  transition: all 0.2s ease;
}
.p-front__fv a:hover {
  opacity: 0.8;
}
.p-front__fv img {
  width: 100%;
}
.p-front__body {
  display: flex;
  justify-content: space-between;
  margin-top: 75px;
}
@media screen and (max-width: 900px) {
  .p-front__body {
    flex-direction: column;
    gap: 75px;
    margin-top: 40px;
  }
}
.p-front__news {
  width: 45%;
}
@media screen and (max-width: 900px) {
  .p-front__news {
    width: 100%;
  }
}
.p-front__news ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px 0;
}
@media screen and (max-width: 900px) {
  .p-front__news ul {
    margin-bottom: 20px;
  }
}
.p-front__news ul li {
  border-bottom: 1px solid var(--border-color);
  padding: 15px 0;
}
@media screen and (max-width: 900px) {
  .p-front__news ul li {
    padding: 12px 0;
  }
}
.p-front__news ul li:first-child {
  padding-top: 0;
}
.p-front__news ul li a {
  display: flex;
  gap: 20px;
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.2s ease;
}
@media screen and (max-width: 900px) {
  .p-front__news ul li a {
    flex-direction: column;
    gap: 5px;
  }
}
.p-front__news ul li a:hover {
  opacity: 0.7;
}
.p-front__news ul li a span:first-child {
  white-space: nowrap;
}
.p-front__news ul li a span:last-child {
  flex: 1;
}
.p-front__news .c-button {
  margin-left: auto;
}
.p-front__pv {
  width: 45%;
}
@media screen and (max-width: 900px) {
  .p-front__pv {
    width: 100%;
  }
}
.p-front__pv__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
  aspect-ratio: 391/201;
  background-image: url("../images/common/pv_banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #fff;
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.p-front__pv__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -1;
  transition: all 0.3s ease;
}
.p-front__pv__link:hover::before {
  background-color: rgba(0, 0, 0, 0.5);
}
.p-front__schedule {
  margin-top: 100px;
}
.p-front__schedule__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .p-front__schedule__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-front__schedule__content {
  width: fit-content;
}
@media screen and (max-width: 900px) {
  .p-front__schedule__content {
    display: contents;
    width: 100%;
  }
}
.p-front__schedule__content p {
  margin: 20px 0;
}
@media screen and (max-width: 900px) {
  .p-front__schedule__content p {
    margin: 0 0 20px 0;
  }
}
.p-front__schedule img {
  width: calc(100% - 360px);
}
@media screen and (max-width: 900px) {
  .p-front__schedule img {
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  .p-front__schedule a {
    order: 3;
    margin: 20px 0 0 auto;
  }
}
.p-front__about {
  margin-top: 100px;
  padding: 40px 50px;
  border: 1px solid var(--border-color);
}
@media screen and (max-width: 900px) {
  .p-front__about {
    padding: 40px 20px;
  }
}
.p-front__about h2 {
  margin-bottom: 30px;
  text-align: center;
}
.p-front__about__inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .p-front__about__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-front__about__content {
  width: fit-content;
}
@media screen and (max-width: 900px) {
  .p-front__about__content {
    width: 100%;
    display: contents;
  }
}
.p-front__about__content p {
  margin: 20px 0;
}
@media screen and (max-width: 900px) {
  .p-front__about__content p {
    margin: 0 0 20px 0;
  }
}
.p-front__about__content p a {
  text-decoration: underline;
}
.p-front__about img {
  width: 50%;
}
@media screen and (max-width: 900px) {
  .p-front__about img {
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  .p-front__about a {
    order: 3;
    margin: 20px 0 0 auto;
  }
}
.p-front__menu {
  margin-top: 100px;
}
.p-front__menu h2 {
  text-align: center;
}
@media screen and (max-width: 900px) {
  .p-front__menu h2 {
    text-align: left;
  }
}
.p-front__menu__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 900px) {
  .p-front__menu__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-front__menu h3 {
  width: fit-content;
  z-index: 2;
  position: relative;
  margin: 25px auto 0px auto;
}
@media screen and (max-width: 900px) {
  .p-front__menu h3 {
    position: absolute;
    top: 50%;
    right: 3%;
    margin: 0;
    transform: translateY(-50%);
  }
}
.p-front__menu__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.p-front__menu a {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 275/319;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .p-front__menu a {
    aspect-ratio: 296/109;
  }
}
.p-front__menu a:hover .p-front__menu__img {
  transform: scale(1.08);
}
@media screen and (max-width: 900px) {
  .p-front__menu a:hover .p-front__menu__img {
    transform: scale(1);
  }
}

body.is-bar .p-front__menu a {
  border: 1px solid var(--border-color);
}

.p-menu__category {
  padding: 40px 0;
}
@media screen and (max-width: 900px) {
  .p-menu__category {
    margin-bottom: 0px;
  }
}
.p-menu__category:last-child {
  margin-bottom: 0;
}
.p-menu__category-title {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 900px) {
  .p-menu__category-title {
    margin-bottom: 15px;
    text-align: left;
  }
}
.p-menu__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 20px;
}
@media screen and (max-width: 900px) {
  .p-menu__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }
}
.p-menu__list--text {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 100px;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 60px;
}
@media screen and (max-width: 900px) {
  .p-menu__list--text {
    margin-top: 60px;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.p-menu-item {
  display: flex;
  flex-direction: column;
}
.p-menu-item__image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 15px;
}
@media screen and (max-width: 900px) {
  .p-menu-item__image {
    margin-bottom: 10px;
  }
}
.p-menu-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-menu-item__title {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 10px;
}
@media screen and (max-width: 900px) {
  .p-menu-item__title {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
}
.p-menu-item--text {
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding-bottom: 5px;
}
.p-menu-item--text .p-menu-item__title {
  margin-bottom: 0;
  font-size: 1.5rem;
}
@media screen and (max-width: 900px) {
  .p-menu-item--text .p-menu-item__title {
    font-size: 1.3rem;
  }
}
.p-menu-item--text .p-menu-item__price {
  font-size: 1.5rem;
  white-space: nowrap;
}
@media screen and (max-width: 900px) {
  .p-menu-item--text .p-menu-item__price {
    font-size: 1.3rem;
  }
}
.p-menu__coming-soon {
  font-size: 1.6rem;
  color: #999;
  text-align: center;
  padding: 20px 0;
}
@media screen and (max-width: 900px) {
  .p-menu__coming-soon {
    font-size: 1.4rem;
    text-align: left;
  }
}

body.is-bar .p-menu-item--text {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

body:not(.is-bar) .p-menu-item--text {
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

.p-news__list {
  display: flex;
  flex-direction: column;
  gap: 70px;
  max-width: 800px;
  margin: 70px auto;
}
@media screen and (max-width: 900px) {
  .p-news__list {
    gap: 45px;
  }
}
.p-news__item {
  width: 100%;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 900px) {
  .p-news__item {
    flex-direction: column;
  }
}
.p-news__item__thumbnail {
  width: 45%;
  aspect-ratio: 2/1;
}
@media screen and (max-width: 900px) {
  .p-news__item__thumbnail {
    width: 100%;
    height: fit-content;
    aspect-ratio: 295/137;
  }
}
.p-news__item__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-news__item__content {
  flex: 1;
}
@media screen and (max-width: 900px) {
  .p-news__item__content {
    width: 100%;
  }
}
.p-news__item__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.p-news__item__category {
  display: flex;
  gap: 10px;
}
.p-news__item__category span {
  padding: 0 10px;
}
.p-news__item__category span.cafe {
  background: #fff;
  border: 1px solid #000;
}
.p-news__item__category span.bar {
  background: #000;
  border: 1px solid #fff;
  color: #fff;
}
.p-news__item__title {
  font-size: 2rem;
  font-weight: 500;
  border-bottom: 1px solid #545454;
  padding-bottom: 15px;
  margin-top: 25px;
  margin-bottom: 25px;
}
@media screen and (max-width: 900px) {
  .p-news__item__title {
    font-size: 1.6rem;
    margin-top: 15px;
    margin-bottom: 20px;
  }
}
.p-news__item__excerpt {
  min-height: 112px;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
@media screen and (max-width: 900px) {
  .p-news__item__excerpt {
    min-height: unset;
    -webkit-line-clamp: 3;
  }
}

.p-news__single {
  max-width: 600px;
  margin: 70px auto;
}
.p-news__single__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.p-news__single__category {
  display: flex;
  gap: 10px;
}
.p-news__single__category span {
  padding: 0 10px;
}
.p-news__single__category span.cafe {
  background: #fff;
  border: 1px solid #000;
}
.p-news__single__category span.bar {
  background: #000;
  border: 1px solid #fff;
  color: #fff;
}
.p-news__single__thumbnail {
  width: 100%;
  aspect-ratio: 585/324;
}
.p-news__single__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-news__single__title {
  font-size: 2rem;
  font-weight: 500;
  border-bottom: 1px solid #545454;
  padding-bottom: 15px;
  margin-top: 25px;
  margin-bottom: 35px;
}
.p-news__single__pagination {
  max-width: 900px;
  width: 90%;
  margin: 150px auto 0 auto;
  display: flex;
  justify-content: space-between;
}

.p-concept__about {
  margin-top: 100px;
  padding: 40px 50px;
  border: 1px solid var(--border-color);
}
@media screen and (max-width: 900px) {
  .p-concept__about {
    margin-top: 60px;
    padding: 40px 20px;
  }
}
.p-concept__about h2 {
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .p-concept__about h2 {
    margin-bottom: 20px;
  }
}
.p-concept__about__inner {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .p-concept__about__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-concept__about__content {
  width: 400px;
}
@media screen and (max-width: 900px) {
  .p-concept__about__content {
    width: 100%;
  }
}
.p-concept__about__content p {
  margin: 20px 0;
}
@media screen and (max-width: 900px) {
  .p-concept__about__content p {
    margin: 0px 0;
  }
}
.p-concept__about__content p a {
  text-decoration: underline;
}
.p-concept__about img {
  width: calc(100% - 440px);
}
@media screen and (max-width: 900px) {
  .p-concept__about img {
    width: 100%;
    aspect-ratio: 2/1;
    height: auto;
    object-fit: cover;
  }
}
.p-concept__cheering {
  margin-top: 100px;
  padding: 40px 50px;
}
@media screen and (max-width: 900px) {
  .p-concept__cheering {
    margin-top: 75px;
    padding: 0px 10px;
  }
}
.p-concept__cheering h2 {
  text-align: center;
}
@media screen and (max-width: 900px) {
  .p-concept__cheering h2 {
    display: inline-block;
    margin-bottom: 0px;
    text-align: left;
  }
}
.p-concept__cheering span {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .p-concept__cheering span {
    font-size: 8px;
    margin-left: 10px;
    margin-bottom: 0;
    display: inline-block;
  }
}
.p-concept__cheering__inner {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .p-concept__cheering__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-concept__cheering__content {
  width: 400px;
}
@media screen and (max-width: 900px) {
  .p-concept__cheering__content {
    width: 100%;
  }
}
.p-concept__cheering__content p {
  margin: 20px 0;
}
@media screen and (max-width: 900px) {
  .p-concept__cheering__content p {
    margin: 20px 0 0px 0;
  }
}
.p-concept__cheering__content p a {
  text-decoration: underline;
}
.p-concept__cheering img {
  width: calc(100% - 440px);
}
@media screen and (max-width: 900px) {
  .p-concept__cheering img {
    width: 100%;
    aspect-ratio: 2/1;
    height: auto;
    object-fit: cover;
  }
}
.p-concept__company {
  margin-top: 100px;
  padding: 40px 50px;
}
@media screen and (max-width: 900px) {
  .p-concept__company {
    padding: 0px 10px;
  }
}
.p-concept__company h2 {
  text-align: center;
}
@media screen and (max-width: 900px) {
  .p-concept__company h2 {
    text-align: left;
  }
}
.p-concept__company img {
  max-width: 450px;
  margin: 40px auto;
}
@media screen and (max-width: 900px) {
  .p-concept__company img {
    width: 100%;
    max-width: unset;
    aspect-ratio: 2/1;
    height: auto;
    object-fit: cover;
    margin: 15px auto;
  }
}
.p-concept__company p {
  text-align: center;
  margin: 20px 0;
}
@media screen and (max-width: 900px) {
  .p-concept__company p {
    text-align: left;
  }
}
.p-concept__company a {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .p-concept__company a {
    margin: 0 0 0 auto;
  }
}

.p-rental__about {
  margin-top: 100px;
  padding: 40px 50px;
}
@media screen and (max-width: 900px) {
  .p-rental__about {
    margin-top: 10px;
    padding: 40px 0px;
  }
}
.p-rental__about h2 {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .p-rental__about h2 {
    margin-bottom: 20px;
    text-align: left;
  }
}
.p-rental__about__inner {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .p-rental__about__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
.p-rental__about__info {
  width: 48%;
}
@media screen and (max-width: 900px) {
  .p-rental__about__info {
    width: 100%;
    display: contents;
  }
}
.p-rental__about__info img {
  width: 100%;
}
.p-rental__about__info p {
  line-height: 1.8;
}
.p-rental__about__info__detail {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .p-rental__about__info__detail {
    width: 100%;
    margin-top: 0px;
    order: 3;
  }
}
.p-rental__about__info__detail p {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 900px) {
  .p-rental__about__info__detail p {
    font-size: 1.2rem;
  }
}
.p-rental__about__info__detail p img.clock {
  width: 32px;
}
@media screen and (max-width: 900px) {
  .p-rental__about__info__detail p img.clock {
    width: 23px;
  }
}
.p-rental__about__info__detail p img.money {
  width: 50px;
}
@media screen and (max-width: 900px) {
  .p-rental__about__info__detail p img.money {
    width: 37px;
  }
}
.p-rental__about__content {
  width: 48%;
}
@media screen and (max-width: 900px) {
  .p-rental__about__content {
    width: 100%;
  }
}
.p-rental__example__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 900px) {
  .p-rental__example__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-rental__example__item h3 {
  margin-top: 20px;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: left;
}
@media screen and (max-width: 900px) {
  .p-rental__example__item h3 {
    margin-top: 10px;
    font-size: 1.2rem;
  }
}
.p-rental__apply {
  margin-top: 100px;
}
@media screen and (max-width: 900px) {
  .p-rental__apply {
    margin-top: 45px;
  }
}
.p-rental__apply h2 {
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .p-rental__apply h2 {
    margin-bottom: 20px;
    text-align: left;
  }
}
.p-rental__apply p {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 900px) {
  .p-rental__apply p {
    margin-bottom: 20px;
    text-align: left;
  }
}
.p-rental__apply a {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .p-rental__apply a {
    margin: 0 0 0 auto;
  }
}
.p-rental__apply-form {
  max-width: 600px;
  margin: 100px auto 0 auto;
}
@media screen and (max-width: 900px) {
  .p-rental__apply-form {
    margin-top: 45px;
  }
}
.p-rental__apply-form .form-item {
  margin: 30px 0;
}
.p-rental__apply-form .form-item p {
  margin-bottom: 10px;
}
.p-rental__apply-form .form-item p span {
  color: #d32929;
}
.p-rental__apply-form .form-item input,
.p-rental__apply-form .form-item textarea {
  outline: none;
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 9px;
  font-size: 1.6rem;
  color: var(--text-color);
}
.p-rental__apply-form .form-item input::placeholder,
.p-rental__apply-form .form-item textarea::placeholder {
  opacity: 0.7;
  font-size: 1.4rem;
}
.p-rental__apply-form .wpcf7-submit {
  display: block;
  width: fit-content;
  margin: 0 auto;
  border: 1px solid var(--border-color);
  background-color: var(--button-bg);
  color: var(--button-text-color);
  transition: all 0.2s ease;
  padding: 5px 30px;
}
.p-rental__apply-form .wpcf7-submit:hover {
  border: 1px solid var(--border-color);
  background-color: var(--button-hover-bg);
  color: var(--button-hover-text-color);
}
.p-rental__thanks {
  max-width: 600px;
  margin: 100px auto 0 auto;
}
.p-rental__thanks h2 {
  margin-bottom: 30px;
  text-align: center;
}
.p-rental__thanks p {
  text-align: center;
}
.p-rental__thanks a {
  display: block;
  margin: 40px auto 0 auto;
}

.p-shop-info__about {
  padding: 40px 0px;
}
@media screen and (max-width: 900px) {
  .p-shop-info__about {
    padding: 40px 0px 75px 0;
  }
}
.p-shop-info__about__inner {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .p-shop-info__about__inner {
    gap: 15px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-shop-info__about__map {
  width: 48%;
  aspect-ratio: 3/2;
}
@media screen and (max-width: 900px) {
  .p-shop-info__about__map {
    order: 2;
    width: 100%;
    aspect-ratio: 319/204;
  }
}
.p-shop-info__about__map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-shop-info__about__content {
  width: 48%;
}
@media screen and (max-width: 900px) {
  .p-shop-info__about__content {
    width: 100%;
    display: contents;
  }
}
.p-shop-info__about__content h2 {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .p-shop-info__about__content h2 {
    width: 100%;
    order: 1;
    margin-bottom: 0px;
  }
}
.p-shop-info__about__content p {
  line-height: 1.8;
  font-size: 1.4rem;
}
@media screen and (max-width: 900px) {
  .p-shop-info__about__content p {
    order: 3;
  }
}
.p-shop-info__contact__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .p-shop-info__contact__inner {
    flex-direction: column;
    gap: 20px;
  }
}
.p-shop-info__contact__tel a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 900px) {
  .p-shop-info__contact__tel a {
    font-size: 2.4rem;
  }
  .p-shop-info__contact__tel a img {
    width: 27px;
  }
}
@media screen and (max-width: 900px) {
  .p-shop-info__contact__tel p {
    text-align: center;
  }
}
.p-shop-info__contact__links {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 900px) {
  .p-shop-info__contact__links {
    flex-direction: column;
  }
  .p-shop-info__contact__links .c-button {
    text-align: center;
    width: 180px;
    font-size: 1.8rem;
  }
}

.c-button {
  display: block;
  width: fit-content;
  border: 1px solid var(--border-color);
  background-color: var(--button-bg);
  color: var(--button-text-color);
  transition: all 0.2s ease;
}
.c-button:hover {
  border: 1px solid var(--border-color);
  background-color: var(--button-hover-bg);
  color: var(--button-hover-text-color);
}
@media screen and (max-width: 900px) {
  .c-button:hover {
    background-color: var(--button-bg);
    color: var(--button-text-color);
  }
}
.c-button--small {
  padding: 4px 7px;
}
.c-button--middle {
  padding: 5px 20px;
}
.c-button--large {
  padding: 5px 30px;
}

.c-breadcrumb {
  margin: 30px 0;
}
.c-breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-breadcrumb path {
  fill: var(--text-color);
}
.c-breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 900px) {
  .c-breadcrumb__item {
    gap: 6px;
  }
}
.c-breadcrumb__item::after {
  content: ">";
  color: var(--text-color);
}
@media screen and (max-width: 900px) {
  .c-breadcrumb__item::after {
    margin-left: 6px;
  }
}
.c-breadcrumb__item:last-child::after {
  display: none;
}
.c-breadcrumb__link {
  display: flex;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.2s ease;
}
.c-breadcrumb span {
  font-weight: 500;
}

.c-contact-form {
  max-width: 650px;
  margin: 0 auto;
}
.c-contact-form__radios {
  width: fit-content;
  margin: 60px auto 0 auto;
}
.c-contact-form__radios .wpcf7-list-item {
  margin: 0 0 0 2em;
}
.c-contact-form__radios label {
  display: flex;
  align-items: end;
  gap: 8px;
}
.c-contact-form__radios input {
  width: 20px !important;
  height: 20px;
  accent-color: #938f6c;
  vertical-align: bottom;
  outline: none;
}
.c-contact-form__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 33px;
}
@media screen and (max-width: 900px) {
  .c-contact-form__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.c-contact-form__label {
  position: relative;
  width: 200px;
}
.c-contact-form__label small {
  display: block;
  margin-top: 9px;
  line-height: 1.8;
  font-size: 1.1rem;
}
.c-contact-form .wpcf7-form-control-wrap {
  flex: 1;
}
.c-contact-form input:not([type=radio]):not([type=checkbox]):not([type=button]):not([type=submit]):not([type=reset]):not([type=image]),
.c-contact-form textarea {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 3px;
  padding: 14px 56px 14px 18px;
  font-size: 1.6rem;
  margin: 0 0 0 auto;
  background: #e7e7e5;
  outline: none;
}
.c-contact-form__address {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.c-contact-form__address__label {
  width: 180px;
  font-size: 1.2rem;
  font-weight: bold;
}
.c-contact-form__address__input {
  flex: 1;
  border-radius: 3px;
  padding: 14px 18px;
  background: #f5f4f0;
}
.c-contact-form input[type=checkbox] {
  width: 20px;
  height: 20px;
  display: inline-block;
  accent-color: #938f6c;
  vertical-align: bottom;
  margin-right: 8px;
  outline: none;
}
.c-contact-form .accept-modal-btn {
  color: #5b584a;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.c-contact-form .wpcf7-submit,
.c-contact-form .wpcf7-previous {
  padding: 20px 0px;
  margin: 0 auto;
  width: 90%;
  min-width: 300px;
  text-align: center;
  border: 1px solid #2d2d2d;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 900px) {
  .c-contact-form .wpcf7-submit,
  .c-contact-form .wpcf7-previous {
    width: 100%;
    padding: 14px 0px;
  }
}
.c-contact-form .wpcf7-submit:hover,
.c-contact-form .wpcf7-previous:hover {
  background: #d6d4c4;
}

/* ページネーション　*/
.wp-pagenavi {
  display: flex;
  gap: 15px;
  width: fit-content;
  margin: 70px auto 0 auto;
}
@media screen and (max-width: 900px) {
  .wp-pagenavi {
    gap: 5px;
  }
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi span,
.wp-pagenavi a {
  border: unset !important;
  color: rgba(23, 23, 23, 0.4);
  font-size: 1.6rem;
}
.wp-pagenavi .current {
  color: #171717;
  font-weight: 400 !important;
}
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  font-size: 14px;
  padding-left: 20px;
  padding-right: 20px;
  color: #171717;
  border: 1px solid #171717 !important;
}

.c-page-icatch {
  position: relative;
}
.c-page-icatch img {
  width: 100%;
}

.l-header-pc {
  position: sticky;
  top: 0;
  width: 100%;
  font-size: 1.5rem;
  background-color: var(--page-bg);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
}
@media screen and (max-width: 900px) {
  .l-header-pc {
    display: none;
  }
}
.l-header-pc__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 98%;
}
@media screen and (max-width: 900px) {
  .l-header-pc__inner {
    width: 100%;
    padding: 18px 30px;
  }
}
.l-header-pc__logo-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}
.l-header-pc__cafe-logo {
  width: 80px;
}
.l-header-pc__cafe-logo img {
  width: 100%;
}
.l-header-pc__bar-logo {
  width: 120px;
}
.l-header-pc__bar-logo img {
  width: 100%;
}
.l-header-pc nav {
  display: flex;
  align-items: center;
  gap: 60px;
}
.l-header-pc__menu {
  display: flex;
  align-items: center;
  gap: 25px;
}
.l-header-pc__menu-item {
  position: relative;
  padding: 20px 0;
}
.l-header-pc__menu-item::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--border-color);
  position: absolute;
  bottom: 19px;
  left: 0;
  transition: all 0.2s ease;
}
.l-header-pc__menu-item:hover::before {
  width: 100%;
}
.l-header-pc .l-header-pc__menu-item:hover .l-header-pc__sub-menu {
  opacity: 1;
  visibility: visible;
}
.l-header-pc__sub-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 68px;
  left: 0px;
  width: 150px;
  border: 1px solid var(--border-color);
  border-top: none;
  transition: all 0.2s ease;
}
.l-header-pc__sub-menu-item {
  position: relative;
  display: block;
  padding: 10px 10px;
  color: var(--text-color);
  background: var(--button-bg);
  transition: all 0.2s ease;
}
.l-header-pc__sub-menu-item p {
  position: relative;
  width: fit-content;
}
.l-header-pc__sub-menu-item p::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--page-bg);
  position: absolute;
  bottom: 0px;
  left: 0px;
  transition: all 0.2s ease;
}
.l-header-pc__sub-menu-item:hover {
  background: var(--button-hover-bg);
  color: var(--button-hover-text-color);
}
.l-header-pc__sub-menu-item:hover p::before {
  width: 100%;
}
.l-header-pc__sub-menu-item a {
  display: block;
  width: 100%;
}
.l-header-pc__booking {
  display: flex;
  align-items: center;
  gap: 15px;
}
.l-header-pc__sns {
  display: flex;
  align-items: center;
  gap: 15px;
}
.l-header-pc__sns path {
  fill: var(--text-color);
}
.l-header-pc__nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: relative;
  z-index: 101;
}
.l-header-pc__nav-toggle__line {
  width: 100%;
  height: 1px;
  background-color: #333;
  transition: all 0.25s ease;
  position: absolute;
}
.l-header-pc__nav-toggle__line:nth-child(1) {
  top: 6px;
}
.l-header-pc__nav-toggle__line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.l-header-pc__nav-toggle__line:nth-child(3) {
  bottom: 6px;
}
.l-header-pc__nav-toggle.is-active .l-header__nav-toggle__line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(35deg);
}
.l-header-pc__nav-toggle.is-active .l-header__nav-toggle__line:nth-child(2) {
  opacity: 0;
  transform: translateX(100%);
}
.l-header-pc__nav-toggle.is-active .l-header__nav-toggle__line:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-35deg);
}

.l-header-sp {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: none;
  padding: 16px 25px;
}
@media screen and (max-width: 900px) {
  .l-header-sp {
    display: block;
  }
}
.l-header-sp__menu-open {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 30px;
  height: 30px;
  margin: 0 0 0 auto;
  padding: 0;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  background-color: var(--page-bg);
  cursor: pointer;
}
.l-header-sp__menu-open span {
  display: block;
  width: 11px;
  height: 1px;
  background-color: var(--text-color);
}

.l-header-sp__nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  z-index: 101;
  transition: 0.3s ease;
  overflow: auto;
  background-color: var(--page-bg);
}
.l-header-sp__nav.is-active {
  right: 0;
}
.l-header-sp__nav__header {
  padding: 17px 28px;
  background-color: #d9d9d9;
}
.l-header-sp__nav__close {
  display: block;
  position: relative;
  width: 24px;
  height: 24px;
  margin: 0 0 0 auto;
  background: none;
  border: none;
  cursor: pointer;
}
.l-header-sp__nav__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 20px;
  height: 1px;
  background-color: var(--text-color);
}
.l-header-sp__nav__close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-header-sp__nav__close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.l-header-sp__nav__inner {
  position: relative;
  min-height: 100%;
  padding: 38px 25px;
}
.l-header-sp__nav__banners {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.l-header-sp__nav__banner {
  width: 100%;
}
.l-header-sp__nav__banner img {
  width: 100%;
}
.l-header-sp__nav__list {
  list-style: none;
  padding: 10px 0;
  margin: 0;
}
.l-header-sp__nav__item {
  margin: 15px 0;
  font-size: 1.8rem;
}
.l-header-sp__nav__link-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.l-header-sp__nav__link {
  flex: 1;
  display: block;
  color: var(--text-color);
}
.l-header-sp__nav__toggle {
  position: relative;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  pointer-events: none;
}
.l-header-sp__nav__toggle::before, .l-header-sp__nav__toggle::after {
  content: "";
  position: absolute;
  background-color: var(--text-color);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.l-header-sp__nav__toggle::before {
  width: 100%;
  height: 1px;
}
.l-header-sp__nav__toggle::after {
  width: 1px;
  height: 100%;
}
.l-header-sp__nav__item.is-open .l-header-sp__nav__toggle::after {
  transform: rotate(90deg);
  opacity: 0;
}
.l-header-sp__nav__sub-list {
  max-height: 0;
  overflow: hidden;
  list-style: none;
  transition: 0.4s ease;
}
.l-header-sp__nav__sub-list li {
  margin-top: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.l-header-sp__nav__sub-list li + li {
  margin-top: 12px;
}
.l-header-sp__nav__sub-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-color);
}
.l-header-sp__nav__sub-list li a::before {
  content: "ー";
  font-size: 1.2rem;
}
.l-header-sp__nav__item.is-open .l-header-sp__nav__sub-list {
  max-height: 90px;
}
.l-header-sp__nav__item.is-open .l-header-sp__nav__sub-list li {
  opacity: 1;
}
.l-header-sp__nav__sns {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15svh;
}
.l-header-sp__nav__sns a {
  width: 24px;
}
.l-header-sp__nav__sns path {
  fill: var(--text-color);
}

body.is-bar .l-header-sp__nav__header {
  background-color: #323232;
}
body.is-bar .l-header-sp__nav__banner:nth-child(2) {
  border: 1px solid #b3b3b3;
}

.c-reservation-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.c-reservation-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.c-reservation-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}
.c-reservation-modal__inner {
  width: 100%;
  max-width: 400px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  background-color: var(--page-bg);
  padding: 30px;
  border: 1px solid var(--border-color);
}
.c-reservation-modal__title {
  font-size: 2rem;
  text-align: center;
  font-weight: 500;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}
.c-reservation-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-color);
}
.c-reservation-modal__close svg {
  width: 24px;
  height: 24px;
}
.c-reservation-modal__body {
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 25px;
}
.c-reservation-modal .c-button {
  text-align: center;
  width: 180px;
  font-size: 1.8rem;
}
.c-reservation-modal__tel {
  margin-top: 20px;
  margin-bottom: 20px;
}
.c-reservation-modal__tel path {
  fill: var(--text-color);
}
.c-reservation-modal__tel p {
  text-align: center;
  font-size: 1.4rem;
}
.c-reservation-modal__tel a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
}

.c-reservation-sp-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.c-reservation-sp-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.c-reservation-sp-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}
.c-reservation-sp-modal__inner {
  width: 100%;
  max-width: 320px;
  max-height: 95svh;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.c-reservation-sp-modal__section {
  background-color: var(--page-bg);
  padding: 20px 0;
  text-align: center;
  border: 1px solid var(--border-color);
}
.c-reservation-sp-modal__title {
  font-size: 1.8rem;
  font-weight: 500;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-color);
}
.c-reservation-sp-modal__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.c-reservation-sp-modal__body .c-button {
  width: 100%;
  max-width: 200px;
  padding: 10px;
}
.c-reservation-sp-modal__tel {
  margin-top: 10px;
}
.c-reservation-sp-modal__tel p {
  font-size: 1.2rem;
}
.c-reservation-sp-modal__tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 2.4rem;
  font-weight: 500;
}
.c-reservation-sp-modal__tel a svg {
  width: 24px;
  height: 24px;
}
.c-reservation-sp-modal__tel a path {
  fill: var(--text-color);
}

.c-apply-modal--open {
  position: fixed;
  top: 80px;
  right: 0px;
  display: block;
  width: 32px;
  padding: 15px 0px;
  background-color: var(--page-bg);
  color: var(--text-color);
  border: 1px solid var(--border-color);
  border-radius: 12px 0 0 12px;
  z-index: 10;
  writing-mode: vertical-rl;
  letter-spacing: 0.3em;
  text-orientation: upright;
  text-align: center;
  line-height: 1;
  font-size: 1.2rem;
}

.l-footer {
  margin-top: 120px;
  padding: 40px 65px;
  border-top: 1px solid var(--border-color);
}
@media screen and (max-width: 900px) {
  .l-footer {
    padding: 30px 30px 20px 30px;
    font-size: 1.2rem;
  }
}
.l-footer__sns {
  display: flex;
  gap: 15px;
}
.l-footer__sns path {
  fill: var(--text-color);
}
.l-footer__info {
  margin-top: 10px;
  display: flex;
  gap: 20px;
}
.l-footer__info a {
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}
.l-footer__info a:hover {
  border-bottom: 1px solid var(--text-color);
}

.l-inner {
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .l-inner {
    padding: 0 30px;
  }
}
.l-inner--1000 {
  max-width: 950px;
}
.l-inner--750 {
  max-width: 750px;
}
.l-inner--550 {
  max-width: 550px;
}

.l-article h2,
.l-article h3,
.l-article h4,
.l-article h5,
.l-article h6,
.l-article p,
.l-article ul,
.l-article ol,
.l-article blockquote,
.l-article figure,
.l-article hr {
  padding: 15px 0;
}
@media screen and (max-width: 900px) {
  .l-article h2,
  .l-article h3,
  .l-article h4,
  .l-article h5,
  .l-article h6,
  .l-article p,
  .l-article ul,
  .l-article ol,
  .l-article blockquote,
  .l-article figure,
  .l-article hr {
    padding: 20px 0;
  }
}
.l-article h2,
.l-article h3,
.l-article h4,
.l-article h5,
.l-article h6 {
  font-weight: 500;
}
.l-article a {
  text-decoration: underline;
  color: var(--text-color);
}
.l-article .c-button {
  text-decoration: none;
}
.l-article .border {
  border: 1px solid var(--border-color);
}

.l-event-dog {
  position: fixed;
  bottom: 8%;
  right: 40px;
  z-index: 10;
}
@media screen and (max-width: 900px) {
  .l-event-dog {
    right: 12px;
  }
}
.l-event-dog__bubble {
  position: absolute;
  top: -37px;
  left: -48px;
  width: 56px;
  height: auto;
  opacity: 1;
  transform: translate(0, 0);
  transition: all 0.6s ease;
}
.l-event-dog__bubble.is-moved {
  opacity: 0.3;
  transform: translate(4px, 4px);
}
.l-event-dog__bubble.is-active {
  opacity: 0 !important;
  visibility: hidden;
}
.l-event-dog__face {
  cursor: pointer;
  width: 67px;
  height: 55px;
  position: relative;
  overflow: hidden;
  background: url(../images/common/dog_face.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}
.l-event-dog__face .l-event-dog__eye {
  position: absolute;
  top: 21.2px;
  left: 17px;
  width: 33.33px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.l-event-dog__face .l-event-dog__eye--1.is-active {
  opacity: 1;
}
.l-event-dog__face .l-event-dog__eye--2.is-active {
  opacity: 1;
}
.l-event-dog__face.is-active {
  background: url(../images/common/dog_face_2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.l-event-dog__face.is-active .l-event-dog__eye {
  opacity: 0 !important;
}
.l-event-dog__comment {
  position: absolute;
  bottom: 39px;
  right: 75px;
  width: 227px;
  height: 163px;
  padding: 12px 20px;
  background: url(../images/common/event_bubble.png);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.l-event-dog__comment.is-active {
  opacity: 1;
  visibility: visible;
}
.l-event-dog__comment__close {
  position: absolute;
  top: -12px;
  right: -11px;
  width: 27px;
  height: 27px;
  cursor: pointer;
}
.l-event-dog__comment__close img {
  width: 100%;
}
.l-event-dog__comment a {
  display: block;
  margin-top: 4px;
  line-height: 1.5;
  transition: all 0.2s ease;
}
.l-event-dog__comment a:hover {
  opacity: 0.3;
}
.l-event-dog__comment__date {
  font-size: 0.8rem;
  color: var(--text-color);
}
.l-event-dog__comment__title {
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--text-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

body.is-bar .l-event-dog__face {
  background-image: url(../images/common/dog_face_bar.png);
}
body.is-bar .l-event-dog__face.is-active {
  background-image: url(../images/common/dog_face_2_bar.png);
}
body.is-bar .l-event-dog__comment {
  background: url(../images/common/event_bubble_bar.png);
  background-size: contain;
  background-repeat: no-repeat;
}
body.is-bar .l-event-dog__eye {
  top: 20.2px;
  left: 16px;
}/*# sourceMappingURL=style.css.map */