@charset "UTF-8";
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 16px;
}
@media (max-width: 1140px) {
  html {
    font-size: 1.4035087719vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 393px) {
  html {
    font-size: 4.0712468193vw;
  }
}

* {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0;
}

a {
  text-decoration: none;
}

body {
  color: #000;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

body.is-active {
  overflow: hidden;
}

main {
  overflow: hidden;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*:focus {
  outline: none;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a,
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) {
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

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

/*****************************
* 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;
  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;
            animation-duration: 0.01ms;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-transition-duration: 0.01ms;
            transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
}
.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1140px;
  padding-right: 1.875rem;
  padding-left: 1.875rem;
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding-right: 1.875rem;
    padding-left: 1.875rem;
  }
}

.c-404 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  min-height: calc(100vh - 62.5rem);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 12.5rem;
  padding-bottom: 12.5rem;
}
@media screen and (max-width: 768px) {
  .c-404 {
    text-align: left;
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}

.c-404__title {
  font-size: 1.5rem;
  color: #1a1953;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .c-404__title {
    font-size: 1.125rem;
  }
}

.c-404__text {
  font-size: 1rem;
  margin-top: 1.875rem;
  color: #1a1953;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .c-404__text {
    font-size: 0.875rem;
  }
}

.c-404__link {
  display: block;
  font-size: 1rem;
  color: #1a1953;
  text-decoration: underline;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .c-404__link {
    font-size: 0.875rem;
  }
}

.c-archive {
  padding: 5rem 0 6.125rem;
}
@media screen and (max-width: 768px) {
  .c-archive {
    padding: 1.875rem 0 3.75rem;
  }
}

.c-archive__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 3.625rem;
  -webkit-column-gap: 1.875rem;
     -moz-column-gap: 1.875rem;
          column-gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .c-archive__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-archive__body {
  margin-top: 0.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-archive__img {
  width: 100%;
  max-width: 21.25rem;
  height: auto;
  aspect-ratio: 340/227;
}
@media screen and (max-width: 768px) {
  .c-archive__img {
    max-width: 37.5rem;
  }
}

.c-archive__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-archive__btn {
  margin-top: 7.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .c-archive__btn {
    margin-top: 3.75rem;
  }
}

.c-archive__btn a {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  border-bottom: 1px solid #000;
}

.c-btn {
  display: grid;
  place-items: center;
  width: 8.75rem;
  height: 2.75rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50vh;
  border: 1px solid #1a1953;
  text-transform: uppercase;
}

.c-btn--long {
  width: 21.25rem;
}
@media screen and (max-width: 768px) {
  .c-btn--long {
    width: 20.875rem;
  }
}

.c-btn--white {
  color: #1a1953;
  background: #fff;
}

.c-btn--navy {
  color: #fff;
  background: #1a1953;
}

.c-btn--clear {
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
}

.c-btn--green {
  color: #fff;
  background: #22b573;
  border: 1px solid #22b573;
}

@media (hover: hover) {
  .c-btn:hover {
    opacity: 1;
  }
  .c-btn--white:hover {
    color: #fff;
    background: #1a1953;
  }
  .c-btn--navy:hover {
    color: #1a1953;
    background: #fff;
  }
  .c-btn--green:hover {
    color: #22b573;
    background: #fff;
  }
  .c-btn--clear:hover {
    color: #1a1953;
    background: #fff;
  }
}
@media screen and (max-width: 768px) {
  .c-btn--fix {
    width: 11.25rem;
  }
}

.c-btn2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875rem;
  font-weight: 400;
  position: relative;
  gap: 0.1875rem;
}

/* ---- 線の部分 ---- */
.c-btn2__line {
  display: inline-block;
  position: relative;
  width: 3.125rem;
  height: 1px;
  background-color: #000;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

/* ---- 円の部分 ---- */
.c-btn2__line::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #000;
  border-radius: 50%;
  background-color: transparent;
  -webkit-transform: translateX(50%) translateY(-50%);
          transform: translateX(50%) translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

/* ---- 黒点の部分 ---- */
.c-btn2__line::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #000;
  border-radius: 50%;
  -webkit-transform: translateX(50%) translateY(-50%);
          transform: translateX(50%) translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

/* ホバー時の動き */
@media (hover: hover) {
  .c-btn2:hover {
    opacity: 1;
  }
  .c-btn2:hover .c-btn2__line {
    -webkit-transform: translateX(0.625rem);
            transform: translateX(0.625rem);
  }
  .c-btn2:hover .c-btn2__line::before {
    -webkit-transform: translateX(50%) translateY(-50%) scale(1.2);
            transform: translateX(50%) translateY(-50%) scale(1.2);
  }
  .c-btn2:hover .c-btn2__line::after {
    -webkit-transform: translateX(50%) translateY(-50%) scale(1.2);
            transform: translateX(50%) translateY(-50%) scale(1.2);
  }
}
.c-hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  width: 3rem;
  height: 3rem;
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .c-hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.c-hamburger__bar {
  position: relative;
  display: block;
  width: 1.875rem;
  height: 0.1875rem;
  background-color: #1a1953;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  border-radius: 3px;
}

.c-hamburger__bar:nth-child(1) {
  top: 0;
}

.c-hamburger__bar:nth-child(2) {
  margin: 0.3125rem 0;
}

.c-hamburger__bar:nth-child(3) {
  top: 0;
}

.c-hamburger[aria-expanded=true] .c-hamburger__bar:nth-child(1) {
  top: 0.4375rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #1a1953;
}

.c-hamburger[aria-expanded=true] .c-hamburger__bar:nth-child(2) {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}

.c-hamburger[aria-expanded=true] .c-hamburger__bar:nth-child(3) {
  top: -0.5625rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background: #1a1953;
}

.c-page-title {
  margin-top: 5rem;
  height: 11.875rem;
  background-color: rgba(255, 123, 172, .3);
}
@media screen and (max-width: 768px) {
  .c-page-title {
    height: 7.5rem;
    margin-top: 3.125rem;
  }
}

.c-page-title__inner {
  height: 100%;
  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;
}

.c-page-title__title {
  display: inline-block;
  height: 2.1875rem;
  vertical-align: bottom;
}

.c-page-title__title img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-pagination__wrap {
  text-align: center;
}

.c-pagination {
  margin-top: 3.75rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .c-pagination {
    gap: 0.5rem;
  }
}

a.page-numbers {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a1953;
  background-color: rgba(236, 240, 230, .4);
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  text-align: center;
}

.page-numbers.prev,
.page-numbers.next {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #fff;
  position: absolute;
}

.page-numbers img {
  display: block;
  width: 0.5rem;
  height: 0.75rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-numbers.current {
  font-size: 0.875rem;
  font-weight: 700;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  text-align: center;
  background-color: #1a1953;
  color: #fff;
}

.page-numbers.prev {
  position: absolute;
  left: -0.875rem;
  top: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.page-numbers.next {
  position: absolute;
  right: -0.875rem;
  top: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.page-numbers.dots {
  color: #1a1953;
}

.c-section-body__heading {
  width: 100%;
  max-width: 32.8125rem;
  margin-top: 1.875rem;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1.5384615385;
}
@media screen and (max-width: 768px) {
  .c-section-body__heading {
    max-width: none;
    max-width: initial;
    font-size: 1.125rem;
    line-height: 1.7777777778;
  }
}

.c-section-body__text {
  width: 100%;
  max-width: 32.8125rem;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .c-section-body__text {
    max-width: none;
    max-width: initial;
  }
}

.c-section-body__btn {
  margin-top: 1.875rem;
  margin-right: 0.625rem;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .c-section-body__btn {
    margin-right: -0.625rem;
    margin-top: 1.25rem;
  }
}

.c-section-body2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .c-section-body2 {
    gap: 0.625rem;
  }
}

.c-section-title {
  display: inline-block;
  height: 2.1875rem;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .c-section-title {
    position: relative;
    z-index: 1;
  }
}

.c-section-title img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-section-title2 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2857142857;
  color: #1a1953;
}
@media screen and (max-width: 768px) {
  .c-section-title2 {
    font-size: 1.3125rem;
    line-height: 1.7142857143;
  }
}

.c-section-title2--white {
  color: #fff;
}

.c-text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
}

.c-text2 {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
  width: 100%;
  max-width: 31.25rem;
}
@media screen and (max-width: 768px) {
  .c-text2 {
    max-width: none;
    max-width: initial;
  }
}

.c-text2--white {
  color: #fff;
}

.p-about-owner {
  background-color: rgba(236, 240, 230, .4);
  padding: 5.625rem 0;
}
@media screen and (max-width: 768px) {
  .p-about-owner {
    padding: 2.8125rem 0 3.125rem 0;
  }
}

@media screen and (max-width: 768px) {
  .p-about-owner__inner.l-inner {
    padding: 0 0.625rem;
  }
}

.p-about-owner__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-about-owner__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}

.p-about-owner__img {
  width: 100%;
  max-width: 32.5rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .p-about-owner__img {
    max-width: none;
    max-width: initial;
  }
}

.p-about-owner__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-about-thought {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-about-thought {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 2.9375rem;
  }
}

.p-about-thought__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}

.p-about-thought__wrap {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-about-thought__wrap {
    position: static;
    position: initial;
  }
}
.p-about-thought__wrap:after {
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background-color: rgba(255, 255, 255, .8);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-about-thought__wrap:after {
    content: none;
  }
}

.p-about-thought__imgs {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2列レイアウト */
  grid-template-rows: repeat(3, 1fr); /* 3行 */
  width: 75.7142857143%;
  height: 100%;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .p-about-thought__imgs {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 3.0625rem;
  }
}

.p-about-thought__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-about-thought__img--1 {
  grid-column: 1/2;
  grid-row: 1/2;
}
@media screen and (max-width: 768px) {
  .p-about-thought__img--1 {
    grid-column: initial;
    grid-row: initial;
  }
}

.p-about-thought__img--2 {
  grid-column: 1/2;
  grid-row: 2/3;
}
@media screen and (max-width: 768px) {
  .p-about-thought__img--2 {
    grid-column: initial;
    grid-row: initial;
  }
}

.p-about-thought__img--3 {
  grid-column: 1/2;
  grid-row: 3/4;
}
@media screen and (max-width: 768px) {
  .p-about-thought__img--3 {
    grid-column: initial;
    grid-row: initial;
  }
}

.p-about-thought__img--4 {
  grid-column: 2/3;
  grid-row: 1/3;
}
@media screen and (max-width: 768px) {
  .p-about-thought__img--4 {
    grid-column: initial;
    grid-row: initial;
  }
}

.p-about-thought__img--5 {
  grid-column: 2/3;
  grid-row: 3/4;
}
@media screen and (max-width: 768px) {
  .p-about-thought__img--5 {
    grid-column: initial;
    grid-row: initial;
  }
}

.p-accordion__list {
  width: 100%;
}

.p-accordion__item {
  border-top: 1px solid #ccc;
  padding: 0.9375rem 0;
}
@media screen and (max-width: 768px) {
  .p-accordion__item {
    padding: 0.9375rem 0 1.25rem 0;
  }
}

.p-accordion__item:last-child {
  border-bottom: 1px solid #ccc;
}

.p-accordion__term {
  width: 100%;
  padding-right: 5.625rem;
  cursor: pointer;
  position: relative;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.1875rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .p-accordion__term {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.9375rem;
    padding-right: 0;
  }
}
.p-accordion__term::after {
  content: "詳しく見る";
  font-size: 0.875rem;
  font-weight: 400;
  border-bottom: 1px solid #000;
  position: absolute;
  right: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.p-accordion__term.is-active::after {
  content: "閉じる";
}

.p-accordion__term-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.75rem;
  min-width: 14.6875rem;
}
@media screen and (max-width: 768px) {
  .p-accordion__term-left {
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    gap: 0.875rem;
  }
}

.p-accordion__term-left span {
  display: inline-block;
  height: 1.625rem;
  min-width: 7.25rem;
  padding: 0 0.625rem;
  font-size: 0.75rem;
  line-height: 1.625rem;
  text-align: center;
  font-weight: 400;
  color: #fff;
  background: #1a1953;
}

.p-accordion__term::-webkit-details-marker {
  display: none;
}

.p-accordion__description {
  padding: 0.9375rem 5.625rem 0 16.875rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: none;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-accordion__description {
    padding: 0;
    padding-top: 0.9375rem;
  }
}

.p-cafe-about__wrap {
  background: url(../images/cafe/bg.webp) center top/cover no-repeat;
  aspect-ratio: 1400/560;
}
@media screen and (max-width: 1400px) {
  .p-cafe-about__wrap {
    height: 35rem;
    aspect-ratio: initial;
  }
}
@media screen and (max-width: 768px) {
  .p-cafe-about__wrap {
    background: url(../images/cafe/bg-sp.webp) center top/cover no-repeat;
    height: auto;
    height: initial;
    padding: 4.5rem 0;
  }
}

.p-cafe-about__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-cafe-about__inner {
    padding: 0 10px;
  }
}

.p-cafe-about__body {
  width: 50%;
  background-color: rgba(255, 255, 255, .7);
  border-radius: 0 1.875rem 0 0;
  padding: 4.375rem 1.875rem 5rem 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-cafe-about__body {
    padding: 3rem 1.25rem 3.125rem 1.25rem;
    width: 100%;
  }
}

.p-cafe-about__tel {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  color: #1a1953;
  margin-top: 1.3125rem;
}

.p-cafe-about__imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-cafe-about__imgs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-cafe-about__img {
  width: 25%;
  aspect-ratio: 350/230;
}
@media screen and (max-width: 768px) {
  .p-cafe-about__img {
    width: 100%;
  }
}

.p-cafe-about__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-cafe-info {
  padding-top: 5.625rem;
  padding-bottom: 6.5rem;
}
@media screen and (max-width: 768px) {
  .p-cafe-info {
    padding-top: 4.25rem;
    padding-bottom: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .p-cafe-info__inner {
    padding: 0 10px;
  }
}

.p-cafe-info__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.5rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-cafe-info__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.75rem;
  }
}

.p-cafe-info__items {
  width: 50%;
  border: 1px solid #1a1953;
}
@media screen and (max-width: 768px) {
  .p-cafe-info__items {
    width: 100%;
  }
}

.p-cafe-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
  color: #1a1953;
}

.p-cafe-info__term {
  width: 23.2692307692%;
  border-right: 1px solid #1a1953;
  text-align: center;
  padding-top: 1.5625rem;
  color: #1a1953;
}
@media screen and (max-width: 768px) {
  .p-cafe-info__term {
    width: 29.7587131367%;
    padding-top: 1.25rem;
  }
}

.p-cafe-info__item:last-child .p-cafe-info__term {
  padding-bottom: 1.5625rem;
}

.p-cafe-info__description {
  padding: 1.5625rem 1.875rem 0 1.25rem;
  width: 76.7307692308%;
  color: #1a1953;
}
@media screen and (max-width: 768px) {
  .p-cafe-info__description {
    width: 70.2412868633%;
    padding: 1.25rem 1.25rem 0 1.25rem;
  }
}

.p-cafe-info__item:last-child .p-cafe-info__description {
  padding-bottom: 1.5625rem;
}

.p-cafe-info__map {
  width: 32.5rem;
  height: 100%;
  aspect-ratio: 520/300;
}
@media screen and (max-width: 768px) {
  .p-cafe-info__map {
    width: 100%;
  }
}

.p-cafe-info__map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.p-cafe-menu__title {
  margin-top: 6.25rem;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.2857142857;
  color: #1a1953;
}
@media screen and (max-width: 768px) {
  .p-cafe-menu__title {
    margin-top: 3.75rem;
  }
}

.p-cafe-menu__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.875rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-cafe-menu__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4rem;
  }
}

.p-cafe-menu__item {
  width: 33.3333333333%;
}
@media screen and (max-width: 768px) {
  .p-cafe-menu__item {
    width: 100%;
  }
}

.p-cafe-menu__img {
  width: 100%;
}

.p-cafe-menu__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-cafe-menu__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 0.875rem;
}

.p-cafe-menu__item-title {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
  color: #1a1953;
}

.p-cafe-menu__item-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
  margin-top: 1.125rem;
}

.p-cafe-menu .splide__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.3125rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-cafe-menu .splide__pagination__page {
  width: 0.625rem;
  height: 0.625rem;
  background-color: #1a1953;
  border: 0.125rem solid #1a1953;
  border-radius: 50%;
  opacity: 1;
}

/* アクティブなページ（現在のスライド） */
.p-cafe-menu .splide__pagination__page.is-active {
  background-color: #fff;
  border: 0.125rem solid #1a1953;
  -webkit-transform: none;
          transform: none;
  -webkit-transform: initial;
          transform: initial;
}

.p-contact {
  padding: 5.875rem 0 7.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-contact {
    padding: 5.25rem 0;
  }
}

.p-contact__text {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  color: #1a1953;
}
@media screen and (max-width: 768px) {
  .p-contact__text {
    font-size: 0.875rem;
    line-height: 2;
    white-space: nowrap;
  }
}

.p-contact__tel {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  color: #1a1953;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .p-contact__tel {
    font-size: 0.875rem;
    line-height: 2;
    margin-top: 1.75rem;
  }
}

.p-contact__mail {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  color: #1a1953;
}
@media screen and (max-width: 768px) {
  .p-contact__mail {
    font-size: 0.875rem;
    line-height: 2;
  }
}

.p-contact__line {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2.5rem;
  width: 12.0625rem;
  aspect-ratio: 193/60;
}
@media screen and (max-width: 768px) {
  .p-contact__line {
    margin-top: 1.5rem;
  }
}

.p-contact__line img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-cta {
  background: url(../images/common/cta-bg.webp) center top/cover no-repeat;
  height: 26.25rem;
  padding: 4.6875rem 0;
}
@media screen and (max-width: 768px) {
  .p-cta {
    height: 34rem;
    background: url(../images/common/cta-bg-sp.webp) center top/cover no-repeat;
    padding: 2.6875rem 0 3.4375rem 0;
  }
}

.p-cta__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4.0625rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .p-cta__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.875rem;
  }
}

.p-cta__logo {
  width: 100%;
  max-width: 16.875rem;
  height: auto;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .p-cta__logo {
    max-width: 11.25rem;
  }
}

.p-cta__logo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-cta__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-cta__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    place-items: center;
  }
}

.p-cta__item:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
@media screen and (max-width: 768px) {
  .p-cta__item:nth-child(1) {
    grid-column: initial;
    grid-row: initial;
  }
}

.p-cta__item:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}
@media screen and (max-width: 768px) {
  .p-cta__item:nth-child(2) {
    grid-column: initial;
    grid-row: initial;
  }
}

.p-cta__item:nth-child(3) {
  grid-column: 2;
  grid-row: 1;
}
@media screen and (max-width: 768px) {
  .p-cta__item:nth-child(3) {
    grid-column: initial;
    grid-row: initial;
  }
}

.p-cta__item:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}
@media screen and (max-width: 768px) {
  .p-cta__item:nth-child(4) {
    grid-column: initial;
    grid-row: initial;
  }
}

.p-footer {
  padding-top: 4.5625rem;
  padding-bottom: 4.3125rem;
}
@media screen and (max-width: 768px) {
  .p-footer {
    padding-top: 2.6875rem;
    padding-bottom: 3.75rem;
  }
}

.p-footer__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-footer__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .p-footer__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-footer__logo {
  display: block;
  width: 100%;
  width: 7.875rem;
  height: auto;
  aspect-ratio: 126/46;
}

.p-header__logo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-footer__address {
  margin-top: 0.9375rem;
}

.p-footer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-footer__items {
    width: 20.875rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.875rem 3.3125rem;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin-top: 2.5625rem;
  }
}

.p-footer__item {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.p-header {
  height: 5rem;
  background-color: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-header {
    height: 3.125rem;
  }
}

.p-header__inner {
  max-width: 120rem;
  margin-inline: auto;
  padding: 0 2.5rem 0 3rem;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-header__inner {
    padding: 0 0.625rem;
  }
}

@media screen and (max-width: 768px) {
  .p-header__logo {
    position: relative;
    z-index: 999;
  }
}

.p-header__logo a {
  display: block;
  width: 100%;
  width: 7.875rem;
  height: auto;
  aspect-ratio: 126/46;
}
@media screen and (max-width: 768px) {
  .p-header__logo a {
    width: 5.125rem;
  }
}

.p-header__logo a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.p-header__pc-nav {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-header__pc-nav {
    display: none;
  }
}

.p-header__pc-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
}

.p-header__pc-item a {
  padding: 1.25rem 1.25rem 0.8125rem 1.25rem;
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
}
@media screen and (max-width: 1340px) {
  .p-header__pc-item a {
    padding: 1.25rem 0.625rem 0.8125rem 0.625rem;
  }
}
@media screen and (max-width: 1180px) {
  .p-header__pc-item a {
    padding: 1.25rem 0.3125rem 0.8125rem 0.3125rem;
  }
}

.p-header__pc-item a:after {
  content: "";
  display: inline-block;
  background-color: #ff7bac;
  width: 100%;
  height: 0.125rem;
  bottom: 0.625rem;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

@media (hover: hover) {
  .p-header__pc-item a:hover {
    opacity: 1;
  }
  .p-header__pc-item a:hover:after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.p-header__pc-item a.current {
  color: #ff7bac;
}

.p-header__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}

.p-header__btns .c-btn {
  letter-spacing: 0.06em;
}

.p-header__btn--insta a {
  display: block;
  width: 100%;
  width: 2.5rem;
  height: auto;
  aspect-ratio: 1/1;
}

.p-header__btn--insta a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-header__sp-insta {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-header__sp-insta {
    display: block;
    position: fixed;
    top: 0.625rem;
    right: 3.125rem;
    z-index: 999;
  }
}

.p-header__sp-insta a {
  display: block;
  width: 100%;
  width: 1.875rem;
  height: auto;
  aspect-ratio: 1/1;
}

.p-header__sp-insta a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-header__sp-global-menu {
  position: fixed;
  height: 100vh;
  width: calc(100% - 1.875rem);
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background-color: #fff;
  z-index: 2;
}

.p-header__sp-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.875rem;
  padding-top: 7.0625rem;
  padding-bottom: 6.25rem;
}

.p-header__sp-item a {
  padding: 1.25rem;
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.p-header__sp-item a.current {
  color: #ff7bac;
}

.is-drawerActive .p-header__sp-global-menu {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  overflow: scroll;
}

.is-drawerActive {
  overflow: hidden;
}

.p-header__fix-btns {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-header__fix-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.8125rem;
    position: fixed;
    bottom: 0.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 999;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
}

.p-header__fix-btns .c-btn {
  letter-spacing: 0.06em;
}

.p-header__fix-btns.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.p-news-insta {
  padding-top: 5.875rem;
}
@media screen and (max-width: 768px) {
  .p-news-insta {
    padding-top: 3.625rem;
  }
}

@media screen and (max-width: 768px) {
  .p-news-insta .c-section-title {
    height: 1.875rem;
  }
}

.p-news-insta__title-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.9375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-news-insta__title-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.75rem;
  }
}

.p-news-insta__text {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  color: #1a1953;
}
@media screen and (max-width: 768px) {
  .p-news-insta__text {
    font-size: 1.125rem;
    line-height: 1.3333333333;
  }
}

.p-top-insta__box {
  margin-top: 3.125rem;
}

.p-news {
  margin-top: 7.875rem;
  padding-bottom: 8.125rem;
}
@media screen and (max-width: 768px) {
  .p-news {
    margin-top: 2.375rem;
    padding-bottom: 4.375rem;
  }
}

.p-order-illust {
  background-color: rgba(236, 240, 230, .4);
  padding: 5rem 0;
}
@media screen and (max-width: 768px) {
  .p-order-illust {
    padding: 1.875rem 0 2.8125rem 0;
  }
}

.p-order-illust__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-order-illust__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 2.25rem;
  }
}

.p-order-illust__flex .c-section-body2 {
  margin-top: 3.5625rem;
}
@media screen and (max-width: 768px) {
  .p-order-illust__flex .c-section-body2 {
    margin-top: 0;
    margin-top: initial;
  }
}

.p-order-illust__btn {
  margin-top: -0.3125rem;
  margin-left: auto;
  margin-right: 0.75rem;
}
@media screen and (max-width: 768px) {
  .p-order-illust__btn {
    margin-top: 1.5rem;
    margin-right: -0.625rem;
  }
}

.p-order-illust__img {
  width: 100%;
  max-width: 32.5rem;
  aspect-ratio: 520/390;
}

.p-order-illust__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-order-reserve {
  background-color: #1a1953;
  padding: 6rem 0 5.1875rem 0;
}
@media screen and (max-width: 768px) {
  .p-order-reserve {
    padding: 2.9375rem 0 4.1875rem 0;
  }
}

.p-order-reserve__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-order-reserve__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    gap: 3.25rem;
  }
}

.p-order-reserve__img {
  margin-right: 2rem;
}
@media screen and (max-width: 768px) {
  .p-order-reserve__img {
    margin-right: 0;
    margin-right: initial;
  }
}

.p-order-reserve__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sweets {
  padding: 5rem 0 7.25rem 0;
}
@media screen and (max-width: 768px) {
  .p-sweets {
    padding: 1.875rem 0 4.6875rem 0;
  }
}

.p-sweets__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  .p-sweets__items {
    gap: 3.125rem;
  }
}

.p-sweets__item {
  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;
}
@media screen and (max-width: 768px) {
  .p-sweets__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    gap: 1.75rem;
  }
}

.p-sweets__btn {
  margin-left: auto;
  margin-right: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-sweets__btn {
    margin-top: 0.5rem;
    margin-right: -0.625rem;
  }
}

.p-sweets__img {
  width: 48.2142857143vw;
  aspect-ratio: 675/450;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .p-sweets__img {
    width: 100%;
    margin-right: 0;
    margin-right: initial;
  }
}

.p-sweets__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-about {
  position: relative;
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-top-about {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.p-top-about:before {
  display: block;
  content: "";
  width: 62.1428571429%;
  height: 100%;
  background-color: rgba(255, 123, 172, .3);
  border-radius: 1.25rem 0 0 0;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-top-about:before {
    content: none;
  }
}

.p-top-about__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 5.5rem;
}
@media screen and (max-width: 768px) {
  .p-top-about__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

@media screen and (max-width: 768px) {
  .p-top-about__body {
    padding-top: 2.5rem;
    padding-bottom: 3.125rem;
    position: relative;
  }
}
.p-top-about__body:before {
  content: none;
}
@media screen and (max-width: 768px) {
  .p-top-about__body:before {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: calc(50% - 50vw);
    display: block;
    content: "";
    width: calc(100vw - 0.625rem);
    height: calc(100% + 1.875rem);
    background-color: rgba(255, 123, 172, .3);
    border-radius: 1.25rem 0 0 0;
    position: absolute;
    right: 0;
    top: -1.875rem;
    z-index: -1;
  }
}

.p-top-about__img {
  width: 100%;
  max-width: 25rem;
  height: auto;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .p-top-about__img {
    max-width: none;
    max-width: initial;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    position: relative;
    z-index: -2;
  }
}

.p-top-about__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-cafe {
  padding-top: 7.1875rem;
  background: url(../images/top/cafe-bg.webp) center top/cover no-repeat;
  aspect-ratio: 1400/760;
}
@media screen and (max-width: 1400px) {
  .p-top-cafe {
    height: 47.5rem;
    aspect-ratio: initial;
  }
}
@media screen and (max-width: 768px) {
  .p-top-cafe {
    background: url(../images/top/cafe-bg-sp.webp) center top/cover no-repeat;
    height: auto;
    height: initial;
    padding: 3.125rem 0;
  }
}

.p-top-cafe__body {
  width: 50%;
  background-color: rgba(255, 255, 255, .7);
  border-radius: 0 1.875rem 0 0;
  padding: 3.625rem 1.875rem 2rem 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-top-cafe__body {
    padding: 2.875rem 1.25rem 2.625rem 1.875rem;
    width: calc(100vw - 0.625rem);
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-left: calc(50% - 50vw);
  }
}

@media screen and (max-width: 768px) {
  .p-top-cafe__body .c-section-body__btn {
    margin-right: 0.625rem;
  }
}

.p-top-fv {
  height: 100vh;
  width: 100%;
  background: url(../images/top/fv-pc.webp) center top/cover no-repeat;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top-fv {
    height: calc(100vh - 3.75rem);
    background: url(../images/top/fv-sp.webp) center top/cover no-repeat;
  }
}

.p-top-fv__name {
  width: 35.7142857143%;
  max-width: 31.25rem;
  height: auto;
  aspect-ratio: 500/360;
  position: absolute;
  top: calc(50% + 2.5rem);
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}
@media screen and (max-width: 768px) {
  .p-top-fv__name {
    width: 66.1577608142%;
    max-width: 20rem;
    top: calc(50% + 1.5625rem);
    left: calc(50% - 1.5625rem);
  }
}

.p-top-fv__name img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-fv__copy-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 6.25rem;
  height: 100vh;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-top-fv__copy-wrap {
    height: calc(100vh - 3.75rem);
    width: 3.125rem;
  }
}

.p-top-fv__copy {
  background-color: #fff;
  width: 6.25rem;
  height: calc(100vh - 5rem);
  position: absolute;
  top: 5rem;
  right: 0;
  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.25rem 0;
}
@media screen and (max-width: 768px) {
  .p-top-fv__copy {
    height: calc(100vh - 6.875rem);
    width: 3.125rem;
    top: 3.125rem;
  }
}

.p-top-fv__copy img {
  max-height: 39.5625rem;
  height: 100%;
  width: auto;
  aspect-ratio: 25/633;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-top-fv__copy img {
    max-height: 20.625rem;
  }
}

.p-top-insta {
  padding-top: 6.1875rem;
  padding-bottom: 6.75rem;
}
@media screen and (max-width: 768px) {
  .p-top-insta {
    padding-top: 7.9375rem;
    padding-bottom: 3.25rem;
  }
}

.p-top-insta__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.8125rem;
}

@media screen and (max-width: 768px) {
  .p-top-insta .c-section-title {
    height: 1.875rem;
  }
}

.p-top-insta__img {
  width: 2.5rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .p-top-insta__img {
    width: 2.1875rem;
  }
}

.p-top-insta__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-insta__box {
  margin-top: 2.75rem;
}
@media screen and (max-width: 768px) {
  .p-top-insta__box {
    margin-top: 2.5rem;
  }
}

.p-top-news {
  padding-top: 7.0625rem;
  padding-bottom: 6.875rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top-news {
    padding-top: 4.375rem;
    padding-bottom: 5.375rem;
  }
}

.p-top-news__btn {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-top-news__btn {
    margin-top: 1.875rem;
  }
}

.p-top-news__accordion {
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-top-news__accordion {
    margin-top: 2.375rem;
  }
}

.p-top-order {
  margin-top: 10rem;
  background-color: rgba(236, 240, 230, .4);
}
@media screen and (max-width: 768px) {
  .p-top-order {
    margin-top: 5rem;
  }
}

.p-top-order__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .p-top-order__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0;
  }
}

.p-top-order__body {
  margin-top: -1.09375rem;
}

.p-top-order__body .c-section-body__btn {
  margin-right: -0.25rem;
}

.p-top-order__img {
  margin-top: 3rem;
  width: 100%;
  height: 100%;
  max-width: 32.5rem;
  aspect-ratio: 520/312;
}
@media screen and (max-width: 768px) {
  .p-top-order__img {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    max-width: none;
    max-width: initial;
  }
}

.p-top-order__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-slider {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-top-slider {
    margin-top: 2.375rem;
  }
}

.p-top-slider .splide__slide {
  width: 21.25rem;
  aspect-ratio: 340/204;
}
@media screen and (max-width: 768px) {
  .p-top-slider .splide__slide {
    width: 12.5rem;
    aspect-ratio: 200/120;
  }
}

.p-top-slider .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-sweets {
  padding-top: 10.625rem;
  padding-bottom: 10.375rem;
  background-color: rgba(236, 240, 230, .4);
}
@media screen and (max-width: 768px) {
  .p-top-sweets {
    padding-top: 5.5625rem;
    padding-bottom: 3.5rem;
  }
}

.p-top-sweets__img {
  width: 100%;
  height: 100%;
  max-width: 32.5rem;
  aspect-ratio: 520/312;
}
@media screen and (max-width: 768px) {
  .p-top-sweets__img {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    max-width: none;
    max-width: initial;
  }
}

.p-top-sweets__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  .p-top-sweets__body {
    margin-top: -1.09375rem;
  }
}

.p-top-sweets__body .c-section-body__btn {
  margin-right: -0.25rem;
}

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

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

.p-top-insta__box {
  width: 100%;
}

.sbi_item {
  text-align: center;
}

.splide__arrow {
  width: 2.5rem;
  height: 2.5rem;
  background: #fff;
  border: 1px solid #ccc;
}

.splide__arrow--next {
  right: 0;
  -webkit-transform: translateY(-50%) translateX(50%);
          transform: translateY(-50%) translateX(50%);
}

.splide__arrow--prev {
  left: 0;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}

#sb_instagram .sbi_photo img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}

@media screen and (max-width: 800px) {
  #sb_instagram .sbi_photo {
    height: 45% !important;
  }
}
@media screen and (max-width: 480px) {
  #sb_instagram .sbi_photo {
    height: auto;
    height: initial;
  }
}

.js-scrollBlur, .js-fadeIn {
  will-change: opacity, transform;
  opacity: 0;
  visibility: hidden;
}
/*# sourceMappingURL=styles.css.map */
