@charset "UTF-8";
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 100%;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.1111111111vw;
  }
}
@media (min-width: 1440px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "Shippori Mincho", serif;
  color: #000000;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    cursor: pointer;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

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

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 90.33%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    width: 71.66%;
    max-width: 1440px;
  }
}

.l-global-layout {
  display: grid;
  grid-template: "header" auto "contents" 1fr "footer" auto/100%;
  min-height: 100vh;
}
.l-header {
  grid-area: header;
}

.l-global-layout__contents {
  grid-area: contents;
  background: #F0EDE6;
}

.l-footer {
  grid-area: footer;
}

.c-btn {
  display: inline-block;
}
.c-btn a {
  background-color: #8B1A2B;
  color: #F0EDE6;
  padding: 0.8125rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  text-decoration: none;
  -webkit-transition: -webkit-filter 0.25s ease;
  transition: -webkit-filter 0.25s ease;
  transition: filter 0.25s ease;
  transition: filter 0.25s ease, -webkit-filter 0.25s ease;
}
.c-btn a::before {
  content: "";
  background-image: url(../images/c-btn-item.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  aspect-ratio: 24/24;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-btn a::after {
  content: "";
  background-image: url(../images/c-btn-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: block;
  width: 1.75rem;
  height: 0.375rem;
  aspect-ratio: 14/3;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
@media (hover: hover) {
  .c-btn a:hover {
    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="0.82" /><feFuncG type="linear" slope="0.82" /><feFuncB type="linear" slope="0.82" /></feComponentTransfer></filter></svg>#filter');
    -webkit-filter: brightness(0.82);
            filter: brightness(0.82);
  }
  .c-btn a:hover::after {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
}

.c-low-fv {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 13.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-low-fv {
    height: 24rem;
  }
}
.c-low-fv::before {
  background-color: rgba(0, 0, 0, .5);
  /* 自由に位置指定 */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: " ";
}

.c-low-fv__title {
  color: #F0EDE6;
  font-family: "Shippori Mincho", serif;
  white-space: nowrap;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  font-size: 1.25rem;
  line-height: 1.4;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .c-low-fv__title {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: unset;
    right: 14.16%;
    font-size: 2rem;
  }
}

.c-section {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .c-section {
    margin-top: 7.5rem;
  }
}

.c-title__border {
  padding-bottom: 1.5625rem;
  border-bottom: solid 1px #8B1A2B;
  position: relative;
  font-size: 1.25rem;
  font-weight: 400;
}
.c-title__border::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #8B1A2B;
  position: absolute;
  bottom: -5px;
}
.c-title__border::after {
  content: "";
  background-image: url(../images/title-border-item.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: block;
  width: 1.25rem;
  height: 1.5625rem;
  aspect-ratio: 20/25;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.c-title__border--white {
  padding-bottom: 1.5625rem;
  border-bottom: solid 1px #F0EDE6;
  position: relative;
  font-size: 1.25rem;
  font-weight: 400;
}
.c-title__border--white::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #F0EDE6;
  position: absolute;
  bottom: -5px;
}
.c-title__border--white::after {
  content: "";
  background-image: url(../images/title-border-item--white.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: block;
  width: 1rem;
  height: 1.6875rem;
  aspect-ratio: 16/27;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.c-title__color {
  color: #8B1A2B;
}
.c-title__color::before {
  content: "";
  background-image: url(../images/title-border-item.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: block;
  width: 1.25rem;
  height: 1.5625rem;
  aspect-ratio: 20/25;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-archive-news {
  padding-top: 3.75rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-archive-news {
    padding-top: 5rem;
    padding-bottom: 6.25rem;
  }
}

.p-archive-news__group + .p-archive-news__group {
  margin-top: 3.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(0, 0, 0, .1);
}
@media screen and (min-width: 768px) {
  .p-archive-news__group + .p-archive-news__group {
    margin-top: 4.5rem;
    padding-top: 4.5rem;
  }
}

.p-archive-news__group-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #8B1A2B;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, .15);
  margin-bottom: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-archive-news__group-title {
    font-size: 1.375rem;
    padding-bottom: 1.5rem;
    margin-bottom: 2.25rem;
  }
}

.p-archive-news__group-icon {
  width: 1.375rem;
  height: 1.375rem;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-archive-news__group-icon {
    width: 1.625rem;
    height: 1.625rem;
  }
}

.p-archive-news__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-archive-news__layout {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 3rem;
  }
}

.p-archive-news__side-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .p-archive-news__side-list {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 18.75rem;
            flex: 0 0 18.75rem;
    width: 18.75rem;
  }
}

.p-archive-news__side-item {
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}
.p-archive-news__side-item:first-child {
  border-top: 2px solid #8B1A2B;
}
.p-archive-news__side-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.75rem;
  padding: 0.875rem 0.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #333;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.p-archive-news__side-item a:hover {
  color: #8B1A2B;
}

.p-archive-news__side-date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 0.75rem;
  color: #888;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.02em;
}

.p-archive-news__side-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.125rem;
}

.p-archive-news__side-name {
  color: #000000;
  font-size: 0.8125rem;
}

.p-archive-news__area {
  font-size: 0.6875rem;
  color: #785E31;
  font-weight: 600;
}

.p-archive-news__side-range {
  font-size: 0.6875rem;
  color: #999;
}

.p-archive-news__card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-self: flex-start;
}
@media screen and (min-width: 768px) {
  .p-archive-news__card-list {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    gap: 1.5rem;
  }
}

.p-archive-news__item {
  background-color: #fff;
  border: 1px solid rgba(139, 26, 43, .15);
  -webkit-transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
}
.p-archive-news__item:hover {
  -webkit-transform: translateY(-0.25rem);
          transform: translateY(-0.25rem);
  -webkit-box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, .1);
          box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, .1);
}

.p-archive-news__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.p-archive-news__thumb {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #F0EDE6;
}
.p-archive-news__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -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;
}
.p-archive-news__item:hover .p-archive-news__thumb img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.p-archive-news__no-img {
  width: 100%;
  height: 100%;
  background-color: #F0EDE6;
  background-image: url(../images/white-bgimg.jpg);
  background-size: cover;
  background-position: center;
}

.p-archive-news__info {
  padding: 0.75rem 0.75rem 1rem;
}

.p-archive-news__area-tag {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  color: #fff;
  background-color: #785E31;
  padding: 0.125rem 0.375rem;
  margin-bottom: 0.375rem;
  letter-spacing: 0.05em;
}

.p-archive-news__title {
  font-family: "Shippori Mincho", serif;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 0.375rem;
}

.p-archive-news__info .p-archive-news__date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.6875rem;
  color: #888;
  margin: 0;
}

.p-archive-news__empty {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  color: #666;
  text-align: center;
  padding: 2.5rem 0;
}

.p-footer {
  background: #8B1A2B;
  color: #F0EDE6;
  padding: 1rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding: 1.5rem 12.75rem;
  }
}

.p-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-list {
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
  }
}

.p-footer__nav-item {
  font-size: 0.625rem;
}

@media screen and (max-width: 767px) {
  body {
    padding-bottom: calc(6.75rem + env(safe-area-inset-bottom, 0px));
  }
}

.p-footer-sp-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  -webkit-box-shadow: 0 -0.25rem 1rem rgba(0, 0, 0, .18);
          box-shadow: 0 -0.25rem 1rem rgba(0, 0, 0, .18);
}
@media screen and (min-width: 768px) {
  .p-footer-sp-nav {
    display: none !important;
  }
}
.p-footer-sp-nav__contact-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background-color: #8B1A2B;
}
.p-footer-sp-nav__contact {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 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;
  padding: 1.125rem 1.25rem;
  color: #F0EDE6;
  text-decoration: none;
  font-family: "Shippori Mincho", serif;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  border-right: 1px solid rgba(240, 237, 230, .2);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.p-footer-sp-nav__contact:hover {
  opacity: 0.8;
}
.p-footer-sp-nav__instagram {
  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;
  padding: 1.125rem 1.5rem;
  color: #F0EDE6;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.p-footer-sp-nav__instagram:hover {
  opacity: 0.8;
}
.p-footer-sp-nav__instagram svg {
  width: 1.75rem;
  height: 1.75rem;
}
.p-footer-sp-nav__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #785E31;
}
.p-footer-sp-nav__link {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 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;
  padding: 1rem 0.5rem;
  font-family: "Shippori Mincho", serif;
  font-size: 0.6875rem;
  color: #F0EDE6;
  text-decoration: none;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.05em;
  border-right: 1px solid rgba(240, 237, 230, .2);
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.p-footer-sp-nav__link:last-child {
  border-right: none;
}
.p-footer-sp-nav__link:hover {
  background-color: rgba(240, 237, 230, .1);
}

.p-fv {
  position: relative;
  height: 40.625rem;
  min-height: 100svh;
  background-color: #8B1A2B;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-fv {
    height: 47rem;
  }
}

.p-fv__main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  background-color: #8B1A2B;
}

.p-fv__text-box {
  white-space: nowrap;
  text-align: center;
  position: absolute;
  top: 31.4%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .p-fv__text-box {
    top: 50%;
  }
}

.p-fv__title {
  color: #F0EDE6;
  font-size: 1.75rem;
  line-height: 2;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-fv__title {
    font-size: 2rem;
  }
}

.p-fv__svg {
  width: 100%;
  position: absolute;
  bottom: 0;
}
.p-fv__svg svg {
  width: 100%;
  display: block;
  aspect-ratio: 240/89;
}

.p-fv__img-box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-fv__img-1 {
  position: absolute;
  width: 35.5%;
  aspect-ratio: 147/184;
  -o-object-fit: cover;
     object-fit: cover;
  right: 12.3%;
  bottom: 20.4%;
}
@media screen and (min-width: 768px) {
  .p-fv__img-1 {
    width: 23.19%;
    right: 14.9%;
    bottom: 26.3%;
  }
}

.p-fv__img-2 {
  position: absolute;
  width: 32.36%;
  aspect-ratio: 134/180;
  -o-object-fit: cover;
     object-fit: cover;
  left: 2.2%;
  bottom: 8.9%;
}
@media screen and (min-width: 768px) {
  .p-fv__img-2 {
    width: 19.16%;
    left: 12.7%;
    bottom: 10.8%;
  }
}

.p-fv__img-3 {
  position: absolute;
  width: 25.84%;
  aspect-ratio: 107/144;
  -o-object-fit: cover;
     object-fit: cover;
  right: 2.2%;
  bottom: 7.3%;
}
@media screen and (min-width: 768px) {
  .p-fv__img-3 {
    width: 15.34%;
    right: 11.1%;
    bottom: 6.5%;
  }
}

.p-fv__img-4 {
  position: absolute;
  width: 25.12%;
  aspect-ratio: 104/138;
  -o-object-fit: cover;
     object-fit: cover;
  left: 25%;
  bottom: 24%;
}
@media screen and (min-width: 768px) {
  .p-fv__img-4 {
    width: 13.75%;
    left: 26.2%;
    bottom: 57.1%;
  }
}

.l-fv__logo {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.p-fv__logo {
  width: 100%;
  height: 100vh;
  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;
  background-color: #F0EDE6;
}

.p-fv__logo-img {
  margin: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  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;
  width: 18.75rem;
}

.p-fv__logo-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header {
  width: 100%;
  height: 3.75rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  color: #F0EDE6;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 19.375rem;
  }
}

.p-header__inner {
  padding: 0.625rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding: 2.1875rem 2.5rem;
  }
}

.p-header__title {
  position: relative;
  z-index: 9999;
  width: 5.875rem;
}
@media screen and (min-width: 768px) {
  .p-header__title {
    width: 8.875rem;
  }
}

.p-header__title a {
  text-decoration: none;
  color: #FFFFFF;
}

.p-header__pc-nav {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  text-orientation: upright;
  padding-top: 1.25rem;
}

.p-header__pc-nav-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: 1.5rem;
}

.p-header__pc-nav-item {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.4em;
}
.p-header__pc-nav-item a {
  color: #F0EDE6;
  text-decoration: none;
  position: relative;
  display: inline-block;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
@media (hover: hover) {
  .p-header__pc-nav-item a:hover {
    opacity: 0.55;
  }
}

.p-header__pc-nav-item--sns a {
  color: #F0EDE6;
  text-decoration: none;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  font-size: 1.125rem;
}
@media (hover: hover) {
  .p-header__pc-nav-item--sns a:hover {
    opacity: 0.55;
  }
}

.p-header__sp-nav {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background-color: #8B1A2B;
  -webkit-transition: ease 0.4s;
  transition: ease 0.4s;
  z-index: 2000;
}

.p-header__sp-nav-items {
  padding: 7.6875rem 1.25rem;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-header__sp-nav-item {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  text-orientation: upright;
}

.p-header__sp-nav-item a {
  color: #FFFFFF;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  font-size: 1.125rem;
  text-decoration: none;
}

.p-header__sp-nav-item:last-child a {
  margin-bottom: 0;
}

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

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
  cursor: pointer;
  position: relative;
}
.hamburger::before {
  position: absolute;
  translate: 0.875rem 0.5625rem;
  rotate: 45deg;
  display: block;
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: #FFFFFF;
}

.hamburger span {
  width: 2.25rem;
  height: 0.125rem;
  background-color: #FFFFFF;
  position: relative;
  -webkit-transition: ease 0.4s;
  transition: ease 0.4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 0.625rem 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}

.p-header__sp-nav.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 0.75rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -0.75rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.p-header__sp-nav-box-mask.active {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1999;
  background: rgba(0, 0, 0, .55);
  -webkit-transition: ease 0.4s;
  transition: ease 0.4s;
}

.p-lowa-hello .u-mobile {
  padding-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-lowa-hello {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-lowa-hello__box {
    width: 65%;
  }
}

@media screen and (min-width: 768px) {
  .p-lowa-hello__img {
    width: 35%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.p-lowa-hello__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-lowa-hello__text {
  padding-top: 2.1875rem;
}

.p-lowa-hello__text-sub {
  text-align: right;
}

.p-lowa-hello__text-name {
  font-size: 1.25rem;
  padding-left: 1.25rem;
}

.p-lowa-sdgs {
  background-image: url(../images/white-bgimg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 2.5rem 0;
  border-top: solid 1px rgba(139, 26, 43, .25);
  border-bottom: solid 1px rgba(139, 26, 43, .25);
}
.p-lowa-sdgs__box {
  border: 1px solid rgba(139, 26, 43, .2);
  padding: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-lowa-sdgs__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 3rem;
    padding: 2.5rem 3rem;
  }
}
.p-lowa-sdgs__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-lowa-sdgs__tag {
  display: block;
  width: 7.625rem;
  height: auto;
  margin-bottom: 1.25rem;
}
.p-lowa-sdgs__title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-lowa-sdgs__title {
    font-size: 1.25rem;
  }
}
.p-lowa-sdgs__text p {
  font-size: 0.875rem;
  line-height: 2;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .p-lowa-sdgs__text p {
    font-size: 0.9375rem;
  }
}
.p-lowa-sdgs__deco {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-lowa-sdgs__deco {
    display: block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 8.125rem;
    height: 8.125rem;
    border-radius: 50%;
    border: 0.4375rem solid rgba(184, 146, 42, .5);
    -ms-flex-item-align: center;
        align-self: center;
  }
}

.p-lowa-company {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-lowa-company {
    margin-top: 6.25rem;
  }
}

.p-lowa-company-profile__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid rgba(139, 26, 43, .3);
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.p-lowa-company-profile__term {
  width: 30%;
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-lowa-company-profile__term {
    width: 25%;
  }
}

.p-lowa-company-profile__description {
  width: 70%;
}
@media screen and (min-width: 768px) {
  .p-lowa-company-profile__description {
    width: 75%;
  }
}

.p-lowa-access-box {
  margin-top: 2rem;
}
.p-lowa-access-box .iframe-wrap {
  aspect-ratio: unset;
  height: 17.5rem;
}
@media screen and (min-width: 768px) {
  .p-lowa-access-box .iframe-wrap {
    height: 26.25rem;
  }
}

.p-lowa-map-link {
  display: block;
  text-align: right;
  color: #8B1A2B;
  font-size: 0.8125rem;
  margin-top: 0.75rem;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
@media (hover: hover) {
  .p-lowa-map-link:hover {
    opacity: 0.7;
  }
}

.iframe-wrap {
  width: 100%;
  aspect-ratio: 374/337;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
}

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

.p-lowca-remake__title, .p-lowca-care__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.625rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  color: #8B1A2B;
  padding-bottom: 1.5625rem;
  border-bottom: solid 1px #8B1A2B;
  position: relative;
  margin-bottom: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-lowca-remake__title, .p-lowca-care__title {
    font-size: 1.375rem;
  }
}
.p-lowca-remake__title::before, .p-lowca-care__title::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #8B1A2B;
  position: absolute;
  bottom: -5px;
  left: 0;
}
.p-lowca-remake__title::after, .p-lowca-care__title::after {
  content: "";
  background-image: url(../images/title-border-item.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: block;
  width: 1.25rem;
  height: 1.5625rem;
  aspect-ratio: 20/25;
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.p-lowca-remake__title-icon, .p-lowca-care__title-icon {
  width: 1.375rem;
  height: 1.375rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 0.25rem;
}

.p-lowca-care__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-lowca-care__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3.75rem;
  }
}
.p-lowca-care__img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-lowca-care__img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 45%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.p-lowca-care__img img {
  width: 100%;
  height: auto;
  display: block;
}
.p-lowca-care__text {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (min-width: 768px) {
  .p-lowca-care__text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.p-lowca-care__text p {
  margin-top: 1rem;
  line-height: 2;
  font-size: 0.875rem;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-lowca-care__text p {
    font-size: 0.9375rem;
  }
}
.p-lowca-remake {
  background-color: #F0EDE6;
}
.p-lowca-remake__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-lowca-remake__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3.75rem;
  }
}
@media screen and (min-width: 768px) {
  .p-lowca-remake__text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.p-lowca-remake__text p {
  margin-top: 1rem;
  line-height: 2;
  font-size: 0.875rem;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-lowca-remake__text p {
    font-size: 0.9375rem;
  }
}
.p-lowca-remake__btn {
  margin-top: 2.25rem;
}
.p-lowca-remake__img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-lowca-remake__img {
    width: 42%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.p-lowca-remake__img img {
  width: 100%;
  height: auto;
  display: block;
}

.p-lowc-intro__text {
  font-size: 0.9375rem;
  line-height: 2;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .p-lowc-intro__text {
    font-size: 1rem;
  }
}

.p-lowc-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-lowc-filter {
    gap: 0.5rem 2rem;
  }
}
.p-lowc-filter__item {
  font-size: 0.875rem;
  color: #785E31;
  text-decoration: none;
  letter-spacing: 0.05em;
  font-family: "Shippori Mincho", serif;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media screen and (min-width: 768px) {
  .p-lowc-filter__item {
    font-size: 0.9375rem;
  }
}
.p-lowc-filter__item:hover {
  opacity: 0.6;
}

.p-lowc-category + .p-lowc-category {
  border-top: 1px solid rgba(0, 0, 0, .12);
}
.p-lowc-category__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #000000;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, .15);
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-lowc-category__title {
    font-size: 1.5rem;
    padding-bottom: 1.75rem;
    margin-bottom: 2.5rem;
  }
}
.p-lowc-category__title-icon {
  width: 1.5rem;
  height: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-lowc-category__title-icon {
    width: 1.75rem;
    height: 1.75rem;
  }
}
.p-lowc-category__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-lowc-category__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 3.75rem;
  }
}
@media screen and (min-width: 768px) {
  .p-lowc-category__desc {
    width: 30%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.p-lowc-category__desc p {
  font-size: 0.875rem;
  line-height: 2;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .p-lowc-category__desc p {
    font-size: 0.9375rem;
  }
}
.p-lowc-category__imgs {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-lowc-category__imgs {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2rem;
  }
}
.p-lowc-category__figure {
  margin: 0;
}
.p-lowc-category__figure img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-lowc-category__figure figcaption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #555;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-lowc-category__figure figcaption {
    font-size: 0.8125rem;
  }
}
.p-lowc-category__external {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 0.5rem;
  color: #785E31;
  opacity: 0.7;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.p-lowc-category__external:hover {
  opacity: 1;
}
.p-lowc-category__external svg {
  width: 0.875rem;
  height: 0.875rem;
}

.p-lowco-contact__box {
  max-width: 50rem;
  margin: 0 auto;
}
.p-lowco-contact__intro {
  margin-bottom: 2.5rem;
}
.p-lowco-contact__intro p {
  margin-top: 1rem;
  line-height: 2;
  font-size: 0.9375rem;
}
.p-lowco-contact__form {
  margin-top: 2.5rem;
  padding: 1.875rem 1.25rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-lowco-contact__form {
    padding: 2.5rem 3.125rem;
  }
}
.p-lowco-contact__form .wpcf7-form p {
  margin-bottom: 1.25rem;
}
.p-lowco-contact__form input[type=text],
.p-lowco-contact__form input[type=email],
.p-lowco-contact__form input[type=tel],
.p-lowco-contact__form textarea,
.p-lowco-contact__form select {
  width: 100%;
  border: 1px solid rgba(139, 26, 43, .5);
  padding: 0.625rem 0.75rem;
  margin-bottom: 0.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  background-color: #fafafa;
  outline: none;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.p-lowco-contact__form input[type=text]:focus,
.p-lowco-contact__form input[type=email]:focus,
.p-lowco-contact__form input[type=tel]:focus,
.p-lowco-contact__form textarea:focus,
.p-lowco-contact__form select:focus {
  border-color: #8B1A2B;
  background-color: #fff;
}
.p-lowco-contact__form textarea {
  height: 10rem;
  resize: vertical;
}
.p-lowco-contact__form .wpcf7-submit {
  display: block;
  width: 100%;
  padding: 0.875rem 1.875rem;
  background-color: #8B1A2B;
  color: #F0EDE6;
  border: none;
  font-family: "Shippori Mincho", serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.p-lowco-contact__form .wpcf7-submit:hover {
  opacity: 0.8;
}
.p-lowco-contact__info {
  border-top: 1px solid rgba(139, 26, 43, .4);
  margin-top: 3.125rem;
  padding-top: 1.875rem;
}
.p-lowco-contact__info h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.p-lowco-contact__tel a {
  text-decoration: none;
  color: inherit;
}
.p-lowco-contact__tel-num {
  font-family: "Shippori Mincho", serif;
  font-size: 2.25rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #8B1A2B;
}
@media screen and (min-width: 768px) {
  .p-lowco-contact__tel-num {
    font-size: 2.625rem;
  }
}
.p-lowco-contact__tel-sub {
  font-size: 0.8125rem;
  margin-top: 0.25rem;
  color: #666;
}

.p-lowm-intro {
  background-color: #F0EDE6;
  position: relative;
}
.p-lowm-intro__box {
  position: relative;
}
.p-lowm-intro__deco {
  position: absolute;
  top: -1.25rem;
  left: -1.875rem;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  border: 0.375rem solid rgba(184, 146, 42, .55);
  -webkit-box-shadow: 0 0 0 0.625rem rgba(184, 146, 42, .08), 0 0 0 1.25rem rgba(184, 146, 42, .04);
          box-shadow: 0 0 0 0.625rem rgba(184, 146, 42, .08), 0 0 0 1.25rem rgba(184, 146, 42, .04);
  pointer-events: none;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-lowm-intro__deco {
    width: 12.5rem;
    height: 12.5rem;
    top: -2.5rem;
    left: -3.75rem;
    border-width: 0.5rem;
  }
}
.p-lowm-intro__text-wrap {
  position: relative;
  z-index: 1;
  padding-left: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-lowm-intro__text-wrap {
    padding-left: 6.25rem;
    max-width: 47.5rem;
  }
}
.p-lowm-intro__lead {
  font-size: 0.9375rem;
  line-height: 2;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .p-lowm-intro__lead {
    font-size: 1rem;
  }
}
.p-lowm-intro__text {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  line-height: 2;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .p-lowm-intro__text {
    font-size: 1rem;
  }
}

.p-lowm-gallery {
  background-color: #fff;
}
.p-lowm-gallery__header {
  text-align: right;
  padding-bottom: 1rem;
}
.p-lowm-gallery__sub {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #785E31;
  text-transform: uppercase;
}
.p-lowm-gallery__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 400;
  font-style: italic;
  color: #785E31;
  line-height: 1;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 768px) {
  .p-lowm-gallery__title {
    font-size: 5rem;
  }
}
.p-lowm-gallery__masonry {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-lowm-gallery__masonry {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
    -webkit-column-gap: 0.75rem;
       -moz-column-gap: 0.75rem;
            column-gap: 0.75rem;
  }
}
.p-lowm-gallery__item {
  -webkit-column-break-inside: avoid;
     page-break-inside: avoid;
          break-inside: avoid;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-lowm-gallery__item {
    margin-bottom: 0.75rem;
  }
}
.p-lowm-gallery__item img {
  width: 100%;
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.p-lowm-gallery__item img:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.p-lowm-instagram {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  background-color: #F0EDE6;
}
@media screen and (min-width: 768px) {
  .p-lowm-instagram {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}
.p-lowm-instagram__banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  background-color: #8B1A2B;
  color: #fff;
  text-decoration: none;
  padding: 1.25rem 1.5rem;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media screen and (min-width: 768px) {
  .p-lowm-instagram__banner {
    padding: 1.5rem 2.5rem;
    gap: 2.5rem;
  }
}
.p-lowm-instagram__banner:hover {
  opacity: 0.85;
}
.p-lowm-instagram__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 10rem;
}
@media screen and (min-width: 768px) {
  .p-lowm-instagram__left {
    min-width: 13.75rem;
  }
}
.p-lowm-instagram__icon {
  width: 1.75rem;
  height: 1.75rem;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-lowm-instagram__icon {
    width: 2.125rem;
    height: 2.125rem;
  }
}
.p-lowm-instagram__label {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-lowm-instagram__label {
    font-size: 1rem;
  }
}
.p-lowm-instagram__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 0.8125rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-lowm-instagram__text {
    font-size: 0.875rem;
  }
}
.p-lowm-instagram__arrow {
  font-size: 1.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-lowm-instagram__arrow {
    font-size: 1.5rem;
  }
}

.p-lowm-order {
  background-image: url(../images/white-bgimg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: #e8edf0;
}
.p-lowm-order__title {
  font-family: "Shippori Mincho", serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #000000;
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-lowm-order__title {
    font-size: 1.25rem;
  }
}
.p-lowm-order__body p {
  font-size: 0.9375rem;
  line-height: 2;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .p-lowm-order__body p {
    font-size: 1rem;
  }
}
.p-lowm-order__body p + p {
  margin-top: 1.25rem;
}

.p-single-news {
  padding-top: 3.75rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-single-news {
    padding-top: 5rem;
    padding-bottom: 6.25rem;
  }
}

.p-single-news__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .p-single-news__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 3rem;
  }
}

@media screen and (min-width: 768px) {
  .p-single-news__main {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 65%;
            flex: 0 0 65%;
    width: 65%;
  }
}

.p-single-news__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-single-news__post-date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  color: #888;
  letter-spacing: 0.05em;
}

.p-single-news__area-tag {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  background-color: #8B1A2B;
  padding: 0.1875rem 0.625rem;
  letter-spacing: 0.05em;
}

.p-single-news__title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-single-news__title {
    font-size: 1.625rem;
  }
}

.p-single-news__border {
  position: relative;
  padding-bottom: 0.25rem;
  border-bottom: solid 1px #8B1A2B;
  margin-top: 0.25rem;
  margin-bottom: 2.75rem;
}
.p-single-news__border::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #8B1A2B;
  position: absolute;
  bottom: -5px;
  left: 0;
}
.p-single-news__border::after {
  content: "";
  background-image: url(../images/title-border-item.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: block;
  width: 1.25rem;
  height: 1.5625rem;
  aspect-ratio: 20/25;
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.p-single-news__content {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.9;
  color: #333;
  margin-bottom: 2.5rem;
}
.p-single-news__content p {
  margin-bottom: 1rem;
}
.p-single-news__content img {
  max-width: 100%;
  height: auto;
}

.p-single-news__btn {
  margin-bottom: 3rem;
}

.p-single-news__event-info {
  background-color: #F0EDE6;
  border: 1px solid rgba(139, 26, 43, .3);
  padding: 1.5rem 1.25rem;
  margin-bottom: 2rem;
}

.p-single-news__event-row {
  display: grid;
  grid-template-columns: 5.625rem 1fr;
  gap: 0.5rem 1rem;
  margin: 0;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(139, 26, 43, .15);
}
.p-single-news__event-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.p-single-news__event-row:first-child {
  padding-top: 0;
}
.p-single-news__event-row dt {
  font-family: "Shippori Mincho", serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #8B1A2B;
  letter-spacing: 0.05em;
  padding-top: 0.125rem;
}
.p-single-news__event-row dd {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

.p-single-news__address {
  font-size: 0.8125rem;
  color: #666;
}

.p-single-news__map {
  width: 100%;
  margin-bottom: 2rem;
}
.p-single-news__map iframe {
  width: 100%;
  height: 17.5rem;
  border: 0;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-single-news__map iframe {
    height: 20rem;
  }
}

@media screen and (min-width: 768px) {
  .p-single-news__side {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    width: 30%;
    border-top: 2px solid #8B1A2B;
    padding-top: 1.25rem;
  }
}

.p-single-news__side-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0rem;
}

.p-single-news__side-item {
  border-bottom: 1px solid rgba(139, 26, 43, .2);
}
.p-single-news__side-item:first-child {
  border-top: 1px solid rgba(139, 26, 43, .2);
}
@media screen and (min-width: 768px) {
  .p-single-news__side-item:first-child {
    border-top: none;
  }
}

.p-single-news__side-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 0.25rem;
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.p-single-news__side-link:hover {
  opacity: 0.75;
}

.p-single-news__side-thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 4.5rem;
          flex: 0 0 4.5rem;
  width: 4.5rem;
  height: 4.5rem;
  overflow: hidden;
  background-color: #F0EDE6;
}
.p-single-news__side-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-single-news__side-no-img {
  width: 100%;
  height: 100%;
  background-color: #F0EDE6;
  background-image: url(../images/white-bgimg.jpg);
  background-size: cover;
  background-position: center;
}

.p-single-news__side-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.p-single-news__side-title {
  font-family: "Shippori Mincho", serif;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0.25rem 0 0.375rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.p-single-news__side-date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.6875rem;
  color: #888;
  margin: 0;
}

.p-about__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-about__left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.p-about__left p {
  font-size: 0.8125rem;
  line-height: 1.9;
}

.p-about__btn {
  padding-top: 1.5rem;
}
.p-about__btn .c-btn {
  max-width: 100%;
}
.p-about__btn .c-btn a {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-about__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 3.25rem;
          flex: 0 0 3.25rem;
  width: 3.25rem;
  overflow: hidden;
}
.p-about__right h2 {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.15em;
}
.p-about__right h2 strong {
  font-size: 1.0625rem;
  color: #8B1A2B;
  font-weight: 400;
}

.p-care__box {
  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: 2.5rem;
}

.p-care__box + .p-care__box {
  padding-top: 2.5rem;
}

.p-care__texts {
  width: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}
.p-care__texts p {
  padding-top: 1.5rem;
}

.p-care-btn {
  padding-top: 1.875rem;
}

.p-news h2 {
  font-size: 1.5rem;
  font-weight: 400;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #000;
}

.p-news__box {
  padding-top: 2.5rem;
  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: 1.5rem;
}

.p-news__item a {
  display: block;
  background-image: url(../images/news-item.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: #785E31;
  padding: 1.03125rem 1.5rem;
}
.p-news__item a h3 {
  font-size: 1.25rem;
  font-weight: 400;
}
.p-news__item a p {
  font-size: 0.875rem;
  padding-top: 0.5rem;
}

.p-news__item + .p-news__item {
  padding-top: 1rem;
}

.p-news__link {
  text-align: right;
  padding-top: 1rem;
  color: #8B1A2B;
  font-size: 0.75rem;
}

.p-news__text {
  background-image: url(../images/news-item-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 1.0625rem 1.25rem;
  position: relative;
}
.p-news__text h3 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid #000;
}
.p-news__text p {
  padding-top: 2rem;
}
.p-news__text::before {
  content: "";
  background-image: url(../images/news-text-parts.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: -10px;
  left: -10px;
}
.p-news__text::after {
  content: "";
  background-image: url(../images/news-text-parts.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  rotate: 180deg;
  bottom: -10px;
  right: -10px;
}

.p-news__text-list {
  padding-top: 0.875rem;
}

.p-news__btn {
  padding-top: 2.5rem;
}

.p-museum {
  background-color: #8B1A2B;
  color: #F0EDE6;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.p-museum__box {
  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: 2.5rem;
}

.p-museum__left p {
  padding-top: 2rem;
}

.p-museum__right {
  padding: 2.4375rem 1.6875rem;
  background-color: #F0EDE6;
  border-radius: 17px;
}

.p-museum__text {
  text-align: center;
  color: #000;
}
.p-museum__text h2 {
  font-size: 1.5rem;
  font-weight: 400;
}

.p-museum__btn-box {
  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: 1.25rem;
  padding-top: 2rem;
}

.p-museum__red-btn a {
  display: block;
  background-color: #8B1A2B;
  color: #F0EDE6;
  padding: 0.8125rem 1.25rem;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
}

.p-museum__white-btn a {
  background-color: #fff;
  color: #8B1A2B;
  border: 1px solid #8B1A2B;
  padding: 1.75rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
}
.p-museum__white-btn a::before {
  content: "";
  background-image: url(../images/white-btn-item.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: block;
  width: 1.9375rem;
  height: 2.0625rem;
  aspect-ratio: 31/33;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-museum__white-btn a::after {
  content: "";
  background-image: url(../images/white-btn-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: block;
  width: 1.3125rem;
  height: 0.25rem;
  aspect-ratio: 11/3;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .p-about__box {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-about__left p {
    font-size: 1.5rem;
    line-height: 2;
  }
  .p-about__btn {
    padding-top: 2.5rem;
  }
  .p-about__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 10.65%;
    overflow: visible;
  }
  .p-about__right h2 {
    letter-spacing: 0.3em;
    text-indent: -1em;
    padding-top: 2em;
    font-size: 2.5rem;
  }
  .p-about__right h2 strong {
    font-size: 3.5rem;
  }
  .p-care .p-care__box:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .p-care__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }
  .p-care__box + .p-care__box {
    padding-top: 5rem;
  }
  .p-care__texts {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-right: 0;
    padding-left: 0;
  }
  .p-care__texts p {
    padding-top: 1.5rem;
  }
  .p-care-btn {
    padding-top: 1.875rem;
  }
  .p-care__img {
    width: 47%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .p-care__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .p-news h2 {
    font-size: 1.5rem;
    font-weight: 400;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #000;
  }
  .p-news__box {
    padding-top: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
  .p-news__nav {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
  }
  .p-news__text {
    width: 46%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .p-news__item a {
    display: block;
    background-image: url(../images/news-item.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: #785E31;
    padding: 1.03125rem 1.5rem;
  }
  .p-news__item a h3 {
    font-size: 1.25rem;
    font-weight: 400;
  }
  .p-news__item a p {
    font-size: 0.875rem;
    padding-top: 0.5rem;
  }
  .p-news__item + .p-news__item {
    padding-top: 1rem;
  }
  .p-news__link {
    text-align: right;
    padding-top: 1rem;
    color: #8B1A2B;
    font-size: 0.75rem;
  }
  .p-news__btn {
    padding-top: 2.5rem;
  }
  .p-museum {
    background-color: #8B1A2B;
    color: #F0EDE6;
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
  .p-museum__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-column-gap: 3.75rem;
       -moz-column-gap: 3.75rem;
            column-gap: 3.75rem;
  }
  .p-museum__left {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .p-museum__left p {
    padding-top: 2rem;
  }
  .p-museum__right {
    width: 42%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: 2.4375rem 1.6875rem;
    background-color: #F0EDE6;
    border-radius: 17px;
  }
  .p-museum__text {
    text-align: center;
    color: #000;
  }
  .p-museum__text h2 {
    font-size: 1.5rem;
    font-weight: 400;
  }
  .p-museum__btn-box {
    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: 1.25rem;
    padding-top: 2rem;
  }
  .p-museum__red-btn a {
    display: block;
    background-color: #8B1A2B;
    color: #F0EDE6;
    padding: 0.8125rem 1.25rem;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
  .p-museum__white-btn a {
    background-color: #fff;
    color: #8B1A2B;
    border: 1px solid #8B1A2B;
    padding: 1.75rem 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 0.625rem;
       -moz-column-gap: 0.625rem;
            column-gap: 0.625rem;
  }
  .p-museum__white-btn a::before {
    content: "";
    background-image: url(../images/white-btn-item.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: block;
    width: 1.9375rem;
    height: 2.0625rem;
    aspect-ratio: 31/33;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-museum__white-btn a::after {
    content: "";
    background-image: url(../images/white-btn-arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: block;
    width: 1.3125rem;
    height: 0.25rem;
    aspect-ratio: 11/3;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */
