@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #4d3e2e;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

.u-1024 {
  display: none;
}
@media screen and (min-width: 1024px) {
  .u-1024 {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.5238095238vw;
  }
}
@media (min-width: 1050px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
img {
  max-width: 100%;
  display: block;
  width: 100%;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1.05" /><feFuncG type="linear" slope="1.05" /><feFuncB type="linear" slope="1.05" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(1.05);
          filter: brightness(1.05);
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.breadcrumbs {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .breadcrumbs {
    margin-top: 1.6875rem;
    font-size: 1.0625rem;
  }
}

@media screen and (min-width: 768px) {
  .breadcrumbs span {
    padding: 0 0.25rem;
  }
}

.button {
  background-color: #f76e4a;
  color: #fff;
  padding: 7px 20px;
  padding: 0.4375rem 1.25rem;
  border-radius: 5px;
  position: relative;
  text-align: center;
  text-indent: -1em;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .button {
    padding: 0.9375rem 1.25rem;
    border-radius: 7px;
  }
}

.button::after {
  content: "";
  position: absolute;
  top: 59%;
  right: 12px;
  right: 0.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 25px;
  width: 1.5625rem;
  height: 11px;
  height: 0.6875rem;
  background-image: url(../images/common/arrow-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
}
@media screen and (min-width: 768px) {
  .button::after {
    width: 3.1875rem;
    right: 1.875rem;
    top: 50%;
  }
}

.button:hover::after {
  right: 5px;
  right: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .button:hover::after {
    right: 1.25rem;
  }
}

body.active {
  height: 100%;
  overflow: hidden;
}

.drawer {
  cursor: pointer;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 768px) {
  .header__drawer {
    width: 40%;
    margin-inline: auto;
  }
}

.drawer__icon {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  z-index: 1000;
  height: 40px;
  height: 2.5rem;
  width: 33px;
  width: 2.0625rem;
}
@media screen and (min-width: 768px) {
  .drawer__icon {
    width: auto;
    height: auto;
  }
}

.drawer__icon.is-open {
  z-index: 900;
}
.drawer__icon.is-open .drawer__icon-bar1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 10px;
  top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .drawer__icon.is-open .drawer__icon-bar1 {
    top: 1.1875rem;
  }
}
.drawer__icon.is-open .drawer__icon-bar2 {
  display: none;
}
.drawer__icon.is-open .drawer__icon-bar3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 10px;
  top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .drawer__icon.is-open .drawer__icon-bar3 {
    top: 1.1875rem;
  }
}

.drawer__icon p {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(11px, 7.126px + 1.0328638498vw, 22px);
  font-size: clamp(0.6875rem, 0.4454225352rem + 1.0328638498vw, 1.375rem);
  text-align: center;
}

.drawer__icon-bars {
  position: relative;
}
@media screen and (min-width: 768px) {
  .drawer__icon-bars {
    height: 2rem;
  }
}

.drawer__icon-bar1,
.drawer__icon-bar2,
.drawer__icon-bar3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #4d3e2e;
  height: 2px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .drawer__icon-bar1,
  .drawer__icon-bar2,
  .drawer__icon-bar3 {
    height: 0.25rem;
  }
}

.drawer__icon-bar1 {
  top: 2px;
  border-radius: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .drawer__icon-bar1 {
    top: 0.25rem;
  }
}

.drawer__icon-bar2 {
  top: 8px;
  border-radius: 0.9375rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .drawer__icon-bar2 {
    top: 0.9375rem;
  }
}

.drawer__icon-bar3 {
  top: 13px;
  border-radius: 0.9375rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .drawer__icon-bar3 {
    top: 1.6875rem;
  }
}

.drawer__content {
  overflow: scroll;
  position: fixed;
  top: 0;
  right: 0;
  background: #f76e4a;
  height: 100%;
  max-width: 400px;
  max-width: 25rem;
  width: 100%;
  z-index: 10;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  text-align: center;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
.drawer__content.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  display: block;
}
@media screen and (min-width: 768px) {
  .drawer__content.is-open {
    -webkit-transform: translateX(-109px);
            transform: translateX(-109px);
  }
}

.drawer__content-items {
  color: #fff;
  line-height: 1.57;
  position: relative;
  list-style: none;
  padding-top: 96px;
  padding-bottom: 100px;
}

.drawer__content-item {
  position: relative;
}

.drawer__content-item a {
  position: relative;
  display: block;
}

.drawer__content-item::after {
  position: absolute;
  content: "";
  width: 80%;
  height: 1px;
  background: #fff;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.drawer__content-item {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  letter-spacing: 1.6px;
  letter-spacing: 0.1rem;
}

.drawer__content-item a {
  display: block;
  padding: 15px 0;
  padding: 0.9375rem 0;
}

.footer {
  background-color: #f76e4a;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .footer {
    margin-right: 9.375rem;
  }
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6%;
  padding-top: 22px;
  padding-top: 1.375rem;
  padding-bottom: 55px;
  padding-bottom: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-top: 3.25rem;
  }
}

.footer__logo {
  width: 51px;
  width: 3.1875rem;
  margin-inline: auto;
  margin-top: 46px;
  margin-top: 2.875rem;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: 8.375rem;
    margin-inline: inherit;
    margin-top: 0;
  }
}

.footer__right {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .footer__right {
    margin-top: 2.5625rem;
  }
}

.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 2px;
  row-gap: 0.125rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer__menu {
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    row-gap: 0.625rem;
  }
}

.footer__menu-item a {
  font-size: clamp(12px, 8.126px + 1.0328638498vw, 23px);
  font-size: clamp(0.75rem, 0.5079225352rem + 1.0328638498vw, 1.4375rem);
  padding: 0 17px;
  padding: 0 1.0625rem;
  letter-spacing: 0.08em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer__menu-item a {
    padding: 0 1.625rem;
  }
}

.footer__menu-item a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
  height: 50%;
  width: 1px;
}
@media screen and (min-width: 768px) {
  .footer__menu-item a::after {
    width: 2px;
  }
}

.footer__menu-item:last-child a:after {
  content: none;
}

.footer__info {
  margin-top: 40px;
  margin-top: 2.5rem;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__info {
    text-align: left;
    text-align: initial;
    margin-left: 2.1875rem;
    margin-top: 4.25rem;
  }
}

.footer__org {
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .footer__org {
    font-size: 1.375rem;
  }
}

.footer__info-detail {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
}
@media screen and (min-width: 768px) {
  .footer__info-detail {
    font-size: 1.125rem;
  }
}

.footer__info-detail span {
  letter-spacing: 0.03em;
}

.footer__info-detail + .footer__info-detail {
  margin-top: 11px;
  margin-top: 0.6875rem;
}

.footer__copy {
  background: #fff;
  color: #4d3e2e;
  text-align: center;
  font-size: 22px;
  font-size: 1.375rem;
  font-size: clamp(12px, 9.572px + 0.6472491909vw, 22px);
  font-size: clamp(0.75rem, 0.5983009709rem + 0.6472491909vw, 1.375rem);
  padding: 7px 0;
  padding: 0.4375rem 0;
  letter-spacing: 0.02em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .footer__copy {
    padding: 0.625rem 0;
  }
}

.header {
  top: 15px;
  right: 16px;
  position: fixed;
  max-width: 150px;
  max-width: 9.375rem;
  z-index: 900;
  padding: 4px 8px;
  border-radius: 7px;
  height: 46px;
  background-color: #f1f0ef;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .header {
    background: white;
    top: 0;
    right: 20px;
    right: 0;
    width: 9.375rem;
    height: 100vh;
    overflow-y: scroll;
    scrollbar-width: none;
    background-color: #fff;
    padding: 0;
    border-radius: 0;
  }
}

.header__inner {
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.header__upper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 63%;
          flex: 0 0 63%;
}

.header__logo {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__logo {
    position: relative;
    z-index: -1;
    display: block;
    width: 5.375rem;
    margin-inline: auto;
    padding-top: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .header__nav {
    padding-top: 4.3125rem;
    padding-bottom: 2rem;
  }
}

.header__lower {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__lower {
    display: block;
    background-color: #f76e4a;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-top: 4.4375rem;
    padding-bottom: 2rem;
  }
}

.header__lower-img {
  width: 37%;
  margin-inline: auto;
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1100px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

#sb_instagram.sbi_col_4 #sbi_images,
#sb_instagram.sbi_col_4.sbi_disable_mobile #sbi_images {
  gap: 0 !important;
}
#sb_instagram #sbi_images .sbi_item {
  width: 25%;
  aspect-ratio: 1/1;
  width: 100%;
}
#sb_instagram .sb_instagram_header .sbi_header_text,
.sb_instagram_header .sbi_header_text {
  display: none;
}

#sb_instagram.sbi_tab_col_2 #sbi_images {
  grid-template-columns: repeat(4, 1fr);
}

.layout-top-mapButton {
  margin-top: 38px;
  margin-top: 2.375rem;
}
@media screen and (min-width: 768px) {
  .layout-top-mapButton {
    margin-top: 4.6875rem;
  }
}

.layout-archive-map {
  margin-top: 120px;
  margin-top: 7.5rem;
}

.layout-single-archive {
  padding-top: 72px;
  padding-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .layout-single-archive {
    padding-top: 7.5rem;
  }
}

.layout-related-archive__list {
  margin-top: 64px;
  margin-top: 4rem;
}

.layout-single-relatedArchive__list {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .layout-single-relatedArchive__list {
    margin-top: 3.5rem;
  }
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f76e4a;
  opacity: 1;
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}

.loading.is-hide {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0;
  pointer-events: none;
}

.loading__img {
  width: 80px;
  width: 5rem;
  -webkit-animation: slideIn 2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
          animation: slideIn 2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
@media screen and (min-width: 768px) {
  .loading__img {
    width: 10rem;
  }
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.loading__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.mv {
  position: relative;
}

.mv__inner {
  position: relative;
}

.mv__img {
  margin: 0 calc(50% - 50vw);
}

.mv__title {
  position: absolute;
  top: 48%;
  left: 10%;
  letter-spacing: 0.1em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: clamp(22px, 14.605px + 1.9718309859vw, 43px);
  font-size: clamp(1.375rem, 0.9128521127rem + 1.9718309859vw, 2.6875rem);
  color: #fff;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .mv__title {
    top: 53%;
    left: 11%;
    letter-spacing: 0.07em;
  }
}

.mv__title::before {
  content: "";
  position: absolute;
  left: -17%;
  top: -24px;
  top: -1.5rem;
  background-image: url(../images/common/text_shop.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 53px;
  height: 3.3125rem;
  width: 105px;
  width: 6.5625rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .mv__title::before {
    height: 7.3125rem;
    width: 13.5625rem;
    top: -5.4375rem;
  }
}

.mv__title span {
  font-size: clamp(18px, 17.029px + 0.2588996764vw, 22px);
  font-size: clamp(1.125rem, 1.0643203883rem + 0.2588996764vw, 1.375rem);
  display: block;
  font-weight: 500;
}

.sec-title {
  font-size: 19px;
  font-size: 1.1875rem;
  position: relative;
  z-index: 1;
  letter-spacing: 0.02em;
  text-align: center;
  color: #4d3e2e;
}
@media screen and (min-width: 768px) {
  .sec-title {
    font-size: 1.8125rem;
    letter-spacing: 0.05em;
    text-align: left;
    text-align: initial;
  }
}

.sec-title::after {
  content: "";
  position: absolute;
  left: 6%;
  top: 19%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/common/text_map.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 53px;
  height: 3.3125rem;
  width: 88px;
  width: 5.5rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .sec-title::after {
    height: 7.5625rem;
    width: 13.5rem;
    left: -8%;
  }
}

.sec-title span {
  font-size: clamp(20px, 18.058px + 0.5177993528vw, 28px);
  font-size: clamp(1.25rem, 1.1286407767rem + 0.5177993528vw, 1.75rem);
  font-weight: 500;
  font-size: 10px;
  font-size: 0.625rem;
  display: block;
  color: #4d3e2e;
}
@media screen and (min-width: 768px) {
  .sec-title span {
    font-size: 1.25rem;
  }
}

.sub-page {
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
}

.fv__swiper .swiper-pagination {
  position: absolute;
  bottom: 14px;
  bottom: 0.875rem;
}
@media screen and (min-width: 768px) {
  .fv__swiper .swiper-pagination {
    bottom: 3.4%;
  }
}

.fv__swiper .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
  z-index: 0;
  border: 1px solid #646c6f;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
}
@media screen and (min-width: 768px) {
  .fv__swiper .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
  }
}

.fv__swiper .swiper-pagination-bullet-active {
  background-color: #f76e4a;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  z-index: 100;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 3px;
  margin: 0 0.1875rem;
}
@media screen and (min-width: 768px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 0.5rem;
  }
}

.related-archive__title {
  font-size: clamp(20px, 17.815px + 0.5825242718vw, 29px);
  font-size: clamp(1.25rem, 1.1134708738rem + 0.5825242718vw, 1.8125rem);
  text-align: center;
}

.related-archive__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 32px;
  row-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .related-archive__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2%;
    row-gap: 2rem;
  }
}

.related-archive__item {
  position: relative;
  margin-top: 34px;
  margin-top: 2.125rem;
}
@media screen and (min-width: 768px) {
  .related-archive__item {
    width: 32%;
  }
}

.related-archive__link:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.related-archive__thumb {
  border-radius: 40px 0 0 0;
  overflow: hidden;
  position: relative;
}

.related-archive__thumb img {
  border-radius: 40px 0 0 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  aspect-ratio: 376/248;
  -o-object-fit: cover;
     object-fit: cover;
}

.no-image {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.related-archive__name {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 7px;
  margin-top: 0.4375rem;
}

.single-map__button.map__button {
  margin-top: 86px;
  margin-top: 5.375rem;
}
@media screen and (min-width: 768px) {
  .single-map__button.map__button {
    margin-top: 9.375rem;
  }
}

.shop__tag {
  background-color: rgba(255, 255, 255, .7);
  border-radius: 20px;
  padding: 3px 5px;
  padding: 0.1875rem 0.3125rem;
}

.search-result__count {
  font-size: clamp(22px, 19.887px + 0.5633802817vw, 28px);
  font-size: clamp(1.375rem, 1.2429577465rem + 0.5633802817vw, 1.75rem);
}

.search-result__count span {
  color: #f76e4a;
  font-weight: 700;
  font-size: clamp(24px, 21.887px + 0.5633802817vw, 30px);
  font-size: clamp(1.5rem, 1.3679577465rem + 0.5633802817vw, 1.875rem);
  padding-right: 0.5em;
}

.single-shop {
  background-color: #f5f5f5;
}

.white-bg {
  background-color: #fff;
}

.white-bg__inner {
  padding-bottom: 92px;
  padding-bottom: 5.75rem;
}
@media screen and (min-width: 768px) {
  .white-bg__inner {
    padding-bottom: 9.75rem;
  }
}

.single-blog__content {
  margin-top: 72px;
  margin-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .single-blog__content {
    margin-top: 3.4375rem;
  }
}

.single-blog__inner {
  padding-bottom: 104px;
  padding-bottom: 6.5rem;
}
@media screen and (min-width: 768px) {
  .single-blog__inner {
    padding-bottom: 7.375rem;
  }
}

.single-blog__title {
  font-size: clamp(24px, 20.844px + 0.8414239482vw, 37px);
  font-size: clamp(1.5rem, 1.3027912621rem + 0.8414239482vw, 2.3125rem);
  text-align: center;
}

/*======================================
          swiper
=======================================*/
.p-service__swiper {
  max-width: 964px;
  margin-inline: auto;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-service__swiper {
    margin-top: 1.875rem;
  }
}

.single-blog-swiper__main .swiper-slide img {
  border-radius: 50px 0 0 0;
}

.single-blog-swiper__main .swiper-slide img,
.single-blog-swiper__thumbnail .swiper-slide img {
  width: 100%;
  aspect-ratio: 350/180;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-service-swiper__main img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 964/639;
}

.single-blog-swiper__thumbnail {
  margin-top: prem(20);
  margin-top: prem(20);
}
@media screen and (min-width: 768px) {
  .single-blog-swiper__thumbnail {
    margin-top: prem(40);
  }
}

.p-service-swiper__thumbnail .swiper-slide {
  cursor: pointer;
}

.p-service-swiper__thumbnail img {
  aspect-ratio: 226/150;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-blog-swiper__thumbnail .swiper-slide {
  cursor: pointer;
}

.single-blog-swiper__thumbnail .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, .6);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.single-blog-swiper__thumbnail .swiper-slide.swiper-slide-thumb-active::before {
  background-color: transparent;
  background-color: initial;
}

.single-blog__content p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 33px;
  margin-bottom: 2.0625rem;
}
@media screen and (min-width: 768px) {
  .single-blog__content p {
    margin-bottom: 3.125rem;
  }
}

.single-blog__content h2 {
  line-height: 1.7;
  background-color: #f5f5f5;
  position: relative;
  font-size: clamp(20px, 17.183px + 0.7511737089vw, 28px);
  font-size: clamp(1.25rem, 1.073943662rem + 0.7511737089vw, 1.75rem);
  padding: 5px 14px;
  padding: 0.3125rem 0.875rem;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .single-blog__content h2 {
    padding: 0.3125rem 1.5rem;
    margin-bottom: 1.8125rem;
    letter-spacing: 0.02em;
  }
}

.single-blog__content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
}
@media screen and (min-width: 768px) {
  .single-blog__content h2::before {
    width: 1px;
  }
}

.single-blog__content h3 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
  padding-left: 1em;
  letter-spacing: 0.07em;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.single-blog__content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 3px;
  width: 10px;
  width: 0.625rem;
}

.single-blog__content h4 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.single-blog__content img {
  max-height: 678px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px 0 0 0;
}
.p-service-swiper__thumbnail img {
  border-radius: 0;
}

.single-blog__content a {
  text-decoration: underline;
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.single-blog__content p a {
  margin-bottom: 0;
}

.single-blog__content ul {
  margin-bottom: 27px;
  margin-bottom: 1.6875rem;
}

.single-blog__content ul li {
  font-size: 16px;
  font-size: 1rem;
}

.single-blog__content ol {
  list-style-type: decimal;
  margin-bottom: 27px;
  margin-bottom: 1.6875rem;
  padding-left: 20px;
  padding-left: 1.25rem;
}

.single-blog__content ol li {
  font-size: 16px;
  font-size: 1rem;
}

.single-blog__content ol li:not(:first-child) {
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.single-info__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
  gap: 2rem;
  row-gap: 0;
}
@media screen and (min-width: 768px) {
  .single-info__container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 14%;
  }
}

.single-info__menus {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .single-info__menus {
    font-size: 1.25rem;
    margin-top: 0;
  }
}

.single-info__list {
  margin: 0;
  padding: 0;
}

.single-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
  margin-top: 0.9375rem;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .single-info__item {
    font-size: 1.25rem;
  }
}

.single-info__term {
  width: 5em;
  font-weight: bold;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 109px;
  width: 6.8125rem;
}
@media screen and (min-width: 768px) {
  .single-info__list.right .single-info__term {
    width: 8.9375rem;
  }
}

.single-info__menu span {
  font-weight: bold;
  margin-right: 0.5em;
}

.single-info__sns {
  margin-top: 16px;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 4rem);
  gap: 10px;
  gap: 0.625rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
@media screen and (min-width: 768px) {
  .single-info__sns {
    margin-top: 2.0625rem;
  }
}

.single-info__sns-link img {
  width: 64px;
  width: 4rem;
  height: 64px;
  height: 4rem;
  display: block;
}

.single-menu {
  margin-top: 52px;
  margin-top: 3.25rem;
}

.single-content {
  background-color: #fff;
  border-radius: 17px;
}

.single-content__inner {
  position: relative;
  padding: 32px;
  padding: 2rem;
}
@media screen and (min-width: 768px) {
  .single-content__inner {
    padding: 3.875rem 7rem 3.4375rem 7rem;
  }
}

.single-message__inner.single-content__inner {
  padding: 32px;
  padding: 2rem;
}
@media screen and (min-width: 768px) {
  .single-message__inner.single-content__inner {
    padding: 3.375rem 7rem 3.4375rem 7rem;
  }
}

.single-content__inner::after {
  content: "";
  position: absolute;
  left: -10px;
  left: -0.625rem;
  top: 10px;
  top: 0.625rem;
  background-image: url(../images/common/text_menu.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 56px;
  height: 3.5rem;
  width: 100px;
  width: 6.25rem;
}
@media screen and (min-width: 768px) {
  .single-content__inner::after {
    height: 6.25rem;
    width: 10.25rem;
    left: -1.0625rem;
    top: 1.25rem;
  }
}

.single-message__inner.single-content__inner::after {
  background-image: url(../images/common/text_message.png);
}

.single-menu__title {
  text-align: center;
}

.single-content__title {
  font-size: clamp(20px, 17.815px + 0.5825242718vw, 29px);
  font-size: clamp(1.25rem, 1.1134708738rem + 0.5825242718vw, 1.8125rem);
  font-weight: 700;
}

.single-menu__text.single-content__text {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.single-content__text {
  font-size: clamp(16px, 15.029px + 0.2588996764vw, 20px);
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  line-height: 1.8;
  letter-spacing: 0.14em;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .single-content__text {
    line-height: 2.2;
    margin-top: 0;
  }
}

.single-message {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .single-message {
    margin-top: 3.25rem;
  }
}

.single-message__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .single-message__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 5%;
  }
}

.single-message__img {
  width: 80%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .single-message__img {
    width: 20%;
  }
}

@media screen and (min-width: 768px) {
  .single-message__text {
    width: 70%;
  }
}

.access__map-wrap {
  margin-top: 30px;
  margin-top: 1.875rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .access__map-wrap {
    margin-top: 3.875rem;
  }
}

.access__map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 70.5%;
}
@media screen and (min-width: 768px) {
  .access__map {
    padding-top: 35.5%;
  }
}

.access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .main {
    margin-right: 9.375rem;
  }
}

.fv {
  position: relative;
}

.fv__logo {
  position: absolute;
  top: 3%;
  left: 4%;
  width: 63px;
  width: 3.9375rem;
}
@media screen and (min-width: 768px) {
  .fv__logo {
    z-index: 11;
    width: 7.9375rem;
    left: 10%;
    bottom: 7%;
    top: auto;
  }
}

.fv__swiper .swiper-wrapper {
  position: relative;
}

/*======================================
              ハッシュタグ
=======================================*/
.hashtags {
  margin-top: 27px;
  margin-top: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .hashtags {
    margin-top: 2.75rem;
  }
}

.hashtags__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1%;
  row-gap: 5px;
  row-gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .hashtags__inner {
    row-gap: 0.875rem;
  }
}

.hashtag {
  color: #4d3e2e;
  font-weight: 700;
  font-size: 29px;
  font-size: 1.8125rem;
  font-size: clamp(13px, 9.126px + 1.0328638498vw, 24px);
  font-size: clamp(0.8125rem, 0.5704225352rem + 1.0328638498vw, 1.5rem);
}

.hashtag.tag--large {
  font-size: 34px;
  font-size: 2.125rem;
  font-size: clamp(17px, 10.661px + 1.6901408451vw, 35px);
  font-size: clamp(1.0625rem, 0.6663732394rem + 1.6901408451vw, 2.1875rem);
}

.hashtag.tag--small {
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(7px, 4.183px + 0.7511737089vw, 15px);
  font-size: clamp(0.4375rem, 0.261443662rem + 0.7511737089vw, 0.9375rem);
}

.shop__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  gap: 0.75rem;
  position: absolute;
  pointer-events: none;
  bottom: 24px;
  bottom: 1.5rem;
  left: 10px;
  left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .shop__tags {
    bottom: 0.6875rem;
  }
}

.shop__tag {
  background-color: rgba(255, 255, 255, .7);
  border-radius: 20px;
}

/*======================================
              map
=======================================*/
.map {
  margin-top: 71px;
  margin-top: 4.4375rem;
}
@media screen and (min-width: 768px) {
  .map {
    margin-top: 7.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .map__title {
    padding-left: 2.25rem;
  }
}

@media screen and (min-width: 768px) {
  .map__title::after {
    width: 8.5rem;
    left: -3%;
  }
}

.map__title span {
  color: #4d3e2e;
}
@media screen and (min-width: 768px) {
  .map__title span {
    padding-left: 0.625rem;
    display: inline-block;
  }
}

.map-tabs {
  margin: 1.75rem calc(50% - 50vw) 0;
}
@media screen and (min-width: 768px) {
  .map-tabs {
    margin-right: 0;
    margin-left: 0;
    margin-top: 2.5rem;
  }
}

.map-tabs__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
}

.map-tabs__item {
  text-align: center;
  padding: 12px;
  padding: 0.75rem;
  background: #aaa;
  color: white;
  cursor: pointer;
  font-weight: bold;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: 50%;
  font-size: clamp(16px, 13.887px + 0.5633802817vw, 22px);
  font-size: clamp(1rem, 0.8679577465rem + 0.5633802817vw, 1.375rem);
}
@media screen and (min-width: 768px) {
  .map-tabs__item {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    border-bottom: none;
    padding: 1.25rem 0.9375rem;
  }
}

.map-tabs__item:last-child {
  border-right: none;
}

.map-tabs__item.is-active {
  background: #f76e4a;
}

.map-tabs__content .map-pane {
  display: none;
  width: 100%;
  height: 0;
  position: relative;
  padding-top: 85%;
}
@media screen and (min-width: 768px) {
  .map-tabs__content .map-pane {
    padding-top: 62%;
  }
}

.map-tabs__content .map-pane.is-active {
  display: block;
}

.map-tabs__content .map-pane.is-active iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.map__button {
  position: relative;
  cursor: pointer;
}

.map__button-text {
  position: relative;
  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;
  gap: 3px;
  gap: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .map__button-text {
    gap: 0.5625rem;
  }
}

.map__button-text span {
  width: 19px;
  width: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .map__button-text span {
    width: 1.875rem;
  }
}

.map__button-text::after {
  content: "";
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  right: 37px;
  right: 2.3125rem;
  top: 26%;
  -webkit-transform: rotate(135deg) translateY(-50%);
          transform: rotate(135deg) translateY(-50%);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .map__button-text::after {
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    top: 33%;
    right: 5.4375rem;
    width: 0.875rem;
    height: 0.875rem;
  }
}

.map__button-text.is-open::after {
  -webkit-transform: rotate(315deg) translateY(-50%);
          transform: rotate(315deg) translateY(-50%);
  top: 50%;
}

.map__button p {
  text-align: center;
  padding: 8px 8px;
  padding: 0.5rem 0.5rem;
  background-color: #f76e4a;
  color: #fff;
  font-size: clamp(16px, 12.601px + 0.9061488673vw, 30px);
  font-size: clamp(1rem, 0.7876213592rem + 0.9061488673vw, 1.875rem);
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .map__button p {
    padding: 0.9375rem 0.625rem;
    border-radius: 10px;
  }
}

.map__button-content {
  display: none;
}

.search-form {
  background: #fff;
  padding: 1.5em;
  border: 1px solid #ccc;
  border-top: none;
  margin: 0 auto;
}

.search-form__group {
  margin-bottom: 1.5em;
}

.search-form__title {
  font-weight: bold;
  margin-bottom: 0.5em;
  font-size: 16px;
  font-size: 1rem;
}

.search-form__checkbox-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5em 1em;
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-form__checkbox-list label {
  cursor: pointer;
  font-size: 15.2px;
  font-size: 0.95rem;
}

.search-form__input {
  width: 100%;
  padding: 0.5em;
  font-size: 16px;
  font-size: 1rem;
  border: 2px solid #ccc;
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .search-form__input {
    width: 400px;
  }
}

.search-form__submit {
  width: 100%;
  max-width: 300px;
  padding: 0.8em;
  background: #ee6c4d;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-size: 1rem;
  cursor: pointer;
}

/* チェックボックスを非表示にし、カスタムスタイルを当てる */
.search-form__checkbox-list input[type=checkbox] {
  display: none;
}

/* ラベルの中に擬似要素でチェックボックスを作成 */
.search-form__checkbox-list label {
  position: relative;
  padding-left: 2em;
  line-height: 1.5;
  display: inline-block;
}

/* 未チェックの見た目 */
.search-form__checkbox-list label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 1.2em;
  height: 1.2em;
  border: 2px solid #ccc;
  border-radius: 4px;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* チェックされたらチェックマークを表示 */
.search-form__checkbox-list input[type=checkbox]:checked + label::after {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 1.1em;
  color: #ee6c4d;
}

/*======================================
              news
=======================================*/
.news {
  margin-top: 79px;
  margin-top: 4.9375rem;
}
@media screen and (min-width: 768px) {
  .news {
    margin-top: 12.9375rem;
  }
}

.news__title {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  text-align: center;
}

.news__title.sec-title::after {
  background-image: url(../images/common/text_Information.png);
  left: auto;
  right: -20px;
  right: -1.25rem;
  top: 48%;
  width: 117px;
  width: 7.3125rem;
}
@media screen and (min-width: 768px) {
  .news__title.sec-title::after {
    width: 15.5rem;
    top: 44%;
  }
}

.news-list {
  margin-top: 21px;
  margin-top: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .news-list {
    margin-top: 2.6875rem;
  }
}

.news-list__item:not(:last-child) {
  border-bottom: 1px solid;
}

.news-list__item a {
  padding: 23px 0;
  padding: 1.4375rem 0;
  display: block;
}
@media screen and (min-width: 768px) {
  .news-list__item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.news-list__item-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 5px;
  padding-left: 0.3125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .news-list__item-meta {
    padding-left: 0;
  }
}

.news-list__item-date {
  font-size: 18px;
  font-size: 1.125rem;
  font-size: clamp(13px, 11.786px + 0.3236245955vw, 18px);
  font-size: clamp(0.8125rem, 0.7366504854rem + 0.3236245955vw, 1.125rem);
  line-height: 1;
  font-family: "";
  font-weight: 700;
  min-width: 95px;
  min-width: 5.9375rem;
}
@media screen and (min-width: 768px) {
  .news-list__item-date {
    min-width: 6.75rem;
  }
}

.news-list__item.news-list__item--blue .news-list__item-category {
  border: 1px solid #aad2d3;
  color: #aad2d3;
}
@media screen and (min-width: 768px) {
  .news-list__item.news-list__item--blue .news-list__item-category {
    border: 2px solid #aad2d3;
  }
}

.news-list__item.news-list__item--pink .news-list__item-category {
  border: 1px solid #e7a1bd;
  color: #e7a1bd;
}
@media screen and (min-width: 768px) {
  .news-list__item.news-list__item--pink .news-list__item-category {
    border: 2px solid #e7a1bd;
  }
}

.news-list__item.news-list__item--orange .news-list__item-category {
  border: 1px solid #f1bc74;
  color: #f1bc74;
}
@media screen and (min-width: 768px) {
  .news-list__item.news-list__item--orange .news-list__item-category {
    border: 2px solid #f1bc74;
  }
}

.news-list__item-category {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 17px;
  font-size: 1.0625rem;
  font-size: clamp(13px, 11.591px + 0.3755868545vw, 17px);
  font-size: clamp(0.8125rem, 0.724471831rem + 0.3755868545vw, 1.0625rem);
  letter-spacing: 0;
  padding: 1px 6px;
  padding: 0.0625rem 0.375rem;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  border-radius: 15px;
  border: 1px solid;
}
@media screen and (min-width: 768px) {
  .news-list__item-category {
    min-width: 6.6875rem;
    margin-left: 1.5625rem;
    padding: 0.3125rem 1.0625rem;
    letter-spacing: 0.07em;
  }
}

.news-list__item-title {
  margin-top: 7px;
  margin-top: 0.4375rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .news-list__item-title {
    font-size: 1rem;
    margin-top: 0;
    margin-left: 1rem;
  }
}

.news__button {
  text-align: center;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .news__button {
    margin-top: 3.375rem;
  }
}

.news__button-link {
  display: inline-block;
  font-size: clamp(13px, 7.718px + 1.4084507042vw, 28px);
  font-size: clamp(0.8125rem, 0.4823943662rem + 1.4084507042vw, 1.75rem);
  letter-spacing: 0.06em;
  padding: 7px 50px;
  padding: 0.4375rem 3.125rem;
}
@media screen and (min-width: 768px) {
  .news__button-link {
    width: 26.875rem;
    padding: 0.9375rem 1.25rem;
    letter-spacing: 0.02em;
  }
}

/*======================================
            about
=======================================*/
.about {
  margin-top: 140px;
  margin-top: 8.75rem;
}
@media screen and (min-width: 768px) {
  .about {
    margin-top: 12.75rem;
  }
}

.about__title {
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
}

.about__title.sec-title::after {
  background-image: url(../images/common/text_about.png);
  left: -42%;
  top: 49%;
}
@media screen and (min-width: 768px) {
  .about__title.sec-title::after {
    top: 39%;
    left: -32%;
    width: 11.5rem;
  }
}

.about__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .about__media {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3%;
    margin-top: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .about__text-block {
    width: 52%;
  }
}

.about__text {
  color: #4d3e2e;
  font-size: 18px;
  font-size: 1.125rem;
  font-size: clamp(10px, 6.478px + 0.9389671362vw, 20px);
  font-size: clamp(0.625rem, 0.4049295775rem + 0.9389671362vw, 1.25rem);
  line-height: 1.8;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .about__text {
    letter-spacing: -0.08em;
  }
}

.about__media-footer {
  margin-top: 19px;
  margin-top: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .about__media-footer {
    margin-top: 2.75rem;
  }
}

.about__media-footerLink {
  font-size: clamp(13px, 8.422px + 1.220657277vw, 26px);
  font-size: clamp(0.8125rem, 0.5264084507rem + 1.220657277vw, 1.625rem);
  padding: 6px 68px;
  padding: 0.375rem 4.25rem;
}
@media screen and (min-width: 768px) {
  .about__media-footerLink {
    padding: 0.9375rem 8.0625rem;
  }
}

.about__media-img {
  position: relative;
  width: 73%;
  margin-left: auto;
  margin-top: 41px;
  margin-top: 2.5625rem;
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .about__media-img {
    width: 45%;
    margin-left: 0;
    margin-top: 0;
  }
}

.about__media-img img {
  aspect-ratio: 472/319;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__media-img::after {
  content: "";
  position: absolute;
  left: -19px;
  left: -1.1875rem;
  bottom: 15px;
  bottom: 0.9375rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../images/common/img_meal.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 65px;
  height: 4.0625rem;
  width: 108px;
  width: 6.75rem;
}
@media screen and (min-width: 768px) {
  .about__media-img::after {
    left: 66%;
    top: -7.1875rem;
    bottom: auto;
    height: 9.0625rem;
    width: 13.75rem;
  }
}

/*======================================
              パンフレット
=======================================*/
.pamphlet {
  margin-top: 75px;
  margin-top: 4.6875rem;
  position: relative;
}
.pamphlet__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 83px;
  padding-top: 5.1875rem;
  padding-bottom: 74px;
  padding-bottom: 4.625rem;
}
@media screen and (min-width: 768px) {
  .pamphlet__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 9%;
    padding-top: 1.875rem;
  }
}
@media screen and (min-width: 1440px) {
  .pamphlet__inner {
    padding-top: 6.5625rem;
  }
}

.pamphlet__bg {
  margin: 0 calc(50% - 50vw);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-width: 1500px;
  margin-inline: auto;
}

.pamphlet__img {
  width: 67%;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .pamphlet__img {
    width: 41%;
    margin-inline: inherit;
  }
}

.pamphlet__img::after {
  content: "";
  position: absolute;
  right: -50px;
  right: -3.125rem;
  top: -13px;
  top: -0.8125rem;
  background-image: url(../images/common/text_book.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 78px;
  height: 4.875rem;
  width: 135px;
  width: 8.4375rem;
}
@media screen and (min-width: 768px) {
  .pamphlet__img::after {
    content: none;
  }
}

@media screen and (min-width: 768px) {
  .pamphlet__content {
    width: 42%;
  }
}
@media screen and (min-width: 1024px) {
  .pamphlet__content {
    width: 41%;
  }
}
@media screen and (min-width: 1440px) {
  .pamphlet__content {
    width: 39%;
  }
}

.pamphlet__content-title {
  font-size: clamp(24px, 20.83px + 0.8450704225vw, 33px);
  font-size: clamp(1.5rem, 1.3019366197rem + 0.8450704225vw, 2.0625rem);
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .pamphlet__content-title {
    text-align: left;
    text-align: initial;
    line-height: 1.6;
  }
}

.pamphlet__content-title::after {
  background-image: url(../images/common/text_book.png);
  content: none;
}
@media screen and (min-width: 768px) {
  .pamphlet__content-title::after {
    width: 8.75rem;
    left: -31%;
    content: "";
    top: 37%;
  }
}
@media screen and (min-width: 1440px) {
  .pamphlet__content-title::after {
    width: 15rem;
    left: -42%;
    top: 10%;
  }
}

.pamphlet__content-text {
  color: #4d3e2e;
  margin-top: 10px;
  margin-top: 0.625rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-size: clamp(11px, 8.439px + 0.6829268293vw, 18px);
  font-size: clamp(0.6875rem, 0.5274390244rem + 0.6829268293vw, 1.125rem);
  letter-spacing: 0.05em;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .pamphlet__content-text {
    margin-top: 0.75rem;
    text-align: left;
    text-align: initial;
  }
}

.pamphlet__content-footer {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .pamphlet__content-footer {
    margin-top: 1rem;
  }
}
@media screen and (min-width: 1440px) {
  .pamphlet__content-footer {
    margin-top: 2.4375rem;
  }
}

.pamphlet__content-footerLink {
  display: block;
  font-size: clamp(12px, 7.07px + 1.3145539906vw, 26px);
  font-size: clamp(0.75rem, 0.4419014085rem + 1.3145539906vw, 1.625rem);
  width: 55%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .pamphlet__content-footerLink {
    width: 83%;
    margin-inline: initial;
  }
}

.pamphlet__content-footerLink:nth-of-type(2) {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .pamphlet__content-footerLink:nth-of-type(2) {
    margin-top: 1.125rem;
  }
}

.pamphlet__content-footerLink:nth-of-type(2)::after {
  background-image: url(../images/common/logo_pdf.png);
  width: 15px;
  width: 0.9375rem;
  height: 17px;
  height: 1.0625rem;
  top: 50%;
  right: 17px;
  right: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .pamphlet__content-footerLink:nth-of-type(2)::after {
    width: 1.75rem;
    height: 1.9375rem;
    right: 1.875rem;
  }
}

/*======================================
              Instagram
=======================================*/
.instagram {
  margin-top: 53px;
  margin-top: 3.3125rem;
}
@media screen and (min-width: 768px) {
  .instagram {
    margin-top: 13.5625rem;
  }
}

.instagram__title {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  text-align: center;
}

.instagram__title::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/logo_insta02.png);
  background-repeat: no-repeat;
  background-size: contain;
  left: 5px;
  left: 0.3125rem;
  top: 21%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 25px;
  width: 1.5625rem;
  height: 25px;
  height: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .instagram__title::before {
    width: 3.125rem;
    height: 3.125rem;
    top: 20%;
    left: 3.3125rem;
    top: 25%;
  }
}

.instagram__title::after {
  background-image: url(../images/common/text_instarram.png);
  left: auto;
  right: -48px;
  right: -3rem;
  top: 20%;
  width: 120px;
  width: 7.5rem;
}
@media screen and (min-width: 768px) {
  .instagram__title::after {
    width: 15.5rem;
    top: 38%;
    right: -9.25rem;
  }
}

.instagram__title span {
  margin-top: 2px;
  margin-top: 0.125rem;
}
@media screen and (min-width: 768px) {
  .instagram__title span {
    margin-top: 1.0625rem;
  }
}

.instagram__wrap {
  margin-top: -3px;
  margin-top: -0.1875rem;
}
@media screen and (min-width: 768px) {
  .instagram__wrap {
    margin-top: 1.5625rem;
  }
}

.instagram__slider-upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2%;
  margin-top: 93px;
  margin-top: 5.8125rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .instagram__slider-upper {
    margin-top: 2.5rem;
  }
}

.instagram__slider-lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2%;
  overflow: hidden;
}
.instagram__img-wrap {
  -webkit-animation: scroll-left 30s infinite linear 1.5s both;
          animation: scroll-left 30s infinite linear 1.5s both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.instagram__slider-lower .instagram__img-wrap {
  -webkit-animation: scroll-right 30s infinite linear 1.5s both;
          animation: scroll-right 30s infinite linear 1.5s both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.instagram__img {
  width: 20vw;
}
@media screen and (min-width: 768px) {
  .instagram__img {
    width: 20vw;
  }
}

.instagram__img img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
/*# sourceMappingURL=styles.css.map */
