@charset "UTF-8";
:root {
  /* fonts */
  --font-main: "Noto Sans JP", sans-serif;
  --font-sub: "Shippori Mincho B1", serif;
  --font-en: "Cardo", serif;
  /* colors */
  --color-main-100: #b9973c;
  --color-main-200: #fffbf3;
  --color-main-200-rgb: 255 251 243;
  --color-main-300: #000;
  --color-main-400: #000;
  --color-main-500: #000;
  --color-accent-100: #000;
  --color-accent-200: #000;
  --color-txt-100: #5b4932;
  --color-txt-100-rgb: 91 23 50;
  --color-txt-200: #9f2536;
  --color-txt-300: #000;
  --color-txt-400: #000;
  --color-border-100: #000;
  --color-border-200: #000;
  --color-line-100: #06c755;
  --color-base-100: #000;
  --color-base-200: #000;
  --color-base-300: #000;
  --color-base-400: #000;
  --color-base-500: #000;
  --color-white: #ffffff;
  --color-white-rgb: 255 255 255;
  --color-black: #000000;
  --color-black-rgb: 0 0 0;
  /* font-weights */
  --font-thin: 100;
  --font-exlight: 200;
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-exbold: 800;
  --font-black: 900;
}
@media (min-width: 768px) {
  :root {
    --cmn-pd-md: 120px;
    --ttl-mb-md: 50px;
  }
}
@media (max-width: 767px) {
  :root {
    --cmn-pd-md: 90px;
    --ttl-mb-md: 36px;
  }
}

/* display ------------------------------------------------- */
.block {
  display: block;
}

.inblock {
  display: inline-block;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* flex-direction ------------------------------------------------- */
.fd-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.fd-row-rev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.fd-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fd-col-rev {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

/* align-items ------------------------------------------------- */
.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/* justify-content ------------------------------------------------- */
.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-btw {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* text-align ------------------------------------------------- */
.text-center {
  text-align: center;
}

.text-start {
  text-align: start;
}

.text-end {
  text-align: end;
}

html {
  font-family: var(--font-main);
}

body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  word-break: normal;
  font-optical-sizing: auto;
  overflow-wrap: anywhere;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

a:hover {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0.7;
}

iframe {
  border: none;
}

.logo a,
.logo img {
  display: block;
}

@media (min-width: 768px) {
  body {
    width: 100%;
    min-width: 1280px;
    position: relative;
  }
  .inner {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
  }
  .inbox {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
  }
  .pc-none {
    display: none !important;
  }
}
@media (max-width: 767px) {
  body {
    width: 100%;
    min-width: 350px;
    position: relative;
  }
  .inbox,
  .inner {
    max-width: 768px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }
  .sp-none {
    display: none !important;
  }
  .logo .logo-item {
    display: block;
    line-height: 1;
  }
}
/*==========================================
PC
===========================================*/
/*==========================================
SP
===========================================*/
.btn {
  display: block;
  font-family: var(--font-main);
  position: relative;
  z-index: 1;
}

.btn-txt-100 {
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--font-sub);
  font-weight: var(--font-exbold);
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 0.05em;
  width: 200px;
  padding: 15px 20px;
  color: var(--color-white);
  background: var(--color-txt-200);
}
.btn-txt-100::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 6/10;
  width: 6px;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/arw-white.png) no-repeat;
  background-size: contain;
}

.btn-txt-200 {
  display: block;
  position: relative;
  z-index: 1;
  text-align: left;
  font-family: var(--font-en);
  font-weight: var(--font-normal);
  font-size: 40px;
  line-height: 40px;
  width: 600px;
  padding: 48px 10px;
  padding-left: 60px;
  color: var(--color-white);
  background: var(--color-txt-200);
  border: 2px solid var(--color-main-100);
}
.btn-txt-200 .btn-cont {
  --icon-width: 39;
  --icon-height: 39;
  --icon-gap: 20;
  width: 100%;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-left: calc(var(--icon-width) * 1px + var(--icon-gap) * 1px);
}
.btn-txt-200 .btn-cont::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: var(--icon-width)/var(--icon-height);
  width: calc(var(--icon-width) * 1px);
  left: 0;
  top: calc(50% + 1px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/reserve-icon.png) no-repeat;
  background-size: contain;
}
.btn-txt-200 .btn-cont::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 21/21;
  width: 21px;
  right: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/exlink-icon.png) no-repeat;
  background-size: contain;
}

.ttl, .top-about-ttl .ttl-main, .top-news-ttl .ttl-main, .top-access-ttl .ttl-main, .goods-concept-ttl .ttl-main, .genre-ttl .ttl-main, .gallery-ttl .ttl-main, .access-ttl .ttl-main, .parking-ttl .ttl-main, .handmade-concept-ttl .ttl-main, .handmade-goods-ttl .ttl-main, .order-ttl .ttl-main, .stay-concept-ttl .ttl-main, .facility-ttl .ttl-main, .amenity-ttl .ttl-main, .reserve-ttl .ttl-main, .cafe-concept-ttl .ttl-main, .menu-ttl .ttl-main, .cafe-gallery-ttl .ttl-main, .form-ttl .ttl-main,
.complete-ttl .ttl-main,
.notfound-ttl .ttl-main,
.privacy-ttl .ttl-main,
.site-map-ttl .ttl-main,
.news-ttl .ttl-main {
  font-family: var(--font-sub);
  color: var(--color-txt-100);
  font-size: 26px;
  line-height: 1.5384615385;
  letter-spacing: 0.05em;
  font-weight: var(--font-semibold);
}

.ttl-english, .top-about-ttl .ttl-sub, .top-news-ttl .ttl-sub, .top-access-ttl .ttl-sub, .goods-concept-ttl .ttl-sub, .genre-ttl .ttl-sub, .gallery-ttl .ttl-sub, .access-ttl .ttl-sub, .parking-ttl .ttl-sub, .handmade-concept-ttl .ttl-sub, .handmade-goods-ttl .ttl-sub, .order-ttl .ttl-sub, .stay-concept-ttl .ttl-sub, .facility-ttl .ttl-sub, .amenity-ttl .ttl-sub, .reserve-ttl .ttl-sub, .cafe-concept-ttl .ttl-sub, .menu-ttl .ttl-sub, .cafe-gallery-ttl .ttl-sub, .form-ttl .ttl-sub,
.complete-ttl .ttl-sub,
.notfound-ttl .ttl-sub,
.privacy-ttl .ttl-sub,
.site-map-ttl .ttl-sub,
.news-ttl .ttl-sub {
  font-family: var(--font-en);
  font-size: 50px;
  line-height: 1;
  font-weight: var(--font-bold);
  color: var(--color-txt-200);
  text-transform: capitalize;
}

.ttl-sv {
  font-family: var(--font-main);
  font-size: 45px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: var(--font-bold);
  color: var(--color-txt-100);
}

.ttl-temp .ttl-en {
  text-transform: uppercase;
}

.sub-ttl, .genre-subttl, .genre-txt, .handmade-goods-subttl, .stay-concept .sub-body p, .facility-subttl, .menu-kind {
  font-family: var(--font-sub);
  font-weight: var(--font-semibold);
  color: var(--color-txt-200);
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.txt, .top-about-txt {
  font-family: var(--font-sub);
  font-size: 18px;
  line-height: 1.8888888889;
  letter-spacing: 0.05em;
  font-weight: var(--font-bold);
  color: var(--color-txt-100);
}

.txt-main-20, .top-links-txt, .footer-detail, .goods-concept-txt, .parking-txt, .handmade-concept-txt, .handmade-goods-lead, .handmade-goods-txt, .order-txt, .stay-concept-txt, .cafe-concept-txt {
  font-family: var(--font-main);
  font-size: 17px;
  line-height: 1.7647058824;
  letter-spacing: 0.05em;
  font-weight: var(--font-normal);
  color: var(--color-txt-100);
}

.txt-main-19, .top-access-header, .top-access-data, .access-header, .access-data {
  font-family: var(--font-main);
  font-size: 17px;
  line-height: 1.6470588235;
  letter-spacing: 0.05em;
  font-weight: var(--font-normal);
  color: var(--color-txt-100);
}

.txt-news-date, .top-news-item .date, .detail .date {
  font-family: var(--font-en);
  font-size: 17px;
  font-weight: var(--font-bold);
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

.txt-news-tag, .top-news-item .tag, .detail .tag {
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: var(--font-exbold);
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-main-100);
}

.txt-news-ttl, .top-news-item-ttl, .news .top-news-item-ttl {
  font-family: var(--font-main);
  font-size: 17px;
  line-height: 1.7647058824;
  font-weight: var(--font-normal);
  letter-spacing: 0.05em;
  color: var(--color-txt-100);
}

.txt-hd-nav, .header .nav-item a .main {
  font-family: var(--font-sub);
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-txt-100);
  font-weight: var(--font-exbold);
}

.txt-hd-nav-sub, .header .nav-item a .sub {
  font-family: var(--font-en);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-txt-200);
  font-weight: var(--font-normal);
}

.txt-ft-nav, .footer .nav-list, .txt-ft-nav-sm, .footer .nav-sub {
  font-family: var(--font-sub);
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-txt-100);
  font-weight: var(--font-exbold);
}

.txt-ft-nav-sm, .footer .nav-sub {
  font-size: 14px;
  line-height: 1;
}

/*電話アイコンと番号 -------------------------------------------*/
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.tel, .tel-lg, .tel-white {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: var(--font-bold);
  position: relative;
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--color-txt-100);
}
.tel-num {
  --icon-width: 57;
  --icon-height: 41;
  display: inline-block;
  display: block;
  line-height: 1;
  padding-left: calc(12px + var(--icon-width) * 1px);
  position: relative;
  z-index: 1;
}
.tel-num::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: var(--icon-width)/var(--icon-height);
  width: calc(var(--icon-width) * 1px);
  left: 0;
  top: calc(50% + 7px);
  translate: 0 -50%;
  background: url(/img/common/tel-icon.png) no-repeat;
  background-size: contain;
}

.tel-svg img {
  display: block;
}

.tel-white {
  font-size: 30px;
  color: var(--color-white);
}
.tel-white .tel-num {
  --icon-width: 20;
  --icon-height: 20;
  display: block;
  line-height: 1;
  padding-left: 10px;
  margin-left: calc(var(--icon-width) * 1px);
  position: relative;
  z-index: 1;
}
.tel-white .tel-num::before {
  background: url(/img/common/tel-icon-accent.png) no-repeat;
  background-size: contain;
}

.tel-lg {
  font-size: 30px;
}
.tel-lg .tel-num {
  --icon-width: 20;
  --icon-height: 20;
  display: block;
  line-height: 1;
  padding-left: 10px;
  margin-left: calc(var(--icon-width) * 1px);
  position: relative;
  z-index: 1;
}
.tel-lg .tel-num::before {
  background: url(/img/common/tel-icon.png) no-repeat;
  background-size: contain;
}

/*site-map ---------------------------------------------*/
.site-map {
  --color-site-map: var(--color-txt-100);
  padding: var(--cmn-pd-md, 120px) 0;
}
.site-map-list {
  font-size: 18px;
  color: var(--color-site-map);
}
.site-map-item {
  border-bottom: 1px solid var(--color-site-map);
  font-weight: var(--font-medium, 500);
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}
.site-map-item a {
  display: block;
  padding: 2% 0 2% 3%;
  position: relative;
  z-index: 1;
}
.site-map-item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23202931' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*404 ---------------------------------------------*/
.notfound {
  --color-notfound-txt: var(--color-txt-100);
  --color-notfound-link: var(--color-main-100);
  padding: var(--cmn-pd-md, 120px) 0;
}
.notfound-txt {
  font-weight: var(--font-medium, 500);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  color: var(--color-notfound-txt);
}
.notfound-txt a {
  color: var(--color-notfound-link);
  text-decoration: underline;
}

/*bread-clumb ---------------------------------------------*/
.bread-clumb {
  --bread-clumb-height: 60px;
  --color-bread-clumb: var(--color-txt-100);
  --color-bread-clumb-current: var(--color-main-100);
  padding: calc((var(--bread-clumb-height) - 23.8px) / 2) 0;
  overflow: hidden;
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 1080px;
  left: calc(50% - 540px);
}
.bread-clumb-list {
  overflow: hidden;
}
.bread-clumb-item {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-bread-clumb);
  white-space: nowrap;
}
.bread-clumb-item:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}
.bread-clumb-item:not(:last-child) {
  padding-right: 1.07em;
  margin-right: 1.07em;
  position: relative;
  z-index: 1;
}
.bread-clumb-item:not(:last-child)::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0.71em;
  height: 0.71em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23222222' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.bread-clumb .current {
  color: var(--color-bread-clumb-current);
}

/*privacy ---------------------------------------------*/
.privacy {
  --color-privacy: var(--color-txt-100);
  padding: var(--cmn-pd-md, 120px) 0;
}
.privacy .ttl02 {
  font-size: 24px;
  font-family: var(--font-main);
  padding-bottom: 10px;
  margin-bottom: 15px;
  color: var(--color-privacy);
  font-weight: var(--font-bold, bold);
  border-bottom: 1px solid var(--color-privacy);
}
.privacy .privacy-box {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-privacy);
}
.privacy .privacy-box:not(:last-child) {
  margin-bottom: 70px;
}

/*contact ---------------------------------------------*/
#contact {
  --color-contact-main: var(--color-main-100);
  --color-contact-required-mark-txt: var(--color-white);
  --color-contact-required-mark-bg: var(--color-main-100);
  --color-contact-th-bg: var(--color-main-200);
  --color-contact-th-txt: var(--color-txt-100);
  --color-contact-td-bg: #fff;
  --color-contact-disabled-bg: #ccc;
  --color-contact-disabled-txt: #777;
  padding: var(--cmn-pd-md, 120px) 0;
}
#contact table {
  width: 100%;
  margin-bottom: 16px;
  border-collapse: collapse;
}
#contact table tr td {
  font-size: 15px;
  padding: 10px;
  vertical-align: middle;
  text-align: left;
  font-weight: 400;
  border: 1px solid #dfdfdf;
  background: var(--color-contact-td-bg);
}
#contact table tr th {
  font-size: 15px;
  padding: 10px;
  vertical-align: middle;
  text-align: left;
  font-weight: 400;
  border: 1px solid #dfdfdf;
  width: 30%;
  color: var(--color-contact-th-txt);
  background: var(--color-contact-th-bg);
}
#contact table .required-mark {
  color: var(--color-contact-required-mark-txt);
  font-size: 13px;
  border-radius: 0;
  background: var(--color-contact-required-mark-bg);
}
#contact label[for=agree] a {
  color: var(--color-contact-main);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--color-contact-main);
}
#contact .contact-btn.contact-submits-wrap button[type=button],
#contact input[type=button],
#contact input[type=submit],
#contact button[type=button] {
  color: #fff;
  background: var(--color-contact-main);
  font-size: 16px;
  border: unset;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}
#contact .contact-btn.contact-submits-wrap button[type=button]:hover,
#contact input[type=button]:hover,
#contact input[type=submit]:hover,
#contact button[type=button]:hover {
  opacity: 0.7;
}
#contact .contact-btn.contact-submits-wrap button[type=button][disabled],
#contact input[type=button][disabled],
#contact input[type=submit][disabled],
#contact button[type=button][disabled] {
  color: var(--color-contact-disabled-txt);
  background: var(--color-contact-disabled-bg);
  opacity: 0.7;
}
@media (max-width: 768px) {
  #contact table {
    border-collapse: separate;
  }
  #contact table tr {
    margin-bottom: 5vw;
  }
  #contact table tr td {
    font-size: 4vw;
    padding: 4vw;
    text-align: left;
    font-weight: 400;
    border: 1px solid #dfdfdf;
    background: var(--color-contact-td-bg);
  }
  #contact table tr th {
    font-size: 4vw;
    padding: 4vw;
    text-align: left;
    font-weight: 400;
    border: 1px solid #dfdfdf;
    width: 100%;
    color: var(--color-contact-th-txt);
    background: var(--color-contact-th-bg);
  }
  #contact table tr textarea,
  #contact table tr input {
    font-size: 4vw;
    padding: 4vw;
  }
  #contact table .required-mark {
    font-weight: 500;
    color: var(--color-contact-required-mark-txt);
    font-size: 3.5vw;
    border-radius: 0;
    background: var(--color-contact-required-mark-bg);
  }
  #contact input[type=button],
  #contact input[type=submit],
  #contact button[type=button] {
    width: 95%;
    font-size: 4vw;
    margin-bottom: 2vw;
  }
}

/*complete ---------------------------------------------*/
.complete {
  --color-complete-txt: var(--color-txt-100);
  --color-complete-link: var(--color-main-100);
  padding: var(--cmn-pd-md, 120px) 0;
}
.complete-box {
  font-weight: var(--font-medium, 500);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  color: var(--color-complete-txt);
}
.complete-box a {
  display: inline-block;
  margin-top: 20px;
  color: var(--color-complete-link);
  text-decoration: underline;
}

.pagenation {
  --color-pagenation-def-txt: var(--color-txt-100);
  --color-pagenation-border: var(--color-txt-100);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
  gap: 20px;
  font-size: 16px;
}
.pagenation li {
  font-family: var(--font-main);
  font-weight: var(--font-medium);
  color: var(--color-pagenation-def-txt);
  line-height: 1;
  width: 30px;
  height: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagenation a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 7px 0;
}
.pagenation .current::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 20px;
  height: 2px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-pagenation-border);
}

.tag-change {
  --color-tag-change-def-txt: #b3b3b3;
  --color-tag-change-def-bg: #eee;
  --color-tag-change-current-txt: var(--color-white);
  --color-tag-change-current-bg: var(--color-accent-100);
  --tag-change-border-radius: 3px;
  --tag-change-margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
  margin-bottom: var(--tag-change-margin-bottom);
}
.tag-change li {
  font-family: var(--font-main);
  font-weight: var(--font-medium);
  font-size: 16px;
  line-height: 1;
  letter-spacing: auto;
  border-radius: var(--tag-change-border-radius);
  color: var(--color-tag-change-def-txt);
  background: var(--color-tag-change-def-bg);
}
.tag-change li a {
  display: block;
  padding: 12px 26px;
}
.tag-change .current {
  color: var(--color-tag-change-current-txt);
  background: var(--color-tag-change-current-bg);
}
.tag-change a {
  display: block;
  width: 100%;
  text-align: center;
}

.page-btn {
  --color-page-btn-txt: var(--color-txt-100);
  --color-page-btn-border: var(--color-main-200);
  --color-page-btn-mt: 72px;
  --color-page-btn-pt: 48px;
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 72px;
  padding-top: 48px;
  text-align: center;
  border-top: 1px solid var(--color-page-btn-border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.page-btn .left,
.page-btn .mid,
.page-btn .right {
  font-size: 16px;
  font-family: var(--font-main);
  color: var(--color-page-btn-txt);
  font-weight: var(--font-medium);
}
.page-btn .left {
  position: relative;
  z-index: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  grid-column: 1/2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.page-btn .left a {
  position: relative;
  z-index: 1;
  padding-left: 30px;
}
.page-btn .left a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 6px;
  border-bottom: 1px solid var(--color-page-btn-txt);
  border-right: 1px solid var(--color-page-btn-txt);
  -webkit-transform: scale(-1, 1) skew(30deg) translateY(-50%);
          transform: scale(-1, 1) skew(30deg) translateY(-50%);
}
.page-btn .right {
  position: relative;
  z-index: 1;
  grid-column: 3/4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.page-btn .right a {
  position: relative;
  z-index: 1;
  padding-right: 30px;
}
.page-btn .right a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 18px;
  height: 6px;
  border-bottom: 1px solid var(--color-page-btn-txt);
  border-right: 1px solid var(--color-page-btn-txt);
  -webkit-transform: skew(30deg) translateY(-50%);
          transform: skew(30deg) translateY(-50%);
}
.page-btn .mid {
  grid-column: 2/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.news {
  --news-margin-right: 25px;
}
.news .news-item-img {
  overflow: hidden;
  position: relative;
  z-index: 1;
  aspect-ratio: 16/9;
  aspect-ratio: 4/3;
  width: 200px;
  margin-right: var(--news-margin-right);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.news .news-item-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.detail {
  --color-news-detail: var(--color-txt-100);
  --fontsize-news-detail: 28px;
  --font-weight-news-detail: var(--font-medium);
  --news-detail-margin-bottom: 20px;
}
.detail-ttl {
  font-size: var(--fontsize-news-detail);
  font-weight: var(--font-weight-news-detail);
  color: var(--color-news-detail);
  margin-bottom: var(--news-detail-margin-bottom);
  line-height: 1.5;
}

/*common ---------------------------------------------*/
.cmn-txt-mb {
  margin-bottom: 1em;
}

.color-main-100 {
  color: var(--color-main-100);
}

.bg-deco-btm01 {
  display: block;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 13px;
  left: 0;
  bottom: 0;
  border-bottom: 2px solid var(--color-main-100);
}
.bg-deco-btm01::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 9px;
  left: 0;
  top: 0;
  background: url(/img/common/bg-deco01.png) repeat-x left top/contain;
}

.bg-deco-btm02 {
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 13px;
  left: 0;
  bottom: 0;
  border-bottom: 2px solid var(--color-main-100);
  z-index: 1;
}
.bg-deco-btm02::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 9px;
  left: 0;
  top: 0;
  background: url(/img/common/bg-deco01.png) repeat-x left top/contain;
  -webkit-mask-image: linear-gradient(90deg, black 0%, black calc(50% - 84.5px), transparent calc(50% - 84.5px), transparent calc(50% + 84.5px), black calc(50% + 84.5px), black 100%);
          mask-image: linear-gradient(90deg, black 0%, black calc(50% - 84.5px), transparent calc(50% - 84.5px), transparent calc(50% + 84.5px), black calc(50% + 84.5px), black 100%);
}
.bg-deco-btm02::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 169/56;
  width: 169px;
  bottom: -30px;
  left: 50%;
  translate: -50%;
  background: url(/img/common/bg-deco02.png) no-repeat;
  background-size: contain;
}

/*header ---------------------------------------------*/
.header {
  width: 100%;
  overflow-x: clip;
  padding: 38px 50px 5.46875vw;
  background: url(/img/common/pattern/pattern01.jpg);
  position: relative;
}
.header.padding-sm {
  padding: 38px 50px 70px;
}
.header-bg-deco-top {
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 9px;
  left: 0;
  top: 0;
  background: url(/img/common/bg-deco01.png);
  background-repeat: repeat-x;
  background-size: contain;
  margin-bottom: 4px;
  z-index: 1;
}
.header-bg-deco-top::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 2px;
  top: calc(100% + 2px);
  left: 0;
  background: var(--color-main-100);
}
.header-main {
  width: 100%;
  margin-bottom: 24px;
}
.header-main .tel-svg {
  margin-top: 1px;
  opacity: 0.5;
}
.header-contact {
  gap: 29px;
}
.header-wrap {
  width: 100%;
}
.header-nav {
  margin: 0 auto;
}
.header .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.header .nav-item {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 73px 0 60px;
  position: relative;
  z-index: 1;
}
.header .nav-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 13/13;
  width: 13px;
  right: 0;
  top: 2px;
  background: url(/img/common/kirakira01.png) no-repeat;
  background-size: contain;
}
.header .nav-item:first-child {
  padding-left: 73px;
}
.header .nav-item:first-child::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 13/13;
  width: 13px;
  left: 0;
  top: 2px;
  background: url(/img/common/kirakira01.png) no-repeat;
  background-size: contain;
}
.header .nav-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.header .current {
  color: var(--color-txt-200);
}

/*mv ---------------------------------------------*/
.mv {
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 3.2291666667vw;
}
.mv-wrap {
  width: 100%;
  height: 100%;
}
.mv-list {
  width: 100%;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
.mv-item {
  aspect-ratio: 600/600;
  width: 31.25vw;
}
.mv-item:nth-of-type(1) .mv-box {
  background: url(/img/top/bg-img01.png) no-repeat center center/cover;
}
.mv-item:nth-of-type(2) .mv-box {
  background: url(/img/top/bg-img02.png) no-repeat center center/cover;
}
.mv-item:nth-of-type(3) .mv-box {
  background: url(/img/top/bg-img03.png) no-repeat center center/cover;
}
.mv-box {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid var(--color-main-100);
  container-type: inline-size;
}
.mv-catch {
  aspect-ratio: 415/240;
  width: 69.1%;
  margin-top: 8.5%;
  padding-top: 4.7395833333vw;
  background: url(/img/top/mv-ttl-bg.png) no-repeat center center/cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mv-catch .catch-sub {
  font-family: var(--font-en);
  font-size: 6cqw;
  font-weight: bold;
  line-height: 1;
  color: var(--color-txt-200);
  margin-bottom: 14px;
  margin-bottom: 0.7291666667vw;
}
.mv-catch .catch-main {
  font-family: var(--font-sub);
  font-size: 22px;
  font-size: 3.66cqw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-txt-200);
}

/*side-btn ---------------------------------------------*/
.side-btn-wrapper {
  z-index: 100;
  position: fixed;
  width: 150px;
  right: 40px;
  bottom: 30px;
}
.side-btn-wrapper a {
  display: block;
  -webkit-filter: drop-shadow(0px 0px 16px rgba(81, 17, 26, 0.3));
          filter: drop-shadow(0px 0px 16px rgba(81, 17, 26, 0.3));
}

/*top-about ---------------------------------------------*/
.top-about {
  padding: var(--cmn-pd-md) 0;
  overflow-x: clip;
  position: relative;
  background: url(/img/top/top-about-bg.png) no-repeat center center/cover;
}
.top-about-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
.top-about-ttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 171/169;
  width: 171px;
  bottom: calc(100% - 30px);
  right: calc(100% - 26px);
  background: url(/img/top/top-about-deco01.png) no-repeat;
  background-size: contain;
}
.top-about-ttl::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 133/91;
  width: 133px;
  bottom: 8px;
  left: calc(100% + 47px);
  background: url(/img/top/top-about-deco02.png) no-repeat;
  background-size: contain;
}
.top-about-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 50px;
  margin-bottom: 23px;
}
.top-about-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  left: 0;
  top: 10px;
  background: url(/img/common/ttl-deco01.png) no-repeat;
  background-size: contain;
}
.top-about-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  right: 0;
  top: 10px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.top-about-imgarea {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.top-about-imgarea::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 237/355;
  width: 237px;
  bottom: -57px;
  right: calc(100% - 26px);
  background: url(/img/top/top-about-deco03.png) no-repeat;
  background-size: contain;
}
.top-about-imgarea::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 197/230;
  width: 197px;
  bottom: 74px;
  left: calc(100% - 20px);
  background: url(/img/top/top-about-deco04.png) no-repeat;
  background-size: contain;
}
.top-about-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 1;
  aspect-ratio: 400/400;
  width: 100%;
  max-width: 400px;
}
.top-about-img::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 8px solid var(--color-white);
  outline-offset: -2px;
  outline: 2px solid var(--color-main-100);
}
.top-about-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-about-txt {
  text-align: center;
}
.top-about .cmn-txt-mb {
  margin-bottom: 34px;
}

/*top-links ---------------------------------------------*/
.top-links {
  padding: var(--cmn-pd-md) 0;
  background: url(/img/common/pattern/pattern01.jpg);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.top-links::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(/img/top/top-links-bg-deco01.png) no-repeat right top/auto, url(/img/top/top-links-bg-deco02.png) no-repeat left top 793px/auto, url(/img/top/top-links-bg-deco03.png) no-repeat right bottom 1048px/auto, url(/img/top/top-links-bg-deco04.png) no-repeat left bottom 351px/auto;
}
.top-links-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 85px;
}
.top-links-item {
  width: 100%;
  position: relative;
}
.top-links-item:nth-of-type(1)::before {
  content: "";
  position: absolute;
  z-index: 2;
  aspect-ratio: 86/89;
  width: 86px;
  right: 136px;
  top: -22px;
  background: url(/img/top/top-links-deco01.png) no-repeat;
  background-size: contain;
}
.top-links-item:nth-of-type(1)::after {
  content: "";
  position: absolute;
  z-index: 9;
  aspect-ratio: 133/165;
  width: 133px;
  left: 436px;
  bottom: -115px;
  background: url(/img/top/top-links-deco02.png) no-repeat;
  background-size: contain;
}
.top-links-item:nth-of-type(3)::before {
  content: "";
  position: absolute;
  z-index: 2;
  aspect-ratio: 103/140;
  width: 103px;
  top: 51px;
  right: 65px;
  background: url(/img/top/top-links-deco03.png) no-repeat;
  background-size: contain;
}
.top-links-item:nth-of-type(3)::after {
  content: "";
  position: absolute;
  z-index: 2;
  aspect-ratio: 79/75;
  width: 79px;
  left: 90px;
  bottom: -20px;
  background: url(/img/top/top-links-deco04.png) no-repeat;
  background-size: contain;
}
.top-links-item:nth-of-type(4)::before {
  content: "";
  position: absolute;
  z-index: 2;
  aspect-ratio: 78/79;
  width: 78px;
  top: 114px;
  right: 407px;
  background: url(/img/top/top-links-deco05.png) no-repeat;
  background-size: contain;
}
.top-links-item:nth-child(odd) .top-links-img {
  margin-right: 61px;
}
.top-links-item:nth-child(even) .top-links-box {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.top-links-item:nth-child(even) .top-links-img {
  margin-left: 61px;
}
.top-links-box {
  width: 100%;
  padding: 60px 80px;
  position: relative;
  z-index: 1;
  background: rgb(var(--color-main-200-rgb)/0.7);
}
.top-links-box::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  width: calc(100% + 128px);
  height: 100%;
  height: calc(100% + 1.8px);
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  background: url(/img/common/item-deco-lt.png) no-repeat left top -1.3px/47px 49px, url(/img/common/item-deco-lb.png) no-repeat left bottom -1.3px/47px 49px, url(/img/common/item-deco-rt.png) no-repeat right top/47px 49px, url(/img/common/item-deco-rb.png) no-repeat right bottom/47px 49px;
}
.top-links-box::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% + 60px);
  height: 100%;
  height: calc(100% + 0px);
  border-top: 3px solid var(--color-txt-200);
  border-bottom: 3px solid var(--color-txt-200);
  left: 50%;
  top: 50%;
  left: calc(50% + 1px);
  top: calc(50% + 0px);
  translate: -50% -50%;
}
.top-links-txtarea {
  width: 100%;
  margin-top: 124px;
}
.top-links-ttl {
  width: 100%;
  text-align: center;
  font-family: var(--font-sub);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.3529411765;
  letter-spacing: 0.05em;
  color: var(--color-txt-200);
  position: relative;
  z-index: 1;
}
.top-links-ttl .deco {
  display: inline-block;
  width: 100%;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--color-txt-200);
  position: relative;
  z-index: 1;
}
.top-links-ttl .deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 17px;
  left: 0;
  bottom: 0;
  background: url(/img/common/ttl-deco03.png) no-repeat left top/contain, url(/img/common/ttl-deco04.png) no-repeat right top/contain;
  translate: 0 50%;
}
.top-links-ttl .ttl-sub {
  display: inline-block;
  position: absolute;
  z-index: -1;
  width: 191px;
  left: 0;
  top: -67px;
  background: url(/img/top/ribbon01.png) no-repeat;
  background-size: contain;
}
.top-links-ttl .ttl-sub img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-links-txt {
  margin-bottom: 32px;
  padding-top: 50px;
}
.top-links-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin: 34px 0;
  border-radius: 50%;
  border: 2px solid var(--color-main-100);
  width: 400px;
}
.top-links-img::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0;
  border: 6px solid var(--color-white);
}
.top-links-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% + 68px);
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  background: url(/img/common/img-deco01.png) no-repeat center top/97px 27px, url(/img/common/img-deco02.png) no-repeat center bottom/97px 27px;
}
.top-links-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  clip-path: circle(50%);
}
.top-links .btn-txt-100 {
  margin: 0 auto;
}

/*top-news ---------------------------------------------*/
.top-news {
  padding: var(--cmn-pd-md) 0;
  position: relative;
  overflow-x: clip;
  background: url(/img/top/top-news-bg.png) repeat center center/cover;
}
.top-news::before {
  content: "";
  position: absolute;
  z-index: 1;
  aspect-ratio: 348/514;
  width: 348px;
  left: calc(50% - 732px);
  top: 0;
  background: url(/img/top/top-news-deco01.png) no-repeat;
  background-size: contain;
}
.top-news-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-news-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 50px;
  margin-bottom: 23px;
}
.top-news-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  left: 0;
  top: 10px;
  background: url(/img/common/ttl-deco01.png) no-repeat;
  background-size: contain;
}
.top-news-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  right: 0;
  top: 10px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.top-news-list {
  width: 100%;
  gap: 20px;
  margin-bottom: 40px;
}
.top-news-item {
  width: 100%;
  max-width: 240px;
  position: relative;
  z-index: 1;
}
.top-news-item-body {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.top-news-item-img {
  aspect-ratio: 240/240;
  width: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  border: 2px solid var(--color-txt-200);
}
.top-news-item-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-news-item-ttl {
  line-height: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.top-news-item .date {
  display: inline-block;
  padding: 7.5px 13px 7.5px;
  background: var(--color-txt-200);
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
}
.top-news-item .tag-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 14px;
  gap: 7px;
}
.top-news-item .tag:not(:last-child) {
  display: inline-block;
  padding-right: 7px;
  border-right: 1px solid var(--color-main-100);
}

/*top-access ---------------------------------------------*/
.top-access {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
  position: relative;
  background: url(/img/top/top-access-bg.png) no-repeat center center/cover;
}
.top-access-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-access-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 50px;
  margin-bottom: 23px;
}
.top-access-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  left: 0;
  top: 10px;
  background: url(/img/common/ttl-deco01.png) no-repeat;
  background-size: contain;
}
.top-access-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  right: 0;
  top: 10px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.top-access-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 40px;
  position: relative;
  z-index: 1;
}
.top-access-img::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 8px solid var(--color-white);
  outline-offset: -2px;
  outline: 2px solid var(--color-main-100);
}
.top-access-img::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 408/463;
  width: 408px;
  left: -129px;
  top: -140px;
  background: url(/img/top/top-access-deco-l.png) no-repeat;
  background-size: contain;
}
.top-access .cont-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.top-access .table-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}
.top-access .table-wrapper::before {
  content: "";
  position: absolute;
  z-index: 1;
  aspect-ratio: 79/75;
  width: 79px;
  right: -48px;
  top: -25px;
  background: url(/img/top/top-access-deco02.png) no-repeat;
  background-size: contain;
}
.top-access-table {
  width: 100%;
}
.top-access-row {
  width: 100%;
}
.top-access-row:not(:last-child) {
  margin-bottom: 20px;
}
.top-access-row:not(:last-child) .top-access-header {
  border-bottom: 1px solid rgb(var(--color-white-rgb)/0.2);
}
.top-access-row:not(:last-child) .top-access-data {
  border-bottom: 1px solid rgb(var(--color-txt-100-rgb)/0.2);
}
.top-access-header {
  color: var(--color-white);
  width: 130px;
  padding: 13.5px 20px;
  background: var(--color-txt-200);
}
.top-access-data {
  color: var(--color-txt-100);
  padding: 13.5px 20px;
  background: var(--color-main-200);
}
.top-access-data .tel-svg {
  padding-left: 5px;
  display: inline-block;
  opacity: 0.5;
}
.top-access iframe {
  width: 100%;
  height: 260px;
  display: block;
  border: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 40px;
}

/*footer ---------------------------------------------*/
.footer {
  padding-top: 100px;
  overflow: hidden;
  background: url(/img/common/pattern/pattern01.jpg);
}
.footer-top {
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-main-100);
}
.footer-logo {
  display: block;
}
.footer-contact {
  gap: 29px;
}
.footer-contact .tel-svg {
  opacity: 0.5;
}
.footer-main {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 100px;
}
.footer-detail {
  margin-bottom: 28px;
}
.footer-detail .address {
  margin-bottom: 10px;
}
.footer-snsarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.footer .sns-lead {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-align: left;
  color: var(--color-txt-200);
  padding: 0 148px;
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}
.footer .sns-lead::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 120px;
  height: 1px;
  background: var(--color-txt-200);
}
.footer .sns-lead::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  width: 120px;
  height: 1px;
  background: var(--color-txt-200);
}
.footer .sns-links {
  gap: 20px;
}
.footer .btn-sns {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: var(--font-exbold);
  color: var(--color-txt-100);
  padding-bottom: 10px;
  padding-left: 45px;
  position: relative;
  z-index: 1;
}
.footer .btn-sns::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/30;
  width: 30px;
  left: 0;
  bottom: 0;
  background: url(/img/common/instagram-icon.png) no-repeat;
  background-size: contain;
}
.footer .btn-sns::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% - 45px);
  height: 1px;
  right: 0;
  bottom: 0;
  background: var(--color-txt-100);
}
.footer .nav {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer .nav-list {
  display: grid;
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  gap: 24px 50px;
}
.footer .nav-item {
  display: inline-block;
  padding-left: 29px;
  position: relative;
  z-index: 1;
}
.footer .nav-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 13/13;
  width: 13px;
  left: 0;
  top: 4px;
  background: url(/img/common/kirakira01.png) no-repeat;
  background-size: contain;
}
.footer .nav-item a {
  display: block;
}
.footer-sub {
  width: 100%;
  padding-top: 49px;
}
.footer .copy-wrapper {
  width: 100%;
  background: var(--color-txt-200);
}
.footer .copy {
  display: block;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.6);
  padding: 14px 0;
  position: relative;
  z-index: 1;
}
.footer .nav-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0;
}
.footer .nav-sub .nav-item:nth-of-type(1) {
  padding-right: 30px;
  border-right: 1px solid var(--color-white);
}
.footer .nav-sub .nav-item:nth-of-type(2) {
  padding-left: 30px;
}
.footer .current {
  color: var(--color-main-100);
}

/*==========================================
sv
===========================================*/
.sv {
  width: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
  margin-top: 9px;
}
.sv-wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sv-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 400px;
  height: 260px;
  margin-left: 30px;
  position: relative;
  z-index: 1;
  border: 2px solid var(--color-main-100);
}
.sv-img::before {
  content: "";
  position: absolute;
  z-index: 1;
  aspect-ratio: 72/72;
  width: 72px;
  left: -34px;
  top: -17px;
  background: url(/img/common/sv-deco-r01.png) no-repeat;
  background-size: contain;
}
.sv-img::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 125/115;
  width: 125px;
  right: -100px;
  bottom: -35px;
  background: url(/img/common/sv-deco-r02.png) no-repeat;
  background-size: contain;
}
.sv-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sv-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-top: 96px;
  position: relative;
  z-index: 1;
}
.sv-ttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 317/328;
  width: 317px;
  left: -258px;
  top: -68px;
  background: url(/img/common/sv-deco-l.png) no-repeat;
  background-size: contain;
}
.sv-ttl .ttl-sub {
  font-family: var(--font-en);
  font-size: 36px;
  line-height: 1;
  font-weight: var(--font-exbold);
  color: var(--color-txt-200);
  display: inline-block;
  margin-bottom: 18px;
}
.sv-ttl .ttl-main {
  font-family: var(--font-sub);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-txt-200);
}
.sv-ttl-deco {
  display: inline-block;
  padding: 4.5px 58px 10.5px;
  background: var(--color-white);
  position: relative;
  z-index: 1;
}
.sv-ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 104/39;
  width: 104px;
  left: -24px;
  bottom: -10px;
  background: url(/img/common/sv-ttl-deco-l.png) no-repeat;
  background-size: contain;
}
.sv-ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 69/24;
  width: 69px;
  right: 10px;
  top: -6px;
  background: url(/img/common/sv-ttl-deco-r.png) no-repeat;
  background-size: contain;
}

/*goods-concept ---------------------------------------------*/
.goods-concept {
  padding: var(--cmn-pd-md) 0;
  padding-top: 106px;
  background: url(/img/goods/concept-bg.png) no-repeat center center/cover;
  overflow-x: clip;
  position: relative;
  z-index: 1;
}
.goods-concept-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.goods-concept-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 50px;
  margin-bottom: 23px;
}
.goods-concept-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  left: 0;
  top: 10px;
  background: url(/img/common/ttl-deco01.png) no-repeat;
  background-size: contain;
}
.goods-concept-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  right: 0;
  top: 10px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.goods-concept-body {
  width: 100%;
  padding: 50px 0;
  position: relative;
  z-index: 1;
}
.goods-concept-body::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  width: calc(100% + 128px);
  height: 100%;
  height: calc(100% + 1.8px);
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  background: url(/img/common/item-deco-lt.png) no-repeat left top -1.3px/47px 49px, url(/img/common/item-deco-lb.png) no-repeat left bottom -1.3px/47px 49px, url(/img/common/item-deco-rt.png) no-repeat right top/47px 49px, url(/img/common/item-deco-rb.png) no-repeat right bottom/47px 49px;
}
.goods-concept-body::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% + 60px);
  height: 100%;
  height: calc(100% + 0px);
  border-top: 3px solid var(--color-txt-200);
  border-bottom: 3px solid var(--color-txt-200);
  left: 50%;
  top: 50%;
  left: calc(50% + 1px);
  top: calc(50% + 0px);
  translate: -50% -50%;
}
.goods-concept-txt .txt-mb {
  margin-bottom: 30px;
}
.goods-concept-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 520/340;
  width: 100%;
  max-width: 520px;
  margin-right: 40px;
  position: relative;
  z-index: 1;
}
.goods-concept-img::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 8px solid var(--color-white);
  outline-offset: -2px;
  outline: 2px solid var(--color-main-100);
}
.goods-concept-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*genre ---------------------------------------------*/
.genre {
  padding: var(--cmn-pd-md) 0;
  background: url(/img/common/pattern/pattern01.jpg);
  overflow-x: clip;
  position: relative;
  z-index: 1;
}
.genre-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.genre-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 50px;
  margin-bottom: 23px;
}
.genre-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  left: 0;
  top: 10px;
  background: url(/img/common/ttl-deco01.png) no-repeat;
  background-size: contain;
}
.genre-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  right: 0;
  top: 10px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.genre-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 56px;
}
.genre-item {
  width: 100%;
  max-width: 200px;
}
.genre-subttl {
  width: 100%;
  text-align: center;
  margin-top: 15px;
}
.genre-txt {
  color: var(--color-txt-100);
  text-align: center;
}
.genre-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin: 27px 0;
  border-radius: 50%;
  border: 2px solid var(--color-main-100);
}
.genre-img::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0;
  border: 6px solid var(--color-white);
}
.genre-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% + 54px);
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  background: url(/img/common/img-deco01.png) no-repeat center top/97px 27px, url(/img/common/img-deco02.png) no-repeat center bottom/97px 27px;
}
.genre-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  clip-path: circle(50%);
}

/*gallery ---------------------------------------------*/
.gallery {
  padding: var(--cmn-pd-md) 0;
  position: relative;
  z-index: 1;
  overflow-x: clip;
  background: url(/img/common/pattern/pattern02.jpg);
}
.gallery-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gallery-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 50px;
  margin-bottom: 23px;
}
.gallery-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  left: 0;
  top: 10px;
  background: url(/img/common/ttl-deco01.png) no-repeat;
  background-size: contain;
}
.gallery-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  right: 0;
  top: 10px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.gallery-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.gallery-item {
  width: 100%;
  max-width: 340px;
}
.gallery-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 340/240;
  position: relative;
  z-index: 1;
}
.gallery-img::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 8px solid var(--color-white);
  outline-offset: -2px;
  outline: 2px solid var(--color-main-100);
}
.gallery-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*access ---------------------------------------------*/
.access {
  padding: var(--cmn-pd-md) 0;
  position: relative;
  z-index: 1;
  background: url(/img/common/pattern/pattern01.jpg);
  overflow-x: clip;
}
.access-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.access-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 50px;
  margin-bottom: 23px;
}
.access-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  left: 0;
  top: 10px;
  background: url(/img/common/ttl-deco01.png) no-repeat;
  background-size: contain;
}
.access-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  right: 0;
  top: 10px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.access iframe {
  width: 100%;
  display: block;
  border: none;
  height: 260px;
}

/*parking ---------------------------------------------*/
.parking {
  padding: var(--cmn-pd-md) 0;
  position: relative;
  z-index: 1;
  overflow-x: clip;
  background: url(/img/goods/parking-bg.png) no-repeat center center/cover;
}
.parking-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.parking-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 50px;
  margin-bottom: 23px;
}
.parking-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  left: 0;
  top: 10px;
  background: url(/img/common/ttl-deco01.png) no-repeat;
  background-size: contain;
}
.parking-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  right: 0;
  top: 10px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.parking-txt {
  color: var(--color-txt-100);
  margin-bottom: 24px;
}
.parking-imgarea {
  width: 100%;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.parking-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.parking-img::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 8px solid var(--color-white);
  outline-offset: -2px;
  outline: 2px solid var(--color-main-100);
}
.parking-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*==========================================
Handmade
===========================================*/
/*handmade-concept ---------------------------------------------*/
.handmade-concept {
  padding: var(--cmn-pd-md) 0;
  padding-top: 106px;
  background: url(/img/goods/concept-bg.png) no-repeat center center/cover;
  overflow-x: clip;
  position: relative;
  z-index: 1;
}
.handmade-concept-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.handmade-concept-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 50px;
  margin-bottom: 23px;
}
.handmade-concept-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  left: 0;
  top: 10px;
  background: url(/img/common/ttl-deco01.png) no-repeat;
  background-size: contain;
}
.handmade-concept-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  right: 0;
  top: 10px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.handmade-concept-body {
  width: 100%;
  padding: 50px 0;
  position: relative;
  z-index: 1;
}
.handmade-concept-body::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  width: calc(100% + 128px);
  height: 100%;
  height: calc(100% + 1.8px);
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  background: url(/img/common/item-deco-lt.png) no-repeat left top -1.3px/47px 49px, url(/img/common/item-deco-lb.png) no-repeat left bottom -1.3px/47px 49px, url(/img/common/item-deco-rt.png) no-repeat right top/47px 49px, url(/img/common/item-deco-rb.png) no-repeat right bottom/47px 49px;
}
.handmade-concept-body::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% + 60px);
  height: 100%;
  height: calc(100% + 0px);
  border-top: 3px solid var(--color-txt-200);
  border-bottom: 3px solid var(--color-txt-200);
  left: 50%;
  top: 50%;
  left: calc(50% + 1px);
  top: calc(50% + 0px);
  translate: -50% -50%;
}
.handmade-concept-txt .txt-mb {
  margin-bottom: 30px;
}
.handmade-concept-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 520/340;
  width: 100%;
  max-width: 520px;
  margin-right: 40px;
  position: relative;
  z-index: 1;
}
.handmade-concept-img::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 8px solid var(--color-white);
  outline-offset: -2px;
  outline: 2px solid var(--color-main-100);
}
.handmade-concept-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*handmade-goods ---------------------------------------------*/
.handmade-goods {
  padding: var(--cmn-pd-md) 0;
  position: relative;
  z-index: 1;
  background: url(/img/common/pattern/pattern01.jpg);
  overflow-x: clip;
}
.handmade-goods-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.handmade-goods-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 50px;
  margin-bottom: 23px;
}
.handmade-goods-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  left: 0;
  top: 10px;
  background: url(/img/common/ttl-deco01.png) no-repeat;
  background-size: contain;
}
.handmade-goods-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  right: 0;
  top: 10px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.handmade-goods-lead {
  text-align: center;
  margin-bottom: 33px;
}
.handmade-goods-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 30px;
}
.handmade-goods-item {
  width: 100%;
  padding: 50px;
  background: rgb(var(--color-main-200-rgb)/0.7);
  border-top: 3px solid var(--color-main-100);
  border-bottom: 3px solid var(--color-main-100);
  position: relative;
  z-index: 1;
}
.handmade-goods-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: calc(100% - 8px);
  left: 0;
  top: 50%;
  translate: 0 -50%;
  border-top: 1px solid var(--color-main-100);
  border-bottom: 1px solid var(--color-main-100);
}
.handmade-goods-txtarea {
  width: 100%;
}
.handmade-goods-subttl {
  width: 100%;
  color: var(--color-txt-100);
  position: relative;
  z-index: 1;
  padding-left: 35px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--color-txt-200);
}
.handmade-goods-subttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 17/21;
  width: 17px;
  left: 0;
  top: 9px;
  background: url(/img/common/deco-tate.png) no-repeat;
  background-size: contain;
}
.handmade-goods-price {
  text-align: right;
  font-family: var(--font-sub);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: var(--font-semibold);
  color: var(--color-txt-200);
  padding-top: 16px;
  margin-left: auto;
}
.handmade-goods-txt {
  margin-top: 20px;
}
.handmade-goods-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 300/300;
  width: 100%;
  max-width: 300px;
  position: relative;
  z-index: 1;
  margin-right: 40px;
}
.handmade-goods-img::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 8px solid var(--color-white);
  outline-offset: -2px;
  outline: 2px solid var(--color-main-100);
}
.handmade-goods-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*order ---------------------------------------------*/
.order {
  padding: var(--cmn-pd-md) 0;
  position: relative;
  z-index: 1;
  overflow-x: clip;
  background: url(/img/handmade/order-bg.png) no-repeat center center/cover;
}
.order-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.order-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 50px;
  margin-bottom: 23px;
}
.order-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  left: 0;
  top: 10px;
  background: url(/img/common/ttl-deco01.png) no-repeat;
  background-size: contain;
}
.order-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  right: 0;
  top: 10px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.order-txtarea {
  width: 100%;
  position: relative;
  z-index: 1;
}
.order-txtarea::before {
  content: "";
  position: absolute;
  z-index: 2;
  aspect-ratio: 171/169;
  width: 171px;
  left: 196px;
  top: -115px;
  background: url(/img/handmade/hana-lg.png) no-repeat;
  background-size: contain;
}
.order-txtarea::after {
  content: "";
  position: absolute;
  z-index: 2;
  aspect-ratio: 133/91;
  width: 133px;
  right: 100px;
  bottom: -58px;
  background: url(/img/handmade/hana-sm.png) no-repeat;
  background-size: contain;
}
.order-txt {
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 50px 0;
}
.order-txt::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  width: calc(100% + 128px);
  height: 100%;
  height: calc(100% + 1.8px);
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  background: url(/img/common/item-deco-lt.png) no-repeat left top -1.3px/47px 49px, url(/img/common/item-deco-lb.png) no-repeat left bottom -1.3px/47px 49px, url(/img/common/item-deco-rt.png) no-repeat right top/47px 49px, url(/img/common/item-deco-rb.png) no-repeat right bottom/47px 49px;
}
.order-txt::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% + 60px);
  height: 100%;
  height: calc(100% + 0px);
  border-top: 3px solid var(--color-txt-200);
  border-bottom: 3px solid var(--color-txt-200);
  left: 50%;
  top: 50%;
  left: calc(50% + 1px);
  top: calc(50% + 0px);
  translate: -50% -50%;
}
.order-txt .txt-mb {
  margin-bottom: 30px;
}

/*==========================================
stay
===========================================*/
/*stay-concept ---------------------------------------------*/
.stay-concept {
  padding: var(--cmn-pd-md) 0;
  padding-top: 106px;
  background: url(/img/goods/concept-bg.png) no-repeat center center/cover;
  overflow-x: clip;
  position: relative;
  z-index: 1;
}
.stay-concept-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.stay-concept-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 50px;
  margin-bottom: 23px;
}
.stay-concept-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  left: 0;
  top: 10px;
  background: url(/img/common/ttl-deco01.png) no-repeat;
  background-size: contain;
}
.stay-concept-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  right: 0;
  top: 10px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.stay-concept-body {
  width: 100%;
  padding: 50px 0;
  position: relative;
  z-index: 1;
}
.stay-concept-body::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  width: calc(100% + 128px);
  height: 100%;
  height: calc(100% + 1.8px);
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  background: url(/img/common/item-deco-lt.png) no-repeat left top -1.3px/47px 49px, url(/img/common/item-deco-lb.png) no-repeat left bottom -1.3px/47px 49px, url(/img/common/item-deco-rt.png) no-repeat right top/47px 49px, url(/img/common/item-deco-rb.png) no-repeat right bottom/47px 49px;
}
.stay-concept-body::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% + 60px);
  height: 100%;
  height: calc(100% + 0px);
  border-top: 3px solid var(--color-txt-200);
  border-bottom: 3px solid var(--color-txt-200);
  left: 50%;
  top: 50%;
  left: calc(50% + 1px);
  top: calc(50% + 0px);
  translate: -50% -50%;
}
.stay-concept-txt .txt-mb {
  margin-bottom: 30px;
}
.stay-concept-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 520/340;
  width: 100%;
  max-width: 520px;
  margin-right: 40px;
  position: relative;
  z-index: 1;
}
.stay-concept-img::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 8px solid var(--color-white);
  outline-offset: -2px;
  outline: 2px solid var(--color-main-100);
}
.stay-concept-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.stay-concept .main-body {
  width: 100%;
  margin-bottom: 30px;
}
.stay-concept .sub-body {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.stay-concept .sub-body p {
  color: var(--color-txt-100);
  text-align: center;
  margin-left: 33px;
  margin-right: 16px;
}
.stay-concept .subimg-wrap {
  position: relative;
  z-index: 1;
}
.stay-concept .subimg-wrap:nth-of-type(1)::after {
  content: "";
  position: absolute;
  z-index: 1;
  aspect-ratio: 253/183;
  width: 253px;
  left: -46px;
  bottom: 35px;
  background: url(/img/stay/concept-deco01.png) no-repeat;
  background-size: contain;
}
.stay-concept .subimg-wrap:nth-of-type(2)::after {
  content: "";
  position: absolute;
  z-index: 1;
  aspect-ratio: 57/57;
  width: 57px;
  right: -24px;
  top: 32px;
  background: url(/img/stay/concept-deco02.png) no-repeat;
  background-size: contain;
}
.stay-concept-subimg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin: 27px 0;
  border-radius: 50%;
  border: 2px solid var(--color-main-100);
}
.stay-concept-subimg::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0;
  border: 6px solid var(--color-white);
}
.stay-concept-subimg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% + 54px);
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  background: url(/img/common/img-deco01.png) no-repeat center top/97px 27px, url(/img/common/img-deco02.png) no-repeat center bottom/97px 27px;
}
.stay-concept-subimg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  clip-path: circle(50%);
}

/*facility ---------------------------------------------*/
.facility {
  padding: var(--cmn-pd-md) 0;
  position: relative;
  z-index: 1;
  overflow-x: clip;
  background: url(/img/common/pattern/pattern01.jpg);
}
.facility-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.facility-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 50px;
  margin-bottom: 23px;
}
.facility-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  left: 0;
  top: 10px;
  background: url(/img/common/ttl-deco01.png) no-repeat;
  background-size: contain;
}
.facility-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  right: 0;
  top: 10px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.facility-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.facility-item {
  width: 100%;
  max-width: 340px;
}
.facility-subttl {
  width: 100%;
  text-align: center;
  color: var(--color-txt-100);
  position: relative;
  z-index: 1;
}
.facility-subttl .deco {
  display: inline-block;
  width: 100%;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-txt-200);
  position: relative;
  z-index: 1;
}
.facility-subttl .deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 17px;
  left: 0;
  bottom: 0;
  background: url(/img/common/ttl-deco03.png) no-repeat left top/contain, url(/img/common/ttl-deco04.png) no-repeat right top/contain;
  translate: 0 50%;
}
.facility-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 11px;
  position: relative;
  z-index: 1;
}
.facility-img::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 8px solid var(--color-white);
  outline-offset: -2px;
  outline: 2px solid var(--color-main-100);
}
.facility-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*amenity ---------------------------------------------*/
.amenity {
  padding: var(--cmn-pd-md) 0;
  position: relative;
  z-index: 1;
  overflow-x: clip;
  background: url(/img/stay/amenity-bg.png) no-repeat center center/cover;
}
.amenity-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.amenity-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 50px;
  margin-bottom: 23px;
}
.amenity-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  left: 0;
  top: 10px;
  background: url(/img/common/ttl-deco01.png) no-repeat;
  background-size: contain;
}
.amenity-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  right: 0;
  top: 10px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.amenity-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.amenity-item {
  width: 100%;
  max-width: 340px;
  font-family: var(--font-sub);
  font-size: 18px;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  font-weight: var(--font-bold);
  color: var(--color-txt-100);
  padding: 19px 0px 21px;
  border-top: 3px solid var(--color-main-100);
  border-bottom: 3px solid var(--color-main-100);
  position: relative;
  z-index: 1;
}
.amenity-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: calc(100% - 8px);
  top: 50%;
  translate: 0 -50%;
  border-top: 1px solid var(--color-main-100);
  border-bottom: 1px solid var(--color-main-100);
}

/*reserve ---------------------------------------------*/
.reserve {
  padding: var(--cmn-pd-md) 0;
  position: relative;
  z-index: 1;
  overflow-x: clip;
  background: url(/img/common/pattern/pattern02.jpg);
}
.reserve-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.reserve-ttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 67/63;
  width: 67px;
  top: 100%;
  right: calc(100% + 21px);
  background: url(/img/stay/reserve-ttl-deco.png) no-repeat;
  background-size: contain;
}
.reserve-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 50px;
  margin-bottom: 23px;
}
.reserve-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  left: 0;
  top: 10px;
  background: url(/img/common/ttl-deco01.png) no-repeat;
  background-size: contain;
}
.reserve-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  right: 0;
  top: 10px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.reserve .deco {
  position: relative;
}
.reserve .deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 66/67;
  width: 66px;
  bottom: -34px;
  left: -41px;
  background: url(/img/stay/reserve-btn-deco01.png) no-repeat;
  background-size: contain;
}
.reserve .btn-txt-200::after {
  content: "";
  position: absolute;
  z-index: 1;
  aspect-ratio: 377/233;
  width: 377px;
  right: -36px;
  bottom: -45px;
  background: url(/img/stay/reserve-btn-deco02.png) no-repeat;
  background-size: contain;
}

/*==========================================
cafe
===========================================*/
.cafe-concept {
  padding: var(--cmn-pd-md) 0;
  padding-top: 106px;
  background: url(/img/goods/concept-bg.png) no-repeat center center/cover;
  overflow-x: clip;
  position: relative;
  z-index: 1;
}
.cafe-concept-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cafe-concept-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 50px;
  margin-bottom: 23px;
}
.cafe-concept-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  left: 0;
  top: 10px;
  background: url(/img/common/ttl-deco01.png) no-repeat;
  background-size: contain;
}
.cafe-concept-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  right: 0;
  top: 10px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.cafe-concept-body {
  width: 100%;
  padding: 50px 0;
  position: relative;
  z-index: 1;
}
.cafe-concept-body::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  width: calc(100% + 128px);
  height: 100%;
  height: calc(100% + 1.8px);
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  background: url(/img/common/item-deco-lt.png) no-repeat left top -1.3px/47px 49px, url(/img/common/item-deco-lb.png) no-repeat left bottom -1.3px/47px 49px, url(/img/common/item-deco-rt.png) no-repeat right top/47px 49px, url(/img/common/item-deco-rb.png) no-repeat right bottom/47px 49px;
}
.cafe-concept-body::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% + 60px);
  height: 100%;
  height: calc(100% + 0px);
  border-top: 3px solid var(--color-txt-200);
  border-bottom: 3px solid var(--color-txt-200);
  left: 50%;
  top: 50%;
  left: calc(50% + 1px);
  top: calc(50% + 0px);
  translate: -50% -50%;
}
.cafe-concept-txt .txt-mb {
  margin-bottom: 30px;
}
.cafe-concept-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 520/340;
  width: 100%;
  max-width: 520px;
  margin-right: 40px;
  position: relative;
  z-index: 1;
}
.cafe-concept-img::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 8px solid var(--color-white);
  outline-offset: -2px;
  outline: 2px solid var(--color-main-100);
}
.cafe-concept-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*menu ---------------------------------------------*/
.menu {
  padding: var(--cmn-pd-md) 0;
  position: relative;
  z-index: 1;
  overflow-x: clip;
  background: url(/img/common/pattern/pattern01.jpg);
}
.menu-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 50px;
  margin-bottom: 23px;
}
.menu-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  left: 0;
  top: 10px;
  background: url(/img/common/ttl-deco01.png) no-repeat;
  background-size: contain;
}
.menu-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  right: 0;
  top: 10px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.menu-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 50px;
}
.menu-item {
  width: 100%;
}
.menu-heading {
  width: 100%;
}
.menu-subttl-area {
  width: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: 47px;
}
.menu-subttl-img {
  position: absolute;
  z-index: -1;
  left: 0;
  top: -60px;
}
.menu-subttl {
  width: 100%;
  font-family: var(--font-sub);
  font-size: 34px;
  line-height: 1.3529411765;
  letter-spacing: 0.05em;
  font-weight: var(--font-semibold);
  color: var(--color-txt-200);
}
.menu-subttl .deco {
  display: inline-block;
  width: 100%;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--color-txt-200);
  position: relative;
  z-index: 1;
  text-align: center;
}
.menu-subttl .deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 17px;
  left: 0;
  bottom: 0;
  background: url(/img/common/ttl-deco03.png) no-repeat left top/contain, url(/img/common/ttl-deco04.png) no-repeat right top/contain;
  translate: 0 50%;
}
.menu-kinds {
  width: 100%;
  margin-top: 10px;
}
.menu-kind {
  width: 100%;
  padding: 13.5px 20px 15.5px;
  border-bottom: 1px solid var(--color-txt-100);
}
.menu-kind .name {
  color: var(--color-txt-100);
}
.menu-kind .price {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 200px;
  font-family: var(--font-sub);
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: var(--font-semibold);
  color: var(--color-txt-200);
  text-align: right;
  margin-left: auto;
}
.menu-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 30px;
  aspect-ratio: 340/220;
  width: 100%;
  max-width: 340px;
  position: relative;
  z-index: 1;
}
.menu-img::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 8px solid var(--color-white);
  outline-offset: -2px;
  outline: 2px solid var(--color-main-100);
}
.menu-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*cafe-gallery ---------------------------------------------*/
.cafe-gallery {
  padding: var(--cmn-pd-md) 0;
  position: relative;
  z-index: 1;
  overflow-x: clip;
  background: url(/img/common/pattern/pattern02.jpg);
}
.cafe-gallery-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cafe-gallery-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 50px;
  margin-bottom: 23px;
}
.cafe-gallery-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  left: 0;
  top: 10px;
  background: url(/img/common/ttl-deco01.png) no-repeat;
  background-size: contain;
}
.cafe-gallery-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  right: 0;
  top: 10px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.cafe-gallery-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cafe-gallery-item {
  width: 100%;
  max-width: 340px;
}
.cafe-gallery-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 340/240;
  position: relative;
  z-index: 1;
}
.cafe-gallery-img::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 8px solid var(--color-white);
  outline-offset: -2px;
  outline: 2px solid var(--color-main-100);
}
.cafe-gallery-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*access ---------------------------------------------*/
.access {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
  position: relative;
  background: url(/img/common/pattern/pattern01.jpg);
}
.access-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.access-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 50px;
  margin-bottom: 23px;
}
.access-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  left: 0;
  top: 10px;
  background: url(/img/common/ttl-deco01.png) no-repeat;
  background-size: contain;
}
.access-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  right: 0;
  top: 10px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.access .cont-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.access .table-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}
.access-table {
  width: 100%;
}
.access-row {
  width: 100%;
}
.access-row:not(:last-child) .access-header {
  border-bottom: 1px solid rgb(var(--color-white-rgb)/0.2);
}
.access-row:not(:last-child) .access-data {
  border-bottom: 1px solid rgb(var(--color-txt-100-rgb)/0.2);
}
.access-header {
  color: var(--color-white);
  width: 130px;
  padding: 13.5px 20px;
  background: var(--color-txt-200);
}
.access-data {
  color: var(--color-txt-100);
  padding: 13.5px 20px;
  background: var(--color-main-200);
}
.access-data .tel-svg {
  padding-left: 5px;
  display: inline-block;
  opacity: 0.5;
}
.access iframe {
  width: 100%;
  height: 260px;
  display: block;
  border: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 40px;
}

/*==========================================
news
===========================================*/
/*news ---------------------------------------------*/
.news .top-news-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
  justify-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.news .top-news-item {
  max-width: 340px;
}
.news .top-news-item-ttl {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news .tag-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 7px;
  gap: 7px;
}

.detail .meta {
  width: 100%;
  margin-bottom: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.detail .date {
  display: inline-block;
  padding: 7.5px 13px 7.5px;
  background: var(--color-txt-200);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 20px;
}
.detail .tag-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
}
.detail .tag:not(:last-child) {
  display: inline-block;
  padding-right: 7px;
  border-right: 1px solid var(--color-main-100);
}

.form,
.complete,
.notfound,
.privacy,
.site-map,
.news,
.detail {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
  background: url(/img/common/pattern/pattern01.jpg);
  background: url(/img/handmade/order-bg.png);
  background-repeat: repeat;
}

.form-ttl,
.complete-ttl,
.notfound-ttl,
.privacy-ttl,
.site-map-ttl,
.news-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-ttl .ttl-sub,
.complete-ttl .ttl-sub,
.notfound-ttl .ttl-sub,
.privacy-ttl .ttl-sub,
.site-map-ttl .ttl-sub,
.news-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 50px;
  margin-bottom: 23px;
}
.form-ttl .ttl-sub::before,
.complete-ttl .ttl-sub::before,
.notfound-ttl .ttl-sub::before,
.privacy-ttl .ttl-sub::before,
.site-map-ttl .ttl-sub::before,
.news-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  left: 0;
  top: 10px;
  background: url(/img/common/ttl-deco01.png) no-repeat;
  background-size: contain;
}
.form-ttl .ttl-sub::after,
.complete-ttl .ttl-sub::after,
.notfound-ttl .ttl-sub::after,
.privacy-ttl .ttl-sub::after,
.site-map-ttl .ttl-sub::after,
.news-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 30px;
  right: 0;
  top: 10px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.tag-change {
  --color-tag-change-def-txt: #b3b3b3;
  --color-tag-change-def-bg: #eee;
  --color-tag-change-current-txt: var(--color-white);
  --color-tag-change-current-bg: var(--color-main-100);
  --tag-change-border-radius: 3px;
  --tag-change-margin-bottom: 60px;
}

.page-btn {
  --color-page-btn-txt: var(--color-txt-100);
  --color-page-btn-border: var(--color-txt-200);
  --color-page-btn-mt: 72px;
  --color-page-btn-pt: 48px;
}