@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: 14px;
  line-height: 20px;
  letter-spacing: 0.05em;
  width: 160px;
  padding: 10px 10px;
  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: 16px;
  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: 20px;
  line-height: 20px;
  width: 300px;
  padding: 25px 10px;
  padding-left: 20px;
  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: 40px;
}
.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);
  width: 28px;
  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: 16px;
  right: 50px;
  top: 40%;
  -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: 18px;
  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: 36px;
  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: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.txt, .top-about-txt {
  font-family: var(--font-sub);
  font-size: 14px;
  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, .drawer-details {
  font-family: var(--font-main);
  font-size: 13px;
  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: 13px;
  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: 14px;
  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: 11px;
  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: 14px;
  line-height: 1.7647058824;
  font-weight: var(--font-normal);
  letter-spacing: 0.05em;
  color: var(--color-txt-100);
}

.txt-hd-nav {
  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 {
  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 {
  font-family: var(--font-sub);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-txt-100);
  font-weight: var(--font-exbold);
}

.txt-ft-nav-sm {
  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: 20px;
  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);
  padding-left: 48px;
  position: relative;
  z-index: 1;
}
.tel-num::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: var(--icon-width)/var(--icon-height);
  width: 36px;
  left: 0;
  top: calc(50% + 4px);
  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, 60px) 0;
}
.site-map-list {
  font-size: 16px;
  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: 15px 0 15px 30px;
  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, 60px) 0;
}
.notfound-txt {
  font-weight: var(--font-medium, 500);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0;
  color: var(--color-notfound-txt);
}
.notfound-txt a {
  color: var(--color-notfound-link);
  text-decoration: underline;
}

/*privacy ---------------------------------------------*/
.privacy {
  --color-privacy: var(--color-txt-100);
  padding: var(--cmn-pd-md, 60px) 0;
}
.privacy .ttl02 {
  font-size: 20px;
  font-family: var(--font-main);
  padding-bottom: 7px;
  margin-bottom: 12px;
  color: var(--color-privacy);
  font-weight: var(--font-bold, bold);
  border-bottom: 1px solid var(--color-privacy);
}
.privacy .privacy-box {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-privacy);
}
.privacy .privacy-box:not(:last-child) {
  margin-bottom: 50px;
}

/*contact ---------------------------------------------*/
#contact {
  --color-contact-main: var(--color-main-400);
  --color-contact-required-mark-txt: var(--color-white);
  --color-contact-required-mark-bg: var(--color-main-100);
  --color-contact-th-bg: var(--color-main-400);
  --color-contact-th-txt: #fff;
  --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, 60px) 0;
}
.complete-box {
  max-width: 80%;
  margin: 0 auto;
  text-align: left;
  font-weight: var(--font-medium, 500);
  font-size: 14px;
  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: 32px;
  gap: 20px;
  font-size: 13px;
}
.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: 8.5px 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: 14px;
  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: 9px 16px;
}
.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: 60px;
  --color-page-btn-pt: 28px;
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: var(--color-page-btn-mt);
  padding-top: var(--color-page-btn-pt);
  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: 14px;
  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: 22px;
}
.page-btn .left a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 5px;
  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: 22px;
}
.page-btn .right a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 15px;
  height: 5px;
  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-img-width: 25%;
  --news-margin-right: 15px;
}
.news .news-item-img {
  overflow: hidden;
  position: relative;
  z-index: 1;
  aspect-ratio: 1/1;
  width: var(--news-img-width);
  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;
}
.news .top-news-item-ttl {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.detail {
  --color-news-detail: var(--color-txt-100);
  --fontsize-news-detail: 20px;
  --font-weight-news-detail: var(--font-medium);
  --news-detail-margin-bottom: 12px;
}
.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/cover;
}

.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/cover;
  -webkit-mask-image: linear-gradient(90deg, black 0%, black calc(50% - 60px), transparent calc(50% - 60px), transparent calc(50% + 60px), black calc(50% + 60px), black 100%);
          mask-image: linear-gradient(90deg, black 0%, black calc(50% - 60px), transparent calc(50% - 60px), transparent calc(50% + 60px), black calc(50% + 60px), black 100%);
}
.bg-deco-btm02::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 169/56;
  width: 120px;
  left: 50%;
  bottom: -20px;
  translate: -50%;
  background: url(/img/common/bg-deco02.png) no-repeat;
  background-size: contain;
}

/*header ---------------------------------------------*/
.header {
  width: 100%;
  overflow-x: clip;
  background: url(/img/common/pattern/pattern01.jpg);
  position: relative;
  padding-top: 20px;
}
.header .logo {
  width: 220px;
  margin-left: 10px;
}
.header.padding-sm {
  padding-bottom: 40px;
}
.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: cover;
  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: 20px;
}
.header-wrap {
  width: 100%;
}

/*mv ---------------------------------------------*/
.mv {
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 60px;
}
.mv-wrap {
  width: 100%;
  height: 100%;
}
.mv-list {
  width: 100%;
  height: 100%;
  gap: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 5px;
}
.mv-item {
  aspect-ratio: 600/370;
  width: 100%;
  margin: 0 auto;
}
.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: 15.1%;
  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: 2.3%;
}
.mv-catch .catch-main {
  font-family: var(--font-sub);
  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: 99;
  position: fixed;
  width: 80px;
  right: 5px;
  bottom: 20px;
}
.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: 121px;
  bottom: calc(100% - 10px);
  right: calc(100% - 36px);
  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: 90px;
  bottom: -20px;
  left: calc(100% + 7px);
  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 40px;
  margin-bottom: 12px;
}
.top-about-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 24px;
  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: 24px;
  right: 0;
  top: 8px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.top-about-imgarea {
  width: 100%;
  margin: 0 auto;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.top-about-imgarea::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 237/355;
  width: 160px;
  bottom: -27px;
  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: 120px;
  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%;
}
.top-about-img::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 4px solid var(--color-white);
  outline-offset: -1px;
  outline: 1px 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: left;
}

/*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/24%, url(/img/top/top-links-bg-deco02.png) no-repeat left top 28%/24%, url(/img/top/top-links-bg-deco03.png) no-repeat right bottom 37%/24%, url(/img/top/top-links-bg-deco04.png) no-repeat left bottom 12%/24%;
}
.top-links-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 60px;
}
.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: 56px;
  right: 10%;
  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: 83px;
  left: 10px;
  bottom: -65px;
  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: 63px;
  top: 21px;
  right: 45px;
  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: 49px;
  left: 30px;
  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: 48px;
  top: 50%;
  left: 10%;
  background: url(/img/top/top-links-deco05.png) no-repeat;
  background-size: contain;
}
.top-links-box {
  width: 100%;
  padding: 40px 30px;
  position: relative;
  z-index: 1;
  background: rgb(var(--color-main-200-rgb)/0.7);
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.top-links-box::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% + 0px);
  height: 100%;
  height: calc(100% + 0px);
  border-top: 2px solid var(--color-txt-200);
  border-bottom: 2px solid var(--color-txt-200);
  left: 50%;
  top: 50%;
  left: calc(50% + 0px);
  top: calc(50% + 0px);
  translate: -50% -50%;
}
.top-links-txtarea {
  width: 100%;
}
.top-links-ttl {
  width: 100%;
  text-align: center;
  font-family: var(--font-sub);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3529411765;
  letter-spacing: 0.05em;
  color: var(--color-txt-200);
  position: relative;
  z-index: 1;
  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;
}
.top-links-ttl .deco {
  display: inline-block;
  width: 100%;
  padding-bottom: 12px;
  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 {
  width: 130px;
  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: 20px;
}
.top-links-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  border: 1px solid var(--color-main-100);
  width: 100%;
  max-width: 400px;
  margin: 34px auto;
}
.top-links-img::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0;
  border: 3px 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;
  margin-bottom: 32px;
}

/*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-wrap {
  -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 {
  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 40px;
  margin-bottom: 12px;
}
.top-news-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 24px;
  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: 24px;
  right: 0;
  top: 8px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.top-news-list {
  width: 100%;
  gap: 30px 10px;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.top-news-item {
  width: 100%;
  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: 12px;
  border: 1px 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: 6px 7px 4px;
  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: 8px;
}
.top-news-item .tag:not(:first-child) {
  padding-left: 4px;
}
.top-news-item .tag:not(:last-child) {
  display: inline-block;
  padding-right: 4px;
  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 40px;
  margin-bottom: 12px;
}
.top-access-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 24px;
  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: 24px;
  right: 0;
  top: 8px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.top-access-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.top-access-img::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 4px solid var(--color-white);
  outline-offset: -1px;
  outline: 1px solid var(--color-main-100);
}
.top-access-img::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 408/463;
  width: 240px;
  left: 0;
  top: 0;
  translate: -30% -3%;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.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: 49px;
  right: 0;
  top: 0;
  translate: 40% -20%;
  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.2941176471px 20px;
  background: var(--color-txt-200);
}
.top-access-data {
  color: var(--color-txt-100);
  padding: 13.2941176471px 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: 240px;
  display: block;
  border: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 20px;
}

/*footer ---------------------------------------------*/
.footer {
  padding-top: 60px;
  overflow: hidden;
  background: url(/img/common/pattern/pattern01.jpg);
}
.footer-top {
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-main-100);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer-logo {
  display: block;
}
.footer-contact {
  gap: 20px;
  margin-bottom: 40px;
}
.footer-contact .tel-area {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.footer-contact .tel {
  margin-bottom: 2px;
}
.footer-contact .tel-svg {
  opacity: 0.5;
  padding-left: 48px;
}
.footer-contact .btn-line {
  width: 30px;
}
.footer-main {
  width: 100%;
  padding-top: 44px;
  padding-bottom: 60px;
  -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;
}
.footer-info {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}
.footer-detail {
  margin-bottom: 28px;
  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-detail .address {
  margin-bottom: 8px;
}
.footer-snsarea {
  width: 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;
}
.footer .sns-lead {
  width: 100%;
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  text-align: left;
  color: var(--color-txt-200);
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.footer .sns-lead .cont {
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer .sns-lead::before {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-txt-200);
}
.footer .sns-lead::after {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-txt-200);
}
.footer .sns-links {
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer .btn-sns {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: var(--font-exbold);
  color: var(--color-txt-100);
  padding-bottom: 8px;
  padding-left: 35px;
  position: relative;
  z-index: 1;
}
.footer .btn-sns::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/30;
  width: 24px;
  left: 0;
  top: -3px;
  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% - 35px);
  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: 20px;
  position: relative;
  z-index: 1;
}
.footer .nav-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 13/13;
  width: 11px;
  left: 0;
  top: 1px;
  background: url(/img/common/kirakira01.png) no-repeat;
  background-size: contain;
}
.footer .nav-item a {
  display: block;
}
.footer .copy-wrapper {
  background: var(--color-txt-200);
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.footer .copy {
  display: block;
  width: 100%;
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 0;
  position: relative;
  z-index: 1;
}
.footer .current {
  color: var(--color-main-100);
}

/*==========================================
sv
===========================================*/
.sv {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 0 40px;
  padding-top: 20px;
}
.sv-wrap {
  position: relative;
  z-index: 1;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -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: 100%;
  max-width: 300px;
  margin-left: auto;
  position: relative;
  z-index: 1;
  border: 1px solid var(--color-main-100);
}
.sv-img::before {
  content: "";
  position: absolute;
  z-index: 1;
  aspect-ratio: 72/72;
  width: 45px;
  left: 0;
  top: 0;
  translate: -40% -20%;
  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: 85px;
  right: 0;
  bottom: 0;
  translate: 60% 30%;
  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;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  margin-right: 30px;
}
.sv-ttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 317/328;
  width: 217px;
  right: 0;
  top: 0;
  translate: 0 -20%;
  background: url(/img/common/sv-deco-l.png) no-repeat;
  background-size: contain;
}
.sv-ttl .ttl-sub {
  font-family: var(--font-en);
  font-size: 24px;
  line-height: 1;
  font-weight: var(--font-exbold);
  color: var(--color-txt-200);
  display: inline-block;
  margin-bottom: 10px;
}
.sv-ttl .ttl-main {
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-txt-200);
}

/*goods-concept ---------------------------------------------*/
.goods-concept {
  padding: var(--cmn-pd-md) 0;
  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 40px;
  margin-bottom: 12px;
  white-space: nowrap;
}
.goods-concept-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 24px;
  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: 24px;
  right: 0;
  top: 8px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.goods-concept-body {
  width: 100%;
  padding: 30px 5px;
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.goods-concept-body::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% + 0px);
  height: 100%;
  height: calc(100% + 0px);
  border-top: 2px solid var(--color-txt-200);
  border-bottom: 2px solid var(--color-txt-200);
  left: 50%;
  top: 50%;
  left: calc(50% + 0px);
  top: calc(50% + 0px);
  translate: -50% -50%;
}
.goods-concept-txt {
  margin-bottom: 20px;
}
.goods-concept-txt .txt-mb {
  margin-bottom: 1em;
}
.goods-concept-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 520/340;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  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 40px;
  margin-bottom: 12px;
}
.genre-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 24px;
  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: 24px;
  right: 0;
  top: 8px;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.genre-item {
  width: 100%;
  max-width: 150px;
}
.genre-subttl {
  width: 100%;
  text-align: center;
  margin-top: 5px;
}
.genre-txt {
  color: var(--color-txt-100);
  text-align: center;
}
.genre-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  position: relative;
  z-index: 1;
  margin: 27px 0;
  border-radius: 50%;
  border: 1px 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: 3px 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 40px;
  margin-bottom: 12px;
}
.gallery-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 24px;
  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: 24px;
  right: 0;
  top: 8px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.gallery-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.gallery-item {
  width: 100%;
}
.gallery-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  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: 4px solid var(--color-white);
  outline-offset: -1px;
  outline: 1px 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 40px;
  margin-bottom: 12px;
}
.access-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 24px;
  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: 24px;
  right: 0;
  top: 8px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.access iframe {
  width: 100%;
  display: block;
  border: none;
  height: 240px;
}

/*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 40px;
  margin-bottom: 12px;
}
.parking-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 24px;
  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: 24px;
  right: 0;
  top: 8px;
  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: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.parking-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 520/340;
  width: 100%;
  position: relative;
  z-index: 1;
}
.parking-img::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 4px solid var(--color-white);
  outline-offset: -1px;
  outline: 1px solid var(--color-main-100);
}
.parking-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*==========================================
Handmade
===========================================*/
/*handmade-concept ---------------------------------------------*/
.handmade-concept {
  padding: var(--cmn-pd-md) 0;
  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 40px;
  margin-bottom: 12px;
  white-space: nowrap;
}
.handmade-concept-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 24px;
  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: 24px;
  right: 0;
  top: 8px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.handmade-concept-body {
  width: 100%;
  padding: 30px 5px;
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.handmade-concept-body::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% + 0px);
  height: 100%;
  height: calc(100% + 0px);
  border-top: 2px solid var(--color-txt-200);
  border-bottom: 2px solid var(--color-txt-200);
  left: 50%;
  top: 50%;
  left: calc(50% + 0px);
  top: calc(50% + 0px);
  translate: -50% -50%;
}
.handmade-concept-txt {
  margin-bottom: 20px;
}
.handmade-concept-txt .txt-mb {
  margin-bottom: 1em;
}
.handmade-concept-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 520/340;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  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 40px;
  margin-bottom: 12px;
}
.handmade-goods-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 24px;
  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: 24px;
  right: 0;
  top: 8px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.handmade-goods-lead {
  text-align: left;
  margin-bottom: 33px;
}
.handmade-goods-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 30px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.handmade-goods-item {
  width: 100%;
  padding: 40px 30px;
  background: rgb(var(--color-main-200-rgb)/0.7);
  border-top: 2px solid var(--color-main-100);
  border-bottom: 2px solid var(--color-main-100);
  position: relative;
  z-index: 1;
  -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-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: calc(100% - 6px);
  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: 30px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-txt-200);
}
.handmade-goods-subttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 17/21;
  width: 14px;
  left: 0;
  top: 4px;
  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: 15px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: var(--font-semibold);
  color: var(--color-txt-200);
  padding-top: 12px;
  margin-left: auto;
}
.handmade-goods-txt {
  margin-top: 12px;
}
.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-bottom: 20px;
}
.handmade-goods-img::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 4px solid var(--color-white);
  outline-offset: -1px;
  outline: 1px 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 40px;
  margin-bottom: 12px;
}
.order-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 24px;
  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: 24px;
  right: 0;
  top: 8px;
  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: 91px;
  left: 196px;
  top: -115px;
  left: 0;
  top: 0;
  translate: -20% -70%;
  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: 93px;
  right: 0;
  bottom: 0;
  translate: 0% 40%;
  background: url(/img/handmade/hana-sm.png) no-repeat;
  background-size: contain;
}
.order-txt {
  width: 100%;
  text-align: left;
  position: relative;
  z-index: 1;
  padding: 40px 5px;
}
.order-txt::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% + 0px);
  height: 100%;
  height: calc(100% + 0px);
  border-top: 2px solid var(--color-txt-200);
  border-bottom: 2px solid var(--color-txt-200);
  left: 50%;
  top: 50%;
  left: calc(50% + 0px);
  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;
  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 40px;
  margin-bottom: 12px;
  white-space: nowrap;
}
.stay-concept-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 24px;
  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: 24px;
  right: 0;
  top: 8px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.stay-concept-body {
  width: 100%;
  padding: 30px 5px;
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.stay-concept-body::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% + 0px);
  height: 100%;
  height: calc(100% + 0px);
  border-top: 2px solid var(--color-txt-200);
  border-bottom: 2px solid var(--color-txt-200);
  left: 50%;
  top: 50%;
  left: calc(50% + 0px);
  top: calc(50% + 0px);
  translate: -50% -50%;
}
.stay-concept-txt {
  margin-bottom: 20px;
}
.stay-concept-txt .txt-mb {
  margin-bottom: 1em;
}
.stay-concept-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 520/340;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  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 .stay-concept-body {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.stay-concept .main-body {
  width: 100%;
  margin-bottom: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.stay-concept .sub-body {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, auto);
  gap: 20px;
}
.stay-concept .sub-body p {
  color: var(--color-txt-100);
  text-align: center;
  margin-left: 33px;
  margin-right: 16px;
  grid-row: 2/3;
  grid-column: 1/3;
}
.stay-concept .subimg-wrap {
  position: relative;
  z-index: 1;
}
.stay-concept .subimg-wrap:nth-of-type(1) {
  justify-items: end;
}
.stay-concept .subimg-wrap:nth-of-type(1)::after {
  content: "";
  position: absolute;
  z-index: 1;
  aspect-ratio: 253/183;
  width: 100%;
  max-width: 180px;
  bottom: 35px;
  right: 0;
  bottom: 0;
  translate: -15% -15%;
  background: url(/img/stay/concept-deco01.png) no-repeat;
  background-size: contain;
}
.stay-concept .subimg-wrap:nth-of-type(1) .stay-concept-subimg {
  grid-row: 1/2;
  grid-column: 1/2;
}
.stay-concept .subimg-wrap:nth-of-type(2) {
  justify-items: start;
}
.stay-concept .subimg-wrap:nth-of-type(2)::after {
  content: "";
  position: absolute;
  z-index: 1;
  aspect-ratio: 57/57;
  width: 20%;
  max-width: 36px;
  left: min(80%, 140px);
  top: 0;
  translate: 0 100%;
  background: url(/img/stay/concept-deco02.png) no-repeat;
  background-size: contain;
}
.stay-concept .subimg-wrap:nth-of-type(2) .stay-concept-subimg {
  grid-row: 1/2;
  grid-column: 2/3;
}
.stay-concept-subimg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 180px;
  position: relative;
  z-index: 1;
  margin: 27px 0;
  border-radius: 50%;
  border: 1px 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: 3px 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 40px;
  margin-bottom: 12px;
}
.facility-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 24px;
  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: 24px;
  right: 0;
  top: 8px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.facility-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 30px 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.facility-item {
  width: 100%;
  container-type: inline-size;
}
.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: 8px;
  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;
  width: 100%;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.facility-img::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 4px solid var(--color-white);
  outline-offset: -1px;
  outline: 1px 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 40px;
  margin-bottom: 12px;
}
.amenity-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 24px;
  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: 24px;
  right: 0;
  top: 8px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.amenity-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 16px 12px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}
.amenity-item {
  width: 100%;
  border-top: 2px solid var(--color-main-100);
  border-bottom: 2px solid var(--color-main-100);
  padding: 10px 0;
  position: relative;
  z-index: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  container-type: inline-size;
}
.amenity-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: calc(100% - 6px);
  top: 50%;
  translate: 0 -50%;
  border-top: 1px solid var(--color-main-100);
  border-bottom: 1px solid var(--color-main-100);
}
.amenity-item span {
  font-family: var(--font-sub);
  font-size: max(7cqw, 12px);
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  font-weight: var(--font-bold);
  color: var(--color-txt-100);
  text-align: center;
}

/*reserve ---------------------------------------------*/
.reserve {
  padding: var(--cmn-pd-md) 0;
  position: relative;
  z-index: 1;
  overflow-x: clip;
  background: url(/img/common/pattern/pattern02.jpg);
}
.reserve-wrap {
  -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;
}
.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;
  margin-bottom: var(--ttl-mb-md);
}
.reserve-ttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 67/63;
  width: 37px;
  top: 80%;
  right: calc(100% + 11px);
  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 40px;
  margin-bottom: 12px;
}
.reserve-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 24px;
  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: 24px;
  right: 0;
  top: 8px;
  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: 32px;
  left: 0;
  bottom: 0;
  translate: -50% 50%;
  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: 60%;
  right: 0;
  bottom: 0;
  translate: 10% 20%;
  background: url(/img/stay/reserve-btn-deco02.png) no-repeat;
  background-size: contain;
}

/*==========================================
cafe
===========================================*/
.cafe-concept {
  padding: var(--cmn-pd-md) 0;
  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 40px;
  margin-bottom: 12px;
  white-space: nowrap;
}
.cafe-concept-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 24px;
  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: 24px;
  right: 0;
  top: 8px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.cafe-concept-body {
  width: 100%;
  padding: 30px 5px;
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.cafe-concept-body::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% + 0px);
  height: 100%;
  height: calc(100% + 0px);
  border-top: 2px solid var(--color-txt-200);
  border-bottom: 2px solid var(--color-txt-200);
  left: 50%;
  top: 50%;
  left: calc(50% + 0px);
  top: calc(50% + 0px);
  translate: -50% -50%;
}
.cafe-concept-txt {
  margin-bottom: 20px;
}
.cafe-concept-txt .txt-mb {
  margin-bottom: 1em;
}
.cafe-concept-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 520/340;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  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 40px;
  margin-bottom: 12px;
}
.menu-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 24px;
  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: 24px;
  right: 0;
  top: 8px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.menu-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 60px;
}
.menu-item {
  width: 100%;
}
.menu-heading {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.menu-subttl-area {
  width: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  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;
}
.menu-subttl-img {
  width: 130px;
}
.menu-subttl {
  width: 100%;
  font-family: var(--font-sub);
  font-size: 20px;
  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: 12px;
  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);
  -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;
}
.menu-kind .name {
  width: 100%;
  color: var(--color-txt-100);
  margin-bottom: 8px;
}
.menu-kind .price {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: var(--font-sub);
  font-size: 15px;
  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;
  aspect-ratio: 340/220;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}
.menu-img::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 4px solid var(--color-white);
  outline-offset: -1px;
  outline: 1px 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 40px;
  margin-bottom: 12px;
}
.cafe-gallery-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 24px;
  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: 24px;
  right: 0;
  top: 8px;
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}
.cafe-gallery-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.cafe-gallery-item {
  width: 100%;
}
.cafe-gallery-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  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: 4px solid var(--color-white);
  outline-offset: -1px;
  outline: 1px 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 40px;
  margin-bottom: 12px;
}
.access-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/23;
  width: 24px;
  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: 24px;
  right: 0;
  top: 8px;
  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.2941176471px 20px;
  background: var(--color-txt-200);
}
.access-data {
  color: var(--color-txt-100);
  padding: 13.2941176471px 20px;
  background: var(--color-main-200);
}
.access-data .tel-svg {
  padding-left: 5px;
  display: inline-block;
  opacity: 0.5;
}
.access iframe {
  width: 100%;
  height: 240px;
  display: block;
  border: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 20px;
}

/*==========================================
news
===========================================*/
/*news ---------------------------------------------*/
.news .top-news-list {
  width: 100%;
  gap: 30px 10px;
  justify-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.news .top-news-item {
  width: 100%;
}
.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;
}

.detail .meta {
  width: 100%;
  margin-bottom: 50px;
  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: 6px 7px 4px;
  background: var(--color-txt-200);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
}
.detail .tag-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.detail .tag:not(:first-child) {
  padding-left: 4px;
}
.detail .tag:not(:last-child) {
  display: inline-block;
  padding-right: 4px;
  border-right: 1px solid var(--color-main-100);
}

.drawer {
  background: url(/img/handmade/order-bg.png);
}
.drawer #nav {
  margin-bottom: 40px;
}
.drawer-contact {
  gap: 20px;
  margin-bottom: 30px;
}
.drawer-contact .tel-area {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.drawer-contact .tel {
  margin-bottom: 2px;
}
.drawer-contact .tel-svg {
  opacity: 0.5;
  padding-left: 48px;
}
.drawer-contact .btn-line {
  width: 30px;
}
.drawer-details {
  margin-bottom: 28px;
  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;
}
.drawer-details .address {
  margin-bottom: 0px;
}

.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 40px;
  margin-bottom: 12px;
}
.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: 24px;
  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: 24px;
  right: 0;
  top: 8px;
  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: 30px;
}

.page-btn {
  --color-page-btn-txt: var(--color-txt-100);
  --color-page-btn-border: var(--color-txt-200);
}