@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #0b0808;
  --primary-color1: #594848;
  --primary-color2: #e9e6e6;
}

: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 {
  --ja-font: "Noto Serif JP", serif;
  --en-font: "Purple Purse";
}

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

body {
  color: var(--primary-color1);
  font-size: 16px;
  font-family: var(--ja-font);
  line-height: 1.8;
  letter-spacing: 0.1em;
}

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

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

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

@media screen and (min-width: 375px) {
  .u_sm-dn {
    display: none;
  }
}

@media screen and (min-width: 1088px) {
  .u_lg-dn {
    display: none;
  }
}

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

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

@media screen and (min-width: 1088px) {
  .l_container-lg {
    padding: 0 90px;
  }
}

@media screen and (min-width: 1440px) {
  .l_container-lg {
    padding: 0 200px;
  }
}

.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: 120px 0;
}

.l_header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  z-index: var(--z-index-header);
}
@media screen and (min-width: 1088px) {
  .l_header {
    padding: 0 48px;
  }
}

.l_header-logo_wrapper {
  height: 64px;
  width: 93px;
}
@media screen and (min-width: 1088px) {
  .l_header-logo_wrapper {
    width: 92px;
    height: 62px;
    margin-top: 13px;
  }
}
.l_header-logo {
  object-fit: cover;
}
@media screen and (min-width: 1088px) {
  .l_header-logo {
    height: 100%;
    width: 100%;
  }
}

.l_insta-img_wrapper {
  width: 32px;
  height: 32px;
  margin-top: 30px;
}
@media screen and (min-width: 1088px) {
  .l_insta-img_wrapper {
    margin-top: 43px;
  }
}
.l_insta-img {
  object-fit: cover;
}

.l_header-nav_wrapper {
  display: flex;
}

.l_header-nav {
  font-family: var(--en-font);
  font-size: 32px;
  position: absolute;
  color: var(--primary-color2);
  background-color: var(--primary-color1);
  top: 0;
  left: 50%;
  width: 101%;
  height: 100vh;
  transform: translateX(-50%);
  z-index: var(--z-index-menu);
}

@media screen and (min-width: 1088px) {
  .l_header-nav {
    font-family: var(--en-font);
    font-size: 20px;
    color: var(--primary-color2);
    background-color: transparent;
    position: static;
    transform: none;
  }
}

.l_header-nav_list {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 1088px) {
  .l_header-nav_list {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin-top: 50px;
    transform: none;
  }
}

@media screen and (min-width: 1088px) {
  .l_header-nav_item {
    margin-left: 40px;
  }
}

.l_header-nav_item:not(:first-child) {
  margin-top: 32px;
}

@media screen and (min-width: 1088px) {
  .l_header-nav_item:not(:first-child) {
    margin-top: 0;
  }
}

.l_footer {
  padding: 64px 0 24px;
  background: var(--primary-color2);
  z-index: var(--z-index-header);
}

.l_footer-logo_wrapper {
  height: 69px;
  width: 103px;
  margin: 0 auto;
}

.l_footer-logo {
  object-fit: cover;
}

.l_footer-insta-img_wrapper {
  height: 41px;
  width: 41px;
  margin: 48px auto;
}

@media screen and (min-width: 1088px) {
  .l_footer-insta-img_wrapper {
    height: 54px;
    width: 54px;
  }
}

.l_footer_list {
  margin-top: 48px;
  margin-bottom: 40px;
  text-align: center;
  font-family: var(--en-font);
}

@media screen and (min-width: 1088px) {
  .l_footer_list {
    display: flex;
    justify-content: center;
    gap: 0 48px;
    font-size: 20px;
    margin-top: 48px;
    margin-bottom: 40px;
  }
}

.l_footer_item {
  padding-bottom: 16px;
}

.l_footer_item:last-child {
  padding-bottom: 0;
}

.l_footer_item:hover {
  transform: scale(1.5);
}

.l_footer-copyright {
  text-align: center;
  font-size: 10px;
}

@media screen and (min-width: 1088px) {
  .l_footer-copyright {
    font-size: 14px;
  }
}

.l_header-other {
  height: 90px;
  width: 100%;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
}

@media screen and (min-width: 1080px) {
  .l_header-other {
    padding: 0 48px;
  }
}

.l_header-nav-other {
  font-family: var(--en-font);
  font-size: 32px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color1);
  z-index: var(--z-index-header);
}

@media screen and (min-width: 1080px) {
  .l_header-nav-other {
    font-family: var(--en-font);
    font-size: 20px;
    color: var(--primary-color2);
    position: static;
    background: transparent;
    width: auto;
    height: auto;
    opacity: 1;
    pointer-events: auto;
  }
}

.l_header-nav_list-other {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 1080px) {
  .l_header-nav_list-other {
    display: flex;
    gap: 0 8px;
    position: static;
    transform: none;
    margin-top: 50px;
  }
}

.l_header-nav_item-other {
  text-align: center;
  color: var(--primary-color2);
}

.l_header-nav_item-other:not(:first-child) {
  margin-top: 32px;
}

@media screen and (min-width: 1080px) {
  .l_header-nav_item-other {
    font-size: 20px;
    height: 100%;
    margin-left: 40px;
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 1080px) {
  .l_header-nav_item-other:not(:first-child) {
    margin-top: 0;
  }
}

.l_footer-other {
  padding: 64px 0 24px;
  background: var(--primary-color1);
}

.l_footer_list-other {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: var(--en-font);
  color: var(--primary-color2);
}

@media screen and (min-width: 1080px) {
  .l_footer_list-other {
    flex-direction: row;
    gap: 64px;
    font-size: 20px;
  }
}

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

@media screen and (min-width: 1080px) {
  .l_footer_item-other:not(:last-child) {
    margin-bottom: 0;
  }
}

.l_footer-copyright-other {
  text-align: center;
  font-size: 10px;
  color: var(--primary-color2);
  margin-top: 48px;
}

@media screen and (min-width: 1080px) {
  .l_footer-copyright_txt-other {
    font-size: 14px;
  }
}

.l_header-nav-contact {
  font-family: var(--en-font);
  font-size: 32px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100vh;
}

.l_contents-contact {
  background-color: var(--primary-color2);
}

.l_footer-contact {
  padding: 64px 0 24px;
  background: var(--primary-color1);
  color: var(--primary-color2);
}

.l_footer_item-contact {
  padding-bottom: 16px;
  overflow: hidden;
}

.l_footer_item-contact:last-child {
  padding-bottom: 0;
}

.l_footer_item-contact:hover {
  transform: scale(1.5);
}

.l_footer__news {
  color: var(--primary-color2);
  background: var(--primary-color1);
}

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

.m_opening {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: var(--z-index-modal);
  background: var(--primary-color1);
}

.m_opening_txt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: absolute;
  top: 50vh;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1080px) {
  .m_opening_txt {
    margin-right: 0;
  }
}
.m_opening_heading {
  color: var(--primary-color2);
  font-size: 48px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .m_opening_heading {
    font-size: 56px;
  }
}

.m_opening_desc {
  color: var(--primary-color2);
  font-weight: bold;
  font-size: 20px;
  margin-top: 16px;
}

.m_top_title {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  font-family: var(--en-font);
}

@media screen and (min-width: 768px) {
  .m_posts {
    margin: 0 200px;
  }
}

@media screen and (min-width: 1088px) {
  .m_posts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 100px 50px;
    margin-top: 100px;
    margin-bottom: 112px;
    margin-left: calc((100% - (2 * 470px + 50px)) / 2);
    margin-right: calc((100% - (2 * 470px + 50px)) / 2);
  }
}

@media screen and (min-width: 768px) {
  .m_posts-news {
    margin: 0 200px;
  }
}

@media screen and (min-width: 1088px) {
  .m_posts-news {
    display: grid;
    flex-wrap: wrap;
    justify-content: center;
    gap: 100px 50px;
    margin-top: 100px;
    margin-bottom: 112px;
    margin-right: 0;
    margin-left: 0;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1088px) {
  .m_top_title {
    font-size: 64px;
  }
}
@media screen and (min-width: 1088px) {
  .m_erase-br {
    display: none;
  }
}
.m_post {
  margin: 80px 0; /* 上下に40px → 合計80px確保される */
  padding: 16px;
  color: var(--primary-color2);
  padding: 16px;
  background-color: var(--primary-color1); /* お好みで背景色 */
  border: 1px solid #ddd; /* 枠線（お好みで調整） */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  gap: 80px;
}

@media screen and (min-width: 1080px) {
  .m_post:hover {
    color: var(--primary-color1);
    background-color: var(--primary-color2);
    border: 2px solid var(--primary-color1); /* 枠線（お好みで調整） */
    font-weight: bold;
  }
}

@media screen and (min-width: 1088px) {
  .m_post {
    width: 470px;
    padding: 16px auto;
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1080px) {
  .m_post:hover .m_post_header {
    border-bottom: 1px solid var(--primary-color1);
    color: var(--primary-color1);
    font-weight: bold;
  }
}

@media screen and (min-width: 1080px) {
  .m_post:hover .m_post_title {
    color: var(--primary-color1);
    font-weight: bold;
  }
}

@media screen and (min-width: 1080px) {
  .m_post:hover .m_post_meta-data {
    color: var(--primary-color1);
    font-weight: bold;
  }
}

.m_post-lg {
  display: none;
}

@media screen and (min-width: 1088px) {
  .m_post-lg {
    display: block;
  }
}

@media screen and (min-width: 1088px) {
  .m_post_thumb-wrapper {
    width: 430px;
    height: 287px;
  }
}

.m_post_header {
  display: flex;
  align-items: center; /* 縦の位置を揃える（任意） */
  justify-content: space-between; /* 余白をうまく使って分けたいとき */
  margin: 16px 0;
  border-bottom: 0.5px solid var(--primary-color2);
  padding-bottom: 8px;
  margin-bottom: 8px;
}

@media screen and (min-width: 1088px) {
  .m_post_header {
    width: 430px;
  }
}

.m_post_meta-data {
  font-size: 14px;
  color: var(--primary-color2);
}

@media screen and (min-width: 1088px) {
  .m_post_txt {
    width: 430px;
  }
}

.m_post_news:hover {
  background-color: var(--primary-color2);
  color: var(--primary-color1);
}
.m_header-logo_wrapper {
  height: 64px;
  width: 93px;
}

.m_header-logo {
  object-fit: cover;
}

.m_hamburger-menu {
  width: 34px;
  height: 31px;
  margin-top: 32px;
  margin-left: 24px;
  position: relative;
  z-index: var(--z-index-menu);
}

@media screen and (min-width: 1088px) {
  .m_hamburger-menu {
    display: none;
  }
}

.m_hamburger-bar {
  width: 100%;
  height: 4.43px;
  position: absolute;
  transform: translateX(-50%);
  border-radius: 2px;
  background-color: var(--primary-color2);
  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_btn_wrapper {
  width: 280px;
  height: 65px;
  margin: 48px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--primary-color1);
  border-radius: 80px;
}

.m_btn {
  font-size: 18px;
}

.m_btn__access {
  position: relative;
}

.m_btn_subwrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.m_btn_subwrapper:hover .m_btn__access {
  font-weight: bold;
  font-size: 20px;
}

.m_btn__access::after {
  content: "";
  border: 8px solid transparent;
  border-left: 11px solid var(--primary-color1);
  position: absolute;
  top: 50%;
  left: 120%;
  transform: translateY(-50%);
}

@media screen and (min-width: 1080px) {
  .m_btn_subwrapper:hover .m_btn__access::after {
    border-left: 11px solid var(--primary-color2);
    left: 115%;
  }
}

.m_btn_wrapper__access {
  color: var(--primary-color1);
  background: var(--primary-color2);
}

@media screen and (min-width: 1080px) {
  .m_btn_wrapper__access:hover {
    color: var(--primary-color2);
    background-color: var(--primary-color1);
    font-weight: bold;
    font-size: 20px;
    border: 1px solid var(--primary-color1);
  }
}

.m_btn_wrapper__insta {
  margin-bottom: 16px;
  color: var(--primary-color2);
  background: var(--primary-color1);
  border: 1px solid var(--primary-color2);
}

.m_btn__insta {
  position: relative;
  display: inline-block;
  width: 100%;
}

.m_btn__insta::after {
  content: "";
  border: 8px solid transparent;
  border-left: 11px solid var(--primary-color2);
  position: absolute;
  top: 50%;
  left: 120%;
  transform: translateY(-50%);
}

@media screen and (min-width: 1080px) {
  .m_btn_wrapper__insta:hover {
    background: var(--primary-color2);
    color: var(--primary-color1);
    border: 1px solid var(--primary-color2);
  }
}

@media screen and (min-width: 1080px) {
  .m_btn_wrapper__insta:hover .m_btn__insta {
    font-weight: bold;
    font-size: 20px;
  }
}

@media screen and (min-width: 1080px) {
  .m_btn_wrapper__insta:hover .m_btn__insta::after {
    border-left: 11px solid var(--primary-color1);
    left: 115%;
  }
}

@media screen and (min-width: 1088px) {
  .m_btn_wrapper__insta {
    margin-bottom: 32px;
  }
}

@media screen and (min-width: 1080px) {
  .m_btn_wrapper__contact:hover {
    background-color: var(--primary-color1);
    color: var(--primary-color2);
  }
}

.m_btn__contact {
  position: relative;
}

@media screen and (min-width: 1080px) {
  .m_btn_wrapper__contact:hover .m_btn__contact {
    font-weight: bold;
    font-size: 20px;
  }
}

.m_btn__contact::after {
  content: "";
  border: 8px solid transparent;
  border-left: 11px solid var(--primary-color1);
  position: absolute;
  top: 50%;
  left: 120%;
  transform: translateY(-50%);
}

@media screen and (min-width: 1080px) {
  .m_btn_wrapper__contact:hover .m_btn__contact::after {
    border-left: 11px solid var(--primary-color2);
    left: 115%;
  }
}

.m_btn__reserve {
  position: relative;
}

.m_btn__reserve::after {
  content: "";
  border: 8px solid transparent;
  border-left: 11px solid var(--primary-color1);
  position: absolute;
  top: 55%;
  left: 123%;
  transform: translateY(-50%);
}

@media screen and (min-width: 1080px) {
  .m_btn_wrapper__reserve:hover {
    background: var(--primary-color1);
    color: var(--primary-color2);
  }
}

@media screen and (min-width: 1080px) {
  .m_btn_wrapper__reserve:hover .m_btn__reserve {
    font-size: 20px;
  }
}

@media screen and (min-width: 1080px) {
  .m_btn_wrapper__reserve:hover .m_btn__reserve::after {
    border-left: 11px solid var(--primary-color2);
    left: 116%;
  }
}

.m_btn_wrapper__return {
  font-weight: bold;
  width: 130px;
  margin: 40px 0 0 auto;
}
@media screen and (min-width: 1080px) {
  .m_btn_wrapper__return {
    margin-left: 80%;
  }
}
@media screen and (min-width: 1080px) {
  .m_btn_wrapper__return {
    font-size: 20px;
  }
}

.m_btn__return {
  border-bottom: solid 1px var(--primary-color1);
  padding-bottom: 2px;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .m_btn_wrapper__return:hover .m_btn__return {
    color: var(--primary-color2);
    border-bottom: solid 1px var(--primary-color2);
    background: var(--primary-color1);
  }
}

.m_btn__return::after {
  content: "";
  border: 3px solid transparent;
  border-left: 5px solid var(--primary-color1);
  position: absolute;
  top: 100%;
  left: 100%;
  transform: translateY(-50%);
}

@media screen and (min-width: 1080px) {
  .m_btn_wrapper__return:hover .m_btn__return::after {
    border-left: 5px solid var(--primary-color2);
  }
}

.m_btn_wrapper__return-news {
  color: var(--primary-color2);
}

.m_btn__return-news {
  border-bottom: solid 1px var(--primary-color2);
  padding-bottom: 2px;
  position: relative;
}

.m_btn__return-news::after {
  border-left: 5px solid var(--primary-color2);
}
@media screen and (min-width: 1080px) {
  .m_btn_wrapper__return-news:hover .m_btn__return-news {
    color: var(--primary-color1);
    background: var(--primary-color2);
  }
}

@media screen and (min-width: 1080px) {
  .m_btn_wrapper__return-news:hover .m_btn__return-news::after {
    border-color: transparent;
  }
}

.m_btn_wrapper-send {
  width: 280px;
  height: 65px;
  margin: 48px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--primary-color1);
  border-radius: 80px;
  color: var(--primary-color1);
  position: relative;
}

.m_btn_wrapper-send::after {
  content: "";
  border: 8px solid transparent;
  border-left: 11px solid var(--primary-color1);
  position: absolute;
  top: 52%;
  left: 84%;
  transform: translateY(-50%);
}

@media screen and (min-width: 1080px) {
  .m_btn_wrapper-send:hover {
    background-color: var(--primary-color1);
  }
}

@media screen and (min-width: 1080px) {
  .m_btn_wrapper-send:hover::after {
    border-left: 11px solid var(--primary-color2);
  }
}

@media screen and (min-width: 1080px) {
  .m_btn_wrapper-send:hover .m_btn__contact-send {
    color: var(--primary-color2);
  }
}

.m_btn_wrapper__contact-other {
  font-size: 18px;
  border: 1px solid var(--primary-color2);
}

.m_btn__contact-other {
  position: relative;
  color: var(--primary-color2);
}

.m_btn__contact-other::after {
  content: "";
  border: 8px solid transparent;
  border-left: 11px solid var(--primary-color2);
  position: absolute;
  top: 50%;
  left: 120%;
  transform: translateY(-50%);
}

@media screen and (min-width: 1080px) {
  .m_btn_wrapper__contact-other:hover {
    background: var(--primary-color2);
  }
}

@media screen and (min-width: 1080px) {
  .m_btn_wrapper__contact-other:hover .m_btn__contact-other {
    font-weight: bold;
    font-size: 20px;
    color: var(--primary-color1);
  }
}

@media screen and (min-width: 1080px) {
  .m_btn_wrapper__contact-other:hover .m_btn__contact-other::after {
    border-left: 11px solid var(--primary-color1);
    left: 115%;
  }
}

.m_btn_footer-news {
  border: 1px solid var(--primary-color2);
  font-size: 18px;
}

.m_btn__news-contact {
  position: relative;
}

.m_btn__news-contact::after {
  content: "";
  border: 8px solid transparent;
  border-left: 11px solid var(--primary-color2);
  position: absolute;
  top: 50%;
  left: 120%;
  transform: translateY(-50%);
}

@media screen and (min-width: 1080px) {
  .m_btn_footer-news:hover {
    background: var(--primary-color2);
  }
}

@media screen and (min-width: 1080px) {
  .m_btn_footer-news:hover .m_btn__news-contact {
    font-weight: bold;
    font-size: 20px;
    color: var(--primary-color1);
  }
}

@media screen and (min-width: 1080px) {
  .m_btn_footer-news:hover .m_btn__news-contact::after {
    border-left: 11px solid var(--primary-color1);
    left: 115%;
  }
}

.m_kv {
  width: 100%;
  height: calc(100vh * 0.4);
  position: relative;
  /* キービジュアル明るすぎる。グラデーションやっても薄くならん (´;ω;｀)*/
}

.m_kv::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: calc(100vh * 0.4);
  background: linear-gradient(rgba(51, 51, 51, 0.5), rgba(51, 51, 51, 0.5));
}

.m_kv_video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.m_kv_contents {
  position: absolute;
  top: 60%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--primary-color2);
}

.m_kv_title {
  font-weight: bold;
  font-size: 50px;
}

@media screen and (min-width: 1080px) {
  .m_kv_title {
    font-size: 64px;
  }
}

.m_kv-contact {
  text-align: center;
}

.m_kv-inner-contact {
  position: relative;
  width: 100%;
  height: 221px;
  overflow: hidden;
}
@media screen and (min-width: 1440px) {
  .m_kv-inner-contact {
    height: 400px;
  }
}

.m_kv-title-contact {
  font-size: 48px;
  font-family: var(--en-font);
  color: var(--primary-color2);
  position: absolute;
  z-index: 2;
  top: 50%; /* 親の高さの50% */
  left: 50%; /* 親の幅の50% */
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 1440px) {
  .m_kv_title-contact .m_kv-txt-contact {
    font-size: 64px;
  }
}

@media screen and (min-width: 1440px) {
  .m_kv-txt-contact br {
    display: none;
  }
}

.m_kv-txt-contact {
  font-family: var(--ja-font);
  color: var(--primary-color2);
  position: absolute;
  z-index: 2;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.m_kv-box-contact {
  position: relative;
  width: 100%;
  height: 221px;
  overflow: hidden;
}

@media screen and (min-width: 1440px) {
  .m_kv-box-contact {
    height: 100%;
  }
}

.m_kv_video-contact {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.m_kv-overlay-contact {
  position: absolute;
  color: var(--primary-color2);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 8, 0, 0.5); /* ← ここが50%透明の黒 */
  z-index: 1;
  pointer-events: none; /* マウス操作を無効化（テキストクリック可能に） */
}

/* ---------- top ---------- */

.top_mainvisual__nav {
  position: fixed;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 100;
}

@media screen and (max-width: 1087px) {
  .top_mainvisual__nav {
    display: none;
  }
}

.top_mainvisual__item {
  margin: 7px 0;
  position: relative;
}

.top_mainvisual__item::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid var(--primary-color2);
  border-radius: 100%;
}

.top_mainvisual__nav a.active {
  background-color: currentColor;
  border-color: currentColor;
}

.top_scroll {
  position: relative;
  position: fixed; /* 画面に固定 */
  bottom: 40px;
  right: 40px;
  z-index: 100;
}

.top_scroll::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 113%;
  transform: translateY(-50%);
  border-width: 0 10px 10px 10px; /* 上0 右6 下6 左6 */
  border-style: solid;
  border-color: transparent transparent var(--primary-color2) transparent; /* 下に色 */
  width: 0;
  height: 0;
  cursor: pointer;
}

.top_scroll_txt {
  margin: 0;
  font-size: 32px;
  color: var(--primary-color2);
  font-weight: bold;
  font-family: var(--en-font);
}

.top_scroll.active .top_scroll_txt {
  color: var(--primary-color1); /* 変更したい色に */
}

.top_scroll.active::after {
  border-color: transparent transparent var(--primary-color1) transparent;
}

.top_scroll.erase {
  display: none !important;
}

/* ---------- top_kv ---------- */
.top_kv {
  z-index: 99;
}

.top_kv-inner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

@media screen and (min-width: 1088px) {
  .top_kv-inner {
    height: 950px;
  }
}

.top_kv-box {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

@media screen and (min-width: 1088px) {
  .top_kv-box {
    height: 100%;
  }
}

.top_kv_video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.top_kv-overlay {
  position: absolute;
  color: var(--primary-color2);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 8, 0, 0.5); /* ← ここが50%透明の黒 */
  z-index: 1;
  pointer-events: none; /* マウス操作を無効化（テキストクリック可能に） */
}

.top_kv-txt {
  position: absolute;
  z-index: 2;
  left: 32px;
  bottom: 40px;
  color: var(--primary-color2);
  font-size: 24px;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  text-align: left;
  font-weight: bold;
}

@media screen and (min-width: 1088px) {
  .top_kv-txt {
    font-size: 40px;
    left: 269px;
    bottom: 276px;
  }
}

/* ---------- top_about-us ---------- */

.top_about-us {
  background-color: var(--primary-color1);
}

.top_about-us_title {
  font-size: 48px;
  font-family: var(--en-font);
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  text-align: center;
  color: var(--primary-color2);
}

@media screen and (min-width: 1088px) {
  .top_about-us_title {
    font-size: 64px;
  }
}

/* ---------- 各セクション ---------- */

.top_about-us_item1,
.top_about-us_item2 {
  display: block;
  margin-top: 56px;
}

.top_about-us-img2_wrapper {
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 1088px) {
  .top_about-us_item1,
  .top_about-us_item2 {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 56px;
  }
}

@media screen and (min-width: 1088px) {
  .top_about-us_item2 {
    flex-direction: row-reverse;
  }
}

/* ---------- テキスト ---------- */

.top_about-us_item__title {
  font-size: 24px;
  color: var(--primary-color2);
  text-align: left;
  font-family: var(--en-font);
  margin-top: 8px;
}

@media screen and (min-width: 1088px) {
  .top_about-us_item__title {
    font-size: 40px;
  }
}

.top_about-us_item__desc {
  color: var(--primary-color2);
  padding-top: 16px;
}

@media screen and (min-width: 1088px) {
  .top_about-us_item__desc {
    max-width: none;
  }
}

/* テキスト側のマージン調整を左右共通で対応する */
@media screen and (min-width: 1088px) {
  .top_about-us_item-wrapper {
    flex: 1;
    max-width: 50%;
    min-width: 0;
    padding: 0 32px; /* 左右の余白で実質的な幅が狭くなっていないか確認 */
  }
}

.top_about-us-img1_wrapper,
.top_about-us-img2_wrapper {
  position: relative;
  display: block;
  margin-top: 80px;
  width: 100%;
}

@media screen and (min-width: 1088px) {
  .top_about-us-img1_wrapper,
  .top_about-us-img2_wrapper {
    margin-top: 0;
    flex: 1;
    max-width: 50%;
    min-width: 0;
    height: 100%;
    overflow: hidden; /* はみ出し防止 */
  }
}

/* ---------- 画像自体 ---------- */
.top_about-us_img1,
.top_about-us_img2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- 画像のぼかし ---------- */
.top_about-us-img1_wrapper::after,
.top_about-us-img2_wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 20px 20px var(--primary-color1);
  pointer-events: none;
}

/* ---------- top_menu ---------- */

.top_menu {
  background-color: var(--primary-color2);
  text-align: center;
}

.top_menu_title {
  color: var(--primary-color1);
}

.top_menu_text {
  margin-top: 80px;
}

.top_menu_list {
  display: flex;
  flex-wrap: wrap; /* 折り返しを許可 */
  gap: 24px; /* アイテム同士の間隔 */
  justify-content: center; /* 中央寄せ（任意） */
  margin: 40px 0;
}

@media screen and (min-width: 1088px) {
  .top_menu_list {
    gap: 0 242px;
  }
}
.top_menu_item {
  width: calc((100% - 24px) / 2);
  box-sizing: border-box;
}

@media screen and (min-width: 1088px) {
  .top_menu_item {
    width: 300px;
  }
}

.top_menu_contents-title {
  font-size: 24px;
  font-family: var(--en-font);
  margin-top: 80px;
}

@media screen and (min-width: 1088px) {
  .top_menu_contents-title {
    font-size: 48px;
    margin-top: 112px;
  }
}

@media screen and (min-width: 1088px) {
  .top_menu_inner {
    width: 300px;
  }
}

@media screen and (min-width: 1088px) {
  .top_menu_img-wrapper {
    width: 300px;
    height: 240px;
  }
}

.top_menu_name {
  font-weight: bold;
  margin-top: 8px;
  margin-bottom: 8px;
}

@media screen and (min-width: 1088px) {
  .top_menu_name {
    font-size: 20px;
  }
}

@media screen and (min-width: 1088px) {
  .top_menu_price {
    font-size: 20px;
  }
}

.top_btn-wrapper {
  width: 160px;
  height: 45px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1088px) {
  .top_btn-wrapper {
    width: 241px;
    height: 68px;
    margin-left: auto;
    margin-right: auto;
  }
}

.top_btn {
  width: 100%;
  height: 100%;
  border-radius: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.top_btn:hover {
  background-color: var(--primary-color1);
  color: var(--primary-color2);
}

@media screen and (min-width: 1088px) {
  .top_btn {
    font-size: 20px;
  }
}

.top_menu_btn {
  border: 1px solid var(--primary-color1);
  background: var(--primary-color2);
}

/* ---------- top_news ---------- */

.top_news {
  background-color: var(--primary-color1);
}

.top_news_title {
  color: var(--primary-color2);
}

.top_news_btn {
  border: 1px solid var(--primary-color2);
  background: var(--primary-color1);
  color: var(--primary-color2);
}

.top_news_btn:hover {
  background-color: var(--primary-color2);
  color: var(--primary-color1);
  font-weight: bold;
}

/* ---------- top_access ---------- */

.top_access {
  background-color: var(--primary-color2);
}

.top_access_title {
  color: var(--primary-color1);
}

@media screen and (min-width: 1088px) {
  .top_access_contents-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 0 24px;
  }
}

.top_access_item_inner {
  display: flex;
  align-items: flex-start; /* 上揃えにしたい場合 */
  gap: 12px; /* タイトルとテキストの間のスペース */
  border-bottom: 0.3px solid var(--primary-color1); /* 線の色・太さはお好みで */
  padding-bottom: 16px;
  padding-top: 16px;
}

@media screen and (min-width: 1088px) {
  .top_access_item_inner {
    width: 513px;
    gap: 0 68px;
  }
}

.top_access_items > .top_access_item:first-child > .top_access_item_inner {
  border-top: 0.3px solid var(--primary-color1);
  margin-top: 80px;
}

@media screen and (min-width: 1088px) {
  .top_access_items > .top_access_item:first-child > .top_access_item_inner {
    margin-top: 0;
  }
}

.top_access_item_inner__rbsusiness {
  border-bottom: none;
}
.top_access_item-tittle {
  flex-shrink: 0; /* タイトルを縮めない */
  width: 72px;
  font-weight: bold; /* タイトルを強調 */
}

.top_access_map {
  width: 100%;
  height: 213px;
}

@media screen and (min-width: 1088px) {
  .top_access_map {
    width: 343px;
    height: 100%;
  }
}

.top_instagram {
  color: var(--primary-color2);
  background-color: var(--primary-color1);
}

/* ---------- top_instagram ---------- */

.top_instagram_title {
  color: var(--primary-color2);
}

.top_insta-img_wrapper {
  width: 41px;
  height: 41px;
  margin: 40px auto;
}

@media screen and (min-width: 1088px) {
  .top_insta-items-lg {
    display: flex;
    justify-content: center;
    gap: 0 31px;
  }
}
@media screen and (min-width: 1088px) {
  .top_insta-img_wrapper {
    width: 74px;
    height: 74px;
  }
}

.top_insta_contents {
  margin-bottom: 24px;
}

.top_insta-items {
  margin-bottom: 24px;
  /* display: flex;
  overflow: hidden; */
}

@media screen and (min-width: 1088px) {
  .top_insta-items-lg {
    overflow: hidden;
  }
}

.swiper-slide {
  width: 181px;
  height: 181px;
}

.top_insta-item-img-wrapper {
  width: 181px;
  height: 181px;
}

.top_insta_img {
  height: 100%;
  width: 100%;
}
.top_insta_desc1 {
  text-align: center;
  margin: 0 auto 48px;
}

.top_isnta_desc2 {
  text-align: center;
  margin: 0 auto;
}

/* ---------- menu ---------- */
.menu_main {
  background: var(--primary-color2);
}

.menu_title {
  font-size: 32px;
  font-family: var(--en-font);
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .menu_title {
    font-size: 48px;
  }
}

.menu_food,
.menu_desert {
  margin-top: 120px;
}

.menu_contents {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 48px 24px;
}

.menu_item {
  width: calc((100% - 24px) / 2);
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .menu_item {
    width: calc((100% - 24px * 2) / 3);
  }
}

@media screen and (min-width: 1080px) {
  .menu_item__ex1 {
    margin-left: auto;
    margin-right: 20px;
  }
}

@media screen and (min-width: 1080px) {
  .menu_item__ex2 {
    margin-right: auto;
    margin-left: 20px;
  }
}

.menu_name {
  font-weight: bold;
}

@media screen and (min-width: 1080px) {
  .menu_name {
    font-size: 20px;
  }
}

@media screen and (min-width: 1080px) {
  .menu_price {
    font-size: 18px;
  }
}

/* カフェラテとオレンジの横そろってないのが気になる、、 */

/* ---------- contact ---------- */

.contact_form_heading {
  font-weight: bold;
  position: relative;
  color: var(--primary-color1);
}

.contact_form_heading:not(:first-child) {
  margin-top: 40px;
  color: var(--primary-color1);
}

.contact_form_example {
  color: var(--primary-color1);
  font-size: 12px;
  font-weight: normal;
  margin-left: 16px;
}

.contact_form_detail {
  margin-top: 16px;
  border: 1px solid var(--primary-color1);
  border-radius: 5px;
}

.contact_form_list {
  padding: 0 24px;
}

.contact_form_list :nth-of-type(6) {
  border: none;
  color: var(--primary-color1);
}

.contact_form_input {
  width: 100%;
  height: 40px;
  border: 1px solid var(--primary-color1);
  border-radius: 4px;
  padding: 0 8px;
}

.contact_form_required {
  font-size: 12px;
  font-weight: bold;
  padding: 0 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color1);
  color: var(--primary-color2);
  border-radius: 5px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.contact_form_radio-list {
  margin-top: 40px;
}

.contact_form_radio-item {
  display: flex;
  align-items: center;
}

.contact_form_radio {
  appearance: radio;
}

.contact_form_label {
  font-size: 14px;
  font-weight: bold;
  padding-left: 16px;
}

.contact_form_textarea {
  width: 100%;
  height: 250px;
  border: 1px solid var(--primary-color1);
  border-radius: 4px;
  padding: 8px 16px;
  resize: none;
}

.contact_form_btn-wrapper {
  max-width: 344px;
  height: 64px;
  margin: 80px auto 0;
}

/* ---------- news ---------- */
.news_main {
  background-color: var(--primary-color1);
}

.news_instagram {
  background-color: var(--primary-color2);
  color: var(--primary-color1);
}
/* ---------- jav script ---------- */
.js_body.is-active {
  overflow: hidden;
}

.js_opening.is-active {
  visibility: hidden;
}

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

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

.js_navigation.is-active {
  opacity: 1;
  pointer-events: auto;
}

.js_hamburger.is-active {
  background-color: transparent;
}

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

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

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

.js_top-scroll.is-active {
  display: none;
}

.js_about-us2-trigger {
  overflow-x: hidden;
}

.fade-in-element {
  opacity: 0; /* 透明にする */
  transform: translateY(30px); /* 下に30pxずらす */
  transition: opacity 3s ease-in-out, transform 3.5s ease-in-out; /* 透明度と位置の変更に0.5秒のアニメーションを適用 */
}

.fade-in-element.visible {
  opacity: 1; /* 表示状態 */
  transform: translateY(0); /* 元の位置に戻す */
}

.top_mainvisual__nav.is-active .top_mainvisual__item::after {
  border: 1px solid var(--primary-color1);
}

/* 該当 a タグの背景色 */
.top_mainvisual__item.bg-menu-access::after {
  background-color: var(--primary-color1);
}
.top_mainvisual__item.bg-other::after {
  background-color: var(--primary-color2);
}

.top_mainvisual__nav.erase {
  display: none !important;
}

.top_insta-items.swiper-wrapper {
  list-style: none;
  margin: 0;
  padding: 0;
}

.js_insta-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* ラジオボタン */
input[type="radio"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.wpcf7-list-item.first {
  margin-left: 0;
}

span.wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

span.wpcf7-list-item-label::before {
  display: block;
  content: "";
  border-radius: 50%;
  border: 1px solid var(--primary-color1);
  width: 14px;
  height: 14px;
  margin-right: 10px;
  background-color: white;
}

span.wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 6px;
  height: 6px;
  background-color: rgb(74, 144, 235);
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

input[type="radio"]:checked + span.wpcf7-list-item-label::after {
  display: block;
}

span.wpcf7-radio {
  display: flex;
  flex-direction: column;
}

span.wpcf7-list-item {
  margin-left: 0px;
}
