@charset "UTF-8";
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}


/*
html$--------------------------------------------------------*/
* {
  margin: 0px;
  padding: 0px;
}

body {
  color: #162F29;
  margin: 0;
  padding: 0;
  font-family: "Zen Maru Gothic", sans-serif !important;
  text-align: center;
  line-height: 1.6;
  position: relative;
  transition: all ease 0.4s;
  background: #EFEFEF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.fixed {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

a {
  color: #457234;
  text-decoration: underline;
}

a:visited {
  color: #457234;
  text-decoration: underline;
}

a:hover {
  color: #457234;
  text-decoration: none;
}

a:active {
  color: #457234;
  text-decoration: underline;
}

ul {
  list-style: none;
}

img {
  margin: 0;
  padding: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

@media screen and (max-width: 767px) {
  a:hover img {
    opacity: 1 !important;
  }
}
.sp {
  display: none;
}

.pc {
  display: block;
}

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

@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
/* header
===============================================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
}
header .logo {
  width: clamp(150px, 26vw, 230px);
  background: #fff;
  box-sizing: border-box;
  border-radius: 0 0 10px 0;
}
header .logo a {
  padding: 20px;
  display: block;
  text-decoration: none;
}
@media screen and (max-width: 880px) {
  header .logo a {
    padding: 10px 15px;
  }
}
header .toggle-menu {
  display: none;
}
@media screen and (max-width: 880px) {
  header .toggle-menu {
    display: block;
    height: 80px;
    width: 80px;
    display: block;
    background: #457234;
    transform: scale(0.6);
    transform-origin: right top;
    border-radius: 15px;
    aspect-ratio: 80/80;
    box-sizing: border-box;
    cursor: pointer;
    position: fixed;
    right: 5px;
    top: 5px;
    z-index: 10;
  }
  header .toggle-menu span {
    width: 50px;
    height: 3px;
    display: block;
    border-radius: 2px;
    background-color: #fff;
    position: absolute;
    left: 15px;
    transition: transform 0.6s ease-in-out, top 0.5s ease;
  }
  header .toggle-menu span:nth-child(1) {
    top: 22px;
  }
  header .toggle-menu span:nth-child(2) {
    top: 37px;
  }
  header .toggle-menu span:nth-child(3) {
    top: 53px;
  }
}

.openMenu .toggle-menu span:nth-child(1) {
  transform: rotate(45deg);
  top: 40px;
}

.openMenu .toggle-menu span:nth-child(2) {
  top: 20px;
  width: 0;
  left: 50%;
}

.openMenu .toggle-menu span:nth-child(3) {
  transform: rotate(-45deg);
  top: 40px;
}

aside {
  background: #457234;
  width: 160px;
  height: 100dvh;
  position: fixed;
  left: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all ease 0.4s;
}
@media screen and (max-width: 880px) {
  aside {
    visibility: hidden;
    transition: all ease 0.4s;
    left: -200px;
  }
}
aside .gnav {
  text-align: left;
}
aside .gnav li {
  margin-bottom: 1em;
  font-size: clamp(12px, 0.9375vw, 15px);
}
@media screen and (max-width: 880px) {
  aside .gnav li {
    font-size: 20px;
  }
}
aside .gnav a {
  font-weight: bold;
  color: #fff;
  position: relative;
  text-decoration: none;
  transition: all ease 0.4s;
}
aside .gnav a:hover, aside .gnav a.active {
  transition: all ease 0.4s;
}
aside .gnav a:hover:after, aside .gnav a.active:after {
  content: "・";
  position: absolute;
  top: -6px;
}

.openMenu aside {
  right: 0;
  left: auto;
  visibility: visible;
  transition: all ease 0.4s;
  width: 200px;
}

/* footer
===============================================================*/
footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
  background: #162F29;
  padding: 30px 50px;
}
@media screen and (max-width: 960px) {
  footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
}
footer .footer-left {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  footer .footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
}
footer .footer-left .f-logo {
  margin-right: 4vw;
}
@media screen and (max-width: 767px) {
  footer .footer-left .f-logo {
    margin-bottom: 2vw;
  }
}
footer ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 960px) {
  footer ul {
    margin-bottom: 1em;
  }
}
footer ul li {
  font-size: clamp(12px, 0.9375vw, 15px);
  margin-right: 1.5em;
}
footer ul li a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}
footer ul li a:hover {
  color: #fff;
  text-decoration: underline;
}
footer ul li a:active, footer ul li a:visited {
  color: #fff;
  text-decoration: underline;
}
footer small {
  color: #fff;
  font-size: clamp(10px, 0.75vw, 12px);
  letter-spacing: 0.1em;
  font-weight: bold;
}

/* body
===============================================================*/
main {
  margin-left: 160px;
  overflow: hidden;
  transition: all ease 0.4s;
}
@media screen and (max-width: 880px) {
  main {
    margin-left: 0;
    transition: all ease 0.4s;
  }
}

.ly-inner {
  width: 840px;
  margin: 0 auto;
}
@media screen and (max-width: 1060px) {
  .ly-inner {
    width: 100%;
    box-sizing: border-box;
    padding: 0 4vw;
  }
}

.swiper {
  position: relative;
  padding-top: 10vw;
}
.swiper .copy {
  position: absolute;
  z-index: 2;
  right: 20vw;
  top: 2vw;
}
@media screen and (max-width: 880px) {
  .swiper .copy {
    right: 10vw;
  }
}
.swiper .copy img {
  width: 8vw;
}
@media screen and (max-width: 880px) {
  .swiper .copy img {
    width: 14vw;
  }
}

.kv-area {
  position: relative;
  margin-bottom: 8vw;
}
@media screen and (max-width: 880px) {
  .kv-area {
    margin-top: 15vw;
  }
}
.kv-area .swiper {
  overflow: visible;
  z-index: 1;
}

.swiper-slide {
  border-radius: clamp(15px, 5vw, 40px);
  overflow: hidden;
}
.swiper-slide img {
  width: 100%;
}

.swiper-pagination {
  bottom: -40px !important;
  left: 0 !important;
  width: 80vw !important;
}

.top-news-list {
  background: #162F29;
  padding: 20px 30px;
  width: 48%;
  position: absolute;
  right: 3vw;
  bottom: -3vw;
  z-index: 3;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 880px) {
  .top-news-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media screen and (max-width: 880px) {
  .top-news-list {
    box-sizing: border-box;
    width: calc(100% - 8vw);
    position: relative;
    right: 0;
    bottom: 0;
    margin: 20px auto;
  }
}
.top-news-list h3 {
  font-size: clamp(20px, 1.5625vw, 25px);
  color: #fff;
  margin-right: 25px;
  width: 60px;
  text-align: left;
}
.top-news-list h3 span {
  color: #457234;
}
.top-news-list ul {
  width: calc(100% - 85px);
}
@media screen and (max-width: 880px) {
  .top-news-list ul {
    width: 100%;
  }
}
.top-news-list ul li {
  text-align: left;
  font-size: clamp(15px, 1.0625vw, 17px);
  font-weight: bold;
  margin: 5px 0;
  width: 100%;
  color: #fff;
}
.top-news-list ul li a,
.top-news-list ul li em {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  color: #fff;
  text-decoration: none;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%228.624%22%20height%3D%2211.352%22%20viewBox%3D%220%200%208.624%2011.352%22%3E%0A%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_84%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2084%22%20transform%3D%22translate(1.391%201.391)%22%3E%0A%20%20%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_8%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%208%22%3E%0A%20%20%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010%22%20d%3D%22M1%2C9.571%2C7.233%2C5.285%2C1%2C1%22%20transform%3D%22translate(-1%20-1)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A") no-repeat right 50%;
  box-sizing: border-box;
  padding-right: 2em;
  transition: all ease 0.4s;
  font-style: normal;
}
@media screen and (max-width: 960px) {
  .top-news-list ul li a,
  .top-news-list ul li em {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.top-news-list ul li a:hover,
.top-news-list ul li em:hover {
  text-decoration: underline;
  background-position: right 5px top 50%;
  transition: all ease 0.4s;
}
.top-news-list ul li em {
  background: none;
}
.top-news-list ul li em:hover {
  text-decoration: none;
}
.top-news-list ul li .date {
  width: 6em;
}
.top-news-list ul li .txt {
  width: calc(100% - 6em);
}
@media screen and (max-width: 960px) {
  .top-news-list ul li .txt {
    width: 100%;
  }
}

.top-block,
.top-store-area {
  text-align: left;
  margin-bottom: 7vw;
  position: relative;
}
@media screen and (max-width: 880px) {
  .top-block,
  .top-store-area {
    margin-bottom: 12vw;
  }
}
.top-block h2,
.top-store-area h2 {
  color: #162F29;
  font-family: "Montserrat", "Zen Maru Gothic", sans-serif !important;
  margin-bottom: 20px;
  position: relative;
  font-size: clamp(20px, 1.5625vw, 25px);
}
.top-block h2 span,
.top-store-area h2 span {
  color: #457234;
}
.top-block h2:after,
.top-store-area h2:after {
  content: ".";
  color: #457234;
  position: absolute;
  top: -15px;
}
.top-block a,
.top-store-area a {
  color: #162F29;
  text-decoration: none;
}
.top-block figure,
.top-store-area figure {
  border-radius: clamp(15px, 5vw, 30px);
  overflow: hidden;
}
.top-block figure img,
.top-store-area figure img {
  transition: all ease 0.4s;
}
.top-block figure img:hover,
.top-store-area figure img:hover {
  transition: all ease 0.4s;
  transform: scale(1.1);
}
.top-block h3,
.top-store-area h3 {
  font-size: clamp(22px, 2.125vw, 34px);
  margin-bottom: 1em;
  margin-top: 1em;
}
.top-block p,
.top-store-area p {
  font-size: clamp(15px, 1.0625vw, 17px);
}

.btn.normal {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  font-size: clamp(12px, 0.875vw, 14px);
}
@media screen and (max-width: 880px) {
  .btn.normal {
    margin-top: 2vw;
  }
}
.btn.normal a {
  font-weight: bold;
  padding-right: 1em;
  border-radius: 50px;
  width: 130px;
  height: 35px;
  border: 1px solid #162F29;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #162F29;
  text-decoration: none;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%228.624%22%20height%3D%2211.352%22%20viewBox%3D%220%200%208.624%2011.352%22%3E%0A%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_13%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2013%22%20transform%3D%22translate(1.391%201.391)%22%3E%0A%20%20%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_8%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%208%22%3E%0A%20%20%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010%22%20d%3D%22M1%2C9.571%2C7.233%2C5.285%2C1%2C1%22%20transform%3D%22translate(-1%20-1)%22%20fill%3D%22none%22%20stroke%3D%22%23162f29%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A") no-repeat right 10px top 50%;
  color: #162F29;
  transition: all ease 0.4s;
}
.btn.normal a:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%228.624%22%20height%3D%2211.352%22%20viewBox%3D%220%200%208.624%2011.352%22%3E%0A%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_84%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2084%22%20transform%3D%22translate(1.391%201.391)%22%3E%0A%20%20%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_8%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%208%22%3E%0A%20%20%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010%22%20d%3D%22M1%2C9.571%2C7.233%2C5.285%2C1%2C1%22%20transform%3D%22translate(-1%20-1)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
  background-color: #162F29;
  background-position: right 8px top 50%;
  color: #fff;
  transition: all ease 0.4s;
}

.top-store-area {
  width: 80vw;
  margin: 0 auto 4vw;
  background: #fff;
  border-radius: clamp(30px, 5vw, 60px);
  padding: 6vw 0;
}
@media screen and (max-width: 880px) {
  .top-store-area {
    width: 96%;
    margin-bottom: 8vw;
  }
}
.top-store-area h2 {
  margin-bottom: 5vw;
}

.shop-wrap {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 880px) {
  .shop-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
  }
}
.shop-wrap figure {
  width: 56%;
}
@media screen and (max-width: 880px) {
  .shop-wrap figure {
    width: 100%;
    margin-bottom: 20px;
  }
}
.shop-wrap .top-shop-info {
  width: 40%;
}
@media screen and (max-width: 880px) {
  .shop-wrap .top-shop-info {
    width: 100%;
  }
}
.shop-wrap .top-shop-info h3 {
  font-size: clamp(18px, 1.625vw, 26px);
  margin: 0 0 1em;
}
.shop-wrap .top-shop-info dt {
  font-size: clamp(15px, 1.0625vw, 17px);
  font-weight: bold;
  background: #fff;
  position: relative;
  z-index: 2;
  margin-bottom: 0.5em;
  position: relative;
}
.shop-wrap .top-shop-info dt:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 80%;
  height: 1px;
  z-index: 1;
  background-color: #B4B4B4;
}
.shop-wrap .top-shop-info dd {
  font-weight: bold;
  margin-bottom: 20px;
}
.shop-wrap .top-shop-info dd ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 5px;
}
.shop-wrap .top-shop-info dd ul li {
  border-radius: 5px;
  font-size: 13px;
  padding: 5px 20px;
  background: #bababa;
}

.tit-area {
  margin-top: 50px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: 6vw;
}
@media screen and (max-width: 880px) {
  .tit-area {
    margin-top: 22vw;
  }
}
.tit-area figure {
  width: 74vw;
  border-radius: clamp(15px, 5vw, 20px) 0 0 clamp(15px, 5vw, 20px);
  overflow: hidden;
  margin-bottom: 40px;
}
@media screen and (max-width: 880px) {
  .tit-area figure {
    width: 90%;
    margin-bottom: 15px;
  }
}
.tit-area .title-wrap {
  width: 74vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 880px) {
  .tit-area .title-wrap {
    width: 90%;
  }
}
.tit-area .title-wrap .subtit {
  color: #162F29;
  font-family: "Montserrat", "Zen Maru Gothic", sans-serif !important;
  position: relative;
  font-size: clamp(20px, 1.5625vw, 25px);
  font-weight: bold;
}
.tit-area .title-wrap .subtit span {
  color: #457234;
}
.tit-area .title-wrap .subtit:after {
  content: ".";
  color: #457234;
  position: absolute;
  top: -15px;
}
.tit-area .title-wrap h1 {
  text-align: left;
  margin: 0;
  line-height: 1.5;
  font-size: clamp(30px, 3.4375vw, 55px);
}

.content-area,
.content-shop-area {
  width: 80vw;
  margin: 0 auto 4vw;
  background: #fff;
  border-radius: clamp(30px, 5vw, 60px);
  padding: 6vw 0;
  text-align: left;
}
@media screen and (max-width: 880px) {
  .content-area,
  .content-shop-area {
    width: 96%;
    margin-bottom: 8vw;
  }
}
.content-area h2,
.content-shop-area h2 {
  font-size: clamp(24px, 2vw, 32px);
  margin-bottom: 1em;
}
.content-area h3,
.content-shop-area h3 {
  font-size: clamp(18px, 1.625vw, 26px);
  margin-bottom: 1em;
}
.content-area .mission-copy,
.content-shop-area .mission-copy {
  text-align: center;
  font-weight: bold;
  font-size: clamp(24px, 2.375vw, 40px);
  margin-bottom: 4vw;
  color: #457234;
}
.content-area .column2-img,
.content-shop-area .column2-img {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 880px) {
  .content-area .column2-img,
  .content-shop-area .column2-img {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
}
.content-area .column2-img figure,
.content-shop-area .column2-img figure {
  flex: 1;
}
.content-area .column2-img figure img,
.content-shop-area .column2-img figure img {
  border-radius: clamp(15px, 5vw, 20px);
}
.content-area dl.vision,
.content-shop-area dl.vision {
  margin-left: 1em;
  margin-bottom: 4vw;
}
.content-area dl.vision dt,
.content-shop-area dl.vision dt {
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: bold;
  margin-bottom: 0.5em;
  color: #457234;
}
.content-area dl.vision dd,
.content-shop-area dl.vision dd {
  padding-left: 2em;
  margin-bottom: 2em;
}
.content-area ul.vision,
.content-shop-area ul.vision {
  list-style: disc;
  margin-left: 1.5em;
}
.content-area ul.vision li,
.content-shop-area ul.vision li {
  margin-bottom: 1em;
}
.content-area dl.number-list,
.content-shop-area dl.number-list {
  counter-reset: number 0;
  margin-left: 1em;
}
.content-area dl.number-list dt,
.content-shop-area dl.number-list dt {
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: bold;
  margin-bottom: 0.5em;
  color: #457234;
  position: relative;
  padding-left: 1.5em;
}
.content-area dl.number-list dt:before,
.content-shop-area dl.number-list dt:before {
  counter-increment: number 1;
  content: counter(number) "．";
  color: #162F29;
  display: block;
  position: absolute;
  left: 0;
}
.content-area dl.number-list dd,
.content-shop-area dl.number-list dd {
  padding-left: 2em;
  margin-bottom: 2em;
}

.price-menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 3vw;
}
@media screen and (max-width: 880px) {
  .price-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 10vw;
  }
}
.price-menu figure {
  width: 46%;
}
@media screen and (max-width: 880px) {
  .price-menu figure {
    width: 100%;
  }
}
.price-menu figure img {
  border-radius: clamp(15px, 5vw, 20px);
}
.price-menu .service-info {
  width: 50%;
  border-bottom: 1px solid #DEDEDE;
  box-sizing: border-box;
  padding-top: 1em;
}
@media screen and (max-width: 880px) {
  .price-menu .service-info {
    width: 100%;
    padding-bottom: 2em;
  }
}
.price-menu .service-info h3 {
  font-size: clamp(18px, 1.5vw, 24px);
}
.price-menu .service-info .price {
  margin-top: 2em;
  color: #457234;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.price-menu .service-info .price p {
  font-weight: 400;
  font-size: clamp(14px, 0.9375vw, 15px);
}
.price-menu .service-info .price .money {
  font-size: clamp(20px, 1.625vw, 26px);
  font-weight: bold;
  margin-left: 1em;
}

dl.faq dt {
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: bold;
  margin-bottom: 0.5em;
  color: #457234;
  position: relative;
  padding-left: 1.5em;
}
dl.faq dt:before {
  content: "Q.";
  color: #162F29;
  display: block;
  position: absolute;
  left: 0;
}
dl.faq dd {
  margin-bottom: 2em;
  padding-bottom: 2em;
  position: relative;
  border-bottom: 1px solid #DEDEDE;
  padding-left: 2em;
}
dl.faq dd:before {
  content: "A.";
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: bold;
  color: #162F29;
  display: block;
  position: absolute;
  left: 0;
}

.facility {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 880px) {
  .facility {
    gap: 0;
  }
}
.facility li {
  width: 47%;
}
@media screen and (max-width: 880px) {
  .facility li {
    width: 100%;
    margin-bottom: 8vw;
  }
}
.facility li h3 span {
  display: block;
  font-size: 70%;
  font-weight: normal;
  color: #162F29;
}
.facility li figure {
  margin-bottom: 20px;
  overflow: hidden;
}
.facility li figure img {
  border-radius: clamp(15px, 5vw, 20px);
}
.facility li p.maker {
  font-size: 88%;
}

.profile {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 880px) {
  .profile {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
}
.profile figure {
  width: 47%;
  margin-bottom: 20px;
  overflow: hidden;
}
@media screen and (max-width: 880px) {
  .profile figure {
    width: 100%;
  }
}
.profile figure img {
  border-radius: clamp(15px, 5vw, 20px);
}
.profile .prof-area {
  width: 47%;
}
@media screen and (max-width: 880px) {
  .profile .prof-area {
    width: 100%;
  }
}
.profile .prof-area h3 {
  margin-bottom: 0.5em;
}
.profile .prof-area h4 {
  font-size: clamp(14px, 1vw, 16px);
  font-weight: normal;
  margin-bottom: 1em;
}
.profile:last-child {
  margin-bottom: 0;
}

.content-shop-area {
  background: #162F29;
  color: #fff;
}
.content-shop-area h2 {
  color: #fff;
}
.content-shop-area .googlemap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 50%;
  margin-bottom: 30px;
}
.content-shop-area .googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: clamp(15px, 5vw, 20px);
}

.shop-gallery {
  margin-bottom: 10vw;
}
.shop-gallery .swiper {
  padding-top: 0;
}
.shop-gallery .thumb-wrapper {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
  gap: 10px;
}
.shop-gallery .thumb-wrapper .thumb-media {
  width: 110px;
  cursor: pointer;
}
.shop-gallery .thumb-wrapper .thumb-media img {
  border-radius: clamp(15px, 5vw, 20px);
}

.shop-detail {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 880px) {
  .shop-detail {
    padding: 0 3%;
  }
}
.shop-detail .shop-detail-elemnt {
  width: 47%;
}
@media screen and (max-width: 880px) {
  .shop-detail .shop-detail-elemnt {
    width: 100%;
  }
}
.shop-detail .shop-detail-elemnt h4 {
  margin-bottom: 10px;
  position: relative;
}
.shop-detail .shop-detail-elemnt h4:after {
  content: "";
  height: 1px;
  width: 80%;
  right: 0;
  top: 12px;
  position: absolute;
  background: #B4B4B4;
}/*# sourceMappingURL=styles.css.map */