@charset "UTF-8";

/* ========================================================
基本設定
=========================================================*/
@font-face {
  font-family: "ShipporiMincho";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/ShipporiMincho-Medium.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "ShipporiMincho";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/ShipporiMincho-Bold.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "ShipporiMincho_vert";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/ShipporiMincho-Bold_vert.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "NotoSansJP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "CrimsonText";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/CrimsonText-Regular.woff2") format("woff2");
  font-display: swap;
}

:root {
  /* カラー */
  --black: #3D414C;
  --red: #FF1616;
  --grey: #B7B2B2;
  --back: #EEF1F4;
  
  /* フォント */
  --font_en: "CrimsonText", serif;
  --font_ja_selif: "ShipporiMincho", serif;
  --font_ja_selif_vert: "ShipporiMincho_vert", serif;
  --font_ja_sans: "NotoSansJP", sans-serif;
}

.html {
  /* font-size: calc(100vw / 1440 * 16); */
  font-size: 16px;
  scrollbar-gutter: stable;
  overflow-x: hidden;
  margin-top: 0!important;
}

.html:has(.hamburgerContent.is-active) {
  overflow: hidden;
}

#wpadminbar {
  z-index: 10000000!important;
}

.body {
  font-family: var(--font_ja_selif);
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  font-optical-sizing: auto;
  font-feature-settings: "palt";
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
  width: 100%;
  counter-reset: number 0;
  position: relative;
  overflow-x: hidden;
}


/* ========================================================
共通パーツ
=========================================================*/
.forSP {
  display: none;
}

.forSP-inline {
  display: none;
}

.body a {
  color: var(--black);
  transition: all 0.3s;
}

.body a:hover {
  opacity: 0.6;
}

.inner {
  width: 90rem;
  margin: 0 auto;
}


/* ========================================================
ヘッダー
=========================================================*/
.header {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  padding: 2.5rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.hamburgerBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/genten/menu_open_icon.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.75rem auto;
  background-color: #fff;
  border-radius: 50%;
  width: 4.25rem;
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
  z-index: 101;
  transition: all 0.3s;
}

.hamburgerBtn.is-active {
  background-image: url(../img/genten/menu_close_icon.svg);
}

.hamburgerContent {
  color: #fff;
  background: url(../img/genten/hamburger_bg_pc.webp) no-repeat center / cover,
              var(--black);
  width: 100%;
  height: 100svh;
  padding: 9.625rem calc((100% - 90rem) / 2 + 8rem) 0 calc((100% - 90rem) / 2 + 7.5rem);
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  transition: .5s;
  z-index: 100;
  overflow: hidden;
}

.hamburgerContent.is-active {
  overflow-y: auto;
  transform: translateY(0);
}

.hamburgerContent__flex {
  display: flex;
  gap: 9.625rem;
}

.hamburgerContent__flex > img {
  display: block;
  width: 24.625rem;
  flex-shrink: 0;
}

.hamburgerContent__wrap:nth-of-type(1) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
}

.hamburgerContent__wrap:nth-of-type(2) {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
}

.hamburgerContent__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.37svh;
}

.hamburgerContent__nav a {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #fff;
}

.hamburgerContent__txt {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hamburgerContent__txt::before {
  content: "";
  display: inline-block;
  background: url(../img/genten/ig_icon.svg) no-repeat center / contain;
  width: 2.375rem;
  aspect-ratio: 1;
}

/* .hamburgerContent__txt-note {
  margin-top: 3.61svh;
} */

.hamburgerContent__txt-note a {
  color: #fff;
  text-decoration: underline;
}

p > a {
  text-decoration: underline;
}

.hamburgerContent__wrap:nth-of-type(2) > img {
  display: block;
  width: 10.625rem;
  height: auto;
}

a.contactBtn {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0.0625rem solid #fff;
  width: 15.625rem;
  height: 3.5rem;
  margin-top: 15.90svh;
}

a.contactBtn + a.contactBtn {
  margin-top: 1.93svh;
}

.hamburgerOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 99;
}

.hamburgerOverlay.is-active {
  opacity: 1;
  visibility: visible;
}


/* ========================================================
HOME
=========================================================*/
.home__ttl {
  width: 20.9375rem;
  margin: 0 auto;
}

/* FV */
.home__fv {
  width: 100%;
  height: 100svh;
  position: relative;
  z-index: -1;
}

.home__fv-video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.home__fv-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1) translateY(-2.5rem);
  pointer-events: none;
  user-select: none;
}

.home__fv-top {
  background-image: url(../img/genten/fv_top_img_pc.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
  width: 100%;
  aspect-ratio: 1440 / 233;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* お知らせ */
.home__news {
  background-image: url(../img/genten/bg_white.webp);
  background-color: #fff;
  -webkit-mask-image: url(../img/genten/bg_mask_pc.svg);
  mask-image: url(../img/genten/bg_mask_pc.svg);
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center top;
  mask-position: center top;
  padding: 8.75rem 0 0;
  /* padding-bottom: calc(8.75rem + 16.875rem); */
  margin-top: -16.875rem;
  position: relative;
}

.home__news-contents {
  width: 40rem;
  margin: 2.25rem auto 0;
}

.home__news-contents-item {
  display: flex;
  align-items: baseline;
  gap: 4.5rem;
  border-bottom: 0.0625rem solid #D1D1D1;
  padding: 1.625rem 0 1.5rem;
}

.home__news-contents-item-date {
  font-family: var(--font_en);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  color: #888;
}

.home__news-contents-item-ttl {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #333;
}

/* 営業日 */
.home__hour {
  background-image: url(../img/genten/bg_white.webp);
  background-color: #fff;
  padding-top: 3.75rem;
  padding-bottom: calc(8.75rem + 16.875rem);
}

.home__hour-table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 40rem;
  margin: 3.75rem auto 0;
}

.home__hour-table tr {
  border-bottom: 0.0625rem solid #D1D1D1;
}

.home__hour-table thead tr th {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  padding-bottom: 1.125rem;
}

.home__hour-table thead tr th:first-child {
  width: 11.125rem;
}

.home__hour-table tbody tr th {
  font-family: var(--font_en);
  font-size: 1.25rem;
  line-height: 1;
  padding: 1.625rem 0;
}

.home__hour-table tbody tr td .open,
.home__hour-table tbody tr td .close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.125rem;
  aspect-ratio: 1;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
}

.home__hour-table tbody tr td .open {
  background-image: url(../img/genten/hour_open_icon.svg);
  background-size: 0.875rem auto;
}

.home__hour-table tbody tr td .close {
  background-image: url(../img/genten/hour_close_icon.svg);
  background-size: 1.125rem auto;
}

.home__hour-note {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: 1.875rem;
}

/* おしながき */
.home__menu {
  background-image: url(../img/genten/bg_pc.webp);
  -webkit-mask-image: url(../img/genten/bg_mask_pc.svg);
  mask-image: url(../img/genten/bg_mask_pc.svg);
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center top;
  mask-position: center top;
  padding: 8.75rem 0 calc(7.5rem + 16.875rem);
  margin-top: -16.875rem;
  position: relative;
}

.home__menu-top {
  width: 62.5rem;
  margin: 0 auto;
}

.home__menu-top-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 3.75rem;
}

.home__menu-top-wrap + .home__menu-top-wrap {
  margin-top: 5.25rem;
}

.home__menu-top-wrap:nth-of-type(2n) {
  flex-direction: row-reverse;
}

.home__menu-top-wrap:nth-of-type(1) > img:nth-of-type(1) {
  display: block;
  width: 13.0625rem;
  margin-left: 2.625rem;
}

.home__menu-top-wrap:nth-of-type(2) > img:nth-of-type(1) {
  display: block;
  width: 16.0625rem;
}

.home__menu-top-wrap > img:nth-of-type(2) {
  display: block;
  width: 37.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.home__menu-top-wrap > img:nth-of-type(2).is-show {
  opacity: 1;
  transform: translateY(0);
}

.moreBtn--open {
  font-family: var(--font_ja_selif);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  display: flex;
  align-items: center;
  background: url(../img/genten/open_icon_white.webp) no-repeat right 1.125rem center / 0.9375rem,
              var(--black);
  border: 0.0625rem solid var(--black);
  width: 15.625rem;
  height: 3.5rem;
  padding: 0 1.125rem;
  margin: 3.75rem auto 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.moreBtn--open.is-active {
  background: url(../img/genten/close_icon_white.webp) no-repeat right 1.125rem center / 0.9375rem,
              var(--black);
}

.moreBtn--close {
  font-family: var(--font_ja_selif);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #333;
  display: flex;
  align-items: center;
  background: url(../img/genten/close_icon_black.webp) no-repeat right 1.125rem center / 0.9375rem,
              #fff;
  border: 0.0625rem solid #D1D1D1;
  width: 15.625rem;
  height: 3.5rem;
  padding: 0 1.125rem;
  margin: 4.625rem auto 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.moreContent {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.home__menu-note {
  font-family: var(--font_ja_sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-align: center;
  margin-top: 3.75rem;
}

.home__menu-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
  width: 62.5rem;
  margin: 2.125rem auto 0;
}

.home__menu-list-item > img {
  aspect-ratio: 307 / 206;
  object-fit: cover;
}

.home__menu-list-item-wrap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 1.25rem;
}

.home__menu-list-item-name {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
}

.home__menu-list-item-price {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
}

.home__menu-list-item-txt {
  font-family: var(--font_ja_sans);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.12em;
  margin-top: 1.25rem;
}

.home__menu-list-item-dl {
  display: grid;
  grid-template-columns: repeat(2, auto);
  row-gap: 0.5rem;
  margin-top: 1rem;
}

.home__menu-list-item-dl dt {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
}

.home__menu-list-item-dl dd {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  justify-self: right;
}

.home__menu-under {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  width: 62.5rem;
  margin: 5rem auto 0;
}

.home__menu-under-ttl {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #EEECE9;
  border: 0.0625rem solid var(--black);
  height: 3.375rem;
}

.home__menu-under-list {
  margin-top: 2.5rem;
}

.home__menu-under-list-item {
  border-bottom: 0.0625rem solid #ECECEC;
  padding-bottom: 1.25rem;
}

.home__menu-under-list-item:nth-of-type(n+2) {
  margin-top: 1.25rem;
}

.home__menu-under-list-item-wrap {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.home__menu-under-list-item-txt {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  margin-top: 0.75rem;
}

.home__menu-under-list-item-txt.red {
  color: var(--red);
}

.home__menu-under-list-item-name {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5em;
}

.home__menu-under-list-item-name small {
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.home__menu-under-note {
  font-size: 0.75rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  margin-top: 1.25rem;
}

.home__menu-under-note small {
  font-size: 0.75rem;
}

/* おもてなし */
.home__service {
  background-image: url(../img/genten/bg_white.webp);
  background-color: #fff;
  -webkit-mask-image: url(../img/genten/bg_mask_pc.svg);
  mask-image: url(../img/genten/bg_mask_pc.svg);
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center top;
  mask-position: center top;
  padding: 8.75rem 0 calc(8.75rem + 16.875rem);
  margin-top: -16.875rem;
  position: relative;
}

.home__service-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 62.5rem;
  margin: 5rem auto 0;
  position: relative;
}

.home__service-list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 18.75rem;
  position: relative;
}

.home__service-list-item-ttl {
  font-family: var(--font_ja_selif_vert);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  writing-mode: vertical-lr;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 1.5rem 1rem;
  position: absolute;
  top: -1.25rem;
  right: 1.5rem;
}

.home__service-list-item-txt {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
}

/* こだわりの素材 */
.home__materials {
  background-image: url(../img/genten/bg_pc.webp);
  -webkit-mask-image: url(../img/genten/bg_mask_pc.svg);
  mask-image: url(../img/genten/bg_mask_pc.svg);
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center top;
  mask-position: center top;
  padding: 8.75rem 0 calc(8.75rem + 16.875rem);
  margin-top: -16.875rem;
  position: relative;
}

.home__materials-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3.75rem;
  margin-top: 3.75rem;
}

.home__materials-container:nth-of-type(2n) {
  flex-direction: row-reverse;
}

.home__materials-container + .home__materials-container {
  margin-top: 6.25rem;
}

.home__materials-container > img {
  display: block;
  width: 37.5rem;
  aspect-ratio: 600 / 400;
  object-fit: cover;
}

.home__materials-container-wrap {
  width: 33.75rem;
}

.home__materials-ttl {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  border-bottom: 0.0625rem solid #D1D1D1;
  padding-bottom: 2.5rem;
  margin-top: 4rem;
}

.home__materials-txt {
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  margin-top: 2.5rem;
}

/* 駐車場 */
.home__parking {
  background-image: url(../img/genten/bg_white.webp);
  background-color: #fff;
  -webkit-mask-image: url(../img/genten/bg_mask_pc.svg);
  mask-image: url(../img/genten/bg_mask_pc.svg);
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center top;
  mask-position: center top;
  padding: 8.75rem 0 6rem;
  margin-top: -16.875rem;
  position: relative;
}

.home__parking-content {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3.75rem;
}

.home__parking-txt {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.02em;
  margin-top: 8.125rem;
}

.home__parking-content > img {
  width: 37.5rem;
}


/* ========================================================
フッター
=========================================================*/
.footer {
  color: #fff;
  background: var(--black);
}

.footer a {
  color: #fff;
}

.footer__wrap {
  display: flex;
  align-items: flex-end;
  padding: 5.875rem 10.625rem 5rem 13.75rem;
}

.footer__name {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 3.125rem;
}

.footer__name > img {
  width: 10.25rem;
}

.footer__copy {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  display: block;
  margin-top: 0.5rem;
}

.footer__info-address {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.footer__info-note {
  font-size: 0.9375rem;
  margin-top: 0.875rem;
}

.footer__info-corporate {
  display: inline-flex;
  gap: 0.625rem;
  margin-top: 1.25rem;
}

.footer__info-corporate::after {
  content: "";
  display: inline-block;
  background: url(../img/genten/jump_icon.webp) no-repeat center / 100% auto;
  width: 0.75rem;
  aspect-ratio: 1;
}

.footer__info-corporate > img {
  width: 8.125rem;
}

.footer__contact {
  margin-left: auto;
}

.footer__contact-txt {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.footer__contact-txt::before {
  content: "";
  display: inline-block;
  background: url(../img/genten/ig_icon.svg) no-repeat center / contain;
  width: 2.375rem;
  aspect-ratio: 1;
}

.footer__contact .footer__contact-txt + a.contactBtn {
  margin-top: 2rem;
}

.footer__contact a.contactBtn {
  width: 18.75rem;
  margin-top: 0.875rem;
}

.footer__contact a.contactBtn + a.contactBtn {
  margin-top: 1rem;
}
